From f5b91b08f62e0e59a4a6c03aeee94313e9ba1439 Mon Sep 17 00:00:00 2001
From: sutantowilliam <willywilliamss97@gmail.com>
Date: Mon, 5 Feb 2018 23:26:11 +0700
Subject: [PATCH 01/19] message system front-end

---
 MessageSystem/chat.css     | 135 +++++++++++++++++++++++++++++++++++++
 MessageSystem/chatlist.php |  59 ++++++++++++++++
 MessageSystem/chatroom.php |  96 ++++++++++++++++++++++++++
 3 files changed, 290 insertions(+)
 create mode 100755 MessageSystem/chat.css
 create mode 100644 MessageSystem/chatlist.php
 create mode 100755 MessageSystem/chatroom.php

diff --git a/MessageSystem/chat.css b/MessageSystem/chat.css
new file mode 100755
index 00000000000..55ada76c3ac
--- /dev/null
+++ b/MessageSystem/chat.css
@@ -0,0 +1,135 @@
+body {
+    display: flex;
+    flex-flow: row wrap;
+    justify-content: center;
+}
+
+.box{
+    margin: 25px;
+    width: 500px;
+    height: 600px;
+    border: 1px solid black;
+    font-family: Helvetica;
+    position: relative;
+}
+
+.chat-title {
+    background: rgb(80, 74, 71);
+    padding: 10px;
+}
+.name {
+    color:white;
+    font-size: 30px;
+}
+
+
+
+.chat-box {
+    background: rgb(243, 248, 255);
+    height:452px;
+    padding-bottom: 50px;
+    /* height: auto; */
+    overflow: auto;
+}
+.chat-input {
+    /* border-style: solid;
+    border-width: 1px; */
+    width: 100%;
+    bottom:0px;
+    border-top: 1px solid black;
+    height: 40px;
+    position:absolute;
+    display: flex;
+    flex-flow: column;
+    background: white;
+}
+
+.sendermessage {
+    font-size: 15px;
+    /* border: 1px orangered solid; */
+    border-radius: 5px;
+    width:200px;
+    height: auto;
+    padding: 5px;
+    margin: 5px;
+    margin-left: 200px;
+    background-color: rgb(255, 178, 53);
+    float: right;
+}
+.receivemessage {
+    
+    font-size: 15px;
+    border: 1px white;
+    border-radius: 5px;
+    width: 200px;
+    height: auto;
+    padding: 5px;
+    margin: 5px;
+    margin-right: 200px;
+    background-color: rgb(153, 224, 252);
+    float: left;
+}
+
+.send-button {
+    background: rgb(80, 74, 71);
+    color:white;
+    border:none;
+    outline: none;
+    /* border:rgb(80, 74, 71); */
+    float: right;
+    height: 100%;
+    width: 30%;
+}
+.send-button:hover {
+    cursor:pointer;
+    background: rgb(24, 22, 21);
+}
+.message-content {
+    font-size: 15px;
+    margin-left: 5px;
+    width:68%;
+    height: 100%;
+    border: none;
+    outline: none;
+}
+
+.chatroom-item {
+    background: rgb(255, 250, 237);
+    border: 1px solid rgb(128,128,128);
+    padding:10px;
+}
+
+.chatroom-username {
+    font-size: 20px;
+}
+
+.chatroom-lastmessage {
+    font-size: 15px;
+    color: rgb(128,128,128);
+}
+.chat-search {
+    padding: 0px;
+    margin:0px;
+    background: rgb(128,128,128);
+    height: 20px;
+    padding: 10px;
+    text-align: right;
+}
+.search-name {
+    font-size: 15px;
+    margin-bottom: 5px;
+}
+.search-button {
+    background: rgb(255, 178, 53);
+    color:white;
+    border:none;
+    outline: none;
+    font-size: 20px;
+}
+.search-button:hover {
+    cursor:pointer;
+    background: rgb(255,165,0);
+}
+form{
+    margin:0px;
+}
\ No newline at end of file
diff --git a/MessageSystem/chatlist.php b/MessageSystem/chatlist.php
new file mode 100644
index 00000000000..c1b0d141dc4
--- /dev/null
+++ b/MessageSystem/chatlist.php
@@ -0,0 +1,59 @@
+
+<html>
+<head>
+  	<title>Title</title>
+	 <script src='http://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js'></script>
+	<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
+	<script>
+		var chatlistbox = angular.module('chatlistbox',[]);
+		chatlistbox.controller('controller', ['$scope', function ($scope) {
+				$scope.chatrooms = [];
+				var room = new Object();
+				room.username = "Dewita Sonya";
+				room.lastmessage = "iya itu barangnya bagus banget, udah pake lama tetep awet";
+				$scope.chatrooms.push(room);
+				var room2 = new Object();
+				room2.username = "Mico mico";
+				room2.lastmessage = "micomicomico barangnya oke punya, ukuran juga pas";
+				$scope.chatrooms.push(room2);
+				var room3 = new Object();
+				room3.username = "Albertus Djauhari";
+				room3.lastmessage = "jangan dibel itumah barang palsu, kualitasnya jelek ";
+				$scope.chatrooms.push(room3);
+				var room4 = new Object();
+				room4.username = "William";
+				room4.lastmessage = "kskskso sajsa sakjsk as akjka dkjs kfasjfssak fjsaf";
+				$scope.chatrooms.push(room4);
+	
+	  }]);
+	  
+								
+
+
+  </script>
+  <link rel="stylesheet" href="chat.css">
+</head>
+<body ng-app="chatlistbox" ng-controller="controller">
+<div class="box" >
+	<div class = "chat-title">
+		<span class="name">Chats</span>
+	</div>
+	<div class = "chat-search">
+		<form ng-submit="submit1()">
+            <input type="text" name="chattext" placeholder="Search name" class="search-name">
+            <input type="submit" name="search" value="Cari" class="search-button">
+        </form>
+	</div>
+	<div class="chat-list" ng-repeat="chatroom in chatrooms">
+		<div class="chatroom-item">
+			<div class="chatroom-username">
+				<span>{{chatroom.username}}</span>
+			<div class="chatroom-lastmessage">
+				<span>{{chatroom.lastmessage}}</span>
+			</div>
+		</div>
+	</div>
+</div>
+</body>
+</html>
+
diff --git a/MessageSystem/chatroom.php b/MessageSystem/chatroom.php
new file mode 100755
index 00000000000..59412fe8577
--- /dev/null
+++ b/MessageSystem/chatroom.php
@@ -0,0 +1,96 @@
+
+<html>
+<head>
+  <title>Title</title>
+  <script src='http://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js'></script>
+  <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
+  <script>
+
+      var chatbox1 = angular.module('chatbox',[]);
+      chatbox1.directive('scrollBottom', function () {
+            return {
+                scope: {
+                    scrollBottom: "="
+                },
+                link: function (scope, element) {
+                    scope.$watchCollection('scrollBottom', function (newValue) {
+                        if (newValue) {
+                            $(element).scrollTop($(element)[0].scrollHeight);
+                        }
+                    });
+                }
+            }
+        })  
+      chatbox1.controller('controller', ['$scope', function ($scope) {
+          $scope.chat = [];
+          $scope.submit1 = function () {
+              if($scope.pesan1){
+                var msg = new Object();
+                msg.message = $scope.pesan1;
+                msg.type = 1;
+                $scope.chat.push(msg);
+                $scope.pesan1="";
+              }
+          };
+          $scope.submit2 = function () {
+              if($scope.pesan2){
+                var msg = new Object();
+                msg.message = $scope.pesan2;
+                msg.type = 2;
+                $scope.chat.push(msg);
+                $scope.pesan2="";
+              }
+          };
+        
+    
+      }]);
+      
+                                
+
+
+  </script>
+  <link rel="stylesheet" href="chat.css">
+</head>
+<body ng-app="chatbox" ng-controller="controller">
+<div class="box" >
+    <div class = "chat-title">
+        <span class="name">Person 1 Name</span>
+    </div>
+    <div class="chat-form" >
+        <div  class="chat-box" scroll-bottom="chat">
+                <div ng-repeat="pesan in chat" >
+                    <p ng-if="pesan.type==1" class="sendermessage">{{pesan.message}}</p>
+                    <p ng-if="pesan.type==2" class="receivemessage">{{pesan.message}}</p>
+                </div>
+        </div>
+        <div class="chat-input">
+            <form ng-submit="submit1()">
+                <input type="text" name="chattext" ng-model="pesan1" class="message-content">
+                <input type="submit" name="send" value="Kirim" class="send-button">
+            </form>
+        </div>
+    </div>
+</div>
+
+<div class="box">
+    <div class = "chat-title">
+        <span class="name">Person 2 Name</span>
+    </div>
+    <div class="chat-form">
+        <div class="chat-box" scroll-bottom="chat">
+                <div ng-repeat="pesan in chat">
+                    <p ng-if="pesan.type==2" class="sendermessage">{{pesan.message}}</p>
+                    <p ng-if="pesan.type==1" class="receivemessage">{{pesan.message}}</p>
+                </div>
+        </div>
+        <div class="chat-input">
+            <form ng-submit="submit2()">
+                <input type="text" name="chattext" ng-model="pesan2" class="message-content">
+                <input type="submit" name="send" value="Send" class="send-button">
+            </form>
+        </div>
+    </div>
+</div>
+</body>
+</html>
+
-- 
GitLab


From cae74f2789947456a6f6ee1815772c3b217e3bc3 Mon Sep 17 00:00:00 2001
From: dewitast <dewitast20@gmail.com>
Date: Mon, 5 Feb 2018 18:20:01 +0700
Subject: [PATCH 02/19] new module 'Messaging'

---
 .../Magento/Messaging/Block/Messaging.php     |  10 +
 .../Messaging/Controller/Index/Index.php      |  22 ++
 .../Magento/Messaging/etc/frontend/routes.xml |   9 +
 app/code/Magento/Messaging/etc/module.xml     |   6 +
 app/code/Magento/Messaging/registration.php   |   7 +
 .../frontend/layout/messaging_index_index.xml |  14 +
 .../view/frontend/templates/messaging.phtml   |  20 ++
 .../Messaging/view/frontend/web/css/chat.css  | 135 +++++++
 .../Messaging/view/frontend/web/js/angular.js | 332 ++++++++++++++++++
 .../Messaging/view/frontend/web/js/chat.js    |  21 ++
 .../Messaging/view/frontend/web/js/jquery.js  |   6 +
 11 files changed, 582 insertions(+)
 create mode 100644 app/code/Magento/Messaging/Block/Messaging.php
 create mode 100644 app/code/Magento/Messaging/Controller/Index/Index.php
 create mode 100644 app/code/Magento/Messaging/etc/frontend/routes.xml
 create mode 100644 app/code/Magento/Messaging/etc/module.xml
 create mode 100644 app/code/Magento/Messaging/registration.php
 create mode 100644 app/code/Magento/Messaging/view/frontend/layout/messaging_index_index.xml
 create mode 100644 app/code/Magento/Messaging/view/frontend/templates/messaging.phtml
 create mode 100644 app/code/Magento/Messaging/view/frontend/web/css/chat.css
 create mode 100644 app/code/Magento/Messaging/view/frontend/web/js/angular.js
 create mode 100644 app/code/Magento/Messaging/view/frontend/web/js/chat.js
 create mode 100644 app/code/Magento/Messaging/view/frontend/web/js/jquery.js

diff --git a/app/code/Magento/Messaging/Block/Messaging.php b/app/code/Magento/Messaging/Block/Messaging.php
new file mode 100644
index 00000000000..11ede2e1284
--- /dev/null
+++ b/app/code/Magento/Messaging/Block/Messaging.php
@@ -0,0 +1,10 @@
+<?php
+namespace Magento\Messaging\Block;
+ 
+class Messaging extends \Magento\Framework\View\Element\Template
+{
+    public function getText()
+    {
+        return 'Hello world!';
+    }
+}
\ No newline at end of file
diff --git a/app/code/Magento/Messaging/Controller/Index/Index.php b/app/code/Magento/Messaging/Controller/Index/Index.php
new file mode 100644
index 00000000000..3b3258ba796
--- /dev/null
+++ b/app/code/Magento/Messaging/Controller/Index/Index.php
@@ -0,0 +1,22 @@
+<?php
+ 
+namespace Magento\Messaging\Controller\Index;
+ 
+use Magento\Framework\App\Action\Context;
+ 
+class Index extends \Magento\Framework\App\Action\Action
+{
+    protected $_resultPageFactory;
+ 
+    public function __construct(Context $context, \Magento\Framework\View\Result\PageFactory $resultPageFactory)
+    {
+        $this->_resultPageFactory = $resultPageFactory;
+        parent::__construct($context);
+    }
+ 
+    public function execute()
+    {
+        $resultPage = $this->_resultPageFactory->create();
+        return $resultPage;
+    }
+}
\ No newline at end of file
diff --git a/app/code/Magento/Messaging/etc/frontend/routes.xml b/app/code/Magento/Messaging/etc/frontend/routes.xml
new file mode 100644
index 00000000000..6316573751d
--- /dev/null
+++ b/app/code/Magento/Messaging/etc/frontend/routes.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0"?>
+ 
+<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:App/etc/routes.xsd">
+    <router id="standard">
+        <route id="messaging" frontName="messaging">
+            <module name="Magento_Messaging" />
+        </route>
+    </router>
+</config>
\ No newline at end of file
diff --git a/app/code/Magento/Messaging/etc/module.xml b/app/code/Magento/Messaging/etc/module.xml
new file mode 100644
index 00000000000..452d44950c0
--- /dev/null
+++ b/app/code/Magento/Messaging/etc/module.xml
@@ -0,0 +1,6 @@
+<?xml version="1.0"?>
+ 
+<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
+    <module name="Magento_Messaging" setup_version="1.0.0">
+    </module>
+</config>
\ No newline at end of file
diff --git a/app/code/Magento/Messaging/registration.php b/app/code/Magento/Messaging/registration.php
new file mode 100644
index 00000000000..61f09554e3e
--- /dev/null
+++ b/app/code/Magento/Messaging/registration.php
@@ -0,0 +1,7 @@
+<?php
+ 
+\Magento\Framework\Component\ComponentRegistrar::register(
+    \Magento\Framework\Component\ComponentRegistrar::MODULE,
+    'Magento_Messaging',
+    __DIR__
+);
\ No newline at end of file
diff --git a/app/code/Magento/Messaging/view/frontend/layout/messaging_index_index.xml b/app/code/Magento/Messaging/view/frontend/layout/messaging_index_index.xml
new file mode 100644
index 00000000000..eb9f38ba14e
--- /dev/null
+++ b/app/code/Magento/Messaging/view/frontend/layout/messaging_index_index.xml
@@ -0,0 +1,14 @@
+<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../../../lib/internal/Magento/Framework/View/Layout/etc/page_configuration.xsd" layout="1column">
+	<head>
+		<title>Messaging</title>
+		<css src="Messaging::css/chat.css" />
+		<script src="Messaging::js/chat.js" />
+		<script src="Messaging::js/angular.js" />
+		<script src="Messaging::js/jquery.js" />
+	</head>
+    <body ng-app="chatlistbox" ng-controller="controller">
+        <referenceContainer name="content">
+            <block class="Magento\Messaging\Block\Messaging" name="messaging" template="messaging.phtml" />
+        </referenceContainer>
+    </body>
+</page>
\ No newline at end of file
diff --git a/app/code/Magento/Messaging/view/frontend/templates/messaging.phtml b/app/code/Magento/Messaging/view/frontend/templates/messaging.phtml
new file mode 100644
index 00000000000..21ed1f6fb4b
--- /dev/null
+++ b/app/code/Magento/Messaging/view/frontend/templates/messaging.phtml
@@ -0,0 +1,20 @@
+<div class="box" >
+	<div class = "chat-title">
+		<span class="name">Chats</span>
+	</div>
+	<div class = "chat-search">
+		<form ng-submit="submit1()">
+            <input type="text" name="chattext" placeholder="Search name" class="search-name">
+            <input type="submit" name="search" value="Cari" class="search-button">
+        </form>
+	</div>
+	<div class="chat-list" ng-repeat="chatroom in chatrooms">
+		<div class="chatroom-item">
+			<div class="chatroom-username">
+				<span>{{chatroom.username}}</span>
+			<div class="chatroom-lastmessage">
+				<span>{{chatroom.lastmessage}}</span>
+			</div>
+		</div>
+	</div>
+</div>
\ No newline at end of file
diff --git a/app/code/Magento/Messaging/view/frontend/web/css/chat.css b/app/code/Magento/Messaging/view/frontend/web/css/chat.css
new file mode 100644
index 00000000000..d8637994973
--- /dev/null
+++ b/app/code/Magento/Messaging/view/frontend/web/css/chat.css
@@ -0,0 +1,135 @@
+body {
+    display: flex;
+    flex-flow: row wrap;
+    justify-content: center;
+}
+
+.box{
+    margin: 25px;
+    width: 500px;
+    height: 600px;
+    border: 1px solid black;
+    font-family: Helvetica;
+    position: relative;
+}
+
+.chat-title {
+    background: rgb(80, 74, 71);
+    padding: 10px;
+}
+.name {
+    color:white;
+    font-size: 30px;
+}
+
+
+
+.chat-box {
+    background: rgb(243, 248, 255);
+    height:452px;
+    padding-bottom: 50px;
+    /* height: auto; */
+    overflow: auto;
+}
+.chat-input {
+    /* border-style: solid;
+    border-width: 1px; */
+    width: 100%;
+    bottom:0px;
+    border-top: 1px solid black;
+    height: 40px;
+    position:absolute;
+    display: flex;
+    flex-flow: column;
+    background: white;
+}
+
+.sendermessage {
+    font-size: 15px;
+    /* border: 1px orangered solid; */
+    border-radius: 5px;
+    width:200px;
+    height: auto;
+    padding: 5px;
+    margin: 5px;
+    margin-left: 200px;
+    background-color: rgb(255, 178, 53);
+    float: right;
+}
+.receivemessage {
+    
+    font-size: 15px;
+    border: 1px white;
+    border-radius: 5px;
+    width: 200px;
+    height: auto;
+    padding: 5px;
+    margin: 5px;
+    margin-right: 200px;
+    background-color: rgb(153, 224, 252);
+    float: left;
+}
+
+.send-button {
+    background: rgb(80, 74, 71);
+    color:white;
+    border:none;
+    outline: none;
+    /* border:rgb(80, 74, 71); */
+    float: right;
+    height: 100%;
+    width: 30%;
+}
+.send-button:hover {
+    cursor:pointer;
+    background: rgb(24, 22, 21);
+}
+.message-content {
+    font-size: 15px;
+    margin-left: 5px;
+    width:68%;
+    height: 100%;
+    border: none;
+    outline: none;
+}
+
+.chatroom-item {
+    background: rgb(255, 250, 237);
+    border: 1px solid rgb(128,128,128);
+    padding:10px;
+}
+
+.chatroom-username {
+    font-size: 20px;
+}
+
+.chatroom-lastmessage {
+    font-size: 15px;
+    color: rgb(128,128,128);
+}
+.chat-search {
+    padding: 0px;
+    margin:0px;
+    background: rgb(128,128,128);
+    height: 20px;
+    padding: 10px;
+    text-align: right;
+}
+.search-name {
+    font-size: 15px;
+    margin-bottom: 5px;
+}
+.search-button {
+    background: rgb(255, 178, 53);
+    color:white;
+    border:none;
+    outline: none;
+    font-size: 20px;
+}
+.search-button:hover {
+    cursor:pointer;
+    background: rgb(255,165,0);
+}
+form{
+    margin:0px;
+}
\ No newline at end of file
diff --git a/app/code/Magento/Messaging/view/frontend/web/js/angular.js b/app/code/Magento/Messaging/view/frontend/web/js/angular.js
new file mode 100644
index 00000000000..57e6eddb699
--- /dev/null
+++ b/app/code/Magento/Messaging/view/frontend/web/js/angular.js
@@ -0,0 +1,332 @@
+/*
+ AngularJS v1.6.4
+ (c) 2010-2017 Google, Inc. http://angularjs.org
+ License: MIT
+*/
+(function(x){'use strict';function L(a,b){b=b||Error;return function(){var d=arguments[0],c;c="["+(a?a+":":"")+d+"] http://errors.angularjs.org/1.6.4/"+(a?a+"/":"")+d;for(d=1;d<arguments.length;d++){c=c+(1==d?"?":"&")+"p"+(d-1)+"=";var e=encodeURIComponent,f;f=arguments[d];f="function"==typeof f?f.toString().replace(/ \{[\s\S]*$/,""):"undefined"==typeof f?"undefined":"string"!=typeof f?JSON.stringify(f):f;c+=e(f)}return new b(c)}}function me(a){if(C(a))u(a.objectMaxDepth)&&(Ic.objectMaxDepth=Sb(a.objectMaxDepth)?
+a.objectMaxDepth:NaN);else return Ic}function Sb(a){return ba(a)&&0<a}function qa(a){if(null==a||Wa(a))return!1;if(H(a)||F(a)||B&&a instanceof B)return!0;var b="length"in Object(a)&&a.length;return ba(b)&&(0<=b&&(b-1 in a||a instanceof Array)||"function"===typeof a.item)}function q(a,b,d){var c,e;if(a)if(D(a))for(c in a)"prototype"!==c&&"length"!==c&&"name"!==c&&a.hasOwnProperty(c)&&b.call(d,a[c],c,a);else if(H(a)||qa(a)){var f="object"!==typeof a;c=0;for(e=a.length;c<e;c++)(f||c in a)&&b.call(d,
+a[c],c,a)}else if(a.forEach&&a.forEach!==q)a.forEach(b,d,a);else if(Jc(a))for(c in a)b.call(d,a[c],c,a);else if("function"===typeof a.hasOwnProperty)for(c in a)a.hasOwnProperty(c)&&b.call(d,a[c],c,a);else for(c in a)ua.call(a,c)&&b.call(d,a[c],c,a);return a}function Kc(a,b,d){for(var c=Object.keys(a).sort(),e=0;e<c.length;e++)b.call(d,a[c[e]],c[e]);return c}function Lc(a){return function(b,d){a(d,b)}}function ne(){return++qb}function Tb(a,b,d){for(var c=a.$$hashKey,e=0,f=b.length;e<f;++e){var g=b[e];
+if(C(g)||D(g))for(var h=Object.keys(g),k=0,l=h.length;k<l;k++){var m=h[k],n=g[m];d&&C(n)?ga(n)?a[m]=new Date(n.valueOf()):Xa(n)?a[m]=new RegExp(n):n.nodeName?a[m]=n.cloneNode(!0):Ub(n)?a[m]=n.clone():(C(a[m])||(a[m]=H(n)?[]:{}),Tb(a[m],[n],!0)):a[m]=n}}c?a.$$hashKey=c:delete a.$$hashKey;return a}function S(a){return Tb(a,va.call(arguments,1),!1)}function oe(a){return Tb(a,va.call(arguments,1),!0)}function Z(a){return parseInt(a,10)}function Vb(a,b){return S(Object.create(a),b)}function z(){}function Ya(a){return a}
+function la(a){return function(){return a}}function Wb(a){return D(a.toString)&&a.toString!==ma}function w(a){return"undefined"===typeof a}function u(a){return"undefined"!==typeof a}function C(a){return null!==a&&"object"===typeof a}function Jc(a){return null!==a&&"object"===typeof a&&!Mc(a)}function F(a){return"string"===typeof a}function ba(a){return"number"===typeof a}function ga(a){return"[object Date]"===ma.call(a)}function D(a){return"function"===typeof a}function Xa(a){return"[object RegExp]"===
+ma.call(a)}function Wa(a){return a&&a.window===a}function Za(a){return a&&a.$evalAsync&&a.$watch}function Ha(a){return"boolean"===typeof a}function pe(a){return a&&ba(a.length)&&qe.test(ma.call(a))}function Ub(a){return!(!a||!(a.nodeName||a.prop&&a.attr&&a.find))}function re(a){var b={};a=a.split(",");var d;for(d=0;d<a.length;d++)b[a[d]]=!0;return b}function wa(a){return Q(a.nodeName||a[0]&&a[0].nodeName)}function $a(a,b){var d=a.indexOf(b);0<=d&&a.splice(d,1);return d}function ra(a,b,d){function c(a,
+b,c){c--;if(0>c)return"...";var d=b.$$hashKey,f;if(H(a)){f=0;for(var g=a.length;f<g;f++)b.push(e(a[f],c))}else if(Jc(a))for(f in a)b[f]=e(a[f],c);else if(a&&"function"===typeof a.hasOwnProperty)for(f in a)a.hasOwnProperty(f)&&(b[f]=e(a[f],c));else for(f in a)ua.call(a,f)&&(b[f]=e(a[f],c));d?b.$$hashKey=d:delete b.$$hashKey;return b}function e(a,b){if(!C(a))return a;var d=g.indexOf(a);if(-1!==d)return h[d];if(Wa(a)||Za(a))throw Fa("cpws");var d=!1,e=f(a);void 0===e&&(e=H(a)?[]:Object.create(Mc(a)),
+d=!0);g.push(a);h.push(e);return d?c(a,e,b):e}function f(a){switch(ma.call(a)){case "[object Int8Array]":case "[object Int16Array]":case "[object Int32Array]":case "[object Float32Array]":case "[object Float64Array]":case "[object Uint8Array]":case "[object Uint8ClampedArray]":case "[object Uint16Array]":case "[object Uint32Array]":return new a.constructor(e(a.buffer),a.byteOffset,a.length);case "[object ArrayBuffer]":if(!a.slice){var b=new ArrayBuffer(a.byteLength);(new Uint8Array(b)).set(new Uint8Array(a));
+return b}return a.slice(0);case "[object Boolean]":case "[object Number]":case "[object String]":case "[object Date]":return new a.constructor(a.valueOf());case "[object RegExp]":return b=new RegExp(a.source,a.toString().match(/[^/]*$/)[0]),b.lastIndex=a.lastIndex,b;case "[object Blob]":return new a.constructor([a],{type:a.type})}if(D(a.cloneNode))return a.cloneNode(!0)}var g=[],h=[];d=Sb(d)?d:NaN;if(b){if(pe(b)||"[object ArrayBuffer]"===ma.call(b))throw Fa("cpta");if(a===b)throw Fa("cpi");H(b)?b.length=
+0:q(b,function(a,c){"$$hashKey"!==c&&delete b[c]});g.push(a);h.push(b);return c(a,b,d)}return e(a,d)}function Xb(a,b){return a===b||a!==a&&b!==b}function sa(a,b){if(a===b)return!0;if(null===a||null===b)return!1;if(a!==a&&b!==b)return!0;var d=typeof a,c;if(d===typeof b&&"object"===d)if(H(a)){if(!H(b))return!1;if((d=a.length)===b.length){for(c=0;c<d;c++)if(!sa(a[c],b[c]))return!1;return!0}}else{if(ga(a))return ga(b)?Xb(a.getTime(),b.getTime()):!1;if(Xa(a))return Xa(b)?a.toString()===b.toString():!1;
+if(Za(a)||Za(b)||Wa(a)||Wa(b)||H(b)||ga(b)||Xa(b))return!1;d=V();for(c in a)if("$"!==c.charAt(0)&&!D(a[c])){if(!sa(a[c],b[c]))return!1;d[c]=!0}for(c in b)if(!(c in d)&&"$"!==c.charAt(0)&&u(b[c])&&!D(b[c]))return!1;return!0}return!1}function ab(a,b,d){return a.concat(va.call(b,d))}function bb(a,b){var d=2<arguments.length?va.call(arguments,2):[];return!D(b)||b instanceof RegExp?b:d.length?function(){return arguments.length?b.apply(a,ab(d,arguments,0)):b.apply(a,d)}:function(){return arguments.length?
+b.apply(a,arguments):b.call(a)}}function Nc(a,b){var d=b;"string"===typeof a&&"$"===a.charAt(0)&&"$"===a.charAt(1)?d=void 0:Wa(b)?d="$WINDOW":b&&x.document===b?d="$DOCUMENT":Za(b)&&(d="$SCOPE");return d}function cb(a,b){if(!w(a))return ba(b)||(b=b?2:null),JSON.stringify(a,Nc,b)}function Oc(a){return F(a)?JSON.parse(a):a}function Pc(a,b){a=a.replace(se,"");var d=Date.parse("Jan 01, 1970 00:00:00 "+a)/6E4;return da(d)?b:d}function Yb(a,b,d){d=d?-1:1;var c=a.getTimezoneOffset();b=Pc(b,c);d*=b-c;a=new Date(a.getTime());
+a.setMinutes(a.getMinutes()+d);return a}function xa(a){a=B(a).clone();try{a.empty()}catch(b){}var d=B("<div>").append(a).html();try{return a[0].nodeType===Ia?Q(d):d.match(/^(<[^>]+>)/)[1].replace(/^<([\w-]+)/,function(a,b){return"<"+Q(b)})}catch(c){return Q(d)}}function Qc(a){try{return decodeURIComponent(a)}catch(b){}}function Rc(a){var b={};q((a||"").split("&"),function(a){var c,e,f;a&&(e=a=a.replace(/\+/g,"%20"),c=a.indexOf("="),-1!==c&&(e=a.substring(0,c),f=a.substring(c+1)),e=Qc(e),u(e)&&(f=
+u(f)?Qc(f):!0,ua.call(b,e)?H(b[e])?b[e].push(f):b[e]=[b[e],f]:b[e]=f))});return b}function Zb(a){var b=[];q(a,function(a,c){H(a)?q(a,function(a){b.push($(c,!0)+(!0===a?"":"="+$(a,!0)))}):b.push($(c,!0)+(!0===a?"":"="+$(a,!0)))});return b.length?b.join("&"):""}function db(a){return $(a,!0).replace(/%26/gi,"&").replace(/%3D/gi,"=").replace(/%2B/gi,"+")}function $(a,b){return encodeURIComponent(a).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%3B/gi,";").replace(/%20/g,
+b?"%20":"+")}function te(a,b){var d,c,e=Ja.length;for(c=0;c<e;++c)if(d=Ja[c]+b,F(d=a.getAttribute(d)))return d;return null}function ue(a,b){var d,c,e={};q(Ja,function(b){b+="app";!d&&a.hasAttribute&&a.hasAttribute(b)&&(d=a,c=a.getAttribute(b))});q(Ja,function(b){b+="app";var e;!d&&(e=a.querySelector("["+b.replace(":","\\:")+"]"))&&(d=e,c=e.getAttribute(b))});d&&(ve?(e.strictDi=null!==te(d,"strict-di"),b(d,c?[c]:[],e)):x.console.error("Angular: disabling automatic bootstrap. <script> protocol indicates an extension, document.location.href does not match."))}
+function Sc(a,b,d){C(d)||(d={});d=S({strictDi:!1},d);var c=function(){a=B(a);if(a.injector()){var c=a[0]===x.document?"document":xa(a);throw Fa("btstrpd",c.replace(/</,"&lt;").replace(/>/,"&gt;"));}b=b||[];b.unshift(["$provide",function(b){b.value("$rootElement",a)}]);d.debugInfoEnabled&&b.push(["$compileProvider",function(a){a.debugInfoEnabled(!0)}]);b.unshift("ng");c=eb(b,d.strictDi);c.invoke(["$rootScope","$rootElement","$compile","$injector",function(a,b,c,d){a.$apply(function(){b.data("$injector",
+d);c(b)(a)})}]);return c},e=/^NG_ENABLE_DEBUG_INFO!/,f=/^NG_DEFER_BOOTSTRAP!/;x&&e.test(x.name)&&(d.debugInfoEnabled=!0,x.name=x.name.replace(e,""));if(x&&!f.test(x.name))return c();x.name=x.name.replace(f,"");ea.resumeBootstrap=function(a){q(a,function(a){b.push(a)});return c()};D(ea.resumeDeferredBootstrap)&&ea.resumeDeferredBootstrap()}function we(){x.name="NG_ENABLE_DEBUG_INFO!"+x.name;x.location.reload()}function xe(a){a=ea.element(a).injector();if(!a)throw Fa("test");return a.get("$$testability")}
+function Tc(a,b){b=b||"_";return a.replace(ye,function(a,c){return(c?b:"")+a.toLowerCase()})}function ze(){var a;if(!Uc){var b=rb();(na=w(b)?x.jQuery:b?x[b]:void 0)&&na.fn.on?(B=na,S(na.fn,{scope:Na.scope,isolateScope:Na.isolateScope,controller:Na.controller,injector:Na.injector,inheritedData:Na.inheritedData}),a=na.cleanData,na.cleanData=function(b){for(var c,e=0,f;null!=(f=b[e]);e++)(c=na._data(f,"events"))&&c.$destroy&&na(f).triggerHandler("$destroy");a(b)}):B=W;ea.element=B;Uc=!0}}function fb(a,
+b,d){if(!a)throw Fa("areq",b||"?",d||"required");return a}function sb(a,b,d){d&&H(a)&&(a=a[a.length-1]);fb(D(a),b,"not a function, got "+(a&&"object"===typeof a?a.constructor.name||"Object":typeof a));return a}function Ka(a,b){if("hasOwnProperty"===a)throw Fa("badname",b);}function Vc(a,b,d){if(!b)return a;b=b.split(".");for(var c,e=a,f=b.length,g=0;g<f;g++)c=b[g],a&&(a=(e=a)[c]);return!d&&D(a)?bb(e,a):a}function tb(a){for(var b=a[0],d=a[a.length-1],c,e=1;b!==d&&(b=b.nextSibling);e++)if(c||a[e]!==
+b)c||(c=B(va.call(a,0,e))),c.push(b);return c||a}function V(){return Object.create(null)}function $b(a){if(null==a)return"";switch(typeof a){case "string":break;case "number":a=""+a;break;default:a=!Wb(a)||H(a)||ga(a)?cb(a):a.toString()}return a}function Ae(a){function b(a,b,c){return a[b]||(a[b]=c())}var d=L("$injector"),c=L("ng");a=b(a,"angular",Object);a.$$minErr=a.$$minErr||L;return b(a,"module",function(){var a={};return function(f,g,h){var k={};if("hasOwnProperty"===f)throw c("badname","module");
+g&&a.hasOwnProperty(f)&&(a[f]=null);return b(a,f,function(){function a(b,c,d,f){f||(f=e);return function(){f[d||"push"]([b,c,arguments]);return v}}function b(a,c,d){d||(d=e);return function(b,e){e&&D(e)&&(e.$$moduleName=f);d.push([a,c,arguments]);return v}}if(!g)throw d("nomod",f);var e=[],p=[],r=[],J=a("$injector","invoke","push",p),v={_invokeQueue:e,_configBlocks:p,_runBlocks:r,info:function(a){if(u(a)){if(!C(a))throw c("aobj","value");k=a;return this}return k},requires:g,name:f,provider:b("$provide",
+"provider"),factory:b("$provide","factory"),service:b("$provide","service"),value:a("$provide","value"),constant:a("$provide","constant","unshift"),decorator:b("$provide","decorator",p),animation:b("$animateProvider","register"),filter:b("$filterProvider","register"),controller:b("$controllerProvider","register"),directive:b("$compileProvider","directive"),component:b("$compileProvider","component"),config:J,run:function(a){r.push(a);return this}};h&&J(h);return v})}})}function pa(a,b){if(H(a)){b=
+b||[];for(var d=0,c=a.length;d<c;d++)b[d]=a[d]}else if(C(a))for(d in b=b||{},a)if("$"!==d.charAt(0)||"$"!==d.charAt(1))b[d]=a[d];return b||a}function Be(a,b){var d=[];Sb(b)&&(a=ra(a,null,b));return JSON.stringify(a,function(a,b){b=Nc(a,b);if(C(b)){if(0<=d.indexOf(b))return"...";d.push(b)}return b})}function Ce(a){S(a,{errorHandlingConfig:me,bootstrap:Sc,copy:ra,extend:S,merge:oe,equals:sa,element:B,forEach:q,injector:eb,noop:z,bind:bb,toJson:cb,fromJson:Oc,identity:Ya,isUndefined:w,isDefined:u,isString:F,
+isFunction:D,isObject:C,isNumber:ba,isElement:Ub,isArray:H,version:De,isDate:ga,lowercase:Q,uppercase:ub,callbacks:{$$counter:0},getTestability:xe,reloadWithDebugInfo:we,$$minErr:L,$$csp:Ga,$$encodeUriSegment:db,$$encodeUriQuery:$,$$stringify:$b});ac=Ae(x);ac("ng",["ngLocale"],["$provide",function(a){a.provider({$$sanitizeUri:Ee});a.provider("$compile",Wc).directive({a:Fe,input:Xc,textarea:Xc,form:Ge,script:He,select:Ie,option:Je,ngBind:Ke,ngBindHtml:Le,ngBindTemplate:Me,ngClass:Ne,ngClassEven:Oe,
+ngClassOdd:Pe,ngCloak:Qe,ngController:Re,ngForm:Se,ngHide:Te,ngIf:Ue,ngInclude:Ve,ngInit:We,ngNonBindable:Xe,ngPluralize:Ye,ngRepeat:Ze,ngShow:$e,ngStyle:af,ngSwitch:bf,ngSwitchWhen:cf,ngSwitchDefault:df,ngOptions:ef,ngTransclude:ff,ngModel:gf,ngList:hf,ngChange:jf,pattern:Yc,ngPattern:Yc,required:Zc,ngRequired:Zc,minlength:$c,ngMinlength:$c,maxlength:ad,ngMaxlength:ad,ngValue:kf,ngModelOptions:lf}).directive({ngInclude:mf}).directive(vb).directive(bd);a.provider({$anchorScroll:nf,$animate:of,$animateCss:pf,
+$$animateJs:qf,$$animateQueue:rf,$$AnimateRunner:sf,$$animateAsyncRun:tf,$browser:uf,$cacheFactory:vf,$controller:wf,$document:xf,$$isDocumentHidden:yf,$exceptionHandler:zf,$filter:cd,$$forceReflow:Af,$interpolate:Bf,$interval:Cf,$http:Df,$httpParamSerializer:Ef,$httpParamSerializerJQLike:Ff,$httpBackend:Gf,$xhrFactory:Hf,$jsonpCallbacks:If,$location:Jf,$log:Kf,$parse:Lf,$rootScope:Mf,$q:Nf,$$q:Of,$sce:Pf,$sceDelegate:Qf,$sniffer:Rf,$templateCache:Sf,$templateRequest:Tf,$$testability:Uf,$timeout:Vf,
+$window:Wf,$$rAF:Xf,$$jqLite:Yf,$$Map:Zf,$$cookieReader:$f})}]).info({angularVersion:"1.6.4"})}function gb(a,b){return b.toUpperCase()}function wb(a){return a.replace(ag,gb)}function bc(a){a=a.nodeType;return 1===a||!a||9===a}function dd(a,b){var d,c,e=b.createDocumentFragment(),f=[];if(cc.test(a)){d=e.appendChild(b.createElement("div"));c=(bg.exec(a)||["",""])[1].toLowerCase();c=ha[c]||ha._default;d.innerHTML=c[1]+a.replace(cg,"<$1></$2>")+c[2];for(c=c[0];c--;)d=d.lastChild;f=ab(f,d.childNodes);
+d=e.firstChild;d.textContent=""}else f.push(b.createTextNode(a));e.textContent="";e.innerHTML="";q(f,function(a){e.appendChild(a)});return e}function W(a){if(a instanceof W)return a;var b;F(a)&&(a=T(a),b=!0);if(!(this instanceof W)){if(b&&"<"!==a.charAt(0))throw dc("nosel");return new W(a)}if(b){b=x.document;var d;a=(d=dg.exec(a))?[b.createElement(d[1])]:(d=dd(a,b))?d.childNodes:[];ec(this,a)}else D(a)?ed(a):ec(this,a)}function fc(a){return a.cloneNode(!0)}function xb(a,b){!b&&bc(a)&&B.cleanData([a]);
+a.querySelectorAll&&B.cleanData(a.querySelectorAll("*"))}function fd(a,b,d,c){if(u(c))throw dc("offargs");var e=(c=yb(a))&&c.events,f=c&&c.handle;if(f)if(b){var g=function(b){var c=e[b];u(d)&&$a(c||[],d);u(d)&&c&&0<c.length||(a.removeEventListener(b,f),delete e[b])};q(b.split(" "),function(a){g(a);zb[a]&&g(zb[a])})}else for(b in e)"$destroy"!==b&&a.removeEventListener(b,f),delete e[b]}function gc(a,b){var d=a.ng339,c=d&&hb[d];c&&(b?delete c.data[b]:(c.handle&&(c.events.$destroy&&c.handle({},"$destroy"),
+fd(a)),delete hb[d],a.ng339=void 0))}function yb(a,b){var d=a.ng339,d=d&&hb[d];b&&!d&&(a.ng339=d=++eg,d=hb[d]={events:{},data:{},handle:void 0});return d}function hc(a,b,d){if(bc(a)){var c,e=u(d),f=!e&&b&&!C(b),g=!b;a=(a=yb(a,!f))&&a.data;if(e)a[wb(b)]=d;else{if(g)return a;if(f)return a&&a[wb(b)];for(c in b)a[wb(c)]=b[c]}}}function Ab(a,b){return a.getAttribute?-1<(" "+(a.getAttribute("class")||"")+" ").replace(/[\n\t]/g," ").indexOf(" "+b+" "):!1}function Bb(a,b){b&&a.setAttribute&&q(b.split(" "),
+function(b){a.setAttribute("class",T((" "+(a.getAttribute("class")||"")+" ").replace(/[\n\t]/g," ").replace(" "+T(b)+" "," ")))})}function Cb(a,b){if(b&&a.setAttribute){var d=(" "+(a.getAttribute("class")||"")+" ").replace(/[\n\t]/g," ");q(b.split(" "),function(a){a=T(a);-1===d.indexOf(" "+a+" ")&&(d+=a+" ")});a.setAttribute("class",T(d))}}function ec(a,b){if(b)if(b.nodeType)a[a.length++]=b;else{var d=b.length;if("number"===typeof d&&b.window!==b){if(d)for(var c=0;c<d;c++)a[a.length++]=b[c]}else a[a.length++]=
+b}}function gd(a,b){return Db(a,"$"+(b||"ngController")+"Controller")}function Db(a,b,d){9===a.nodeType&&(a=a.documentElement);for(b=H(b)?b:[b];a;){for(var c=0,e=b.length;c<e;c++)if(u(d=B.data(a,b[c])))return d;a=a.parentNode||11===a.nodeType&&a.host}}function hd(a){for(xb(a,!0);a.firstChild;)a.removeChild(a.firstChild)}function Eb(a,b){b||xb(a);var d=a.parentNode;d&&d.removeChild(a)}function fg(a,b){b=b||x;if("complete"===b.document.readyState)b.setTimeout(a);else B(b).on("load",a)}function ed(a){function b(){x.document.removeEventListener("DOMContentLoaded",
+b);x.removeEventListener("load",b);a()}"complete"===x.document.readyState?x.setTimeout(a):(x.document.addEventListener("DOMContentLoaded",b),x.addEventListener("load",b))}function id(a,b){var d=Fb[b.toLowerCase()];return d&&jd[wa(a)]&&d}function gg(a,b){var d=function(c,d){c.isDefaultPrevented=function(){return c.defaultPrevented};var f=b[d||c.type],g=f?f.length:0;if(g){if(w(c.immediatePropagationStopped)){var h=c.stopImmediatePropagation;c.stopImmediatePropagation=function(){c.immediatePropagationStopped=
+!0;c.stopPropagation&&c.stopPropagation();h&&h.call(c)}}c.isImmediatePropagationStopped=function(){return!0===c.immediatePropagationStopped};var k=f.specialHandlerWrapper||hg;1<g&&(f=pa(f));for(var l=0;l<g;l++)c.isImmediatePropagationStopped()||k(a,c,f[l])}};d.elem=a;return d}function hg(a,b,d){d.call(a,b)}function ig(a,b,d){var c=b.relatedTarget;c&&(c===a||jg.call(a,c))||d.call(a,b)}function Yf(){this.$get=function(){return S(W,{hasClass:function(a,b){a.attr&&(a=a[0]);return Ab(a,b)},addClass:function(a,
+b){a.attr&&(a=a[0]);return Cb(a,b)},removeClass:function(a,b){a.attr&&(a=a[0]);return Bb(a,b)}})}}function Pa(a,b){var d=a&&a.$$hashKey;if(d)return"function"===typeof d&&(d=a.$$hashKey()),d;d=typeof a;return d="function"===d||"object"===d&&null!==a?a.$$hashKey=d+":"+(b||ne)():d+":"+a}function kd(){this._keys=[];this._values=[];this._lastKey=NaN;this._lastIndex=-1}function ld(a){a=Function.prototype.toString.call(a).replace(kg,"");return a.match(lg)||a.match(mg)}function ng(a){return(a=ld(a))?"function("+
+(a[1]||"").replace(/[\s\r\n]+/," ")+")":"fn"}function eb(a,b){function d(a){return function(b,c){if(C(b))q(b,Lc(a));else return a(b,c)}}function c(a,b){Ka(a,"service");if(D(b)||H(b))b=p.instantiate(b);if(!b.$get)throw ya("pget",a);return n[a+"Provider"]=b}function e(a,b){return function(){var c=v.invoke(b,this);if(w(c))throw ya("undef",a);return c}}function f(a,b,d){return c(a,{$get:!1!==d?e(a,b):b})}function g(a){fb(w(a)||H(a),"modulesToLoad","not an array");var b=[],c;q(a,function(a){function d(a){var b,
+c;b=0;for(c=a.length;b<c;b++){var e=a[b],f=p.get(e[0]);f[e[1]].apply(f,e[2])}}if(!m.get(a)){m.set(a,!0);try{F(a)?(c=ac(a),v.modules[a]=c,b=b.concat(g(c.requires)).concat(c._runBlocks),d(c._invokeQueue),d(c._configBlocks)):D(a)?b.push(p.invoke(a)):H(a)?b.push(p.invoke(a)):sb(a,"module")}catch(e){throw H(a)&&(a=a[a.length-1]),e.message&&e.stack&&-1===e.stack.indexOf(e.message)&&(e=e.message+"\n"+e.stack),ya("modulerr",a,e.stack||e.message||e);}}});return b}function h(a,c){function d(b,e){if(a.hasOwnProperty(b)){if(a[b]===
+k)throw ya("cdep",b+" <- "+l.join(" <- "));return a[b]}try{return l.unshift(b),a[b]=k,a[b]=c(b,e),a[b]}catch(f){throw a[b]===k&&delete a[b],f;}finally{l.shift()}}function e(a,c,f){var g=[];a=eb.$$annotate(a,b,f);for(var k=0,h=a.length;k<h;k++){var l=a[k];if("string"!==typeof l)throw ya("itkn",l);g.push(c&&c.hasOwnProperty(l)?c[l]:d(l,f))}return g}return{invoke:function(a,b,c,d){"string"===typeof c&&(d=c,c=null);c=e(a,c,d);H(a)&&(a=a[a.length-1]);d=a;if(za||"function"!==typeof d)d=!1;else{var f=d.$$ngIsClass;
+Ha(f)||(f=d.$$ngIsClass=/^(?:class\b|constructor\()/.test(Function.prototype.toString.call(d)));d=f}return d?(c.unshift(null),new (Function.prototype.bind.apply(a,c))):a.apply(b,c)},instantiate:function(a,b,c){var d=H(a)?a[a.length-1]:a;a=e(a,b,c);a.unshift(null);return new (Function.prototype.bind.apply(d,a))},get:d,annotate:eb.$$annotate,has:function(b){return n.hasOwnProperty(b+"Provider")||a.hasOwnProperty(b)}}}b=!0===b;var k={},l=[],m=new Gb,n={$provide:{provider:d(c),factory:d(f),service:d(function(a,
+b){return f(a,["$injector",function(a){return a.instantiate(b)}])}),value:d(function(a,b){return f(a,la(b),!1)}),constant:d(function(a,b){Ka(a,"constant");n[a]=b;r[a]=b}),decorator:function(a,b){var c=p.get(a+"Provider"),d=c.$get;c.$get=function(){var a=v.invoke(d,c);return v.invoke(b,null,{$delegate:a})}}}},p=n.$injector=h(n,function(a,b){ea.isString(b)&&l.push(b);throw ya("unpr",l.join(" <- "));}),r={},J=h(r,function(a,b){var c=p.get(a+"Provider",b);return v.invoke(c.$get,c,void 0,a)}),v=J;n.$injectorProvider=
+{$get:la(J)};v.modules=p.modules=V();var t=g(a),v=J.get("$injector");v.strictDi=b;q(t,function(a){a&&v.invoke(a)});return v}function nf(){var a=!0;this.disableAutoScrolling=function(){a=!1};this.$get=["$window","$location","$rootScope",function(b,d,c){function e(a){var b=null;Array.prototype.some.call(a,function(a){if("a"===wa(a))return b=a,!0});return b}function f(a){if(a){a.scrollIntoView();var c;c=g.yOffset;D(c)?c=c():Ub(c)?(c=c[0],c="fixed"!==b.getComputedStyle(c).position?0:c.getBoundingClientRect().bottom):
+ba(c)||(c=0);c&&(a=a.getBoundingClientRect().top,b.scrollBy(0,a-c))}else b.scrollTo(0,0)}function g(a){a=F(a)?a:ba(a)?a.toString():d.hash();var b;a?(b=h.getElementById(a))?f(b):(b=e(h.getElementsByName(a)))?f(b):"top"===a&&f(null):f(null)}var h=b.document;a&&c.$watch(function(){return d.hash()},function(a,b){a===b&&""===a||fg(function(){c.$evalAsync(g)})});return g}]}function ib(a,b){if(!a&&!b)return"";if(!a)return b;if(!b)return a;H(a)&&(a=a.join(" "));H(b)&&(b=b.join(" "));return a+" "+b}function og(a){F(a)&&
+(a=a.split(" "));var b=V();q(a,function(a){a.length&&(b[a]=!0)});return b}function ia(a){return C(a)?a:{}}function pg(a,b,d,c){function e(a){try{a.apply(null,va.call(arguments,1))}finally{if(J--,0===J)for(;v.length;)try{v.pop()()}catch(b){d.error(b)}}}function f(){Oa=null;h()}function g(){t=I();t=w(t)?null:t;sa(t,G)&&(t=G);M=G=t}function h(){var a=M;g();if(N!==k.url()||a!==t)N=k.url(),M=t,q(K,function(a){a(k.url(),t)})}var k=this,l=a.location,m=a.history,n=a.setTimeout,p=a.clearTimeout,r={};k.isMock=
+!1;var J=0,v=[];k.$$completeOutstandingRequest=e;k.$$incOutstandingRequestCount=function(){J++};k.notifyWhenNoOutstandingRequests=function(a){0===J?a():v.push(a)};var t,M,N=l.href,A=b.find("base"),Oa=null,I=c.history?function(){try{return m.state}catch(a){}}:z;g();k.url=function(b,d,e){w(e)&&(e=null);l!==a.location&&(l=a.location);m!==a.history&&(m=a.history);if(b){var f=M===e;if(N===b&&(!c.history||f))return k;var h=N&&Aa(N)===Aa(b);N=b;M=e;!c.history||h&&f?(h||(Oa=b),d?l.replace(b):h?(d=l,e=b.indexOf("#"),
+e=-1===e?"":b.substr(e),d.hash=e):l.href=b,l.href!==b&&(Oa=b)):(m[d?"replaceState":"pushState"](e,"",b),g());Oa&&(Oa=b);return k}return Oa||l.href.replace(/%27/g,"'")};k.state=function(){return t};var K=[],E=!1,G=null;k.onUrlChange=function(b){if(!E){if(c.history)B(a).on("popstate",f);B(a).on("hashchange",f);E=!0}K.push(b);return b};k.$$applicationDestroyed=function(){B(a).off("hashchange popstate",f)};k.$$checkUrlChange=h;k.baseHref=function(){var a=A.attr("href");return a?a.replace(/^(https?:)?\/\/[^/]*/,
+""):""};k.defer=function(a,b){var c;J++;c=n(function(){delete r[c];e(a)},b||0);r[c]=!0;return c};k.defer.cancel=function(a){return r[a]?(delete r[a],p(a),e(z),!0):!1}}function uf(){this.$get=["$window","$log","$sniffer","$document",function(a,b,d,c){return new pg(a,c,b,d)}]}function vf(){this.$get=function(){function a(a,c){function e(a){a!==n&&(p?p===a&&(p=a.n):p=a,f(a.n,a.p),f(a,n),n=a,n.n=null)}function f(a,b){a!==b&&(a&&(a.p=b),b&&(b.n=a))}if(a in b)throw L("$cacheFactory")("iid",a);var g=0,h=
+S({},c,{id:a}),k=V(),l=c&&c.capacity||Number.MAX_VALUE,m=V(),n=null,p=null;return b[a]={put:function(a,b){if(!w(b)){if(l<Number.MAX_VALUE){var c=m[a]||(m[a]={key:a});e(c)}a in k||g++;k[a]=b;g>l&&this.remove(p.key);return b}},get:function(a){if(l<Number.MAX_VALUE){var b=m[a];if(!b)return;e(b)}return k[a]},remove:function(a){if(l<Number.MAX_VALUE){var b=m[a];if(!b)return;b===n&&(n=b.p);b===p&&(p=b.n);f(b.n,b.p);delete m[a]}a in k&&(delete k[a],g--)},removeAll:function(){k=V();g=0;m=V();n=p=null},destroy:function(){m=
+h=k=null;delete b[a]},info:function(){return S({},h,{size:g})}}}var b={};a.info=function(){var a={};q(b,function(b,e){a[e]=b.info()});return a};a.get=function(a){return b[a]};return a}}function Sf(){this.$get=["$cacheFactory",function(a){return a("templates")}]}function Wc(a,b){function d(a,b,c){var d=/^\s*([@&<]|=(\*?))(\??)\s*([\w$]*)\s*$/,e=V();q(a,function(a,f){if(a in n)e[f]=n[a];else{var g=a.match(d);if(!g)throw fa("iscp",b,f,a,c?"controller bindings definition":"isolate scope definition");
+e[f]={mode:g[1][0],collection:"*"===g[2],optional:"?"===g[3],attrName:g[4]||f};g[4]&&(n[a]=e[f])}});return e}function c(a){var b=a.charAt(0);if(!b||b!==Q(b))throw fa("baddir",a);if(a!==a.trim())throw fa("baddir",a);}function e(a){var b=a.require||a.controller&&a.name;!H(b)&&C(b)&&q(b,function(a,c){var d=a.match(l);a.substring(d[0].length)||(b[c]=d[0]+c)});return b}var f={},g=/^\s*directive:\s*([\w-]+)\s+(.*)$/,h=/(([\w-]+)(?::([^;]+))?;?)/,k=re("ngSrc,ngSrcset,src,srcset"),l=/^(?:(\^\^?)?(\?)?(\^\^?)?)?/,
+m=/^(on[a-z]+|formaction)$/,n=V();this.directive=function N(b,d){fb(b,"name");Ka(b,"directive");F(b)?(c(b),fb(d,"directiveFactory"),f.hasOwnProperty(b)||(f[b]=[],a.factory(b+"Directive",["$injector","$exceptionHandler",function(a,c){var d=[];q(f[b],function(f,g){try{var h=a.invoke(f);D(h)?h={compile:la(h)}:!h.compile&&h.link&&(h.compile=la(h.link));h.priority=h.priority||0;h.index=g;h.name=h.name||b;h.require=e(h);var k=h,l=h.restrict;if(l&&(!F(l)||!/[EACM]/.test(l)))throw fa("badrestrict",l,b);k.restrict=
+l||"EA";h.$$moduleName=f.$$moduleName;d.push(h)}catch(m){c(m)}});return d}])),f[b].push(d)):q(b,Lc(N));return this};this.component=function(a,b){function c(a){function e(b){return D(b)||H(b)?function(c,d){return a.invoke(b,this,{$element:c,$attrs:d})}:b}var f=b.template||b.templateUrl?b.template:"",g={controller:d,controllerAs:qg(b.controller)||b.controllerAs||"$ctrl",template:e(f),templateUrl:e(b.templateUrl),transclude:b.transclude,scope:{},bindToController:b.bindings||{},restrict:"E",require:b.require};
+q(b,function(a,b){"$"===b.charAt(0)&&(g[b]=a)});return g}var d=b.controller||function(){};q(b,function(a,b){"$"===b.charAt(0)&&(c[b]=a,D(d)&&(d[b]=a))});c.$inject=["$injector"];return this.directive(a,c)};this.aHrefSanitizationWhitelist=function(a){return u(a)?(b.aHrefSanitizationWhitelist(a),this):b.aHrefSanitizationWhitelist()};this.imgSrcSanitizationWhitelist=function(a){return u(a)?(b.imgSrcSanitizationWhitelist(a),this):b.imgSrcSanitizationWhitelist()};var p=!0;this.debugInfoEnabled=function(a){return u(a)?
+(p=a,this):p};var r=!1;this.preAssignBindingsEnabled=function(a){return u(a)?(r=a,this):r};var J=10;this.onChangesTtl=function(a){return arguments.length?(J=a,this):J};var v=!0;this.commentDirectivesEnabled=function(a){return arguments.length?(v=a,this):v};var t=!0;this.cssClassDirectivesEnabled=function(a){return arguments.length?(t=a,this):t};this.$get=["$injector","$interpolate","$exceptionHandler","$templateRequest","$parse","$controller","$rootScope","$sce","$animate","$$sanitizeUri",function(a,
+b,c,e,n,E,G,y,O,X){function P(){try{if(!--ya)throw ia=void 0,fa("infchng",J);G.$apply(function(){for(var a=[],b=0,c=ia.length;b<c;++b)try{ia[b]()}catch(d){a.push(d)}ia=void 0;if(a.length)throw a;})}finally{ya++}}function s(a,b){if(b){var c=Object.keys(b),d,e,f;d=0;for(e=c.length;d<e;d++)f=c[d],this[f]=b[f]}else this.$attr={};this.$$element=a}function R(a,b,c){ta.innerHTML="<span "+b+">";b=ta.firstChild.attributes;var d=b[0];b.removeNamedItem(d.name);d.value=c;a.attributes.setNamedItem(d)}function La(a,
+b){try{a.addClass(b)}catch(c){}}function ca(a,b,c,d,e){a instanceof B||(a=B(a));var f=Ma(a,b,a,c,d,e);ca.$$addScopeClass(a);var g=null;return function(b,c,d){if(!a)throw fa("multilink");fb(b,"scope");e&&e.needsNewScope&&(b=b.$parent.$new());d=d||{};var h=d.parentBoundTranscludeFn,k=d.transcludeControllers;d=d.futureParentElement;h&&h.$$boundTransclude&&(h=h.$$boundTransclude);g||(g=(d=d&&d[0])?"foreignobject"!==wa(d)&&ma.call(d).match(/SVG/)?"svg":"html":"html");d="html"!==g?B(ha(g,B("<div>").append(a).html())):
+c?Na.clone.call(a):a;if(k)for(var l in k)d.data("$"+l+"Controller",k[l].instance);ca.$$addScopeInfo(d,b);c&&c(d,b);f&&f(b,d,d,h);c||(a=f=null);return d}}function Ma(a,b,c,d,e,f){function g(a,c,d,e){var f,k,l,m,n,p,r;if(K)for(r=Array(c.length),m=0;m<h.length;m+=3)f=h[m],r[f]=c[f];else r=c;m=0;for(n=h.length;m<n;)k=r[h[m++]],c=h[m++],f=h[m++],c?(c.scope?(l=a.$new(),ca.$$addScopeInfo(B(k),l)):l=a,p=c.transcludeOnThisElement?ja(a,c.transclude,e):!c.templateOnThisElement&&e?e:!e&&b?ja(a,b):null,c(f,l,
+k,d,p)):f&&f(a,k.childNodes,void 0,e)}for(var h=[],k=H(a)||a instanceof B,l,m,n,p,K,r=0;r<a.length;r++){l=new s;11===za&&L(a,r,k);m=jc(a[r],[],l,0===r?d:void 0,e);(f=m.length?W(m,a[r],l,b,c,null,[],[],f):null)&&f.scope&&ca.$$addScopeClass(l.$$element);l=f&&f.terminal||!(n=a[r].childNodes)||!n.length?null:Ma(n,f?(f.transcludeOnThisElement||!f.templateOnThisElement)&&f.transclude:b);if(f||l)h.push(r,f,l),p=!0,K=K||f;f=null}return p?g:null}function L(a,b,c){var d=a[b],e=d.parentNode,f;if(d.nodeType===
+Ia)for(;;){f=e?d.nextSibling:a[b+1];if(!f||f.nodeType!==Ia)break;d.nodeValue+=f.nodeValue;f.parentNode&&f.parentNode.removeChild(f);c&&f===a[b+1]&&a.splice(b+1,1)}}function ja(a,b,c){function d(e,f,g,h,k){e||(e=a.$new(!1,k),e.$$transcluded=!0);return b(e,f,{parentBoundTranscludeFn:c,transcludeControllers:g,futureParentElement:h})}var e=d.$$slots=V(),f;for(f in b.$$slots)e[f]=b.$$slots[f]?ja(a,b.$$slots[f],c):null;return d}function jc(a,b,c,d,e){var f=c.$attr,g;switch(a.nodeType){case 1:g=wa(a);Y(b,
+Ba(g),"E",d,e);for(var k,l,m,n,p=a.attributes,K=0,r=p&&p.length;K<r;K++){var G=!1,E=!1;k=p[K];l=k.name;m=k.value;k=Ba(l);(n=Ja.test(k))&&(l=l.replace(md,"").substr(8).replace(/_(.)/g,function(a,b){return b.toUpperCase()}));(k=k.match(Ka))&&Z(k[1])&&(G=l,E=l.substr(0,l.length-5)+"end",l=l.substr(0,l.length-6));k=Ba(l.toLowerCase());f[k]=l;if(n||!c.hasOwnProperty(k))c[k]=m,id(a,k)&&(c[k]=!0);pa(a,b,m,k,n);Y(b,k,"A",d,e,G,E)}"input"===g&&"hidden"===a.getAttribute("type")&&a.setAttribute("autocomplete",
+"off");if(!Ga)break;f=a.className;C(f)&&(f=f.animVal);if(F(f)&&""!==f)for(;a=h.exec(f);)k=Ba(a[2]),Y(b,k,"C",d,e)&&(c[k]=T(a[3])),f=f.substr(a.index+a[0].length);break;case Ia:la(b,a.nodeValue);break;case 8:if(!Fa)break;jb(a,b,c,d,e)}b.sort(ea);return b}function jb(a,b,c,d,e){try{var f=g.exec(a.nodeValue);if(f){var h=Ba(f[1]);Y(b,h,"M",d,e)&&(c[h]=T(f[2]))}}catch(k){}}function nd(a,b,c){var d=[],e=0;if(b&&a.hasAttribute&&a.hasAttribute(b)){do{if(!a)throw fa("uterdir",b,c);1===a.nodeType&&(a.hasAttribute(b)&&
+e++,a.hasAttribute(c)&&e--);d.push(a);a=a.nextSibling}while(0<e)}else d.push(a);return B(d)}function od(a,b,c){return function(d,e,f,g,h){e=nd(e[0],b,c);return a(d,e,f,g,h)}}function kc(a,b,c,d,e,f){var g;return a?ca(b,c,d,e,f):function(){g||(g=ca(b,c,d,e,f),b=c=f=null);return g.apply(this,arguments)}}function W(a,b,d,e,f,g,h,k,l){function m(a,b,c,d){if(a){c&&(a=od(a,c,d));a.require=y.require;a.directiveName=P;if(E===y||y.$$isolateScope)a=qa(a,{isolateScope:!0});h.push(a)}if(b){c&&(b=od(b,c,d));b.require=
+y.require;b.directiveName=P;if(E===y||y.$$isolateScope)b=qa(b,{isolateScope:!0});k.push(b)}}function n(a,e,f,g,l){function m(a,b,c,d){var e;Za(a)||(d=c,c=b,b=a,a=void 0);X&&(e=O);c||(c=X?P.parent():P);if(d){var f=l.$$slots[d];if(f)return f(a,b,e,c,R);if(w(f))throw fa("noslot",d,xa(P));}else return l(a,b,e,c,R)}var p,y,t,v,J,O,N,P;b===f?(g=d,P=d.$$element):(P=B(f),g=new s(P,d));J=e;E?v=e.$new(!0):K&&(J=e.$parent);l&&(N=m,N.$$boundTransclude=l,N.isSlotFilled=function(a){return!!l.$$slots[a]});G&&(O=
+ba(P,g,N,G,v,e,E));E&&(ca.$$addScopeInfo(P,v,!0,!(I&&(I===E||I===E.$$originalDirective))),ca.$$addScopeClass(P,!0),v.$$isolateBindings=E.$$isolateBindings,y=na(e,g,v,v.$$isolateBindings,E),y.removeWatches&&v.$on("$destroy",y.removeWatches));for(p in O){y=G[p];t=O[p];var Hb=y.$$bindings.bindToController;if(r){t.bindingInfo=Hb?na(J,g,t.instance,Hb,y):{};var A=t();A!==t.instance&&(t.instance=A,P.data("$"+y.name+"Controller",A),t.bindingInfo.removeWatches&&t.bindingInfo.removeWatches(),t.bindingInfo=
+na(J,g,t.instance,Hb,y))}else t.instance=t(),P.data("$"+y.name+"Controller",t.instance),t.bindingInfo=na(J,g,t.instance,Hb,y)}q(G,function(a,b){var c=a.require;a.bindToController&&!H(c)&&C(c)&&S(O[b].instance,U(b,c,P,O))});q(O,function(a){var b=a.instance;if(D(b.$onChanges))try{b.$onChanges(a.bindingInfo.initialChanges)}catch(d){c(d)}if(D(b.$onInit))try{b.$onInit()}catch(e){c(e)}D(b.$doCheck)&&(J.$watch(function(){b.$doCheck()}),b.$doCheck());D(b.$onDestroy)&&J.$on("$destroy",function(){b.$onDestroy()})});
+p=0;for(y=h.length;p<y;p++)t=h[p],ra(t,t.isolateScope?v:e,P,g,t.require&&U(t.directiveName,t.require,P,O),N);var R=e;E&&(E.template||null===E.templateUrl)&&(R=v);a&&a(R,f.childNodes,void 0,l);for(p=k.length-1;0<=p;p--)t=k[p],ra(t,t.isolateScope?v:e,P,g,t.require&&U(t.directiveName,t.require,P,O),N);q(O,function(a){a=a.instance;D(a.$postLink)&&a.$postLink()})}l=l||{};for(var p=-Number.MAX_VALUE,K=l.newScopeDirective,G=l.controllerDirectives,E=l.newIsolateScopeDirective,I=l.templateDirective,t=l.nonTlbTranscludeDirective,
+J=!1,O=!1,X=l.hasElementTranscludeDirective,v=d.$$element=B(b),y,P,N,A=e,R,u=!1,La=!1,x,z=0,F=a.length;z<F;z++){y=a[z];var Ma=y.$$start,L=y.$$end;Ma&&(v=nd(b,Ma,L));N=void 0;if(p>y.priority)break;if(x=y.scope)y.templateUrl||(C(x)?($("new/isolated scope",E||K,y,v),E=y):$("new/isolated scope",E,y,v)),K=K||y;P=y.name;if(!u&&(y.replace&&(y.templateUrl||y.template)||y.transclude&&!y.$$tlb)){for(x=z+1;u=a[x++];)if(u.transclude&&!u.$$tlb||u.replace&&(u.templateUrl||u.template)){La=!0;break}u=!0}!y.templateUrl&&
+y.controller&&(G=G||V(),$("'"+P+"' controller",G[P],y,v),G[P]=y);if(x=y.transclude)if(J=!0,y.$$tlb||($("transclusion",t,y,v),t=y),"element"===x)X=!0,p=y.priority,N=v,v=d.$$element=B(ca.$$createComment(P,d[P])),b=v[0],ka(f,va.call(N,0),b),N[0].$$parentNode=N[0].parentNode,A=kc(La,N,e,p,g&&g.name,{nonTlbTranscludeDirective:t});else{var ja=V();if(C(x)){N=[];var Q=V(),jb=V();q(x,function(a,b){var c="?"===a.charAt(0);a=c?a.substring(1):a;Q[a]=b;ja[b]=null;jb[b]=c});q(v.contents(),function(a){var b=Q[Ba(wa(a))];
+b?(jb[b]=!0,ja[b]=ja[b]||[],ja[b].push(a)):N.push(a)});q(jb,function(a,b){if(!a)throw fa("reqslot",b);});for(var ic in ja)ja[ic]&&(ja[ic]=kc(La,ja[ic],e))}else N=B(fc(b)).contents();v.empty();A=kc(La,N,e,void 0,void 0,{needsNewScope:y.$$isolateScope||y.$$newScope});A.$$slots=ja}if(y.template)if(O=!0,$("template",I,y,v),I=y,x=D(y.template)?y.template(v,d):y.template,x=Ea(x),y.replace){g=y;N=cc.test(x)?pd(ha(y.templateNamespace,T(x))):[];b=N[0];if(1!==N.length||1!==b.nodeType)throw fa("tplrt",P,"");
+ka(f,v,b);F={$attr:{}};x=jc(b,[],F);var Y=a.splice(z+1,a.length-(z+1));(E||K)&&aa(x,E,K);a=a.concat(x).concat(Y);da(d,F);F=a.length}else v.html(x);if(y.templateUrl)O=!0,$("template",I,y,v),I=y,y.replace&&(g=y),n=ga(a.splice(z,a.length-z),v,d,f,J&&A,h,k,{controllerDirectives:G,newScopeDirective:K!==y&&K,newIsolateScopeDirective:E,templateDirective:I,nonTlbTranscludeDirective:t}),F=a.length;else if(y.compile)try{R=y.compile(v,d,A);var Z=y.$$originalDirective||y;D(R)?m(null,bb(Z,R),Ma,L):R&&m(bb(Z,R.pre),
+bb(Z,R.post),Ma,L)}catch(ea){c(ea,xa(v))}y.terminal&&(n.terminal=!0,p=Math.max(p,y.priority))}n.scope=K&&!0===K.scope;n.transcludeOnThisElement=J;n.templateOnThisElement=O;n.transclude=A;l.hasElementTranscludeDirective=X;return n}function U(a,b,c,d){var e;if(F(b)){var f=b.match(l);b=b.substring(f[0].length);var g=f[1]||f[3],f="?"===f[2];"^^"===g?c=c.parent():e=(e=d&&d[b])&&e.instance;if(!e){var h="$"+b+"Controller";e=g?c.inheritedData(h):c.data(h)}if(!e&&!f)throw fa("ctreq",b,a);}else if(H(b))for(e=
+[],g=0,f=b.length;g<f;g++)e[g]=U(a,b[g],c,d);else C(b)&&(e={},q(b,function(b,f){e[f]=U(a,b,c,d)}));return e||null}function ba(a,b,c,d,e,f,g){var h=V(),k;for(k in d){var l=d[k],m={$scope:l===g||l.$$isolateScope?e:f,$element:a,$attrs:b,$transclude:c},n=l.controller;"@"===n&&(n=b[l.name]);m=E(n,m,!0,l.controllerAs);h[l.name]=m;a.data("$"+l.name+"Controller",m.instance)}return h}function aa(a,b,c){for(var d=0,e=a.length;d<e;d++)a[d]=Vb(a[d],{$$isolateScope:b,$$newScope:c})}function Y(b,c,e,g,h,k,l){if(c===
+h)return null;var m=null;if(f.hasOwnProperty(c)){h=a.get(c+"Directive");for(var n=0,p=h.length;n<p;n++)if(c=h[n],(w(g)||g>c.priority)&&-1!==c.restrict.indexOf(e)){k&&(c=Vb(c,{$$start:k,$$end:l}));if(!c.$$bindings){var K=m=c,r=c.name,t={isolateScope:null,bindToController:null};C(K.scope)&&(!0===K.bindToController?(t.bindToController=d(K.scope,r,!0),t.isolateScope={}):t.isolateScope=d(K.scope,r,!1));C(K.bindToController)&&(t.bindToController=d(K.bindToController,r,!0));if(t.bindToController&&!K.controller)throw fa("noctrl",
+r);m=m.$$bindings=t;C(m.isolateScope)&&(c.$$isolateBindings=m.isolateScope)}b.push(c);m=c}}return m}function Z(b){if(f.hasOwnProperty(b))for(var c=a.get(b+"Directive"),d=0,e=c.length;d<e;d++)if(b=c[d],b.multiElement)return!0;return!1}function da(a,b){var c=b.$attr,d=a.$attr;q(a,function(d,e){"$"!==e.charAt(0)&&(b[e]&&b[e]!==d&&(d=d.length?d+(("style"===e?";":" ")+b[e]):b[e]),a.$set(e,d,!0,c[e]))});q(b,function(b,e){a.hasOwnProperty(e)||"$"===e.charAt(0)||(a[e]=b,"class"!==e&&"style"!==e&&(d[e]=c[e]))})}
+function ga(a,b,d,f,g,h,k,l){var m=[],n,p,K=b[0],r=a.shift(),t=Vb(r,{templateUrl:null,transclude:null,replace:null,$$originalDirective:r}),y=D(r.templateUrl)?r.templateUrl(b,d):r.templateUrl,E=r.templateNamespace;b.empty();e(y).then(function(c){var e,G;c=Ea(c);if(r.replace){c=cc.test(c)?pd(ha(E,T(c))):[];e=c[0];if(1!==c.length||1!==e.nodeType)throw fa("tplrt",r.name,y);c={$attr:{}};ka(f,b,e);var I=jc(e,[],c);C(r.scope)&&aa(I,!0);a=I.concat(a);da(d,c)}else e=K,b.html(c);a.unshift(t);n=W(a,e,d,g,b,
+r,h,k,l);q(f,function(a,c){a===e&&(f[c]=b[0])});for(p=Ma(b[0].childNodes,g);m.length;){c=m.shift();G=m.shift();var v=m.shift(),J=m.shift(),I=b[0];if(!c.$$destroyed){if(G!==K){var O=G.className;l.hasElementTranscludeDirective&&r.replace||(I=fc(e));ka(v,B(G),I);La(B(I),O)}G=n.transcludeOnThisElement?ja(c,n.transclude,J):J;n(p,c,I,f,G)}}m=null}).catch(function(a){a instanceof Error&&c(a)});return function(a,b,c,d,e){a=e;b.$$destroyed||(m?m.push(b,c,d,a):(n.transcludeOnThisElement&&(a=ja(b,n.transclude,
+e)),n(p,b,c,d,a)))}}function ea(a,b){var c=b.priority-a.priority;return 0!==c?c:a.name!==b.name?a.name<b.name?-1:1:a.index-b.index}function $(a,b,c,d){function e(a){return a?" (module: "+a+")":""}if(b)throw fa("multidir",b.name,e(b.$$moduleName),c.name,e(c.$$moduleName),a,xa(d));}function la(a,c){var d=b(c,!0);d&&a.push({priority:0,compile:function(a){a=a.parent();var b=!!a.length;b&&ca.$$addBindingClass(a);return function(a,c){var e=c.parent();b||ca.$$addBindingClass(e);ca.$$addBindingInfo(e,d.expressions);
+a.$watch(d,function(a){c[0].nodeValue=a})}}})}function ha(a,b){a=Q(a||"html");switch(a){case "svg":case "math":var c=x.document.createElement("div");c.innerHTML="<"+a+">"+b+"</"+a+">";return c.childNodes[0].childNodes;default:return b}}function oa(a,b){if("srcdoc"===b)return y.HTML;var c=wa(a);if("src"===b||"ngSrc"===b){if(-1===["img","video","audio","source","track"].indexOf(c))return y.RESOURCE_URL}else if("xlinkHref"===b||"form"===c&&"action"===b||"link"===c&&"href"===b)return y.RESOURCE_URL}function pa(a,
+c,d,e,f){var g=oa(a,e),h=k[e]||f,l=b(d,!f,g,h);if(l){if("multiple"===e&&"select"===wa(a))throw fa("selmulti",xa(a));if(m.test(e))throw fa("nodomevents");c.push({priority:100,compile:function(){return{pre:function(a,c,f){c=f.$$observers||(f.$$observers=V());var k=f[e];k!==d&&(l=k&&b(k,!0,g,h),d=k);l&&(f[e]=l(a),(c[e]||(c[e]=[])).$$inter=!0,(f.$$observers&&f.$$observers[e].$$scope||a).$watch(l,function(a,b){"class"===e&&a!==b?f.$updateClass(a,b):f.$set(e,a)}))}}}})}}function ka(a,b,c){var d=b[0],e=
+b.length,f=d.parentNode,g,h;if(a)for(g=0,h=a.length;g<h;g++)if(a[g]===d){a[g++]=c;h=g+e-1;for(var k=a.length;g<k;g++,h++)h<k?a[g]=a[h]:delete a[g];a.length-=e-1;a.context===d&&(a.context=c);break}f&&f.replaceChild(c,d);a=x.document.createDocumentFragment();for(g=0;g<e;g++)a.appendChild(b[g]);B.hasData(d)&&(B.data(c,B.data(d)),B(d).off("$destroy"));B.cleanData(a.querySelectorAll("*"));for(g=1;g<e;g++)delete b[g];b[0]=c;b.length=1}function qa(a,b){return S(function(){return a.apply(null,arguments)},
+a,b)}function ra(a,b,d,e,f,g){try{a(b,d,e,f,g)}catch(h){c(h,xa(d))}}function na(a,c,d,e,f){function g(b,c,e){D(d.$onChanges)&&!Xb(c,e)&&(ia||(a.$$postDigest(P),ia=[]),m||(m={},ia.push(h)),m[b]&&(e=m[b].previousValue),m[b]=new Ib(e,c))}function h(){d.$onChanges(m);m=void 0}var k=[],l={},m;q(e,function(e,h){var m=e.attrName,p=e.optional,r,t,y,G;switch(e.mode){case "@":p||ua.call(c,m)||(d[h]=c[m]=void 0);p=c.$observe(m,function(a){if(F(a)||Ha(a))g(h,a,d[h]),d[h]=a});c.$$observers[m].$$scope=a;r=c[m];
+F(r)?d[h]=b(r)(a):Ha(r)&&(d[h]=r);l[h]=new Ib(lc,d[h]);k.push(p);break;case "=":if(!ua.call(c,m)){if(p)break;c[m]=void 0}if(p&&!c[m])break;t=n(c[m]);G=t.literal?sa:Xb;y=t.assign||function(){r=d[h]=t(a);throw fa("nonassign",c[m],m,f.name);};r=d[h]=t(a);p=function(b){G(b,d[h])||(G(b,r)?y(a,b=d[h]):d[h]=b);return r=b};p.$stateful=!0;p=e.collection?a.$watchCollection(c[m],p):a.$watch(n(c[m],p),null,t.literal);k.push(p);break;case "<":if(!ua.call(c,m)){if(p)break;c[m]=void 0}if(p&&!c[m])break;t=n(c[m]);
+var E=t.literal,I=d[h]=t(a);l[h]=new Ib(lc,d[h]);p=a.$watch(t,function(a,b){if(b===a){if(b===I||E&&sa(b,I))return;b=I}g(h,a,b);d[h]=a},E);k.push(p);break;case "&":t=c.hasOwnProperty(m)?n(c[m]):z;if(t===z&&p)break;d[h]=function(b){return t(a,b)}}});return{initialChanges:l,removeWatches:k.length&&function(){for(var a=0,b=k.length;a<b;++a)k[a]()}}}var Ca=/^\w/,ta=x.document.createElement("div"),Fa=v,Ga=t,ya=J,ia;s.prototype={$normalize:Ba,$addClass:function(a){a&&0<a.length&&O.addClass(this.$$element,
+a)},$removeClass:function(a){a&&0<a.length&&O.removeClass(this.$$element,a)},$updateClass:function(a,b){var c=qd(a,b);c&&c.length&&O.addClass(this.$$element,c);(c=qd(b,a))&&c.length&&O.removeClass(this.$$element,c)},$set:function(a,b,d,e){var f=id(this.$$element[0],a),g=rd[a],h=a;f?(this.$$element.prop(a,b),e=f):g&&(this[g]=b,h=g);this[a]=b;e?this.$attr[a]=e:(e=this.$attr[a])||(this.$attr[a]=e=Tc(a,"-"));f=wa(this.$$element);if("a"===f&&("href"===a||"xlinkHref"===a)||"img"===f&&"src"===a)this[a]=
+b=X(b,"src"===a);else if("img"===f&&"srcset"===a&&u(b)){for(var f="",g=T(b),k=/(\s+\d+x\s*,|\s+\d+w\s*,|\s+,|,\s+)/,k=/\s/.test(g)?k:/(,)/,g=g.split(k),k=Math.floor(g.length/2),l=0;l<k;l++)var m=2*l,f=f+X(T(g[m]),!0),f=f+(" "+T(g[m+1]));g=T(g[2*l]).split(/\s/);f+=X(T(g[0]),!0);2===g.length&&(f+=" "+T(g[1]));this[a]=b=f}!1!==d&&(null===b||w(b)?this.$$element.removeAttr(e):Ca.test(e)?this.$$element.attr(e,b):R(this.$$element[0],e,b));(a=this.$$observers)&&q(a[h],function(a){try{a(b)}catch(d){c(d)}})},
+$observe:function(a,b){var c=this,d=c.$$observers||(c.$$observers=V()),e=d[a]||(d[a]=[]);e.push(b);G.$evalAsync(function(){e.$$inter||!c.hasOwnProperty(a)||w(c[a])||b(c[a])});return function(){$a(e,b)}}};var Aa=b.startSymbol(),Da=b.endSymbol(),Ea="{{"===Aa&&"}}"===Da?Ya:function(a){return a.replace(/\{\{/g,Aa).replace(/}}/g,Da)},Ja=/^ngAttr[A-Z]/,Ka=/^(.+)Start$/;ca.$$addBindingInfo=p?function(a,b){var c=a.data("$binding")||[];H(b)?c=c.concat(b):c.push(b);a.data("$binding",c)}:z;ca.$$addBindingClass=
+p?function(a){La(a,"ng-binding")}:z;ca.$$addScopeInfo=p?function(a,b,c,d){a.data(c?d?"$isolateScopeNoTemplate":"$isolateScope":"$scope",b)}:z;ca.$$addScopeClass=p?function(a,b){La(a,b?"ng-isolate-scope":"ng-scope")}:z;ca.$$createComment=function(a,b){var c="";p&&(c=" "+(a||"")+": ",b&&(c+=b+" "));return x.document.createComment(c)};return ca}]}function Ib(a,b){this.previousValue=a;this.currentValue=b}function Ba(a){return a.replace(md,"").replace(rg,gb)}function qd(a,b){var d="",c=a.split(/\s+/),
+e=b.split(/\s+/),f=0;a:for(;f<c.length;f++){for(var g=c[f],h=0;h<e.length;h++)if(g===e[h])continue a;d+=(0<d.length?" ":"")+g}return d}function pd(a){a=B(a);var b=a.length;if(1>=b)return a;for(;b--;){var d=a[b];(8===d.nodeType||d.nodeType===Ia&&""===d.nodeValue.trim())&&sg.call(a,b,1)}return a}function qg(a,b){if(b&&F(b))return b;if(F(a)){var d=sd.exec(a);if(d)return d[3]}}function wf(){var a={},b=!1;this.has=function(b){return a.hasOwnProperty(b)};this.register=function(b,c){Ka(b,"controller");C(b)?
+S(a,b):a[b]=c};this.allowGlobals=function(){b=!0};this.$get=["$injector","$window",function(d,c){function e(a,b,c,d){if(!a||!C(a.$scope))throw L("$controller")("noscp",d,b);a.$scope[b]=c}return function(f,g,h,k){var l,m,n;h=!0===h;k&&F(k)&&(n=k);if(F(f)){k=f.match(sd);if(!k)throw td("ctrlfmt",f);m=k[1];n=n||k[3];f=a.hasOwnProperty(m)?a[m]:Vc(g.$scope,m,!0)||(b?Vc(c,m,!0):void 0);if(!f)throw td("ctrlreg",m);sb(f,m,!0)}if(h)return h=(H(f)?f[f.length-1]:f).prototype,l=Object.create(h||null),n&&e(g,n,
+l,m||f.name),S(function(){var a=d.invoke(f,l,g,m);a!==l&&(C(a)||D(a))&&(l=a,n&&e(g,n,l,m||f.name));return l},{instance:l,identifier:n});l=d.instantiate(f,g,m);n&&e(g,n,l,m||f.name);return l}}]}function xf(){this.$get=["$window",function(a){return B(a.document)}]}function yf(){this.$get=["$document","$rootScope",function(a,b){function d(){e=c.hidden}var c=a[0],e=c&&c.hidden;a.on("visibilitychange",d);b.$on("$destroy",function(){a.off("visibilitychange",d)});return function(){return e}}]}function zf(){this.$get=
+["$log",function(a){return function(b,d){a.error.apply(a,arguments)}}]}function mc(a){return C(a)?ga(a)?a.toISOString():cb(a):a}function Ef(){this.$get=function(){return function(a){if(!a)return"";var b=[];Kc(a,function(a,c){null===a||w(a)||(H(a)?q(a,function(a){b.push($(c)+"="+$(mc(a)))}):b.push($(c)+"="+$(mc(a))))});return b.join("&")}}}function Ff(){this.$get=function(){return function(a){function b(a,e,f){null===a||w(a)||(H(a)?q(a,function(a,c){b(a,e+"["+(C(a)?c:"")+"]")}):C(a)&&!ga(a)?Kc(a,function(a,
+c){b(a,e+(f?"":"[")+c+(f?"":"]"))}):d.push($(e)+"="+$(mc(a))))}if(!a)return"";var d=[];b(a,"",!0);return d.join("&")}}}function nc(a,b){if(F(a)){var d=a.replace(tg,"").trim();if(d){var c=b("Content-Type");(c=c&&0===c.indexOf(ud))||(c=(c=d.match(ug))&&vg[c[0]].test(d));if(c)try{a=Oc(d)}catch(e){throw oc("baddata",a,e);}}}return a}function vd(a){var b=V(),d;F(a)?q(a.split("\n"),function(a){d=a.indexOf(":");var e=Q(T(a.substr(0,d)));a=T(a.substr(d+1));e&&(b[e]=b[e]?b[e]+", "+a:a)}):C(a)&&q(a,function(a,
+d){var f=Q(d),g=T(a);f&&(b[f]=b[f]?b[f]+", "+g:g)});return b}function wd(a){var b;return function(d){b||(b=vd(a));return d?(d=b[Q(d)],void 0===d&&(d=null),d):b}}function xd(a,b,d,c){if(D(c))return c(a,b,d);q(c,function(c){a=c(a,b,d)});return a}function Df(){var a=this.defaults={transformResponse:[nc],transformRequest:[function(a){return C(a)&&"[object File]"!==ma.call(a)&&"[object Blob]"!==ma.call(a)&&"[object FormData]"!==ma.call(a)?cb(a):a}],headers:{common:{Accept:"application/json, text/plain, */*"},
+post:pa(pc),put:pa(pc),patch:pa(pc)},xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",paramSerializer:"$httpParamSerializer",jsonpCallbackParam:"callback"},b=!1;this.useApplyAsync=function(a){return u(a)?(b=!!a,this):b};var d=this.interceptors=[];this.$get=["$browser","$httpBackend","$$cookieReader","$cacheFactory","$rootScope","$q","$injector","$sce",function(c,e,f,g,h,k,l,m){function n(b){function d(a,b){for(var c=0,e=b.length;c<e;){var f=b[c++],g=b[c++];a=a.then(f,g)}b.length=0;return a}
+function e(a,b){var c,d={};q(a,function(a,e){D(a)?(c=a(b),null!=c&&(d[e]=c)):d[e]=a});return d}function f(a){var b=S({},a);b.data=xd(a.data,a.headers,a.status,g.transformResponse);a=a.status;return 200<=a&&300>a?b:k.reject(b)}if(!C(b))throw L("$http")("badreq",b);if(!F(m.valueOf(b.url)))throw L("$http")("badreq",b.url);var g=S({method:"get",transformRequest:a.transformRequest,transformResponse:a.transformResponse,paramSerializer:a.paramSerializer,jsonpCallbackParam:a.jsonpCallbackParam},b);g.headers=
+function(b){var c=a.headers,d=S({},b.headers),f,g,h,c=S({},c.common,c[Q(b.method)]);a:for(f in c){g=Q(f);for(h in d)if(Q(h)===g)continue a;d[f]=c[f]}return e(d,pa(b))}(b);g.method=ub(g.method);g.paramSerializer=F(g.paramSerializer)?l.get(g.paramSerializer):g.paramSerializer;c.$$incOutstandingRequestCount();var h=[],n=[];b=k.resolve(g);q(t,function(a){(a.request||a.requestError)&&h.unshift(a.request,a.requestError);(a.response||a.responseError)&&n.push(a.response,a.responseError)});b=d(b,h);b=b.then(function(b){var c=
+b.headers,d=xd(b.data,wd(c),void 0,b.transformRequest);w(d)&&q(c,function(a,b){"content-type"===Q(b)&&delete c[b]});w(b.withCredentials)&&!w(a.withCredentials)&&(b.withCredentials=a.withCredentials);return p(b,d).then(f,f)});b=d(b,n);return b=b.finally(function(){c.$$completeOutstandingRequest(z)})}function p(c,d){function g(a){if(a){var c={};q(a,function(a,d){c[d]=function(c){function d(){a(c)}b?h.$applyAsync(d):h.$$phase?d():h.$apply(d)}});return c}}function l(a,c,d,e){function f(){p(c,a,d,e)}O&&
+(200<=a&&300>a?O.put(R,[a,c,vd(d),e]):O.remove(R));b?h.$applyAsync(f):(f(),h.$$phase||h.$apply())}function p(a,b,d,e){b=-1<=b?b:0;(200<=b&&300>b?G.resolve:G.reject)({data:a,status:b,headers:wd(d),config:c,statusText:e})}function K(a){p(a.data,a.status,pa(a.headers()),a.statusText)}function t(){var a=n.pendingRequests.indexOf(c);-1!==a&&n.pendingRequests.splice(a,1)}var G=k.defer(),y=G.promise,O,X,P=c.headers,s="jsonp"===Q(c.method),R=c.url;s?R=m.getTrustedResourceUrl(R):F(R)||(R=m.valueOf(R));R=r(R,
+c.paramSerializer(c.params));s&&(R=J(R,c.jsonpCallbackParam));n.pendingRequests.push(c);y.then(t,t);!c.cache&&!a.cache||!1===c.cache||"GET"!==c.method&&"JSONP"!==c.method||(O=C(c.cache)?c.cache:C(a.cache)?a.cache:v);O&&(X=O.get(R),u(X)?X&&D(X.then)?X.then(K,K):H(X)?p(X[1],X[0],pa(X[2]),X[3]):p(X,200,{},"OK"):O.put(R,y));w(X)&&((X=yd(c.url)?f()[c.xsrfCookieName||a.xsrfCookieName]:void 0)&&(P[c.xsrfHeaderName||a.xsrfHeaderName]=X),e(c.method,R,d,l,P,c.timeout,c.withCredentials,c.responseType,g(c.eventHandlers),
+g(c.uploadEventHandlers)));return y}function r(a,b){0<b.length&&(a+=(-1===a.indexOf("?")?"?":"&")+b);return a}function J(a,b){if(/[&?][^=]+=JSON_CALLBACK/.test(a))throw oc("badjsonp",a);if((new RegExp("[&?]"+b+"=")).test(a))throw oc("badjsonp",b,a);return a+=(-1===a.indexOf("?")?"?":"&")+b+"=JSON_CALLBACK"}var v=g("$http");a.paramSerializer=F(a.paramSerializer)?l.get(a.paramSerializer):a.paramSerializer;var t=[];q(d,function(a){t.unshift(F(a)?l.get(a):l.invoke(a))});n.pendingRequests=[];(function(a){q(arguments,
+function(a){n[a]=function(b,c){return n(S({},c||{},{method:a,url:b}))}})})("get","delete","head","jsonp");(function(a){q(arguments,function(a){n[a]=function(b,c,d){return n(S({},d||{},{method:a,url:b,data:c}))}})})("post","put","patch");n.defaults=a;return n}]}function Hf(){this.$get=function(){return function(){return new x.XMLHttpRequest}}}function Gf(){this.$get=["$browser","$jsonpCallbacks","$document","$xhrFactory",function(a,b,d,c){return wg(a,c,a.defer,b,d[0])}]}function wg(a,b,d,c,e){function f(a,
+b,d){a=a.replace("JSON_CALLBACK",b);var f=e.createElement("script"),m=null;f.type="text/javascript";f.src=a;f.async=!0;m=function(a){f.removeEventListener("load",m);f.removeEventListener("error",m);e.body.removeChild(f);f=null;var g=-1,r="unknown";a&&("load"!==a.type||c.wasCalled(b)||(a={type:"error"}),r=a.type,g="error"===a.type?404:200);d&&d(g,r)};f.addEventListener("load",m);f.addEventListener("error",m);e.body.appendChild(f);return m}return function(e,h,k,l,m,n,p,r,J,v){function t(){N&&N();A&&
+A.abort()}h=h||a.url();if("jsonp"===Q(e))var M=c.createCallback(h),N=f(h,M,function(a,b){var e=200===a&&c.getResponse(M);u(I)&&d.cancel(I);N=A=null;l(a,e,"",b);c.removeCallback(M)});else{var A=b(e,h);A.open(e,h,!0);q(m,function(a,b){u(a)&&A.setRequestHeader(b,a)});A.onload=function(){var a=A.statusText||"",b="response"in A?A.response:A.responseText,c=1223===A.status?204:A.status;0===c&&(c=b?200:"file"===Ca(h).protocol?404:0);var e=A.getAllResponseHeaders();u(I)&&d.cancel(I);N=A=null;l(c,b,e,a)};e=
+function(){u(I)&&d.cancel(I);N=A=null;l(-1,null,null,"")};A.onerror=e;A.onabort=e;A.ontimeout=e;q(J,function(a,b){A.addEventListener(b,a)});q(v,function(a,b){A.upload.addEventListener(b,a)});p&&(A.withCredentials=!0);if(r)try{A.responseType=r}catch(s){if("json"!==r)throw s;}A.send(w(k)?null:k)}if(0<n)var I=d(t,n);else n&&D(n.then)&&n.then(t)}}function Bf(){var a="{{",b="}}";this.startSymbol=function(b){return b?(a=b,this):a};this.endSymbol=function(a){return a?(b=a,this):b};this.$get=["$parse","$exceptionHandler",
+"$sce",function(d,c,e){function f(a){return"\\\\\\"+a}function g(c){return c.replace(n,a).replace(p,b)}function h(a,b,c,d){var e=a.$watch(function(a){e();return d(a)},b,c);return e}function k(f,k,n,p){function M(a){try{var b=a;a=n?e.getTrusted(n,b):e.valueOf(b);return p&&!u(a)?a:$b(a)}catch(d){c(Da.interr(f,d))}}if(!f.length||-1===f.indexOf(a)){var q;k||(k=g(f),q=la(k),q.exp=f,q.expressions=[],q.$$watchDelegate=h);return q}p=!!p;var A,s,I=0,K=[],E=[];q=f.length;for(var G=[],y=[];I<q;)if(-1!==(A=f.indexOf(a,
+I))&&-1!==(s=f.indexOf(b,A+l)))I!==A&&G.push(g(f.substring(I,A))),I=f.substring(A+l,s),K.push(I),E.push(d(I,M)),I=s+m,y.push(G.length),G.push("");else{I!==q&&G.push(g(f.substring(I)));break}n&&1<G.length&&Da.throwNoconcat(f);if(!k||K.length){var O=function(a){for(var b=0,c=K.length;b<c;b++){if(p&&w(a[b]))return;G[y[b]]=a[b]}return G.join("")};return S(function(a){var b=0,d=K.length,e=Array(d);try{for(;b<d;b++)e[b]=E[b](a);return O(e)}catch(g){c(Da.interr(f,g))}},{exp:f,expressions:K,$$watchDelegate:function(a,
+b){var c;return a.$watchGroup(E,function(d,e){var f=O(d);D(b)&&b.call(this,f,d!==e?c:f,a);c=f})}})}}var l=a.length,m=b.length,n=new RegExp(a.replace(/./g,f),"g"),p=new RegExp(b.replace(/./g,f),"g");k.startSymbol=function(){return a};k.endSymbol=function(){return b};return k}]}function Cf(){this.$get=["$rootScope","$window","$q","$$q","$browser",function(a,b,d,c,e){function f(f,k,l,m){function n(){p?f.apply(null,r):f(t)}var p=4<arguments.length,r=p?va.call(arguments,4):[],J=b.setInterval,v=b.clearInterval,
+t=0,M=u(m)&&!m,q=(M?c:d).defer(),A=q.promise;l=u(l)?l:0;A.$$intervalId=J(function(){M?e.defer(n):a.$evalAsync(n);q.notify(t++);0<l&&t>=l&&(q.resolve(t),v(A.$$intervalId),delete g[A.$$intervalId]);M||a.$apply()},k);g[A.$$intervalId]=q;return A}var g={};f.cancel=function(a){return a&&a.$$intervalId in g?(g[a.$$intervalId].promise.catch(z),g[a.$$intervalId].reject("canceled"),b.clearInterval(a.$$intervalId),delete g[a.$$intervalId],!0):!1};return f}]}function qc(a){a=a.split("/");for(var b=a.length;b--;)a[b]=
+db(a[b]);return a.join("/")}function zd(a,b){var d=Ca(a);b.$$protocol=d.protocol;b.$$host=d.hostname;b.$$port=Z(d.port)||xg[d.protocol]||null}function Ad(a,b){if(yg.test(a))throw kb("badpath",a);var d="/"!==a.charAt(0);d&&(a="/"+a);var c=Ca(a);b.$$path=decodeURIComponent(d&&"/"===c.pathname.charAt(0)?c.pathname.substring(1):c.pathname);b.$$search=Rc(c.search);b.$$hash=decodeURIComponent(c.hash);b.$$path&&"/"!==b.$$path.charAt(0)&&(b.$$path="/"+b.$$path)}function rc(a,b){return a.slice(0,b.length)===
+b}function ka(a,b){if(rc(b,a))return b.substr(a.length)}function Aa(a){var b=a.indexOf("#");return-1===b?a:a.substr(0,b)}function lb(a){return a.replace(/(#.+)|#$/,"$1")}function sc(a,b,d){this.$$html5=!0;d=d||"";zd(a,this);this.$$parse=function(a){var d=ka(b,a);if(!F(d))throw kb("ipthprfx",a,b);Ad(d,this);this.$$path||(this.$$path="/");this.$$compose()};this.$$compose=function(){var a=Zb(this.$$search),d=this.$$hash?"#"+db(this.$$hash):"";this.$$url=qc(this.$$path)+(a?"?"+a:"")+d;this.$$absUrl=b+
+this.$$url.substr(1);this.$$urlUpdatedByLocation=!0};this.$$parseLinkUrl=function(c,e){if(e&&"#"===e[0])return this.hash(e.slice(1)),!0;var f,g;u(f=ka(a,c))?(g=f,g=d&&u(f=ka(d,f))?b+(ka("/",f)||f):a+g):u(f=ka(b,c))?g=b+f:b===c+"/"&&(g=b);g&&this.$$parse(g);return!!g}}function tc(a,b,d){zd(a,this);this.$$parse=function(c){var e=ka(a,c)||ka(b,c),f;w(e)||"#"!==e.charAt(0)?this.$$html5?f=e:(f="",w(e)&&(a=c,this.replace())):(f=ka(d,e),w(f)&&(f=e));Ad(f,this);c=this.$$path;var e=a,g=/^\/[A-Z]:(\/.*)/;rc(f,
+e)&&(f=f.replace(e,""));g.exec(f)||(c=(f=g.exec(c))?f[1]:c);this.$$path=c;this.$$compose()};this.$$compose=function(){var b=Zb(this.$$search),e=this.$$hash?"#"+db(this.$$hash):"";this.$$url=qc(this.$$path)+(b?"?"+b:"")+e;this.$$absUrl=a+(this.$$url?d+this.$$url:"");this.$$urlUpdatedByLocation=!0};this.$$parseLinkUrl=function(b,d){return Aa(a)===Aa(b)?(this.$$parse(b),!0):!1}}function Bd(a,b,d){this.$$html5=!0;tc.apply(this,arguments);this.$$parseLinkUrl=function(c,e){if(e&&"#"===e[0])return this.hash(e.slice(1)),
+!0;var f,g;a===Aa(c)?f=c:(g=ka(b,c))?f=a+d+g:b===c+"/"&&(f=b);f&&this.$$parse(f);return!!f};this.$$compose=function(){var b=Zb(this.$$search),e=this.$$hash?"#"+db(this.$$hash):"";this.$$url=qc(this.$$path)+(b?"?"+b:"")+e;this.$$absUrl=a+d+this.$$url;this.$$urlUpdatedByLocation=!0}}function Jb(a){return function(){return this[a]}}function Cd(a,b){return function(d){if(w(d))return this[a];this[a]=b(d);this.$$compose();return this}}function Jf(){var a="!",b={enabled:!1,requireBase:!0,rewriteLinks:!0};
+this.hashPrefix=function(b){return u(b)?(a=b,this):a};this.html5Mode=function(a){if(Ha(a))return b.enabled=a,this;if(C(a)){Ha(a.enabled)&&(b.enabled=a.enabled);Ha(a.requireBase)&&(b.requireBase=a.requireBase);if(Ha(a.rewriteLinks)||F(a.rewriteLinks))b.rewriteLinks=a.rewriteLinks;return this}return b};this.$get=["$rootScope","$browser","$sniffer","$rootElement","$window",function(d,c,e,f,g){function h(a,b,d){var e=l.url(),f=l.$$state;try{c.url(a,b,d),l.$$state=c.state()}catch(g){throw l.url(e),l.$$state=
+f,g;}}function k(a,b){d.$broadcast("$locationChangeSuccess",l.absUrl(),a,l.$$state,b)}var l,m;m=c.baseHref();var n=c.url(),p;if(b.enabled){if(!m&&b.requireBase)throw kb("nobase");p=n.substring(0,n.indexOf("/",n.indexOf("//")+2))+(m||"/");m=e.history?sc:Bd}else p=Aa(n),m=tc;var r=p.substr(0,Aa(p).lastIndexOf("/")+1);l=new m(p,r,"#"+a);l.$$parseLinkUrl(n,n);l.$$state=c.state();var J=/^\s*(javascript|mailto):/i;f.on("click",function(a){var e=b.rewriteLinks;if(e&&!a.ctrlKey&&!a.metaKey&&!a.shiftKey&&
+2!==a.which&&2!==a.button){for(var h=B(a.target);"a"!==wa(h[0]);)if(h[0]===f[0]||!(h=h.parent())[0])return;if(!F(e)||!w(h.attr(e))){var e=h.prop("href"),k=h.attr("href")||h.attr("xlink:href");C(e)&&"[object SVGAnimatedString]"===e.toString()&&(e=Ca(e.animVal).href);J.test(e)||!e||h.attr("target")||a.isDefaultPrevented()||!l.$$parseLinkUrl(e,k)||(a.preventDefault(),l.absUrl()!==c.url()&&(d.$apply(),g.angular["ff-684208-preventDefault"]=!0))}}});lb(l.absUrl())!==lb(n)&&c.url(l.absUrl(),!0);var v=!0;
+c.onUrlChange(function(a,b){rc(a,r)?(d.$evalAsync(function(){var c=l.absUrl(),e=l.$$state,f;a=lb(a);l.$$parse(a);l.$$state=b;f=d.$broadcast("$locationChangeStart",a,c,b,e).defaultPrevented;l.absUrl()===a&&(f?(l.$$parse(c),l.$$state=e,h(c,!1,e)):(v=!1,k(c,e)))}),d.$$phase||d.$digest()):g.location.href=a});d.$watch(function(){if(v||l.$$urlUpdatedByLocation){l.$$urlUpdatedByLocation=!1;var a=lb(c.url()),b=lb(l.absUrl()),f=c.state(),g=l.$$replace,m=a!==b||l.$$html5&&e.history&&f!==l.$$state;if(v||m)v=
+!1,d.$evalAsync(function(){var b=l.absUrl(),c=d.$broadcast("$locationChangeStart",b,a,l.$$state,f).defaultPrevented;l.absUrl()===b&&(c?(l.$$parse(a),l.$$state=f):(m&&h(b,g,f===l.$$state?null:l.$$state),k(a,f)))})}l.$$replace=!1});return l}]}function Kf(){var a=!0,b=this;this.debugEnabled=function(b){return u(b)?(a=b,this):a};this.$get=["$window",function(d){function c(a){a instanceof Error&&(a.stack&&f?a=a.message&&-1===a.stack.indexOf(a.message)?"Error: "+a.message+"\n"+a.stack:a.stack:a.sourceURL&&
+(a=a.message+"\n"+a.sourceURL+":"+a.line));return a}function e(a){var b=d.console||{},e=b[a]||b.log||z;a=!1;try{a=!!e.apply}catch(f){}return a?function(){var a=[];q(arguments,function(b){a.push(c(b))});return e.apply(b,a)}:function(a,b){e(a,null==b?"":b)}}var f=za||/\bEdge\//.test(d.navigator&&d.navigator.userAgent);return{log:e("log"),info:e("info"),warn:e("warn"),error:e("error"),debug:function(){var c=e("debug");return function(){a&&c.apply(b,arguments)}}()}}]}function zg(a){return a+""}function Ag(a,
+b){return"undefined"!==typeof a?a:b}function Dd(a,b){return"undefined"===typeof a?b:"undefined"===typeof b?a:a+b}function U(a,b){var d,c,e;switch(a.type){case s.Program:d=!0;q(a.body,function(a){U(a.expression,b);d=d&&a.expression.constant});a.constant=d;break;case s.Literal:a.constant=!0;a.toWatch=[];break;case s.UnaryExpression:U(a.argument,b);a.constant=a.argument.constant;a.toWatch=a.argument.toWatch;break;case s.BinaryExpression:U(a.left,b);U(a.right,b);a.constant=a.left.constant&&a.right.constant;
+a.toWatch=a.left.toWatch.concat(a.right.toWatch);break;case s.LogicalExpression:U(a.left,b);U(a.right,b);a.constant=a.left.constant&&a.right.constant;a.toWatch=a.constant?[]:[a];break;case s.ConditionalExpression:U(a.test,b);U(a.alternate,b);U(a.consequent,b);a.constant=a.test.constant&&a.alternate.constant&&a.consequent.constant;a.toWatch=a.constant?[]:[a];break;case s.Identifier:a.constant=!1;a.toWatch=[a];break;case s.MemberExpression:U(a.object,b);a.computed&&U(a.property,b);a.constant=a.object.constant&&
+(!a.computed||a.property.constant);a.toWatch=[a];break;case s.CallExpression:d=e=a.filter?!b(a.callee.name).$stateful:!1;c=[];q(a.arguments,function(a){U(a,b);d=d&&a.constant;a.constant||c.push.apply(c,a.toWatch)});a.constant=d;a.toWatch=e?c:[a];break;case s.AssignmentExpression:U(a.left,b);U(a.right,b);a.constant=a.left.constant&&a.right.constant;a.toWatch=[a];break;case s.ArrayExpression:d=!0;c=[];q(a.elements,function(a){U(a,b);d=d&&a.constant;a.constant||c.push.apply(c,a.toWatch)});a.constant=
+d;a.toWatch=c;break;case s.ObjectExpression:d=!0;c=[];q(a.properties,function(a){U(a.value,b);d=d&&a.value.constant&&!a.computed;a.value.constant||c.push.apply(c,a.value.toWatch);a.computed&&(U(a.key,b),a.key.constant||c.push.apply(c,a.key.toWatch))});a.constant=d;a.toWatch=c;break;case s.ThisExpression:a.constant=!1;a.toWatch=[];break;case s.LocalsExpression:a.constant=!1,a.toWatch=[]}}function Ed(a){if(1===a.length){a=a[0].expression;var b=a.toWatch;return 1!==b.length?b:b[0]!==a?b:void 0}}function Fd(a){return a.type===
+s.Identifier||a.type===s.MemberExpression}function Gd(a){if(1===a.body.length&&Fd(a.body[0].expression))return{type:s.AssignmentExpression,left:a.body[0].expression,right:{type:s.NGValueParameter},operator:"="}}function Hd(a){this.$filter=a}function Id(a){this.$filter=a}function uc(a,b,d){this.ast=new s(a,d);this.astCompiler=d.csp?new Id(b):new Hd(b)}function vc(a){return D(a.valueOf)?a.valueOf():Bg.call(a)}function Lf(){var a=V(),b={"true":!0,"false":!1,"null":null,undefined:void 0},d,c;this.addLiteral=
+function(a,c){b[a]=c};this.setIdentifierFns=function(a,b){d=a;c=b;return this};this.$get=["$filter",function(e){function f(a,b,c){return null==a||null==b?a===b:"object"!==typeof a||(a=vc(a),"object"!==typeof a||c)?a===b||a!==a&&b!==b:!1}function g(a,b,c,d,e){var g=d.inputs,h;if(1===g.length){var k=f,g=g[0];return a.$watch(function(a){var b=g(a);f(b,k,d.literal)||(h=d(a,void 0,void 0,[b]),k=b&&vc(b));return h},b,c,e)}for(var l=[],m=[],n=0,E=g.length;n<E;n++)l[n]=f,m[n]=null;return a.$watch(function(a){for(var b=
+!1,c=0,e=g.length;c<e;c++){var k=g[c](a);if(b||(b=!f(k,l[c],d.literal)))m[c]=k,l[c]=k&&vc(k)}b&&(h=d(a,void 0,void 0,m));return h},b,c,e)}function h(a,b,c,d,e){function f(a){return d(a)}function h(a,c,d){n=a;D(b)&&b(a,c,d);l(a)&&d.$$postDigest(function(){l(n)&&m()})}var l=d.literal?k:u,m,n;return m=d.inputs?g(a,h,c,d,e):a.$watch(f,h,c)}function k(a){var b=!0;q(a,function(a){u(a)||(b=!1)});return b}function l(a,b,c,d){var e=a.$watch(function(a){e();return d(a)},b,c);return e}function m(a,b){function c(d,
+e,g,h){g=f&&h?h[0]:a(d,e,g,h);return b(g,d,e)}function d(c,e,g,k){g=f&&k?k[0]:a(c,e,g,k);c=b(g,c,e);return h(g)?c:g}if(!b)return a;var e=a.$$watchDelegate,f=!1,h=a.literal?k:u,l=a.oneTime?d:c;l.literal=a.literal;l.oneTime=a.oneTime;f=!a.inputs;e&&e!==g?(l.$$watchDelegate=e,l.inputs=a.inputs):b.$stateful||(l.$$watchDelegate=g,l.inputs=a.inputs?a.inputs:[a]);return l}var n={csp:Ga().noUnsafeEval,literals:ra(b),isIdentifierStart:D(d)&&d,isIdentifierContinue:D(c)&&c};return function(b,c){var d,f,k;switch(typeof b){case "string":return k=
+b=b.trim(),d=a[k],d||(":"===b.charAt(0)&&":"===b.charAt(1)&&(f=!0,b=b.substring(2)),d=new wc(n),d=(new uc(d,e,n)).parse(b),d.constant?d.$$watchDelegate=l:f?(d.oneTime=!0,d.$$watchDelegate=h):d.inputs&&(d.$$watchDelegate=g),a[k]=d),m(d,c);case "function":return m(b,c);default:return m(z,c)}}}]}function Nf(){var a=!0;this.$get=["$rootScope","$exceptionHandler",function(b,d){return Jd(function(a){b.$evalAsync(a)},d,a)}];this.errorOnUnhandledRejections=function(b){return u(b)?(a=b,this):a}}function Of(){var a=
+!0;this.$get=["$browser","$exceptionHandler",function(b,d){return Jd(function(a){b.defer(a)},d,a)}];this.errorOnUnhandledRejections=function(b){return u(b)?(a=b,this):a}}function Jd(a,b,d){function c(){return new e}function e(){var a=this.promise=new f;this.resolve=function(b){k(a,b)};this.reject=function(b){m(a,b)};this.notify=function(b){p(a,b)}}function f(){this.$$state={status:0}}function g(){for(;!s&&A.length;){var a=A.shift();if(!a.pur){a.pur=!0;var c=a.value,c="Possibly unhandled rejection: "+
+("function"===typeof c?c.toString().replace(/ \{[\s\S]*$/,""):w(c)?"undefined":"string"!==typeof c?Be(c,void 0):c);a.value instanceof Error?b(a.value,c):b(c)}}}function h(b){!d||b.pending||2!==b.status||b.pur||(0===s&&0===A.length&&a(g),A.push(b));!b.processScheduled&&b.pending&&(b.processScheduled=!0,++s,a(function(){var c,e,f;f=b.pending;b.processScheduled=!1;b.pending=void 0;try{for(var h=0,l=f.length;h<l;++h){b.pur=!0;e=f[h][0];c=f[h][b.status];try{D(c)?k(e,c(b.value)):1===b.status?k(e,b.value):
+m(e,b.value)}catch(n){m(e,n)}}}finally{--s,d&&0===s&&a(g)}}))}function k(a,b){a.$$state.status||(b===a?n(a,M("qcycle",b)):l(a,b))}function l(a,b){function c(b){g||(g=!0,l(a,b))}function d(b){g||(g=!0,n(a,b))}function e(b){p(a,b)}var f,g=!1;try{if(C(b)||D(b))f=b.then;D(f)?(a.$$state.status=-1,f.call(b,c,d,e)):(a.$$state.value=b,a.$$state.status=1,h(a.$$state))}catch(k){d(k)}}function m(a,b){a.$$state.status||n(a,b)}function n(a,b){a.$$state.value=b;a.$$state.status=2;h(a.$$state)}function p(c,d){var e=
+c.$$state.pending;0>=c.$$state.status&&e&&e.length&&a(function(){for(var a,c,f=0,g=e.length;f<g;f++){c=e[f][0];a=e[f][3];try{p(c,D(a)?a(d):d)}catch(h){b(h)}}})}function r(a){var b=new f;m(b,a);return b}function J(a,b,c){var d=null;try{D(c)&&(d=c())}catch(e){return r(e)}return d&&D(d.then)?d.then(function(){return b(a)},r):b(a)}function v(a,b,c,d){var e=new f;k(e,a);return e.then(b,c,d)}function t(a){if(!D(a))throw M("norslvr",a);var b=new f;a(function(a){k(b,a)},function(a){m(b,a)});return b}var M=
+L("$q",TypeError),s=0,A=[];S(f.prototype,{then:function(a,b,c){if(w(a)&&w(b)&&w(c))return this;var d=new f;this.$$state.pending=this.$$state.pending||[];this.$$state.pending.push([d,a,b,c]);0<this.$$state.status&&h(this.$$state);return d},"catch":function(a){return this.then(null,a)},"finally":function(a,b){return this.then(function(b){return J(b,u,a)},function(b){return J(b,r,a)},b)}});var u=v;t.prototype=f.prototype;t.defer=c;t.reject=r;t.when=v;t.resolve=u;t.all=function(a){var b=new f,c=0,d=H(a)?
+[]:{};q(a,function(a,e){c++;v(a).then(function(a){d[e]=a;--c||k(b,d)},function(a){m(b,a)})});0===c&&k(b,d);return b};t.race=function(a){var b=c();q(a,function(a){v(a).then(b.resolve,b.reject)});return b.promise};return t}function Xf(){this.$get=["$window","$timeout",function(a,b){var d=a.requestAnimationFrame||a.webkitRequestAnimationFrame,c=a.cancelAnimationFrame||a.webkitCancelAnimationFrame||a.webkitCancelRequestAnimationFrame,e=!!d,f=e?function(a){var b=d(a);return function(){c(b)}}:function(a){var c=
+b(a,16.66,!1);return function(){b.cancel(c)}};f.supported=e;return f}]}function Mf(){function a(a){function b(){this.$$watchers=this.$$nextSibling=this.$$childHead=this.$$childTail=null;this.$$listeners={};this.$$listenerCount={};this.$$watchersCount=0;this.$id=++qb;this.$$ChildScope=null}b.prototype=a;return b}var b=10,d=L("$rootScope"),c=null,e=null;this.digestTtl=function(a){arguments.length&&(b=a);return b};this.$get=["$exceptionHandler","$parse","$browser",function(f,g,h){function k(a){a.currentScope.$$destroyed=
+!0}function l(a){9===za&&(a.$$childHead&&l(a.$$childHead),a.$$nextSibling&&l(a.$$nextSibling));a.$parent=a.$$nextSibling=a.$$prevSibling=a.$$childHead=a.$$childTail=a.$root=a.$$watchers=null}function m(){this.$id=++qb;this.$$phase=this.$parent=this.$$watchers=this.$$nextSibling=this.$$prevSibling=this.$$childHead=this.$$childTail=null;this.$root=this;this.$$destroyed=!1;this.$$listeners={};this.$$listenerCount={};this.$$watchersCount=0;this.$$isolateBindings=null}function n(a){if(M.$$phase)throw d("inprog",
+M.$$phase);M.$$phase=a}function p(a,b){do a.$$watchersCount+=b;while(a=a.$parent)}function r(a,b,c){do a.$$listenerCount[c]-=b,0===a.$$listenerCount[c]&&delete a.$$listenerCount[c];while(a=a.$parent)}function J(){}function v(){for(;u.length;)try{u.shift()()}catch(a){f(a)}e=null}function t(){null===e&&(e=h.defer(function(){M.$apply(v)}))}m.prototype={constructor:m,$new:function(b,c){var d;c=c||this;b?(d=new m,d.$root=this.$root):(this.$$ChildScope||(this.$$ChildScope=a(this)),d=new this.$$ChildScope);
+d.$parent=c;d.$$prevSibling=c.$$childTail;c.$$childHead?(c.$$childTail.$$nextSibling=d,c.$$childTail=d):c.$$childHead=c.$$childTail=d;(b||c!==this)&&d.$on("$destroy",k);return d},$watch:function(a,b,d,e){var f=g(a);if(f.$$watchDelegate)return f.$$watchDelegate(this,b,d,f,a);var h=this,k=h.$$watchers,l={fn:b,last:J,get:f,exp:e||a,eq:!!d};c=null;D(b)||(l.fn=z);k||(k=h.$$watchers=[],k.$$digestWatchIndex=-1);k.unshift(l);k.$$digestWatchIndex++;p(this,1);return function(){var a=$a(k,l);0<=a&&(p(h,-1),
+a<k.$$digestWatchIndex&&k.$$digestWatchIndex--);c=null}},$watchGroup:function(a,b){function c(){h=!1;k?(k=!1,b(e,e,g)):b(e,d,g)}var d=Array(a.length),e=Array(a.length),f=[],g=this,h=!1,k=!0;if(!a.length){var l=!0;g.$evalAsync(function(){l&&b(e,e,g)});return function(){l=!1}}if(1===a.length)return this.$watch(a[0],function(a,c,f){e[0]=a;d[0]=c;b(e,a===c?e:d,f)});q(a,function(a,b){var k=g.$watch(a,function(a,f){e[b]=a;d[b]=f;h||(h=!0,g.$evalAsync(c))});f.push(k)});return function(){for(;f.length;)f.shift()()}},
+$watchCollection:function(a,b){function c(a){e=a;var b,d,g,h;if(!w(e)){if(C(e))if(qa(e))for(f!==n&&(f=n,t=f.length=0,l++),a=e.length,t!==a&&(l++,f.length=t=a),b=0;b<a;b++)h=f[b],g=e[b],d=h!==h&&g!==g,d||h===g||(l++,f[b]=g);else{f!==p&&(f=p={},t=0,l++);a=0;for(b in e)ua.call(e,b)&&(a++,g=e[b],h=f[b],b in f?(d=h!==h&&g!==g,d||h===g||(l++,f[b]=g)):(t++,f[b]=g,l++));if(t>a)for(b in l++,f)ua.call(e,b)||(t--,delete f[b])}else f!==e&&(f=e,l++);return l}}c.$stateful=!0;var d=this,e,f,h,k=1<b.length,l=0,m=
+g(a,c),n=[],p={},r=!0,t=0;return this.$watch(m,function(){r?(r=!1,b(e,e,d)):b(e,h,d);if(k)if(C(e))if(qa(e)){h=Array(e.length);for(var a=0;a<e.length;a++)h[a]=e[a]}else for(a in h={},e)ua.call(e,a)&&(h[a]=e[a]);else h=e})},$digest:function(){var a,g,k,l,m,p,r,t=b,q,u=[],w,x;n("$digest");h.$$checkUrlChange();this===M&&null!==e&&(h.defer.cancel(e),v());c=null;do{r=!1;q=this;for(p=0;p<s.length;p++){try{x=s[p],l=x.fn,l(x.scope,x.locals)}catch(z){f(z)}c=null}s.length=0;a:do{if(p=q.$$watchers)for(p.$$digestWatchIndex=
+p.length;p.$$digestWatchIndex--;)try{if(a=p[p.$$digestWatchIndex])if(m=a.get,(g=m(q))!==(k=a.last)&&!(a.eq?sa(g,k):da(g)&&da(k)))r=!0,c=a,a.last=a.eq?ra(g,null):g,l=a.fn,l(g,k===J?g:k,q),5>t&&(w=4-t,u[w]||(u[w]=[]),u[w].push({msg:D(a.exp)?"fn: "+(a.exp.name||a.exp.toString()):a.exp,newVal:g,oldVal:k}));else if(a===c){r=!1;break a}}catch(B){f(B)}if(!(p=q.$$watchersCount&&q.$$childHead||q!==this&&q.$$nextSibling))for(;q!==this&&!(p=q.$$nextSibling);)q=q.$parent}while(q=p);if((r||s.length)&&!t--)throw M.$$phase=
+null,d("infdig",b,u);}while(r||s.length);for(M.$$phase=null;I<A.length;)try{A[I++]()}catch(F){f(F)}A.length=I=0;h.$$checkUrlChange()},$destroy:function(){if(!this.$$destroyed){var a=this.$parent;this.$broadcast("$destroy");this.$$destroyed=!0;this===M&&h.$$applicationDestroyed();p(this,-this.$$watchersCount);for(var b in this.$$listenerCount)r(this,this.$$listenerCount[b],b);a&&a.$$childHead===this&&(a.$$childHead=this.$$nextSibling);a&&a.$$childTail===this&&(a.$$childTail=this.$$prevSibling);this.$$prevSibling&&
+(this.$$prevSibling.$$nextSibling=this.$$nextSibling);this.$$nextSibling&&(this.$$nextSibling.$$prevSibling=this.$$prevSibling);this.$destroy=this.$digest=this.$apply=this.$evalAsync=this.$applyAsync=z;this.$on=this.$watch=this.$watchGroup=function(){return z};this.$$listeners={};this.$$nextSibling=null;l(this)}},$eval:function(a,b){return g(a)(this,b)},$evalAsync:function(a,b){M.$$phase||s.length||h.defer(function(){s.length&&M.$digest()});s.push({scope:this,fn:g(a),locals:b})},$$postDigest:function(a){A.push(a)},
+$apply:function(a){try{n("$apply");try{return this.$eval(a)}finally{M.$$phase=null}}catch(b){f(b)}finally{try{M.$digest()}catch(c){throw f(c),c;}}},$applyAsync:function(a){function b(){c.$eval(a)}var c=this;a&&u.push(b);a=g(a);t()},$on:function(a,b){var c=this.$$listeners[a];c||(this.$$listeners[a]=c=[]);c.push(b);var d=this;do d.$$listenerCount[a]||(d.$$listenerCount[a]=0),d.$$listenerCount[a]++;while(d=d.$parent);var e=this;return function(){var d=c.indexOf(b);-1!==d&&(c[d]=null,r(e,1,a))}},$emit:function(a,
+b){var c=[],d,e=this,g=!1,h={name:a,targetScope:e,stopPropagation:function(){g=!0},preventDefault:function(){h.defaultPrevented=!0},defaultPrevented:!1},k=ab([h],arguments,1),l,m;do{d=e.$$listeners[a]||c;h.currentScope=e;l=0;for(m=d.length;l<m;l++)if(d[l])try{d[l].apply(null,k)}catch(n){f(n)}else d.splice(l,1),l--,m--;if(g)return h.currentScope=null,h;e=e.$parent}while(e);h.currentScope=null;return h},$broadcast:function(a,b){var c=this,d=this,e={name:a,targetScope:this,preventDefault:function(){e.defaultPrevented=
+!0},defaultPrevented:!1};if(!this.$$listenerCount[a])return e;for(var g=ab([e],arguments,1),h,k;c=d;){e.currentScope=c;d=c.$$listeners[a]||[];h=0;for(k=d.length;h<k;h++)if(d[h])try{d[h].apply(null,g)}catch(l){f(l)}else d.splice(h,1),h--,k--;if(!(d=c.$$listenerCount[a]&&c.$$childHead||c!==this&&c.$$nextSibling))for(;c!==this&&!(d=c.$$nextSibling);)c=c.$parent}e.currentScope=null;return e}};var M=new m,s=M.$$asyncQueue=[],A=M.$$postDigestQueue=[],u=M.$$applyAsyncQueue=[],I=0;return M}]}function Ee(){var a=
+/^\s*(https?|ftp|mailto|tel|file):/,b=/^\s*((https?|ftp|file|blob):|data:image\/)/;this.aHrefSanitizationWhitelist=function(b){return u(b)?(a=b,this):a};this.imgSrcSanitizationWhitelist=function(a){return u(a)?(b=a,this):b};this.$get=function(){return function(d,c){var e=c?b:a,f;f=Ca(d).href;return""===f||f.match(e)?d:"unsafe:"+f}}}function Cg(a){if("self"===a)return a;if(F(a)){if(-1<a.indexOf("***"))throw ta("iwcard",a);a=Kd(a).replace(/\\\*\\\*/g,".*").replace(/\\\*/g,"[^:/.?&;]*");return new RegExp("^"+
+a+"$")}if(Xa(a))return new RegExp("^"+a.source+"$");throw ta("imatcher");}function Ld(a){var b=[];u(a)&&q(a,function(a){b.push(Cg(a))});return b}function Qf(){this.SCE_CONTEXTS=oa;var a=["self"],b=[];this.resourceUrlWhitelist=function(b){arguments.length&&(a=Ld(b));return a};this.resourceUrlBlacklist=function(a){arguments.length&&(b=Ld(a));return b};this.$get=["$injector",function(d){function c(a,b){return"self"===a?yd(b):!!a.exec(b.href)}function e(a){var b=function(a){this.$$unwrapTrustedValue=
+function(){return a}};a&&(b.prototype=new a);b.prototype.valueOf=function(){return this.$$unwrapTrustedValue()};b.prototype.toString=function(){return this.$$unwrapTrustedValue().toString()};return b}var f=function(a){throw ta("unsafe");};d.has("$sanitize")&&(f=d.get("$sanitize"));var g=e(),h={};h[oa.HTML]=e(g);h[oa.CSS]=e(g);h[oa.URL]=e(g);h[oa.JS]=e(g);h[oa.RESOURCE_URL]=e(h[oa.URL]);return{trustAs:function(a,b){var c=h.hasOwnProperty(a)?h[a]:null;if(!c)throw ta("icontext",a,b);if(null===b||w(b)||
+""===b)return b;if("string"!==typeof b)throw ta("itype",a);return new c(b)},getTrusted:function(d,e){if(null===e||w(e)||""===e)return e;var g=h.hasOwnProperty(d)?h[d]:null;if(g&&e instanceof g)return e.$$unwrapTrustedValue();if(d===oa.RESOURCE_URL){var g=Ca(e.toString()),n,p,r=!1;n=0;for(p=a.length;n<p;n++)if(c(a[n],g)){r=!0;break}if(r)for(n=0,p=b.length;n<p;n++)if(c(b[n],g)){r=!1;break}if(r)return e;throw ta("insecurl",e.toString());}if(d===oa.HTML)return f(e);throw ta("unsafe");},valueOf:function(a){return a instanceof
+g?a.$$unwrapTrustedValue():a}}}]}function Pf(){var a=!0;this.enabled=function(b){arguments.length&&(a=!!b);return a};this.$get=["$parse","$sceDelegate",function(b,d){if(a&&8>za)throw ta("iequirks");var c=pa(oa);c.isEnabled=function(){return a};c.trustAs=d.trustAs;c.getTrusted=d.getTrusted;c.valueOf=d.valueOf;a||(c.trustAs=c.getTrusted=function(a,b){return b},c.valueOf=Ya);c.parseAs=function(a,d){var e=b(d);return e.literal&&e.constant?e:b(d,function(b){return c.getTrusted(a,b)})};var e=c.parseAs,
+f=c.getTrusted,g=c.trustAs;q(oa,function(a,b){var d=Q(b);c[("parse_as_"+d).replace(xc,gb)]=function(b){return e(a,b)};c[("get_trusted_"+d).replace(xc,gb)]=function(b){return f(a,b)};c[("trust_as_"+d).replace(xc,gb)]=function(b){return g(a,b)}});return c}]}function Rf(){this.$get=["$window","$document",function(a,b){var d={},c=!((!a.nw||!a.nw.process)&&a.chrome&&(a.chrome.app&&a.chrome.app.runtime||!a.chrome.app&&a.chrome.runtime&&a.chrome.runtime.id))&&a.history&&a.history.pushState,e=Z((/android (\d+)/.exec(Q((a.navigator||
+{}).userAgent))||[])[1]),f=/Boxee/i.test((a.navigator||{}).userAgent),g=b[0]||{},h=g.body&&g.body.style,k=!1,l=!1;h&&(k=!!("transition"in h||"webkitTransition"in h),l=!!("animation"in h||"webkitAnimation"in h));return{history:!(!c||4>e||f),hasEvent:function(a){if("input"===a&&za)return!1;if(w(d[a])){var b=g.createElement("div");d[a]="on"+a in b}return d[a]},csp:Ga(),transitions:k,animations:l,android:e}}]}function Tf(){var a;this.httpOptions=function(b){return b?(a=b,this):a};this.$get=["$exceptionHandler",
+"$templateCache","$http","$q","$sce",function(b,d,c,e,f){function g(h,k){g.totalPendingRequests++;if(!F(h)||w(d.get(h)))h=f.getTrustedResourceUrl(h);var l=c.defaults&&c.defaults.transformResponse;H(l)?l=l.filter(function(a){return a!==nc}):l===nc&&(l=null);return c.get(h,S({cache:d,transformResponse:l},a)).finally(function(){g.totalPendingRequests--}).then(function(a){d.put(h,a.data);return a.data},function(a){k||(a=Dg("tpload",h,a.status,a.statusText),b(a));return e.reject(a)})}g.totalPendingRequests=
+0;return g}]}function Uf(){this.$get=["$rootScope","$browser","$location",function(a,b,d){return{findBindings:function(a,b,d){a=a.getElementsByClassName("ng-binding");var g=[];q(a,function(a){var c=ea.element(a).data("$binding");c&&q(c,function(c){d?(new RegExp("(^|\\s)"+Kd(b)+"(\\s|\\||$)")).test(c)&&g.push(a):-1!==c.indexOf(b)&&g.push(a)})});return g},findModels:function(a,b,d){for(var g=["ng-","data-ng-","ng\\:"],h=0;h<g.length;++h){var k=a.querySelectorAll("["+g[h]+"model"+(d?"=":"*=")+'"'+b+
+'"]');if(k.length)return k}},getLocation:function(){return d.url()},setLocation:function(b){b!==d.url()&&(d.url(b),a.$digest())},whenStable:function(a){b.notifyWhenNoOutstandingRequests(a)}}}]}function Vf(){this.$get=["$rootScope","$browser","$q","$$q","$exceptionHandler",function(a,b,d,c,e){function f(f,k,l){D(f)||(l=k,k=f,f=z);var m=va.call(arguments,3),n=u(l)&&!l,p=(n?c:d).defer(),r=p.promise,q;q=b.defer(function(){try{p.resolve(f.apply(null,m))}catch(b){p.reject(b),e(b)}finally{delete g[r.$$timeoutId]}n||
+a.$apply()},k);r.$$timeoutId=q;g[q]=p;return r}var g={};f.cancel=function(a){return a&&a.$$timeoutId in g?(g[a.$$timeoutId].promise.catch(z),g[a.$$timeoutId].reject("canceled"),delete g[a.$$timeoutId],b.defer.cancel(a.$$timeoutId)):!1};return f}]}function Ca(a){za&&(aa.setAttribute("href",a),a=aa.href);aa.setAttribute("href",a);return{href:aa.href,protocol:aa.protocol?aa.protocol.replace(/:$/,""):"",host:aa.host,search:aa.search?aa.search.replace(/^\?/,""):"",hash:aa.hash?aa.hash.replace(/^#/,""):
+"",hostname:aa.hostname,port:aa.port,pathname:"/"===aa.pathname.charAt(0)?aa.pathname:"/"+aa.pathname}}function yd(a){a=F(a)?Ca(a):a;return a.protocol===Md.protocol&&a.host===Md.host}function Wf(){this.$get=la(x)}function Nd(a){function b(a){try{return decodeURIComponent(a)}catch(b){return a}}var d=a[0]||{},c={},e="";return function(){var a,g,h,k,l;try{a=d.cookie||""}catch(m){a=""}if(a!==e)for(e=a,a=e.split("; "),c={},h=0;h<a.length;h++)g=a[h],k=g.indexOf("="),0<k&&(l=b(g.substring(0,k)),w(c[l])&&
+(c[l]=b(g.substring(k+1))));return c}}function $f(){this.$get=Nd}function cd(a){function b(d,c){if(C(d)){var e={};q(d,function(a,c){e[c]=b(c,a)});return e}return a.factory(d+"Filter",c)}this.register=b;this.$get=["$injector",function(a){return function(b){return a.get(b+"Filter")}}];b("currency",Od);b("date",Pd);b("filter",Eg);b("json",Fg);b("limitTo",Gg);b("lowercase",Hg);b("number",Qd);b("orderBy",Rd);b("uppercase",Ig)}function Eg(){return function(a,b,d,c){if(!qa(a)){if(null==a)return a;throw L("filter")("notarray",
+a);}c=c||"$";var e;switch(yc(b)){case "function":break;case "boolean":case "null":case "number":case "string":e=!0;case "object":b=Jg(b,d,c,e);break;default:return a}return Array.prototype.filter.call(a,b)}}function Jg(a,b,d,c){var e=C(a)&&d in a;!0===b?b=sa:D(b)||(b=function(a,b){if(w(a))return!1;if(null===a||null===b)return a===b;if(C(b)||C(a)&&!Wb(a))return!1;a=Q(""+a);b=Q(""+b);return-1!==a.indexOf(b)});return function(f){return e&&!C(f)?Ea(f,a[d],b,d,!1):Ea(f,a,b,d,c)}}function Ea(a,b,d,c,e,
+f){var g=yc(a),h=yc(b);if("string"===h&&"!"===b.charAt(0))return!Ea(a,b.substring(1),d,c,e);if(H(a))return a.some(function(a){return Ea(a,b,d,c,e)});switch(g){case "object":var k;if(e){for(k in a)if(k.charAt&&"$"!==k.charAt(0)&&Ea(a[k],b,d,c,!0))return!0;return f?!1:Ea(a,b,d,c,!1)}if("object"===h){for(k in b)if(f=b[k],!D(f)&&!w(f)&&(g=k===c,!Ea(g?a:a[k],f,d,c,g,g)))return!1;return!0}return d(a,b);case "function":return!1;default:return d(a,b)}}function yc(a){return null===a?"null":typeof a}function Od(a){var b=
+a.NUMBER_FORMATS;return function(a,c,e){w(c)&&(c=b.CURRENCY_SYM);w(e)&&(e=b.PATTERNS[1].maxFrac);return null==a?a:Sd(a,b.PATTERNS[1],b.GROUP_SEP,b.DECIMAL_SEP,e).replace(/\u00A4/g,c)}}function Qd(a){var b=a.NUMBER_FORMATS;return function(a,c){return null==a?a:Sd(a,b.PATTERNS[0],b.GROUP_SEP,b.DECIMAL_SEP,c)}}function Kg(a){var b=0,d,c,e,f,g;-1<(c=a.indexOf(Td))&&(a=a.replace(Td,""));0<(e=a.search(/e/i))?(0>c&&(c=e),c+=+a.slice(e+1),a=a.substring(0,e)):0>c&&(c=a.length);for(e=0;a.charAt(e)===zc;e++);
+if(e===(g=a.length))d=[0],c=1;else{for(g--;a.charAt(g)===zc;)g--;c-=e;d=[];for(f=0;e<=g;e++,f++)d[f]=+a.charAt(e)}c>Ud&&(d=d.splice(0,Ud-1),b=c-1,c=1);return{d:d,e:b,i:c}}function Lg(a,b,d,c){var e=a.d,f=e.length-a.i;b=w(b)?Math.min(Math.max(d,f),c):+b;d=b+a.i;c=e[d];if(0<d){e.splice(Math.max(a.i,d));for(var g=d;g<e.length;g++)e[g]=0}else for(f=Math.max(0,f),a.i=1,e.length=Math.max(1,d=b+1),e[0]=0,g=1;g<d;g++)e[g]=0;if(5<=c)if(0>d-1){for(c=0;c>d;c--)e.unshift(0),a.i++;e.unshift(1);a.i++}else e[d-
+1]++;for(;f<Math.max(0,b);f++)e.push(0);if(b=e.reduceRight(function(a,b,c,d){b+=a;d[c]=b%10;return Math.floor(b/10)},0))e.unshift(b),a.i++}function Sd(a,b,d,c,e){if(!F(a)&&!ba(a)||isNaN(a))return"";var f=!isFinite(a),g=!1,h=Math.abs(a)+"",k="";if(f)k="\u221e";else{g=Kg(h);Lg(g,e,b.minFrac,b.maxFrac);k=g.d;h=g.i;e=g.e;f=[];for(g=k.reduce(function(a,b){return a&&!b},!0);0>h;)k.unshift(0),h++;0<h?f=k.splice(h,k.length):(f=k,k=[0]);h=[];for(k.length>=b.lgSize&&h.unshift(k.splice(-b.lgSize,k.length).join(""));k.length>
+b.gSize;)h.unshift(k.splice(-b.gSize,k.length).join(""));k.length&&h.unshift(k.join(""));k=h.join(d);f.length&&(k+=c+f.join(""));e&&(k+="e+"+e)}return 0>a&&!g?b.negPre+k+b.negSuf:b.posPre+k+b.posSuf}function Kb(a,b,d,c){var e="";if(0>a||c&&0>=a)c?a=-a+1:(a=-a,e="-");for(a=""+a;a.length<b;)a=zc+a;d&&(a=a.substr(a.length-b));return e+a}function Y(a,b,d,c,e){d=d||0;return function(f){f=f["get"+a]();if(0<d||f>-d)f+=d;0===f&&-12===d&&(f=12);return Kb(f,b,c,e)}}function mb(a,b,d){return function(c,e){var f=
+c["get"+a](),g=ub((d?"STANDALONE":"")+(b?"SHORT":"")+a);return e[g][f]}}function Vd(a){var b=(new Date(a,0,1)).getDay();return new Date(a,0,(4>=b?5:12)-b)}function Wd(a){return function(b){var d=Vd(b.getFullYear());b=+new Date(b.getFullYear(),b.getMonth(),b.getDate()+(4-b.getDay()))-+d;b=1+Math.round(b/6048E5);return Kb(b,a)}}function Ac(a,b){return 0>=a.getFullYear()?b.ERAS[0]:b.ERAS[1]}function Pd(a){function b(a){var b;if(b=a.match(d)){a=new Date(0);var f=0,g=0,h=b[8]?a.setUTCFullYear:a.setFullYear,
+k=b[8]?a.setUTCHours:a.setHours;b[9]&&(f=Z(b[9]+b[10]),g=Z(b[9]+b[11]));h.call(a,Z(b[1]),Z(b[2])-1,Z(b[3]));f=Z(b[4]||0)-f;g=Z(b[5]||0)-g;h=Z(b[6]||0);b=Math.round(1E3*parseFloat("0."+(b[7]||0)));k.call(a,f,g,h,b)}return a}var d=/^(\d{4})-?(\d\d)-?(\d\d)(?:T(\d\d)(?::?(\d\d)(?::?(\d\d)(?:\.(\d+))?)?)?(Z|([+-])(\d\d):?(\d\d))?)?$/;return function(c,d,f){var g="",h=[],k,l;d=d||"mediumDate";d=a.DATETIME_FORMATS[d]||d;F(c)&&(c=Mg.test(c)?Z(c):b(c));ba(c)&&(c=new Date(c));if(!ga(c)||!isFinite(c.getTime()))return c;
+for(;d;)(l=Ng.exec(d))?(h=ab(h,l,1),d=h.pop()):(h.push(d),d=null);var m=c.getTimezoneOffset();f&&(m=Pc(f,m),c=Yb(c,f,!0));q(h,function(b){k=Og[b];g+=k?k(c,a.DATETIME_FORMATS,m):"''"===b?"'":b.replace(/(^'|'$)/g,"").replace(/''/g,"'")});return g}}function Fg(){return function(a,b){w(b)&&(b=2);return cb(a,b)}}function Gg(){return function(a,b,d){b=Infinity===Math.abs(Number(b))?Number(b):Z(b);if(da(b))return a;ba(a)&&(a=a.toString());if(!qa(a))return a;d=!d||isNaN(d)?0:Z(d);d=0>d?Math.max(0,a.length+
+d):d;return 0<=b?Bc(a,d,d+b):0===d?Bc(a,b,a.length):Bc(a,Math.max(0,d+b),d)}}function Bc(a,b,d){return F(a)?a.slice(b,d):va.call(a,b,d)}function Rd(a){function b(b){return b.map(function(b){var c=1,d=Ya;if(D(b))d=b;else if(F(b)){if("+"===b.charAt(0)||"-"===b.charAt(0))c="-"===b.charAt(0)?-1:1,b=b.substring(1);if(""!==b&&(d=a(b),d.constant))var e=d(),d=function(a){return a[e]}}return{get:d,descending:c}})}function d(a){switch(typeof a){case "number":case "boolean":case "string":return!0;default:return!1}}
+function c(a,b){var c=0,d=a.type,k=b.type;if(d===k){var k=a.value,l=b.value;"string"===d?(k=k.toLowerCase(),l=l.toLowerCase()):"object"===d&&(C(k)&&(k=a.index),C(l)&&(l=b.index));k!==l&&(c=k<l?-1:1)}else c=d<k?-1:1;return c}return function(a,f,g,h){if(null==a)return a;if(!qa(a))throw L("orderBy")("notarray",a);H(f)||(f=[f]);0===f.length&&(f=["+"]);var k=b(f),l=g?-1:1,m=D(h)?h:c;a=Array.prototype.map.call(a,function(a,b){return{value:a,tieBreaker:{value:b,type:"number",index:b},predicateValues:k.map(function(c){var e=
+c.get(a);c=typeof e;if(null===e)c="string",e="null";else if("object"===c)a:{if(D(e.valueOf)&&(e=e.valueOf(),d(e)))break a;Wb(e)&&(e=e.toString(),d(e))}return{value:e,type:c,index:b}})}});a.sort(function(a,b){for(var c=0,d=k.length;c<d;c++){var e=m(a.predicateValues[c],b.predicateValues[c]);if(e)return e*k[c].descending*l}return m(a.tieBreaker,b.tieBreaker)*l});return a=a.map(function(a){return a.value})}}function Qa(a){D(a)&&(a={link:a});a.restrict=a.restrict||"AC";return la(a)}function Lb(a,b,d,
+c,e){this.$$controls=[];this.$error={};this.$$success={};this.$pending=void 0;this.$name=e(b.name||b.ngForm||"")(d);this.$dirty=!1;this.$valid=this.$pristine=!0;this.$submitted=this.$invalid=!1;this.$$parentForm=Mb;this.$$element=a;this.$$animate=c;Xd(this)}function Xd(a){a.$$classCache={};a.$$classCache[Yd]=!(a.$$classCache[nb]=a.$$element.hasClass(nb))}function Zd(a){function b(a,b,c){c&&!a.$$classCache[b]?(a.$$animate.addClass(a.$$element,b),a.$$classCache[b]=!0):!c&&a.$$classCache[b]&&(a.$$animate.removeClass(a.$$element,
+b),a.$$classCache[b]=!1)}function d(a,c,d){c=c?"-"+Tc(c,"-"):"";b(a,nb+c,!0===d);b(a,Yd+c,!1===d)}var c=a.set,e=a.unset;a.clazz.prototype.$setValidity=function(a,g,h){w(g)?(this.$pending||(this.$pending={}),c(this.$pending,a,h)):(this.$pending&&e(this.$pending,a,h),$d(this.$pending)&&(this.$pending=void 0));Ha(g)?g?(e(this.$error,a,h),c(this.$$success,a,h)):(c(this.$error,a,h),e(this.$$success,a,h)):(e(this.$error,a,h),e(this.$$success,a,h));this.$pending?(b(this,"ng-pending",!0),this.$valid=this.$invalid=
+void 0,d(this,"",null)):(b(this,"ng-pending",!1),this.$valid=$d(this.$error),this.$invalid=!this.$valid,d(this,"",this.$valid));g=this.$pending&&this.$pending[a]?void 0:this.$error[a]?!1:this.$$success[a]?!0:null;d(this,a,g);this.$$parentForm.$setValidity(a,g,this)}}function $d(a){if(a)for(var b in a)if(a.hasOwnProperty(b))return!1;return!0}function Cc(a){a.$formatters.push(function(b){return a.$isEmpty(b)?b:b.toString()})}function Ra(a,b,d,c,e,f){var g=Q(b[0].type);if(!e.android){var h=!1;b.on("compositionstart",
+function(){h=!0});b.on("compositionend",function(){h=!1;l()})}var k,l=function(a){k&&(f.defer.cancel(k),k=null);if(!h){var e=b.val();a=a&&a.type;"password"===g||d.ngTrim&&"false"===d.ngTrim||(e=T(e));(c.$viewValue!==e||""===e&&c.$$hasNativeValidators)&&c.$setViewValue(e,a)}};if(e.hasEvent("input"))b.on("input",l);else{var m=function(a,b,c){k||(k=f.defer(function(){k=null;b&&b.value===c||l(a)}))};b.on("keydown",function(a){var b=a.keyCode;91===b||15<b&&19>b||37<=b&&40>=b||m(a,this,this.value)});if(e.hasEvent("paste"))b.on("paste cut",
+m)}b.on("change",l);if(ae[g]&&c.$$hasNativeValidators&&g===d.type)b.on("keydown wheel mousedown",function(a){if(!k){var b=this.validity,c=b.badInput,d=b.typeMismatch;k=f.defer(function(){k=null;b.badInput===c&&b.typeMismatch===d||l(a)})}});c.$render=function(){var a=c.$isEmpty(c.$viewValue)?"":c.$viewValue;b.val()!==a&&b.val(a)}}function Nb(a,b){return function(d,c){var e,f;if(ga(d))return d;if(F(d)){'"'===d.charAt(0)&&'"'===d.charAt(d.length-1)&&(d=d.substring(1,d.length-1));if(Pg.test(d))return new Date(d);
+a.lastIndex=0;if(e=a.exec(d))return e.shift(),f=c?{yyyy:c.getFullYear(),MM:c.getMonth()+1,dd:c.getDate(),HH:c.getHours(),mm:c.getMinutes(),ss:c.getSeconds(),sss:c.getMilliseconds()/1E3}:{yyyy:1970,MM:1,dd:1,HH:0,mm:0,ss:0,sss:0},q(e,function(a,c){c<b.length&&(f[b[c]]=+a)}),new Date(f.yyyy,f.MM-1,f.dd,f.HH,f.mm,f.ss||0,1E3*f.sss||0)}return NaN}}function ob(a,b,d,c){return function(e,f,g,h,k,l,m){function n(a){return a&&!(a.getTime&&a.getTime()!==a.getTime())}function p(a){return u(a)&&!ga(a)?d(a)||
+void 0:a}Dc(e,f,g,h);Ra(e,f,g,h,k,l);var r=h&&h.$options.getOption("timezone"),q;h.$$parserName=a;h.$parsers.push(function(a){if(h.$isEmpty(a))return null;if(b.test(a))return a=d(a,q),r&&(a=Yb(a,r)),a});h.$formatters.push(function(a){if(a&&!ga(a))throw pb("datefmt",a);if(n(a))return(q=a)&&r&&(q=Yb(q,r,!0)),m("date")(a,c,r);q=null;return""});if(u(g.min)||g.ngMin){var v;h.$validators.min=function(a){return!n(a)||w(v)||d(a)>=v};g.$observe("min",function(a){v=p(a);h.$validate()})}if(u(g.max)||g.ngMax){var t;
+h.$validators.max=function(a){return!n(a)||w(t)||d(a)<=t};g.$observe("max",function(a){t=p(a);h.$validate()})}}}function Dc(a,b,d,c){(c.$$hasNativeValidators=C(b[0].validity))&&c.$parsers.push(function(a){var c=b.prop("validity")||{};return c.badInput||c.typeMismatch?void 0:a})}function be(a){a.$$parserName="number";a.$parsers.push(function(b){if(a.$isEmpty(b))return null;if(Qg.test(b))return parseFloat(b)});a.$formatters.push(function(b){if(!a.$isEmpty(b)){if(!ba(b))throw pb("numfmt",b);b=b.toString()}return b})}
+function Sa(a){u(a)&&!ba(a)&&(a=parseFloat(a));return da(a)?void 0:a}function Ec(a){var b=a.toString(),d=b.indexOf(".");return-1===d?-1<a&&1>a&&(a=/e-(\d+)$/.exec(b))?Number(a[1]):0:b.length-d-1}function ce(a,b,d){a=Number(a);var c=(a|0)!==a,e=(b|0)!==b,f=(d|0)!==d;if(c||e||f){var g=c?Ec(a):0,h=e?Ec(b):0,k=f?Ec(d):0,g=Math.max(g,h,k),g=Math.pow(10,g);a*=g;b*=g;d*=g;c&&(a=Math.round(a));e&&(b=Math.round(b));f&&(d=Math.round(d))}return 0===(a-b)%d}function de(a,b,d,c,e){if(u(c)){a=a(c);if(!a.constant)throw pb("constexpr",
+d,c);return a(b)}return e}function Fc(a,b){function d(a,b){if(!a||!a.length)return[];if(!b||!b.length)return a;var c=[],d=0;a:for(;d<a.length;d++){for(var e=a[d],m=0;m<b.length;m++)if(e===b[m])continue a;c.push(e)}return c}function c(a){var b=a;H(a)?b=a.map(c).join(" "):C(a)&&(b=Object.keys(a).filter(function(b){return a[b]}).join(" "));return b}a="ngClass"+a;var e;return["$parse",function(f){return{restrict:"AC",link:function(g,h,k){function l(a,b){var c=[];q(a,function(a){if(0<b||n[a])n[a]=(n[a]||
+0)+b,n[a]===+(0<b)&&c.push(a)});return c.join(" ")}function m(a){if(a===b){var c=r,c=l(c&&c.split(" "),1);k.$addClass(c)}else c=r,c=l(c&&c.split(" "),-1),k.$removeClass(c);p=a}var n=h.data("$classCounts"),p=!0,r;n||(n=V(),h.data("$classCounts",n));"ngClass"!==a&&(e||(e=f("$index",function(a){return a&1})),g.$watch(e,m));g.$watch(f(k[a],c),function(a){F(a)||(a=c(a));if(p===b){var e=a,f=r&&r.split(" "),g=e&&e.split(" "),e=d(f,g),f=d(g,f),e=l(e,-1),f=l(f,1);k.$addClass(f);k.$removeClass(e)}r=a})}}}]}
+function Ob(a,b,d,c,e,f,g,h,k){this.$modelValue=this.$viewValue=Number.NaN;this.$$rawModelValue=void 0;this.$validators={};this.$asyncValidators={};this.$parsers=[];this.$formatters=[];this.$viewChangeListeners=[];this.$untouched=!0;this.$touched=!1;this.$pristine=!0;this.$dirty=!1;this.$valid=!0;this.$invalid=!1;this.$error={};this.$$success={};this.$pending=void 0;this.$name=k(d.name||"",!1)(a);this.$$parentForm=Mb;this.$options=Pb;this.$$parsedNgModel=e(d.ngModel);this.$$parsedNgModelAssign=this.$$parsedNgModel.assign;
+this.$$ngModelGet=this.$$parsedNgModel;this.$$ngModelSet=this.$$parsedNgModelAssign;this.$$pendingDebounce=null;this.$$parserValid=void 0;this.$$currentValidationRunId=0;Object.defineProperty(this,"$$scope",{value:a});this.$$attr=d;this.$$element=c;this.$$animate=f;this.$$timeout=g;this.$$parse=e;this.$$q=h;this.$$exceptionHandler=b;Xd(this);Rg(this)}function Rg(a){a.$$scope.$watch(function(b){b=a.$$ngModelGet(b);if(b!==a.$modelValue&&(a.$modelValue===a.$modelValue||b===b)){a.$modelValue=a.$$rawModelValue=
+b;a.$$parserValid=void 0;for(var d=a.$formatters,c=d.length,e=b;c--;)e=d[c](e);a.$viewValue!==e&&(a.$$updateEmptyClasses(e),a.$viewValue=a.$$lastCommittedViewValue=e,a.$render(),a.$$runValidators(a.$modelValue,a.$viewValue,z))}return b})}function Gc(a){this.$$options=a}function ee(a,b){q(b,function(b,c){u(a[c])||(a[c]=b)})}function Ta(a,b){a.prop("selected",b);a.attr("selected",b)}var Sg=/^\/(.+)\/([a-z]*)$/,ua=Object.prototype.hasOwnProperty,Ic={objectMaxDepth:5},Q=function(a){return F(a)?a.toLowerCase():
+a},ub=function(a){return F(a)?a.toUpperCase():a},za,B,na,va=[].slice,sg=[].splice,Tg=[].push,ma=Object.prototype.toString,Mc=Object.getPrototypeOf,Fa=L("ng"),ea=x.angular||(x.angular={}),ac,qb=0;za=x.document.documentMode;var da=Number.isNaN||function(a){return a!==a};z.$inject=[];Ya.$inject=[];var H=Array.isArray,qe=/^\[object (?:Uint8|Uint8Clamped|Uint16|Uint32|Int8|Int16|Int32|Float32|Float64)Array]$/,T=function(a){return F(a)?a.trim():a},Kd=function(a){return a.replace(/([-()[\]{}+?*.$^|,:#<!\\])/g,
+"\\$1").replace(/\x08/g,"\\x08")},Ga=function(){if(!u(Ga.rules)){var a=x.document.querySelector("[ng-csp]")||x.document.querySelector("[data-ng-csp]");if(a){var b=a.getAttribute("ng-csp")||a.getAttribute("data-ng-csp");Ga.rules={noUnsafeEval:!b||-1!==b.indexOf("no-unsafe-eval"),noInlineStyle:!b||-1!==b.indexOf("no-inline-style")}}else{a=Ga;try{new Function(""),b=!1}catch(d){b=!0}a.rules={noUnsafeEval:b,noInlineStyle:!1}}}return Ga.rules},rb=function(){if(u(rb.name_))return rb.name_;var a,b,d=Ja.length,
+c,e;for(b=0;b<d;++b)if(c=Ja[b],a=x.document.querySelector("["+c.replace(":","\\:")+"jq]")){e=a.getAttribute(c+"jq");break}return rb.name_=e},se=/:/g,Ja=["ng-","data-ng-","ng:","x-ng-"],ve=function(a){var b=a.currentScript;if(!b)return!0;if(!(b instanceof x.HTMLScriptElement||b instanceof x.SVGScriptElement))return!1;b=b.attributes;return[b.getNamedItem("src"),b.getNamedItem("href"),b.getNamedItem("xlink:href")].every(function(b){if(!b)return!0;if(!b.value)return!1;var c=a.createElement("a");c.href=
+b.value;if(a.location.origin===c.origin)return!0;switch(c.protocol){case "http:":case "https:":case "ftp:":case "blob:":case "file:":case "data:":return!0;default:return!1}})}(x.document),ye=/[A-Z]/g,Uc=!1,Ia=3,De={full:"1.6.4",major:1,minor:6,dot:4,codeName:"phenomenal-footnote"};W.expando="ng339";var hb=W.cache={},eg=1;W._data=function(a){return this.cache[a[this.expando]]||{}};var ag=/-([a-z])/g,Ug=/^-ms-/,zb={mouseleave:"mouseout",mouseenter:"mouseover"},dc=L("jqLite"),dg=/^<([\w-]+)\s*\/?>(?:<\/\1>|)$/,
+cc=/<|&#?\w+;/,bg=/<([\w:-]+)/,cg=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:-]+)[^>]*)\/>/gi,ha={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,"",""]};ha.optgroup=ha.option;ha.tbody=ha.tfoot=ha.colgroup=ha.caption=ha.thead;ha.th=ha.td;var jg=x.Node.prototype.contains||function(a){return!!(this.compareDocumentPosition(a)&
+16)},Na=W.prototype={ready:ed,toString:function(){var a=[];q(this,function(b){a.push(""+b)});return"["+a.join(", ")+"]"},eq:function(a){return 0<=a?B(this[a]):B(this[this.length+a])},length:0,push:Tg,sort:[].sort,splice:[].splice},Fb={};q("multiple selected checked disabled readOnly required open".split(" "),function(a){Fb[Q(a)]=a});var jd={};q("input select option textarea button form details".split(" "),function(a){jd[a]=!0});var rd={ngMinlength:"minlength",ngMaxlength:"maxlength",ngMin:"min",ngMax:"max",
+ngPattern:"pattern",ngStep:"step"};q({data:hc,removeData:gc,hasData:function(a){for(var b in hb[a.ng339])return!0;return!1},cleanData:function(a){for(var b=0,d=a.length;b<d;b++)gc(a[b])}},function(a,b){W[b]=a});q({data:hc,inheritedData:Db,scope:function(a){return B.data(a,"$scope")||Db(a.parentNode||a,["$isolateScope","$scope"])},isolateScope:function(a){return B.data(a,"$isolateScope")||B.data(a,"$isolateScopeNoTemplate")},controller:gd,injector:function(a){return Db(a,"$injector")},removeAttr:function(a,
+b){a.removeAttribute(b)},hasClass:Ab,css:function(a,b,d){b=wb(b.replace(Ug,"ms-"));if(u(d))a.style[b]=d;else return a.style[b]},attr:function(a,b,d){var c=a.nodeType;if(c!==Ia&&2!==c&&8!==c&&a.getAttribute){var c=Q(b),e=Fb[c];if(u(d))null===d||!1===d&&e?a.removeAttribute(b):a.setAttribute(b,e?c:d);else return a=a.getAttribute(b),e&&null!==a&&(a=c),null===a?void 0:a}},prop:function(a,b,d){if(u(d))a[b]=d;else return a[b]},text:function(){function a(a,d){if(w(d)){var c=a.nodeType;return 1===c||c===Ia?
+a.textContent:""}a.textContent=d}a.$dv="";return a}(),val:function(a,b){if(w(b)){if(a.multiple&&"select"===wa(a)){var d=[];q(a.options,function(a){a.selected&&d.push(a.value||a.text)});return d}return a.value}a.value=b},html:function(a,b){if(w(b))return a.innerHTML;xb(a,!0);a.innerHTML=b},empty:hd},function(a,b){W.prototype[b]=function(b,c){var e,f,g=this.length;if(a!==hd&&w(2===a.length&&a!==Ab&&a!==gd?b:c)){if(C(b)){for(e=0;e<g;e++)if(a===hc)a(this[e],b);else for(f in b)a(this[e],f,b[f]);return this}e=
+a.$dv;g=w(e)?Math.min(g,1):g;for(f=0;f<g;f++){var h=a(this[f],b,c);e=e?e+h:h}return e}for(e=0;e<g;e++)a(this[e],b,c);return this}});q({removeData:gc,on:function(a,b,d,c){if(u(c))throw dc("onargs");if(bc(a)){c=yb(a,!0);var e=c.events,f=c.handle;f||(f=c.handle=gg(a,e));c=0<=b.indexOf(" ")?b.split(" "):[b];for(var g=c.length,h=function(b,c,g){var h=e[b];h||(h=e[b]=[],h.specialHandlerWrapper=c,"$destroy"===b||g||a.addEventListener(b,f));h.push(d)};g--;)b=c[g],zb[b]?(h(zb[b],ig),h(b,void 0,!0)):h(b)}},
+off:fd,one:function(a,b,d){a=B(a);a.on(b,function e(){a.off(b,d);a.off(b,e)});a.on(b,d)},replaceWith:function(a,b){var d,c=a.parentNode;xb(a);q(new W(b),function(b){d?c.insertBefore(b,d.nextSibling):c.replaceChild(b,a);d=b})},children:function(a){var b=[];q(a.childNodes,function(a){1===a.nodeType&&b.push(a)});return b},contents:function(a){return a.contentDocument||a.childNodes||[]},append:function(a,b){var d=a.nodeType;if(1===d||11===d){b=new W(b);for(var d=0,c=b.length;d<c;d++)a.appendChild(b[d])}},
+prepend:function(a,b){if(1===a.nodeType){var d=a.firstChild;q(new W(b),function(b){a.insertBefore(b,d)})}},wrap:function(a,b){var d=B(b).eq(0).clone()[0],c=a.parentNode;c&&c.replaceChild(d,a);d.appendChild(a)},remove:Eb,detach:function(a){Eb(a,!0)},after:function(a,b){var d=a,c=a.parentNode;if(c){b=new W(b);for(var e=0,f=b.length;e<f;e++){var g=b[e];c.insertBefore(g,d.nextSibling);d=g}}},addClass:Cb,removeClass:Bb,toggleClass:function(a,b,d){b&&q(b.split(" "),function(b){var e=d;w(e)&&(e=!Ab(a,b));
+(e?Cb:Bb)(a,b)})},parent:function(a){return(a=a.parentNode)&&11!==a.nodeType?a:null},next:function(a){return a.nextElementSibling},find:function(a,b){return a.getElementsByTagName?a.getElementsByTagName(b):[]},clone:fc,triggerHandler:function(a,b,d){var c,e,f=b.type||b,g=yb(a);if(g=(g=g&&g.events)&&g[f])c={preventDefault:function(){this.defaultPrevented=!0},isDefaultPrevented:function(){return!0===this.defaultPrevented},stopImmediatePropagation:function(){this.immediatePropagationStopped=!0},isImmediatePropagationStopped:function(){return!0===
+this.immediatePropagationStopped},stopPropagation:z,type:f,target:a},b.type&&(c=S(c,b)),b=pa(g),e=d?[c].concat(d):[c],q(b,function(b){c.isImmediatePropagationStopped()||b.apply(a,e)})}},function(a,b){W.prototype[b]=function(b,c,e){for(var f,g=0,h=this.length;g<h;g++)w(f)?(f=a(this[g],b,c,e),u(f)&&(f=B(f))):ec(f,a(this[g],b,c,e));return u(f)?f:this}});W.prototype.bind=W.prototype.on;W.prototype.unbind=W.prototype.off;var Vg=Object.create(null);kd.prototype={_idx:function(a){if(a===this._lastKey)return this._lastIndex;
+this._lastKey=a;return this._lastIndex=this._keys.indexOf(a)},_transformKey:function(a){return da(a)?Vg:a},get:function(a){a=this._transformKey(a);a=this._idx(a);if(-1!==a)return this._values[a]},set:function(a,b){a=this._transformKey(a);var d=this._idx(a);-1===d&&(d=this._lastIndex=this._keys.length);this._keys[d]=a;this._values[d]=b},delete:function(a){a=this._transformKey(a);a=this._idx(a);if(-1===a)return!1;this._keys.splice(a,1);this._values.splice(a,1);this._lastKey=NaN;this._lastIndex=-1;return!0}};
+var Gb=kd,Zf=[function(){this.$get=[function(){return Gb}]}],lg=/^([^(]+?)=>/,mg=/^[^(]*\(\s*([^)]*)\)/m,Wg=/,/,Xg=/^\s*(_?)(\S+?)\1\s*$/,kg=/((\/\/.*$)|(\/\*[\s\S]*?\*\/))/mg,ya=L("$injector");eb.$$annotate=function(a,b,d){var c;if("function"===typeof a){if(!(c=a.$inject)){c=[];if(a.length){if(b)throw F(d)&&d||(d=a.name||ng(a)),ya("strictdi",d);b=ld(a);q(b[1].split(Wg),function(a){a.replace(Xg,function(a,b,d){c.push(d)})})}a.$inject=c}}else H(a)?(b=a.length-1,sb(a[b],"fn"),c=a.slice(0,b)):sb(a,"fn",
+!0);return c};var fe=L("$animate"),qf=function(){this.$get=z},rf=function(){var a=new Gb,b=[];this.$get=["$$AnimateRunner","$rootScope",function(d,c){function e(a,b,c){var d=!1;b&&(b=F(b)?b.split(" "):H(b)?b:[],q(b,function(b){b&&(d=!0,a[b]=c)}));return d}function f(){q(b,function(b){var c=a.get(b);if(c){var d=og(b.attr("class")),e="",f="";q(c,function(a,b){a!==!!d[b]&&(a?e+=(e.length?" ":"")+b:f+=(f.length?" ":"")+b)});q(b,function(a){e&&Cb(a,e);f&&Bb(a,f)});a.delete(b)}});b.length=0}return{enabled:z,
+on:z,off:z,pin:z,push:function(g,h,k,l){l&&l();k=k||{};k.from&&g.css(k.from);k.to&&g.css(k.to);if(k.addClass||k.removeClass)if(h=k.addClass,l=k.removeClass,k=a.get(g)||{},h=e(k,h,!0),l=e(k,l,!1),h||l)a.set(g,k),b.push(g),1===b.length&&c.$$postDigest(f);g=new d;g.complete();return g}}}]},of=["$provide",function(a){var b=this,d=null;this.$$registeredAnimations=Object.create(null);this.register=function(c,d){if(c&&"."!==c.charAt(0))throw fe("notcsel",c);var f=c+"-animation";b.$$registeredAnimations[c.substr(1)]=
+f;a.factory(f,d)};this.classNameFilter=function(a){if(1===arguments.length&&(d=a instanceof RegExp?a:null)&&/[(\s|\/)]ng-animate[(\s|\/)]/.test(d.toString()))throw d=null,fe("nongcls","ng-animate");return d};this.$get=["$$animateQueue",function(a){function b(a,c,d){if(d){var e;a:{for(e=0;e<d.length;e++){var l=d[e];if(1===l.nodeType){e=l;break a}}e=void 0}!e||e.parentNode||e.previousElementSibling||(d=null)}d?d.after(a):c.prepend(a)}return{on:a.on,off:a.off,pin:a.pin,enabled:a.enabled,cancel:function(a){a.end&&
+a.end()},enter:function(d,g,h,k){g=g&&B(g);h=h&&B(h);g=g||h.parent();b(d,g,h);return a.push(d,"enter",ia(k))},move:function(d,g,h,k){g=g&&B(g);h=h&&B(h);g=g||h.parent();b(d,g,h);return a.push(d,"move",ia(k))},leave:function(b,d){return a.push(b,"leave",ia(d),function(){b.remove()})},addClass:function(b,d,e){e=ia(e);e.addClass=ib(e.addclass,d);return a.push(b,"addClass",e)},removeClass:function(b,d,e){e=ia(e);e.removeClass=ib(e.removeClass,d);return a.push(b,"removeClass",e)},setClass:function(b,d,
+e,k){k=ia(k);k.addClass=ib(k.addClass,d);k.removeClass=ib(k.removeClass,e);return a.push(b,"setClass",k)},animate:function(b,d,e,k,l){l=ia(l);l.from=l.from?S(l.from,d):d;l.to=l.to?S(l.to,e):e;l.tempClasses=ib(l.tempClasses,k||"ng-inline-animate");return a.push(b,"animate",l)}}}]}],tf=function(){this.$get=["$$rAF",function(a){function b(b){d.push(b);1<d.length||a(function(){for(var a=0;a<d.length;a++)d[a]();d=[]})}var d=[];return function(){var a=!1;b(function(){a=!0});return function(d){a?d():b(d)}}}]},
+sf=function(){this.$get=["$q","$sniffer","$$animateAsyncRun","$$isDocumentHidden","$timeout",function(a,b,d,c,e){function f(a){this.setHost(a);var b=d();this._doneCallbacks=[];this._tick=function(a){c()?e(a,0,!1):b(a)};this._state=0}f.chain=function(a,b){function c(){if(d===a.length)b(!0);else a[d](function(a){!1===a?b(!1):(d++,c())})}var d=0;c()};f.all=function(a,b){function c(f){e=e&&f;++d===a.length&&b(e)}var d=0,e=!0;q(a,function(a){a.done(c)})};f.prototype={setHost:function(a){this.host=a||{}},
+done:function(a){2===this._state?a():this._doneCallbacks.push(a)},progress:z,getPromise:function(){if(!this.promise){var b=this;this.promise=a(function(a,c){b.done(function(b){!1===b?c():a()})})}return this.promise},then:function(a,b){return this.getPromise().then(a,b)},"catch":function(a){return this.getPromise()["catch"](a)},"finally":function(a){return this.getPromise()["finally"](a)},pause:function(){this.host.pause&&this.host.pause()},resume:function(){this.host.resume&&this.host.resume()},end:function(){this.host.end&&
+this.host.end();this._resolve(!0)},cancel:function(){this.host.cancel&&this.host.cancel();this._resolve(!1)},complete:function(a){var b=this;0===b._state&&(b._state=1,b._tick(function(){b._resolve(a)}))},_resolve:function(a){2!==this._state&&(q(this._doneCallbacks,function(b){b(a)}),this._doneCallbacks.length=0,this._state=2)}};return f}]},pf=function(){this.$get=["$$rAF","$q","$$AnimateRunner",function(a,b,d){return function(b,e){function f(){a(function(){g.addClass&&(b.addClass(g.addClass),g.addClass=
+null);g.removeClass&&(b.removeClass(g.removeClass),g.removeClass=null);g.to&&(b.css(g.to),g.to=null);h||k.complete();h=!0});return k}var g=e||{};g.$$prepared||(g=ra(g));g.cleanupStyles&&(g.from=g.to=null);g.from&&(b.css(g.from),g.from=null);var h,k=new d;return{start:f,end:f}}}]},fa=L("$compile"),lc=new function(){};Wc.$inject=["$provide","$$sanitizeUriProvider"];Ib.prototype.isFirstChange=function(){return this.previousValue===lc};var md=/^((?:x|data)[:\-_])/i,rg=/[:\-_]+(.)/g,td=L("$controller"),
+sd=/^(\S+)(\s+as\s+([\w$]+))?$/,Af=function(){this.$get=["$document",function(a){return function(b){b?!b.nodeType&&b instanceof B&&(b=b[0]):b=a[0].body;return b.offsetWidth+1}}]},ud="application/json",pc={"Content-Type":ud+";charset=utf-8"},ug=/^\[|^\{(?!\{)/,vg={"[":/]$/,"{":/}$/},tg=/^\)]\}',?\n/,oc=L("$http"),Da=ea.$interpolateMinErr=L("$interpolate");Da.throwNoconcat=function(a){throw Da("noconcat",a);};Da.interr=function(a,b){return Da("interr",a,b.toString())};var If=function(){this.$get=function(){function a(a){var b=
+function(a){b.data=a;b.called=!0};b.id=a;return b}var b=ea.callbacks,d={};return{createCallback:function(c){c="_"+(b.$$counter++).toString(36);var e="angular.callbacks."+c,f=a(c);d[e]=b[c]=f;return e},wasCalled:function(a){return d[a].called},getResponse:function(a){return d[a].data},removeCallback:function(a){delete b[d[a].id];delete d[a]}}}},Yg=/^([^?#]*)(\?([^#]*))?(#(.*))?$/,xg={http:80,https:443,ftp:21},kb=L("$location"),yg=/^\s*[\\/]{2,}/,Zg={$$absUrl:"",$$html5:!1,$$replace:!1,absUrl:Jb("$$absUrl"),
+url:function(a){if(w(a))return this.$$url;var b=Yg.exec(a);(b[1]||""===a)&&this.path(decodeURIComponent(b[1]));(b[2]||b[1]||""===a)&&this.search(b[3]||"");this.hash(b[5]||"");return this},protocol:Jb("$$protocol"),host:Jb("$$host"),port:Jb("$$port"),path:Cd("$$path",function(a){a=null!==a?a.toString():"";return"/"===a.charAt(0)?a:"/"+a}),search:function(a,b){switch(arguments.length){case 0:return this.$$search;case 1:if(F(a)||ba(a))a=a.toString(),this.$$search=Rc(a);else if(C(a))a=ra(a,{}),q(a,function(b,
+c){null==b&&delete a[c]}),this.$$search=a;else throw kb("isrcharg");break;default:w(b)||null===b?delete this.$$search[a]:this.$$search[a]=b}this.$$compose();return this},hash:Cd("$$hash",function(a){return null!==a?a.toString():""}),replace:function(){this.$$replace=!0;return this}};q([Bd,tc,sc],function(a){a.prototype=Object.create(Zg);a.prototype.state=function(b){if(!arguments.length)return this.$$state;if(a!==sc||!this.$$html5)throw kb("nostate");this.$$state=w(b)?null:b;this.$$urlUpdatedByLocation=
+!0;return this}});var Ua=L("$parse"),Bg={}.constructor.prototype.valueOf,Qb=V();q("+ - * / % === !== == != < > <= >= && || ! = |".split(" "),function(a){Qb[a]=!0});var $g={n:"\n",f:"\f",r:"\r",t:"\t",v:"\v","'":"'",'"':'"'},wc=function(a){this.options=a};wc.prototype={constructor:wc,lex:function(a){this.text=a;this.index=0;for(this.tokens=[];this.index<this.text.length;)if(a=this.text.charAt(this.index),'"'===a||"'"===a)this.readString(a);else if(this.isNumber(a)||"."===a&&this.isNumber(this.peek()))this.readNumber();
+else if(this.isIdentifierStart(this.peekMultichar()))this.readIdent();else if(this.is(a,"(){}[].,;:?"))this.tokens.push({index:this.index,text:a}),this.index++;else if(this.isWhitespace(a))this.index++;else{var b=a+this.peek(),d=b+this.peek(2),c=Qb[b],e=Qb[d];Qb[a]||c||e?(a=e?d:c?b:a,this.tokens.push({index:this.index,text:a,operator:!0}),this.index+=a.length):this.throwError("Unexpected next character ",this.index,this.index+1)}return this.tokens},is:function(a,b){return-1!==b.indexOf(a)},peek:function(a){a=
+a||1;return this.index+a<this.text.length?this.text.charAt(this.index+a):!1},isNumber:function(a){return"0"<=a&&"9">=a&&"string"===typeof a},isWhitespace:function(a){return" "===a||"\r"===a||"\t"===a||"\n"===a||"\v"===a||"\u00a0"===a},isIdentifierStart:function(a){return this.options.isIdentifierStart?this.options.isIdentifierStart(a,this.codePointAt(a)):this.isValidIdentifierStart(a)},isValidIdentifierStart:function(a){return"a"<=a&&"z">=a||"A"<=a&&"Z">=a||"_"===a||"$"===a},isIdentifierContinue:function(a){return this.options.isIdentifierContinue?
+this.options.isIdentifierContinue(a,this.codePointAt(a)):this.isValidIdentifierContinue(a)},isValidIdentifierContinue:function(a,b){return this.isValidIdentifierStart(a,b)||this.isNumber(a)},codePointAt:function(a){return 1===a.length?a.charCodeAt(0):(a.charCodeAt(0)<<10)+a.charCodeAt(1)-56613888},peekMultichar:function(){var a=this.text.charAt(this.index),b=this.peek();if(!b)return a;var d=a.charCodeAt(0),c=b.charCodeAt(0);return 55296<=d&&56319>=d&&56320<=c&&57343>=c?a+b:a},isExpOperator:function(a){return"-"===
+a||"+"===a||this.isNumber(a)},throwError:function(a,b,d){d=d||this.index;b=u(b)?"s "+b+"-"+this.index+" ["+this.text.substring(b,d)+"]":" "+d;throw Ua("lexerr",a,b,this.text);},readNumber:function(){for(var a="",b=this.index;this.index<this.text.length;){var d=Q(this.text.charAt(this.index));if("."===d||this.isNumber(d))a+=d;else{var c=this.peek();if("e"===d&&this.isExpOperator(c))a+=d;else if(this.isExpOperator(d)&&c&&this.isNumber(c)&&"e"===a.charAt(a.length-1))a+=d;else if(!this.isExpOperator(d)||
+c&&this.isNumber(c)||"e"!==a.charAt(a.length-1))break;else this.throwError("Invalid exponent")}this.index++}this.tokens.push({index:b,text:a,constant:!0,value:Number(a)})},readIdent:function(){var a=this.index;for(this.index+=this.peekMultichar().length;this.index<this.text.length;){var b=this.peekMultichar();if(!this.isIdentifierContinue(b))break;this.index+=b.length}this.tokens.push({index:a,text:this.text.slice(a,this.index),identifier:!0})},readString:function(a){var b=this.index;this.index++;
+for(var d="",c=a,e=!1;this.index<this.text.length;){var f=this.text.charAt(this.index),c=c+f;if(e)"u"===f?(e=this.text.substring(this.index+1,this.index+5),e.match(/[\da-f]{4}/i)||this.throwError("Invalid unicode escape [\\u"+e+"]"),this.index+=4,d+=String.fromCharCode(parseInt(e,16))):d+=$g[f]||f,e=!1;else if("\\"===f)e=!0;else{if(f===a){this.index++;this.tokens.push({index:b,text:c,constant:!0,value:d});return}d+=f}this.index++}this.throwError("Unterminated quote",b)}};var s=function(a,b){this.lexer=
+a;this.options=b};s.Program="Program";s.ExpressionStatement="ExpressionStatement";s.AssignmentExpression="AssignmentExpression";s.ConditionalExpression="ConditionalExpression";s.LogicalExpression="LogicalExpression";s.BinaryExpression="BinaryExpression";s.UnaryExpression="UnaryExpression";s.CallExpression="CallExpression";s.MemberExpression="MemberExpression";s.Identifier="Identifier";s.Literal="Literal";s.ArrayExpression="ArrayExpression";s.Property="Property";s.ObjectExpression="ObjectExpression";
+s.ThisExpression="ThisExpression";s.LocalsExpression="LocalsExpression";s.NGValueParameter="NGValueParameter";s.prototype={ast:function(a){this.text=a;this.tokens=this.lexer.lex(a);a=this.program();0!==this.tokens.length&&this.throwError("is an unexpected token",this.tokens[0]);return a},program:function(){for(var a=[];;)if(0<this.tokens.length&&!this.peek("}",")",";","]")&&a.push(this.expressionStatement()),!this.expect(";"))return{type:s.Program,body:a}},expressionStatement:function(){return{type:s.ExpressionStatement,
+expression:this.filterChain()}},filterChain:function(){for(var a=this.expression();this.expect("|");)a=this.filter(a);return a},expression:function(){return this.assignment()},assignment:function(){var a=this.ternary();if(this.expect("=")){if(!Fd(a))throw Ua("lval");a={type:s.AssignmentExpression,left:a,right:this.assignment(),operator:"="}}return a},ternary:function(){var a=this.logicalOR(),b,d;return this.expect("?")&&(b=this.expression(),this.consume(":"))?(d=this.expression(),{type:s.ConditionalExpression,
+test:a,alternate:b,consequent:d}):a},logicalOR:function(){for(var a=this.logicalAND();this.expect("||");)a={type:s.LogicalExpression,operator:"||",left:a,right:this.logicalAND()};return a},logicalAND:function(){for(var a=this.equality();this.expect("&&");)a={type:s.LogicalExpression,operator:"&&",left:a,right:this.equality()};return a},equality:function(){for(var a=this.relational(),b;b=this.expect("==","!=","===","!==");)a={type:s.BinaryExpression,operator:b.text,left:a,right:this.relational()};
+return a},relational:function(){for(var a=this.additive(),b;b=this.expect("<",">","<=",">=");)a={type:s.BinaryExpression,operator:b.text,left:a,right:this.additive()};return a},additive:function(){for(var a=this.multiplicative(),b;b=this.expect("+","-");)a={type:s.BinaryExpression,operator:b.text,left:a,right:this.multiplicative()};return a},multiplicative:function(){for(var a=this.unary(),b;b=this.expect("*","/","%");)a={type:s.BinaryExpression,operator:b.text,left:a,right:this.unary()};return a},
+unary:function(){var a;return(a=this.expect("+","-","!"))?{type:s.UnaryExpression,operator:a.text,prefix:!0,argument:this.unary()}:this.primary()},primary:function(){var a;this.expect("(")?(a=this.filterChain(),this.consume(")")):this.expect("[")?a=this.arrayDeclaration():this.expect("{")?a=this.object():this.selfReferential.hasOwnProperty(this.peek().text)?a=ra(this.selfReferential[this.consume().text]):this.options.literals.hasOwnProperty(this.peek().text)?a={type:s.Literal,value:this.options.literals[this.consume().text]}:
+this.peek().identifier?a=this.identifier():this.peek().constant?a=this.constant():this.throwError("not a primary expression",this.peek());for(var b;b=this.expect("(","[",".");)"("===b.text?(a={type:s.CallExpression,callee:a,arguments:this.parseArguments()},this.consume(")")):"["===b.text?(a={type:s.MemberExpression,object:a,property:this.expression(),computed:!0},this.consume("]")):"."===b.text?a={type:s.MemberExpression,object:a,property:this.identifier(),computed:!1}:this.throwError("IMPOSSIBLE");
+return a},filter:function(a){a=[a];for(var b={type:s.CallExpression,callee:this.identifier(),arguments:a,filter:!0};this.expect(":");)a.push(this.expression());return b},parseArguments:function(){var a=[];if(")"!==this.peekToken().text){do a.push(this.filterChain());while(this.expect(","))}return a},identifier:function(){var a=this.consume();a.identifier||this.throwError("is not a valid identifier",a);return{type:s.Identifier,name:a.text}},constant:function(){return{type:s.Literal,value:this.consume().value}},
+arrayDeclaration:function(){var a=[];if("]"!==this.peekToken().text){do{if(this.peek("]"))break;a.push(this.expression())}while(this.expect(","))}this.consume("]");return{type:s.ArrayExpression,elements:a}},object:function(){var a=[],b;if("}"!==this.peekToken().text){do{if(this.peek("}"))break;b={type:s.Property,kind:"init"};this.peek().constant?(b.key=this.constant(),b.computed=!1,this.consume(":"),b.value=this.expression()):this.peek().identifier?(b.key=this.identifier(),b.computed=!1,this.peek(":")?
+(this.consume(":"),b.value=this.expression()):b.value=b.key):this.peek("[")?(this.consume("["),b.key=this.expression(),this.consume("]"),b.computed=!0,this.consume(":"),b.value=this.expression()):this.throwError("invalid key",this.peek());a.push(b)}while(this.expect(","))}this.consume("}");return{type:s.ObjectExpression,properties:a}},throwError:function(a,b){throw Ua("syntax",b.text,a,b.index+1,this.text,this.text.substring(b.index));},consume:function(a){if(0===this.tokens.length)throw Ua("ueoe",
+this.text);var b=this.expect(a);b||this.throwError("is unexpected, expecting ["+a+"]",this.peek());return b},peekToken:function(){if(0===this.tokens.length)throw Ua("ueoe",this.text);return this.tokens[0]},peek:function(a,b,d,c){return this.peekAhead(0,a,b,d,c)},peekAhead:function(a,b,d,c,e){if(this.tokens.length>a){a=this.tokens[a];var f=a.text;if(f===b||f===d||f===c||f===e||!(b||d||c||e))return a}return!1},expect:function(a,b,d,c){return(a=this.peek(a,b,d,c))?(this.tokens.shift(),a):!1},selfReferential:{"this":{type:s.ThisExpression},
+$locals:{type:s.LocalsExpression}}};Hd.prototype={compile:function(a){var b=this;this.state={nextId:0,filters:{},fn:{vars:[],body:[],own:{}},assign:{vars:[],body:[],own:{}},inputs:[]};U(a,b.$filter);var d="",c;this.stage="assign";if(c=Gd(a))this.state.computing="assign",d=this.nextId(),this.recurse(c,d),this.return_(d),d="fn.assign="+this.generateFunction("assign","s,v,l");c=Ed(a.body);b.stage="inputs";q(c,function(a,c){var d="fn"+c;b.state[d]={vars:[],body:[],own:{}};b.state.computing=d;var h=b.nextId();
+b.recurse(a,h);b.return_(h);b.state.inputs.push(d);a.watchId=c});this.state.computing="fn";this.stage="main";this.recurse(a);a='"'+this.USE+" "+this.STRICT+'";\n'+this.filterPrefix()+"var fn="+this.generateFunction("fn","s,l,a,i")+d+this.watchFns()+"return fn;";a=(new Function("$filter","getStringValue","ifDefined","plus",a))(this.$filter,zg,Ag,Dd);this.state=this.stage=void 0;return a},USE:"use",STRICT:"strict",watchFns:function(){var a=[],b=this.state.inputs,d=this;q(b,function(b){a.push("var "+
+b+"="+d.generateFunction(b,"s"))});b.length&&a.push("fn.inputs=["+b.join(",")+"];");return a.join("")},generateFunction:function(a,b){return"function("+b+"){"+this.varsPrefix(a)+this.body(a)+"};"},filterPrefix:function(){var a=[],b=this;q(this.state.filters,function(d,c){a.push(d+"=$filter("+b.escape(c)+")")});return a.length?"var "+a.join(",")+";":""},varsPrefix:function(a){return this.state[a].vars.length?"var "+this.state[a].vars.join(",")+";":""},body:function(a){return this.state[a].body.join("")},
+recurse:function(a,b,d,c,e,f){var g,h,k=this,l,m,n;c=c||z;if(!f&&u(a.watchId))b=b||this.nextId(),this.if_("i",this.lazyAssign(b,this.computedMember("i",a.watchId)),this.lazyRecurse(a,b,d,c,e,!0));else switch(a.type){case s.Program:q(a.body,function(b,c){k.recurse(b.expression,void 0,void 0,function(a){h=a});c!==a.body.length-1?k.current().body.push(h,";"):k.return_(h)});break;case s.Literal:m=this.escape(a.value);this.assign(b,m);c(b||m);break;case s.UnaryExpression:this.recurse(a.argument,void 0,
+void 0,function(a){h=a});m=a.operator+"("+this.ifDefined(h,0)+")";this.assign(b,m);c(m);break;case s.BinaryExpression:this.recurse(a.left,void 0,void 0,function(a){g=a});this.recurse(a.right,void 0,void 0,function(a){h=a});m="+"===a.operator?this.plus(g,h):"-"===a.operator?this.ifDefined(g,0)+a.operator+this.ifDefined(h,0):"("+g+")"+a.operator+"("+h+")";this.assign(b,m);c(m);break;case s.LogicalExpression:b=b||this.nextId();k.recurse(a.left,b);k.if_("&&"===a.operator?b:k.not(b),k.lazyRecurse(a.right,
+b));c(b);break;case s.ConditionalExpression:b=b||this.nextId();k.recurse(a.test,b);k.if_(b,k.lazyRecurse(a.alternate,b),k.lazyRecurse(a.consequent,b));c(b);break;case s.Identifier:b=b||this.nextId();d&&(d.context="inputs"===k.stage?"s":this.assign(this.nextId(),this.getHasOwnProperty("l",a.name)+"?l:s"),d.computed=!1,d.name=a.name);k.if_("inputs"===k.stage||k.not(k.getHasOwnProperty("l",a.name)),function(){k.if_("inputs"===k.stage||"s",function(){e&&1!==e&&k.if_(k.isNull(k.nonComputedMember("s",a.name)),
+k.lazyAssign(k.nonComputedMember("s",a.name),"{}"));k.assign(b,k.nonComputedMember("s",a.name))})},b&&k.lazyAssign(b,k.nonComputedMember("l",a.name)));c(b);break;case s.MemberExpression:g=d&&(d.context=this.nextId())||this.nextId();b=b||this.nextId();k.recurse(a.object,g,void 0,function(){k.if_(k.notNull(g),function(){a.computed?(h=k.nextId(),k.recurse(a.property,h),k.getStringValue(h),e&&1!==e&&k.if_(k.not(k.computedMember(g,h)),k.lazyAssign(k.computedMember(g,h),"{}")),m=k.computedMember(g,h),k.assign(b,
+m),d&&(d.computed=!0,d.name=h)):(e&&1!==e&&k.if_(k.isNull(k.nonComputedMember(g,a.property.name)),k.lazyAssign(k.nonComputedMember(g,a.property.name),"{}")),m=k.nonComputedMember(g,a.property.name),k.assign(b,m),d&&(d.computed=!1,d.name=a.property.name))},function(){k.assign(b,"undefined")});c(b)},!!e);break;case s.CallExpression:b=b||this.nextId();a.filter?(h=k.filter(a.callee.name),l=[],q(a.arguments,function(a){var b=k.nextId();k.recurse(a,b);l.push(b)}),m=h+"("+l.join(",")+")",k.assign(b,m),c(b)):
+(h=k.nextId(),g={},l=[],k.recurse(a.callee,h,g,function(){k.if_(k.notNull(h),function(){q(a.arguments,function(b){k.recurse(b,a.constant?void 0:k.nextId(),void 0,function(a){l.push(a)})});m=g.name?k.member(g.context,g.name,g.computed)+"("+l.join(",")+")":h+"("+l.join(",")+")";k.assign(b,m)},function(){k.assign(b,"undefined")});c(b)}));break;case s.AssignmentExpression:h=this.nextId();g={};this.recurse(a.left,void 0,g,function(){k.if_(k.notNull(g.context),function(){k.recurse(a.right,h);m=k.member(g.context,
+g.name,g.computed)+a.operator+h;k.assign(b,m);c(b||m)})},1);break;case s.ArrayExpression:l=[];q(a.elements,function(b){k.recurse(b,a.constant?void 0:k.nextId(),void 0,function(a){l.push(a)})});m="["+l.join(",")+"]";this.assign(b,m);c(b||m);break;case s.ObjectExpression:l=[];n=!1;q(a.properties,function(a){a.computed&&(n=!0)});n?(b=b||this.nextId(),this.assign(b,"{}"),q(a.properties,function(a){a.computed?(g=k.nextId(),k.recurse(a.key,g)):g=a.key.type===s.Identifier?a.key.name:""+a.key.value;h=k.nextId();
+k.recurse(a.value,h);k.assign(k.member(b,g,a.computed),h)})):(q(a.properties,function(b){k.recurse(b.value,a.constant?void 0:k.nextId(),void 0,function(a){l.push(k.escape(b.key.type===s.Identifier?b.key.name:""+b.key.value)+":"+a)})}),m="{"+l.join(",")+"}",this.assign(b,m));c(b||m);break;case s.ThisExpression:this.assign(b,"s");c(b||"s");break;case s.LocalsExpression:this.assign(b,"l");c(b||"l");break;case s.NGValueParameter:this.assign(b,"v"),c(b||"v")}},getHasOwnProperty:function(a,b){var d=a+"."+
+b,c=this.current().own;c.hasOwnProperty(d)||(c[d]=this.nextId(!1,a+"&&("+this.escape(b)+" in "+a+")"));return c[d]},assign:function(a,b){if(a)return this.current().body.push(a,"=",b,";"),a},filter:function(a){this.state.filters.hasOwnProperty(a)||(this.state.filters[a]=this.nextId(!0));return this.state.filters[a]},ifDefined:function(a,b){return"ifDefined("+a+","+this.escape(b)+")"},plus:function(a,b){return"plus("+a+","+b+")"},return_:function(a){this.current().body.push("return ",a,";")},if_:function(a,
+b,d){if(!0===a)b();else{var c=this.current().body;c.push("if(",a,"){");b();c.push("}");d&&(c.push("else{"),d(),c.push("}"))}},not:function(a){return"!("+a+")"},isNull:function(a){return a+"==null"},notNull:function(a){return a+"!=null"},nonComputedMember:function(a,b){var d=/[^$_a-zA-Z0-9]/g;return/^[$_a-zA-Z][$_a-zA-Z0-9]*$/.test(b)?a+"."+b:a+'["'+b.replace(d,this.stringEscapeFn)+'"]'},computedMember:function(a,b){return a+"["+b+"]"},member:function(a,b,d){return d?this.computedMember(a,b):this.nonComputedMember(a,
+b)},getStringValue:function(a){this.assign(a,"getStringValue("+a+")")},lazyRecurse:function(a,b,d,c,e,f){var g=this;return function(){g.recurse(a,b,d,c,e,f)}},lazyAssign:function(a,b){var d=this;return function(){d.assign(a,b)}},stringEscapeRegex:/[^ a-zA-Z0-9]/g,stringEscapeFn:function(a){return"\\u"+("0000"+a.charCodeAt(0).toString(16)).slice(-4)},escape:function(a){if(F(a))return"'"+a.replace(this.stringEscapeRegex,this.stringEscapeFn)+"'";if(ba(a))return a.toString();if(!0===a)return"true";if(!1===
+a)return"false";if(null===a)return"null";if("undefined"===typeof a)return"undefined";throw Ua("esc");},nextId:function(a,b){var d="v"+this.state.nextId++;a||this.current().vars.push(d+(b?"="+b:""));return d},current:function(){return this.state[this.state.computing]}};Id.prototype={compile:function(a){var b=this;U(a,b.$filter);var d,c;if(d=Gd(a))c=this.recurse(d);d=Ed(a.body);var e;d&&(e=[],q(d,function(a,c){var d=b.recurse(a);a.input=d;e.push(d);a.watchId=c}));var f=[];q(a.body,function(a){f.push(b.recurse(a.expression))});
+a=0===a.body.length?z:1===a.body.length?f[0]:function(a,b){var c;q(f,function(d){c=d(a,b)});return c};c&&(a.assign=function(a,b,d){return c(a,d,b)});e&&(a.inputs=e);return a},recurse:function(a,b,d){var c,e,f=this,g;if(a.input)return this.inputs(a.input,a.watchId);switch(a.type){case s.Literal:return this.value(a.value,b);case s.UnaryExpression:return e=this.recurse(a.argument),this["unary"+a.operator](e,b);case s.BinaryExpression:return c=this.recurse(a.left),e=this.recurse(a.right),this["binary"+
+a.operator](c,e,b);case s.LogicalExpression:return c=this.recurse(a.left),e=this.recurse(a.right),this["binary"+a.operator](c,e,b);case s.ConditionalExpression:return this["ternary?:"](this.recurse(a.test),this.recurse(a.alternate),this.recurse(a.consequent),b);case s.Identifier:return f.identifier(a.name,b,d);case s.MemberExpression:return c=this.recurse(a.object,!1,!!d),a.computed||(e=a.property.name),a.computed&&(e=this.recurse(a.property)),a.computed?this.computedMember(c,e,b,d):this.nonComputedMember(c,
+e,b,d);case s.CallExpression:return g=[],q(a.arguments,function(a){g.push(f.recurse(a))}),a.filter&&(e=this.$filter(a.callee.name)),a.filter||(e=this.recurse(a.callee,!0)),a.filter?function(a,c,d,f){for(var n=[],p=0;p<g.length;++p)n.push(g[p](a,c,d,f));a=e.apply(void 0,n,f);return b?{context:void 0,name:void 0,value:a}:a}:function(a,c,d,f){var n=e(a,c,d,f),p;if(null!=n.value){p=[];for(var r=0;r<g.length;++r)p.push(g[r](a,c,d,f));p=n.value.apply(n.context,p)}return b?{value:p}:p};case s.AssignmentExpression:return c=
+this.recurse(a.left,!0,1),e=this.recurse(a.right),function(a,d,f,g){var n=c(a,d,f,g);a=e(a,d,f,g);n.context[n.name]=a;return b?{value:a}:a};case s.ArrayExpression:return g=[],q(a.elements,function(a){g.push(f.recurse(a))}),function(a,c,d,e){for(var f=[],p=0;p<g.length;++p)f.push(g[p](a,c,d,e));return b?{value:f}:f};case s.ObjectExpression:return g=[],q(a.properties,function(a){a.computed?g.push({key:f.recurse(a.key),computed:!0,value:f.recurse(a.value)}):g.push({key:a.key.type===s.Identifier?a.key.name:
+""+a.key.value,computed:!1,value:f.recurse(a.value)})}),function(a,c,d,e){for(var f={},p=0;p<g.length;++p)g[p].computed?f[g[p].key(a,c,d,e)]=g[p].value(a,c,d,e):f[g[p].key]=g[p].value(a,c,d,e);return b?{value:f}:f};case s.ThisExpression:return function(a){return b?{value:a}:a};case s.LocalsExpression:return function(a,c){return b?{value:c}:c};case s.NGValueParameter:return function(a,c,d){return b?{value:d}:d}}},"unary+":function(a,b){return function(d,c,e,f){d=a(d,c,e,f);d=u(d)?+d:0;return b?{value:d}:
+d}},"unary-":function(a,b){return function(d,c,e,f){d=a(d,c,e,f);d=u(d)?-d:-0;return b?{value:d}:d}},"unary!":function(a,b){return function(d,c,e,f){d=!a(d,c,e,f);return b?{value:d}:d}},"binary+":function(a,b,d){return function(c,e,f,g){var h=a(c,e,f,g);c=b(c,e,f,g);h=Dd(h,c);return d?{value:h}:h}},"binary-":function(a,b,d){return function(c,e,f,g){var h=a(c,e,f,g);c=b(c,e,f,g);h=(u(h)?h:0)-(u(c)?c:0);return d?{value:h}:h}},"binary*":function(a,b,d){return function(c,e,f,g){c=a(c,e,f,g)*b(c,e,f,g);
+return d?{value:c}:c}},"binary/":function(a,b,d){return function(c,e,f,g){c=a(c,e,f,g)/b(c,e,f,g);return d?{value:c}:c}},"binary%":function(a,b,d){return function(c,e,f,g){c=a(c,e,f,g)%b(c,e,f,g);return d?{value:c}:c}},"binary===":function(a,b,d){return function(c,e,f,g){c=a(c,e,f,g)===b(c,e,f,g);return d?{value:c}:c}},"binary!==":function(a,b,d){return function(c,e,f,g){c=a(c,e,f,g)!==b(c,e,f,g);return d?{value:c}:c}},"binary==":function(a,b,d){return function(c,e,f,g){c=a(c,e,f,g)==b(c,e,f,g);return d?
+{value:c}:c}},"binary!=":function(a,b,d){return function(c,e,f,g){c=a(c,e,f,g)!=b(c,e,f,g);return d?{value:c}:c}},"binary<":function(a,b,d){return function(c,e,f,g){c=a(c,e,f,g)<b(c,e,f,g);return d?{value:c}:c}},"binary>":function(a,b,d){return function(c,e,f,g){c=a(c,e,f,g)>b(c,e,f,g);return d?{value:c}:c}},"binary<=":function(a,b,d){return function(c,e,f,g){c=a(c,e,f,g)<=b(c,e,f,g);return d?{value:c}:c}},"binary>=":function(a,b,d){return function(c,e,f,g){c=a(c,e,f,g)>=b(c,e,f,g);return d?{value:c}:
+c}},"binary&&":function(a,b,d){return function(c,e,f,g){c=a(c,e,f,g)&&b(c,e,f,g);return d?{value:c}:c}},"binary||":function(a,b,d){return function(c,e,f,g){c=a(c,e,f,g)||b(c,e,f,g);return d?{value:c}:c}},"ternary?:":function(a,b,d,c){return function(e,f,g,h){e=a(e,f,g,h)?b(e,f,g,h):d(e,f,g,h);return c?{value:e}:e}},value:function(a,b){return function(){return b?{context:void 0,name:void 0,value:a}:a}},identifier:function(a,b,d){return function(c,e,f,g){c=e&&a in e?e:c;d&&1!==d&&c&&null==c[a]&&(c[a]=
+{});e=c?c[a]:void 0;return b?{context:c,name:a,value:e}:e}},computedMember:function(a,b,d,c){return function(e,f,g,h){var k=a(e,f,g,h),l,m;null!=k&&(l=b(e,f,g,h),l+="",c&&1!==c&&k&&!k[l]&&(k[l]={}),m=k[l]);return d?{context:k,name:l,value:m}:m}},nonComputedMember:function(a,b,d,c){return function(e,f,g,h){e=a(e,f,g,h);c&&1!==c&&e&&null==e[b]&&(e[b]={});f=null!=e?e[b]:void 0;return d?{context:e,name:b,value:f}:f}},inputs:function(a,b){return function(d,c,e,f){return f?f[b]:a(d,c,e)}}};uc.prototype=
+{constructor:uc,parse:function(a){a=this.ast.ast(a);var b=this.astCompiler.compile(a);b.literal=0===a.body.length||1===a.body.length&&(a.body[0].expression.type===s.Literal||a.body[0].expression.type===s.ArrayExpression||a.body[0].expression.type===s.ObjectExpression);b.constant=a.constant;return b}};var ta=L("$sce"),oa={HTML:"html",CSS:"css",URL:"url",RESOURCE_URL:"resourceUrl",JS:"js"},xc=/_([a-z])/g,Dg=L("$compile"),aa=x.document.createElement("a"),Md=Ca(x.location.href);Nd.$inject=["$document"];
+cd.$inject=["$provide"];var Ud=22,Td=".",zc="0";Od.$inject=["$locale"];Qd.$inject=["$locale"];var Og={yyyy:Y("FullYear",4,0,!1,!0),yy:Y("FullYear",2,0,!0,!0),y:Y("FullYear",1,0,!1,!0),MMMM:mb("Month"),MMM:mb("Month",!0),MM:Y("Month",2,1),M:Y("Month",1,1),LLLL:mb("Month",!1,!0),dd:Y("Date",2),d:Y("Date",1),HH:Y("Hours",2),H:Y("Hours",1),hh:Y("Hours",2,-12),h:Y("Hours",1,-12),mm:Y("Minutes",2),m:Y("Minutes",1),ss:Y("Seconds",2),s:Y("Seconds",1),sss:Y("Milliseconds",3),EEEE:mb("Day"),EEE:mb("Day",!0),
+a:function(a,b){return 12>a.getHours()?b.AMPMS[0]:b.AMPMS[1]},Z:function(a,b,d){a=-1*d;return a=(0<=a?"+":"")+(Kb(Math[0<a?"floor":"ceil"](a/60),2)+Kb(Math.abs(a%60),2))},ww:Wd(2),w:Wd(1),G:Ac,GG:Ac,GGG:Ac,GGGG:function(a,b){return 0>=a.getFullYear()?b.ERANAMES[0]:b.ERANAMES[1]}},Ng=/((?:[^yMLdHhmsaZEwG']+)|(?:'(?:[^']|'')*')|(?:E+|y+|M+|L+|d+|H+|h+|m+|s+|a|Z|G+|w+))([\s\S]*)/,Mg=/^-?\d+$/;Pd.$inject=["$locale"];var Hg=la(Q),Ig=la(ub);Rd.$inject=["$parse"];var Fe=la({restrict:"E",compile:function(a,
+b){if(!b.href&&!b.xlinkHref)return function(a,b){if("a"===b[0].nodeName.toLowerCase()){var e="[object SVGAnimatedString]"===ma.call(b.prop("href"))?"xlink:href":"href";b.on("click",function(a){b.attr(e)||a.preventDefault()})}}}}),vb={};q(Fb,function(a,b){function d(a,d,e){a.$watch(e[c],function(a){e.$set(b,!!a)})}if("multiple"!==a){var c=Ba("ng-"+b),e=d;"checked"===a&&(e=function(a,b,e){e.ngModel!==e[c]&&d(a,b,e)});vb[c]=function(){return{restrict:"A",priority:100,link:e}}}});q(rd,function(a,b){vb[b]=
+function(){return{priority:100,link:function(a,c,e){if("ngPattern"===b&&"/"===e.ngPattern.charAt(0)&&(c=e.ngPattern.match(Sg))){e.$set("ngPattern",new RegExp(c[1],c[2]));return}a.$watch(e[b],function(a){e.$set(b,a)})}}}});q(["src","srcset","href"],function(a){var b=Ba("ng-"+a);vb[b]=function(){return{priority:99,link:function(d,c,e){var f=a,g=a;"href"===a&&"[object SVGAnimatedString]"===ma.call(c.prop("href"))&&(g="xlinkHref",e.$attr[g]="xlink:href",f=null);e.$observe(b,function(b){b?(e.$set(g,b),
+za&&f&&c.prop(f,e[g])):"href"===a&&e.$set(g,null)})}}}});var Mb={$addControl:z,$$renameControl:function(a,b){a.$name=b},$removeControl:z,$setValidity:z,$setDirty:z,$setPristine:z,$setSubmitted:z};Lb.$inject=["$element","$attrs","$scope","$animate","$interpolate"];Lb.prototype={$rollbackViewValue:function(){q(this.$$controls,function(a){a.$rollbackViewValue()})},$commitViewValue:function(){q(this.$$controls,function(a){a.$commitViewValue()})},$addControl:function(a){Ka(a.$name,"input");this.$$controls.push(a);
+a.$name&&(this[a.$name]=a);a.$$parentForm=this},$$renameControl:function(a,b){var d=a.$name;this[d]===a&&delete this[d];this[b]=a;a.$name=b},$removeControl:function(a){a.$name&&this[a.$name]===a&&delete this[a.$name];q(this.$pending,function(b,d){this.$setValidity(d,null,a)},this);q(this.$error,function(b,d){this.$setValidity(d,null,a)},this);q(this.$$success,function(b,d){this.$setValidity(d,null,a)},this);$a(this.$$controls,a);a.$$parentForm=Mb},$setDirty:function(){this.$$animate.removeClass(this.$$element,
+Va);this.$$animate.addClass(this.$$element,Rb);this.$dirty=!0;this.$pristine=!1;this.$$parentForm.$setDirty()},$setPristine:function(){this.$$animate.setClass(this.$$element,Va,Rb+" ng-submitted");this.$dirty=!1;this.$pristine=!0;this.$submitted=!1;q(this.$$controls,function(a){a.$setPristine()})},$setUntouched:function(){q(this.$$controls,function(a){a.$setUntouched()})},$setSubmitted:function(){this.$$animate.addClass(this.$$element,"ng-submitted");this.$submitted=!0;this.$$parentForm.$setSubmitted()}};
+Zd({clazz:Lb,set:function(a,b,d){var c=a[b];c?-1===c.indexOf(d)&&c.push(d):a[b]=[d]},unset:function(a,b,d){var c=a[b];c&&($a(c,d),0===c.length&&delete a[b])}});var ge=function(a){return["$timeout","$parse",function(b,d){function c(a){return""===a?d('this[""]').assign:d(a).assign||z}return{name:"form",restrict:a?"EAC":"E",require:["form","^^?form"],controller:Lb,compile:function(d,f){d.addClass(Va).addClass(nb);var g=f.name?"name":a&&f.ngForm?"ngForm":!1;return{pre:function(a,d,e,f){var n=f[0];if(!("action"in
+e)){var p=function(b){a.$apply(function(){n.$commitViewValue();n.$setSubmitted()});b.preventDefault()};d[0].addEventListener("submit",p);d.on("$destroy",function(){b(function(){d[0].removeEventListener("submit",p)},0,!1)})}(f[1]||n.$$parentForm).$addControl(n);var r=g?c(n.$name):z;g&&(r(a,n),e.$observe(g,function(b){n.$name!==b&&(r(a,void 0),n.$$parentForm.$$renameControl(n,b),r=c(n.$name),r(a,n))}));d.on("$destroy",function(){n.$$parentForm.$removeControl(n);r(a,void 0);S(n,Mb)})}}}}}]},Ge=ge(),
+Se=ge(!0),Pg=/^\d{4,}-[01]\d-[0-3]\dT[0-2]\d:[0-5]\d:[0-5]\d\.\d+(?:[+-][0-2]\d:[0-5]\d|Z)$/,ah=/^[a-z][a-z\d.+-]*:\/*(?:[^:@]+(?::[^@]+)?@)?(?:[^\s:/?#]+|\[[a-f\d:]+])(?::\d+)?(?:\/[^?#]*)?(?:\?[^#]*)?(?:#.*)?$/i,bh=/^(?=.{1,254}$)(?=.{1,64}@)[-!#$%&'*+/0-9=?A-Z^_`a-z{|}~]+(\.[-!#$%&'*+/0-9=?A-Z^_`a-z{|}~]+)*@[A-Za-z0-9]([A-Za-z0-9-]{0,61}[A-Za-z0-9])?(\.[A-Za-z0-9]([A-Za-z0-9-]{0,61}[A-Za-z0-9])?)*$/,Qg=/^\s*(-|\+)?(\d+|(\d*(\.\d*)))([eE][+-]?\d+)?\s*$/,he=/^(\d{4,})-(\d{2})-(\d{2})$/,ie=/^(\d{4,})-(\d\d)-(\d\d)T(\d\d):(\d\d)(?::(\d\d)(\.\d{1,3})?)?$/,
+Hc=/^(\d{4,})-W(\d\d)$/,je=/^(\d{4,})-(\d\d)$/,ke=/^(\d\d):(\d\d)(?::(\d\d)(\.\d{1,3})?)?$/,ae=V();q(["date","datetime-local","month","time","week"],function(a){ae[a]=!0});var le={text:function(a,b,d,c,e,f){Ra(a,b,d,c,e,f);Cc(c)},date:ob("date",he,Nb(he,["yyyy","MM","dd"]),"yyyy-MM-dd"),"datetime-local":ob("datetimelocal",ie,Nb(ie,"yyyy MM dd HH mm ss sss".split(" ")),"yyyy-MM-ddTHH:mm:ss.sss"),time:ob("time",ke,Nb(ke,["HH","mm","ss","sss"]),"HH:mm:ss.sss"),week:ob("week",Hc,function(a,b){if(ga(a))return a;
+if(F(a)){Hc.lastIndex=0;var d=Hc.exec(a);if(d){var c=+d[1],e=+d[2],f=d=0,g=0,h=0,k=Vd(c),e=7*(e-1);b&&(d=b.getHours(),f=b.getMinutes(),g=b.getSeconds(),h=b.getMilliseconds());return new Date(c,0,k.getDate()+e,d,f,g,h)}}return NaN},"yyyy-Www"),month:ob("month",je,Nb(je,["yyyy","MM"]),"yyyy-MM"),number:function(a,b,d,c,e,f){Dc(a,b,d,c);be(c);Ra(a,b,d,c,e,f);var g,h;if(u(d.min)||d.ngMin)c.$validators.min=function(a){return c.$isEmpty(a)||w(g)||a>=g},d.$observe("min",function(a){g=Sa(a);c.$validate()});
+if(u(d.max)||d.ngMax)c.$validators.max=function(a){return c.$isEmpty(a)||w(h)||a<=h},d.$observe("max",function(a){h=Sa(a);c.$validate()});if(u(d.step)||d.ngStep){var k;c.$validators.step=function(a,b){return c.$isEmpty(b)||w(k)||ce(b,g||0,k)};d.$observe("step",function(a){k=Sa(a);c.$validate()})}},url:function(a,b,d,c,e,f){Ra(a,b,d,c,e,f);Cc(c);c.$$parserName="url";c.$validators.url=function(a,b){var d=a||b;return c.$isEmpty(d)||ah.test(d)}},email:function(a,b,d,c,e,f){Ra(a,b,d,c,e,f);Cc(c);c.$$parserName=
+"email";c.$validators.email=function(a,b){var d=a||b;return c.$isEmpty(d)||bh.test(d)}},radio:function(a,b,d,c){var e=!d.ngTrim||"false"!==T(d.ngTrim);w(d.name)&&b.attr("name",++qb);b.on("click",function(a){var g;b[0].checked&&(g=d.value,e&&(g=T(g)),c.$setViewValue(g,a&&a.type))});c.$render=function(){var a=d.value;e&&(a=T(a));b[0].checked=a===c.$viewValue};d.$observe("value",c.$render)},range:function(a,b,d,c,e,f){function g(a,c){b.attr(a,d[a]);d.$observe(a,c)}function h(a){n=Sa(a);da(c.$modelValue)||
+(m?(a=b.val(),n>a&&(a=n,b.val(a)),c.$setViewValue(a)):c.$validate())}function k(a){p=Sa(a);da(c.$modelValue)||(m?(a=b.val(),p<a&&(b.val(p),a=p<n?n:p),c.$setViewValue(a)):c.$validate())}function l(a){r=Sa(a);da(c.$modelValue)||(m&&c.$viewValue!==b.val()?c.$setViewValue(b.val()):c.$validate())}Dc(a,b,d,c);be(c);Ra(a,b,d,c,e,f);var m=c.$$hasNativeValidators&&"range"===b[0].type,n=m?0:void 0,p=m?100:void 0,r=m?1:void 0,q=b[0].validity;a=u(d.min);e=u(d.max);f=u(d.step);var s=c.$render;c.$render=m&&u(q.rangeUnderflow)&&
+u(q.rangeOverflow)?function(){s();c.$setViewValue(b.val())}:s;a&&(c.$validators.min=m?function(){return!0}:function(a,b){return c.$isEmpty(b)||w(n)||b>=n},g("min",h));e&&(c.$validators.max=m?function(){return!0}:function(a,b){return c.$isEmpty(b)||w(p)||b<=p},g("max",k));f&&(c.$validators.step=m?function(){return!q.stepMismatch}:function(a,b){return c.$isEmpty(b)||w(r)||ce(b,n||0,r)},g("step",l))},checkbox:function(a,b,d,c,e,f,g,h){var k=de(h,a,"ngTrueValue",d.ngTrueValue,!0),l=de(h,a,"ngFalseValue",
+d.ngFalseValue,!1);b.on("click",function(a){c.$setViewValue(b[0].checked,a&&a.type)});c.$render=function(){b[0].checked=c.$viewValue};c.$isEmpty=function(a){return!1===a};c.$formatters.push(function(a){return sa(a,k)});c.$parsers.push(function(a){return a?k:l})},hidden:z,button:z,submit:z,reset:z,file:z},Xc=["$browser","$sniffer","$filter","$parse",function(a,b,d,c){return{restrict:"E",require:["?ngModel"],link:{pre:function(e,f,g,h){h[0]&&(le[Q(g.type)]||le.text)(e,f,g,h[0],b,a,d,c)}}}}],ch=/^(true|false|\d+)$/,
+kf=function(){function a(a,d,c){var e=u(c)?c:9===za?"":null;a.prop("value",e);d.$set("value",c)}return{restrict:"A",priority:100,compile:function(b,d){return ch.test(d.ngValue)?function(b,d,f){b=b.$eval(f.ngValue);a(d,f,b)}:function(b,d,f){b.$watch(f.ngValue,function(b){a(d,f,b)})}}}},Ke=["$compile",function(a){return{restrict:"AC",compile:function(b){a.$$addBindingClass(b);return function(b,c,e){a.$$addBindingInfo(c,e.ngBind);c=c[0];b.$watch(e.ngBind,function(a){c.textContent=$b(a)})}}}}],Me=["$interpolate",
+"$compile",function(a,b){return{compile:function(d){b.$$addBindingClass(d);return function(c,d,f){c=a(d.attr(f.$attr.ngBindTemplate));b.$$addBindingInfo(d,c.expressions);d=d[0];f.$observe("ngBindTemplate",function(a){d.textContent=w(a)?"":a})}}}}],Le=["$sce","$parse","$compile",function(a,b,d){return{restrict:"A",compile:function(c,e){var f=b(e.ngBindHtml),g=b(e.ngBindHtml,function(b){return a.valueOf(b)});d.$$addBindingClass(c);return function(b,c,e){d.$$addBindingInfo(c,e.ngBindHtml);b.$watch(g,
+function(){var d=f(b);c.html(a.getTrustedHtml(d)||"")})}}}}],jf=la({restrict:"A",require:"ngModel",link:function(a,b,d,c){c.$viewChangeListeners.push(function(){a.$eval(d.ngChange)})}}),Ne=Fc("",!0),Pe=Fc("Odd",0),Oe=Fc("Even",1),Qe=Qa({compile:function(a,b){b.$set("ngCloak",void 0);a.removeClass("ng-cloak")}}),Re=[function(){return{restrict:"A",scope:!0,controller:"@",priority:500}}],bd={},dh={blur:!0,focus:!0};q("click dblclick mousedown mouseup mouseover mouseout mousemove mouseenter mouseleave keydown keyup keypress submit focus blur copy cut paste".split(" "),
+function(a){var b=Ba("ng-"+a);bd[b]=["$parse","$rootScope",function(d,c){return{restrict:"A",compile:function(e,f){var g=d(f[b]);return function(b,d){d.on(a,function(d){var e=function(){g(b,{$event:d})};dh[a]&&c.$$phase?b.$evalAsync(e):b.$apply(e)})}}}}]});var Ue=["$animate","$compile",function(a,b){return{multiElement:!0,transclude:"element",priority:600,terminal:!0,restrict:"A",$$tlb:!0,link:function(d,c,e,f,g){var h,k,l;d.$watch(e.ngIf,function(d){d?k||g(function(d,f){k=f;d[d.length++]=b.$$createComment("end ngIf",
+e.ngIf);h={clone:d};a.enter(d,c.parent(),c)}):(l&&(l.remove(),l=null),k&&(k.$destroy(),k=null),h&&(l=tb(h.clone),a.leave(l).done(function(a){!1!==a&&(l=null)}),h=null))})}}}],Ve=["$templateRequest","$anchorScroll","$animate",function(a,b,d){return{restrict:"ECA",priority:400,terminal:!0,transclude:"element",controller:ea.noop,compile:function(c,e){var f=e.ngInclude||e.src,g=e.onload||"",h=e.autoscroll;return function(c,e,m,n,p){var r=0,q,s,t,w=function(){s&&(s.remove(),s=null);q&&(q.$destroy(),q=
+null);t&&(d.leave(t).done(function(a){!1!==a&&(s=null)}),s=t,t=null)};c.$watch(f,function(f){var m=function(a){!1===a||!u(h)||h&&!c.$eval(h)||b()},s=++r;f?(a(f,!0).then(function(a){if(!c.$$destroyed&&s===r){var b=c.$new();n.template=a;a=p(b,function(a){w();d.enter(a,null,e).done(m)});q=b;t=a;q.$emit("$includeContentLoaded",f);c.$eval(g)}},function(){c.$$destroyed||s!==r||(w(),c.$emit("$includeContentError",f))}),c.$emit("$includeContentRequested",f)):(w(),n.template=null)})}}}}],mf=["$compile",function(a){return{restrict:"ECA",
+priority:-400,require:"ngInclude",link:function(b,d,c,e){ma.call(d[0]).match(/SVG/)?(d.empty(),a(dd(e.template,x.document).childNodes)(b,function(a){d.append(a)},{futureParentElement:d})):(d.html(e.template),a(d.contents())(b))}}}],We=Qa({priority:450,compile:function(){return{pre:function(a,b,d){a.$eval(d.ngInit)}}}}),hf=function(){return{restrict:"A",priority:100,require:"ngModel",link:function(a,b,d,c){var e=d.ngList||", ",f="false"!==d.ngTrim,g=f?T(e):e;c.$parsers.push(function(a){if(!w(a)){var b=
+[];a&&q(a.split(g),function(a){a&&b.push(f?T(a):a)});return b}});c.$formatters.push(function(a){if(H(a))return a.join(e)});c.$isEmpty=function(a){return!a||!a.length}}}},nb="ng-valid",Yd="ng-invalid",Va="ng-pristine",Rb="ng-dirty",pb=L("ngModel");Ob.$inject="$scope $exceptionHandler $attrs $element $parse $animate $timeout $q $interpolate".split(" ");Ob.prototype={$$initGetterSetters:function(){if(this.$options.getOption("getterSetter")){var a=this.$$parse(this.$$attr.ngModel+"()"),b=this.$$parse(this.$$attr.ngModel+
+"($$$p)");this.$$ngModelGet=function(b){var c=this.$$parsedNgModel(b);D(c)&&(c=a(b));return c};this.$$ngModelSet=function(a,c){D(this.$$parsedNgModel(a))?b(a,{$$$p:c}):this.$$parsedNgModelAssign(a,c)}}else if(!this.$$parsedNgModel.assign)throw pb("nonassign",this.$$attr.ngModel,xa(this.$$element));},$render:z,$isEmpty:function(a){return w(a)||""===a||null===a||a!==a},$$updateEmptyClasses:function(a){this.$isEmpty(a)?(this.$$animate.removeClass(this.$$element,"ng-not-empty"),this.$$animate.addClass(this.$$element,
+"ng-empty")):(this.$$animate.removeClass(this.$$element,"ng-empty"),this.$$animate.addClass(this.$$element,"ng-not-empty"))},$setPristine:function(){this.$dirty=!1;this.$pristine=!0;this.$$animate.removeClass(this.$$element,Rb);this.$$animate.addClass(this.$$element,Va)},$setDirty:function(){this.$dirty=!0;this.$pristine=!1;this.$$animate.removeClass(this.$$element,Va);this.$$animate.addClass(this.$$element,Rb);this.$$parentForm.$setDirty()},$setUntouched:function(){this.$touched=!1;this.$untouched=
+!0;this.$$animate.setClass(this.$$element,"ng-untouched","ng-touched")},$setTouched:function(){this.$touched=!0;this.$untouched=!1;this.$$animate.setClass(this.$$element,"ng-touched","ng-untouched")},$rollbackViewValue:function(){this.$$timeout.cancel(this.$$pendingDebounce);this.$viewValue=this.$$lastCommittedViewValue;this.$render()},$validate:function(){if(!da(this.$modelValue)){var a=this.$$lastCommittedViewValue,b=this.$$rawModelValue,d=this.$valid,c=this.$modelValue,e=this.$options.getOption("allowInvalid"),
+f=this;this.$$runValidators(b,a,function(a){e||d===a||(f.$modelValue=a?b:void 0,f.$modelValue!==c&&f.$$writeModelToScope())})}},$$runValidators:function(a,b,d){function c(){var c=!0;q(k.$validators,function(d,e){var g=Boolean(d(a,b));c=c&&g;f(e,g)});return c?!0:(q(k.$asyncValidators,function(a,b){f(b,null)}),!1)}function e(){var c=[],d=!0;q(k.$asyncValidators,function(e,g){var k=e(a,b);if(!k||!D(k.then))throw pb("nopromise",k);f(g,void 0);c.push(k.then(function(){f(g,!0)},function(){d=!1;f(g,!1)}))});
+c.length?k.$$q.all(c).then(function(){g(d)},z):g(!0)}function f(a,b){h===k.$$currentValidationRunId&&k.$setValidity(a,b)}function g(a){h===k.$$currentValidationRunId&&d(a)}this.$$currentValidationRunId++;var h=this.$$currentValidationRunId,k=this;(function(){var a=k.$$parserName||"parse";if(w(k.$$parserValid))f(a,null);else return k.$$parserValid||(q(k.$validators,function(a,b){f(b,null)}),q(k.$asyncValidators,function(a,b){f(b,null)})),f(a,k.$$parserValid),k.$$parserValid;return!0})()?c()?e():g(!1):
+g(!1)},$commitViewValue:function(){var a=this.$viewValue;this.$$timeout.cancel(this.$$pendingDebounce);if(this.$$lastCommittedViewValue!==a||""===a&&this.$$hasNativeValidators)this.$$updateEmptyClasses(a),this.$$lastCommittedViewValue=a,this.$pristine&&this.$setDirty(),this.$$parseAndValidate()},$$parseAndValidate:function(){var a=this.$$lastCommittedViewValue,b=this;if(this.$$parserValid=w(a)?void 0:!0)for(var d=0;d<this.$parsers.length;d++)if(a=this.$parsers[d](a),w(a)){this.$$parserValid=!1;break}da(this.$modelValue)&&
+(this.$modelValue=this.$$ngModelGet(this.$$scope));var c=this.$modelValue,e=this.$options.getOption("allowInvalid");this.$$rawModelValue=a;e&&(this.$modelValue=a,b.$modelValue!==c&&b.$$writeModelToScope());this.$$runValidators(a,this.$$lastCommittedViewValue,function(d){e||(b.$modelValue=d?a:void 0,b.$modelValue!==c&&b.$$writeModelToScope())})},$$writeModelToScope:function(){this.$$ngModelSet(this.$$scope,this.$modelValue);q(this.$viewChangeListeners,function(a){try{a()}catch(b){this.$$exceptionHandler(b)}},
+this)},$setViewValue:function(a,b){this.$viewValue=a;this.$options.getOption("updateOnDefault")&&this.$$debounceViewValueCommit(b)},$$debounceViewValueCommit:function(a){var b=this.$options.getOption("debounce");ba(b[a])?b=b[a]:ba(b["default"])&&(b=b["default"]);this.$$timeout.cancel(this.$$pendingDebounce);var d=this;0<b?this.$$pendingDebounce=this.$$timeout(function(){d.$commitViewValue()},b):this.$$scope.$root.$$phase?this.$commitViewValue():this.$$scope.$apply(function(){d.$commitViewValue()})},
+$overrideModelOptions:function(a){this.$options=this.$options.createChild(a)}};Zd({clazz:Ob,set:function(a,b){a[b]=!0},unset:function(a,b){delete a[b]}});var gf=["$rootScope",function(a){return{restrict:"A",require:["ngModel","^?form","^?ngModelOptions"],controller:Ob,priority:1,compile:function(b){b.addClass(Va).addClass("ng-untouched").addClass(nb);return{pre:function(a,b,e,f){var g=f[0];b=f[1]||g.$$parentForm;if(f=f[2])g.$options=f.$options;g.$$initGetterSetters();b.$addControl(g);e.$observe("name",
+function(a){g.$name!==a&&g.$$parentForm.$$renameControl(g,a)});a.$on("$destroy",function(){g.$$parentForm.$removeControl(g)})},post:function(b,c,e,f){function g(){h.$setTouched()}var h=f[0];if(h.$options.getOption("updateOn"))c.on(h.$options.getOption("updateOn"),function(a){h.$$debounceViewValueCommit(a&&a.type)});c.on("blur",function(){h.$touched||(a.$$phase?b.$evalAsync(g):b.$apply(g))})}}}}}],Pb,eh=/(\s+|^)default(\s+|$)/;Gc.prototype={getOption:function(a){return this.$$options[a]},createChild:function(a){var b=
+!1;a=S({},a);q(a,function(d,c){"$inherit"===d?"*"===c?b=!0:(a[c]=this.$$options[c],"updateOn"===c&&(a.updateOnDefault=this.$$options.updateOnDefault)):"updateOn"===c&&(a.updateOnDefault=!1,a[c]=T(d.replace(eh,function(){a.updateOnDefault=!0;return" "})))},this);b&&(delete a["*"],ee(a,this.$$options));ee(a,Pb.$$options);return new Gc(a)}};Pb=new Gc({updateOn:"",updateOnDefault:!0,debounce:0,getterSetter:!1,allowInvalid:!1,timezone:null});var lf=function(){function a(a,d){this.$$attrs=a;this.$$scope=
+d}a.$inject=["$attrs","$scope"];a.prototype={$onInit:function(){var a=this.parentCtrl?this.parentCtrl.$options:Pb,d=this.$$scope.$eval(this.$$attrs.ngModelOptions);this.$options=a.createChild(d)}};return{restrict:"A",priority:10,require:{parentCtrl:"?^^ngModelOptions"},bindToController:!0,controller:a}},Xe=Qa({terminal:!0,priority:1E3}),fh=L("ngOptions"),gh=/^\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]+?))?$/,
+ef=["$compile","$document","$parse",function(a,b,d){function c(a,b,c){function e(a,b,c,d,f){this.selectValue=a;this.viewValue=b;this.label=c;this.group=d;this.disabled=f}function f(a){var b;if(!q&&qa(a))b=a;else{b=[];for(var c in a)a.hasOwnProperty(c)&&"$"!==c.charAt(0)&&b.push(c)}return b}var n=a.match(gh);if(!n)throw fh("iexp",a,xa(b));var p=n[5]||n[7],q=n[6];a=/ as /.test(n[0])&&n[1];var s=n[9];b=d(n[2]?n[1]:p);var v=a&&d(a)||b,t=s&&d(s),u=s?function(a,b){return t(c,b)}:function(a){return Pa(a)},
+w=function(a,b){return u(a,G(a,b))},A=d(n[2]||n[1]),x=d(n[3]||""),I=d(n[4]||""),K=d(n[8]),E={},G=q?function(a,b){E[q]=b;E[p]=a;return E}:function(a){E[p]=a;return E};return{trackBy:s,getTrackByValue:w,getWatchables:d(K,function(a){var b=[];a=a||[];for(var d=f(a),e=d.length,g=0;g<e;g++){var h=a===d?g:d[g],l=a[h],h=G(l,h),l=u(l,h);b.push(l);if(n[2]||n[1])l=A(c,h),b.push(l);n[4]&&(h=I(c,h),b.push(h))}return b}),getOptions:function(){for(var a=[],b={},d=K(c)||[],g=f(d),h=g.length,n=0;n<h;n++){var p=d===
+g?n:g[n],q=G(d[p],p),r=v(c,q),p=u(r,q),t=A(c,q),E=x(c,q),q=I(c,q),r=new e(p,r,t,E,q);a.push(r);b[p]=r}return{items:a,selectValueMap:b,getOptionFromViewValue:function(a){return b[w(a)]},getViewValueFromOption:function(a){return s?ra(a.viewValue):a.viewValue}}}}}var e=x.document.createElement("option"),f=x.document.createElement("optgroup");return{restrict:"A",terminal:!0,require:["select","ngModel"],link:{pre:function(a,b,c,d){d[0].registerOption=z},post:function(d,h,k,l){function m(a){var b=(a=A.getOptionFromViewValue(a))&&
+a.element;b&&!b.selected&&(b.selected=!0);return a}function n(a,b){a.element=b;b.disabled=a.disabled;a.label!==b.label&&(b.label=a.label,b.textContent=a.label);b.value=a.selectValue}function p(){var a=A&&r.readValue();if(A)for(var b=A.items.length-1;0<=b;b--){var c=A.items[b];u(c.group)?Eb(c.element.parentNode):Eb(c.element)}A=z.getOptions();var d={};x&&h.prepend(r.emptyOption);A.items.forEach(function(a){var b;if(u(a.group)){b=d[a.group];b||(b=f.cloneNode(!1),I.appendChild(b),b.label=null===a.group?
+"null":a.group,d[a.group]=b);var c=e.cloneNode(!1)}else b=I,c=e.cloneNode(!1);b.appendChild(c);n(a,c)});h[0].appendChild(I);s.$render();s.$isEmpty(a)||(b=r.readValue(),(z.trackBy||v?sa(a,b):a===b)||(s.$setViewValue(b),s.$render()))}var r=l[0],s=l[1],v=k.multiple;l=0;for(var t=h.children(),w=t.length;l<w;l++)if(""===t[l].value){r.hasEmptyOption=!0;r.emptyOption=t.eq(l);break}var x=!!r.emptyOption;B(e.cloneNode(!1)).val("?");var A,z=c(k.ngOptions,h,d),I=b[0].createDocumentFragment();r.generateUnknownOptionValue=
+function(a){return"?"};v?(r.writeValue=function(a){var b=a&&a.map(m)||[];A.items.forEach(function(a){a.element.selected&&-1===Array.prototype.indexOf.call(b,a)&&(a.element.selected=!1)})},r.readValue=function(){var a=h.val()||[],b=[];q(a,function(a){(a=A.selectValueMap[a])&&!a.disabled&&b.push(A.getViewValueFromOption(a))});return b},z.trackBy&&d.$watchCollection(function(){if(H(s.$viewValue))return s.$viewValue.map(function(a){return z.getTrackByValue(a)})},function(){s.$render()})):(r.writeValue=
+function(a){var b=A.selectValueMap[h.val()],c=A.getOptionFromViewValue(a);b&&b.element.removeAttribute("selected");c?(h[0].value!==c.selectValue&&(r.removeUnknownOption(),r.unselectEmptyOption(),h[0].value=c.selectValue,c.element.selected=!0),c.element.setAttribute("selected","selected")):x?r.selectEmptyOption():r.unknownOption.parent().length?r.updateUnknownOption(a):r.renderUnknownOption(a)},r.readValue=function(){var a=A.selectValueMap[h.val()];return a&&!a.disabled?(r.unselectEmptyOption(),r.removeUnknownOption(),
+A.getViewValueFromOption(a)):null},z.trackBy&&d.$watch(function(){return z.getTrackByValue(s.$viewValue)},function(){s.$render()}));x&&(r.emptyOption.remove(),a(r.emptyOption)(d),8===r.emptyOption[0].nodeType?(r.hasEmptyOption=!1,r.registerOption=function(a,b){""===b.val()&&(r.hasEmptyOption=!0,r.emptyOption=b,r.emptyOption.removeClass("ng-scope"),s.$render(),b.on("$destroy",function(){r.hasEmptyOption=!1;r.emptyOption=void 0}))}):r.emptyOption.removeClass("ng-scope"));h.empty();p();d.$watchCollection(z.getWatchables,
+p)}}}}],Ye=["$locale","$interpolate","$log",function(a,b,d){var c=/{}/g,e=/^when(Minus)?(.+)$/;return{link:function(f,g,h){function k(a){g.text(a||"")}var l=h.count,m=h.$attr.when&&g.attr(h.$attr.when),n=h.offset||0,p=f.$eval(m)||{},r={},s=b.startSymbol(),v=b.endSymbol(),t=s+l+"-"+n+v,u=ea.noop,x;q(h,function(a,b){var c=e.exec(b);c&&(c=(c[1]?"-":"")+Q(c[2]),p[c]=g.attr(h.$attr[b]))});q(p,function(a,d){r[d]=b(a.replace(c,t))});f.$watch(l,function(b){var c=parseFloat(b),e=da(c);e||c in p||(c=a.pluralCat(c-
+n));c===x||e&&da(x)||(u(),e=r[c],w(e)?(null!=b&&d.debug("ngPluralize: no rule defined for '"+c+"' in "+m),u=z,k()):u=f.$watch(e,k),x=c)})}}}],Ze=["$parse","$animate","$compile",function(a,b,d){var c=L("ngRepeat"),e=function(a,b,c,d,e,m,n){a[c]=d;e&&(a[e]=m);a.$index=b;a.$first=0===b;a.$last=b===n-1;a.$middle=!(a.$first||a.$last);a.$odd=!(a.$even=0===(b&1))};return{restrict:"A",multiElement:!0,transclude:"element",priority:1E3,terminal:!0,$$tlb:!0,compile:function(f,g){var h=g.ngRepeat,k=d.$$createComment("end ngRepeat",
+h),l=h.match(/^\s*([\s\S]+?)\s+in\s+([\s\S]+?)(?:\s+as\s+([\s\S]+?))?(?:\s+track\s+by\s+([\s\S]+?))?\s*$/);if(!l)throw c("iexp",h);var m=l[1],n=l[2],p=l[3],r=l[4],l=m.match(/^(?:(\s*[$\w]+)|\(\s*([$\w]+)\s*,\s*([$\w]+)\s*\))$/);if(!l)throw c("iidexp",m);var s=l[3]||l[1],v=l[2];if(p&&(!/^[$a-zA-Z_][$a-zA-Z0-9_]*$/.test(p)||/^(null|undefined|this|\$index|\$first|\$middle|\$last|\$even|\$odd|\$parent|\$root|\$id)$/.test(p)))throw c("badident",p);var t,u,w,x,z={$id:Pa};r?t=a(r):(w=function(a,b){return Pa(b)},
+x=function(a){return a});return function(a,d,f,g,l){t&&(u=function(b,c,d){v&&(z[v]=b);z[s]=c;z.$index=d;return t(a,z)});var m=V();a.$watchCollection(n,function(f){var g,n,r=d[0],t,z=V(),B,D,F,C,G,E,H;p&&(a[p]=f);if(qa(f))G=f,n=u||w;else for(H in n=u||x,G=[],f)ua.call(f,H)&&"$"!==H.charAt(0)&&G.push(H);B=G.length;H=Array(B);for(g=0;g<B;g++)if(D=f===G?g:G[g],F=f[D],C=n(D,F,g),m[C])E=m[C],delete m[C],z[C]=E,H[g]=E;else{if(z[C])throw q(H,function(a){a&&a.scope&&(m[a.id]=a)}),c("dupes",h,C,F);H[g]={id:C,
+scope:void 0,clone:void 0};z[C]=!0}for(t in m){E=m[t];C=tb(E.clone);b.leave(C);if(C[0].parentNode)for(g=0,n=C.length;g<n;g++)C[g].$$NG_REMOVED=!0;E.scope.$destroy()}for(g=0;g<B;g++)if(D=f===G?g:G[g],F=f[D],E=H[g],E.scope){t=r;do t=t.nextSibling;while(t&&t.$$NG_REMOVED);E.clone[0]!==t&&b.move(tb(E.clone),null,r);r=E.clone[E.clone.length-1];e(E.scope,g,s,F,v,D,B)}else l(function(a,c){E.scope=c;var d=k.cloneNode(!1);a[a.length++]=d;b.enter(a,null,r);r=d;E.clone=a;z[E.id]=E;e(E.scope,g,s,F,v,D,B)});m=
+z})}}}}],$e=["$animate",function(a){return{restrict:"A",multiElement:!0,link:function(b,d,c){b.$watch(c.ngShow,function(b){a[b?"removeClass":"addClass"](d,"ng-hide",{tempClasses:"ng-hide-animate"})})}}}],Te=["$animate",function(a){return{restrict:"A",multiElement:!0,link:function(b,d,c){b.$watch(c.ngHide,function(b){a[b?"addClass":"removeClass"](d,"ng-hide",{tempClasses:"ng-hide-animate"})})}}}],af=Qa(function(a,b,d){a.$watch(d.ngStyle,function(a,d){d&&a!==d&&q(d,function(a,c){b.css(c,"")});a&&b.css(a)},
+!0)}),bf=["$animate","$compile",function(a,b){return{require:"ngSwitch",controller:["$scope",function(){this.cases={}}],link:function(d,c,e,f){var g=[],h=[],k=[],l=[],m=function(a,b){return function(c){!1!==c&&a.splice(b,1)}};d.$watch(e.ngSwitch||e.on,function(c){for(var d,e;k.length;)a.cancel(k.pop());d=0;for(e=l.length;d<e;++d){var s=tb(h[d].clone);l[d].$destroy();(k[d]=a.leave(s)).done(m(k,d))}h.length=0;l.length=0;(g=f.cases["!"+c]||f.cases["?"])&&q(g,function(c){c.transclude(function(d,e){l.push(e);
+var f=c.element;d[d.length++]=b.$$createComment("end ngSwitchWhen");h.push({clone:d});a.enter(d,f.parent(),f)})})})}}}],cf=Qa({transclude:"element",priority:1200,require:"^ngSwitch",multiElement:!0,link:function(a,b,d,c,e){a=d.ngSwitchWhen.split(d.ngSwitchWhenSeparator).sort().filter(function(a,b,c){return c[b-1]!==a});q(a,function(a){c.cases["!"+a]=c.cases["!"+a]||[];c.cases["!"+a].push({transclude:e,element:b})})}}),df=Qa({transclude:"element",priority:1200,require:"^ngSwitch",multiElement:!0,link:function(a,
+b,d,c,e){c.cases["?"]=c.cases["?"]||[];c.cases["?"].push({transclude:e,element:b})}}),hh=L("ngTransclude"),ff=["$compile",function(a){return{restrict:"EAC",terminal:!0,compile:function(b){var d=a(b.contents());b.empty();return function(a,b,f,g,h){function k(){d(a,function(a){b.append(a)})}if(!h)throw hh("orphan",xa(b));f.ngTransclude===f.$attr.ngTransclude&&(f.ngTransclude="");f=f.ngTransclude||f.ngTranscludeSlot;h(function(a,c){var d;if(d=a.length)a:{d=0;for(var f=a.length;d<f;d++){var g=a[d];if(g.nodeType!==
+Ia||g.nodeValue.trim()){d=!0;break a}}d=void 0}d?b.append(a):(k(),c.$destroy())},null,f);f&&!h.isSlotFilled(f)&&k()}}}}],He=["$templateCache",function(a){return{restrict:"E",terminal:!0,compile:function(b,d){"text/ng-template"===d.type&&a.put(d.id,b[0].text)}}}],ih={$setViewValue:z,$render:z},jh=["$element","$scope",function(a,b){function d(){g||(g=!0,b.$$postDigest(function(){g=!1;e.ngModelCtrl.$render()}))}function c(a){h||(h=!0,b.$$postDigest(function(){b.$$destroyed||(h=!1,e.ngModelCtrl.$setViewValue(e.readValue()),
+a&&e.ngModelCtrl.$render())}))}var e=this,f=new Gb;e.selectValueMap={};e.ngModelCtrl=ih;e.multiple=!1;e.unknownOption=B(x.document.createElement("option"));e.hasEmptyOption=!1;e.emptyOption=void 0;e.renderUnknownOption=function(b){b=e.generateUnknownOptionValue(b);e.unknownOption.val(b);a.prepend(e.unknownOption);Ta(e.unknownOption,!0);a.val(b)};e.updateUnknownOption=function(b){b=e.generateUnknownOptionValue(b);e.unknownOption.val(b);Ta(e.unknownOption,!0);a.val(b)};e.generateUnknownOptionValue=
+function(a){return"? "+Pa(a)+" ?"};e.removeUnknownOption=function(){e.unknownOption.parent()&&e.unknownOption.remove()};e.selectEmptyOption=function(){e.emptyOption&&(a.val(""),Ta(e.emptyOption,!0))};e.unselectEmptyOption=function(){e.hasEmptyOption&&e.emptyOption.removeAttr("selected")};b.$on("$destroy",function(){e.renderUnknownOption=z});e.readValue=function(){var b=a.val(),b=b in e.selectValueMap?e.selectValueMap[b]:b;return e.hasOption(b)?b:null};e.writeValue=function(b){var c=a[0].options[a[0].selectedIndex];
+c&&Ta(B(c),!1);e.hasOption(b)?(e.removeUnknownOption(),c=Pa(b),a.val(c in e.selectValueMap?c:b),Ta(B(a[0].options[a[0].selectedIndex]),!0)):null==b&&e.emptyOption?(e.removeUnknownOption(),e.selectEmptyOption()):e.unknownOption.parent().length?e.updateUnknownOption(b):e.renderUnknownOption(b)};e.addOption=function(a,b){if(8!==b[0].nodeType){Ka(a,'"option value"');""===a&&(e.hasEmptyOption=!0,e.emptyOption=b);var c=f.get(a)||0;f.set(a,c+1);d()}};e.removeOption=function(a){var b=f.get(a);b&&(1===b?(f.delete(a),
+""===a&&(e.hasEmptyOption=!1,e.emptyOption=void 0)):f.set(a,b-1))};e.hasOption=function(a){return!!f.get(a)};var g=!1,h=!1;e.registerOption=function(a,b,f,g,h){if(f.$attr.ngValue){var q,s=NaN;f.$observe("value",function(a){var d,f=b.prop("selected");u(s)&&(e.removeOption(q),delete e.selectValueMap[s],d=!0);s=Pa(a);q=a;e.selectValueMap[s]=a;e.addOption(a,b);b.attr("value",s);d&&f&&c()})}else g?f.$observe("value",function(a){e.readValue();var d,f=b.prop("selected");u(q)&&(e.removeOption(q),d=!0);q=
+a;e.addOption(a,b);d&&f&&c()}):h?a.$watch(h,function(a,d){f.$set("value",a);var g=b.prop("selected");d!==a&&e.removeOption(d);e.addOption(a,b);d&&g&&c()}):e.addOption(f.value,b);f.$observe("disabled",function(a){if("true"===a||a&&b.prop("selected"))e.multiple?c(!0):(e.ngModelCtrl.$setViewValue(null),e.ngModelCtrl.$render())});b.on("$destroy",function(){var a=e.readValue(),b=f.value;e.removeOption(b);d();(e.multiple&&a&&-1!==a.indexOf(b)||a===b)&&c(!0)})}}],Ie=function(){return{restrict:"E",require:["select",
+"?ngModel"],controller:jh,priority:1,link:{pre:function(a,b,d,c){var e=c[0],f=c[1];if(f){if(e.ngModelCtrl=f,b.on("change",function(){e.removeUnknownOption();a.$apply(function(){f.$setViewValue(e.readValue())})}),d.multiple){e.multiple=!0;e.readValue=function(){var a=[];q(b.find("option"),function(b){b.selected&&!b.disabled&&(b=b.value,a.push(b in e.selectValueMap?e.selectValueMap[b]:b))});return a};e.writeValue=function(a){q(b.find("option"),function(b){var c=!!a&&(-1!==Array.prototype.indexOf.call(a,
+b.value)||-1!==Array.prototype.indexOf.call(a,e.selectValueMap[b.value]));c!==b.selected&&Ta(B(b),c)})};var g,h=NaN;a.$watch(function(){h!==f.$viewValue||sa(g,f.$viewValue)||(g=pa(f.$viewValue),f.$render());h=f.$viewValue});f.$isEmpty=function(a){return!a||0===a.length}}}else e.registerOption=z},post:function(a,b,d,c){var e=c[1];if(e){var f=c[0];e.$render=function(){f.writeValue(e.$viewValue)}}}}}},Je=["$interpolate",function(a){return{restrict:"E",priority:100,compile:function(b,d){var c,e;u(d.ngValue)||
+(u(d.value)?c=a(d.value,!0):(e=a(b.text(),!0))||d.$set("value",b.text()));return function(a,b,d){var k=b.parent();(k=k.data("$selectController")||k.parent().data("$selectController"))&&k.registerOption(a,b,d,c,e)}}}}],Zc=function(){return{restrict:"A",require:"?ngModel",link:function(a,b,d,c){c&&(d.required=!0,c.$validators.required=function(a,b){return!d.required||!c.$isEmpty(b)},d.$observe("required",function(){c.$validate()}))}}},Yc=function(){return{restrict:"A",require:"?ngModel",link:function(a,
+b,d,c){if(c){var e,f=d.ngPattern||d.pattern;d.$observe("pattern",function(a){F(a)&&0<a.length&&(a=new RegExp("^"+a+"$"));if(a&&!a.test)throw L("ngPattern")("noregexp",f,a,xa(b));e=a||void 0;c.$validate()});c.$validators.pattern=function(a,b){return c.$isEmpty(b)||w(e)||e.test(b)}}}}},ad=function(){return{restrict:"A",require:"?ngModel",link:function(a,b,d,c){if(c){var e=-1;d.$observe("maxlength",function(a){a=Z(a);e=da(a)?-1:a;c.$validate()});c.$validators.maxlength=function(a,b){return 0>e||c.$isEmpty(b)||
+b.length<=e}}}}},$c=function(){return{restrict:"A",require:"?ngModel",link:function(a,b,d,c){if(c){var e=0;d.$observe("minlength",function(a){e=Z(a)||0;c.$validate()});c.$validators.minlength=function(a,b){return c.$isEmpty(b)||b.length>=e}}}}};x.angular.bootstrap?x.console&&console.log("WARNING: Tried to load angular more than once."):(ze(),Ce(ea),ea.module("ngLocale",[],["$provide",function(a){function b(a){a+="";var b=a.indexOf(".");return-1==b?0:a.length-b-1}a.value("$locale",{DATETIME_FORMATS:{AMPMS:["AM",
+"PM"],DAY:"Sunday Monday Tuesday Wednesday Thursday Friday Saturday".split(" "),ERANAMES:["Before Christ","Anno Domini"],ERAS:["BC","AD"],FIRSTDAYOFWEEK:6,MONTH:"January February March April May June July August September October November December".split(" "),SHORTDAY:"Sun Mon Tue Wed Thu Fri Sat".split(" "),SHORTMONTH:"Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec".split(" "),STANDALONEMONTH:"January February March April May June July August September October November December".split(" "),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",localeID:"en_US",pluralCat:function(a,
+c){var e=a|0,f=c;void 0===f&&(f=Math.min(b(a),3));Math.pow(10,f);return 1==e&&0==f?"one":"other"}})}]),B(function(){ue(x.document,Sc)}))})(window);!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>');
+//# sourceMappingURL=angular.min.js.map
\ No newline at end of file
diff --git a/app/code/Magento/Messaging/view/frontend/web/js/chat.js b/app/code/Magento/Messaging/view/frontend/web/js/chat.js
new file mode 100644
index 00000000000..9f5c69ae54b
--- /dev/null
+++ b/app/code/Magento/Messaging/view/frontend/web/js/chat.js
@@ -0,0 +1,21 @@
+var chatlistbox = angular.module('chatlistbox',[]);
+		chatlistbox.controller('controller', ['$scope', function ($scope) {
+				$scope.chatrooms = [];
+				var room = new Object();
+				room.username = "Dewita Sonya";
+				room.lastmessage = "iya itu barangnya bagus banget, udah pake lama tetep awet";
+				$scope.chatrooms.push(room);
+				var room2 = new Object();
+				room2.username = "Mico mico";
+				room2.lastmessage = "micomicomico barangnya oke punya, ukuran juga pas";
+				$scope.chatrooms.push(room2);
+				var room3 = new Object();
+				room3.username = "Albertus Djauhari";
+				room3.lastmessage = "jangan dibel itumah barang palsu, kualitasnya jelek ";
+				$scope.chatrooms.push(room3);
+				var room4 = new Object();
+				room4.username = "William";
+				room4.lastmessage = "kskskso sajsa sakjsk as akjka dkjs kfasjfssak fjsaf";
+				$scope.chatrooms.push(room4);
+	
+	  }]);
\ No newline at end of file
diff --git a/app/code/Magento/Messaging/view/frontend/web/js/jquery.js b/app/code/Magento/Messaging/view/frontend/web/js/jquery.js
new file mode 100644
index 00000000000..ee381345c26
--- /dev/null
+++ b/app/code/Magento/Messaging/view/frontend/web/js/jquery.js
@@ -0,0 +1,6 @@
+/*! jQuery v2.0.3 | (c) 2005, 2013 jQuery Foundation, Inc. | jquery.org/license
+//@ sourceMappingURL=jquery.min.map
+*/
+(function(e,undefined){var t,n,r=typeof undefined,i=e.location,o=e.document,s=o.documentElement,a=e.jQuery,u=e.$,l={},c=[],p="2.0.3",f=c.concat,h=c.push,d=c.slice,g=c.indexOf,m=l.toString,y=l.hasOwnProperty,v=p.trim,x=function(e,n){return new x.fn.init(e,n,t)},b=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,w=/\S+/g,T=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,C=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,k=/^-ms-/,N=/-([\da-z])/gi,E=function(e,t){return t.toUpperCase()},S=function(){o.removeEventListener("DOMContentLoaded",S,!1),e.removeEventListener("load",S,!1),x.ready()};x.fn=x.prototype={jquery:p,constructor:x,init:function(e,t,n){var r,i;if(!e)return this;if("string"==typeof e){if(r="<"===e.charAt(0)&&">"===e.charAt(e.length-1)&&e.length>=3?[null,e,null]:T.exec(e),!r||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof x?t[0]:t,x.merge(this,x.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:o,!0)),C.test(r[1])&&x.isPlainObject(t))for(r in t)x.isFunction(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return i=o.getElementById(r[2]),i&&i.parentNode&&(this.length=1,this[0]=i),this.context=o,this.selector=e,this}return e.nodeType?(this.context=this[0]=e,this.length=1,this):x.isFunction(e)?n.ready(e):(e.selector!==undefined&&(this.selector=e.selector,this.context=e.context),x.makeArray(e,this))},selector:"",length:0,toArray:function(){return d.call(this)},get:function(e){return null==e?this.toArray():0>e?this[this.length+e]:this[e]},pushStack:function(e){var t=x.merge(this.constructor(),e);return t.prevObject=this,t.context=this.context,t},each:function(e,t){return x.each(this,e,t)},ready:function(e){return x.ready.promise().done(e),this},slice:function(){return this.pushStack(d.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(0>e?t:0);return this.pushStack(n>=0&&t>n?[this[n]]:[])},map:function(e){return this.pushStack(x.map(this,function(t,n){return e.call(t,n,t)}))},end:function(){return this.prevObject||this.constructor(null)},push:h,sort:[].sort,splice:[].splice},x.fn.init.prototype=x.fn,x.extend=x.fn.extend=function(){var e,t,n,r,i,o,s=arguments[0]||{},a=1,u=arguments.length,l=!1;for("boolean"==typeof s&&(l=s,s=arguments[1]||{},a=2),"object"==typeof s||x.isFunction(s)||(s={}),u===a&&(s=this,--a);u>a;a++)if(null!=(e=arguments[a]))for(t in e)n=s[t],r=e[t],s!==r&&(l&&r&&(x.isPlainObject(r)||(i=x.isArray(r)))?(i?(i=!1,o=n&&x.isArray(n)?n:[]):o=n&&x.isPlainObject(n)?n:{},s[t]=x.extend(l,o,r)):r!==undefined&&(s[t]=r));return s},x.extend({expando:"jQuery"+(p+Math.random()).replace(/\D/g,""),noConflict:function(t){return e.$===x&&(e.$=u),t&&e.jQuery===x&&(e.jQuery=a),x},isReady:!1,readyWait:1,holdReady:function(e){e?x.readyWait++:x.ready(!0)},ready:function(e){(e===!0?--x.readyWait:x.isReady)||(x.isReady=!0,e!==!0&&--x.readyWait>0||(n.resolveWith(o,[x]),x.fn.trigger&&x(o).trigger("ready").off("ready")))},isFunction:function(e){return"function"===x.type(e)},isArray:Array.isArray,isWindow:function(e){return null!=e&&e===e.window},isNumeric:function(e){return!isNaN(parseFloat(e))&&isFinite(e)},type:function(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?l[m.call(e)]||"object":typeof e},isPlainObject:function(e){if("object"!==x.type(e)||e.nodeType||x.isWindow(e))return!1;try{if(e.constructor&&!y.call(e.constructor.prototype,"isPrototypeOf"))return!1}catch(t){return!1}return!0},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},error:function(e){throw Error(e)},parseHTML:function(e,t,n){if(!e||"string"!=typeof e)return null;"boolean"==typeof t&&(n=t,t=!1),t=t||o;var r=C.exec(e),i=!n&&[];return r?[t.createElement(r[1])]:(r=x.buildFragment([e],t,i),i&&x(i).remove(),x.merge([],r.childNodes))},parseJSON:JSON.parse,parseXML:function(e){var t,n;if(!e||"string"!=typeof e)return null;try{n=new DOMParser,t=n.parseFromString(e,"text/xml")}catch(r){t=undefined}return(!t||t.getElementsByTagName("parsererror").length)&&x.error("Invalid XML: "+e),t},noop:function(){},globalEval:function(e){var t,n=eval;e=x.trim(e),e&&(1===e.indexOf("use strict")?(t=o.createElement("script"),t.text=e,o.head.appendChild(t).parentNode.removeChild(t)):n(e))},camelCase:function(e){return e.replace(k,"ms-").replace(N,E)},nodeName:function(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()},each:function(e,t,n){var r,i=0,o=e.length,s=j(e);if(n){if(s){for(;o>i;i++)if(r=t.apply(e[i],n),r===!1)break}else for(i in e)if(r=t.apply(e[i],n),r===!1)break}else if(s){for(;o>i;i++)if(r=t.call(e[i],i,e[i]),r===!1)break}else for(i in e)if(r=t.call(e[i],i,e[i]),r===!1)break;return e},trim:function(e){return null==e?"":v.call(e)},makeArray:function(e,t){var n=t||[];return null!=e&&(j(Object(e))?x.merge(n,"string"==typeof e?[e]:e):h.call(n,e)),n},inArray:function(e,t,n){return null==t?-1:g.call(t,e,n)},merge:function(e,t){var n=t.length,r=e.length,i=0;if("number"==typeof n)for(;n>i;i++)e[r++]=t[i];else while(t[i]!==undefined)e[r++]=t[i++];return e.length=r,e},grep:function(e,t,n){var r,i=[],o=0,s=e.length;for(n=!!n;s>o;o++)r=!!t(e[o],o),n!==r&&i.push(e[o]);return i},map:function(e,t,n){var r,i=0,o=e.length,s=j(e),a=[];if(s)for(;o>i;i++)r=t(e[i],i,n),null!=r&&(a[a.length]=r);else for(i in e)r=t(e[i],i,n),null!=r&&(a[a.length]=r);return f.apply([],a)},guid:1,proxy:function(e,t){var n,r,i;return"string"==typeof t&&(n=e[t],t=e,e=n),x.isFunction(e)?(r=d.call(arguments,2),i=function(){return e.apply(t||this,r.concat(d.call(arguments)))},i.guid=e.guid=e.guid||x.guid++,i):undefined},access:function(e,t,n,r,i,o,s){var a=0,u=e.length,l=null==n;if("object"===x.type(n)){i=!0;for(a in n)x.access(e,t,a,n[a],!0,o,s)}else if(r!==undefined&&(i=!0,x.isFunction(r)||(s=!0),l&&(s?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(x(e),n)})),t))for(;u>a;a++)t(e[a],n,s?r:r.call(e[a],a,t(e[a],n)));return i?e:l?t.call(e):u?t(e[0],n):o},now:Date.now,swap:function(e,t,n,r){var i,o,s={};for(o in t)s[o]=e.style[o],e.style[o]=t[o];i=n.apply(e,r||[]);for(o in t)e.style[o]=s[o];return i}}),x.ready.promise=function(t){return n||(n=x.Deferred(),"complete"===o.readyState?setTimeout(x.ready):(o.addEventListener("DOMContentLoaded",S,!1),e.addEventListener("load",S,!1))),n.promise(t)},x.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(e,t){l["[object "+t+"]"]=t.toLowerCase()});function j(e){var t=e.length,n=x.type(e);return x.isWindow(e)?!1:1===e.nodeType&&t?!0:"array"===n||"function"!==n&&(0===t||"number"==typeof t&&t>0&&t-1 in e)}t=x(o),function(e,undefined){var t,n,r,i,o,s,a,u,l,c,p,f,h,d,g,m,y,v="sizzle"+-new Date,b=e.document,w=0,T=0,C=st(),k=st(),N=st(),E=!1,S=function(e,t){return e===t?(E=!0,0):0},j=typeof undefined,D=1<<31,A={}.hasOwnProperty,L=[],q=L.pop,H=L.push,O=L.push,F=L.slice,P=L.indexOf||function(e){var t=0,n=this.length;for(;n>t;t++)if(this[t]===e)return t;return-1},R="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",M="[\\x20\\t\\r\\n\\f]",W="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",$=W.replace("w","w#"),B="\\["+M+"*("+W+")"+M+"*(?:([*^$|!~]?=)"+M+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+$+")|)|)"+M+"*\\]",I=":("+W+")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|"+B.replace(3,8)+")*)|.*)\\)|)",z=RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g"),_=RegExp("^"+M+"*,"+M+"*"),X=RegExp("^"+M+"*([>+~]|"+M+")"+M+"*"),U=RegExp(M+"*[+~]"),Y=RegExp("="+M+"*([^\\]'\"]*)"+M+"*\\]","g"),V=RegExp(I),G=RegExp("^"+$+"$"),J={ID:RegExp("^#("+W+")"),CLASS:RegExp("^\\.("+W+")"),TAG:RegExp("^("+W.replace("w","w*")+")"),ATTR:RegExp("^"+B),PSEUDO:RegExp("^"+I),CHILD:RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:RegExp("^(?:"+R+")$","i"),needsContext:RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Q=/^[^{]+\{\s*\[native \w/,K=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,Z=/^(?:input|select|textarea|button)$/i,et=/^h\d$/i,tt=/'|\\/g,nt=RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),rt=function(e,t,n){var r="0x"+t-65536;return r!==r||n?t:0>r?String.fromCharCode(r+65536):String.fromCharCode(55296|r>>10,56320|1023&r)};try{O.apply(L=F.call(b.childNodes),b.childNodes),L[b.childNodes.length].nodeType}catch(it){O={apply:L.length?function(e,t){H.apply(e,F.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function ot(e,t,r,i){var o,s,a,u,l,f,g,m,x,w;if((t?t.ownerDocument||t:b)!==p&&c(t),t=t||p,r=r||[],!e||"string"!=typeof e)return r;if(1!==(u=t.nodeType)&&9!==u)return[];if(h&&!i){if(o=K.exec(e))if(a=o[1]){if(9===u){if(s=t.getElementById(a),!s||!s.parentNode)return r;if(s.id===a)return r.push(s),r}else if(t.ownerDocument&&(s=t.ownerDocument.getElementById(a))&&y(t,s)&&s.id===a)return r.push(s),r}else{if(o[2])return O.apply(r,t.getElementsByTagName(e)),r;if((a=o[3])&&n.getElementsByClassName&&t.getElementsByClassName)return O.apply(r,t.getElementsByClassName(a)),r}if(n.qsa&&(!d||!d.test(e))){if(m=g=v,x=t,w=9===u&&e,1===u&&"object"!==t.nodeName.toLowerCase()){f=gt(e),(g=t.getAttribute("id"))?m=g.replace(tt,"\\$&"):t.setAttribute("id",m),m="[id='"+m+"'] ",l=f.length;while(l--)f[l]=m+mt(f[l]);x=U.test(e)&&t.parentNode||t,w=f.join(",")}if(w)try{return O.apply(r,x.querySelectorAll(w)),r}catch(T){}finally{g||t.removeAttribute("id")}}}return kt(e.replace(z,"$1"),t,r,i)}function st(){var e=[];function t(n,r){return e.push(n+=" ")>i.cacheLength&&delete t[e.shift()],t[n]=r}return t}function at(e){return e[v]=!0,e}function ut(e){var t=p.createElement("div");try{return!!e(t)}catch(n){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function lt(e,t){var n=e.split("|"),r=e.length;while(r--)i.attrHandle[n[r]]=t}function ct(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&(~t.sourceIndex||D)-(~e.sourceIndex||D);if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function pt(e){return function(t){var n=t.nodeName.toLowerCase();return"input"===n&&t.type===e}}function ft(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function ht(e){return at(function(t){return t=+t,at(function(n,r){var i,o=e([],n.length,t),s=o.length;while(s--)n[i=o[s]]&&(n[i]=!(r[i]=n[i]))})})}s=ot.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return t?"HTML"!==t.nodeName:!1},n=ot.support={},c=ot.setDocument=function(e){var t=e?e.ownerDocument||e:b,r=t.defaultView;return t!==p&&9===t.nodeType&&t.documentElement?(p=t,f=t.documentElement,h=!s(t),r&&r.attachEvent&&r!==r.top&&r.attachEvent("onbeforeunload",function(){c()}),n.attributes=ut(function(e){return e.className="i",!e.getAttribute("className")}),n.getElementsByTagName=ut(function(e){return e.appendChild(t.createComment("")),!e.getElementsByTagName("*").length}),n.getElementsByClassName=ut(function(e){return e.innerHTML="<div class='a'></div><div class='a i'></div>",e.firstChild.className="i",2===e.getElementsByClassName("i").length}),n.getById=ut(function(e){return f.appendChild(e).id=v,!t.getElementsByName||!t.getElementsByName(v).length}),n.getById?(i.find.ID=function(e,t){if(typeof t.getElementById!==j&&h){var n=t.getElementById(e);return n&&n.parentNode?[n]:[]}},i.filter.ID=function(e){var t=e.replace(nt,rt);return function(e){return e.getAttribute("id")===t}}):(delete i.find.ID,i.filter.ID=function(e){var t=e.replace(nt,rt);return function(e){var n=typeof e.getAttributeNode!==j&&e.getAttributeNode("id");return n&&n.value===t}}),i.find.TAG=n.getElementsByTagName?function(e,t){return typeof t.getElementsByTagName!==j?t.getElementsByTagName(e):undefined}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},i.find.CLASS=n.getElementsByClassName&&function(e,t){return typeof t.getElementsByClassName!==j&&h?t.getElementsByClassName(e):undefined},g=[],d=[],(n.qsa=Q.test(t.querySelectorAll))&&(ut(function(e){e.innerHTML="<select><option selected=''></option></select>",e.querySelectorAll("[selected]").length||d.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll(":checked").length||d.push(":checked")}),ut(function(e){var n=t.createElement("input");n.setAttribute("type","hidden"),e.appendChild(n).setAttribute("t",""),e.querySelectorAll("[t^='']").length&&d.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll(":enabled").length||d.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),d.push(",.*:")})),(n.matchesSelector=Q.test(m=f.webkitMatchesSelector||f.mozMatchesSelector||f.oMatchesSelector||f.msMatchesSelector))&&ut(function(e){n.disconnectedMatch=m.call(e,"div"),m.call(e,"[s!='']:x"),g.push("!=",I)}),d=d.length&&RegExp(d.join("|")),g=g.length&&RegExp(g.join("|")),y=Q.test(f.contains)||f.compareDocumentPosition?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},S=f.compareDocumentPosition?function(e,r){if(e===r)return E=!0,0;var i=r.compareDocumentPosition&&e.compareDocumentPosition&&e.compareDocumentPosition(r);return i?1&i||!n.sortDetached&&r.compareDocumentPosition(e)===i?e===t||y(b,e)?-1:r===t||y(b,r)?1:l?P.call(l,e)-P.call(l,r):0:4&i?-1:1:e.compareDocumentPosition?-1:1}:function(e,n){var r,i=0,o=e.parentNode,s=n.parentNode,a=[e],u=[n];if(e===n)return E=!0,0;if(!o||!s)return e===t?-1:n===t?1:o?-1:s?1:l?P.call(l,e)-P.call(l,n):0;if(o===s)return ct(e,n);r=e;while(r=r.parentNode)a.unshift(r);r=n;while(r=r.parentNode)u.unshift(r);while(a[i]===u[i])i++;return i?ct(a[i],u[i]):a[i]===b?-1:u[i]===b?1:0},t):p},ot.matches=function(e,t){return ot(e,null,null,t)},ot.matchesSelector=function(e,t){if((e.ownerDocument||e)!==p&&c(e),t=t.replace(Y,"='$1']"),!(!n.matchesSelector||!h||g&&g.test(t)||d&&d.test(t)))try{var r=m.call(e,t);if(r||n.disconnectedMatch||e.document&&11!==e.document.nodeType)return r}catch(i){}return ot(t,p,null,[e]).length>0},ot.contains=function(e,t){return(e.ownerDocument||e)!==p&&c(e),y(e,t)},ot.attr=function(e,t){(e.ownerDocument||e)!==p&&c(e);var r=i.attrHandle[t.toLowerCase()],o=r&&A.call(i.attrHandle,t.toLowerCase())?r(e,t,!h):undefined;return o===undefined?n.attributes||!h?e.getAttribute(t):(o=e.getAttributeNode(t))&&o.specified?o.value:null:o},ot.error=function(e){throw Error("Syntax error, unrecognized expression: "+e)},ot.uniqueSort=function(e){var t,r=[],i=0,o=0;if(E=!n.detectDuplicates,l=!n.sortStable&&e.slice(0),e.sort(S),E){while(t=e[o++])t===e[o]&&(i=r.push(o));while(i--)e.splice(r[i],1)}return e},o=ot.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=o(e)}else if(3===i||4===i)return e.nodeValue}else for(;t=e[r];r++)n+=o(t);return n},i=ot.selectors={cacheLength:50,createPseudo:at,match:J,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(nt,rt),e[3]=(e[4]||e[5]||"").replace(nt,rt),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||ot.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&ot.error(e[0]),e},PSEUDO:function(e){var t,n=!e[5]&&e[2];return J.CHILD.test(e[0])?null:(e[3]&&e[4]!==undefined?e[2]=e[4]:n&&V.test(n)&&(t=gt(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(nt,rt).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=C[e+" "];return t||(t=RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&C(e,function(e){return t.test("string"==typeof e.className&&e.className||typeof e.getAttribute!==j&&e.getAttribute("class")||"")})},ATTR:function(e,t,n){return function(r){var i=ot.attr(r,e);return null==i?"!="===t:t?(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"*="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i+" ").indexOf(n)>-1:"|="===t?i===n||i.slice(0,n.length+1)===n+"-":!1):!0}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),s="last"!==e.slice(-4),a="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,u){var l,c,p,f,h,d,g=o!==s?"nextSibling":"previousSibling",m=t.parentNode,y=a&&t.nodeName.toLowerCase(),x=!u&&!a;if(m){if(o){while(g){p=t;while(p=p[g])if(a?p.nodeName.toLowerCase()===y:1===p.nodeType)return!1;d=g="only"===e&&!d&&"nextSibling"}return!0}if(d=[s?m.firstChild:m.lastChild],s&&x){c=m[v]||(m[v]={}),l=c[e]||[],h=l[0]===w&&l[1],f=l[0]===w&&l[2],p=h&&m.childNodes[h];while(p=++h&&p&&p[g]||(f=h=0)||d.pop())if(1===p.nodeType&&++f&&p===t){c[e]=[w,h,f];break}}else if(x&&(l=(t[v]||(t[v]={}))[e])&&l[0]===w)f=l[1];else while(p=++h&&p&&p[g]||(f=h=0)||d.pop())if((a?p.nodeName.toLowerCase()===y:1===p.nodeType)&&++f&&(x&&((p[v]||(p[v]={}))[e]=[w,f]),p===t))break;return f-=i,f===r||0===f%r&&f/r>=0}}},PSEUDO:function(e,t){var n,r=i.pseudos[e]||i.setFilters[e.toLowerCase()]||ot.error("unsupported pseudo: "+e);return r[v]?r(t):r.length>1?(n=[e,e,"",t],i.setFilters.hasOwnProperty(e.toLowerCase())?at(function(e,n){var i,o=r(e,t),s=o.length;while(s--)i=P.call(e,o[s]),e[i]=!(n[i]=o[s])}):function(e){return r(e,0,n)}):r}},pseudos:{not:at(function(e){var t=[],n=[],r=a(e.replace(z,"$1"));return r[v]?at(function(e,t,n,i){var o,s=r(e,null,i,[]),a=e.length;while(a--)(o=s[a])&&(e[a]=!(t[a]=o))}):function(e,i,o){return t[0]=e,r(t,null,o,n),!n.pop()}}),has:at(function(e){return function(t){return ot(e,t).length>0}}),contains:at(function(e){return function(t){return(t.textContent||t.innerText||o(t)).indexOf(e)>-1}}),lang:at(function(e){return G.test(e||"")||ot.error("unsupported lang: "+e),e=e.replace(nt,rt).toLowerCase(),function(t){var n;do if(n=h?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return n=n.toLowerCase(),n===e||0===n.indexOf(e+"-");while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===f},focus:function(e){return e===p.activeElement&&(!p.hasFocus||p.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:function(e){return e.disabled===!1},disabled:function(e){return e.disabled===!0},checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,e.selected===!0},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeName>"@"||3===e.nodeType||4===e.nodeType)return!1;return!0},parent:function(e){return!i.pseudos.empty(e)},header:function(e){return et.test(e.nodeName)},input:function(e){return Z.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||t.toLowerCase()===e.type)},first:ht(function(){return[0]}),last:ht(function(e,t){return[t-1]}),eq:ht(function(e,t,n){return[0>n?n+t:n]}),even:ht(function(e,t){var n=0;for(;t>n;n+=2)e.push(n);return e}),odd:ht(function(e,t){var n=1;for(;t>n;n+=2)e.push(n);return e}),lt:ht(function(e,t,n){var r=0>n?n+t:n;for(;--r>=0;)e.push(r);return e}),gt:ht(function(e,t,n){var r=0>n?n+t:n;for(;t>++r;)e.push(r);return e})}},i.pseudos.nth=i.pseudos.eq;for(t in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})i.pseudos[t]=pt(t);for(t in{submit:!0,reset:!0})i.pseudos[t]=ft(t);function dt(){}dt.prototype=i.filters=i.pseudos,i.setFilters=new dt;function gt(e,t){var n,r,o,s,a,u,l,c=k[e+" "];if(c)return t?0:c.slice(0);a=e,u=[],l=i.preFilter;while(a){(!n||(r=_.exec(a)))&&(r&&(a=a.slice(r[0].length)||a),u.push(o=[])),n=!1,(r=X.exec(a))&&(n=r.shift(),o.push({value:n,type:r[0].replace(z," ")}),a=a.slice(n.length));for(s in i.filter)!(r=J[s].exec(a))||l[s]&&!(r=l[s](r))||(n=r.shift(),o.push({value:n,type:s,matches:r}),a=a.slice(n.length));if(!n)break}return t?a.length:a?ot.error(e):k(e,u).slice(0)}function mt(e){var t=0,n=e.length,r="";for(;n>t;t++)r+=e[t].value;return r}function yt(e,t,n){var i=t.dir,o=n&&"parentNode"===i,s=T++;return t.first?function(t,n,r){while(t=t[i])if(1===t.nodeType||o)return e(t,n,r)}:function(t,n,a){var u,l,c,p=w+" "+s;if(a){while(t=t[i])if((1===t.nodeType||o)&&e(t,n,a))return!0}else while(t=t[i])if(1===t.nodeType||o)if(c=t[v]||(t[v]={}),(l=c[i])&&l[0]===p){if((u=l[1])===!0||u===r)return u===!0}else if(l=c[i]=[p],l[1]=e(t,n,a)||r,l[1]===!0)return!0}}function vt(e){return e.length>1?function(t,n,r){var i=e.length;while(i--)if(!e[i](t,n,r))return!1;return!0}:e[0]}function xt(e,t,n,r,i){var o,s=[],a=0,u=e.length,l=null!=t;for(;u>a;a++)(o=e[a])&&(!n||n(o,r,i))&&(s.push(o),l&&t.push(a));return s}function bt(e,t,n,r,i,o){return r&&!r[v]&&(r=bt(r)),i&&!i[v]&&(i=bt(i,o)),at(function(o,s,a,u){var l,c,p,f=[],h=[],d=s.length,g=o||Ct(t||"*",a.nodeType?[a]:a,[]),m=!e||!o&&t?g:xt(g,f,e,a,u),y=n?i||(o?e:d||r)?[]:s:m;if(n&&n(m,y,a,u),r){l=xt(y,h),r(l,[],a,u),c=l.length;while(c--)(p=l[c])&&(y[h[c]]=!(m[h[c]]=p))}if(o){if(i||e){if(i){l=[],c=y.length;while(c--)(p=y[c])&&l.push(m[c]=p);i(null,y=[],l,u)}c=y.length;while(c--)(p=y[c])&&(l=i?P.call(o,p):f[c])>-1&&(o[l]=!(s[l]=p))}}else y=xt(y===s?y.splice(d,y.length):y),i?i(null,s,y,u):O.apply(s,y)})}function wt(e){var t,n,r,o=e.length,s=i.relative[e[0].type],a=s||i.relative[" "],l=s?1:0,c=yt(function(e){return e===t},a,!0),p=yt(function(e){return P.call(t,e)>-1},a,!0),f=[function(e,n,r){return!s&&(r||n!==u)||((t=n).nodeType?c(e,n,r):p(e,n,r))}];for(;o>l;l++)if(n=i.relative[e[l].type])f=[yt(vt(f),n)];else{if(n=i.filter[e[l].type].apply(null,e[l].matches),n[v]){for(r=++l;o>r;r++)if(i.relative[e[r].type])break;return bt(l>1&&vt(f),l>1&&mt(e.slice(0,l-1).concat({value:" "===e[l-2].type?"*":""})).replace(z,"$1"),n,r>l&&wt(e.slice(l,r)),o>r&&wt(e=e.slice(r)),o>r&&mt(e))}f.push(n)}return vt(f)}function Tt(e,t){var n=0,o=t.length>0,s=e.length>0,a=function(a,l,c,f,h){var d,g,m,y=[],v=0,x="0",b=a&&[],T=null!=h,C=u,k=a||s&&i.find.TAG("*",h&&l.parentNode||l),N=w+=null==C?1:Math.random()||.1;for(T&&(u=l!==p&&l,r=n);null!=(d=k[x]);x++){if(s&&d){g=0;while(m=e[g++])if(m(d,l,c)){f.push(d);break}T&&(w=N,r=++n)}o&&((d=!m&&d)&&v--,a&&b.push(d))}if(v+=x,o&&x!==v){g=0;while(m=t[g++])m(b,y,l,c);if(a){if(v>0)while(x--)b[x]||y[x]||(y[x]=q.call(f));y=xt(y)}O.apply(f,y),T&&!a&&y.length>0&&v+t.length>1&&ot.uniqueSort(f)}return T&&(w=N,u=C),b};return o?at(a):a}a=ot.compile=function(e,t){var n,r=[],i=[],o=N[e+" "];if(!o){t||(t=gt(e)),n=t.length;while(n--)o=wt(t[n]),o[v]?r.push(o):i.push(o);o=N(e,Tt(i,r))}return o};function Ct(e,t,n){var r=0,i=t.length;for(;i>r;r++)ot(e,t[r],n);return n}function kt(e,t,r,o){var s,u,l,c,p,f=gt(e);if(!o&&1===f.length){if(u=f[0]=f[0].slice(0),u.length>2&&"ID"===(l=u[0]).type&&n.getById&&9===t.nodeType&&h&&i.relative[u[1].type]){if(t=(i.find.ID(l.matches[0].replace(nt,rt),t)||[])[0],!t)return r;e=e.slice(u.shift().value.length)}s=J.needsContext.test(e)?0:u.length;while(s--){if(l=u[s],i.relative[c=l.type])break;if((p=i.find[c])&&(o=p(l.matches[0].replace(nt,rt),U.test(u[0].type)&&t.parentNode||t))){if(u.splice(s,1),e=o.length&&mt(u),!e)return O.apply(r,o),r;break}}}return a(e,f)(o,t,!h,r,U.test(e)),r}n.sortStable=v.split("").sort(S).join("")===v,n.detectDuplicates=E,c(),n.sortDetached=ut(function(e){return 1&e.compareDocumentPosition(p.createElement("div"))}),ut(function(e){return e.innerHTML="<a href='#'></a>","#"===e.firstChild.getAttribute("href")})||lt("type|href|height|width",function(e,t,n){return n?undefined:e.getAttribute(t,"type"===t.toLowerCase()?1:2)}),n.attributes&&ut(function(e){return e.innerHTML="<input/>",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||lt("value",function(e,t,n){return n||"input"!==e.nodeName.toLowerCase()?undefined:e.defaultValue}),ut(function(e){return null==e.getAttribute("disabled")})||lt(R,function(e,t,n){var r;return n?undefined:(r=e.getAttributeNode(t))&&r.specified?r.value:e[t]===!0?t.toLowerCase():null}),x.find=ot,x.expr=ot.selectors,x.expr[":"]=x.expr.pseudos,x.unique=ot.uniqueSort,x.text=ot.getText,x.isXMLDoc=ot.isXML,x.contains=ot.contains}(e);var D={};function A(e){var t=D[e]={};return x.each(e.match(w)||[],function(e,n){t[n]=!0}),t}x.Callbacks=function(e){e="string"==typeof e?D[e]||A(e):x.extend({},e);var t,n,r,i,o,s,a=[],u=!e.once&&[],l=function(p){for(t=e.memory&&p,n=!0,s=i||0,i=0,o=a.length,r=!0;a&&o>s;s++)if(a[s].apply(p[0],p[1])===!1&&e.stopOnFalse){t=!1;break}r=!1,a&&(u?u.length&&l(u.shift()):t?a=[]:c.disable())},c={add:function(){if(a){var n=a.length;(function s(t){x.each(t,function(t,n){var r=x.type(n);"function"===r?e.unique&&c.has(n)||a.push(n):n&&n.length&&"string"!==r&&s(n)})})(arguments),r?o=a.length:t&&(i=n,l(t))}return this},remove:function(){return a&&x.each(arguments,function(e,t){var n;while((n=x.inArray(t,a,n))>-1)a.splice(n,1),r&&(o>=n&&o--,s>=n&&s--)}),this},has:function(e){return e?x.inArray(e,a)>-1:!(!a||!a.length)},empty:function(){return a=[],o=0,this},disable:function(){return a=u=t=undefined,this},disabled:function(){return!a},lock:function(){return u=undefined,t||c.disable(),this},locked:function(){return!u},fireWith:function(e,t){return!a||n&&!u||(t=t||[],t=[e,t.slice?t.slice():t],r?u.push(t):l(t)),this},fire:function(){return c.fireWith(this,arguments),this},fired:function(){return!!n}};return c},x.extend({Deferred:function(e){var t=[["resolve","done",x.Callbacks("once memory"),"resolved"],["reject","fail",x.Callbacks("once memory"),"rejected"],["notify","progress",x.Callbacks("memory")]],n="pending",r={state:function(){return n},always:function(){return i.done(arguments).fail(arguments),this},then:function(){var e=arguments;return x.Deferred(function(n){x.each(t,function(t,o){var s=o[0],a=x.isFunction(e[t])&&e[t];i[o[1]](function(){var e=a&&a.apply(this,arguments);e&&x.isFunction(e.promise)?e.promise().done(n.resolve).fail(n.reject).progress(n.notify):n[s+"With"](this===r?n.promise():this,a?[e]:arguments)})}),e=null}).promise()},promise:function(e){return null!=e?x.extend(e,r):r}},i={};return r.pipe=r.then,x.each(t,function(e,o){var s=o[2],a=o[3];r[o[1]]=s.add,a&&s.add(function(){n=a},t[1^e][2].disable,t[2][2].lock),i[o[0]]=function(){return i[o[0]+"With"](this===i?r:this,arguments),this},i[o[0]+"With"]=s.fireWith}),r.promise(i),e&&e.call(i,i),i},when:function(e){var t=0,n=d.call(arguments),r=n.length,i=1!==r||e&&x.isFunction(e.promise)?r:0,o=1===i?e:x.Deferred(),s=function(e,t,n){return function(r){t[e]=this,n[e]=arguments.length>1?d.call(arguments):r,n===a?o.notifyWith(t,n):--i||o.resolveWith(t,n)}},a,u,l;if(r>1)for(a=Array(r),u=Array(r),l=Array(r);r>t;t++)n[t]&&x.isFunction(n[t].promise)?n[t].promise().done(s(t,l,n)).fail(o.reject).progress(s(t,u,a)):--i;return i||o.resolveWith(l,n),o.promise()}}),x.support=function(t){var n=o.createElement("input"),r=o.createDocumentFragment(),i=o.createElement("div"),s=o.createElement("select"),a=s.appendChild(o.createElement("option"));return n.type?(n.type="checkbox",t.checkOn=""!==n.value,t.optSelected=a.selected,t.reliableMarginRight=!0,t.boxSizingReliable=!0,t.pixelPosition=!1,n.checked=!0,t.noCloneChecked=n.cloneNode(!0).checked,s.disabled=!0,t.optDisabled=!a.disabled,n=o.createElement("input"),n.value="t",n.type="radio",t.radioValue="t"===n.value,n.setAttribute("checked","t"),n.setAttribute("name","t"),r.appendChild(n),t.checkClone=r.cloneNode(!0).cloneNode(!0).lastChild.checked,t.focusinBubbles="onfocusin"in e,i.style.backgroundClip="content-box",i.cloneNode(!0).style.backgroundClip="",t.clearCloneStyle="content-box"===i.style.backgroundClip,x(function(){var n,r,s="padding:0;margin:0;border:0;display:block;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box",a=o.getElementsByTagName("body")[0];a&&(n=o.createElement("div"),n.style.cssText="border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px",a.appendChild(n).appendChild(i),i.innerHTML="",i.style.cssText="-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%",x.swap(a,null!=a.style.zoom?{zoom:1}:{},function(){t.boxSizing=4===i.offsetWidth}),e.getComputedStyle&&(t.pixelPosition="1%"!==(e.getComputedStyle(i,null)||{}).top,t.boxSizingReliable="4px"===(e.getComputedStyle(i,null)||{width:"4px"}).width,r=i.appendChild(o.createElement("div")),r.style.cssText=i.style.cssText=s,r.style.marginRight=r.style.width="0",i.style.width="1px",t.reliableMarginRight=!parseFloat((e.getComputedStyle(r,null)||{}).marginRight)),a.removeChild(n))}),t):t}({});var L,q,H=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,O=/([A-Z])/g;function F(){Object.defineProperty(this.cache={},0,{get:function(){return{}}}),this.expando=x.expando+Math.random()}F.uid=1,F.accepts=function(e){return e.nodeType?1===e.nodeType||9===e.nodeType:!0},F.prototype={key:function(e){if(!F.accepts(e))return 0;var t={},n=e[this.expando];if(!n){n=F.uid++;try{t[this.expando]={value:n},Object.defineProperties(e,t)}catch(r){t[this.expando]=n,x.extend(e,t)}}return this.cache[n]||(this.cache[n]={}),n},set:function(e,t,n){var r,i=this.key(e),o=this.cache[i];if("string"==typeof t)o[t]=n;else if(x.isEmptyObject(o))x.extend(this.cache[i],t);else for(r in t)o[r]=t[r];return o},get:function(e,t){var n=this.cache[this.key(e)];return t===undefined?n:n[t]},access:function(e,t,n){var r;return t===undefined||t&&"string"==typeof t&&n===undefined?(r=this.get(e,t),r!==undefined?r:this.get(e,x.camelCase(t))):(this.set(e,t,n),n!==undefined?n:t)},remove:function(e,t){var n,r,i,o=this.key(e),s=this.cache[o];if(t===undefined)this.cache[o]={};else{x.isArray(t)?r=t.concat(t.map(x.camelCase)):(i=x.camelCase(t),t in s?r=[t,i]:(r=i,r=r in s?[r]:r.match(w)||[])),n=r.length;while(n--)delete s[r[n]]}},hasData:function(e){return!x.isEmptyObject(this.cache[e[this.expando]]||{})},discard:function(e){e[this.expando]&&delete this.cache[e[this.expando]]}},L=new F,q=new F,x.extend({acceptData:F.accepts,hasData:function(e){return L.hasData(e)||q.hasData(e)},data:function(e,t,n){return L.access(e,t,n)},removeData:function(e,t){L.remove(e,t)},_data:function(e,t,n){return q.access(e,t,n)},_removeData:function(e,t){q.remove(e,t)}}),x.fn.extend({data:function(e,t){var n,r,i=this[0],o=0,s=null;if(e===undefined){if(this.length&&(s=L.get(i),1===i.nodeType&&!q.get(i,"hasDataAttrs"))){for(n=i.attributes;n.length>o;o++)r=n[o].name,0===r.indexOf("data-")&&(r=x.camelCase(r.slice(5)),P(i,r,s[r]));q.set(i,"hasDataAttrs",!0)}return s}return"object"==typeof e?this.each(function(){L.set(this,e)}):x.access(this,function(t){var n,r=x.camelCase(e);if(i&&t===undefined){if(n=L.get(i,e),n!==undefined)return n;if(n=L.get(i,r),n!==undefined)return n;if(n=P(i,r,undefined),n!==undefined)return n}else this.each(function(){var n=L.get(this,r);L.set(this,r,t),-1!==e.indexOf("-")&&n!==undefined&&L.set(this,e,t)})},null,t,arguments.length>1,null,!0)},removeData:function(e){return this.each(function(){L.remove(this,e)})}});function P(e,t,n){var r;if(n===undefined&&1===e.nodeType)if(r="data-"+t.replace(O,"-$1").toLowerCase(),n=e.getAttribute(r),"string"==typeof n){try{n="true"===n?!0:"false"===n?!1:"null"===n?null:+n+""===n?+n:H.test(n)?JSON.parse(n):n}catch(i){}L.set(e,t,n)}else n=undefined;return n}x.extend({queue:function(e,t,n){var r;return e?(t=(t||"fx")+"queue",r=q.get(e,t),n&&(!r||x.isArray(n)?r=q.access(e,t,x.makeArray(n)):r.push(n)),r||[]):undefined},dequeue:function(e,t){t=t||"fx";var n=x.queue(e,t),r=n.length,i=n.shift(),o=x._queueHooks(e,t),s=function(){x.dequeue(e,t)
+};"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,s,o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return q.get(e,n)||q.access(e,n,{empty:x.Callbacks("once memory").add(function(){q.remove(e,[t+"queue",n])})})}}),x.fn.extend({queue:function(e,t){var n=2;return"string"!=typeof e&&(t=e,e="fx",n--),n>arguments.length?x.queue(this[0],e):t===undefined?this:this.each(function(){var n=x.queue(this,e,t);x._queueHooks(this,e),"fx"===e&&"inprogress"!==n[0]&&x.dequeue(this,e)})},dequeue:function(e){return this.each(function(){x.dequeue(this,e)})},delay:function(e,t){return e=x.fx?x.fx.speeds[e]||e:e,t=t||"fx",this.queue(t,function(t,n){var r=setTimeout(t,e);n.stop=function(){clearTimeout(r)}})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,t){var n,r=1,i=x.Deferred(),o=this,s=this.length,a=function(){--r||i.resolveWith(o,[o])};"string"!=typeof e&&(t=e,e=undefined),e=e||"fx";while(s--)n=q.get(o[s],e+"queueHooks"),n&&n.empty&&(r++,n.empty.add(a));return a(),i.promise(t)}});var R,M,W=/[\t\r\n\f]/g,$=/\r/g,B=/^(?:input|select|textarea|button)$/i;x.fn.extend({attr:function(e,t){return x.access(this,x.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each(function(){x.removeAttr(this,e)})},prop:function(e,t){return x.access(this,x.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each(function(){delete this[x.propFix[e]||e]})},addClass:function(e){var t,n,r,i,o,s=0,a=this.length,u="string"==typeof e&&e;if(x.isFunction(e))return this.each(function(t){x(this).addClass(e.call(this,t,this.className))});if(u)for(t=(e||"").match(w)||[];a>s;s++)if(n=this[s],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(W," "):" ")){o=0;while(i=t[o++])0>r.indexOf(" "+i+" ")&&(r+=i+" ");n.className=x.trim(r)}return this},removeClass:function(e){var t,n,r,i,o,s=0,a=this.length,u=0===arguments.length||"string"==typeof e&&e;if(x.isFunction(e))return this.each(function(t){x(this).removeClass(e.call(this,t,this.className))});if(u)for(t=(e||"").match(w)||[];a>s;s++)if(n=this[s],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(W," "):"")){o=0;while(i=t[o++])while(r.indexOf(" "+i+" ")>=0)r=r.replace(" "+i+" "," ");n.className=e?x.trim(r):""}return this},toggleClass:function(e,t){var n=typeof e;return"boolean"==typeof t&&"string"===n?t?this.addClass(e):this.removeClass(e):x.isFunction(e)?this.each(function(n){x(this).toggleClass(e.call(this,n,this.className,t),t)}):this.each(function(){if("string"===n){var t,i=0,o=x(this),s=e.match(w)||[];while(t=s[i++])o.hasClass(t)?o.removeClass(t):o.addClass(t)}else(n===r||"boolean"===n)&&(this.className&&q.set(this,"__className__",this.className),this.className=this.className||e===!1?"":q.get(this,"__className__")||"")})},hasClass:function(e){var t=" "+e+" ",n=0,r=this.length;for(;r>n;n++)if(1===this[n].nodeType&&(" "+this[n].className+" ").replace(W," ").indexOf(t)>=0)return!0;return!1},val:function(e){var t,n,r,i=this[0];{if(arguments.length)return r=x.isFunction(e),this.each(function(n){var i;1===this.nodeType&&(i=r?e.call(this,n,x(this).val()):e,null==i?i="":"number"==typeof i?i+="":x.isArray(i)&&(i=x.map(i,function(e){return null==e?"":e+""})),t=x.valHooks[this.type]||x.valHooks[this.nodeName.toLowerCase()],t&&"set"in t&&t.set(this,i,"value")!==undefined||(this.value=i))});if(i)return t=x.valHooks[i.type]||x.valHooks[i.nodeName.toLowerCase()],t&&"get"in t&&(n=t.get(i,"value"))!==undefined?n:(n=i.value,"string"==typeof n?n.replace($,""):null==n?"":n)}}}),x.extend({valHooks:{option:{get:function(e){var t=e.attributes.value;return!t||t.specified?e.value:e.text}},select:{get:function(e){var t,n,r=e.options,i=e.selectedIndex,o="select-one"===e.type||0>i,s=o?null:[],a=o?i+1:r.length,u=0>i?a:o?i:0;for(;a>u;u++)if(n=r[u],!(!n.selected&&u!==i||(x.support.optDisabled?n.disabled:null!==n.getAttribute("disabled"))||n.parentNode.disabled&&x.nodeName(n.parentNode,"optgroup"))){if(t=x(n).val(),o)return t;s.push(t)}return s},set:function(e,t){var n,r,i=e.options,o=x.makeArray(t),s=i.length;while(s--)r=i[s],(r.selected=x.inArray(x(r).val(),o)>=0)&&(n=!0);return n||(e.selectedIndex=-1),o}}},attr:function(e,t,n){var i,o,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return typeof e.getAttribute===r?x.prop(e,t,n):(1===s&&x.isXMLDoc(e)||(t=t.toLowerCase(),i=x.attrHooks[t]||(x.expr.match.bool.test(t)?M:R)),n===undefined?i&&"get"in i&&null!==(o=i.get(e,t))?o:(o=x.find.attr(e,t),null==o?undefined:o):null!==n?i&&"set"in i&&(o=i.set(e,n,t))!==undefined?o:(e.setAttribute(t,n+""),n):(x.removeAttr(e,t),undefined))},removeAttr:function(e,t){var n,r,i=0,o=t&&t.match(w);if(o&&1===e.nodeType)while(n=o[i++])r=x.propFix[n]||n,x.expr.match.bool.test(n)&&(e[r]=!1),e.removeAttribute(n)},attrHooks:{type:{set:function(e,t){if(!x.support.radioValue&&"radio"===t&&x.nodeName(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},propFix:{"for":"htmlFor","class":"className"},prop:function(e,t,n){var r,i,o,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return o=1!==s||!x.isXMLDoc(e),o&&(t=x.propFix[t]||t,i=x.propHooks[t]),n!==undefined?i&&"set"in i&&(r=i.set(e,n,t))!==undefined?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){return e.hasAttribute("tabindex")||B.test(e.nodeName)||e.href?e.tabIndex:-1}}}}),M={set:function(e,t,n){return t===!1?x.removeAttr(e,n):e.setAttribute(n,n),n}},x.each(x.expr.match.bool.source.match(/\w+/g),function(e,t){var n=x.expr.attrHandle[t]||x.find.attr;x.expr.attrHandle[t]=function(e,t,r){var i=x.expr.attrHandle[t],o=r?undefined:(x.expr.attrHandle[t]=undefined)!=n(e,t,r)?t.toLowerCase():null;return x.expr.attrHandle[t]=i,o}}),x.support.optSelected||(x.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null}}),x.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){x.propFix[this.toLowerCase()]=this}),x.each(["radio","checkbox"],function(){x.valHooks[this]={set:function(e,t){return x.isArray(t)?e.checked=x.inArray(x(e).val(),t)>=0:undefined}},x.support.checkOn||(x.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})});var I=/^key/,z=/^(?:mouse|contextmenu)|click/,_=/^(?:focusinfocus|focusoutblur)$/,X=/^([^.]*)(?:\.(.+)|)$/;function U(){return!0}function Y(){return!1}function V(){try{return o.activeElement}catch(e){}}x.event={global:{},add:function(e,t,n,i,o){var s,a,u,l,c,p,f,h,d,g,m,y=q.get(e);if(y){n.handler&&(s=n,n=s.handler,o=s.selector),n.guid||(n.guid=x.guid++),(l=y.events)||(l=y.events={}),(a=y.handle)||(a=y.handle=function(e){return typeof x===r||e&&x.event.triggered===e.type?undefined:x.event.dispatch.apply(a.elem,arguments)},a.elem=e),t=(t||"").match(w)||[""],c=t.length;while(c--)u=X.exec(t[c])||[],d=m=u[1],g=(u[2]||"").split(".").sort(),d&&(f=x.event.special[d]||{},d=(o?f.delegateType:f.bindType)||d,f=x.event.special[d]||{},p=x.extend({type:d,origType:m,data:i,handler:n,guid:n.guid,selector:o,needsContext:o&&x.expr.match.needsContext.test(o),namespace:g.join(".")},s),(h=l[d])||(h=l[d]=[],h.delegateCount=0,f.setup&&f.setup.call(e,i,g,a)!==!1||e.addEventListener&&e.addEventListener(d,a,!1)),f.add&&(f.add.call(e,p),p.handler.guid||(p.handler.guid=n.guid)),o?h.splice(h.delegateCount++,0,p):h.push(p),x.event.global[d]=!0);e=null}},remove:function(e,t,n,r,i){var o,s,a,u,l,c,p,f,h,d,g,m=q.hasData(e)&&q.get(e);if(m&&(u=m.events)){t=(t||"").match(w)||[""],l=t.length;while(l--)if(a=X.exec(t[l])||[],h=g=a[1],d=(a[2]||"").split(".").sort(),h){p=x.event.special[h]||{},h=(r?p.delegateType:p.bindType)||h,f=u[h]||[],a=a[2]&&RegExp("(^|\\.)"+d.join("\\.(?:.*\\.|)")+"(\\.|$)"),s=o=f.length;while(o--)c=f[o],!i&&g!==c.origType||n&&n.guid!==c.guid||a&&!a.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(f.splice(o,1),c.selector&&f.delegateCount--,p.remove&&p.remove.call(e,c));s&&!f.length&&(p.teardown&&p.teardown.call(e,d,m.handle)!==!1||x.removeEvent(e,h,m.handle),delete u[h])}else for(h in u)x.event.remove(e,h+t[l],n,r,!0);x.isEmptyObject(u)&&(delete m.handle,q.remove(e,"events"))}},trigger:function(t,n,r,i){var s,a,u,l,c,p,f,h=[r||o],d=y.call(t,"type")?t.type:t,g=y.call(t,"namespace")?t.namespace.split("."):[];if(a=u=r=r||o,3!==r.nodeType&&8!==r.nodeType&&!_.test(d+x.event.triggered)&&(d.indexOf(".")>=0&&(g=d.split("."),d=g.shift(),g.sort()),c=0>d.indexOf(":")&&"on"+d,t=t[x.expando]?t:new x.Event(d,"object"==typeof t&&t),t.isTrigger=i?2:3,t.namespace=g.join("."),t.namespace_re=t.namespace?RegExp("(^|\\.)"+g.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,t.result=undefined,t.target||(t.target=r),n=null==n?[t]:x.makeArray(n,[t]),f=x.event.special[d]||{},i||!f.trigger||f.trigger.apply(r,n)!==!1)){if(!i&&!f.noBubble&&!x.isWindow(r)){for(l=f.delegateType||d,_.test(l+d)||(a=a.parentNode);a;a=a.parentNode)h.push(a),u=a;u===(r.ownerDocument||o)&&h.push(u.defaultView||u.parentWindow||e)}s=0;while((a=h[s++])&&!t.isPropagationStopped())t.type=s>1?l:f.bindType||d,p=(q.get(a,"events")||{})[t.type]&&q.get(a,"handle"),p&&p.apply(a,n),p=c&&a[c],p&&x.acceptData(a)&&p.apply&&p.apply(a,n)===!1&&t.preventDefault();return t.type=d,i||t.isDefaultPrevented()||f._default&&f._default.apply(h.pop(),n)!==!1||!x.acceptData(r)||c&&x.isFunction(r[d])&&!x.isWindow(r)&&(u=r[c],u&&(r[c]=null),x.event.triggered=d,r[d](),x.event.triggered=undefined,u&&(r[c]=u)),t.result}},dispatch:function(e){e=x.event.fix(e);var t,n,r,i,o,s=[],a=d.call(arguments),u=(q.get(this,"events")||{})[e.type]||[],l=x.event.special[e.type]||{};if(a[0]=e,e.delegateTarget=this,!l.preDispatch||l.preDispatch.call(this,e)!==!1){s=x.event.handlers.call(this,e,u),t=0;while((i=s[t++])&&!e.isPropagationStopped()){e.currentTarget=i.elem,n=0;while((o=i.handlers[n++])&&!e.isImmediatePropagationStopped())(!e.namespace_re||e.namespace_re.test(o.namespace))&&(e.handleObj=o,e.data=o.data,r=((x.event.special[o.origType]||{}).handle||o.handler).apply(i.elem,a),r!==undefined&&(e.result=r)===!1&&(e.preventDefault(),e.stopPropagation()))}return l.postDispatch&&l.postDispatch.call(this,e),e.result}},handlers:function(e,t){var n,r,i,o,s=[],a=t.delegateCount,u=e.target;if(a&&u.nodeType&&(!e.button||"click"!==e.type))for(;u!==this;u=u.parentNode||this)if(u.disabled!==!0||"click"!==e.type){for(r=[],n=0;a>n;n++)o=t[n],i=o.selector+" ",r[i]===undefined&&(r[i]=o.needsContext?x(i,this).index(u)>=0:x.find(i,this,null,[u]).length),r[i]&&r.push(o);r.length&&s.push({elem:u,handlers:r})}return t.length>a&&s.push({elem:this,handlers:t.slice(a)}),s},props:"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(e,t){return null==e.which&&(e.which=null!=t.charCode?t.charCode:t.keyCode),e}},mouseHooks:{props:"button buttons clientX clientY offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(e,t){var n,r,i,s=t.button;return null==e.pageX&&null!=t.clientX&&(n=e.target.ownerDocument||o,r=n.documentElement,i=n.body,e.pageX=t.clientX+(r&&r.scrollLeft||i&&i.scrollLeft||0)-(r&&r.clientLeft||i&&i.clientLeft||0),e.pageY=t.clientY+(r&&r.scrollTop||i&&i.scrollTop||0)-(r&&r.clientTop||i&&i.clientTop||0)),e.which||s===undefined||(e.which=1&s?1:2&s?3:4&s?2:0),e}},fix:function(e){if(e[x.expando])return e;var t,n,r,i=e.type,s=e,a=this.fixHooks[i];a||(this.fixHooks[i]=a=z.test(i)?this.mouseHooks:I.test(i)?this.keyHooks:{}),r=a.props?this.props.concat(a.props):this.props,e=new x.Event(s),t=r.length;while(t--)n=r[t],e[n]=s[n];return e.target||(e.target=o),3===e.target.nodeType&&(e.target=e.target.parentNode),a.filter?a.filter(e,s):e},special:{load:{noBubble:!0},focus:{trigger:function(){return this!==V()&&this.focus?(this.focus(),!1):undefined},delegateType:"focusin"},blur:{trigger:function(){return this===V()&&this.blur?(this.blur(),!1):undefined},delegateType:"focusout"},click:{trigger:function(){return"checkbox"===this.type&&this.click&&x.nodeName(this,"input")?(this.click(),!1):undefined},_default:function(e){return x.nodeName(e.target,"a")}},beforeunload:{postDispatch:function(e){e.result!==undefined&&(e.originalEvent.returnValue=e.result)}}},simulate:function(e,t,n,r){var i=x.extend(new x.Event,n,{type:e,isSimulated:!0,originalEvent:{}});r?x.event.trigger(i,null,t):x.event.dispatch.call(t,i),i.isDefaultPrevented()&&n.preventDefault()}},x.removeEvent=function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n,!1)},x.Event=function(e,t){return this instanceof x.Event?(e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||e.getPreventDefault&&e.getPreventDefault()?U:Y):this.type=e,t&&x.extend(this,t),this.timeStamp=e&&e.timeStamp||x.now(),this[x.expando]=!0,undefined):new x.Event(e,t)},x.Event.prototype={isDefaultPrevented:Y,isPropagationStopped:Y,isImmediatePropagationStopped:Y,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=U,e&&e.preventDefault&&e.preventDefault()},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=U,e&&e.stopPropagation&&e.stopPropagation()},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=U,this.stopPropagation()}},x.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(e,t){x.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,r=this,i=e.relatedTarget,o=e.handleObj;return(!i||i!==r&&!x.contains(r,i))&&(e.type=o.origType,n=o.handler.apply(this,arguments),e.type=t),n}}}),x.support.focusinBubbles||x.each({focus:"focusin",blur:"focusout"},function(e,t){var n=0,r=function(e){x.event.simulate(t,e.target,x.event.fix(e),!0)};x.event.special[t]={setup:function(){0===n++&&o.addEventListener(e,r,!0)},teardown:function(){0===--n&&o.removeEventListener(e,r,!0)}}}),x.fn.extend({on:function(e,t,n,r,i){var o,s;if("object"==typeof e){"string"!=typeof t&&(n=n||t,t=undefined);for(s in e)this.on(s,t,n,e[s],i);return this}if(null==n&&null==r?(r=t,n=t=undefined):null==r&&("string"==typeof t?(r=n,n=undefined):(r=n,n=t,t=undefined)),r===!1)r=Y;else if(!r)return this;return 1===i&&(o=r,r=function(e){return x().off(e),o.apply(this,arguments)},r.guid=o.guid||(o.guid=x.guid++)),this.each(function(){x.event.add(this,e,r,n,t)})},one:function(e,t,n,r){return this.on(e,t,n,r,1)},off:function(e,t,n){var r,i;if(e&&e.preventDefault&&e.handleObj)return r=e.handleObj,x(e.delegateTarget).off(r.namespace?r.origType+"."+r.namespace:r.origType,r.selector,r.handler),this;if("object"==typeof e){for(i in e)this.off(i,t,e[i]);return this}return(t===!1||"function"==typeof t)&&(n=t,t=undefined),n===!1&&(n=Y),this.each(function(){x.event.remove(this,e,n,t)})},trigger:function(e,t){return this.each(function(){x.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];return n?x.event.trigger(e,t,n,!0):undefined}});var G=/^.[^:#\[\.,]*$/,J=/^(?:parents|prev(?:Until|All))/,Q=x.expr.match.needsContext,K={children:!0,contents:!0,next:!0,prev:!0};x.fn.extend({find:function(e){var t,n=[],r=this,i=r.length;if("string"!=typeof e)return this.pushStack(x(e).filter(function(){for(t=0;i>t;t++)if(x.contains(r[t],this))return!0}));for(t=0;i>t;t++)x.find(e,r[t],n);return n=this.pushStack(i>1?x.unique(n):n),n.selector=this.selector?this.selector+" "+e:e,n},has:function(e){var t=x(e,this),n=t.length;return this.filter(function(){var e=0;for(;n>e;e++)if(x.contains(this,t[e]))return!0})},not:function(e){return this.pushStack(et(this,e||[],!0))},filter:function(e){return this.pushStack(et(this,e||[],!1))},is:function(e){return!!et(this,"string"==typeof e&&Q.test(e)?x(e):e||[],!1).length},closest:function(e,t){var n,r=0,i=this.length,o=[],s=Q.test(e)||"string"!=typeof e?x(e,t||this.context):0;for(;i>r;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(11>n.nodeType&&(s?s.index(n)>-1:1===n.nodeType&&x.find.matchesSelector(n,e))){n=o.push(n);break}return this.pushStack(o.length>1?x.unique(o):o)},index:function(e){return e?"string"==typeof e?g.call(x(e),this[0]):g.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){var n="string"==typeof e?x(e,t):x.makeArray(e&&e.nodeType?[e]:e),r=x.merge(this.get(),n);return this.pushStack(x.unique(r))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}});function Z(e,t){while((e=e[t])&&1!==e.nodeType);return e}x.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return x.dir(e,"parentNode")},parentsUntil:function(e,t,n){return x.dir(e,"parentNode",n)},next:function(e){return Z(e,"nextSibling")},prev:function(e){return Z(e,"previousSibling")},nextAll:function(e){return x.dir(e,"nextSibling")},prevAll:function(e){return x.dir(e,"previousSibling")},nextUntil:function(e,t,n){return x.dir(e,"nextSibling",n)},prevUntil:function(e,t,n){return x.dir(e,"previousSibling",n)},siblings:function(e){return x.sibling((e.parentNode||{}).firstChild,e)},children:function(e){return x.sibling(e.firstChild)},contents:function(e){return e.contentDocument||x.merge([],e.childNodes)}},function(e,t){x.fn[e]=function(n,r){var i=x.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(i=x.filter(r,i)),this.length>1&&(K[e]||x.unique(i),J.test(e)&&i.reverse()),this.pushStack(i)}}),x.extend({filter:function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?x.find.matchesSelector(r,e)?[r]:[]:x.find.matches(e,x.grep(t,function(e){return 1===e.nodeType}))},dir:function(e,t,n){var r=[],i=n!==undefined;while((e=e[t])&&9!==e.nodeType)if(1===e.nodeType){if(i&&x(e).is(n))break;r.push(e)}return r},sibling:function(e,t){var n=[];for(;e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n}});function et(e,t,n){if(x.isFunction(t))return x.grep(e,function(e,r){return!!t.call(e,r,e)!==n});if(t.nodeType)return x.grep(e,function(e){return e===t!==n});if("string"==typeof t){if(G.test(t))return x.filter(t,e,n);t=x.filter(t,e)}return x.grep(e,function(e){return g.call(t,e)>=0!==n})}var tt=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,nt=/<([\w:]+)/,rt=/<|&#?\w+;/,it=/<(?:script|style|link)/i,ot=/^(?:checkbox|radio)$/i,st=/checked\s*(?:[^=]|=\s*.checked.)/i,at=/^$|\/(?:java|ecma)script/i,ut=/^true\/(.*)/,lt=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,ct={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,"",""]};ct.optgroup=ct.option,ct.tbody=ct.tfoot=ct.colgroup=ct.caption=ct.thead,ct.th=ct.td,x.fn.extend({text:function(e){return x.access(this,function(e){return e===undefined?x.text(this):this.empty().append((this[0]&&this[0].ownerDocument||o).createTextNode(e))},null,e,arguments.length)},append:function(){return this.domManip(arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=pt(this,e);t.appendChild(e)}})},prepend:function(){return this.domManip(arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=pt(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return this.domManip(arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return this.domManip(arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},remove:function(e,t){var n,r=e?x.filter(e,this):this,i=0;for(;null!=(n=r[i]);i++)t||1!==n.nodeType||x.cleanData(mt(n)),n.parentNode&&(t&&x.contains(n.ownerDocument,n)&&dt(mt(n,"script")),n.parentNode.removeChild(n));return this},empty:function(){var e,t=0;for(;null!=(e=this[t]);t++)1===e.nodeType&&(x.cleanData(mt(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null==e?!1:e,t=null==t?e:t,this.map(function(){return x.clone(this,e,t)})},html:function(e){return x.access(this,function(e){var t=this[0]||{},n=0,r=this.length;if(e===undefined&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!it.test(e)&&!ct[(nt.exec(e)||["",""])[1].toLowerCase()]){e=e.replace(tt,"<$1></$2>");try{for(;r>n;n++)t=this[n]||{},1===t.nodeType&&(x.cleanData(mt(t,!1)),t.innerHTML=e);t=0}catch(i){}}t&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(){var e=x.map(this,function(e){return[e.nextSibling,e.parentNode]}),t=0;return this.domManip(arguments,function(n){var r=e[t++],i=e[t++];i&&(r&&r.parentNode!==i&&(r=this.nextSibling),x(this).remove(),i.insertBefore(n,r))},!0),t?this:this.remove()},detach:function(e){return this.remove(e,!0)},domManip:function(e,t,n){e=f.apply([],e);var r,i,o,s,a,u,l=0,c=this.length,p=this,h=c-1,d=e[0],g=x.isFunction(d);if(g||!(1>=c||"string"!=typeof d||x.support.checkClone)&&st.test(d))return this.each(function(r){var i=p.eq(r);g&&(e[0]=d.call(this,r,i.html())),i.domManip(e,t,n)});if(c&&(r=x.buildFragment(e,this[0].ownerDocument,!1,!n&&this),i=r.firstChild,1===r.childNodes.length&&(r=i),i)){for(o=x.map(mt(r,"script"),ft),s=o.length;c>l;l++)a=r,l!==h&&(a=x.clone(a,!0,!0),s&&x.merge(o,mt(a,"script"))),t.call(this[l],a,l);if(s)for(u=o[o.length-1].ownerDocument,x.map(o,ht),l=0;s>l;l++)a=o[l],at.test(a.type||"")&&!q.access(a,"globalEval")&&x.contains(u,a)&&(a.src?x._evalUrl(a.src):x.globalEval(a.textContent.replace(lt,"")))}return this}}),x.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,t){x.fn[e]=function(e){var n,r=[],i=x(e),o=i.length-1,s=0;for(;o>=s;s++)n=s===o?this:this.clone(!0),x(i[s])[t](n),h.apply(r,n.get());return this.pushStack(r)}}),x.extend({clone:function(e,t,n){var r,i,o,s,a=e.cloneNode(!0),u=x.contains(e.ownerDocument,e);if(!(x.support.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||x.isXMLDoc(e)))for(s=mt(a),o=mt(e),r=0,i=o.length;i>r;r++)yt(o[r],s[r]);if(t)if(n)for(o=o||mt(e),s=s||mt(a),r=0,i=o.length;i>r;r++)gt(o[r],s[r]);else gt(e,a);return s=mt(a,"script"),s.length>0&&dt(s,!u&&mt(e,"script")),a},buildFragment:function(e,t,n,r){var i,o,s,a,u,l,c=0,p=e.length,f=t.createDocumentFragment(),h=[];for(;p>c;c++)if(i=e[c],i||0===i)if("object"===x.type(i))x.merge(h,i.nodeType?[i]:i);else if(rt.test(i)){o=o||f.appendChild(t.createElement("div")),s=(nt.exec(i)||["",""])[1].toLowerCase(),a=ct[s]||ct._default,o.innerHTML=a[1]+i.replace(tt,"<$1></$2>")+a[2],l=a[0];while(l--)o=o.lastChild;x.merge(h,o.childNodes),o=f.firstChild,o.textContent=""}else h.push(t.createTextNode(i));f.textContent="",c=0;while(i=h[c++])if((!r||-1===x.inArray(i,r))&&(u=x.contains(i.ownerDocument,i),o=mt(f.appendChild(i),"script"),u&&dt(o),n)){l=0;while(i=o[l++])at.test(i.type||"")&&n.push(i)}return f},cleanData:function(e){var t,n,r,i,o,s,a=x.event.special,u=0;for(;(n=e[u])!==undefined;u++){if(F.accepts(n)&&(o=n[q.expando],o&&(t=q.cache[o]))){if(r=Object.keys(t.events||{}),r.length)for(s=0;(i=r[s])!==undefined;s++)a[i]?x.event.remove(n,i):x.removeEvent(n,i,t.handle);q.cache[o]&&delete q.cache[o]}delete L.cache[n[L.expando]]}},_evalUrl:function(e){return x.ajax({url:e,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0})}});function pt(e,t){return x.nodeName(e,"table")&&x.nodeName(1===t.nodeType?t:t.firstChild,"tr")?e.getElementsByTagName("tbody")[0]||e.appendChild(e.ownerDocument.createElement("tbody")):e}function ft(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function ht(e){var t=ut.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function dt(e,t){var n=e.length,r=0;for(;n>r;r++)q.set(e[r],"globalEval",!t||q.get(t[r],"globalEval"))}function gt(e,t){var n,r,i,o,s,a,u,l;if(1===t.nodeType){if(q.hasData(e)&&(o=q.access(e),s=q.set(t,o),l=o.events)){delete s.handle,s.events={};for(i in l)for(n=0,r=l[i].length;r>n;n++)x.event.add(t,i,l[i][n])}L.hasData(e)&&(a=L.access(e),u=x.extend({},a),L.set(t,u))}}function mt(e,t){var n=e.getElementsByTagName?e.getElementsByTagName(t||"*"):e.querySelectorAll?e.querySelectorAll(t||"*"):[];return t===undefined||t&&x.nodeName(e,t)?x.merge([e],n):n}function yt(e,t){var n=t.nodeName.toLowerCase();"input"===n&&ot.test(e.type)?t.checked=e.checked:("input"===n||"textarea"===n)&&(t.defaultValue=e.defaultValue)}x.fn.extend({wrapAll:function(e){var t;return x.isFunction(e)?this.each(function(t){x(this).wrapAll(e.call(this,t))}):(this[0]&&(t=x(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstElementChild)e=e.firstElementChild;return e}).append(this)),this)},wrapInner:function(e){return x.isFunction(e)?this.each(function(t){x(this).wrapInner(e.call(this,t))}):this.each(function(){var t=x(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=x.isFunction(e);return this.each(function(n){x(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(){return this.parent().each(function(){x.nodeName(this,"body")||x(this).replaceWith(this.childNodes)}).end()}});var vt,xt,bt=/^(none|table(?!-c[ea]).+)/,wt=/^margin/,Tt=RegExp("^("+b+")(.*)$","i"),Ct=RegExp("^("+b+")(?!px)[a-z%]+$","i"),kt=RegExp("^([+-])=("+b+")","i"),Nt={BODY:"block"},Et={position:"absolute",visibility:"hidden",display:"block"},St={letterSpacing:0,fontWeight:400},jt=["Top","Right","Bottom","Left"],Dt=["Webkit","O","Moz","ms"];function At(e,t){if(t in e)return t;var n=t.charAt(0).toUpperCase()+t.slice(1),r=t,i=Dt.length;while(i--)if(t=Dt[i]+n,t in e)return t;return r}function Lt(e,t){return e=t||e,"none"===x.css(e,"display")||!x.contains(e.ownerDocument,e)}function qt(t){return e.getComputedStyle(t,null)}function Ht(e,t){var n,r,i,o=[],s=0,a=e.length;for(;a>s;s++)r=e[s],r.style&&(o[s]=q.get(r,"olddisplay"),n=r.style.display,t?(o[s]||"none"!==n||(r.style.display=""),""===r.style.display&&Lt(r)&&(o[s]=q.access(r,"olddisplay",Rt(r.nodeName)))):o[s]||(i=Lt(r),(n&&"none"!==n||!i)&&q.set(r,"olddisplay",i?n:x.css(r,"display"))));for(s=0;a>s;s++)r=e[s],r.style&&(t&&"none"!==r.style.display&&""!==r.style.display||(r.style.display=t?o[s]||"":"none"));return e}x.fn.extend({css:function(e,t){return x.access(this,function(e,t,n){var r,i,o={},s=0;if(x.isArray(t)){for(r=qt(e),i=t.length;i>s;s++)o[t[s]]=x.css(e,t[s],!1,r);return o}return n!==undefined?x.style(e,t,n):x.css(e,t)},e,t,arguments.length>1)},show:function(){return Ht(this,!0)},hide:function(){return Ht(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each(function(){Lt(this)?x(this).show():x(this).hide()})}}),x.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=vt(e,"opacity");return""===n?"1":n}}}},cssNumber:{columnCount:!0,fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":"cssFloat"},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,s,a=x.camelCase(t),u=e.style;return t=x.cssProps[a]||(x.cssProps[a]=At(u,a)),s=x.cssHooks[t]||x.cssHooks[a],n===undefined?s&&"get"in s&&(i=s.get(e,!1,r))!==undefined?i:u[t]:(o=typeof n,"string"===o&&(i=kt.exec(n))&&(n=(i[1]+1)*i[2]+parseFloat(x.css(e,t)),o="number"),null==n||"number"===o&&isNaN(n)||("number"!==o||x.cssNumber[a]||(n+="px"),x.support.clearCloneStyle||""!==n||0!==t.indexOf("background")||(u[t]="inherit"),s&&"set"in s&&(n=s.set(e,n,r))===undefined||(u[t]=n)),undefined)}},css:function(e,t,n,r){var i,o,s,a=x.camelCase(t);return t=x.cssProps[a]||(x.cssProps[a]=At(e.style,a)),s=x.cssHooks[t]||x.cssHooks[a],s&&"get"in s&&(i=s.get(e,!0,n)),i===undefined&&(i=vt(e,t,r)),"normal"===i&&t in St&&(i=St[t]),""===n||n?(o=parseFloat(i),n===!0||x.isNumeric(o)?o||0:i):i}}),vt=function(e,t,n){var r,i,o,s=n||qt(e),a=s?s.getPropertyValue(t)||s[t]:undefined,u=e.style;return s&&(""!==a||x.contains(e.ownerDocument,e)||(a=x.style(e,t)),Ct.test(a)&&wt.test(t)&&(r=u.width,i=u.minWidth,o=u.maxWidth,u.minWidth=u.maxWidth=u.width=a,a=s.width,u.width=r,u.minWidth=i,u.maxWidth=o)),a};function Ot(e,t,n){var r=Tt.exec(t);return r?Math.max(0,r[1]-(n||0))+(r[2]||"px"):t}function Ft(e,t,n,r,i){var o=n===(r?"border":"content")?4:"width"===t?1:0,s=0;for(;4>o;o+=2)"margin"===n&&(s+=x.css(e,n+jt[o],!0,i)),r?("content"===n&&(s-=x.css(e,"padding"+jt[o],!0,i)),"margin"!==n&&(s-=x.css(e,"border"+jt[o]+"Width",!0,i))):(s+=x.css(e,"padding"+jt[o],!0,i),"padding"!==n&&(s+=x.css(e,"border"+jt[o]+"Width",!0,i)));return s}function Pt(e,t,n){var r=!0,i="width"===t?e.offsetWidth:e.offsetHeight,o=qt(e),s=x.support.boxSizing&&"border-box"===x.css(e,"boxSizing",!1,o);if(0>=i||null==i){if(i=vt(e,t,o),(0>i||null==i)&&(i=e.style[t]),Ct.test(i))return i;r=s&&(x.support.boxSizingReliable||i===e.style[t]),i=parseFloat(i)||0}return i+Ft(e,t,n||(s?"border":"content"),r,o)+"px"}function Rt(e){var t=o,n=Nt[e];return n||(n=Mt(e,t),"none"!==n&&n||(xt=(xt||x("<iframe frameborder='0' width='0' height='0'/>").css("cssText","display:block !important")).appendTo(t.documentElement),t=(xt[0].contentWindow||xt[0].contentDocument).document,t.write("<!doctype html><html><body>"),t.close(),n=Mt(e,t),xt.detach()),Nt[e]=n),n}function Mt(e,t){var n=x(t.createElement(e)).appendTo(t.body),r=x.css(n[0],"display");return n.remove(),r}x.each(["height","width"],function(e,t){x.cssHooks[t]={get:function(e,n,r){return n?0===e.offsetWidth&&bt.test(x.css(e,"display"))?x.swap(e,Et,function(){return Pt(e,t,r)}):Pt(e,t,r):undefined},set:function(e,n,r){var i=r&&qt(e);return Ot(e,n,r?Ft(e,t,r,x.support.boxSizing&&"border-box"===x.css(e,"boxSizing",!1,i),i):0)}}}),x(function(){x.support.reliableMarginRight||(x.cssHooks.marginRight={get:function(e,t){return t?x.swap(e,{display:"inline-block"},vt,[e,"marginRight"]):undefined}}),!x.support.pixelPosition&&x.fn.position&&x.each(["top","left"],function(e,t){x.cssHooks[t]={get:function(e,n){return n?(n=vt(e,t),Ct.test(n)?x(e).position()[t]+"px":n):undefined}}})}),x.expr&&x.expr.filters&&(x.expr.filters.hidden=function(e){return 0>=e.offsetWidth&&0>=e.offsetHeight},x.expr.filters.visible=function(e){return!x.expr.filters.hidden(e)}),x.each({margin:"",padding:"",border:"Width"},function(e,t){x.cssHooks[e+t]={expand:function(n){var r=0,i={},o="string"==typeof n?n.split(" "):[n];for(;4>r;r++)i[e+jt[r]+t]=o[r]||o[r-2]||o[0];return i}},wt.test(e)||(x.cssHooks[e+t].set=Ot)});var Wt=/%20/g,$t=/\[\]$/,Bt=/\r?\n/g,It=/^(?:submit|button|image|reset|file)$/i,zt=/^(?:input|select|textarea|keygen)/i;x.fn.extend({serialize:function(){return x.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=x.prop(this,"elements");return e?x.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!x(this).is(":disabled")&&zt.test(this.nodeName)&&!It.test(e)&&(this.checked||!ot.test(e))}).map(function(e,t){var n=x(this).val();return null==n?null:x.isArray(n)?x.map(n,function(e){return{name:t.name,value:e.replace(Bt,"\r\n")}}):{name:t.name,value:n.replace(Bt,"\r\n")}}).get()}}),x.param=function(e,t){var n,r=[],i=function(e,t){t=x.isFunction(t)?t():null==t?"":t,r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(t)};if(t===undefined&&(t=x.ajaxSettings&&x.ajaxSettings.traditional),x.isArray(e)||e.jquery&&!x.isPlainObject(e))x.each(e,function(){i(this.name,this.value)});else for(n in e)_t(n,e[n],t,i);return r.join("&").replace(Wt,"+")};function _t(e,t,n,r){var i;if(x.isArray(t))x.each(t,function(t,i){n||$t.test(e)?r(e,i):_t(e+"["+("object"==typeof i?t:"")+"]",i,n,r)});else if(n||"object"!==x.type(t))r(e,t);else for(i in t)_t(e+"["+i+"]",t[i],n,r)}x.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(e,t){x.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}}),x.fn.extend({hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)},bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)
+},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)}});var Xt,Ut,Yt=x.now(),Vt=/\?/,Gt=/#.*$/,Jt=/([?&])_=[^&]*/,Qt=/^(.*?):[ \t]*([^\r\n]*)$/gm,Kt=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Zt=/^(?:GET|HEAD)$/,en=/^\/\//,tn=/^([\w.+-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,nn=x.fn.load,rn={},on={},sn="*/".concat("*");try{Ut=i.href}catch(an){Ut=o.createElement("a"),Ut.href="",Ut=Ut.href}Xt=tn.exec(Ut.toLowerCase())||[];function un(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var r,i=0,o=t.toLowerCase().match(w)||[];if(x.isFunction(n))while(r=o[i++])"+"===r[0]?(r=r.slice(1)||"*",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function ln(e,t,n,r){var i={},o=e===on;function s(a){var u;return i[a]=!0,x.each(e[a]||[],function(e,a){var l=a(t,n,r);return"string"!=typeof l||o||i[l]?o?!(u=l):undefined:(t.dataTypes.unshift(l),s(l),!1)}),u}return s(t.dataTypes[0])||!i["*"]&&s("*")}function cn(e,t){var n,r,i=x.ajaxSettings.flatOptions||{};for(n in t)t[n]!==undefined&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&x.extend(!0,e,r),e}x.fn.load=function(e,t,n){if("string"!=typeof e&&nn)return nn.apply(this,arguments);var r,i,o,s=this,a=e.indexOf(" ");return a>=0&&(r=e.slice(a),e=e.slice(0,a)),x.isFunction(t)?(n=t,t=undefined):t&&"object"==typeof t&&(i="POST"),s.length>0&&x.ajax({url:e,type:i,dataType:"html",data:t}).done(function(e){o=arguments,s.html(r?x("<div>").append(x.parseHTML(e)).find(r):e)}).complete(n&&function(e,t){s.each(n,o||[e.responseText,t,e])}),this},x.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){x.fn[t]=function(e){return this.on(t,e)}}),x.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:Ut,type:"GET",isLocal:Kt.test(Xt[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":sn,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":x.parseJSON,"text xml":x.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?cn(cn(e,x.ajaxSettings),t):cn(x.ajaxSettings,e)},ajaxPrefilter:un(rn),ajaxTransport:un(on),ajax:function(e,t){"object"==typeof e&&(t=e,e=undefined),t=t||{};var n,r,i,o,s,a,u,l,c=x.ajaxSetup({},t),p=c.context||c,f=c.context&&(p.nodeType||p.jquery)?x(p):x.event,h=x.Deferred(),d=x.Callbacks("once memory"),g=c.statusCode||{},m={},y={},v=0,b="canceled",T={readyState:0,getResponseHeader:function(e){var t;if(2===v){if(!o){o={};while(t=Qt.exec(i))o[t[1].toLowerCase()]=t[2]}t=o[e.toLowerCase()]}return null==t?null:t},getAllResponseHeaders:function(){return 2===v?i:null},setRequestHeader:function(e,t){var n=e.toLowerCase();return v||(e=y[n]=y[n]||e,m[e]=t),this},overrideMimeType:function(e){return v||(c.mimeType=e),this},statusCode:function(e){var t;if(e)if(2>v)for(t in e)g[t]=[g[t],e[t]];else T.always(e[T.status]);return this},abort:function(e){var t=e||b;return n&&n.abort(t),k(0,t),this}};if(h.promise(T).complete=d.add,T.success=T.done,T.error=T.fail,c.url=((e||c.url||Ut)+"").replace(Gt,"").replace(en,Xt[1]+"//"),c.type=t.method||t.type||c.method||c.type,c.dataTypes=x.trim(c.dataType||"*").toLowerCase().match(w)||[""],null==c.crossDomain&&(a=tn.exec(c.url.toLowerCase()),c.crossDomain=!(!a||a[1]===Xt[1]&&a[2]===Xt[2]&&(a[3]||("http:"===a[1]?"80":"443"))===(Xt[3]||("http:"===Xt[1]?"80":"443")))),c.data&&c.processData&&"string"!=typeof c.data&&(c.data=x.param(c.data,c.traditional)),ln(rn,c,t,T),2===v)return T;u=c.global,u&&0===x.active++&&x.event.trigger("ajaxStart"),c.type=c.type.toUpperCase(),c.hasContent=!Zt.test(c.type),r=c.url,c.hasContent||(c.data&&(r=c.url+=(Vt.test(r)?"&":"?")+c.data,delete c.data),c.cache===!1&&(c.url=Jt.test(r)?r.replace(Jt,"$1_="+Yt++):r+(Vt.test(r)?"&":"?")+"_="+Yt++)),c.ifModified&&(x.lastModified[r]&&T.setRequestHeader("If-Modified-Since",x.lastModified[r]),x.etag[r]&&T.setRequestHeader("If-None-Match",x.etag[r])),(c.data&&c.hasContent&&c.contentType!==!1||t.contentType)&&T.setRequestHeader("Content-Type",c.contentType),T.setRequestHeader("Accept",c.dataTypes[0]&&c.accepts[c.dataTypes[0]]?c.accepts[c.dataTypes[0]]+("*"!==c.dataTypes[0]?", "+sn+"; q=0.01":""):c.accepts["*"]);for(l in c.headers)T.setRequestHeader(l,c.headers[l]);if(c.beforeSend&&(c.beforeSend.call(p,T,c)===!1||2===v))return T.abort();b="abort";for(l in{success:1,error:1,complete:1})T[l](c[l]);if(n=ln(on,c,t,T)){T.readyState=1,u&&f.trigger("ajaxSend",[T,c]),c.async&&c.timeout>0&&(s=setTimeout(function(){T.abort("timeout")},c.timeout));try{v=1,n.send(m,k)}catch(C){if(!(2>v))throw C;k(-1,C)}}else k(-1,"No Transport");function k(e,t,o,a){var l,m,y,b,w,C=t;2!==v&&(v=2,s&&clearTimeout(s),n=undefined,i=a||"",T.readyState=e>0?4:0,l=e>=200&&300>e||304===e,o&&(b=pn(c,T,o)),b=fn(c,b,T,l),l?(c.ifModified&&(w=T.getResponseHeader("Last-Modified"),w&&(x.lastModified[r]=w),w=T.getResponseHeader("etag"),w&&(x.etag[r]=w)),204===e||"HEAD"===c.type?C="nocontent":304===e?C="notmodified":(C=b.state,m=b.data,y=b.error,l=!y)):(y=C,(e||!C)&&(C="error",0>e&&(e=0))),T.status=e,T.statusText=(t||C)+"",l?h.resolveWith(p,[m,C,T]):h.rejectWith(p,[T,C,y]),T.statusCode(g),g=undefined,u&&f.trigger(l?"ajaxSuccess":"ajaxError",[T,c,l?m:y]),d.fireWith(p,[T,C]),u&&(f.trigger("ajaxComplete",[T,c]),--x.active||x.event.trigger("ajaxStop")))}return T},getJSON:function(e,t,n){return x.get(e,t,n,"json")},getScript:function(e,t){return x.get(e,undefined,t,"script")}}),x.each(["get","post"],function(e,t){x[t]=function(e,n,r,i){return x.isFunction(n)&&(i=i||r,r=n,n=undefined),x.ajax({url:e,type:t,dataType:i,data:n,success:r})}});function pn(e,t,n){var r,i,o,s,a=e.contents,u=e.dataTypes;while("*"===u[0])u.shift(),r===undefined&&(r=e.mimeType||t.getResponseHeader("Content-Type"));if(r)for(i in a)if(a[i]&&a[i].test(r)){u.unshift(i);break}if(u[0]in n)o=u[0];else{for(i in n){if(!u[0]||e.converters[i+" "+u[0]]){o=i;break}s||(s=i)}o=o||s}return o?(o!==u[0]&&u.unshift(o),n[o]):undefined}function fn(e,t,n,r){var i,o,s,a,u,l={},c=e.dataTypes.slice();if(c[1])for(s in e.converters)l[s.toLowerCase()]=e.converters[s];o=c.shift();while(o)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!u&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u=o,o=c.shift())if("*"===o)o=u;else if("*"!==u&&u!==o){if(s=l[u+" "+o]||l["* "+o],!s)for(i in l)if(a=i.split(" "),a[1]===o&&(s=l[u+" "+a[0]]||l["* "+a[0]])){s===!0?s=l[i]:l[i]!==!0&&(o=a[0],c.unshift(a[1]));break}if(s!==!0)if(s&&e["throws"])t=s(t);else try{t=s(t)}catch(p){return{state:"parsererror",error:s?p:"No conversion from "+u+" to "+o}}}return{state:"success",data:t}}x.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/(?:java|ecma)script/},converters:{"text script":function(e){return x.globalEval(e),e}}}),x.ajaxPrefilter("script",function(e){e.cache===undefined&&(e.cache=!1),e.crossDomain&&(e.type="GET")}),x.ajaxTransport("script",function(e){if(e.crossDomain){var t,n;return{send:function(r,i){t=x("<script>").prop({async:!0,charset:e.scriptCharset,src:e.url}).on("load error",n=function(e){t.remove(),n=null,e&&i("error"===e.type?404:200,e.type)}),o.head.appendChild(t[0])},abort:function(){n&&n()}}}});var hn=[],dn=/(=)\?(?=&|$)|\?\?/;x.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=hn.pop()||x.expando+"_"+Yt++;return this[e]=!0,e}}),x.ajaxPrefilter("json jsonp",function(t,n,r){var i,o,s,a=t.jsonp!==!1&&(dn.test(t.url)?"url":"string"==typeof t.data&&!(t.contentType||"").indexOf("application/x-www-form-urlencoded")&&dn.test(t.data)&&"data");return a||"jsonp"===t.dataTypes[0]?(i=t.jsonpCallback=x.isFunction(t.jsonpCallback)?t.jsonpCallback():t.jsonpCallback,a?t[a]=t[a].replace(dn,"$1"+i):t.jsonp!==!1&&(t.url+=(Vt.test(t.url)?"&":"?")+t.jsonp+"="+i),t.converters["script json"]=function(){return s||x.error(i+" was not called"),s[0]},t.dataTypes[0]="json",o=e[i],e[i]=function(){s=arguments},r.always(function(){e[i]=o,t[i]&&(t.jsonpCallback=n.jsonpCallback,hn.push(i)),s&&x.isFunction(o)&&o(s[0]),s=o=undefined}),"script"):undefined}),x.ajaxSettings.xhr=function(){try{return new XMLHttpRequest}catch(e){}};var gn=x.ajaxSettings.xhr(),mn={0:200,1223:204},yn=0,vn={};e.ActiveXObject&&x(e).on("unload",function(){for(var e in vn)vn[e]();vn=undefined}),x.support.cors=!!gn&&"withCredentials"in gn,x.support.ajax=gn=!!gn,x.ajaxTransport(function(e){var t;return x.support.cors||gn&&!e.crossDomain?{send:function(n,r){var i,o,s=e.xhr();if(s.open(e.type,e.url,e.async,e.username,e.password),e.xhrFields)for(i in e.xhrFields)s[i]=e.xhrFields[i];e.mimeType&&s.overrideMimeType&&s.overrideMimeType(e.mimeType),e.crossDomain||n["X-Requested-With"]||(n["X-Requested-With"]="XMLHttpRequest");for(i in n)s.setRequestHeader(i,n[i]);t=function(e){return function(){t&&(delete vn[o],t=s.onload=s.onerror=null,"abort"===e?s.abort():"error"===e?r(s.status||404,s.statusText):r(mn[s.status]||s.status,s.statusText,"string"==typeof s.responseText?{text:s.responseText}:undefined,s.getAllResponseHeaders()))}},s.onload=t(),s.onerror=t("error"),t=vn[o=yn++]=t("abort"),s.send(e.hasContent&&e.data||null)},abort:function(){t&&t()}}:undefined});var xn,bn,wn=/^(?:toggle|show|hide)$/,Tn=RegExp("^(?:([+-])=|)("+b+")([a-z%]*)$","i"),Cn=/queueHooks$/,kn=[An],Nn={"*":[function(e,t){var n=this.createTween(e,t),r=n.cur(),i=Tn.exec(t),o=i&&i[3]||(x.cssNumber[e]?"":"px"),s=(x.cssNumber[e]||"px"!==o&&+r)&&Tn.exec(x.css(n.elem,e)),a=1,u=20;if(s&&s[3]!==o){o=o||s[3],i=i||[],s=+r||1;do a=a||".5",s/=a,x.style(n.elem,e,s+o);while(a!==(a=n.cur()/r)&&1!==a&&--u)}return i&&(s=n.start=+s||+r||0,n.unit=o,n.end=i[1]?s+(i[1]+1)*i[2]:+i[2]),n}]};function En(){return setTimeout(function(){xn=undefined}),xn=x.now()}function Sn(e,t,n){var r,i=(Nn[t]||[]).concat(Nn["*"]),o=0,s=i.length;for(;s>o;o++)if(r=i[o].call(n,t,e))return r}function jn(e,t,n){var r,i,o=0,s=kn.length,a=x.Deferred().always(function(){delete u.elem}),u=function(){if(i)return!1;var t=xn||En(),n=Math.max(0,l.startTime+l.duration-t),r=n/l.duration||0,o=1-r,s=0,u=l.tweens.length;for(;u>s;s++)l.tweens[s].run(o);return a.notifyWith(e,[l,o,n]),1>o&&u?n:(a.resolveWith(e,[l]),!1)},l=a.promise({elem:e,props:x.extend({},t),opts:x.extend(!0,{specialEasing:{}},n),originalProperties:t,originalOptions:n,startTime:xn||En(),duration:n.duration,tweens:[],createTween:function(t,n){var r=x.Tween(e,l.opts,t,n,l.opts.specialEasing[t]||l.opts.easing);return l.tweens.push(r),r},stop:function(t){var n=0,r=t?l.tweens.length:0;if(i)return this;for(i=!0;r>n;n++)l.tweens[n].run(1);return t?a.resolveWith(e,[l,t]):a.rejectWith(e,[l,t]),this}}),c=l.props;for(Dn(c,l.opts.specialEasing);s>o;o++)if(r=kn[o].call(l,e,c,l.opts))return r;return x.map(c,Sn,l),x.isFunction(l.opts.start)&&l.opts.start.call(e,l),x.fx.timer(x.extend(u,{elem:e,anim:l,queue:l.opts.queue})),l.progress(l.opts.progress).done(l.opts.done,l.opts.complete).fail(l.opts.fail).always(l.opts.always)}function Dn(e,t){var n,r,i,o,s;for(n in e)if(r=x.camelCase(n),i=t[r],o=e[n],x.isArray(o)&&(i=o[1],o=e[n]=o[0]),n!==r&&(e[r]=o,delete e[n]),s=x.cssHooks[r],s&&"expand"in s){o=s.expand(o),delete e[r];for(n in o)n in e||(e[n]=o[n],t[n]=i)}else t[r]=i}x.Animation=x.extend(jn,{tweener:function(e,t){x.isFunction(e)?(t=e,e=["*"]):e=e.split(" ");var n,r=0,i=e.length;for(;i>r;r++)n=e[r],Nn[n]=Nn[n]||[],Nn[n].unshift(t)},prefilter:function(e,t){t?kn.unshift(e):kn.push(e)}});function An(e,t,n){var r,i,o,s,a,u,l=this,c={},p=e.style,f=e.nodeType&&Lt(e),h=q.get(e,"fxshow");n.queue||(a=x._queueHooks(e,"fx"),null==a.unqueued&&(a.unqueued=0,u=a.empty.fire,a.empty.fire=function(){a.unqueued||u()}),a.unqueued++,l.always(function(){l.always(function(){a.unqueued--,x.queue(e,"fx").length||a.empty.fire()})})),1===e.nodeType&&("height"in t||"width"in t)&&(n.overflow=[p.overflow,p.overflowX,p.overflowY],"inline"===x.css(e,"display")&&"none"===x.css(e,"float")&&(p.display="inline-block")),n.overflow&&(p.overflow="hidden",l.always(function(){p.overflow=n.overflow[0],p.overflowX=n.overflow[1],p.overflowY=n.overflow[2]}));for(r in t)if(i=t[r],wn.exec(i)){if(delete t[r],o=o||"toggle"===i,i===(f?"hide":"show")){if("show"!==i||!h||h[r]===undefined)continue;f=!0}c[r]=h&&h[r]||x.style(e,r)}if(!x.isEmptyObject(c)){h?"hidden"in h&&(f=h.hidden):h=q.access(e,"fxshow",{}),o&&(h.hidden=!f),f?x(e).show():l.done(function(){x(e).hide()}),l.done(function(){var t;q.remove(e,"fxshow");for(t in c)x.style(e,t,c[t])});for(r in c)s=Sn(f?h[r]:0,r,l),r in h||(h[r]=s.start,f&&(s.end=s.start,s.start="width"===r||"height"===r?1:0))}}function Ln(e,t,n,r,i){return new Ln.prototype.init(e,t,n,r,i)}x.Tween=Ln,Ln.prototype={constructor:Ln,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||"swing",this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(x.cssNumber[n]?"":"px")},cur:function(){var e=Ln.propHooks[this.prop];return e&&e.get?e.get(this):Ln.propHooks._default.get(this)},run:function(e){var t,n=Ln.propHooks[this.prop];return this.pos=t=this.options.duration?x.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):Ln.propHooks._default.set(this),this}},Ln.prototype.init.prototype=Ln.prototype,Ln.propHooks={_default:{get:function(e){var t;return null==e.elem[e.prop]||e.elem.style&&null!=e.elem.style[e.prop]?(t=x.css(e.elem,e.prop,""),t&&"auto"!==t?t:0):e.elem[e.prop]},set:function(e){x.fx.step[e.prop]?x.fx.step[e.prop](e):e.elem.style&&(null!=e.elem.style[x.cssProps[e.prop]]||x.cssHooks[e.prop])?x.style(e.elem,e.prop,e.now+e.unit):e.elem[e.prop]=e.now}}},Ln.propHooks.scrollTop=Ln.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},x.each(["toggle","show","hide"],function(e,t){var n=x.fn[t];x.fn[t]=function(e,r,i){return null==e||"boolean"==typeof e?n.apply(this,arguments):this.animate(qn(t,!0),e,r,i)}}),x.fn.extend({fadeTo:function(e,t,n,r){return this.filter(Lt).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(e,t,n,r){var i=x.isEmptyObject(e),o=x.speed(t,n,r),s=function(){var t=jn(this,x.extend({},e),o);(i||q.get(this,"finish"))&&t.stop(!0)};return s.finish=s,i||o.queue===!1?this.each(s):this.queue(o.queue,s)},stop:function(e,t,n){var r=function(e){var t=e.stop;delete e.stop,t(n)};return"string"!=typeof e&&(n=t,t=e,e=undefined),t&&e!==!1&&this.queue(e||"fx",[]),this.each(function(){var t=!0,i=null!=e&&e+"queueHooks",o=x.timers,s=q.get(this);if(i)s[i]&&s[i].stop&&r(s[i]);else for(i in s)s[i]&&s[i].stop&&Cn.test(i)&&r(s[i]);for(i=o.length;i--;)o[i].elem!==this||null!=e&&o[i].queue!==e||(o[i].anim.stop(n),t=!1,o.splice(i,1));(t||!n)&&x.dequeue(this,e)})},finish:function(e){return e!==!1&&(e=e||"fx"),this.each(function(){var t,n=q.get(this),r=n[e+"queue"],i=n[e+"queueHooks"],o=x.timers,s=r?r.length:0;for(n.finish=!0,x.queue(this,e,[]),i&&i.stop&&i.stop.call(this,!0),t=o.length;t--;)o[t].elem===this&&o[t].queue===e&&(o[t].anim.stop(!0),o.splice(t,1));for(t=0;s>t;t++)r[t]&&r[t].finish&&r[t].finish.call(this);delete n.finish})}});function qn(e,t){var n,r={height:e},i=0;for(t=t?1:0;4>i;i+=2-t)n=jt[i],r["margin"+n]=r["padding"+n]=e;return t&&(r.opacity=r.width=e),r}x.each({slideDown:qn("show"),slideUp:qn("hide"),slideToggle:qn("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,t){x.fn[e]=function(e,n,r){return this.animate(t,e,n,r)}}),x.speed=function(e,t,n){var r=e&&"object"==typeof e?x.extend({},e):{complete:n||!n&&t||x.isFunction(e)&&e,duration:e,easing:n&&t||t&&!x.isFunction(t)&&t};return r.duration=x.fx.off?0:"number"==typeof r.duration?r.duration:r.duration in x.fx.speeds?x.fx.speeds[r.duration]:x.fx.speeds._default,(null==r.queue||r.queue===!0)&&(r.queue="fx"),r.old=r.complete,r.complete=function(){x.isFunction(r.old)&&r.old.call(this),r.queue&&x.dequeue(this,r.queue)},r},x.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2}},x.timers=[],x.fx=Ln.prototype.init,x.fx.tick=function(){var e,t=x.timers,n=0;for(xn=x.now();t.length>n;n++)e=t[n],e()||t[n]!==e||t.splice(n--,1);t.length||x.fx.stop(),xn=undefined},x.fx.timer=function(e){e()&&x.timers.push(e)&&x.fx.start()},x.fx.interval=13,x.fx.start=function(){bn||(bn=setInterval(x.fx.tick,x.fx.interval))},x.fx.stop=function(){clearInterval(bn),bn=null},x.fx.speeds={slow:600,fast:200,_default:400},x.fx.step={},x.expr&&x.expr.filters&&(x.expr.filters.animated=function(e){return x.grep(x.timers,function(t){return e===t.elem}).length}),x.fn.offset=function(e){if(arguments.length)return e===undefined?this:this.each(function(t){x.offset.setOffset(this,e,t)});var t,n,i=this[0],o={top:0,left:0},s=i&&i.ownerDocument;if(s)return t=s.documentElement,x.contains(t,i)?(typeof i.getBoundingClientRect!==r&&(o=i.getBoundingClientRect()),n=Hn(s),{top:o.top+n.pageYOffset-t.clientTop,left:o.left+n.pageXOffset-t.clientLeft}):o},x.offset={setOffset:function(e,t,n){var r,i,o,s,a,u,l,c=x.css(e,"position"),p=x(e),f={};"static"===c&&(e.style.position="relative"),a=p.offset(),o=x.css(e,"top"),u=x.css(e,"left"),l=("absolute"===c||"fixed"===c)&&(o+u).indexOf("auto")>-1,l?(r=p.position(),s=r.top,i=r.left):(s=parseFloat(o)||0,i=parseFloat(u)||0),x.isFunction(t)&&(t=t.call(e,n,a)),null!=t.top&&(f.top=t.top-a.top+s),null!=t.left&&(f.left=t.left-a.left+i),"using"in t?t.using.call(e,f):p.css(f)}},x.fn.extend({position:function(){if(this[0]){var e,t,n=this[0],r={top:0,left:0};return"fixed"===x.css(n,"position")?t=n.getBoundingClientRect():(e=this.offsetParent(),t=this.offset(),x.nodeName(e[0],"html")||(r=e.offset()),r.top+=x.css(e[0],"borderTopWidth",!0),r.left+=x.css(e[0],"borderLeftWidth",!0)),{top:t.top-r.top-x.css(n,"marginTop",!0),left:t.left-r.left-x.css(n,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent||s;while(e&&!x.nodeName(e,"html")&&"static"===x.css(e,"position"))e=e.offsetParent;return e||s})}}),x.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,n){var r="pageYOffset"===n;x.fn[t]=function(i){return x.access(this,function(t,i,o){var s=Hn(t);return o===undefined?s?s[n]:t[i]:(s?s.scrollTo(r?e.pageXOffset:o,r?o:e.pageYOffset):t[i]=o,undefined)},t,i,arguments.length,null)}});function Hn(e){return x.isWindow(e)?e:9===e.nodeType&&e.defaultView}x.each({Height:"height",Width:"width"},function(e,t){x.each({padding:"inner"+e,content:t,"":"outer"+e},function(n,r){x.fn[r]=function(r,i){var o=arguments.length&&(n||"boolean"!=typeof r),s=n||(r===!0||i===!0?"margin":"border");return x.access(this,function(t,n,r){var i;return x.isWindow(t)?t.document.documentElement["client"+e]:9===t.nodeType?(i=t.documentElement,Math.max(t.body["scroll"+e],i["scroll"+e],t.body["offset"+e],i["offset"+e],i["client"+e])):r===undefined?x.css(t,n,s):x.style(t,n,r,s)},t,o?r:undefined,o,null)}})}),x.fn.size=function(){return this.length},x.fn.andSelf=x.fn.addBack,"object"==typeof module&&module&&"object"==typeof module.exports?module.exports=x:"function"==typeof define&&define.amd&&define("jquery",[],function(){return x}),"object"==typeof e&&"object"==typeof e.document&&(e.jQuery=e.$=x)})(window);
\ No newline at end of file
-- 
GitLab


From 78e7617c6741a6862513fcac98e403f5a5e61d1b Mon Sep 17 00:00:00 2001
From: dewitast <dewitast20@gmail.com>
Date: Tue, 6 Feb 2018 17:27:54 +0700
Subject: [PATCH 03/19] fix bug on css and js

---
 .../Magento/Messaging/Block/Messaging.php     | 25 +++++++++++++++++--
 .../frontend/layout/messaging_index_index.xml |  8 +++---
 .../view/frontend/requirejs-config.js         |  7 ++++++
 .../view/frontend/templates/messaging.phtml   | 10 +++++++-
 4 files changed, 43 insertions(+), 7 deletions(-)
 create mode 100644 app/code/Magento/Messaging/view/frontend/requirejs-config.js

diff --git a/app/code/Magento/Messaging/Block/Messaging.php b/app/code/Magento/Messaging/Block/Messaging.php
index 11ede2e1284..4b9cb210ece 100644
--- a/app/code/Magento/Messaging/Block/Messaging.php
+++ b/app/code/Magento/Messaging/Block/Messaging.php
@@ -3,8 +3,29 @@ namespace Magento\Messaging\Block;
  
 class Messaging extends \Magento\Framework\View\Element\Template
 {
-    public function getText()
-    {
+	/**
+	  * @var \Magento\Framework\App\ObjectManager
+	  */
+	public $om;
+
+	/**
+	  * @var \Magento\Customer\Model\Session
+	  */
+	public $session;
+
+    public function getText() {
         return 'Hello world!';
     }
+
+    public function getId() {
+    	if ($om === null || $session === null) {
+    		$om = \Magento\Framework\App\ObjectManager::getInstance();
+    		$session = $om->get('\Magento\Customer\Model\Session');
+    	}
+    	if ($session->isLoggedIn()) {
+    		return $session->getCustomer()->getId();
+    	} else {
+    		return -1;
+    	}
+    }
 }
\ No newline at end of file
diff --git a/app/code/Magento/Messaging/view/frontend/layout/messaging_index_index.xml b/app/code/Magento/Messaging/view/frontend/layout/messaging_index_index.xml
index eb9f38ba14e..d61a1e1a573 100644
--- a/app/code/Magento/Messaging/view/frontend/layout/messaging_index_index.xml
+++ b/app/code/Magento/Messaging/view/frontend/layout/messaging_index_index.xml
@@ -1,10 +1,10 @@
 <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../../../lib/internal/Magento/Framework/View/Layout/etc/page_configuration.xsd" layout="1column">
 	<head>
 		<title>Messaging</title>
-		<css src="Messaging::css/chat.css" />
-		<script src="Messaging::js/chat.js" />
-		<script src="Messaging::js/angular.js" />
-		<script src="Messaging::js/jquery.js" />
+		<css src="Magento_Messaging::css/chat.css" />
+		<script src="Magento_Messaging::js/chat.js" />
+		<script src="Magento_Messaging::js/angular.js" />
+		<script src="Magento_Messaging::js/jquery.js" />
 	</head>
     <body ng-app="chatlistbox" ng-controller="controller">
         <referenceContainer name="content">
diff --git a/app/code/Magento/Messaging/view/frontend/requirejs-config.js b/app/code/Magento/Messaging/view/frontend/requirejs-config.js
new file mode 100644
index 00000000000..03b382c9f5e
--- /dev/null
+++ b/app/code/Magento/Messaging/view/frontend/requirejs-config.js
@@ -0,0 +1,7 @@
+var config = {
+   map: {
+       '*': {
+           messaging: 'Magento_Messaging/js/test',
+       }
+   }
+};
\ No newline at end of file
diff --git a/app/code/Magento/Messaging/view/frontend/templates/messaging.phtml b/app/code/Magento/Messaging/view/frontend/templates/messaging.phtml
index 21ed1f6fb4b..6094746e846 100644
--- a/app/code/Magento/Messaging/view/frontend/templates/messaging.phtml
+++ b/app/code/Magento/Messaging/view/frontend/templates/messaging.phtml
@@ -17,4 +17,12 @@
 			</div>
 		</div>
 	</div>
-</div>
\ No newline at end of file
+</div>
+
+<script type="text/javascript">
+require(['jquery'],function($){
+    $(document).ready(function() {
+    	alert('hai');
+    });
+});
+</script>
\ No newline at end of file
-- 
GitLab


From 5bd0c17d252a50cf09baf89d87409de7132a33d6 Mon Sep 17 00:00:00 2001
From: sutantowilliam <willywilliamss97@gmail.com>
Date: Thu, 8 Feb 2018 01:39:55 +0700
Subject: [PATCH 04/19] remove angular, only javascript

---
 .github/.htaccess                             |   0
 .github/CODE_OF_CONDUCT.md                    |   0
 .github/CONTRIBUTING.md                       |   0
 .github/ISSUE_TEMPLATE.md                     |   0
 .github/PULL_REQUEST_TEMPLATE.md              |   0
 .gitignore                                    |   0
 .htaccess                                     |   0
 .htaccess.sample                              |   0
 .php_cs.dist                                  |   0
 .travis.yml                                   |   0
 .user.ini                                     |   0
 CHANGELOG.md                                  |   0
 COPYING.txt                                   |   0
 Gruntfile.js.sample                           |   0
 LICENSE.txt                                   |   0
 LICENSE_AFL.txt                               |   0
 MessageSystem/chatlist.php                    |   0
 MessageSystem/chatroom.php                    | 133 ++++++++----------
 MessageSystem/firebase-conf.js                |   8 ++
 README.md                                     |   0
 app/.htaccess                                 |   0
 app/autoload.php                              |   0
 app/bootstrap.php                             |   0
 .../Block/Grid/Renderer/Actions.php           |   0
 .../Block/Grid/Renderer/Notice.php            |   0
 .../Block/Grid/Renderer/Severity.php          |   0
 .../Magento/AdminNotification/Block/Inbox.php |   0
 .../Block/System/Messages.php                 |   0
 .../System/Messages/UnreadMessagePopup.php    |   0
 .../AdminNotification/Block/ToolbarEntry.php  |   0
 .../AdminNotification/Block/Window.php        |   0
 .../Controller/Adminhtml/Notification.php     |   0
 .../Adminhtml/Notification/AjaxMarkAsRead.php |   0
 .../Adminhtml/Notification/Index.php          |   0
 .../Adminhtml/Notification/MarkAsRead.php     |   0
 .../Adminhtml/Notification/MassMarkAsRead.php |   0
 .../Adminhtml/Notification/MassRemove.php     |   0
 .../Adminhtml/Notification/Remove.php         |   0
 .../Adminhtml/System/Message/ListAction.php   |   0
 .../Magento/AdminNotification/LICENSE.txt     |   0
 .../Magento/AdminNotification/LICENSE_AFL.txt |   0
 .../Model/Config/Source/Frequency.php         |   0
 .../Magento/AdminNotification/Model/Feed.php  |   0
 .../Magento/AdminNotification/Model/Inbox.php |   0
 .../Model/InboxInterface.php                  |   0
 .../Model/NotificationService.php             |   0
 .../Model/ResourceModel/Grid/Collection.php   |   0
 .../Model/ResourceModel/Inbox.php             |   0
 .../Model/ResourceModel/Inbox/Collection.php  |   0
 .../Inbox/Collection/Critical.php             |   0
 .../ResourceModel/Inbox/Collection/Unread.php |   0
 .../Model/ResourceModel/System/Message.php    |   0
 .../System/Message/Collection.php             |   0
 .../Message/Collection/Synchronized.php       |   0
 .../Model/System/Message.php                  |   0
 .../Model/System/Message/Baseurl.php          |   0
 .../Model/System/Message/CacheOutdated.php    |   0
 .../Message/Media/AbstractSynchronization.php |   0
 .../Message/Media/Synchronization/Error.php   |   0
 .../Message/Media/Synchronization/Success.php |   0
 .../Model/System/Message/Security.php         |   0
 ...edispatchAdminActionControllerObserver.php |   0
 app/code/Magento/AdminNotification/README.md  |   0
 .../AdminNotification/Setup/InstallSchema.php |   0
 .../Test/Unit/Block/ToolbarEntryTest.php      |   0
 .../Test/Unit/Model/FeedTest.php              |   0
 .../Unit/Model/NotificationServiceTest.php    |   0
 .../System/Message/CacheOutdatedTest.php      |   0
 .../Media/Synchronization/ErrorTest.php       |   0
 .../Model/System/Message/SecurityTest.php     |   0
 .../Component/DataProvider/DataProvider.php   |   0
 .../Magento/AdminNotification/composer.json   |   0
 .../Magento/AdminNotification/etc/acl.xml     |   0
 .../AdminNotification/etc/adminhtml/di.xml    |   0
 .../etc/adminhtml/events.xml                  |   0
 .../AdminNotification/etc/adminhtml/menu.xml  |   0
 .../etc/adminhtml/routes.xml                  |   0
 .../etc/adminhtml/system.xml                  |   0
 .../Magento/AdminNotification/etc/config.xml  |   0
 app/code/Magento/AdminNotification/etc/di.xml |   0
 .../Magento/AdminNotification/etc/module.xml  |   0
 .../Magento/AdminNotification/i18n/en_US.csv  |   0
 .../AdminNotification/registration.php        |   0
 .../layout/adminhtml_notification_block.xml   |   0
 .../layout/adminhtml_notification_index.xml   |   0
 .../view/adminhtml/layout/default.xml         |   0
 .../view/adminhtml/requirejs-config.js        |   0
 .../templates/notification/window.phtml       |   0
 .../adminhtml/templates/system/messages.phtml |   0
 .../templates/system/messages/popup.phtml     |   0
 .../adminhtml/templates/toolbar_entry.phtml   |   0
 .../ui_component/notification_area.xml        |   0
 .../adminhtml/web/js/grid/columns/message.js  |   0
 .../view/adminhtml/web/js/grid/listing.js     |   0
 .../view/adminhtml/web/system/notification.js |   0
 .../web/template/grid/cells/message.html      |   0
 .../adminhtml/web/template/grid/listing.html  |   0
 .../view/adminhtml/web/toolbar_entry.js       |   0
 .../Controller/Adminhtml/Export/GetFilter.php |   0
 .../AdvancedPricingImportExport/LICENSE.txt   |   0
 .../LICENSE_AFL.txt                           |   0
 .../Model/Export/AdvancedPricing.php          |   0
 .../Model/Import/AdvancedPricing.php          |   0
 .../Import/AdvancedPricing/Validator.php      |   0
 .../AdvancedPricing/Validator/TierPrice.php   |   0
 .../Validator/TierPriceType.php               |   0
 .../AdvancedPricing/Validator/Website.php     |   0
 .../Indexer/Product/Price/Plugin/Import.php   |   0
 .../AdvancedPricingImportExport/README.md     |   0
 .../Unit/Model/Export/AdvancedPricingTest.php |   0
 .../Validator/TierPriceTest.php               |   0
 .../Validator/TierPriceTypeTest.php           |   0
 .../AdvancedPricing/Validator/WebsiteTest.php |   0
 .../Import/AdvancedPricing/ValidatorTest.php  |   0
 .../Unit/Model/Import/AdvancedPricingTest.php |   0
 .../Product/Price/Plugin/ImportTest.php       |   0
 .../AdvancedPricingImportExport/composer.json |   0
 .../etc/adminhtml/routes.xml                  |   0
 .../AdvancedPricingImportExport/etc/di.xml    |   0
 .../etc/export.xml                            |   0
 .../etc/import.xml                            |   0
 .../etc/module.xml                            |   0
 .../i18n/en_US.csv                            |   0
 .../registration.php                          |   0
 .../Analytics/Api/Data/LinkInterface.php      |   0
 .../Analytics/Api/LinkProviderInterface.php   |   0
 .../System/Config/AdditionalComment.php       |   0
 .../System/Config/CollectionTimeLabel.php     |   0
 .../System/Config/SubscriptionStatusLabel.php |   0
 .../Adminhtml/System/Config/Vertical.php      |   0
 .../Adminhtml/BIEssentials/SignUp.php         |   0
 .../Controller/Adminhtml/Reports/Show.php     |   0
 .../Adminhtml/Subscription/Retry.php          |   0
 .../Magento/Analytics/Cron/CollectData.php    |   0
 app/code/Magento/Analytics/Cron/SignUp.php    |   0
 app/code/Magento/Analytics/Cron/Update.php    |   0
 app/code/Magento/Analytics/LICENSE.txt        |   0
 app/code/Magento/Analytics/LICENSE_AFL.txt    |   0
 .../Analytics/Model/AnalyticsToken.php        |   0
 app/code/Magento/Analytics/Model/Config.php   |   0
 .../Baseurl/SubscriptionUpdateHandler.php     |   0
 .../Model/Config/Backend/CollectionTime.php   |   0
 .../Model/Config/Backend/Enabled.php          |   0
 .../Backend/Enabled/SubscriptionHandler.php   |   0
 .../Model/Config/Backend/Vertical.php         |   0
 .../Magento/Analytics/Model/Config/Mapper.php |   0
 .../Magento/Analytics/Model/Config/Reader.php |   0
 .../Model/Config/Source/Vertical.php          |   0
 .../Analytics/Model/ConfigInterface.php       |   0
 .../Magento/Analytics/Model/Connector.php     |   0
 .../Model/Connector/CommandInterface.php      |   0
 .../Model/Connector/Http/Client/Curl.php      |   0
 .../Model/Connector/Http/ClientInterface.php  |   0
 .../Connector/Http/ConverterInterface.php     |   0
 .../Model/Connector/Http/JsonConverter.php    |   0
 .../Model/Connector/Http/ResponseFactory.php  |   0
 .../Http/ResponseHandlerInterface.php         |   0
 .../Model/Connector/Http/ResponseResolver.php |   0
 .../Connector/NotifyDataChangedCommand.php    |   0
 .../Analytics/Model/Connector/OTPRequest.php  |   0
 .../Model/Connector/ResponseHandler/OTP.php   |   0
 .../Connector/ResponseHandler/ReSignUp.php    |   0
 .../Connector/ResponseHandler/SignUp.php      |   0
 .../Connector/ResponseHandler/Update.php      |   0
 .../Model/Connector/SignUpCommand.php         |   0
 .../Model/Connector/UpdateCommand.php         |   0
 .../Magento/Analytics/Model/Cryptographer.php |   0
 .../Analytics/Model/EncodedContext.php        |   0
 .../State/SubscriptionUpdateException.php     |   0
 .../Analytics/Model/ExportDataHandler.php     |   0
 .../Model/ExportDataHandlerInterface.php      |   0
 .../Model/ExportDataHandlerNotification.php   |   0
 app/code/Magento/Analytics/Model/FileInfo.php |   0
 .../Analytics/Model/FileInfoManager.php       |   0
 .../Magento/Analytics/Model/FileRecorder.php  |   0
 .../Analytics/Model/IntegrationManager.php    |   0
 app/code/Magento/Analytics/Model/Link.php     |   0
 .../Magento/Analytics/Model/LinkProvider.php  |   0
 .../Model/Plugin/BaseUrlConfigPlugin.php      |   0
 .../Analytics/Model/ProviderFactory.php       |   0
 .../Analytics/Model/ReportUrlProvider.php     |   0
 .../Magento/Analytics/Model/ReportWriter.php  |   0
 .../Analytics/Model/ReportWriterInterface.php |   0
 .../Model/ReportXml/ModuleIterator.php        |   0
 .../Model/StoreConfigurationProvider.php      |   0
 .../Model/SubscriptionStatusProvider.php      |   0
 .../NotificationAboutFailedSubscription.php   |   0
 app/code/Magento/Analytics/README.md          |   0
 .../Magento/Analytics/ReportXml/Config.php    |   0
 .../ReportXml/Config/Converter/Xml.php        |   0
 .../Analytics/ReportXml/Config/Mapper.php     |   0
 .../Analytics/ReportXml/Config/Reader.php     |   0
 .../Analytics/ReportXml/ConfigInterface.php   |   0
 .../Analytics/ReportXml/ConnectionFactory.php |   0
 .../DB/Assembler/AssemblerInterface.php       |   0
 .../DB/Assembler/FilterAssembler.php          |   0
 .../ReportXml/DB/Assembler/FromAssembler.php  |   0
 .../ReportXml/DB/Assembler/JoinAssembler.php  |   0
 .../ReportXml/DB/ColumnsResolver.php          |   0
 .../ReportXml/DB/ConditionResolver.php        |   0
 .../Analytics/ReportXml/DB/NameResolver.php   |   0
 .../ReportXml/DB/ReportValidator.php          |   0
 .../Analytics/ReportXml/DB/SelectBuilder.php  |   0
 .../ReportXml/DB/SelectBuilderFactory.php     |   0
 .../Analytics/ReportXml/IteratorFactory.php   |   0
 .../Magento/Analytics/ReportXml/Query.php     |   0
 .../Analytics/ReportXml/QueryFactory.php      |   0
 .../Analytics/ReportXml/ReportProvider.php    |   0
 .../Analytics/ReportXml/SelectHydrator.php    |   0
 .../Magento/Analytics/Setup/InstallData.php   |   0
 .../System/Config/AdditionalCommentTest.php   |   0
 .../System/Config/CollectionTimeLabelTest.php |   0
 .../Config/SubscriptionStatusLabelTest.php    |   0
 .../Adminhtml/System/Config/VerticalTest.php  |   0
 .../Adminhtml/BIEssentials/SignUpTest.php     |   0
 .../Controller/Adminhtml/Reports/ShowTest.php |   0
 .../Adminhtml/Subscription/RetryTest.php      |   0
 .../Test/Unit/Cron/CollectDataTest.php        |   0
 .../Analytics/Test/Unit/Cron/SignUpTest.php   |   0
 .../Analytics/Test/Unit/Cron/UpdateTest.php   |   0
 .../Test/Unit/Model/AnalyticsTokenTest.php    |   0
 .../Baseurl/SubscriptionUpdateHandlerTest.php |   0
 .../Config/Backend/CollectionTimeTest.php     |   0
 .../Enabled/SubscriptionHandlerTest.php       |   0
 .../Unit/Model/Config/Backend/EnabledTest.php |   0
 .../Model/Config/Backend/VerticalTest.php     |   0
 .../Test/Unit/Model/Config/MapperTest.php     |   0
 .../Test/Unit/Model/Config/ReaderTest.php     |   0
 .../Unit/Model/Config/Source/VerticalTest.php |   0
 .../Analytics/Test/Unit/Model/ConfigTest.php  |   0
 .../Model/Connector/Http/Client/CurlTest.php  |   0
 .../Connector/Http/JsonConverterTest.php      |   0
 .../Connector/Http/ResponseResolverTest.php   |   0
 .../NotifyDataChangedCommandTest.php          |   0
 .../Unit/Model/Connector/OTPRequestTest.php   |   0
 .../Connector/ResponseHandler/OTPTest.php     |   0
 .../ResponseHandler/ReSignUpTest.php          |   0
 .../Connector/ResponseHandler/SignUpTest.php  |   0
 .../Connector/ResponseHandler/UpdateTest.php  |   0
 .../Model/Connector/SignUpCommandTest.php     |   0
 .../Model/Connector/UpdateCommandTest.php     |   0
 .../Test/Unit/Model/ConnectorTest.php         |   0
 .../Test/Unit/Model/CryptographerTest.php     |   0
 .../Test/Unit/Model/EncodedContextTest.php    |   0
 .../ExportDataHandlerNotificationTest.php     |   0
 .../Test/Unit/Model/ExportDataHandlerTest.php |   0
 .../Test/Unit/Model/FileInfoManagerTest.php   |   0
 .../Test/Unit/Model/FileInfoTest.php          |   0
 .../Test/Unit/Model/FileRecorderTest.php      |   0
 .../Unit/Model/IntegrationManagerTest.php     |   0
 .../Test/Unit/Model/LinkProviderTest.php      |   0
 .../Model/Plugin/BaseUrlConfigPluginTest.php  |   0
 .../Test/Unit/Model/ReportUrlProviderTest.php |   0
 .../Test/Unit/Model/ReportWriterTest.php      |   0
 .../Model/ReportXml/ModuleIteratorTest.php    |   0
 .../Model/StoreConfigurationProviderTest.php  |   0
 .../Model/SubscriptionStatusProviderTest.php  |   0
 ...otificationAboutFailedSubscriptionTest.php |   0
 .../ReportXml/Config/Converter/XmlTest.php    |   0
 .../Test/Unit/ReportXml/Config/MapperTest.php |   0
 .../ReportXml/Config/_files/valid_reports.xml |   0
 .../Test/Unit/ReportXml/ConfigTest.php        |   0
 .../Unit/ReportXml/ConnectionFactoryTest.php  |   0
 .../DB/Assembler/FilterAssemblerTest.php      |   0
 .../DB/Assembler/FromAssemblerTest.php        |   0
 .../DB/Assembler/JoinAssemblerTest.php        |   0
 .../Unit/ReportXml/DB/ColumnsResolverTest.php |   0
 .../ReportXml/DB/ConditionResolverTest.php    |   0
 .../Unit/ReportXml/DB/NameResolverTest.php    |   0
 .../Unit/ReportXml/DB/ReportValidatorTest.php |   0
 .../Unit/ReportXml/DB/SelectBuilderTest.php   |   0
 .../Unit/ReportXml/IteratorFactoryTest.php    |   0
 .../Test/Unit/ReportXml/QueryFactoryTest.php  |   0
 .../Test/Unit/ReportXml/QueryTest.php         |   0
 .../Unit/ReportXml/ReportProviderTest.php     |   0
 .../Unit/ReportXml/SelectHydratorTest.php     |   0
 app/code/Magento/Analytics/composer.json      |   0
 .../Analytics/docs/images/M2_MA_signup.png    | Bin
 .../docs/images/analytics_modules.png         | Bin
 .../Analytics/docs/images/data_transition.png | Bin
 .../Analytics/docs/images/definition.png      | Bin
 .../docs/images/mbi_file_exchange.png         | Bin
 .../Magento/Analytics/docs/images/signup.png  | Bin
 .../Magento/Analytics/docs/images/update.png  | Bin
 .../Analytics/docs/images/update_request.png  | Bin
 app/code/Magento/Analytics/etc/acl.xml        |   0
 .../Magento/Analytics/etc/adminhtml/di.xml    |   0
 .../Magento/Analytics/etc/adminhtml/menu.xml  |   0
 .../Analytics/etc/adminhtml/routes.xml        |   0
 .../Analytics/etc/adminhtml/system.xml        |   0
 app/code/Magento/Analytics/etc/analytics.xml  |   0
 app/code/Magento/Analytics/etc/analytics.xsd  |   0
 app/code/Magento/Analytics/etc/config.xml     |   0
 app/code/Magento/Analytics/etc/crontab.xml    |   0
 app/code/Magento/Analytics/etc/di.xml         |   0
 app/code/Magento/Analytics/etc/module.xml     |   0
 app/code/Magento/Analytics/etc/reports.xml    |   0
 app/code/Magento/Analytics/etc/reports.xsd    |   0
 app/code/Magento/Analytics/etc/webapi.xml     |   0
 app/code/Magento/Analytics/i18n/en_US.csv     |   0
 app/code/Magento/Analytics/registration.php   |   0
 .../layout/adminhtml_dashboard_index.xml      |   0
 .../templates/dashboard/section.phtml         |   0
 app/code/Magento/Authorization/LICENSE.txt    |   0
 .../Magento/Authorization/LICENSE_AFL.txt     |   0
 .../Authorization/Model/Acl/AclRetriever.php  |   0
 .../Authorization/Model/Acl/Loader/Role.php   |   0
 .../Authorization/Model/Acl/Loader/Rule.php   |   0
 .../Authorization/Model/Acl/Role/Generic.php  |   0
 .../Authorization/Model/Acl/Role/Group.php    |   0
 .../Authorization/Model/Acl/Role/User.php     |   0
 .../Model/CompositeUserContext.php            |   0
 .../ResourceModel/Permissions/Collection.php  |   0
 .../Model/ResourceModel/Role.php              |   0
 .../Model/ResourceModel/Role/Collection.php   |   0
 .../ResourceModel/Role/Grid/Collection.php    |   0
 .../Model/ResourceModel/Rules.php             |   0
 .../Model/ResourceModel/Rules/Collection.php  |   0
 app/code/Magento/Authorization/Model/Role.php |   0
 .../Magento/Authorization/Model/Rules.php     |   0
 .../Model/UserContextInterface.php            |   0
 app/code/Magento/Authorization/README.md      |   0
 .../Setup/AuthorizationFactory.php            |   0
 .../Authorization/Setup/InstallData.php       |   0
 .../Authorization/Setup/InstallSchema.php     |   0
 .../Test/Unit/Model/Acl/AclRetrieverTest.php  |   0
 .../Test/Unit/Model/Acl/Loader/RoleTest.php   |   0
 .../Test/Unit/Model/Acl/Loader/RuleTest.php   |   0
 .../Unit/Model/CompositeUserContextTest.php   |   0
 .../Unit/Model/ResourceModel/RulesTest.php    |   0
 app/code/Magento/Authorization/composer.json  |   0
 app/code/Magento/Authorization/etc/di.xml     |   0
 app/code/Magento/Authorization/etc/module.xml |   0
 app/code/Magento/Authorization/i18n/en_US.csv |   0
 .../Magento/Authorization/registration.php    |   0
 .../Order/View/Info/FraudDetails.php          |   0
 .../Authorizenet/Block/Transparent/Iframe.php |   0
 .../Directpost/Payment/AddConfigured.php      |   0
 .../Directpost/Payment/Cancel.php             |   0
 .../Payment/ConfigureProductToAdd.php         |   0
 .../Payment/ConfigureQuoteItems.php           |   0
 .../Authorizenet/Directpost/Payment/Index.php |   0
 .../Directpost/Payment/LoadBlock.php          |   0
 .../Authorizenet/Directpost/Payment/Place.php |   0
 .../Directpost/Payment/ProcessData.php        |   0
 .../Directpost/Payment/Redirect.php           |   0
 .../Directpost/Payment/Reorder.php            |   0
 .../Directpost/Payment/ReturnQuote.php        |   0
 .../Authorizenet/Directpost/Payment/Save.php  |   0
 .../Directpost/Payment/ShowUpdateResult.php   |   0
 .../Authorizenet/Directpost/Payment/Start.php |   0
 .../Controller/Directpost/Payment.php         |   0
 .../Directpost/Payment/BackendResponse.php    |   0
 .../Controller/Directpost/Payment/Place.php   |   0
 .../Directpost/Payment/Redirect.php           |   0
 .../Directpost/Payment/Response.php           |   0
 .../Directpost/Payment/ReturnQuote.php        |   0
 .../Authorizenet/Helper/Backend/Data.php      |   0
 app/code/Magento/Authorizenet/Helper/Data.php |   0
 .../Authorizenet/Helper/DataFactory.php       |   0
 app/code/Magento/Authorizenet/LICENSE.txt     |   0
 app/code/Magento/Authorizenet/LICENSE_AFL.txt |   0
 .../Authorizenet/Model/Authorizenet.php       |   0
 app/code/Magento/Authorizenet/Model/Debug.php |   0
 .../Magento/Authorizenet/Model/Directpost.php |   0
 .../Authorizenet/Model/Directpost/Request.php |   0
 .../Model/Directpost/Request/Factory.php      |   0
 .../Model/Directpost/Response.php             |   0
 .../Model/Directpost/Response/Factory.php     |   0
 .../Authorizenet/Model/Directpost/Session.php |   0
 .../Magento/Authorizenet/Model/Request.php    |   0
 .../Authorizenet/Model/Request/Factory.php    |   0
 .../Model/ResourceModel/Debug.php             |   0
 .../Model/ResourceModel/Debug/Collection.php  |   0
 .../Magento/Authorizenet/Model/Response.php   |   0
 .../Authorizenet/Model/Response/Factory.php   |   0
 .../Authorizenet/Model/Source/Cctype.php      |   0
 .../Model/Source/PaymentAction.php            |   0
 .../Authorizenet/Model/TransactionService.php |   0
 .../Observer/AddFieldsToResponseObserver.php  |   0
 .../Observer/SaveOrderAfterSubmitObserver.php |   0
 .../UpdateAllEditIncrementsObserver.php       |   0
 app/code/Magento/Authorizenet/README.md       |   0
 .../Directpost/Payment/RedirectTest.php       |   0
 .../Directpost/Payment/PlaceTest.php          |   0
 .../Directpost/Payment/RedirectTest.php       |   0
 .../Test/Unit/Helper/Backend/DataTest.php     |   0
 .../Test/Unit/Helper/DataTest.php             |   0
 .../Model/Directpost/Request/FactoryTest.php  |   0
 .../Model/Directpost/Response/FactoryTest.php |   0
 .../Unit/Model/Directpost/ResponseTest.php    |   0
 .../Unit/Model/Directpost/SessionTest.php     |   0
 .../Test/Unit/Model/DirectpostTest.php        |   0
 .../Test/Unit/Model/Request/FactoryTest.php   |   0
 .../Test/Unit/Model/Response/FactoryTest.php  |   0
 .../Unit/Model/TransactionServiceTest.php     |   0
 .../AddFieldsToResponseObserverTest.php       |   0
 app/code/Magento/Authorizenet/composer.json   |   0
 .../Magento/Authorizenet/etc/adminhtml/di.xml |   0
 .../Authorizenet/etc/adminhtml/events.xml     |   0
 .../Authorizenet/etc/adminhtml/routes.xml     |   0
 .../Authorizenet/etc/adminhtml/system.xml     |   0
 app/code/Magento/Authorizenet/etc/config.xml  |   0
 app/code/Magento/Authorizenet/etc/di.xml      |   0
 .../Magento/Authorizenet/etc/frontend/di.xml  |   0
 .../Authorizenet/etc/frontend/events.xml      |   0
 .../Authorizenet/etc/frontend/page_types.xml  |   0
 .../Authorizenet/etc/frontend/routes.xml      |   0
 .../Authorizenet/etc/frontend/sections.xml    |   0
 app/code/Magento/Authorizenet/etc/module.xml  |   0
 app/code/Magento/Authorizenet/i18n/en_US.csv  |   0
 .../Magento/Authorizenet/registration.php     |   0
 ...thorizenet_directpost_payment_redirect.xml |   0
 .../layout/sales_order_create_index.xml       |   0
 ...order_create_load_block_billing_method.xml |   0
 .../adminhtml/layout/sales_order_view.xml     |   0
 .../templates/directpost/iframe.phtml         |   0
 .../adminhtml/templates/directpost/info.phtml |   0
 .../order/view/info/fraud_details.phtml       |   0
 .../view/adminhtml/web/js/direct-post.js      |   0
 ...net_directpost_payment_backendresponse.xml |   0
 ...thorizenet_directpost_payment_redirect.xml |   0
 ...thorizenet_directpost_payment_response.xml |   0
 .../frontend/layout/checkout_index_index.xml  |   0
 .../view/frontend/requirejs-config.js         |   0
 .../web/js/view/payment/authorizenet.js       |   0
 .../authorizenet-directpost.js                |   0
 .../payment/authorizenet-directpost.html      |   0
 .../Magento/Backend/App/AbstractAction.php    |   0
 app/code/Magento/Backend/App/Action.php       |   0
 .../Magento/Backend/App/Action/Context.php    |   0
 .../App/Action/Plugin/Authentication.php      |   0
 .../App/Action/Plugin/MassactionKey.php       |   0
 .../Backend/App/Area/FrontNameResolver.php    |   0
 app/code/Magento/Backend/App/BackendApp.php   |   0
 .../Magento/Backend/App/BackendAppList.php    |   0
 app/code/Magento/Backend/App/Config.php       |   0
 .../Magento/Backend/App/ConfigInterface.php   |   0
 app/code/Magento/Backend/App/DefaultPath.php  |   0
 .../Backend/App/Request/PathInfoProcessor.php |   0
 .../Backend/App/Response/Http/FileFactory.php |   0
 app/code/Magento/Backend/App/Router.php       |   0
 .../Backend/App/Router/NoRouteHandler.php     |   0
 app/code/Magento/Backend/App/UserConfig.php   |   0
 .../Magento/Backend/Block/AbstractBlock.php   |   0
 .../Magento/Backend/Block/Admin/Formkey.php   |   0
 .../Magento/Backend/Block/AnchorRenderer.php  |   0
 app/code/Magento/Backend/Block/Cache.php      |   0
 .../Backend/Block/Cache/Additional.php        |   0
 .../Block/Cache/Grid/Column/Statuses.php      |   0
 .../ProductionModeVisibilityChecker.php       |   0
 .../Block/Catalog/Product/Tab/Container.php   |   0
 app/code/Magento/Backend/Block/Context.php    |   0
 app/code/Magento/Backend/Block/Dashboard.php  |   0
 .../Block/Dashboard/AbstractDashboard.php     |   0
 .../Magento/Backend/Block/Dashboard/Bar.php   |   0
 .../Backend/Block/Dashboard/Diagrams.php      |   0
 .../Magento/Backend/Block/Dashboard/Graph.php |   0
 .../Magento/Backend/Block/Dashboard/Grid.php  |   0
 .../Magento/Backend/Block/Dashboard/Grids.php |   0
 .../Backend/Block/Dashboard/Orders/Grid.php   |   0
 .../Magento/Backend/Block/Dashboard/Sales.php |   0
 .../Searches/Renderer/Searchquery.php         |   0
 .../Backend/Block/Dashboard/Tab/Amounts.php   |   0
 .../Block/Dashboard/Tab/Customers/Most.php    |   0
 .../Block/Dashboard/Tab/Customers/Newest.php  |   0
 .../Backend/Block/Dashboard/Tab/Orders.php    |   0
 .../Block/Dashboard/Tab/Products/Ordered.php  |   0
 .../Block/Dashboard/Tab/Products/Viewed.php   |   0
 .../Backend/Block/Dashboard/Totals.php        |   0
 app/code/Magento/Backend/Block/Denied.php     |   0
 .../Magento/Backend/Block/GlobalSearch.php    |   0
 .../Magento/Backend/Block/Media/Uploader.php  |   0
 app/code/Magento/Backend/Block/Menu.php       |   0
 .../Magento/Backend/Block/MenuItemChecker.php |   0
 app/code/Magento/Backend/Block/Page.php       |   0
 .../Magento/Backend/Block/Page/Copyright.php  |   0
 .../Magento/Backend/Block/Page/Footer.php     |   0
 .../Magento/Backend/Block/Page/Header.php     |   0
 .../Magento/Backend/Block/Page/Notices.php    |   0
 .../Magento/Backend/Block/Page/RequireJs.php  |   0
 .../Block/Page/System/Config/Robots/Reset.php |   0
 .../Magento/Backend/Block/Store/Switcher.php  |   0
 .../Store/Switcher/Form/Renderer/Fieldset.php |   0
 .../Form/Renderer/Fieldset/Element.php        |   0
 .../Backend/Block/System/Account/Edit.php     |   0
 .../Block/System/Account/Edit/Form.php        |   0
 .../Backend/Block/System/Cache/Edit.php       |   0
 .../Backend/Block/System/Cache/Form.php       |   0
 .../Magento/Backend/Block/System/Design.php   |   0
 .../Backend/Block/System/Design/Edit.php      |   0
 .../Block/System/Design/Edit/Tab/General.php  |   0
 .../Backend/Block/System/Design/Edit/Tabs.php |   0
 .../Backend/Block/System/Store/Delete.php     |   0
 .../Block/System/Store/Delete/Form.php        |   0
 .../Block/System/Store/Delete/Group.php       |   0
 .../Block/System/Store/Delete/Website.php     |   0
 .../Backend/Block/System/Store/Edit.php       |   0
 .../Block/System/Store/Edit/AbstractForm.php  |   0
 .../Block/System/Store/Edit/Form/Group.php    |   0
 .../Block/System/Store/Edit/Form/Store.php    |   0
 .../Block/System/Store/Edit/Form/Website.php  |   0
 .../Block/System/Store/Grid/Render/Group.php  |   0
 .../Block/System/Store/Grid/Render/Store.php  |   0
 .../System/Store/Grid/Render/Website.php      |   0
 .../Backend/Block/System/Store/Store.php      |   0
 app/code/Magento/Backend/Block/Template.php   |   0
 .../Backend/Block/Template/Context.php        |   0
 .../Magento/Backend/Block/Text/ListText.php   |   0
 app/code/Magento/Backend/Block/Widget.php     |   0
 .../Backend/Block/Widget/Accordion.php        |   0
 .../Backend/Block/Widget/Accordion/Item.php   |   0
 .../Backend/Block/Widget/Breadcrumbs.php      |   0
 .../Magento/Backend/Block/Widget/Button.php   |   0
 .../Block/Widget/Button/ButtonList.php        |   0
 .../Block/Widget/Button/ContextInterface.php  |   0
 .../Backend/Block/Widget/Button/Item.php      |   0
 .../Block/Widget/Button/SplitButton.php       |   0
 .../Block/Widget/Button/Toolbar/Container.php |   0
 .../Block/Widget/Button/ToolbarInterface.php  |   0
 .../Backend/Block/Widget/Container.php        |   0
 .../Block/Widget/ContainerInterface.php       |   0
 .../Magento/Backend/Block/Widget/Context.php  |   0
 .../Magento/Backend/Block/Widget/Form.php     |   0
 .../Backend/Block/Widget/Form/Container.php   |   0
 .../Backend/Block/Widget/Form/Element.php     |   0
 .../Block/Widget/Form/Element/Dependence.php  |   0
 .../Block/Widget/Form/Element/Gallery.php     |   0
 .../Backend/Block/Widget/Form/Generic.php     |   0
 .../Block/Widget/Form/Renderer/Element.php    |   0
 .../Block/Widget/Form/Renderer/Fieldset.php   |   0
 .../Widget/Form/Renderer/Fieldset/Element.php |   0
 .../Magento/Backend/Block/Widget/Grid.php     |   0
 .../Backend/Block/Widget/Grid/Column.php      |   0
 .../Block/Widget/Grid/Column/Extended.php     |   0
 .../Grid/Column/Filter/AbstractFilter.php     |   0
 .../Widget/Grid/Column/Filter/Checkbox.php    |   0
 .../Widget/Grid/Column/Filter/Country.php     |   0
 .../Block/Widget/Grid/Column/Filter/Date.php  |   0
 .../Widget/Grid/Column/Filter/Datetime.php    |   0
 .../Grid/Column/Filter/FilterInterface.php    |   0
 .../Widget/Grid/Column/Filter/Massaction.php  |   0
 .../Block/Widget/Grid/Column/Filter/Price.php |   0
 .../Block/Widget/Grid/Column/Filter/Radio.php |   0
 .../Block/Widget/Grid/Column/Filter/Range.php |   0
 .../Widget/Grid/Column/Filter/Select.php      |   0
 .../Grid/Column/Filter/Select/Extended.php    |   0
 .../Widget/Grid/Column/Filter/SkipList.php    |   0
 .../Block/Widget/Grid/Column/Filter/Store.php |   0
 .../Block/Widget/Grid/Column/Filter/Text.php  |   0
 .../Block/Widget/Grid/Column/Filter/Theme.php |   0
 .../Block/Widget/Grid/Column/Multistore.php   |   0
 .../Grid/Column/Renderer/AbstractRenderer.php |   0
 .../Widget/Grid/Column/Renderer/Action.php    |   0
 .../Widget/Grid/Column/Renderer/Button.php    |   0
 .../Widget/Grid/Column/Renderer/Checkbox.php  |   0
 .../Column/Renderer/Checkboxes/Extended.php   |   0
 .../Widget/Grid/Column/Renderer/Concat.php    |   0
 .../Widget/Grid/Column/Renderer/Country.php   |   0
 .../Widget/Grid/Column/Renderer/Currency.php  |   0
 .../Widget/Grid/Column/Renderer/Date.php      |   0
 .../Widget/Grid/Column/Renderer/Datetime.php  |   0
 .../Grid/Column/Renderer/DraggableHandle.php  |   0
 .../Widget/Grid/Column/Renderer/Input.php     |   0
 .../Block/Widget/Grid/Column/Renderer/Ip.php  |   0
 .../Widget/Grid/Column/Renderer/Longtext.php  |   0
 .../Grid/Column/Renderer/Massaction.php       |   0
 .../Widget/Grid/Column/Renderer/Number.php    |   0
 .../Widget/Grid/Column/Renderer/Options.php   |   0
 .../Column/Renderer/Options/Converter.php     |   0
 .../Grid/Column/Renderer/Options/Extended.php |   0
 .../Widget/Grid/Column/Renderer/Price.php     |   0
 .../Widget/Grid/Column/Renderer/Radio.php     |   0
 .../Grid/Column/Renderer/Radio/Extended.php   |   0
 .../Column/Renderer/RendererInterface.php     |   0
 .../Widget/Grid/Column/Renderer/Select.php    |   0
 .../Grid/Column/Renderer/Select/Extended.php  |   0
 .../Widget/Grid/Column/Renderer/Store.php     |   0
 .../Widget/Grid/Column/Renderer/Text.php      |   0
 .../Widget/Grid/Column/Renderer/Wrapline.php  |   0
 .../Backend/Block/Widget/Grid/ColumnSet.php   |   0
 .../Backend/Block/Widget/Grid/Container.php   |   0
 .../Backend/Block/Widget/Grid/Export.php      |   0
 .../Block/Widget/Grid/ExportInterface.php     |   0
 .../Backend/Block/Widget/Grid/Extended.php    |   0
 .../Backend/Block/Widget/Grid/Massaction.php  |   0
 .../Grid/Massaction/AbstractMassaction.php    |   0
 .../Widget/Grid/Massaction/Additional.php     |   0
 .../Block/Widget/Grid/Massaction/Extended.php |   0
 .../Block/Widget/Grid/Massaction/Item.php     |   0
 .../Item/Additional/AdditionalInterface.php   |   0
 .../Item/Additional/DefaultAdditional.php     |   0
 .../Massaction/VisibilityCheckerInterface.php |   0
 .../Backend/Block/Widget/Grid/Serializer.php  |   0
 app/code/Magento/Backend/Block/Widget/Tab.php |   0
 .../Backend/Block/Widget/Tab/TabInterface.php |   0
 .../Magento/Backend/Block/Widget/Tabs.php     |   0
 .../Console/Command/AbstractCacheCommand.php  |   0
 .../Command/AbstractCacheManageCommand.php    |   0
 .../Command/AbstractCacheSetCommand.php       |   0
 .../AbstractCacheTypeManageCommand.php        |   0
 .../Console/Command/CacheCleanCommand.php     |   0
 .../Console/Command/CacheDisableCommand.php   |   0
 .../Console/Command/CacheEnableCommand.php    |   0
 .../Console/Command/CacheFlushCommand.php     |   0
 .../Console/Command/CacheStatusCommand.php    |   0
 .../Controller/Adminhtml/Ajax/Translate.php   |   0
 .../Backend/Controller/Adminhtml/Auth.php     |   0
 .../Adminhtml/Auth/DeniedIframe.php           |   0
 .../Controller/Adminhtml/Auth/DeniedJson.php  |   0
 .../Controller/Adminhtml/Auth/Login.php       |   0
 .../Controller/Adminhtml/Auth/Logout.php      |   0
 .../Adminhtml/BackendApp/Redirect.php         |   0
 .../Backend/Controller/Adminhtml/Cache.php    |   0
 .../Adminhtml/Cache/CleanImages.php           |   0
 .../Controller/Adminhtml/Cache/CleanMedia.php |   0
 .../Adminhtml/Cache/CleanStaticFiles.php      |   0
 .../Controller/Adminhtml/Cache/FlushAll.php   |   0
 .../Adminhtml/Cache/FlushSystem.php           |   0
 .../Controller/Adminhtml/Cache/Index.php      |   0
 .../Adminhtml/Cache/MassDisable.php           |   0
 .../Controller/Adminhtml/Cache/MassEnable.php |   0
 .../Adminhtml/Cache/MassRefresh.php           |   0
 .../Controller/Adminhtml/Dashboard.php        |   0
 .../Adminhtml/Dashboard/AjaxBlock.php         |   0
 .../Adminhtml/Dashboard/CustomersMost.php     |   0
 .../Adminhtml/Dashboard/CustomersNewest.php   |   0
 .../Controller/Adminhtml/Dashboard/Index.php  |   0
 .../Adminhtml/Dashboard/ProductsViewed.php    |   0
 .../Adminhtml/Dashboard/RefreshStatistics.php |   0
 .../Controller/Adminhtml/Dashboard/Tunnel.php |   0
 .../Backend/Controller/Adminhtml/Denied.php   |   0
 .../Backend/Controller/Adminhtml/Index.php    |   0
 .../Adminhtml/Index/ChangeLocale.php          |   0
 .../Adminhtml/Index/GlobalSearch.php          |   0
 .../Controller/Adminhtml/Index/Index.php      |   0
 .../Controller/Adminhtml/Noroute/Index.php    |   0
 .../Backend/Controller/Adminhtml/System.php   |   0
 .../Controller/Adminhtml/System/Account.php   |   0
 .../Adminhtml/System/Account/Index.php        |   0
 .../Adminhtml/System/Account/Save.php         |   0
 .../Controller/Adminhtml/System/Design.php    |   0
 .../Adminhtml/System/Design/Delete.php        |   0
 .../Adminhtml/System/Design/Edit.php          |   0
 .../Adminhtml/System/Design/Grid.php          |   0
 .../Adminhtml/System/Design/Index.php         |   0
 .../Adminhtml/System/Design/NewAction.php     |   0
 .../Adminhtml/System/Design/Save.php          |   0
 .../Controller/Adminhtml/System/Index.php     |   0
 .../Controller/Adminhtml/System/SetStore.php  |   0
 .../Controller/Adminhtml/System/Store.php     |   0
 .../Adminhtml/System/Store/DeleteGroup.php    |   0
 .../System/Store/DeleteGroupPost.php          |   0
 .../Adminhtml/System/Store/DeleteStore.php    |   0
 .../System/Store/DeleteStorePost.php          |   0
 .../Adminhtml/System/Store/DeleteWebsite.php  |   0
 .../System/Store/DeleteWebsitePost.php        |   0
 .../Adminhtml/System/Store/EditGroup.php      |   0
 .../Adminhtml/System/Store/EditStore.php      |   0
 .../Adminhtml/System/Store/EditWebsite.php    |   0
 .../Adminhtml/System/Store/Index.php          |   0
 .../Adminhtml/System/Store/NewGroup.php       |   0
 .../Adminhtml/System/Store/NewStore.php       |   0
 .../Adminhtml/System/Store/NewWebsite.php     |   0
 .../Adminhtml/System/Store/Save.php           |   0
 app/code/Magento/Backend/Cron/CleanCache.php  |   0
 .../Helper/Dashboard/AbstractDashboard.php    |   0
 .../Magento/Backend/Helper/Dashboard/Data.php |   0
 .../Backend/Helper/Dashboard/Order.php        |   0
 app/code/Magento/Backend/Helper/Data.php      |   0
 app/code/Magento/Backend/Helper/Js.php        |   0
 app/code/Magento/Backend/LICENSE.txt          |   0
 app/code/Magento/Backend/LICENSE_AFL.txt      |   0
 .../Magento/Backend/Model/AdminPathConfig.php |   0
 app/code/Magento/Backend/Model/Auth.php       |   0
 .../Auth/Credential/StorageInterface.php      |   0
 .../Magento/Backend/Model/Auth/Session.php    |   0
 .../Backend/Model/Auth/StorageInterface.php   |   0
 .../Model/Authorization/RoleLocator.php       |   0
 .../Cache/ResourceModel/Grid/Collection.php   |   0
 .../Config/SessionLifetime/BackendModel.php   |   0
 .../Magento/Backend/Model/Locale/Manager.php  |   0
 .../Magento/Backend/Model/Locale/Resolver.php |   0
 app/code/Magento/Backend/Model/Menu.php       |   0
 .../Backend/Model/Menu/AbstractDirector.php   |   0
 .../Magento/Backend/Model/Menu/Builder.php    |   0
 .../Model/Menu/Builder/AbstractCommand.php    |   0
 .../Model/Menu/Builder/Command/Add.php        |   0
 .../Model/Menu/Builder/Command/Remove.php     |   0
 .../Model/Menu/Builder/Command/Update.php     |   0
 .../Model/Menu/Builder/CommandFactory.php     |   0
 .../Magento/Backend/Model/Menu/Config.php     |   0
 .../Backend/Model/Menu/Config/Converter.php   |   0
 .../Backend/Model/Menu/Config/Menu/Dom.php    |   0
 .../Backend/Model/Menu/Config/Reader.php      |   0
 .../Model/Menu/Config/SchemaLocator.php       |   0
 .../Backend/Model/Menu/Director/Director.php  |   0
 .../Backend/Model/Menu/Filter/Iterator.php    |   0
 app/code/Magento/Backend/Model/Menu/Item.php  |   0
 .../Backend/Model/Menu/Item/Factory.php       |   0
 .../Backend/Model/Menu/Item/Validator.php     |   0
 .../Magento/Backend/Model/Menu/Iterator.php   |   0
 .../Backend/Model/ResourceModel/Translate.php |   0
 .../Magento/Backend/Model/Search/Customer.php |   0
 .../Magento/Backend/Model/Search/Order.php    |   0
 app/code/Magento/Backend/Model/Session.php    |   0
 .../Backend/Model/Session/AdminConfig.php     |   0
 .../Magento/Backend/Model/Session/Quote.php   |   0
 .../Backend/Model/Setup/MenuBuilder.php       |   0
 .../Backend/Model/Translate/Inline/Config.php |   0
 app/code/Magento/Backend/Model/Url.php        |   0
 .../Backend/Model/Url/ScopeResolver.php       |   0
 .../Magento/Backend/Model/UrlInterface.php    |   0
 .../Backend/Model/View/Layout/Builder.php     |   0
 .../Model/View/Layout/Reader/Block.php        |   0
 .../Model/View/Layout/StructureManager.php    |   0
 .../Backend/Model/View/Page/Builder.php       |   0
 .../Backend/Model/View/Result/Forward.php     |   0
 .../Backend/Model/View/Result/Page.php        |   0
 .../Backend/Model/View/Result/Redirect.php    |   0
 .../Model/View/Result/RedirectFactory.php     |   0
 .../Model/Widget/Grid/AbstractTotals.php      |   0
 .../Backend/Model/Widget/Grid/Parser.php      |   0
 .../Widget/Grid/Row/GeneratorInterface.php    |   0
 .../Model/Widget/Grid/Row/UrlGenerator.php    |   0
 .../Widget/Grid/Row/UrlGeneratorFactory.php   |   0
 .../Model/Widget/Grid/Row/UrlGeneratorId.php  |   0
 .../Backend/Model/Widget/Grid/SubTotals.php   |   0
 .../Backend/Model/Widget/Grid/Totals.php      |   0
 .../Model/Widget/Grid/TotalsInterface.php     |   0
 app/code/Magento/Backend/README.md            |   0
 .../Backend/Service/V1/ModuleService.php      |   0
 .../Service/V1/ModuleServiceInterface.php     |   0
 .../Backend/Setup/ConfigOptionsList.php       |   0
 .../App/Action/Plugin/AuthenticationTest.php  |   0
 .../App/Action/Plugin/MassactionKeyTest.php   |   0
 .../Test/Unit/App/Action/Stub/ActionStub.php  |   0
 .../Unit/App/Area/FrontNameResolverTest.php   |   0
 .../Area/Request/PathInfoProcessorTest.php    |   0
 .../Backend/Test/Unit/App/ConfigTest.php      |   0
 .../App/Response/Http/FileFactoryTest.php     |   0
 .../Unit/App/Router/NoRouteHandlerTest.php    |   0
 .../Backend/Test/Unit/App/UserConfigTest.php  |   0
 .../Test/Unit/Block/AnchorRendererTest.php    |   0
 .../Test/Unit/Block/Cache/AdditionalTest.php  |   0
 .../Test/Unit/Block/MenuItemCheckerTest.php   |   0
 .../Backend/Test/Unit/Block/MenuTest.php      |   0
 .../Page/System/Config/Robots/ResetTest.php   |   0
 .../Test/Unit/Block/Store/SwitcherTest.php    |   0
 .../Unit/Block/Widget/Button/SplitTest.php    |   0
 .../Test/Unit/Block/Widget/ButtonTest.php     |   0
 .../Unit/Block/Widget/Form/ContainerTest.php  |   0
 .../Test/Unit/Block/Widget/FormTest.php       |   0
 .../Widget/Grid/Column/Filter/DateTest.php    |   0
 .../Grid/Column/Filter/DatetimeTest.php       |   0
 .../Widget/Grid/Column/Filter/StoreTest.php   |   0
 .../Widget/Grid/Column/Filter/TextTest.php    |   0
 .../Widget/Grid/Column/MultistoreTest.php     |   0
 .../Column/Renderer/AbstractRendererTest.php  |   0
 .../Grid/Column/Renderer/ConcatTest.php       |   0
 .../Grid/Column/Renderer/CurrencyTest.php     |   0
 .../Column/Renderer/Radio/ExtendedTest.php    |   0
 .../Widget/Grid/Column/Renderer/RadioTest.php |   0
 .../Unit/Block/Widget/Grid/ColumnSetTest.php  |   0
 .../Unit/Block/Widget/Grid/ColumnTest.php     |   0
 .../Unit/Block/Widget/Grid/ExtendedTest.php   |   0
 .../Widget/Grid/Massaction/ExtendedTest.php   |   0
 .../Unit/Block/Widget/Grid/MassactionTest.php |   0
 .../Unit/Block/Widget/Grid/SerializerTest.php |   0
 .../Test/Unit/Block/Widget/TabTest.php        |   0
 .../Command/AbstractCacheCommandTest.php      |   0
 .../AbstractCacheManageCommandTest.php        |   0
 .../Command/AbstractCacheSetCommandTest.php   |   0
 .../Console/Command/CacheCleanCommandTest.php |   0
 .../Command/CacheDisableCommandTest.php       |   0
 .../Command/CacheEnableCommandTest.php        |   0
 .../Console/Command/CacheFlushCommandTest.php |   0
 .../Command/CacheStatusCommandTest.php        |   0
 .../Adminhtml/Cache/CleanMediaTest.php        |   0
 .../Adminhtml/Cache/CleanStaticFilesTest.php  |   0
 .../Adminhtml/Cache/MassDisableTest.php       |   0
 .../Adminhtml/Cache/MassEnableTest.php        |   0
 .../Adminhtml/Dashboard/AbstractTestCase.php  |   0
 .../Adminhtml/Dashboard/CustomersMostTest.php |   0
 .../Dashboard/CustomersNewestTest.php         |   0
 .../Dashboard/ProductsViewedTest.php          |   0
 .../Dashboard/RefreshStatisticsTest.php       |   0
 .../Adminhtml/Dashboard/TunnelTest.php        |   0
 .../Adminhtml/System/Account/SaveTest.php     |   0
 .../Adminhtml/System/Store/IndexTest.php      |   0
 .../Backend/Test/Unit/Cron/CleanCacheTest.php |   0
 .../Backend/Test/Unit/Helper/DataTest.php     |   0
 .../Test/Unit/Model/AdminPathConfigTest.php   |   0
 .../Test/Unit/Model/Auth/SessionTest.php      |   0
 .../Backend/Test/Unit/Model/AuthTest.php      |   0
 .../Model/Authorization/RoleLocatorTest.php   |   0
 .../Test/Unit/Model/Locale/ManagerTest.php    |   0
 .../Menu/Builder/AbstractCommandTest.php      |   0
 .../Model/Menu/Builder/Command/AddTest.php    |   0
 .../Model/Menu/Builder/Command/RemoveTest.php |   0
 .../Model/Menu/Builder/Command/UpdateTest.php |   0
 .../Test/Unit/Model/Menu/BuilderTest.php      |   0
 .../Unit/Model/Menu/Config/ConverterTest.php  |   0
 .../Model/Menu/Config/SchemaLocatorTest.php   |   0
 .../Test/Unit/Model/Menu/Config/XsdTest.php   |   0
 .../Config/_files/invalidMenuXmlArray.php     |   0
 .../Model/Menu/Config/_files/invalid_menu.xml |   0
 .../Model/Menu/Config/_files/valid_menu.xml   |   0
 .../Test/Unit/Model/Menu/ConfigTest.php       |   0
 .../Unit/Model/Menu/Director/DirectorTest.php |   0
 .../Unit/Model/Menu/Filter/IteratorTest.php   |   0
 .../Unit/Model/Menu/Item/ValidatorTest.php    |   0
 .../Backend/Test/Unit/Model/Menu/ItemTest.php |   0
 .../Test/Unit/Model/MenuBuilderTest.php       |   0
 .../Backend/Test/Unit/Model/MenuTest.php      |   0
 .../Unit/Model/Session/AdminConfigTest.php    |   0
 .../Test/Unit/Model/Session/QuoteTest.php     |   0
 .../Model/Translate/Inline/ConfigTest.php     |   0
 .../Backend/Test/Unit/Model/UrlTest.php       |   0
 .../View/Layout/StructureManagerTest.php      |   0
 .../Test/Unit/Model/View/Result/PageTest.php  |   0
 .../Unit/Model/View/Result/RedirectTest.php   |   0
 .../Model/Widget/Grid/AbstractTotalsTest.php  |   0
 .../Unit/Model/Widget/Grid/ParserTest.php     |   0
 .../Widget/Grid/Row/UrlGeneratorTest.php      |   0
 .../Unit/Model/Widget/Grid/SubTotalsTest.php  |   0
 .../Unit/Model/Widget/Grid/TotalsTest.php     |   0
 .../_files/menu_item_constructor_data.php     |   0
 .../Test/Unit/Model/_files/menu_item_data.php |   0
 .../Test/Unit/Model/_files/menu_merged.php    |   0
 .../Test/Unit/Model/_files/menu_merged.xml    |   0
 .../Test/Unit/Setup/ConfigOptionsListTest.php |   0
 app/code/Magento/Backend/composer.json        |   0
 app/code/Magento/Backend/etc/acl.xml          |   0
 app/code/Magento/Backend/etc/adminhtml/di.xml |   0
 .../Magento/Backend/etc/adminhtml/menu.xml    |   0
 .../Magento/Backend/etc/adminhtml/routes.xml  |   0
 .../Magento/Backend/etc/adminhtml/system.xml  |   0
 app/code/Magento/Backend/etc/config.xml       |   0
 app/code/Magento/Backend/etc/crontab.xml      |   0
 app/code/Magento/Backend/etc/di.xml           |   0
 app/code/Magento/Backend/etc/menu.xsd         |   0
 app/code/Magento/Backend/etc/module.xml       |   0
 app/code/Magento/Backend/etc/webapi.xml       |   0
 app/code/Magento/Backend/i18n/en_US.csv       |   0
 app/code/Magento/Backend/registration.php     |   0
 .../view/adminhtml/layout/admin_login.xml     |   0
 .../adminhtml/layout/adminhtml_auth_login.xml |   0
 .../layout/adminhtml_cache_block.xml          |   0
 .../layout/adminhtml_cache_index.xml          |   0
 .../adminhtml_dashboard_customersmost.xml     |   0
 .../adminhtml_dashboard_customersnewest.xml   |   0
 .../layout/adminhtml_dashboard_index.xml      |   0
 .../adminhtml_dashboard_productsviewed.xml    |   0
 .../adminhtml/layout/adminhtml_denied.xml     |   0
 .../adminhtml/layout/adminhtml_noroute.xml    |   0
 .../layout/adminhtml_system_account_index.xml |   0
 .../layout/adminhtml_system_design_edit.xml   |   0
 .../layout/adminhtml_system_design_grid.xml   |   0
 .../adminhtml_system_design_grid_block.xml    |   0
 .../layout/adminhtml_system_design_index.xml  |   0
 .../adminhtml_system_store_deletestore.xml    |   0
 .../adminhtml_system_store_editstore.xml      |   0
 .../adminhtml_system_store_grid_block.xml     |   0
 .../layout/adminhtml_system_store_index.xml   |   0
 .../Backend/view/adminhtml/layout/default.xml |   0
 .../Backend/view/adminhtml/layout/editor.xml  |   0
 .../Backend/view/adminhtml/layout/empty.xml   |   0
 .../Backend/view/adminhtml/layout/formkey.xml |   0
 .../view/adminhtml/layout/overlay_popup.xml   |   0
 .../Backend/view/adminhtml/layout/popup.xml   |   0
 .../view/adminhtml/requirejs-config.js        |   0
 .../templates/admin/access_denied.phtml       |   0
 .../templates/admin/delete_confirm.phtml      |   0
 .../adminhtml/templates/admin/formkey.phtml   |   0
 .../adminhtml/templates/admin/login.phtml     |   0
 .../templates/admin/login_buttons.phtml       |   0
 .../templates/admin/overlay_popup.phtml       |   0
 .../view/adminhtml/templates/admin/page.phtml |   0
 .../templates/admin/save_confirm.phtml        |   0
 .../adminhtml/templates/dashboard/graph.phtml |   0
 .../templates/dashboard/graph/disabled.phtml  |   0
 .../adminhtml/templates/dashboard/grid.phtml  |   0
 .../adminhtml/templates/dashboard/index.phtml |   0
 .../templates/dashboard/salebar.phtml         |   0
 .../templates/dashboard/searches.phtml        |   0
 .../templates/dashboard/store/switcher.phtml  |   0
 .../templates/dashboard/totalbar.phtml        |   0
 .../totalbar/refreshstatistics.phtml          |   0
 .../adminhtml/templates/media/uploader.phtml  |   0
 .../view/adminhtml/templates/menu.phtml       |   0
 .../adminhtml/templates/page/copyright.phtml  |   0
 .../adminhtml/templates/page/footer.phtml     |   0
 .../adminhtml/templates/page/header.phtml     |   0
 .../templates/page/js/calendar.phtml          |   0
 .../templates/page/js/components.phtml        |   0
 .../templates/page/js/require_js.phtml        |   0
 .../adminhtml/templates/page/notices.phtml    |   0
 .../adminhtml/templates/page/report.phtml     |   0
 .../adminhtml/templates/pageactions.phtml     |   0
 .../adminhtml/templates/store/switcher.phtml  |   0
 .../switcher/form/renderer/fieldset.phtml     |   0
 .../form/renderer/fieldset/element.phtml      |   0
 .../templates/system/autocomplete.phtml       |   0
 .../templates/system/cache/additional.phtml   |   0
 .../templates/system/cache/edit.phtml         |   0
 .../templates/system/design/edit.phtml        |   0
 .../templates/system/design/index.phtml       |   0
 .../adminhtml/templates/system/search.phtml   |   0
 .../system/shipping/applicable_country.phtml  |   0
 .../templates/widget/accordion.phtml          |   0
 .../templates/widget/breadcrumbs.phtml        |   0
 .../adminhtml/templates/widget/button.phtml   |   0
 .../templates/widget/button/split.phtml       |   0
 .../adminhtml/templates/widget/form.phtml     |   0
 .../templates/widget/form/container.phtml     |   0
 .../templates/widget/form/element.phtml       |   0
 .../widget/form/element/gallery.phtml         |   0
 .../widget/form/renderer/element.phtml        |   0
 .../widget/form/renderer/fieldset.phtml       |   0
 .../form/renderer/fieldset/element.phtml      |   0
 .../adminhtml/templates/widget/grid.phtml     |   0
 .../templates/widget/grid/column_set.phtml    |   0
 .../templates/widget/grid/container.phtml     |   0
 .../widget/grid/container/empty.phtml         |   0
 .../templates/widget/grid/export.phtml        |   0
 .../templates/widget/grid/extended.phtml      |   0
 .../templates/widget/grid/massaction.phtml    |   0
 .../widget/grid/massaction_extended.phtml     |   0
 .../templates/widget/grid/serializer.phtml    |   0
 .../adminhtml/templates/widget/tabs.phtml     |   0
 .../templates/widget/tabshoriz.phtml          |   0
 .../adminhtml/templates/widget/tabsleft.phtml |   0
 .../templates/widget/view/container.phtml     |   0
 .../ui_component/design_config_form.xml       |   0
 .../ui_component/design_config_listing.xml    |   0
 .../web/images/draggable-handle-bg.png        | Bin
 .../web/images/draggable-handle-vertical.png  | Bin
 .../web/images/gallery-image-base-label.png   | Bin
 .../web/images/gallery-image-panel-corner.png | Bin
 .../web/images/image-placeholder.png          | Bin
 .../view/adminhtml/web/js/bootstrap/editor.js |   0
 .../adminhtml/web/js/delete-with-confirm.js   |   0
 .../view/adminhtml/web/js/media-uploader.js   |   0
 .../adminhtml/web/js/save-with-confirm.js     |   0
 .../view/adminhtml/web/js/validate-store.js   |   0
 .../dynamic-rows/cells/action-delete.html     |   0
 .../web/template/dynamic-rows/grid.html       |   0
 .../element/helper/fallback-reset-link.html   |   0
 .../Magento/Backup/Block/Adminhtml/Backup.php |   0
 .../Backup/Block/Adminhtml/Dialogs.php        |   0
 .../Grid/Column/Renderer/Download.php         |   0
 .../Block/Adminhtml/Grid/Column/Rollback.php  |   0
 .../Backup/Controller/Adminhtml/Index.php     |   0
 .../Controller/Adminhtml/Index/Create.php     |   0
 .../Controller/Adminhtml/Index/Download.php   |   0
 .../Controller/Adminhtml/Index/Grid.php       |   0
 .../Controller/Adminhtml/Index/Index.php      |   0
 .../Controller/Adminhtml/Index/MassDelete.php |   0
 .../Controller/Adminhtml/Index/Rollback.php   |   0
 app/code/Magento/Backup/Cron/SystemBackup.php |   0
 app/code/Magento/Backup/Helper/Data.php       |   0
 app/code/Magento/Backup/LICENSE.txt           |   0
 app/code/Magento/Backup/LICENSE_AFL.txt       |   0
 app/code/Magento/Backup/Model/Backup.php      |   0
 .../Magento/Backup/Model/BackupFactory.php    |   0
 .../Backup/Model/Config/Backend/Cron.php      |   0
 .../Backup/Model/Config/Source/Type.php       |   0
 app/code/Magento/Backup/Model/Db.php          |   0
 .../Magento/Backup/Model/Fs/Collection.php    |   0
 .../Magento/Backup/Model/Grid/Options.php     |   0
 .../Magento/Backup/Model/ResourceModel/Db.php |   0
 .../Backup/Model/ResourceModel/Helper.php     |   0
 app/code/Magento/Backup/README.md             |   0
 .../Adminhtml/Index/DownloadTest.php          |   0
 .../Adminhtml/Index/RollbackTest.php          |   0
 .../Test/Unit/Cron/SystemBackupTest.php       |   0
 .../Backup/Test/Unit/Helper/DataTest.php      |   0
 .../Test/Unit/Model/BackupFactoryTest.php     |   0
 .../Backup/Test/Unit/Model/BackupTest.php     |   0
 .../Test/Unit/Model/Fs/CollectionTest.php     |   0
 app/code/Magento/Backup/composer.json         |   0
 app/code/Magento/Backup/etc/acl.xml           |   0
 .../Magento/Backup/etc/adminhtml/menu.xml     |   0
 .../Magento/Backup/etc/adminhtml/routes.xml   |   0
 .../Magento/Backup/etc/adminhtml/system.xml   |   0
 app/code/Magento/Backup/etc/crontab.xml       |   0
 app/code/Magento/Backup/etc/di.xml            |   0
 app/code/Magento/Backup/etc/module.xml        |   0
 app/code/Magento/Backup/i18n/en_US.csv        |   0
 app/code/Magento/Backup/registration.php      |   0
 .../adminhtml/layout/backup_index_block.xml   |   0
 .../adminhtml/layout/backup_index_grid.xml    |   0
 .../adminhtml/layout/backup_index_index.xml   |   0
 .../adminhtml/templates/backup/dialogs.phtml  |   0
 .../adminhtml/templates/backup/left.phtml     |   0
 .../adminhtml/templates/backup/list.phtml     |   0
 .../Block/Adminhtml/Form/Field/CcTypes.php    |   0
 .../Block/Adminhtml/Form/Field/Countries.php  |   0
 .../Form/Field/CountryCreditCard.php          |   0
 .../Braintree/Block/Customer/CardRenderer.php |   0
 .../Customer/PayPal/VaultTokenRenderer.php    |   0
 app/code/Magento/Braintree/Block/Form.php     |   0
 app/code/Magento/Braintree/Block/Info.php     |   0
 app/code/Magento/Braintree/Block/Payment.php  |   0
 .../Magento/Braintree/Block/Paypal/Button.php |   0
 .../Block/Paypal/Checkout/Review.php          |   0
 .../Adminhtml/Payment/GetClientToken.php      |   0
 .../Controller/Adminhtml/Payment/GetNonce.php |   0
 .../Controller/Adminhtml/Report/Index.php     |   0
 .../Braintree/Controller/Payment/GetNonce.php |   0
 .../Controller/Paypal/AbstractAction.php      |   0
 .../Controller/Paypal/PlaceOrder.php          |   0
 .../Braintree/Controller/Paypal/Review.php    |   0
 .../Controller/Paypal/SaveShippingMethod.php  |   0
 .../Command/CaptureStrategyCommand.php        |   0
 .../Command/GetPaymentNonceCommand.php        |   0
 .../Gateway/Config/CanVoidHandler.php         |   0
 .../Braintree/Gateway/Config/Config.php       |   0
 .../Gateway/Config/PayPal/Config.php          |   0
 .../Http/Client/AbstractTransaction.php       |   0
 .../Gateway/Http/Client/TransactionRefund.php |   0
 .../Gateway/Http/Client/TransactionSale.php   |   0
 .../Client/TransactionSubmitForSettlement.php |   0
 .../Gateway/Http/Client/TransactionVoid.php   |   0
 .../Gateway/Http/TransferFactory.php          |   0
 .../Gateway/Request/AddressDataBuilder.php    |   0
 .../Gateway/Request/CaptureDataBuilder.php    |   0
 .../Gateway/Request/ChannelDataBuilder.php    |   0
 .../Gateway/Request/CustomerDataBuilder.php   |   0
 .../Gateway/Request/DescriptorDataBuilder.php |   0
 .../Request/KountPaymentDataBuilder.php       |   0
 .../Request/PayPal/DeviceDataBuilder.php      |   0
 .../Request/PayPal/VaultDataBuilder.php       |   0
 .../Gateway/Request/PaymentDataBuilder.php    |   0
 .../Gateway/Request/RefundDataBuilder.php     |   0
 .../Gateway/Request/SettlementDataBuilder.php |   0
 .../Gateway/Request/StoreConfigBuilder.php    |   0
 .../Request/ThreeDSecureDataBuilder.php       |   0
 .../Request/VaultCaptureDataBuilder.php       |   0
 .../Gateway/Request/VaultDataBuilder.php      |   0
 .../Gateway/Request/VoidDataBuilder.php       |   0
 .../Gateway/Response/CardDetailsHandler.php   |   0
 .../Response/PayPal/VaultDetailsHandler.php   |   0
 .../Gateway/Response/PayPalDetailsHandler.php |   0
 .../Response/PaymentDetailsHandler.php        |   0
 .../Gateway/Response/RefundHandler.php        |   0
 .../Gateway/Response/RiskDataHandler.php      |   0
 .../Response/ThreeDSecureDetailsHandler.php   |   0
 .../Gateway/Response/TransactionIdHandler.php |   0
 .../Gateway/Response/VaultDetailsHandler.php  |   0
 .../Gateway/Response/VoidHandler.php          |   0
 .../Braintree/Gateway/SubjectReader.php       |   0
 .../Gateway/Validator/ErrorCodeValidator.php  |   0
 .../Validator/GeneralResponseValidator.php    |   0
 .../PaymentNonceResponseValidator.php         |   0
 .../Gateway/Validator/ResponseValidator.php   |   0
 app/code/Magento/Braintree/Helper/CcType.php  |   0
 app/code/Magento/Braintree/Helper/Country.php |   0
 app/code/Magento/Braintree/LICENSE.txt        |   0
 app/code/Magento/Braintree/LICENSE_AFL.txt    |   0
 .../Model/Adapter/BraintreeAdapter.php        |   0
 .../Model/Adapter/BraintreeAdapterFactory.php |   0
 .../Model/Adapter/BraintreeSearchAdapter.php  |   0
 .../Model/Adminhtml/Source/CcType.php         |   0
 .../Model/Adminhtml/Source/Environment.php    |   0
 .../Model/Adminhtml/Source/PaymentAction.php  |   0
 .../Model/Adminhtml/System/Config/Country.php |   0
 .../System/Config/CountryCreditCard.php       |   0
 .../Braintree/Model/AvsEmsCodeMapper.php      |   0
 .../Braintree/Model/CvvEmsCodeMapper.php      |   0
 .../CreditCard/AvailabilityChecker.php        |   0
 .../CreditCard/TokenFormatter.php             |   0
 .../InstantPurchase/PayPal/TokenFormatter.php |   0
 .../PaymentAdditionalInformationProvider.php  |   0
 .../Braintree/Model/LocaleResolver.php        |   0
 .../Model/Paypal/Helper/AbstractHelper.php    |   0
 .../Model/Paypal/Helper/OrderPlace.php        |   0
 .../Model/Paypal/Helper/QuoteUpdater.php      |   0
 .../Paypal/Helper/ShippingMethodUpdater.php   |   0
 .../ConditionAppliers/ApplierInterface.php    |   0
 .../Report/ConditionAppliers/AppliersPool.php |   0
 .../ConditionAppliers/MultipleValue.php       |   0
 .../Model/Report/ConditionAppliers/Range.php  |   0
 .../Model/Report/ConditionAppliers/Text.php   |   0
 .../Braintree/Model/Report/FilterMapper.php   |   0
 .../Model/Report/Row/TransactionMap.php       |   0
 .../Model/Report/TransactionsCollection.php   |   0
 .../PayPal/TokenUiComponentProvider.php       |   0
 .../Ui/Adminhtml/TokenUiComponentProvider.php |   0
 .../Braintree/Model/Ui/ConfigProvider.php     |   0
 .../Model/Ui/PayPal/ConfigProvider.php        |   0
 .../Ui/PayPal/TokenUiComponentProvider.php    |   0
 .../Model/Ui/TokenUiComponentProvider.php     |   0
 .../Braintree/Observer/AddPaypalShortcuts.php |   0
 .../Braintree/Observer/DataAssignObserver.php |   0
 app/code/Magento/Braintree/README.md          |   0
 .../Magento/Braintree/Setup/UpgradeData.php   |   0
 .../Braintree/Test/Unit/Block/FormTest.php    |   0
 .../Unit/Controller/Payment/GetNonceTest.php  |   0
 .../Unit/Controller/Paypal/PlaceOrderTest.php |   0
 .../Unit/Controller/Paypal/ReviewTest.php     |   0
 .../Paypal/SaveShippingMethodTest.php         |   0
 .../Command/CaptureStrategyCommandTest.php    |   0
 .../Command/GetPaymentNonceCommandTest.php    |   0
 .../Gateway/Config/CanVoidHandlerTest.php     |   0
 .../Test/Unit/Gateway/Config/ConfigTest.php   |   0
 .../Unit/Gateway/Helper/SubjectReaderTest.php |   0
 .../Http/Client/TransactionSaleTest.php       |   0
 .../TransactionSubmitForSettlementTest.php    |   0
 .../Unit/Gateway/Http/TransferFactoryTest.php |   0
 .../Request/AddressDataBuilderTest.php        |   0
 .../Request/CaptureDataBuilderTest.php        |   0
 .../Request/ChannelDataBuilderTest.php        |   0
 .../Request/CustomerDataBuilderTest.php       |   0
 .../Request/DescriptorDataBuilderTest.php     |   0
 .../Request/KountPaymentDataBuilderTest.php   |   0
 .../Request/PayPal/DeviceDataBuilderTest.php  |   0
 .../Request/PayPal/VaultDataBuilderTest.php   |   0
 .../Request/PaymentDataBuilderTest.php        |   0
 .../Gateway/Request/RefundDataBuilderTest.php |   0
 .../Request/SettlementDataBuilderTest.php     |   0
 .../Request/ThreeDSecureDataBuilderTest.php   |   0
 .../Request/VaultCaptureDataBuilderTest.php   |   0
 .../Gateway/Request/VaultDataBuilderTest.php  |   0
 .../Response/CardDetailsHandlerTest.php       |   0
 .../PayPal/VaultDetailsHandlerTest.php        |   0
 .../Response/PayPalDetailsHandlerTest.php     |   0
 .../Response/PaymentDetailsHandlerTest.php    |   0
 .../Gateway/Response/RiskDataHandlerTest.php  |   0
 .../ThreeDSecureDetailsHandlerTest.php        |   0
 .../Response/TransactionIdHandlerTest.php     |   0
 .../Response/VaultDetailsHandlerTest.php      |   0
 .../Unit/Gateway/Response/VoidHandlerTest.php |   0
 .../GeneralResponseValidatorTest.php          |   0
 .../PaymentNonceResponseValidatorTest.php     |   0
 .../Validator/ResponseValidatorTest.php       |   0
 .../Braintree/Test/Unit/Helper/CcTypeTest.php |   0
 .../Test/Unit/Helper/CountryTest.php          |   0
 .../System/Config/CountryCreditCardTest.php   |   0
 .../Adminhtml/System/Config/CountryTest.php   |   0
 .../Test/Unit/Model/AvsEmsCodeMapperTest.php  |   0
 .../Test/Unit/Model/CvvEmsCodeMapperTest.php  |   0
 .../Model/Paypal/Helper/OrderPlaceTest.php    |   0
 .../Model/Paypal/Helper/QuoteUpdaterTest.php  |   0
 .../Helper/ShippingMethodUpdaterTest.php      |   0
 .../Model/Report/BraintreeSearchNodeStub.php  |   0
 .../Model/Report/BraintreeTransactionStub.php |   0
 .../Unit/Model/Report/FilterMapperTest.php    |   0
 .../Unit/Model/Report/TransactionMapTest.php  |   0
 .../Report/TransactionsCollectionTest.php     |   0
 .../PayPal/TokenUiComponentProviderTest.php   |   0
 .../TokenUiComponentProviderTest.php          |   0
 .../Test/Unit/Model/Ui/ConfigProviderTest.php |   0
 .../Model/Ui/PayPal/ConfigProviderTest.php    |   0
 .../PayPal/TokenUiComponentProviderTest.php   |   0
 .../Unit/Observer/AddPaypalShortcutsTest.php  |   0
 .../Unit/Observer/DataAssignObserverTest.php  |   0
 .../Report/Filters/Type/DateRangeTest.php     |   0
 .../Column/CheckColumnOptionSourceTest.php    |   0
 .../Report/Filters/Type/DateRange.php         |   0
 .../Report/Listing/Column/PaymentType.php     |   0
 .../Report/Listing/Column/Status.php          |   0
 .../Report/Listing/Column/TransactionType.php |   0
 app/code/Magento/Braintree/composer.json      |   0
 app/code/Magento/Braintree/etc/acl.xml        |   0
 .../etc/adminhtml/braintree_error_mapping.xml |   0
 .../Magento/Braintree/etc/adminhtml/di.xml    |   0
 .../Magento/Braintree/etc/adminhtml/menu.xml  |   0
 .../Braintree/etc/adminhtml/routes.xml        |   0
 .../Braintree/etc/adminhtml/system.xml        |   0
 .../Braintree/etc/braintree_error_mapping.xml |   0
 app/code/Magento/Braintree/etc/config.xml     |   0
 app/code/Magento/Braintree/etc/di.xml         |   0
 app/code/Magento/Braintree/etc/events.xml     |   0
 .../Magento/Braintree/etc/frontend/di.xml     |   0
 .../Magento/Braintree/etc/frontend/events.xml |   0
 .../Magento/Braintree/etc/frontend/routes.xml |   0
 .../Braintree/etc/frontend/sections.xml       |   0
 app/code/Magento/Braintree/etc/module.xml     |   0
 app/code/Magento/Braintree/i18n/en_US.csv     |   0
 app/code/Magento/Braintree/registration.php   |   0
 .../layout/adminhtml_system_config_edit.xml   |   0
 .../layout/braintree_report_index.xml         |   0
 .../layout/sales_order_create_index.xml       |   0
 ...order_create_load_block_billing_method.xml |   0
 .../view/adminhtml/templates/form/cc.phtml    |   0
 .../templates/form/paypal/vault.phtml         |   0
 .../view/adminhtml/templates/form/vault.phtml |   0
 .../adminhtml/templates/grid/tooltip.phtml    |   0
 .../adminhtml/templates/payment/script.phtml  |   0
 .../ui_component/braintree_report.xml         |   0
 .../web/images/braintree_allinone.png         | Bin
 .../adminhtml/web/images/braintree_logo.png   | Bin
 .../view/adminhtml/web/js/braintree.js        |   0
 .../adminhtml/web/js/grid/filters/status.html |   0
 .../view/adminhtml/web/js/grid/provider.js    |   0
 .../Braintree/view/adminhtml/web/js/vault.js  |   0
 .../Braintree/view/adminhtml/web/styles.css   |   0
 .../view/base/web/images/paypal-small.png     | Bin
 .../Braintree/view/base/web/images/paypal.png | Bin
 .../Braintree/view/base/web/js/validator.js   |   0
 .../layout/braintree_paypal_review.xml        |   0
 .../frontend/layout/checkout_index_index.xml  |   0
 .../layout/vault_cards_listaction.xml         |   0
 .../view/frontend/requirejs-config.js         |   0
 .../frontend/templates/paypal/button.phtml    |   0
 .../templates/paypal/vault_token.phtml        |   0
 .../view/frontend/web/js/paypal/button.js     |   0
 .../frontend/web/js/paypal/form-builder.js    |   0
 .../frontend/web/js/view/payment/3d-secure.js |   0
 .../frontend/web/js/view/payment/adapter.js   |   0
 .../frontend/web/js/view/payment/braintree.js |   0
 .../view/payment/method-renderer/cc-form.js   |   0
 .../payment/method-renderer/hosted-fields.js  |   0
 .../payment/method-renderer/paypal-vault.js   |   0
 .../js/view/payment/method-renderer/paypal.js |   0
 .../js/view/payment/method-renderer/vault.js  |   0
 .../web/js/view/payment/validator-handler.js  |   0
 .../frontend/web/template/payment/form.html   |   0
 .../frontend/web/template/payment/paypal.html |   0
 .../web/template/payment/paypal/vault.html    |   0
 .../Bundle/Api/Data/BundleOptionInterface.php |   0
 .../Magento/Bundle/Api/Data/LinkInterface.php |   0
 .../Bundle/Api/Data/OptionInterface.php       |   0
 .../Bundle/Api/Data/OptionTypeInterface.php   |   0
 .../Api/ProductLinkManagementInterface.php    |   0
 .../Api/ProductOptionManagementInterface.php  |   0
 .../Api/ProductOptionRepositoryInterface.php  |   0
 .../Api/ProductOptionTypeListInterface.php    |   0
 .../Product/Composite/Fieldset/Bundle.php     |   0
 .../Fieldset/Options/Type/Checkbox.php        |   0
 .../Composite/Fieldset/Options/Type/Multi.php |   0
 .../Composite/Fieldset/Options/Type/Radio.php |   0
 .../Fieldset/Options/Type/Select.php          |   0
 .../Catalog/Product/Edit/Tab/Attributes.php   |   0
 .../Product/Edit/Tab/Attributes/Extend.php    |   0
 .../Product/Edit/Tab/Attributes/Special.php   |   0
 .../Catalog/Product/Edit/Tab/Bundle.php       |   0
 .../Product/Edit/Tab/Bundle/Option.php        |   0
 .../Product/Edit/Tab/Bundle/Option/Search.php |   0
 .../Edit/Tab/Bundle/Option/Search/Grid.php    |   0
 .../Edit/Tab/Bundle/Option/Selection.php      |   0
 .../Adminhtml/Catalog/Product/Edit/Tabs.php   |   0
 .../Block/Adminhtml/Order/Create/Sidebar.php  |   0
 .../Adminhtml/Sales/Order/Items/Renderer.php  |   0
 .../Sales/Order/View/Items/Renderer.php       |   0
 .../Bundle/Block/Catalog/Product/Price.php    |   0
 .../Catalog/Product/View/Type/Bundle.php      |   0
 .../Product/View/Type/Bundle/Option.php       |   0
 .../View/Type/Bundle/Option/Checkbox.php      |   0
 .../Product/View/Type/Bundle/Option/Multi.php |   0
 .../Product/View/Type/Bundle/Option/Radio.php |   0
 .../View/Type/Bundle/Option/Select.php        |   0
 .../Block/Checkout/Cart/Item/Renderer.php     |   0
 .../Block/Sales/Order/Items/Renderer.php      |   0
 .../Product/Edit/AddAttributeToTemplate.php   |   0
 .../Bundle/Product/Edit/AlertsPriceGrid.php   |   0
 .../Bundle/Product/Edit/AlertsStockGrid.php   |   0
 .../Bundle/Product/Edit/Categories.php        |   0
 .../Bundle/Product/Edit/Crosssell.php         |   0
 .../Bundle/Product/Edit/CrosssellGrid.php     |   0
 .../Bundle/Product/Edit/CustomOptions.php     |   0
 .../Bundle/Product/Edit/Duplicate.php         |   0
 .../Adminhtml/Bundle/Product/Edit/Edit.php    |   0
 .../Adminhtml/Bundle/Product/Edit/Form.php    |   0
 .../Adminhtml/Bundle/Product/Edit/Grid.php    |   0
 .../Bundle/Product/Edit/GridOnly.php          |   0
 .../Adminhtml/Bundle/Product/Edit/Index.php   |   0
 .../Bundle/Product/Edit/MassDelete.php        |   0
 .../Bundle/Product/Edit/MassStatus.php        |   0
 .../Bundle/Product/Edit/NewAction.php         |   0
 .../Adminhtml/Bundle/Product/Edit/Options.php |   0
 .../Bundle/Product/Edit/OptionsImportGrid.php |   0
 .../Adminhtml/Bundle/Product/Edit/Related.php |   0
 .../Bundle/Product/Edit/RelatedGrid.php       |   0
 .../Adminhtml/Bundle/Product/Edit/Save.php    |   0
 .../Bundle/Product/Edit/ShowUpdateResult.php  |   0
 .../Bundle/Product/Edit/SuggestAttributes.php |   0
 .../Adminhtml/Bundle/Product/Edit/Upsell.php  |   0
 .../Bundle/Product/Edit/UpsellGrid.php        |   0
 .../Bundle/Product/Edit/Validate.php          |   0
 .../Adminhtml/Bundle/Product/Edit/Wysiwyg.php |   0
 .../Adminhtml/Bundle/Selection/Grid.php       |   0
 .../Adminhtml/Bundle/Selection/Search.php     |   0
 .../Initialization/Helper/Plugin/Bundle.php   |   0
 .../Helper/Catalog/Product/Configuration.php  |   0
 app/code/Magento/Bundle/Helper/Data.php       |   0
 app/code/Magento/Bundle/LICENSE.txt           |   0
 app/code/Magento/Bundle/LICENSE_AFL.txt       |   0
 .../Magento/Bundle/Model/BundleOption.php     |   0
 .../Bundle/Model/CartItemProcessor.php        |   0
 app/code/Magento/Bundle/Model/Link.php        |   0
 .../Magento/Bundle/Model/LinkManagement.php   |   0
 app/code/Magento/Bundle/Model/Option.php      |   0
 .../Magento/Bundle/Model/Option/Validator.php |   0
 .../Magento/Bundle/Model/OptionManagement.php |   0
 .../Magento/Bundle/Model/OptionRepository.php |   0
 .../Magento/Bundle/Model/OptionTypeList.php   |   0
 .../Bundle/Model/Plugin/PriceBackend.php      |   0
 .../Magento/Bundle/Model/Plugin/Product.php   |   0
 .../Magento/Bundle/Model/Plugin/QuoteItem.php |   0
 .../Product/Attribute/Source/Price/View.php   |   0
 .../Attribute/Source/Shipment/Type.php        |   0
 .../Bundle/Model/Product/CatalogPrice.php     |   0
 .../Model/Product/CopyConstructor/Bundle.php  |   0
 .../Bundle/Model/Product/LinksList.php        |   0
 .../Bundle/Model/Product/OptionList.php       |   0
 .../Magento/Bundle/Model/Product/Price.php    |   0
 .../Bundle/Model/Product/ReadHandler.php      |   0
 .../Bundle/Model/Product/SaveHandler.php      |   0
 .../Magento/Bundle/Model/Product/Type.php     |   0
 .../Bundle/Model/ProductOptionProcessor.php   |   0
 .../Bundle/Model/ResourceModel/Bundle.php     |   0
 .../BundleOptionStockDataSelectBuilder.php    |   0
 .../Model/ResourceModel/Indexer/Price.php     |   0
 .../Model/ResourceModel/Indexer/Stock.php     |   0
 .../Indexer/StockStatusSelectBuilder.php      |   0
 .../Bundle/Model/ResourceModel/Option.php     |   0
 .../Model/ResourceModel/Option/Collection.php |   0
 .../Bundle/Model/ResourceModel/Selection.php  |   0
 .../ResourceModel/Selection/Collection.php    |   0
 .../Selection/Collection/FilterApplier.php    |   0
 .../Selection/Plugin/Collection.php           |   0
 .../Sales/Order/Pdf/Items/AbstractItems.php   |   0
 .../Sales/Order/Pdf/Items/Creditmemo.php      |   0
 .../Model/Sales/Order/Pdf/Items/Invoice.php   |   0
 .../Model/Sales/Order/Pdf/Items/Shipment.php  |   0
 .../Bundle/Model/Sales/Order/Plugin/Item.php  |   0
 app/code/Magento/Bundle/Model/Selection.php   |   0
 .../Source/Option/Selection/Price/Type.php    |   0
 .../Bundle/Model/Source/Option/Type.php       |   0
 .../Observer/AppendUpsellProductsObserver.php |   0
 .../Observer/InitOptionRendererObserver.php   |   0
 .../Observer/SetAttributeTabBlockObserver.php |   0
 .../Adjustment/BundleCalculatorInterface.php  |   0
 .../Bundle/Pricing/Adjustment/Calculator.php  |   0
 .../DefaultSelectionPriceListProvider.php     |   0
 .../SelectionPriceListProviderInterface.php   |   0
 .../Pricing/Price/BundleOptionPrice.php       |   0
 .../Price/BundleOptionPriceInterface.php      |   0
 .../Pricing/Price/BundleRegularPrice.php      |   0
 .../Pricing/Price/BundleSelectionFactory.php  |   0
 .../Pricing/Price/BundleSelectionPrice.php    |   0
 .../Bundle/Pricing/Price/ConfiguredPrice.php  |   0
 .../Pricing/Price/DiscountCalculator.php      |   0
 .../Price/DiscountProviderInterface.php       |   0
 .../Bundle/Pricing/Price/FinalPrice.php       |   0
 .../Pricing/Price/FinalPriceInterface.php     |   0
 .../Pricing/Price/RegularPriceInterface.php   |   0
 .../Bundle/Pricing/Price/SpecialPrice.php     |   0
 .../Bundle/Pricing/Price/TierPrice.php        |   0
 .../Bundle/Pricing/Render/FinalPriceBox.php   |   0
 app/code/Magento/Bundle/README.md             |   0
 app/code/Magento/Bundle/Setup/InstallData.php |   0
 .../Magento/Bundle/Setup/InstallSchema.php    |   0
 app/code/Magento/Bundle/Setup/Recurring.php   |   0
 app/code/Magento/Bundle/Setup/UpgradeData.php |   0
 .../Fieldset/Options/Type/CheckboxTest.php    |   0
 .../Fieldset/Options/Type/MultiTest.php       |   0
 .../Fieldset/Options/Type/RadioTest.php       |   0
 .../Fieldset/Options/Type/SelectTest.php      |   0
 .../Edit/Tab/Attributes/ExtendTest.php        |   0
 .../Product/Edit/Tab/Bundle/OptionTest.php    |   0
 .../Sales/Order/Items/RendererTest.php        |   0
 .../Sales/Order/View/Items/RendererTest.php   |   0
 .../Product/View/Type/Bundle/OptionTest.php   |   0
 .../Catalog/Product/View/Type/BundleTest.php  |   0
 .../Block/Sales/Order/Items/RendererTest.php  |   0
 .../Bundle/Product/Edit/FormTest.php          |   0
 .../Adminhtml/Bundle/Selection/GridTest.php   |   0
 .../Adminhtml/Bundle/Selection/SearchTest.php |   0
 .../Helper/Plugin/BundleTest.php              |   0
 .../Catalog/Product/ConfigurationTest.php     |   0
 .../Bundle/Test/Unit/Helper/DataTest.php      |   0
 .../Test/Unit/Model/CartItemProcessorTest.php |   0
 .../Test/Unit/Model/LinkManagementTest.php    |   0
 .../Test/Unit/Model/Option/ValidatorTest.php  |   0
 .../Test/Unit/Model/OptionManagementTest.php  |   0
 .../Test/Unit/Model/OptionRepositoryTest.php  |   0
 .../Bundle/Test/Unit/Model/OptionTest.php     |   0
 .../Test/Unit/Model/OptionTypeListTest.php    |   0
 .../Unit/Model/Plugin/PriceBackendTest.php    |   0
 .../Test/Unit/Model/Plugin/ProductTest.php    |   0
 .../Test/Unit/Model/Plugin/QuoteItemTest.php  |   0
 .../Attribute/Source/Price/ViewTest.php       |   0
 .../Unit/Model/Product/CatalogPriceTest.php   |   0
 .../Product/CopyConstructor/BundleTest.php    |   0
 .../Test/Unit/Model/Product/LinksListTest.php |   0
 .../Unit/Model/Product/OptionListTest.php     |   0
 .../Test/Unit/Model/Product/PriceTest.php     |   0
 .../Test/Unit/Model/Product/TypeTest.php      |   0
 .../Unit/Model/ProductOptionProcessorTest.php |   0
 .../Selection/CollectionTest.php              |   0
 .../Order/Pdf/Items/AbstractItemsTest.php     |   0
 .../Model/Sales/Order/Plugin/ItemTest.php     |   0
 .../Pricing/Adjustment/CalculatorTest.php     |   0
 .../Pricing/Price/BundleOptionPriceTest.php   |   0
 .../Pricing/Price/BundleRegularPriceTest.php  |   0
 .../Price/BundleSelectionFactoryTest.php      |   0
 .../Price/BundleSelectionPriceTest.php        |   0
 .../Pricing/Price/DiscountCalculatorTest.php  |   0
 .../Unit/Pricing/Price/FinalPriceTest.php     |   0
 .../Unit/Pricing/Price/SpecialPriceTest.php   |   0
 .../Test/Unit/Pricing/Price/TierPriceTest.php |   0
 .../Unit/Pricing/Render/FinalPriceBoxTest.php |   0
 .../Product/BundleDataProviderTest.php        |   0
 .../Form/Modifier/AbstractModifierTest.php    |   0
 .../Form/Modifier/BundleQuantityTest.php      |   0
 .../Product/Form/Modifier/BundleSkuTest.php   |   0
 .../Form/Modifier/BundleWeightTest.php        |   0
 .../Product/Form/Modifier/CompositeTest.php   |   0
 .../Listing/Collector/BundlePriceTest.php     |   0
 .../Product/BundleDataProvider.php            |   0
 .../Form/Modifier/BundleAdvancedPricing.php   |   0
 .../Form/Modifier/BundleCustomOptions.php     |   0
 .../Product/Form/Modifier/BundlePanel.php     |   0
 .../Product/Form/Modifier/BundlePrice.php     |   0
 .../Product/Form/Modifier/BundleQuantity.php  |   0
 .../Product/Form/Modifier/BundleSku.php       |   0
 .../Product/Form/Modifier/BundleWeight.php    |   0
 .../Product/Form/Modifier/Composite.php       |   0
 .../Product/Form/Modifier/StockData.php       |   0
 .../Product/Listing/Collector/BundlePrice.php |   0
 app/code/Magento/Bundle/composer.json         |   0
 app/code/Magento/Bundle/etc/adminhtml/di.xml  |   0
 .../Magento/Bundle/etc/adminhtml/events.xml   |   0
 .../Magento/Bundle/etc/adminhtml/routes.xml   |   0
 .../Magento/Bundle/etc/catalog_attributes.xml |   0
 app/code/Magento/Bundle/etc/config.xml        |   0
 app/code/Magento/Bundle/etc/di.xml            |   0
 app/code/Magento/Bundle/etc/events.xml        |   0
 .../Bundle/etc/extension_attributes.xml       |   0
 app/code/Magento/Bundle/etc/frontend/di.xml   |   0
 .../Magento/Bundle/etc/frontend/events.xml    |   0
 app/code/Magento/Bundle/etc/module.xml        |   0
 app/code/Magento/Bundle/etc/pdf.xml           |   0
 app/code/Magento/Bundle/etc/product_types.xml |   0
 app/code/Magento/Bundle/etc/sales.xml         |   0
 app/code/Magento/Bundle/etc/webapi.xml        |   0
 .../Magento/Bundle/etc/webapi_rest/di.xml     |   0
 .../Magento/Bundle/etc/webapi_soap/di.xml     |   0
 app/code/Magento/Bundle/i18n/en_US.csv        |   0
 app/code/Magento/Bundle/registration.php      |   0
 .../layout/adminhtml_order_shipment_new.xml   |   0
 .../layout/adminhtml_order_shipment_view.xml  |   0
 .../layout/catalog_product_bundle.xml         |   0
 .../adminhtml/layout/catalog_product_new.xml  |   0
 .../catalog_product_view_type_bundle.xml      |   0
 .../layout/customer_index_wishlist.xml        |   0
 .../layout/sales_order_creditmemo_new.xml     |   0
 .../sales_order_creditmemo_updateqty.xml      |   0
 .../layout/sales_order_creditmemo_view.xml    |   0
 .../layout/sales_order_invoice_new.xml        |   0
 .../layout/sales_order_invoice_updateqty.xml  |   0
 .../layout/sales_order_invoice_view.xml       |   0
 .../adminhtml/layout/sales_order_view.xml     |   0
 .../product/edit/tab/attributes/extend.phtml  |   0
 .../composite/fieldset/options/bundle.phtml   |   0
 .../fieldset/options/type/checkbox.phtml      |   0
 .../fieldset/options/type/multi.phtml         |   0
 .../fieldset/options/type/radio.phtml         |   0
 .../fieldset/options/type/select.phtml        |   0
 .../templates/product/edit/bundle.phtml       |   0
 .../product/edit/bundle/option.phtml          |   0
 .../product/edit/bundle/option/search.phtml   |   0
 .../edit/bundle/option/selection.phtml        |   0
 .../templates/product/stock/disabler.phtml    |   0
 .../creditmemo/create/items/renderer.phtml    |   0
 .../creditmemo/view/items/renderer.phtml      |   0
 .../sales/invoice/create/items/renderer.phtml |   0
 .../sales/invoice/view/items/renderer.phtml   |   0
 .../sales/order/view/items/renderer.phtml     |   0
 .../shipment/create/items/renderer.phtml      |   0
 .../sales/shipment/view/items/renderer.phtml  |   0
 .../ui_component/bundle_product_listing.xml   |   0
 .../view/adminhtml/web/css/bundle-product.css |   0
 .../view/adminhtml/web/js/bundle-product.js   |   0
 .../adminhtml/web/js/bundle-type-handler.js   |   0
 .../web/js/components/bundle-checkbox.js      |   0
 .../js/components/bundle-dynamic-rows-grid.js |   0
 .../web/js/components/bundle-dynamic-rows.js  |   0
 .../web/js/components/bundle-input-type.js    |   0
 .../web/js/components/bundle-option-qty.js    |   0
 .../web/js/components/bundle-record.js        |   0
 .../base/layout/catalog_product_prices.xml    |   0
 .../templates/product/price/final_price.phtml |   0
 .../product/price/selection/amount.phtml      |   0
 .../templates/product/price/tier_prices.phtml |   0
 .../Bundle/view/base/web/js/price-bundle.js   |   0
 .../web/template/product/final_price.html     |   0
 .../template/product/price/minimal_price.html |   0
 .../catalog_product_view_type_bundle.xml      |   0
 .../catalog_product_view_type_simple.xml      |   0
 .../checkout_cart_configure_type_bundle.xml   |   0
 .../layout/checkout_cart_item_renderers.xml   |   0
 ...checkout_onepage_review_item_renderers.xml |   0
 .../Bundle/view/frontend/layout/default.xml   |   0
 ...sales_email_order_creditmemo_renderers.xml |   0
 .../sales_email_order_invoice_renderers.xml   |   0
 .../layout/sales_email_order_renderers.xml    |   0
 .../sales_email_order_shipment_renderers.xml  |   0
 .../sales_order_creditmemo_renderers.xml      |   0
 .../layout/sales_order_invoice_renderers.xml  |   0
 .../layout/sales_order_item_renderers.xml     |   0
 ...sales_order_print_creditmemo_renderers.xml |   0
 .../sales_order_print_invoice_renderers.xml   |   0
 .../layout/sales_order_print_renderers.xml    |   0
 .../sales_order_print_shipment_renderers.xml  |   0
 .../layout/sales_order_shipment_renderers.xml |   0
 .../Bundle/view/frontend/requirejs-config.js  |   0
 .../catalog/product/view/backbutton.phtml     |   0
 .../catalog/product/view/customize.phtml      |   0
 .../catalog/product/view/options/notice.phtml |   0
 .../catalog/product/view/summary.phtml        |   0
 .../catalog/product/view/type/bundle.phtml    |   0
 .../view/type/bundle/option/checkbox.phtml    |   0
 .../view/type/bundle/option/multi.phtml       |   0
 .../view/type/bundle/option/radio.phtml       |   0
 .../view/type/bundle/option/select.phtml      |   0
 .../product/view/type/bundle/options.phtml    |   0
 .../order/items/creditmemo/default.phtml      |   0
 .../email/order/items/invoice/default.phtml   |   0
 .../email/order/items/order/default.phtml     |   0
 .../email/order/items/shipment/default.phtml  |   0
 .../frontend/templates/js/components.phtml    |   0
 .../order/creditmemo/items/renderer.phtml     |   0
 .../sales/order/invoice/items/renderer.phtml  |   0
 .../sales/order/items/renderer.phtml          |   0
 .../sales/order/shipment/items/renderer.phtml |   0
 .../ui_component/widget_recently_compared.xml |   0
 .../ui_component/widget_recently_viewed.xml   |   0
 .../Bundle/view/frontend/web/js/float.js      |   0
 .../view/frontend/web/js/product-summary.js   |   0
 .../Bundle/view/frontend/web/js/slide.js      |   0
 .../Magento/BundleImportExport/LICENSE.txt    |   0
 .../BundleImportExport/LICENSE_AFL.txt        |   0
 .../Model/Export/Product/Type/Bundle.php      |   0
 .../Model/Export/RowCustomizer.php            |   0
 .../Model/Import/Product/Type/Bundle.php      |   0
 .../Type/Bundle/RelationsDataSaver.php        |   0
 app/code/Magento/BundleImportExport/README.md |   0
 .../Export/Product/RowCustomizerTest.php      |   0
 .../Type/Bundle/RelationsDataSaverTest.php    |   0
 .../Model/Import/Product/Type/BundleTest.php  |   0
 .../Magento/BundleImportExport/composer.json  |   0
 .../Magento/BundleImportExport/etc/di.xml     |   0
 .../Magento/BundleImportExport/etc/export.xml |   0
 .../Magento/BundleImportExport/etc/import.xml |   0
 .../Magento/BundleImportExport/etc/module.xml |   0
 .../Magento/BundleImportExport/i18n/en_US.csv |   0
 .../BundleImportExport/registration.php       |   0
 app/code/Magento/CacheInvalidate/LICENSE.txt  |   0
 .../Magento/CacheInvalidate/LICENSE_AFL.txt   |   0
 .../CacheInvalidate/Model/PurgeCache.php      |   0
 .../CacheInvalidate/Model/SocketFactory.php   |   0
 .../Observer/FlushAllCacheObserver.php        |   0
 .../Observer/InvalidateVarnishObserver.php    |   0
 app/code/Magento/CacheInvalidate/README.md    |   0
 .../Test/Unit/Model/PurgeCacheTest.php        |   0
 .../Test/Unit/Model/SocketFactoryTest.php     |   0
 .../Observer/FlushAllCacheObserverTest.php    |   0
 .../InvalidateVarnishObserverTest.php         |   0
 .../Magento/CacheInvalidate/composer.json     |   0
 .../Magento/CacheInvalidate/etc/events.xml    |   0
 .../Magento/CacheInvalidate/etc/module.xml    |   0
 .../Magento/CacheInvalidate/i18n/en_US.csv    |   0
 .../Magento/CacheInvalidate/registration.php  |   0
 .../Adminhtml/Captcha/DefaultCaptcha.php      |   0
 app/code/Magento/Captcha/Block/Captcha.php    |   0
 .../Captcha/Block/Captcha/DefaultCaptcha.php  |   0
 .../Controller/Adminhtml/Refresh/Refresh.php  |   0
 .../Captcha/Controller/Refresh/Index.php      |   0
 .../Captcha/Cron/DeleteExpiredImages.php      |   0
 .../Captcha/Cron/DeleteOldAttempts.php        |   0
 .../Magento/Captcha/Helper/Adminhtml/Data.php |   0
 app/code/Magento/Captcha/Helper/Data.php      |   0
 app/code/Magento/Captcha/LICENSE.txt          |   0
 app/code/Magento/Captcha/LICENSE_AFL.txt      |   0
 .../Magento/Captcha/Model/CaptchaFactory.php  |   0
 .../Captcha/Model/CaptchaInterface.php        |   0
 .../Captcha/Model/Cart/ConfigPlugin.php       |   0
 .../Captcha/Model/Checkout/ConfigProvider.php |   0
 .../Magento/Captcha/Model/Config/Font.php     |   0
 .../Model/Config/Form/AbstractForm.php        |   0
 .../Captcha/Model/Config/Form/Backend.php     |   0
 .../Captcha/Model/Config/Form/Frontend.php    |   0
 .../Magento/Captcha/Model/Config/Mode.php     |   0
 .../Model/Customer/Plugin/AjaxLogin.php       |   0
 .../Magento/Captcha/Model/DefaultModel.php    |   0
 .../Captcha/Model/ResourceModel/Log.php       |   0
 .../Observer/CaptchaStringResolver.php        |   0
 .../Observer/CheckContactUsFormObserver.php   |   0
 .../Observer/CheckForgotpasswordObserver.php  |   0
 .../Observer/CheckGuestCheckoutObserver.php   |   0
 .../CheckRegisterCheckoutObserver.php         |   0
 .../Observer/CheckUserCreateObserver.php      |   0
 .../Observer/CheckUserEditObserver.php        |   0
 ...CheckUserForgotPasswordBackendObserver.php |   0
 .../CheckUserLoginBackendObserver.php         |   0
 .../Observer/CheckUserLoginObserver.php       |   0
 .../ResetAttemptForBackendObserver.php        |   0
 ...tAttemptForFrontendAccountEditObserver.php |   0
 .../ResetAttemptForFrontendObserver.php       |   0
 app/code/Magento/Captcha/README.md            |   0
 .../Magento/Captcha/Setup/InstallSchema.php   |   0
 .../Unit/Controller/Refresh/IndexTest.php     |   0
 .../Unit/Cron/DeleteExpiredImagesTest.php     |   0
 .../Test/Unit/Helper/Adminhtml/DataTest.php   |   0
 .../Captcha/Test/Unit/Helper/DataTest.php     |   0
 .../Test/Unit/Model/CaptchaFactoryTest.php    |   0
 .../Test/Unit/Model/Cart/ConfigPluginTest.php |   0
 .../Model/Checkout/ConfigProviderTest.php     |   0
 .../Model/Customer/Plugin/AjaxLoginTest.php   |   0
 .../Captcha/Test/Unit/Model/DefaultTest.php   |   0
 .../CheckContactUsFormObserverTest.php        |   0
 .../CheckForgotpasswordObserverTest.php       |   0
 .../Observer/CheckUserCreateObserverTest.php  |   0
 .../Observer/CheckUserEditObserverTest.php    |   0
 .../Observer/CheckUserLoginObserverTest.php   |   0
 app/code/Magento/Captcha/composer.json        |   0
 app/code/Magento/Captcha/etc/adminhtml/di.xml |   0
 .../Magento/Captcha/etc/adminhtml/events.xml  |   0
 .../Magento/Captcha/etc/adminhtml/routes.xml  |   0
 .../Magento/Captcha/etc/adminhtml/system.xml  |   0
 app/code/Magento/Captcha/etc/config.xml       |   0
 app/code/Magento/Captcha/etc/crontab.xml      |   0
 app/code/Magento/Captcha/etc/crontab/di.xml   |   0
 app/code/Magento/Captcha/etc/di.xml           |   0
 app/code/Magento/Captcha/etc/events.xml       |   0
 app/code/Magento/Captcha/etc/frontend/di.xml  |   0
 .../Magento/Captcha/etc/frontend/events.xml   |   0
 .../Magento/Captcha/etc/frontend/routes.xml   |   0
 app/code/Magento/Captcha/etc/module.xml       |   0
 app/code/Magento/Captcha/i18n/en_US.csv       |   0
 app/code/Magento/Captcha/registration.php     |   0
 .../layout/adminhtml_auth_forgotpassword.xml  |   0
 .../adminhtml/layout/adminhtml_auth_login.xml |   0
 .../view/adminhtml/templates/default.phtml    |   0
 .../Captcha/view/adminhtml/web/reload.png     | Bin
 .../frontend/layout/checkout_index_index.xml  |   0
 .../frontend/layout/contact_index_index.xml   |   0
 .../layout/customer_account_create.xml        |   0
 .../frontend/layout/customer_account_edit.xml |   0
 .../customer_account_forgotpassword.xml       |   0
 .../layout/customer_account_login.xml         |   0
 .../Captcha/view/frontend/layout/default.xml  |   0
 .../Captcha/view/frontend/requirejs-config.js |   0
 .../view/frontend/templates/default.phtml     |   0
 .../frontend/templates/js/components.phtml    |   0
 .../Captcha/view/frontend/web/captcha.js      |   0
 .../view/frontend/web/js/action/refresh.js    |   0
 .../view/frontend/web/js/model/captcha.js     |   0
 .../view/frontend/web/js/model/captchaList.js |   0
 .../web/js/view/checkout/defaultCaptcha.js    |   0
 .../web/js/view/checkout/loginCaptcha.js      |   0
 .../Captcha/view/frontend/web/onepage.js      |   0
 .../web/template/checkout/captcha.html        |   0
 .../Api/AttributeSetFinderInterface.php       |   0
 .../Api/AttributeSetManagementInterface.php   |   0
 .../Api/AttributeSetRepositoryInterface.php   |   0
 .../Catalog/Api/BasePriceStorageInterface.php |   0
 ...goryAttributeOptionManagementInterface.php |   0
 .../CategoryAttributeRepositoryInterface.php  |   0
 .../Api/CategoryLinkManagementInterface.php   |   0
 .../Api/CategoryLinkRepositoryInterface.php   |   0
 .../Catalog/Api/CategoryListInterface.php     |   0
 .../Api/CategoryManagementInterface.php       |   0
 .../Api/CategoryRepositoryInterface.php       |   0
 .../Catalog/Api/CostStorageInterface.php      |   0
 .../Catalog/Api/Data/BasePriceInterface.php   |   0
 .../Api/Data/CategoryAttributeInterface.php   |   0
 ...ategoryAttributeSearchResultsInterface.php |   0
 .../Catalog/Api/Data/CategoryInterface.php    |   0
 .../Api/Data/CategoryLinkInterface.php        |   0
 .../Api/Data/CategoryProductLinkInterface.php |   0
 .../CategoryProductSearchResultInterface.php  |   0
 .../Data/CategorySearchResultsInterface.php   |   0
 .../Api/Data/CategoryTreeInterface.php        |   0
 .../Catalog/Api/Data/CostInterface.php        |   0
 .../Api/Data/CustomOptionInterface.php        |   0
 .../Api/Data/EavAttributeInterface.php        |   0
 .../Api/Data/PriceUpdateResultInterface.php   |   0
 .../Api/Data/ProductAttributeInterface.php    |   0
 ...uctAttributeMediaGalleryEntryInterface.php |   0
 ...ProductAttributeSearchResultsInterface.php |   0
 .../Data/ProductAttributeTypeInterface.php    |   0
 .../Api/Data/ProductCustomOptionInterface.php |   0
 .../Data/ProductCustomOptionTypeInterface.php |   0
 .../ProductCustomOptionValuesInterface.php    |   0
 .../Data/ProductFrontendActionInterface.php   |   0
 .../Catalog/Api/Data/ProductInterface.php     |   0
 .../Data/ProductLinkAttributeInterface.php    |   0
 .../Catalog/Api/Data/ProductLinkInterface.php |   0
 .../Api/Data/ProductLinkTypeInterface.php     |   0
 .../Api/Data/ProductOptionInterface.php       |   0
 .../Data/ProductRender/ButtonInterface.php    |   0
 .../FormattedPriceInfoInterface.php           |   0
 .../Api/Data/ProductRender/ImageInterface.php |   0
 .../Data/ProductRender/PriceInfoInterface.php |   0
 .../Api/Data/ProductRenderInterface.php       |   0
 .../ProductRenderSearchResultsInterface.php   |   0
 .../Data/ProductSearchResultsInterface.php    |   0
 .../Api/Data/ProductTierPriceInterface.php    |   0
 .../Catalog/Api/Data/ProductTypeInterface.php |   0
 .../Api/Data/ProductWebsiteLinkInterface.php  |   0
 .../Api/Data/SpecialPriceInterface.php        |   0
 .../Catalog/Api/Data/TierPriceInterface.php   |   0
 ...oductAttributeGroupRepositoryInterface.php |   0
 .../ProductAttributeManagementInterface.php   |   0
 ...tributeMediaGalleryManagementInterface.php |   0
 ...ductAttributeOptionManagementInterface.php |   0
 .../ProductAttributeRepositoryInterface.php   |   0
 .../ProductAttributeTypesListInterface.php    |   0
 ...ProductCustomOptionRepositoryInterface.php |   0
 .../ProductCustomOptionTypeListInterface.php  |   0
 .../Api/ProductLinkManagementInterface.php    |   0
 .../Api/ProductLinkRepositoryInterface.php    |   0
 .../Api/ProductLinkTypeListInterface.php      |   0
 .../Api/ProductManagementInterface.php        |   0
 ...oductMediaAttributeManagementInterface.php |   0
 .../Api/ProductRenderListInterface.php        |   0
 .../Api/ProductRepositoryInterface.php        |   0
 .../ProductTierPriceManagementInterface.php   |   0
 .../Catalog/Api/ProductTypeListInterface.php  |   0
 .../ProductWebsiteLinkRepositoryInterface.php |   0
 ...pedProductTierPriceManagementInterface.php |   0
 .../Catalog/Api/SpecialPriceInterface.php     |   0
 .../Api/SpecialPriceStorageInterface.php      |   0
 .../Catalog/Api/TierPriceStorageInterface.php |   0
 .../Adminhtml/Category/AbstractCategory.php   |   0
 .../Adminhtml/Category/AssignProducts.php     |   0
 .../Adminhtml/Category/Checkboxes/Tree.php    |   0
 .../Catalog/Block/Adminhtml/Category/Edit.php |   0
 .../Adminhtml/Category/Edit/DeleteButton.php  |   0
 .../Adminhtml/Category/Edit/SaveButton.php    |   0
 .../Block/Adminhtml/Category/Helper/Image.php |   0
 .../Adminhtml/Category/Helper/Pricestep.php   |   0
 .../Category/Helper/Sortby/Available.php      |   0
 .../Category/Helper/Sortby/DefaultSortby.php  |   0
 .../Block/Adminhtml/Category/Tab/Product.php  |   0
 .../Catalog/Block/Adminhtml/Category/Tree.php |   0
 .../Adminhtml/Category/Widget/Chooser.php     |   0
 .../Magento/Catalog/Block/Adminhtml/Form.php  |   0
 .../Form/Renderer/Config/DateFieldsOrder.php  |   0
 .../Form/Renderer/Config/YearRange.php        |   0
 .../Form/Renderer/Fieldset/Element.php        |   0
 .../Block/Adminhtml/Helper/Form/Wysiwyg.php   |   0
 .../Adminhtml/Helper/Form/Wysiwyg/Content.php |   0
 .../Catalog/Block/Adminhtml/Product.php       |   0
 .../Block/Adminhtml/Product/Attribute.php     |   0
 .../Product/Attribute/Button/Cancel.php       |   0
 .../Product/Attribute/Button/Generic.php      |   0
 .../Product/Attribute/Button/Save.php         |   0
 .../Button/SaveInNewAttributeSet.php          |   0
 .../Adminhtml/Product/Attribute/Edit.php      |   0
 .../Adminhtml/Product/Attribute/Edit/Form.php |   0
 .../Product/Attribute/Edit/Tab/Advanced.php   |   0
 .../Product/Attribute/Edit/Tab/Front.php      |   0
 .../Product/Attribute/Edit/Tab/Main.php       |   0
 .../Product/Attribute/Edit/Tab/Options.php    |   0
 .../Product/Attribute/Edit/Tab/System.php     |   0
 .../Adminhtml/Product/Attribute/Edit/Tabs.php |   0
 .../Adminhtml/Product/Attribute/Grid.php      |   0
 .../NewAttribute/Product/Attributes.php       |   0
 .../Adminhtml/Product/Attribute/Set/Main.php  |   0
 .../Attribute/Set/Main/Formattribute.php      |   0
 .../Product/Attribute/Set/Main/Formgroup.php  |   0
 .../Product/Attribute/Set/Main/Formset.php    |   0
 .../Attribute/Set/Main/Tree/Attribute.php     |   0
 .../Product/Attribute/Set/Main/Tree/Group.php |   0
 .../Product/Attribute/Set/Toolbar/Add.php     |   0
 .../Product/Attribute/Set/Toolbar/Main.php    |   0
 .../Attribute/Set/Toolbar/Main/Filter.php     |   0
 .../Adminhtml/Product/Composite/Configure.php |   0
 .../Adminhtml/Product/Composite/Error.php     |   0
 .../Adminhtml/Product/Composite/Fieldset.php  |   0
 .../Product/Composite/Fieldset/Options.php    |   0
 .../Product/Composite/Fieldset/Qty.php        |   0
 .../Product/Composite/Update/Result.php       |   0
 .../Catalog/Block/Adminhtml/Product/Edit.php  |   0
 .../Product/Edit/Action/Attribute.php         |   0
 .../Edit/Action/Attribute/Tab/Attributes.php  |   0
 .../Edit/Action/Attribute/Tab/Inventory.php   |   0
 .../Edit/Action/Attribute/Tab/Websites.php    |   0
 .../Product/Edit/Action/Attribute/Tabs.php    |   0
 .../Adminhtml/Product/Edit/AttributeSet.php   |   0
 .../Product/Edit/Button/AddAttribute.php      |   0
 .../Adminhtml/Product/Edit/Button/Back.php    |   0
 .../Product/Edit/Button/CreateCategory.php    |   0
 .../Adminhtml/Product/Edit/Button/Generic.php |   0
 .../Adminhtml/Product/Edit/Button/Save.php    |   0
 .../Block/Adminhtml/Product/Edit/Js.php       |   0
 .../Adminhtml/Product/Edit/NewCategory.php    |   0
 .../Product/Edit/Tab/Ajax/Serializer.php      |   0
 .../Adminhtml/Product/Edit/Tab/Alerts.php     |   0
 .../Product/Edit/Tab/Alerts/Price.php         |   0
 .../Product/Edit/Tab/Alerts/Stock.php         |   0
 .../Adminhtml/Product/Edit/Tab/Attributes.php |   0
 .../Product/Edit/Tab/Attributes/Create.php    |   0
 .../Product/Edit/Tab/Attributes/Search.php    |   0
 .../Adminhtml/Product/Edit/Tab/ChildTab.php   |   0
 .../Adminhtml/Product/Edit/Tab/Crosssell.php  |   0
 .../Adminhtml/Product/Edit/Tab/Inventory.php  |   0
 .../Adminhtml/Product/Edit/Tab/Options.php    |   0
 .../Product/Edit/Tab/Options/Option.php       |   0
 .../Product/Edit/Tab/Options/Popup/Grid.php   |   0
 .../Edit/Tab/Options/Type/AbstractType.php    |   0
 .../Product/Edit/Tab/Options/Type/Date.php    |   0
 .../Product/Edit/Tab/Options/Type/File.php    |   0
 .../Product/Edit/Tab/Options/Type/Select.php  |   0
 .../Product/Edit/Tab/Options/Type/Text.php    |   0
 .../Adminhtml/Product/Edit/Tab/Price.php      |   0
 .../Edit/Tab/Price/Group/AbstractGroup.php    |   0
 .../Adminhtml/Product/Edit/Tab/Price/Tier.php |   0
 .../Adminhtml/Product/Edit/Tab/Related.php    |   0
 .../Adminhtml/Product/Edit/Tab/Upsell.php     |   0
 .../Adminhtml/Product/Edit/Tab/Websites.php   |   0
 .../Block/Adminhtml/Product/Edit/Tabs.php     |   0
 .../Product/Frontend/Product/Watermark.php    |   0
 .../Catalog/Block/Adminhtml/Product/Grid.php  |   0
 .../Adminhtml/Product/Helper/Form/Apply.php   |   0
 .../Adminhtml/Product/Helper/Form/Boolean.php |   0
 .../Product/Helper/Form/Category.php          |   0
 .../Adminhtml/Product/Helper/Form/Config.php  |   0
 .../Adminhtml/Product/Helper/Form/Gallery.php |   0
 .../Product/Helper/Form/Gallery/Content.php   |   0
 .../Adminhtml/Product/Helper/Form/Image.php   |   0
 .../Adminhtml/Product/Helper/Form/Price.php   |   0
 .../Adminhtml/Product/Helper/Form/Weight.php  |   0
 .../Block/Adminhtml/Product/Options/Ajax.php  |   0
 .../Catalog/Block/Adminhtml/Product/Price.php |   0
 .../Adminhtml/Product/Widget/Chooser.php      |   0
 .../Product/Widget/Chooser/Container.php      |   0
 .../Catalog/Block/Adminhtml/Rss/Grid/Link.php |   0
 .../Block/Adminhtml/Rss/NotifyStock.php       |   0
 .../Magento/Catalog/Block/Breadcrumbs.php     |   0
 .../Block/Category/Plugin/PriceBoxTags.php    |   0
 .../Catalog/Block/Category/Rss/Link.php       |   0
 .../Magento/Catalog/Block/Category/View.php   |   0
 .../Catalog/Block/FrontendStorageManager.php  |   0
 app/code/Magento/Catalog/Block/Navigation.php |   0
 .../Catalog/Block/Product/AbstractProduct.php |   0
 .../Catalog/Block/Product/AwareInterface.php  |   0
 .../Block/Product/Compare/ListCompare.php     |   0
 .../Magento/Catalog/Block/Product/Context.php |   0
 .../Magento/Catalog/Block/Product/Gallery.php |   0
 .../Magento/Catalog/Block/Product/Image.php   |   0
 .../Catalog/Block/Product/ImageBuilder.php    |   0
 .../Catalog/Block/Product/ListProduct.php     |   0
 .../Catalog/Block/Product/NewProduct.php      |   0
 .../Magento/Catalog/Block/Product/Price.php   |   0
 .../Block/Product/ProductList/Crosssell.php   |   0
 .../ProductList/Item/AddTo/Compare.php        |   0
 .../Block/Product/ProductList/Item/Block.php  |   0
 .../Product/ProductList/Item/Container.php    |   0
 .../Block/Product/ProductList/Promotion.php   |   0
 .../Block/Product/ProductList/Random.php      |   0
 .../Block/Product/ProductList/Related.php     |   0
 .../Block/Product/ProductList/Upsell.php      |   0
 .../ReviewRenderer/DefaultProvider.php        |   0
 .../Block/Product/ReviewRendererInterface.php |   0
 .../Block/Product/TemplateSelector.php        |   0
 .../Magento/Catalog/Block/Product/View.php    |   0
 .../Block/Product/View/AbstractView.php       |   0
 .../Block/Product/View/AddTo/Compare.php      |   0
 .../Catalog/Block/Product/View/Additional.php |   0
 .../Catalog/Block/Product/View/Attributes.php |   0
 .../Catalog/Block/Product/View/BaseImage.php  |   0
 .../Block/Product/View/Description.php        |   0
 .../Catalog/Block/Product/View/Gallery.php    |   0
 .../Catalog/Block/Product/View/Options.php    |   0
 .../Product/View/Options/AbstractOptions.php  |   0
 .../Block/Product/View/Options/Type/Date.php  |   0
 .../Product/View/Options/Type/DefaultType.php |   0
 .../Block/Product/View/Options/Type/File.php  |   0
 .../Product/View/Options/Type/Select.php      |   0
 .../Block/Product/View/Options/Type/Text.php  |   0
 .../Catalog/Block/Product/View/Price.php      |   0
 .../Catalog/Block/Product/View/Tabs.php       |   0
 .../Block/Product/View/Type/Simple.php        |   0
 .../Block/Product/View/Type/Virtual.php       |   0
 .../Block/Product/Widget/Html/Pager.php       |   0
 .../Block/Product/Widget/NewWidget.php        |   0
 .../Magento/Catalog/Block/Rss/Category.php    |   0
 .../Catalog/Block/Rss/Product/NewProducts.php |   0
 .../Catalog/Block/Rss/Product/Special.php     |   0
 .../Magento/Catalog/Block/ShortcutButtons.php |   0
 .../Catalog/Block/ShortcutInterface.php       |   0
 .../Catalog/Block/Ui/ProductViewCounter.php   |   0
 .../Magento/Catalog/Block/Widget/Link.php     |   0
 .../Catalog/Block/Widget/RecentlyCompared.php |   0
 .../Catalog/Block/Widget/RecentlyViewed.php   |   0
 .../Console/Command/ImagesResizeCommand.php   |   0
 .../Command/ProductAttributesCleanUp.php      |   0
 .../Catalog/Controller/Adminhtml/Category.php |   0
 .../Controller/Adminhtml/Category/Add.php     |   0
 .../Adminhtml/Category/CategoriesJson.php     |   0
 .../Controller/Adminhtml/Category/Delete.php  |   0
 .../Controller/Adminhtml/Category/Edit.php    |   0
 .../Controller/Adminhtml/Category/Grid.php    |   0
 .../Adminhtml/Category/Image/Upload.php       |   0
 .../Controller/Adminhtml/Category/Index.php   |   0
 .../Controller/Adminhtml/Category/Move.php    |   0
 .../Adminhtml/Category/RefreshPath.php        |   0
 .../Controller/Adminhtml/Category/Save.php    |   0
 .../Adminhtml/Category/SuggestCategories.php  |   0
 .../Controller/Adminhtml/Category/Tree.php    |   0
 .../Adminhtml/Category/Validate.php           |   0
 .../Controller/Adminhtml/Category/Widget.php  |   0
 .../Category/Widget/CategoriesJson.php        |   0
 .../Adminhtml/Category/Widget/Chooser.php     |   0
 .../Controller/Adminhtml/Category/Wysiwyg.php |   0
 .../Catalog/Controller/Adminhtml/Product.php  |   0
 .../Adminhtml/Product/AbstractProductGrid.php |   0
 .../Adminhtml/Product/Action/Attribute.php    |   0
 .../Product/Action/Attribute/Edit.php         |   0
 .../Product/Action/Attribute/Save.php         |   0
 .../Product/Action/Attribute/Validate.php     |   0
 .../Product/AddAttributeToTemplate.php        |   0
 .../Adminhtml/Product/AlertsPriceGrid.php     |   0
 .../Adminhtml/Product/AlertsStockGrid.php     |   0
 .../Adminhtml/Product/Attribute.php           |   0
 .../Adminhtml/Product/Attribute/Delete.php    |   0
 .../Adminhtml/Product/Attribute/Edit.php      |   0
 .../Adminhtml/Product/Attribute/Index.php     |   0
 .../Adminhtml/Product/Attribute/NewAction.php |   0
 .../Adminhtml/Product/Attribute/Save.php      |   0
 .../Adminhtml/Product/Attribute/Validate.php  |   0
 .../Controller/Adminhtml/Product/Builder.php  |   0
 .../Adminhtml/Product/Categories.php          |   0
 .../Adminhtml/Product/Crosssell.php           |   0
 .../Adminhtml/Product/CrosssellGrid.php       |   0
 .../Adminhtml/Product/CustomOptions.php       |   0
 .../Adminhtml/Product/Datafeeds/Index.php     |   0
 .../Adminhtml/Product/Duplicate.php           |   0
 .../Controller/Adminhtml/Product/Edit.php     |   0
 .../Adminhtml/Product/Gallery/Upload.php      |   0
 .../Controller/Adminhtml/Product/Grid.php     |   0
 .../Controller/Adminhtml/Product/GridOnly.php |   0
 .../Adminhtml/Product/Group/Save.php          |   0
 .../Controller/Adminhtml/Product/Index.php    |   0
 .../Product/Initialization/Helper.php         |   0
 .../Initialization/Helper/AttributeFilter.php |   0
 .../Initialization/Helper/HandlerFactory.php  |   0
 .../Helper/HandlerInterface.php               |   0
 .../Helper/Plugin/Handler/Composite.php       |   0
 .../Initialization/StockDataFilter.php        |   0
 .../Adminhtml/Product/MassDelete.php          |   0
 .../Adminhtml/Product/MassStatus.php          |   0
 .../Adminhtml/Product/NewAction.php           |   0
 .../Controller/Adminhtml/Product/Options.php  |   0
 .../Adminhtml/Product/OptionsImportGrid.php   |   0
 .../Controller/Adminhtml/Product/Related.php  |   0
 .../Adminhtml/Product/RelatedGrid.php         |   0
 .../Controller/Adminhtml/Product/Reload.php   |   0
 .../Controller/Adminhtml/Product/Save.php     |   0
 .../Controller/Adminhtml/Product/Set.php      |   0
 .../Controller/Adminhtml/Product/Set/Add.php  |   0
 .../Adminhtml/Product/Set/Delete.php          |   0
 .../Controller/Adminhtml/Product/Set/Edit.php |   0
 .../Adminhtml/Product/Set/Index.php           |   0
 .../Controller/Adminhtml/Product/Set/Save.php |   0
 .../Adminhtml/Product/Set/SetGrid.php         |   0
 .../Adminhtml/Product/ShowUpdateResult.php    |   0
 .../Product/SuggestAttributeSets.php          |   0
 .../Adminhtml/Product/SuggestAttributes.php   |   0
 .../Controller/Adminhtml/Product/Upsell.php   |   0
 .../Adminhtml/Product/UpsellGrid.php          |   0
 .../Controller/Adminhtml/Product/Validate.php |   0
 .../Adminhtml/Product/Widget/Chooser.php      |   0
 .../Controller/Adminhtml/Product/Wysiwyg.php  |   0
 .../Catalog/Controller/Category/View.php      |   0
 .../Catalog/Controller/Index/Index.php        |   0
 .../Magento/Catalog/Controller/Product.php    |   0
 .../Catalog/Controller/Product/Compare.php    |   0
 .../Controller/Product/Compare/Add.php        |   0
 .../Controller/Product/Compare/Clear.php      |   0
 .../Controller/Product/Compare/Index.php      |   0
 .../Controller/Product/Compare/Remove.php     |   0
 .../Product/Frontend/Action/Synchronize.php   |   0
 .../Catalog/Controller/Product/Gallery.php    |   0
 .../Catalog/Controller/Product/View.php       |   0
 .../Controller/Product/View/ViewInterface.php |   0
 .../Cron/DeleteAbandonedStoreFlatTables.php   |   0
 .../Cron/DeleteOutdatedPriceValues.php        |   0
 .../Catalog/Cron/FrontendActionsFlush.php     |   0
 .../Catalog/Cron/RefreshSpecialPrices.php     |   0
 .../Cron/SynchronizeWebsiteAttributes.php     |   0
 .../Catalog/CustomerData/CompareProducts.php  |   0
 .../ProductFrontendActionSection.php          |   0
 .../ProductsRenderInfoSection.php             |   0
 app/code/Magento/Catalog/Helper/Catalog.php   |   0
 app/code/Magento/Catalog/Helper/Category.php  |   0
 app/code/Magento/Catalog/Helper/Data.php      |   0
 .../Catalog/Helper/DefaultCategory.php        |   0
 app/code/Magento/Catalog/Helper/Image.php     |   0
 app/code/Magento/Catalog/Helper/Output.php    |   0
 app/code/Magento/Catalog/Helper/Product.php   |   0
 .../Catalog/Helper/Product/Compare.php        |   0
 .../Catalog/Helper/Product/Composite.php      |   0
 .../Catalog/Helper/Product/Configuration.php  |   0
 .../Configuration/ConfigurationInterface.php  |   0
 .../Helper/Product/ConfigurationPool.php      |   0
 .../Helper/Product/Edit/Action/Attribute.php  |   0
 .../Catalog/Helper/Product/Flat/Indexer.php   |   0
 .../Catalog/Helper/Product/ProductList.php    |   0
 .../Magento/Catalog/Helper/Product/View.php   |   0
 app/code/Magento/Catalog/LICENSE.txt          |   0
 app/code/Magento/Catalog/LICENSE_AFL.txt      |   0
 .../Magento/Catalog/Model/AbstractModel.php   |   0
 .../FilterProcessor/ProductCategoryFilter.php |   0
 .../FilterProcessor/ProductStoreFilter.php    |   0
 .../FilterProcessor/ProductWebsiteFilter.php  |   0
 .../Attribute/Backend/Customlayoutupdate.php  |   0
 .../Model/Attribute/Backend/Startdate.php     |   0
 .../Catalog/Model/Attribute/Config.php        |   0
 .../Model/Attribute/Config/Converter.php      |   0
 .../Catalog/Model/Attribute/Config/Data.php   |   0
 .../Catalog/Model/Attribute/Config/Reader.php |   0
 .../Model/Attribute/Config/SchemaLocator.php  |   0
 .../Attribute/LockValidatorComposite.php      |   0
 .../Attribute/LockValidatorInterface.php      |   0
 .../Model/Attribute/ScopeOverriddenValue.php  |   0
 .../Catalog/Model/Attribute/Source/Scopes.php |   0
 app/code/Magento/Catalog/Model/Category.php   |   0
 .../Catalog/Model/Category/Attribute.php      |   0
 .../Category/Attribute/Backend/Image.php      |   0
 .../Category/Attribute/Backend/Sortby.php     |   0
 .../Category/Attribute/OptionManagement.php   |   0
 .../Category/Attribute/Source/Layout.php      |   0
 .../Model/Category/Attribute/Source/Mode.php  |   0
 .../Model/Category/Attribute/Source/Page.php  |   0
 .../Category/Attribute/Source/Sortby.php      |   0
 .../Model/Category/AttributeRepository.php    |   0
 .../Catalog/Model/Category/DataProvider.php   |   0
 .../Catalog/Model/Category/FileInfo.php       |   0
 .../Model/Category/Link/ReadHandler.php       |   0
 .../Model/Category/Link/SaveHandler.php       |   0
 .../Category/Product/PositionResolver.php     |   0
 .../Magento/Catalog/Model/Category/Tree.php   |   0
 .../Magento/Catalog/Model/CategoryLink.php    |   0
 .../Catalog/Model/CategoryLinkManagement.php  |   0
 .../Catalog/Model/CategoryLinkRepository.php  |   0
 .../Magento/Catalog/Model/CategoryList.php    |   0
 .../Catalog/Model/CategoryManagement.php      |   0
 .../Catalog/Model/CategoryProductLink.php     |   0
 .../Catalog/Model/CategoryRepository.php      |   0
 app/code/Magento/Catalog/Model/Config.php     |   0
 .../Catalog/Model/Config/Backend/Category.php |   0
 .../Model/Config/CatalogClone/Media/Image.php |   0
 .../Catalog/Model/Config/Source/Category.php  |   0
 .../Model/Config/Source/GridPerPage.php       |   0
 .../Catalog/Model/Config/Source/ListMode.php  |   0
 .../Model/Config/Source/ListPerPage.php       |   0
 .../Catalog/Model/Config/Source/ListSort.php  |   0
 .../Model/Config/Source/Price/Scope.php       |   0
 .../Model/Config/Source/Price/Step.php        |   0
 .../Config/Source/Product/Options/Price.php   |   0
 .../Source/Product/Options/TierPrice.php      |   0
 .../Config/Source/Product/Options/Type.php    |   0
 .../Model/Config/Source/Product/Thumbnail.php |   0
 .../Source/ProductPriceOptionsInterface.php   |   0
 .../Model/Config/Source/TimeFormat.php        |   0
 .../Config/Source/Watermark/Position.php      |   0
 .../Model/CustomOptions/CustomOption.php      |   0
 .../CustomOptions/CustomOptionProcessor.php   |   0
 app/code/Magento/Catalog/Model/Design.php     |   0
 .../Catalog/Model/Entity/Attribute.php        |   0
 .../Attribute/Design/Options/Container.php    |   0
 .../Attribute/Group/AttributeMapper.php       |   0
 .../Group/AttributeMapperInterface.php        |   0
 .../Magento/Catalog/Model/EntityInterface.php |   0
 app/code/Magento/Catalog/Model/Factory.php    |   0
 .../FrontendStorageConfigurationInterface.php |   0
 .../FrontendStorageConfigurationPool.php      |   0
 .../Magento/Catalog/Model/ImageExtractor.php  |   0
 .../Magento/Catalog/Model/ImageUploader.php   |   0
 .../Model/Indexer/AbstractFlatState.php       |   0
 .../Catalog/Model/Indexer/Category/Flat.php   |   0
 .../Indexer/Category/Flat/AbstractAction.php  |   0
 .../Indexer/Category/Flat/Action/Full.php     |   0
 .../Indexer/Category/Flat/Action/Rows.php     |   0
 .../Flat/Plugin/IndexerConfigData.php         |   0
 .../Category/Flat/Plugin/StoreGroup.php       |   0
 .../Category/Flat/Plugin/StoreView.php        |   0
 .../Flat/SkipStaticColumnsProvider.php        |   0
 .../Model/Indexer/Category/Flat/State.php     |   0
 .../Category/Flat/System/Config/Mode.php      |   0
 .../Model/Indexer/Category/Product.php        |   0
 .../Category/Product/AbstractAction.php       |   0
 .../Indexer/Category/Product/Action/Full.php  |   0
 .../Indexer/Category/Product/Action/Rows.php  |   0
 .../Category/Product/Action/RowsFactory.php   |   0
 .../Category/Product/Plugin/MviewState.php    |   0
 .../Category/Product/Plugin/StoreGroup.php    |   0
 .../Category/Product/Plugin/StoreView.php     |   0
 .../Indexer/Category/Product/Processor.php    |   0
 .../Category/Product/RowSizeEstimator.php     |   0
 .../Model/Indexer/Product/Category.php        |   0
 .../Indexer/Product/Category/Action/Rows.php  |   0
 .../Product/Category/Action/RowsFactory.php   |   0
 .../Indexer/Product/Category/Processor.php    |   0
 .../Catalog/Model/Indexer/Product/Eav.php     |   0
 .../Indexer/Product/Eav/AbstractAction.php    |   0
 .../Model/Indexer/Product/Eav/Action/Full.php |   0
 .../Model/Indexer/Product/Eav/Action/Row.php  |   0
 .../Model/Indexer/Product/Eav/Action/Rows.php |   0
 .../Product/Eav/Plugin/AttributeSet.php       |   0
 .../AttributeSet/IndexableAttributeFilter.php |   0
 .../Indexer/Product/Eav/Plugin/StoreView.php  |   0
 .../Model/Indexer/Product/Eav/Processor.php   |   0
 .../Catalog/Model/Indexer/Product/Flat.php    |   0
 .../Indexer/Product/Flat/AbstractAction.php   |   0
 .../Indexer/Product/Flat/Action/Eraser.php    |   0
 .../Indexer/Product/Flat/Action/Full.php      |   0
 .../Indexer/Product/Flat/Action/Indexer.php   |   0
 .../Model/Indexer/Product/Flat/Action/Row.php |   0
 .../Indexer/Product/Flat/Action/Rows.php      |   0
 .../Product/Flat/Action/Rows/TableData.php    |   0
 .../Indexer/Product/Flat/FlatTableBuilder.php |   0
 .../Product/Flat/Plugin/IndexerConfigData.php |   0
 .../Indexer/Product/Flat/Plugin/Store.php     |   0
 .../Product/Flat/Plugin/StoreGroup.php        |   0
 .../Model/Indexer/Product/Flat/Processor.php  |   0
 .../Model/Indexer/Product/Flat/State.php      |   0
 .../Product/Flat/System/Config/Mode.php       |   0
 .../Indexer/Product/Flat/Table/Builder.php    |   0
 .../Product/Flat/Table/BuilderInterface.php   |   0
 .../Indexer/Product/Flat/TableBuilder.php     |   0
 .../Model/Indexer/Product/Flat/TableData.php  |   0
 .../Product/Flat/TableDataInterface.php       |   0
 .../Catalog/Model/Indexer/Product/Full.php    |   0
 .../Catalog/Model/Indexer/Product/Price.php   |   0
 .../Indexer/Product/Price/AbstractAction.php  |   0
 .../Indexer/Product/Price/Action/Full.php     |   0
 .../Indexer/Product/Price/Action/Row.php      |   0
 .../Indexer/Product/Price/Action/Rows.php     |   0
 .../Indexer/Product/Price/InvalidateIndex.php |   0
 .../Product/Price/Plugin/CustomerGroup.php    |   0
 .../Indexer/Product/Price/Plugin/Website.php  |   0
 .../Model/Indexer/Product/Price/Processor.php |   0
 .../Price/System/Config/PriceScope.php        |   0
 .../Product/Price/UpdateIndexInterface.php    |   0
 app/code/Magento/Catalog/Model/Layer.php      |   0
 .../Model/Layer/AvailabilityFlagInterface.php |   0
 .../Magento/Catalog/Model/Layer/Category.php  |   0
 .../Model/Layer/Category/AvailabilityFlag.php |   0
 .../Model/Layer/Category/CollectionFilter.php |   0
 .../Category/FilterableAttributeList.php      |   0
 .../Layer/Category/ItemCollectionProvider.php |   0
 .../Catalog/Model/Layer/Category/StateKey.php |   0
 .../Model/Layer/CollectionFilterInterface.php |   0
 .../Magento/Catalog/Model/Layer/Context.php   |   0
 .../Catalog/Model/Layer/ContextInterface.php  |   0
 .../Model/Layer/Filter/AbstractFilter.php     |   0
 .../Catalog/Model/Layer/Filter/Attribute.php  |   0
 .../Catalog/Model/Layer/Filter/Category.php   |   0
 .../Layer/Filter/DataProvider/Category.php    |   0
 .../Layer/Filter/DataProvider/Decimal.php     |   0
 .../Model/Layer/Filter/DataProvider/Price.php |   0
 .../Catalog/Model/Layer/Filter/Decimal.php    |   0
 .../Layer/Filter/Dynamic/AlgorithmFactory.php |   0
 .../Filter/Dynamic/AlgorithmInterface.php     |   0
 .../Model/Layer/Filter/Dynamic/Auto.php       |   0
 .../Model/Layer/Filter/Dynamic/Improved.php   |   0
 .../Model/Layer/Filter/Dynamic/Manual.php     |   0
 .../Catalog/Model/Layer/Filter/Factory.php    |   0
 .../Model/Layer/Filter/FilterInterface.php    |   0
 .../Catalog/Model/Layer/Filter/Item.php       |   0
 .../Model/Layer/Filter/Item/DataBuilder.php   |   0
 .../Catalog/Model/Layer/Filter/Price.php      |   0
 .../Model/Layer/Filter/Price/Range.php        |   0
 .../Model/Layer/Filter/Price/Render.php       |   0
 .../Catalog/Model/Layer/FilterList.php        |   0
 .../FilterableAttributeListInterface.php      |   0
 .../Layer/ItemCollectionProviderInterface.php |   0
 .../Magento/Catalog/Model/Layer/Resolver.php  |   0
 .../Magento/Catalog/Model/Layer/Search.php    |   0
 .../Model/Layer/Search/CollectionFilter.php   |   0
 .../Model/Layer/Search/Filter/Attribute.php   |   0
 .../Layer/Search/FilterableAttributeList.php  |   0
 .../Layer/Search/ItemCollectionProvider.php   |   0
 .../Magento/Catalog/Model/Layer/State.php     |   0
 .../Catalog/Model/Layer/StateKeyInterface.php |   0
 .../Model/Layout/DepersonalizePlugin.php      |   0
 .../Model/Locator/LocatorInterface.php        |   0
 .../Catalog/Model/Locator/RegistryLocator.php |   0
 app/code/Magento/Catalog/Model/Plugin/Log.php |   0
 .../ProductRepository/TransactionWrapper.php  |   0
 .../Model/Plugin/QuoteItemProductOption.php   |   0
 .../Model/Plugin/ShowOutOfStockConfig.php     |   0
 app/code/Magento/Catalog/Model/Product.php    |   0
 .../Magento/Catalog/Model/Product/Action.php  |   0
 .../Product/Attribute/AttributeSetFinder.php  |   0
 .../Product/Attribute/Backend/Boolean.php     |   0
 .../Product/Attribute/Backend/Category.php    |   0
 .../Backend/GroupPrice/AbstractGroupPrice.php |   0
 .../Backend/Media/EntryConverterInterface.php |   0
 .../Backend/Media/EntryConverterPool.php      |   0
 .../Backend/Media/ImageEntryConverter.php     |   0
 .../Model/Product/Attribute/Backend/Price.php |   0
 .../Model/Product/Attribute/Backend/Sku.php   |   0
 .../Model/Product/Attribute/Backend/Stock.php |   0
 .../Product/Attribute/Backend/Tierprice.php   |   0
 .../Product/Attribute/Backend/Weight.php      |   0
 .../Model/Product/Attribute/DataProvider.php  |   0
 .../Product/Attribute/DefaultAttributes.php   |   0
 .../Product/Attribute/Frontend/Image.php      |   0
 .../Catalog/Model/Product/Attribute/Group.php |   0
 .../Model/Product/Attribute/Management.php    |   0
 .../Product/Attribute/OptionManagement.php    |   0
 .../Model/Product/Attribute/Repository.php    |   0
 .../Model/Product/Attribute/SetManagement.php |   0
 .../Model/Product/Attribute/SetRepository.php |   0
 .../Product/Attribute/Source/Boolean.php      |   0
 .../Attribute/Source/Countryofmanufacture.php |   0
 .../Product/Attribute/Source/Inputtype.php    |   0
 .../Model/Product/Attribute/Source/Layout.php |   0
 .../Model/Product/Attribute/Source/Status.php |   0
 .../Catalog/Model/Product/Attribute/Type.php  |   0
 .../Model/Product/Attribute/TypesList.php     |   0
 .../Model/Product/AttributeSet/Build.php      |   0
 .../Model/Product/AttributeSet/Options.php    |   0
 .../Product/AttributeSet/SuggestedSet.php     |   0
 .../Model/Product/CartConfiguration.php       |   0
 .../Catalog/Model/Product/CatalogPrice.php    |   0
 .../Model/Product/CatalogPriceFactory.php     |   0
 .../Model/Product/CatalogPriceInterface.php   |   0
 .../Catalog/Model/Product/Compare/Item.php    |   0
 .../Model/Product/Compare/ListCompare.php     |   0
 .../Catalog/Model/Product/Condition.php       |   0
 .../Product/Condition/ConditionInterface.php  |   0
 .../Configuration/Item/ItemInterface.php      |   0
 .../Product/Configuration/Item/Option.php     |   0
 .../Item/Option/OptionInterface.php           |   0
 .../Magento/Catalog/Model/Product/Copier.php  |   0
 .../Product/CopyConstructor/Composite.php     |   0
 .../Product/CopyConstructor/CrossSell.php     |   0
 .../Model/Product/CopyConstructor/Related.php |   0
 .../Model/Product/CopyConstructor/UpSell.php  |   0
 .../Model/Product/CopyConstructorFactory.php  |   0
 .../Product/CopyConstructorInterface.php      |   0
 .../Model/Product/Edit/WeightResolver.php     |   0
 .../Catalog/Model/Product/Exception.php       |   0
 .../Model/Product/Gallery/CreateHandler.php   |   0
 .../Catalog/Model/Product/Gallery/Entry.php   |   0
 .../Model/Product/Gallery/EntryResolver.php   |   0
 .../Product/Gallery/GalleryManagement.php     |   0
 .../Product/Gallery/MimeTypeExtensionMap.php  |   0
 .../Model/Product/Gallery/Processor.php       |   0
 .../Model/Product/Gallery/ReadHandler.php     |   0
 .../Model/Product/Gallery/UpdateHandler.php   |   0
 .../Magento/Catalog/Model/Product/Image.php   |   0
 .../Catalog/Model/Product/Image/Cache.php     |   0
 .../Image/NotLoadInfoImageException.php       |   0
 .../Initialization/Helper/ProductLinks.php    |   0
 .../Magento/Catalog/Model/Product/Link.php    |   0
 .../Catalog/Model/Product/Link/Converter.php  |   0
 .../Catalog/Model/Product/Link/Resolver.php   |   0
 .../Model/Product/Link/SaveHandler.php        |   0
 .../Model/Product/LinkTypeProvider.php        |   0
 .../Product/Media/AttributeManagement.php     |   0
 .../Catalog/Model/Product/Media/Config.php    |   0
 .../Model/Product/Media/ConfigInterface.php   |   0
 .../Magento/Catalog/Model/Product/Option.php  |   0
 .../Model/Product/Option/Converter.php        |   0
 .../Model/Product/Option/ReadHandler.php      |   0
 .../Model/Product/Option/Repository.php       |   0
 .../Model/Product/Option/SaveHandler.php      |   0
 .../Catalog/Model/Product/Option/Type.php     |   0
 .../Model/Product/Option/Type/Date.php        |   0
 .../Model/Product/Option/Type/DefaultType.php |   0
 .../Model/Product/Option/Type/Factory.php     |   0
 .../Model/Product/Option/Type/File.php        |   0
 .../Option/Type/File/ValidateFactory.php      |   0
 .../Product/Option/Type/File/Validator.php    |   0
 .../Option/Type/File/ValidatorFile.php        |   0
 .../Option/Type/File/ValidatorInfo.php        |   0
 .../Model/Product/Option/Type/Select.php      |   0
 .../Model/Product/Option/Type/Text.php        |   0
 .../Model/Product/Option/UrlBuilder.php       |   0
 .../Option/Validator/DefaultValidator.php     |   0
 .../Model/Product/Option/Validator/File.php   |   0
 .../Model/Product/Option/Validator/Pool.php   |   0
 .../Model/Product/Option/Validator/Select.php |   0
 .../Model/Product/Option/Validator/Text.php   |   0
 .../Catalog/Model/Product/Option/Value.php    |   0
 .../Catalog/Model/Product/Price/BasePrice.php |   0
 .../Model/Product/Price/BasePriceStorage.php  |   0
 .../Catalog/Model/Product/Price/Cost.php      |   0
 .../Model/Product/Price/CostStorage.php       |   0
 .../Model/Product/Price/PricePersistence.php  |   0
 .../Model/Product/Price/PriceUpdateResult.php |   0
 .../Model/Product/Price/SpecialPrice.php      |   0
 .../Product/Price/SpecialPriceStorage.php     |   0
 .../Catalog/Model/Product/Price/TierPrice.php |   0
 .../Model/Product/Price/TierPriceFactory.php  |   0
 .../Product/Price/TierPricePersistence.php    |   0
 .../Model/Product/Price/TierPriceStorage.php  |   0
 .../Price/Validation/InvalidSkuProcessor.php  |   0
 .../Model/Product/Price/Validation/Result.php |   0
 .../Price/Validation/TierPriceValidator.php   |   0
 .../Catalog/Model/Product/PriceModifier.php   |   0
 .../Model/Product/PriceModifier/Composite.php |   0
 .../Model/Product/PriceModifierInterface.php  |   0
 .../Pricing/Renderer/SalableResolver.php      |   0
 .../Renderer/SalableResolverInterface.php     |   0
 .../ProductFrontendAction/Synchronizer.php    |   0
 .../Model/Product/ReservedAttributeList.php   |   0
 .../Product/ScopedTierPriceManagement.php     |   0
 .../Catalog/Model/Product/TierPrice.php       |   0
 .../Model/Product/TierPriceManagement.php     |   0
 .../Magento/Catalog/Model/Product/Type.php    |   0
 .../Model/Product/Type/AbstractType.php       |   0
 .../Catalog/Model/Product/Type/Pool.php       |   0
 .../Catalog/Model/Product/Type/Price.php      |   0
 .../Model/Product/Type/Price/Factory.php      |   0
 .../Catalog/Model/Product/Type/Simple.php     |   0
 .../Catalog/Model/Product/Type/Virtual.php    |   0
 .../Model/Product/TypeTransitionManager.php   |   0
 .../Magento/Catalog/Model/Product/Url.php     |   0
 .../Catalog/Model/Product/Validator.php       |   0
 .../Catalog/Model/Product/Visibility.php      |   0
 .../Magento/Catalog/Model/Product/Website.php |   0
 .../Model/Product/Website/ReadHandler.php     |   0
 .../Model/Product/Website/SaveHandler.php     |   0
 .../Model/ProductAttributeGroupRepository.php |   0
 .../Catalog/Model/ProductCategoryList.php     |   0
 .../Catalog/Model/ProductFrontendAction.php   |   0
 .../Catalog/Model/ProductIdLocator.php        |   0
 .../Model/ProductIdLocatorInterface.php       |   0
 .../Catalog/Model/ProductLink/Attribute.php   |   0
 .../Model/ProductLink/CollectionProvider.php  |   0
 .../CollectionProvider/Crosssell.php          |   0
 .../CollectionProvider/Related.php            |   0
 .../ProductLink/CollectionProvider/Upsell.php |   0
 .../CollectionProviderInterface.php           |   0
 .../Converter/ConverterInterface.php          |   0
 .../ProductLink/Converter/ConverterPool.php   |   0
 .../Converter/DefaultConverter.php            |   0
 .../Catalog/Model/ProductLink/Link.php        |   0
 .../Catalog/Model/ProductLink/Management.php  |   0
 .../Catalog/Model/ProductLink/Repository.php  |   0
 .../Catalog/Model/ProductLink/Type.php        |   0
 .../Catalog/Model/ProductManagement.php       |   0
 .../Magento/Catalog/Model/ProductOption.php   |   0
 .../Catalog/Model/ProductOptionProcessor.php  |   0
 .../Model/ProductOptionProcessorInterface.php |   0
 .../Catalog/Model/ProductOptions/Config.php   |   0
 .../Model/ProductOptions/Config/Converter.php |   0
 .../Model/ProductOptions/Config/Reader.php    |   0
 .../ProductOptions/Config/SchemaLocator.php   |   0
 .../Model/ProductOptions/ConfigInterface.php  |   0
 .../Catalog/Model/ProductOptions/TypeList.php |   0
 .../Magento/Catalog/Model/ProductRender.php   |   0
 .../Catalog/Model/ProductRender/Button.php    |   0
 .../ProductRender/FormattedPriceInfo.php      |   0
 .../FormattedPriceInfoBuilder.php             |   0
 .../Catalog/Model/ProductRender/Image.php     |   0
 .../Catalog/Model/ProductRender/PriceInfo.php |   0
 .../Model/ProductRenderInfoSearchResults.php  |   0
 .../Catalog/Model/ProductRenderList.php       |   0
 .../Catalog/Model/ProductRepository.php       |   0
 .../MediaGalleryProcessor.php                 |   0
 .../Magento/Catalog/Model/ProductType.php     |   0
 .../Magento/Catalog/Model/ProductTypeList.php |   0
 .../Catalog/Model/ProductTypes/Config.php     |   0
 .../Model/ProductTypes/Config/Converter.php   |   0
 .../Model/ProductTypes/Config/Reader.php      |   0
 .../ProductTypes/Config/SchemaLocator.php     |   0
 .../Model/ProductTypes/ConfigInterface.php    |   0
 .../Model/ProductVisibilityCondition.php      |   0
 .../Catalog/Model/ProductWebsiteLink.php      |   0
 .../Model/ProductWebsiteLinkRepository.php    |   0
 .../ResourceModel/AbstractCollection.php      |   0
 .../Model/ResourceModel/AbstractResource.php  |   0
 .../Catalog/Model/ResourceModel/Attribute.php |   0
 .../Attribute/ConditionBuilder.php            |   0
 .../WebsiteAttributesSynchronizer.php         |   0
 .../ResourceModel/AttributePersistor.php      |   0
 .../Catalog/Model/ResourceModel/Category.php  |   0
 .../ResourceModel/Category/AggregateCount.php |   0
 .../Category/Attribute/Collection.php         |   0
 .../Category/Attribute/Frontend/Image.php     |   0
 .../Category/Attribute/Source/Layout.php      |   0
 .../Category/Attribute/Source/Page.php        |   0
 .../ResourceModel/Category/Collection.php     |   0
 .../Category/Collection/Factory.php           |   0
 .../Model/ResourceModel/Category/Flat.php     |   0
 .../Category/Flat/Collection.php              |   0
 .../Model/ResourceModel/Category/Tree.php     |   0
 .../Model/ResourceModel/CategoryProduct.php   |   0
 .../Collection/AbstractCollection.php         |   0
 .../Catalog/Model/ResourceModel/Config.php    |   0
 .../Model/ResourceModel/Eav/Attribute.php     |   0
 .../Catalog/Model/ResourceModel/Helper.php    |   0
 .../Indexer/ActiveTableSwitcher.php           |   0
 .../ResourceModel/Layer/Filter/Attribute.php  |   0
 .../ResourceModel/Layer/Filter/Decimal.php    |   0
 .../ResourceModel/Layer/Filter/Price.php      |   0
 .../MaxHeapTableSizeProcessor.php             |   0
 .../Catalog/Model/ResourceModel/Product.php   |   0
 .../Model/ResourceModel/Product/Action.php    |   0
 .../Backend/GroupPrice/AbstractGroupPrice.php |   0
 .../Product/Attribute/Backend/Image.php       |   0
 .../Product/Attribute/Backend/Tierprice.php   |   0
 .../Product/Attribute/Collection.php          |   0
 .../Product/BaseSelectProcessorInterface.php  |   0
 .../ResourceModel/Product/CategoryLink.php    |   0
 .../ResourceModel/Product/Collection.php      |   0
 .../Product/Collection/ProductLimitation.php  |   0
 .../ResourceModel/Product/Compare/Item.php    |   0
 .../Product/Compare/Item/Collection.php       |   0
 .../Product/CompositeBaseSelectProcessor.php  |   0
 .../Model/ResourceModel/Product/Flat.php      |   0
 .../Model/ResourceModel/Product/Gallery.php   |   0
 .../Product/Indexer/AbstractIndexer.php       |   0
 .../Product/Indexer/Eav/AbstractEav.php       |   0
 .../Indexer/Eav/BatchSizeCalculator.php       |   0
 .../Product/Indexer/Eav/Decimal.php           |   0
 .../Indexer/Eav/DecimalRowSizeEstimator.php   |   0
 .../Product/Indexer/Eav/Source.php            |   0
 .../Indexer/Eav/SourceRowSizeEstimator.php    |   0
 ...LinkedProductSelectBuilderByIndexPrice.php |   0
 .../Indexer/Price/BatchSizeCalculator.php     |   0
 .../CompositeProductBatchSizeAdjuster.php     |   0
 ...ositeProductBatchSizeAdjusterInterface.php |   0
 .../CompositeProductRelationsCalculator.php   |   0
 .../CompositeProductRowSizeEstimator.php      |   0
 .../Product/Indexer/Price/DefaultPrice.php    |   0
 .../Product/Indexer/Price/Factory.php         |   0
 .../Price/IndexTableRowSizeEstimator.php      |   0
 .../Product/Indexer/Price/PriceInterface.php  |   0
 .../Indexer/TemporaryTableStrategy.php        |   0
 .../Model/ResourceModel/Product/Link.php      |   0
 .../ResourceModel/Product/Link/Collection.php |   0
 .../Product/Link/DeleteHandler.php            |   0
 .../Product/Link/Product/Collection.php       |   0
 .../Product/Link/SaveHandler.php              |   0
 .../LinkedProductSelectBuilderByBasePrice.php |   0
 ...nkedProductSelectBuilderBySpecialPrice.php |   0
 .../LinkedProductSelectBuilderByTierPrice.php |   0
 .../LinkedProductSelectBuilderComposite.php   |   0
 .../LinkedProductSelectBuilderInterface.php   |   0
 .../Model/ResourceModel/Product/Option.php    |   0
 .../Product/Option/Collection.php             |   0
 .../ResourceModel/Product/Option/Value.php    |   0
 .../Product/Option/Value/Collection.php       |   0
 .../Product/Price/SpecialPrice.php            |   0
 .../Model/ResourceModel/Product/Relation.php  |   0
 .../Product/StatusBaseSelectProcessor.php     |   0
 .../Model/ResourceModel/Product/Website.php   |   0
 .../ResourceModel/Product/Website/Link.php    |   0
 .../Product/Website/SelectProcessor.php       |   0
 .../ResourceModel/ProductFrontendAction.php   |   0
 .../ProductFrontendAction/Collection.php      |   0
 .../ResourceModel/Setup/PropertyMapper.php    |   0
 .../Catalog/Model/ResourceModel/Url.php       |   0
 .../Magento/Catalog/Model/Rss/Category.php    |   0
 .../Catalog/Model/Rss/Product/NewProducts.php |   0
 .../Catalog/Model/Rss/Product/NotifyStock.php |   0
 .../Catalog/Model/Rss/Product/Special.php     |   0
 app/code/Magento/Catalog/Model/Session.php    |   0
 .../Backend/Catalog/Url/Rewrite/Suffix.php    |   0
 .../Model/System/Config/Source/Inputtype.php  |   0
 .../Magento/Catalog/Model/Template/Filter.php |   0
 .../Catalog/Model/Template/Filter/Factory.php |   0
 .../Catalog/Model/View/Asset/Image.php        |   0
 .../Model/View/Asset/Image/Context.php        |   0
 .../Catalog/Model/View/Asset/Placeholder.php  |   0
 .../Model/Webapi/Product/Option/Type/Date.php |   0
 .../Product/Option/Type/File/Processor.php    |   0
 .../RecentlyComparedStorageConfiguration.php  |   0
 .../RecentlyViewedStorageConfiguration.php    |   0
 ...gCheckIsUsingStaticUrlsAllowedObserver.php |   0
 .../Compare/BindCustomerLoginObserver.php     |   0
 .../Compare/BindCustomerLogoutObserver.php    |   0
 .../Catalog/Observer/MenuCategoryData.php     |   0
 .../Observer/SetSpecialPriceStartDate.php     |   0
 ...witchPriceAttributeScopeOnConfigChange.php |   0
 ...chronizeWebsiteAttributesOnStoreChange.php |   0
 .../Catalog/Observer/UnsetSpecialPrice.php    |   0
 .../Magento/Catalog/Plugin/Block/Topmenu.php  |   0
 .../Attribute/Backend/AttributeValidation.php |   0
 .../AttributeSetRepository/RemoveProducts.php |   0
 .../Indexer/Category/Product/Execute.php      |   0
 ...MaxHeapTableSizeProcessorOnFullReindex.php |   0
 .../Action/UpdateAttributesFlushCache.php     |   0
 .../Model/ResourceModel/Attribute/Save.php    |   0
 .../Plugin/Model/ResourceModel/Config.php     |   0
 .../Catalog/Pricing/Price/BasePrice.php       |   0
 .../Catalog/Pricing/Price/ConfiguredPrice.php |   0
 .../Price/ConfiguredPriceInterface.php        |   0
 .../Pricing/Price/CustomOptionPrice.php       |   0
 .../Price/CustomOptionPriceInterface.php      |   0
 .../Catalog/Pricing/Price/FinalPrice.php      |   0
 .../Pricing/Price/FinalPriceInterface.php     |   0
 .../Price/MinimalPriceCalculatorInterface.php |   0
 .../Price/MinimalTierPriceCalculator.php      |   0
 .../Catalog/Pricing/Price/RegularPrice.php    |   0
 .../Catalog/Pricing/Price/SpecialPrice.php    |   0
 .../Pricing/Price/SpecialPriceInterface.php   |   0
 .../Catalog/Pricing/Price/TierPrice.php       |   0
 .../Pricing/Price/TierPriceInterface.php      |   0
 app/code/Magento/Catalog/Pricing/Render.php   |   0
 .../Pricing/Render/ConfiguredPriceBox.php     |   0
 .../Catalog/Pricing/Render/FinalPriceBox.php  |   0
 .../Catalog/Pricing/Render/PriceBox.php       |   0
 app/code/Magento/Catalog/README.md            |   0
 .../Magento/Catalog/Setup/CategorySetup.php   |   0
 .../Magento/Catalog/Setup/InstallData.php     |   0
 .../Magento/Catalog/Setup/InstallSchema.php   |   0
 app/code/Magento/Catalog/Setup/Recurring.php  |   0
 .../Magento/Catalog/Setup/UpgradeData.php     |   0
 .../Setup/UpgradeWebsiteAttributes.php        |   0
 .../Catalog/Setup/UpgradeWidgetData.php       |   0
 .../Category/AbstractCategoryTest.php         |   0
 .../Product/Attribute/Button/CancelTest.php   |   0
 .../Product/Attribute/Button/GenericTest.php  |   0
 .../Product/Attribute/Button/SaveTest.php     |   0
 .../Attribute/Edit/Tab/AdvancedTest.php       |   0
 .../Adminhtml/Product/Attribute/GridTest.php  |   0
 .../Composite/Fieldset/OptionsTest.php        |   0
 .../Action/Attribute/Tab/InventoryTest.php    |   0
 .../Product/Edit/Button/AddAttributeTest.php  |   0
 .../Product/Edit/Button/BackTest.php          |   0
 .../Edit/Button/CreateCategoryTest.php        |   0
 .../Product/Edit/Button/GenericTest.php       |   0
 .../Product/Edit/Button/SaveTest.php          |   0
 .../Adminhtml/Product/Edit/Tab/AlertsTest.php |   0
 .../Product/Edit/Tab/InventoryTest.php        |   0
 .../Product/Helper/Form/CategoryTest.php      |   0
 .../Helper/Form/Gallery/ContentTest.php       |   0
 .../Product/Helper/Form/GalleryTest.php       |   0
 .../Product/Helper/Form/WeightTest.php        |   0
 .../Adminhtml/Product/Options/AjaxTest.php    |   0
 .../Block/Adminhtml/Rss/Grid/LinkTest.php     |   0
 .../Block/Adminhtml/Rss/NotifyStockTest.php   |   0
 .../Category/Plugin/PriceBoxTagsTest.php      |   0
 .../Test/Unit/Block/Category/Rss/LinkTest.php |   0
 .../Test/Unit/Block/Category/ViewTest.php     |   0
 .../Unit/Block/FrontendStorageManagerTest.php |   0
 .../Test/Unit/Block/NavigationTest.php        |   0
 .../Block/Product/AbstractProductTest.php     |   0
 .../Block/Product/Compare/ListCompareTest.php |   0
 .../Test/Unit/Block/Product/ContextTest.php   |   0
 .../Unit/Block/Product/ImageBuilderTest.php   |   0
 .../Unit/Block/Product/ListProductTest.php    |   0
 .../Test/Unit/Block/Product/ListTest.php      |   0
 .../Unit/Block/Product/NewProductTest.php     |   0
 .../Test/Unit/Block/Product/PriceTest.php     |   0
 .../Block/Product/ProductList/RelatedTest.php |   0
 .../Block/Product/ProductList/ToolbarTest.php |   0
 .../Block/Product/ProductList/UpsellTest.php  |   0
 .../Block/Product/View/AttributesTest.php     |   0
 .../Unit/Block/Product/View/GalleryTest.php   |   0
 .../Unit/Block/Product/View/OptionsTest.php   |   0
 .../Test/Unit/Block/Product/View/TabsTest.php |   0
 .../Test/Unit/Block/Product/ViewTest.php      |   0
 .../Block/Product/Widget/NewWidgetTest.php    |   0
 .../Test/Unit/Block/Rss/CategoryTest.php      |   0
 .../Block/Rss/Product/NewProductsTest.php     |   0
 .../Unit/Block/Rss/Product/SpecialTest.php    |   0
 .../Unit/Block/Ui/ProductViewCounterTest.php  |   0
 .../Test/Unit/Block/Widget/LinkTest.php       |   0
 .../Command/ImagesResizeCommandTest.php       |   0
 .../Adminhtml/Category/DeleteTest.php         |   0
 .../Adminhtml/Category/EditTest.php           |   0
 .../Adminhtml/Category/Image/UploadTest.php   |   0
 .../Adminhtml/Category/MoveTest.php           |   0
 .../Adminhtml/Category/SaveTest.php           |   0
 .../Category/Widget/CategoriesJsonTest.php    |   0
 .../Adminhtml/Category/Widget/ChooserTest.php |   0
 .../Product/Action/Attribute/EditTest.php     |   0
 .../Product/Action/Attribute/SaveTest.php     |   0
 .../Product/AddAttributeToTemplateTest.php    |   0
 .../Adminhtml/Product/Attribute/EditTest.php  |   0
 .../Adminhtml/Product/Attribute/SaveTest.php  |   0
 .../Product/Attribute/ValidateTest.php        |   0
 .../Adminhtml/Product/AttributeTest.php       |   0
 .../Adminhtml/Product/BuilderTest.php         |   0
 .../Helper/AttributeFilterTest.php            |   0
 .../Helper/HandlerFactoryTest.php             |   0
 .../Helper/Plugin/Handler/CompositeTest.php   |   0
 .../Product/Initialization/HelperTest.php     |   0
 .../Initialization/StockDataFilterTest.php    |   0
 .../Adminhtml/Product/MassStatusTest.php      |   0
 .../Adminhtml/Product/NewActionTest.php       |   0
 .../Adminhtml/Product/ReloadTest.php          |   0
 .../Controller/Adminhtml/Product/SaveTest.php |   0
 .../Product/ShowUpdateResultTest.php          |   0
 .../Adminhtml/Product/ValidateTest.php        |   0
 .../Unit/Controller/Adminhtml/ProductTest.php |   0
 .../Unit/Controller/Category/ViewTest.php     |   0
 .../Controller/Product/Compare/IndexTest.php  |   0
 .../Frontend/Action/SynchronizeTest.php       |   0
 .../Unit/Cron/FrontendActionsFlushTest.php    |   0
 .../Unit/Cron/RefreshSpecialPricesTest.php    |   0
 .../Cron/SynchronizeWebsiteAttributesTest.php |   0
 .../ProductFrontendActionSectionTest.php      |   0
 .../ProductsRenderInfoSectionTest.php         |   0
 .../Catalog/Test/Unit/Helper/ImageTest.php    |   0
 .../Test/Unit/Helper/Product/CompareTest.php  |   0
 .../Helper/Product/ConfigurationPoolTest.php  |   0
 .../Unit/Helper/Product/ConfigurationTest.php |   0
 .../Product/Edit/Action/AttributeTest.php     |   0
 .../Unit/Helper/Product/Flat/IndexerTest.php  |   0
 .../Catalog/Test/Unit/Helper/ProductTest.php  |   0
 .../ProductCategoryFilterTest.php             |   0
 .../ProductWebsiteFilterTest.php              |   0
 .../Backend/CustomlayoutupdateTest.php        |   0
 .../Model/Attribute/Config/ConverterTest.php  |   0
 .../Model/Attribute/Config/ReaderTest.php     |   0
 .../Attribute/Config/SchemaLocatorTest.php    |   0
 .../Unit/Model/Attribute/Config/XsdTest.php   |   0
 .../_files/attributes_config_merged.php       |   0
 .../_files/attributes_config_merged.xml       |   0
 .../Config/_files/attributes_config_one.xml   |   0
 .../Config/_files/attributes_config_two.xml   |   0
 .../Test/Unit/Model/Attribute/ConfigTest.php  |   0
 .../Attribute/LockValidatorCompositeTest.php  |   0
 .../Category/Attribute/Backend/ImageTest.php  |   0
 .../Category/Attribute/Backend/SortbyTest.php |   0
 .../Category/Attribute/Source/LayoutTest.php  |   0
 .../Category/Attribute/Source/PageTest.php    |   0
 .../Category/Attribute/Source/SortbyTest.php  |   0
 .../Category/AttributeRepositoryTest.php      |   0
 .../Unit/Model/Category/DataProviderTest.php  |   0
 .../Test/Unit/Model/Category/FileInfoTest.php |   0
 .../Model/Category/Link/ReadHandlerTest.php   |   0
 .../Model/Category/Link/SaveHandlerTest.php   |   0
 .../Category/Product/PositionResolverTest.php |   0
 .../Test/Unit/Model/Category/TreeTest.php     |   0
 .../Unit/Model/CategoryLinkManagementTest.php |   0
 .../Unit/Model/CategoryLinkRepositoryTest.php |   0
 .../Test/Unit/Model/CategoryListTest.php      |   0
 .../Unit/Model/CategoryManagementTest.php     |   0
 .../Unit/Model/CategoryRepositoryTest.php     |   0
 .../Catalog/Test/Unit/Model/CategoryTest.php  |   0
 .../Unit/Model/CollectionProviderTest.php     |   0
 .../Config/CatalogClone/Media/ImageTest.php   |   0
 .../Unit/Model/Config/Source/CategoryTest.php |   0
 .../Model/Config/Source/GridPerPageTest.php   |   0
 .../Model/Config/Source/ListPerPageTest.php   |   0
 .../Unit/Model/Config/Source/ListSortTest.php |   0
 .../Source/Product/Options/TypeTest.php       |   0
 .../Catalog/Test/Unit/Model/ConfigTest.php    |   0
 .../CustomOptionProcessorTest.php             |   0
 .../Model/CustomOptions/CustomOptionTest.php  |   0
 .../Test/Unit/Model/Entity/AttributeTest.php  |   0
 .../Catalog/Test/Unit/Model/FactoryTest.php   |   0
 .../FrontendStorageConfigurationPoolTest.php  |   0
 .../Test/Unit/Model/ImageExtractorTest.php    |   0
 .../Test/Unit/Model/ImageUploaderTest.php     |   0
 .../Flat/Plugin/IndexerConfigDataTest.php     |   0
 .../Category/Flat/Plugin/StoreGroupTest.php   |   0
 .../Category/Flat/Plugin/StoreViewTest.php    |   0
 .../Model/Indexer/Category/Flat/StateTest.php |   0
 .../Category/Flat/System/Config/ModeTest.php  |   0
 .../Unit/Model/Indexer/Category/FlatTest.php  |   0
 .../Category/Product/Plugin/ImportTest.php    |   0
 .../Product/Plugin/MviewStateTest.php         |   0
 .../Product/Plugin/StoreGroupTest.php         |   0
 .../Category/Product/Plugin/StoreViewTest.php |   0
 .../Category/Product/RowSizeEstimatorTest.php |   0
 .../Model/Indexer/Category/ProductTest.php    |   0
 .../Product/Category/Plugin/ImportTest.php    |   0
 .../Model/Indexer/Product/CategoryTest.php    |   0
 .../Product/Eav/AbstractActionTest.php        |   0
 .../Indexer/Product/Eav/Action/FullTest.php   |   0
 .../Indexer/Product/Eav/Action/RowTest.php    |   0
 .../Indexer/Product/Eav/Action/RowsTest.php   |   0
 .../IndexableAttributeFilterTest.php          |   0
 .../Product/Eav/Plugin/AttributeSetTest.php   |   0
 .../Indexer/Product/Eav/Plugin/ImportTest.php |   0
 .../Product/Eav/Plugin/StoreViewTest.php      |   0
 .../Unit/Model/Indexer/Product/EavTest.php    |   0
 .../Product/Flat/Action/EraserTest.php        |   0
 .../Indexer/Product/Flat/Action/RowTest.php   |   0
 .../Flat/Action/Rows/TableDataTest.php        |   0
 .../Indexer/Product/Flat/Action/RowsTest.php  |   0
 .../Product/Flat/FlatTableBuilderTest.php     |   0
 .../Flat/Plugin/IndexerConfigDataTest.php     |   0
 .../Product/Flat/Plugin/StoreGroupTest.php    |   0
 .../Indexer/Product/Flat/Plugin/StoreTest.php |   0
 .../Indexer/Product/Flat/ProcessorTest.php    |   0
 .../Model/Indexer/Product/Flat/StateTest.php  |   0
 .../Product/Flat/System/Config/ModeTest.php   |   0
 .../Product/Flat/Table/BuilderTest.php        |   0
 .../Indexer/Product/Flat/TableDataTest.php    |   0
 .../Unit/Model/Indexer/Product/FlatTest.php   |   0
 .../Unit/Model/Indexer/Product/FullTest.php   |   0
 .../Indexer/Product/Price/Action/RowTest.php  |   0
 .../Indexer/Product/Price/Action/RowsTest.php |   0
 .../Product/Price/Plugin/WebsiteTest.php      |   0
 .../Price/System/Config/PriceScopeTest.php    |   0
 .../Layer/Category/AvailabilityFlagTest.php   |   0
 .../Layer/Category/CollectionFilterTest.php   |   0
 .../Category/FilterableAttributeListTest.php  |   0
 .../Model/Layer/Category/StateKeyTest.php     |   0
 .../Unit/Model/Layer/Filter/AttributeTest.php |   0
 .../Unit/Model/Layer/Filter/CategoryTest.php  |   0
 .../Filter/DataProvider/CategoryTest.php      |   0
 .../Layer/Filter/DataProvider/DecimalTest.php |   0
 .../Layer/Filter/DataProvider/PriceTest.php   |   0
 .../Unit/Model/Layer/Filter/DecimalTest.php   |   0
 .../Unit/Model/Layer/Filter/FactoryTest.php   |   0
 .../Layer/Filter/Item/DataBuilderTest.php     |   0
 .../Unit/Model/Layer/Filter/PriceTest.php     |   0
 .../Test/Unit/Model/Layer/FilterListTest.php  |   0
 .../Layer/Search/CollectionFilterTest.php     |   0
 .../Search/FilterableAttributeListTest.php    |   0
 .../Unit/Model/Layer/Search/StateKeyTest.php  |   0
 .../Test/Unit/Model/Layer/StateTest.php       |   0
 .../Catalog/Test/Unit/Model/LayerTest.php     |   0
 .../Model/Layout/DepersonalizePluginTest.php  |   0
 .../Model/Locator/RegistryLocatorTest.php     |   0
 .../Test/Unit/Model/Plugin/LogTest.php        |   0
 .../TransactionWrapperTest.php                |   0
 .../Plugin/QuoteItemProductOptionTest.php     |   0
 .../Test/Unit/Model/Product/ActionTest.php    |   0
 .../Attribute/AttributeSetFinderTest.php      |   0
 .../Product/Attribute/Backend/BooleanTest.php |   0
 .../Attribute/Backend/CategoryTest.php        |   0
 .../Backend/GroupPrice/AbstractTest.php       |   0
 .../Backend/Media/EntryConverterPoolTest.php  |   0
 .../Backend/Media/ImageEntryConverterTest.php |   0
 .../Product/Attribute/Backend/PriceTest.php   |   0
 .../Product/Attribute/Backend/StockTest.php   |   0
 .../Attribute/Backend/TierpriceTest.php       |   0
 .../Product/Attribute/Backend/WeightTest.php  |   0
 .../Product/Attribute/Frontend/ImageTest.php  |   0
 .../Model/Product/Attribute/GroupTest.php     |   0
 .../Product/Attribute/ManagementTest.php      |   0
 .../Attribute/OptionManagementTest.php        |   0
 .../Product/Attribute/RepositoryTest.php      |   0
 .../Product/Attribute/SetManagementTest.php   |   0
 .../Product/Attribute/SetRepositoryTest.php   |   0
 .../Product/Attribute/Source/BooleanTest.php  |   0
 .../Source/CountryofmanufactureTest.php       |   0
 .../Attribute/Source/InputtypeTest.php        |   0
 .../Product/Attribute/Source/LayoutTest.php   |   0
 .../Product/Attribute/Source/StatusTest.php   |   0
 .../Model/Product/Attribute/TypesListTest.php |   0
 .../Model/Product/CartConfigurationTest.php   |   0
 .../Unit/Model/Product/CatalogPriceTest.php   |   0
 .../Unit/Model/Product/Compare/ItemTest.php   |   0
 .../Test/Unit/Model/Product/ConditionTest.php |   0
 .../Test/Unit/Model/Product/CopierTest.php    |   0
 .../Product/CopyConstructor/CompositeTest.php |   0
 .../Product/CopyConstructor/CrossSellTest.php |   0
 .../Product/CopyConstructor/RelatedTest.php   |   0
 .../Product/CopyConstructor/UpSellTest.php    |   0
 .../Product/CopyConstructorFactoryTest.php    |   0
 .../Product/Gallery/GalleryManagementTest.php |   0
 .../Gallery/MimeTypeExtensionMapTest.php      |   0
 .../Model/Product/Gallery/ProcessorTest.php   |   0
 .../Unit/Model/Product/Image/CacheTest.php    |   0
 .../Test/Unit/Model/Product/ImageTest.php     |   0
 .../Helper/ProductLinksTest.php               |   0
 .../Unit/Model/Product/Link/ConverterTest.php |   0
 .../Unit/Model/Product/Link/ResolverTest.php  |   0
 .../Test/Unit/Model/Product/LinkTest.php      |   0
 .../Model/Product/LinkTypeProviderTest.php    |   0
 .../Product/Media/AttributeManagementTest.php |   0
 .../Model/Product/Option/RepositoryTest.php   |   0
 .../Model/Product/Option/SaveHandlerTest.php  |   0
 .../Model/Product/Option/Type/FactoryTest.php |   0
 .../Model/Product/Option/Type/FileTest.php    |   0
 .../Model/Product/Option/UrlBuilderTest.php   |   0
 .../Option/Validator/DefaultValidatorTest.php |   0
 .../Product/Option/Validator/FileTest.php     |   0
 .../Product/Option/Validator/PoolTest.php     |   0
 .../Product/Option/Validator/SelectTest.php   |   0
 .../Product/Option/Validator/TextTest.php     |   0
 .../Unit/Model/Product/Option/ValueTest.php   |   0
 .../Test/Unit/Model/Product/OptionTest.php    |   0
 .../Product/Price/BasePriceStorageTest.php    |   0
 .../Model/Product/Price/CostStorageTest.php   |   0
 .../Product/Price/PricePersistenceTest.php    |   0
 .../Product/Price/SpecialPriceStorageTest.php |   0
 .../Product/Price/TierPriceStorageTest.php    |   0
 .../Validation/InvalidSkuProcessorTest.php    |   0
 .../Validation/TierPriceValidatorTest.php     |   0
 .../Product/PriceModifier/CompositeTest.php   |   0
 .../Unit/Model/Product/PriceModifierTest.php  |   0
 .../Pricing/Renderer/SalableResolverTest.php  |   0
 .../SynchronizerTest.php                      |   0
 .../Model/Product/ProductList/ToolbarTest.php |   0
 .../Product/ReservedAttributeListTest.php     |   0
 .../Model/Product/TierPriceManagementTest.php |   0
 .../Model/Product/Type/AbstractTypeTest.php   |   0
 .../Unit/Model/Product/Type/PriceTest.php     |   0
 .../Unit/Model/Product/Type/SimpleTest.php    |   0
 .../Unit/Model/Product/Type/VirtualTest.php   |   0
 .../Test/Unit/Model/Product/TypeTest.php      |   0
 .../Product/TypeTransitionManagerTest.php     |   0
 .../Test/Unit/Model/Product/UrlTest.php       |   0
 .../Test/Unit/Model/Product/ValidatorTest.php |   0
 .../Unit/Model/Product/VisibilityTest.php     |   0
 .../Model/Product/Website/ReadHandlerTest.php |   0
 .../Model/Product/Website/SaveHandlerTest.php |   0
 .../ProductAttributeGroupRepositoryTest.php   |   0
 .../Test/Unit/Model/ProductIdLocatorTest.php  |   0
 .../Unit/Model/ProductLink/ManagementTest.php |   0
 .../Unit/Model/ProductLink/RepositoryTest.php |   0
 .../Test/Unit/Model/ProductManagementTest.php |   0
 .../Unit/Model/ProductOptionProcessorTest.php |   0
 .../Model/ProductOptions/Config/XsdTest.php   |   0
 .../invalidProductOptionsMergedXmlArray.php   |   0
 .../_files/invalidProductOptionsXmlArray.php  |   0
 .../_files/product_options_merged_valid.xml   |   0
 .../Config/_files/product_options_valid.xml   |   0
 .../FormattedPriceInfoBuilderTest.php         |   0
 .../Model/ProductRender/PriceInfoTest.php     |   0
 .../Test/Unit/Model/ProductRenderListTest.php |   0
 .../MediaGalleryProcessorTest.php             |   0
 .../Test/Unit/Model/ProductRepositoryTest.php |   0
 .../Catalog/Test/Unit/Model/ProductTest.php   |   0
 .../Test/Unit/Model/ProductTypeListTest.php   |   0
 .../ProductTypes/Config/ConverterTest.php     |   0
 .../ProductTypes/Config/SchemaLocatorTest.php |   0
 .../ProductTypes/Config/XsdMergedTest.php     |   0
 .../Model/ProductTypes/Config/XsdTest.php     |   0
 .../invalidProductTypesMergedXmlArray.php     |   0
 .../_files/invalidProductTypesXmlArray.php    |   0
 .../Config/_files/product_types.php           |   0
 .../Config/_files/product_types.xml           |   0
 .../Config/_files/valid_product_types.xml     |   0
 .../_files/valid_product_types_merged.xml     |   0
 .../Unit/Model/ProductTypes/ConfigTest.php    |   0
 .../Unit/Model/ResourceModel/AbstractTest.php |   0
 .../Attribute/ConditionBuilderTest.php        |   0
 .../Category/Collection/FactoryTest.php       |   0
 .../Model/ResourceModel/Category/FlatTest.php |   0
 .../Model/ResourceModel/Category/TreeTest.php |   0
 .../Unit/Model/ResourceModel/CategoryTest.php |   0
 .../Unit/Model/ResourceModel/ConfigTest.php   |   0
 .../Model/ResourceModel/Eav/AttributeTest.php |   0
 .../Indexer/ActiveTableSwitcherTest.php       |   0
 .../ResourceModel/Layer/Filter/PriceTest.php  |   0
 .../Product/CategoryLinkTest.php              |   0
 .../Collection/ProductLimitationTest.php      |   0
 .../ResourceModel/Product/CollectionTest.php  |   0
 .../CompositeBaseSelectProcessorTest.php      |   0
 .../Model/ResourceModel/Product/FlatTest.php  |   0
 .../ResourceModel/Product/GalleryTest.php     |   0
 .../Indexer/Eav/BatchSizeCalculatorTest.php   |   0
 .../Eav/DecimalRowSizeEstimatorTest.php       |   0
 ...edProductSelectBuilderByIndexPriceTest.php |   0
 .../Indexer/Price/BatchSizeCalculatorTest.php |   0
 .../CompositeProductBatchSizeAdjusterTest.php |   0
 ...ompositeProductRelationsCalculatorTest.php |   0
 .../CompositeProductRowSizeEstimatorTest.php  |   0
 .../Indexer/Price/DefaultPriceTest.php        |   0
 .../Price/IndexTableRowSizeEstimatorTest.php  |   0
 .../Indexer/TemporaryTableStrategyTest.php    |   0
 .../Product/Link/Product/CollectionTest.php   |   0
 .../Model/ResourceModel/Product/LinkTest.php  |   0
 .../Product/Option/CollectionTest.php         |   0
 .../Product/StatusBaseSelectProcessorTest.php |   0
 .../Product/Website/LinkTest.php              |   0
 .../Unit/Model/ResourceModel/ProductTest.php  |   0
 .../Test/Unit/Model/Rss/CategoryTest.php      |   0
 .../Model/Rss/Product/NewProductsTest.php     |   0
 .../Model/Rss/Product/NotifyStockTest.php     |   0
 .../Unit/Model/Rss/Product/SpecialTest.php    |   0
 .../Catalog/Url/Rewrite/SuffixTest.php        |   0
 .../System/Config/Source/InputtypeTest.php    |   0
 .../Model/Template/Filter/FactoryTest.php     |   0
 .../Model/View/Asset/Image/ContextTest.php    |   0
 .../Test/Unit/Model/View/Asset/ImageTest.php  |   0
 .../Unit/Model/View/Asset/PlaceholderTest.php |   0
 .../Test/Unit/Model/_files/converted_view.php |   0
 .../Test/Unit/Model/_files/valid_view.xml     |   0
 .../Unit/Observer/MenuCategoryDataTest.php    |   0
 ...nizeWebsiteAttributesOnStoreChangeTest.php |   0
 .../Test/Unit/Plugin/Block/TopmenuTest.php    |   0
 .../RemoveProductsTest.php                    |   0
 .../Indexer/Category/Product/ExecuteTest.php  |   0
 .../Action/UpdateAttributesFlushCacheTest.php |   0
 .../ResourceModel/Attribute/SaveTest.php      |   0
 .../Plugin/Model/ResourceModel/ConfigTest.php |   0
 .../Test/Unit/Pricing/Price/BasePriceTest.php |   0
 .../Pricing/Price/ConfiguredPriceTest.php     |   0
 .../Pricing/Price/CustomOptionPriceTest.php   |   0
 .../Unit/Pricing/Price/FinalPriceTest.php     |   0
 .../Price/MinimalTierPriceCalculatorTest.php  |   0
 .../Unit/Pricing/Price/RegularPriceTest.php   |   0
 .../Unit/Pricing/Price/SpecialPriceTest.php   |   0
 .../Test/Unit/Pricing/Price/TierPriceTest.php |   0
 .../Unit/Pricing/Render/FinalPriceBoxTest.php |   0
 .../Test/Unit/Pricing/Render/PriceBoxTest.php |   0
 .../Catalog/Test/Unit/Pricing/RenderTest.php  |   0
 .../Test/Unit/Setup/CategorySetupTest.php     |   0
 .../Test/Unit/Ui/AllowedProductTypesTest.php  |   0
 .../Listing/Columns/AbstractColumnTest.php    |   0
 .../Listing/Columns/AttributeSetTextTest.php  |   0
 .../Listing/Columns/StatusTextTest.php        |   0
 .../Product/Form/Categories/OptionsTest.php   |   0
 .../CatalogEavValidationRulesTest.php         |   0
 .../Form/Modifier/AbstractModifierTest.php    |   0
 .../Form/Modifier/AdvancedPricingTest.php     |   0
 .../Form/Modifier/AttributeSetTest.php        |   0
 .../Product/Form/Modifier/AttributesTest.php  |   0
 .../Product/Form/Modifier/CategoriesTest.php  |   0
 .../Form/Modifier/CustomOptionsTest.php       |   0
 .../Product/Form/Modifier/FactoryTest.php     |   0
 .../Product/Form/Modifier/GeneralTest.php     |   0
 .../Product/Form/Modifier/ImagesTest.php      |   0
 .../Product/Form/Modifier/RelatedTest.php     |   0
 .../Modifier/ScheduleDesignUpdateTest.php     |   0
 .../Product/Form/Modifier/SystemTest.php      |   0
 .../Product/Form/Modifier/TierPriceTest.php   |   0
 .../Product/Form/Modifier/WebsitesTest.php    |   0
 .../Form/NewCategoryDataProviderTest.php      |   0
 .../Product/Form/ProductDataProviderTest.php  |   0
 .../Listing/Collector/AdditionalInfoTest.php  |   0
 .../Product/Listing/Collector/ImageTest.php   |   0
 .../Product/Listing/Collector/PriceTest.php   |   0
 .../Product/Listing/Collector/UrlTest.php     |   0
 .../ProductCustomOptionsDataProviderTest.php  |   0
 .../Related/AbstractDataProviderTest.php      |   0
 .../Related/CrossSellDataProviderTest.php     |   0
 .../Related/RelatedDataProviderTest.php       |   0
 .../Related/UpSellDataProviderTest.php        |   0
 .../Unit/_files/catalog/product/somefile.png  | Bin
 .../catalog/product/watermark/somefile.png    | Bin
 .../Catalog/Ui/AllowedProductTypes.php        |   0
 .../Category/Form/Element/Wysiwyg.php         |   0
 .../Catalog/Ui/Component/ColumnFactory.php    |   0
 .../Catalog/Ui/Component/FilterFactory.php    |   0
 .../Listing/Attribute/AbstractRepository.php  |   0
 .../Listing/Attribute/Repository.php          |   0
 .../Listing/Attribute/RepositoryInterface.php |   0
 .../Catalog/Ui/Component/Listing/Columns.php  |   0
 .../Listing/Columns/AttributeSetText.php      |   0
 .../Ui/Component/Listing/Columns/Price.php    |   0
 .../Listing/Columns/ProductActions.php        |   0
 .../Component/Listing/Columns/StatusText.php  |   0
 .../Component/Listing/Columns/Thumbnail.php   |   0
 .../Ui/Component/Listing/Columns/Websites.php |   0
 .../Catalog/Ui/Component/Listing/Filters.php  |   0
 .../Product/Form/Categories/Options.php       |   0
 .../CatalogEavValidationRules.php             |   0
 .../Product/AddStoreFieldToCollection.php     |   0
 .../Product/AddWebsitesFieldToCollection.php  |   0
 .../Product/Attributes/Listing.php            |   0
 .../Form/Modifier/AbstractModifier.php        |   0
 .../Product/Form/Modifier/AdvancedPricing.php |   0
 .../Product/Form/Modifier/Alerts.php          |   0
 .../Product/Form/Modifier/AttributeSet.php    |   0
 .../Product/Form/Modifier/Attributes.php      |   0
 .../Product/Form/Modifier/Categories.php      |   0
 .../Product/Form/Modifier/Images.php          |   0
 .../Product/Form/Modifier/Related.php         |   0
 .../Form/Modifier/ScheduleDesignUpdate.php    |   0
 .../Product/Form/Modifier/System.php          |   0
 .../Product/Form/Modifier/TierPrice.php       |   0
 .../Product/Form/Modifier/Websites.php        |   0
 .../Product/Form/NewCategoryDataProvider.php  |   0
 .../Product/Form/ProductDataProvider.php      |   0
 .../Listing/Collector/AdditionalInfo.php      |   0
 .../Product/Listing/Collector/Image.php       |   0
 .../Product/Listing/Collector/Price.php       |   0
 .../Product/Listing/Collector/Url.php         |   0
 .../Product/Listing/DataProvider.php          |   0
 .../ProductCustomOptionsDataProvider.php      |   0
 .../Product/ProductDataProvider.php           |   0
 .../ProductRenderCollectorComposite.php       |   0
 .../ProductRenderCollectorInterface.php       |   0
 .../Product/Related/AbstractDataProvider.php  |   0
 .../Product/Related/CrossSellDataProvider.php |   0
 .../Product/Related/RelatedDataProvider.php   |   0
 .../Product/Related/UpSellDataProvider.php    |   0
 app/code/Magento/Catalog/composer.json        |   0
 app/code/Magento/Catalog/etc/acl.xml          |   0
 app/code/Magento/Catalog/etc/adminhtml/di.xml |   0
 .../Magento/Catalog/etc/adminhtml/events.xml  |   0
 .../Magento/Catalog/etc/adminhtml/menu.xml    |   0
 .../Magento/Catalog/etc/adminhtml/routes.xml  |   0
 .../Magento/Catalog/etc/adminhtml/system.xml  |   0
 .../Catalog/etc/catalog_attributes.xml        |   0
 .../Catalog/etc/catalog_attributes.xsd        |   0
 app/code/Magento/Catalog/etc/config.xml       |   0
 app/code/Magento/Catalog/etc/crontab.xml      |   0
 app/code/Magento/Catalog/etc/di.xml           |   0
 .../Magento/Catalog/etc/eav_attributes.xml    |   0
 app/code/Magento/Catalog/etc/events.xml       |   0
 .../Catalog/etc/extension_attributes.xml      |   0
 app/code/Magento/Catalog/etc/frontend/di.xml  |   0
 .../Magento/Catalog/etc/frontend/events.xml   |   0
 .../Catalog/etc/frontend/page_types.xml       |   0
 .../Magento/Catalog/etc/frontend/routes.xml   |   0
 .../Magento/Catalog/etc/frontend/sections.xml |   0
 app/code/Magento/Catalog/etc/indexer.xml      |   0
 app/code/Magento/Catalog/etc/module.xml       |   0
 app/code/Magento/Catalog/etc/mview.xml        |   0
 .../Magento/Catalog/etc/product_options.xml   |   0
 .../Magento/Catalog/etc/product_options.xsd   |   0
 .../Catalog/etc/product_options_merged.xsd    |   0
 .../Magento/Catalog/etc/product_types.xml     |   0
 .../Magento/Catalog/etc/product_types.xsd     |   0
 .../Catalog/etc/product_types_base.xsd        |   0
 .../Catalog/etc/product_types_merged.xsd      |   0
 app/code/Magento/Catalog/etc/view.xml         |   0
 app/code/Magento/Catalog/etc/webapi.xml       |   0
 .../Magento/Catalog/etc/webapi_rest/di.xml    |   0
 .../Magento/Catalog/etc/webapi_soap/di.xml    |   0
 app/code/Magento/Catalog/etc/widget.xml       |   0
 app/code/Magento/Catalog/i18n/en_US.csv       |   0
 app/code/Magento/Catalog/registration.php     |   0
 .../CATALOG_PRODUCT_COMPOSITE_CONFIGURE.xml   |   0
 ...ALOG_PRODUCT_COMPOSITE_CONFIGURE_ERROR.xml |   0
 ...ATALOG_PRODUCT_COMPOSITE_UPDATE_RESULT.xml |   0
 .../adminhtml/layout/catalog_category_add.xml |   0
 .../layout/catalog_category_create.xml        |   0
 .../layout/catalog_category_edit.xml          |   0
 .../catalog_product_action_attribute_edit.xml |   0
 .../catalog_product_alertspricegrid.xml       |   0
 .../catalog_product_alertsstockgrid.xml       |   0
 .../layout/catalog_product_attribute_edit.xml |   0
 .../catalog_product_attribute_edit_form.xml   |   0
 .../catalog_product_change_attribute_set.xml  |   0
 .../layout/catalog_product_crosssell.xml      |   0
 .../layout/catalog_product_crosssellgrid.xml  |   0
 .../layout/catalog_product_customoptions.xml  |   0
 .../adminhtml/layout/catalog_product_edit.xml |   0
 .../adminhtml/layout/catalog_product_form.xml |   0
 .../adminhtml/layout/catalog_product_grid.xml |   0
 .../layout/catalog_product_index.xml          |   0
 .../adminhtml/layout/catalog_product_new.xml  |   0
 .../layout/catalog_product_options.xml        |   0
 .../catalog_product_optionsimportgrid.xml     |   0
 .../layout/catalog_product_related.xml        |   0
 .../layout/catalog_product_relatedgrid.xml    |   0
 .../layout/catalog_product_reload.xml         |   0
 .../layout/catalog_product_set_block.xml      |   0
 .../layout/catalog_product_set_edit.xml       |   0
 .../layout/catalog_product_set_index.xml      |   0
 .../layout/catalog_product_upsell.xml         |   0
 .../layout/catalog_product_upsellgrid.xml     |   0
 .../view/adminhtml/requirejs-config.js        |   0
 .../catalog/category/checkboxes/tree.phtml    |   0
 .../templates/catalog/category/edit.phtml     |   0
 .../category/edit/assign_products.phtml       |   0
 .../templates/catalog/category/tree.phtml     |   0
 .../catalog/category/widget/tree.phtml        |   0
 .../form/renderer/fieldset/element.phtml      |   0
 .../adminhtml/templates/catalog/product.phtml |   0
 .../catalog/product/attribute/form.phtml      |   0
 .../catalog/product/attribute/js.phtml        |   0
 .../catalog/product/attribute/labels.phtml    |   0
 .../catalog/product/attribute/options.phtml   |   0
 .../catalog/product/attribute/set/main.phtml  |   0
 .../attribute/set/main/tree/attribute.phtml   |   0
 .../attribute/set/main/tree/group.phtml       |   0
 .../product/attribute/set/toolbar/add.phtml   |   0
 .../product/attribute/set/toolbar/main.phtml  |   0
 .../catalog/product/composite/configure.phtml |   0
 .../product/composite/fieldset/options.phtml  |   0
 .../composite/fieldset/options/js.phtml       |   0
 .../fieldset/options/type/date.phtml          |   0
 .../fieldset/options/type/default.phtml       |   0
 .../fieldset/options/type/file.phtml          |   0
 .../fieldset/options/type/select.phtml        |   0
 .../fieldset/options/type/text.phtml          |   0
 .../product/composite/fieldset/qty.phtml      |   0
 .../templates/catalog/product/edit.phtml      |   0
 .../product/edit/action/attribute.phtml       |   0
 .../product/edit/action/inventory.phtml       |   0
 .../product/edit/action/websites.phtml        |   0
 .../catalog/product/edit/attribute_set.phtml  |   0
 .../product/edit/category/new/form.phtml      |   0
 .../catalog/product/edit/options.phtml        |   0
 .../catalog/product/edit/options/option.phtml |   0
 .../product/edit/options/type/date.phtml      |   0
 .../product/edit/options/type/file.phtml      |   0
 .../product/edit/options/type/select.phtml    |   0
 .../product/edit/options/type/text.phtml      |   0
 .../catalog/product/edit/price/tier.phtml     |   0
 .../catalog/product/edit/serializer.phtml     |   0
 .../catalog/product/edit/websites.phtml       |   0
 .../catalog/product/helper/gallery.phtml      |   0
 .../templates/catalog/product/js.phtml        |   0
 .../templates/catalog/product/tab/alert.phtml |   0
 .../catalog/product/tab/inventory.phtml       |   0
 .../product/widget/chooser/container.phtml    |   0
 .../templates/catalog/wysiwyg/js.phtml        |   0
 .../product/edit/attribute/search.phtml       |   0
 .../templates/product/edit/tabs.phtml         |   0
 .../product/edit/tabs/child_tab.phtml         |   0
 .../product/grid/massaction_extended.phtml    |   0
 .../adminhtml/templates/rss/grid/link.phtml   |   0
 .../adminhtml/ui_component/category_form.xml  |   0
 .../crosssell_product_listing.xml             |   0
 .../ui_component/design_config_form.xml       |   0
 .../ui_component/new_category_form.xml        |   0
 .../product_attribute_add_form.xml            |   0
 .../ui_component/product_attributes_grid.xml  |   0
 .../product_custom_options_listing.xml        |   0
 .../adminhtml/ui_component/product_form.xml   |   0
 .../ui_component/product_listing.xml          |   0
 .../ui_component/related_product_listing.xml  |   0
 .../ui_component/upsell_product_listing.xml   |   0
 .../web/catalog/apply-to-type-switcher.js     |   0
 .../web/catalog/base-image-uploader.js        |   0
 .../web/catalog/category/assign-products.js   |   0
 .../adminhtml/web/catalog/category/edit.js    |   0
 .../adminhtml/web/catalog/category/form.js    |   0
 .../adminhtml/web/catalog/images/select2.png  | Bin
 .../web/catalog/images/select2x2.png          | Bin
 .../adminhtml/web/catalog/images/spinner.gif  | Bin
 .../web/catalog/product-attributes.js         |   0
 .../view/adminhtml/web/catalog/product.js     |   0
 .../product/attribute/unique-validate.js      |   0
 .../catalog/product/composite/configure.js    |   0
 .../view/adminhtml/web/catalog/type-events.js |   0
 .../web/component/file-type-field.js          |   0
 .../web/component/image-size-field.js         |   0
 .../web/component/select-type-grid.js         |   0
 .../web/component/static-type-container.js    |   0
 .../web/component/static-type-input.js        |   0
 .../web/component/static-type-select.js       |   0
 .../web/component/text-type-field.js          |   0
 .../adminhtml/web/images/ajax-loader-big.gif  | Bin
 .../web/images/category_widget_link.png       | Bin
 .../web/images/product_widget_compared.gif    | Bin
 .../web/images/product_widget_link.png        | Bin
 .../web/images/product_widget_new.png         | Bin
 .../web/images/product_widget_viewed.gif      | Bin
 .../adminhtml/web/js/bundle-proxy-button.js   |   0
 .../view/adminhtml/web/js/category-tree.js    |   0
 .../web/js/components/attribute-set-select.js |   0
 .../web/js/components/attributes-fieldset.js  |   0
 .../js/components/attributes-grid-paging.js   |   0
 .../components/attributes-insert-listing.js   |   0
 .../adminhtml/web/js/components/checkbox.js   |   0
 .../js/components/custom-options-component.js |   0
 .../components/custom-options-price-type.js   |   0
 .../web/js/components/disable-hide-select.js  |   0
 .../js/components/disable-on-option/input.js  |   0
 .../js/components/disable-on-option/select.js |   0
 .../components/disable-on-option/strategy.js  |   0
 .../js/components/disable-on-option/yesno.js  |   0
 .../dynamic-rows-import-custom-options.js     |   0
 .../js/components/dynamic-rows-tier-price.js  |   0
 .../web/js/components/import-handler.js       |   0
 .../js/components/input-handle-required.js    |   0
 .../adminhtml/web/js/components/messages.js   |   0
 .../components/multiselect-handle-required.js |   0
 .../web/js/components/new-attribute-form.js   |   0
 .../components/new-attribute-insert-form.js   |   0
 .../web/js/components/new-category.js         |   0
 .../web/js/components/product-status.js       |   0
 .../js/components/select-handle-required.js   |   0
 .../web/js/components/select-to-checkbox.js   |   0
 .../js/components/url-key-handle-changes.js   |   0
 .../js/components/visible-on-option/date.js   |   0
 .../components/visible-on-option/fieldset.js  |   0
 .../js/components/visible-on-option/input.js  |   0
 .../js/components/visible-on-option/select.js |   0
 .../components/visible-on-option/strategy.js  |   0
 .../components/visible-on-option/textarea.js  |   0
 .../js/components/visible-on-option/yesno.js  |   0
 .../adminhtml/web/js/custom-options-type.js   |   0
 .../view/adminhtml/web/js/custom-options.js   |   0
 .../view/adminhtml/web/js/edit-tree.js        |   0
 .../web/js/form/element/action-delete.js      |   0
 .../adminhtml/web/js/form/element/checkbox.js |   0
 .../adminhtml/web/js/form/element/input.js    |   0
 .../adminhtml/web/js/new-category-dialog.js   |   0
 .../Catalog/view/adminhtml/web/js/options.js  |   0
 .../view/adminhtml/web/js/product-gallery.js  |   0
 .../web/js/product/weight-handler.js          |   0
 .../web/js/tier-price/percentage-processor.js |   0
 .../web/js/tier-price/value-type-select.js    |   0
 .../js/utils/percentage-price-calculator.js   |   0
 .../ui-bg_diagonals-thick_18_b81900_40x40.png | Bin
 .../ui-bg_diagonals-thick_20_666666_40x40.png | Bin
 .../images/ui-bg_flat_10_000000_40x100.png    | Bin
 .../images/ui-bg_glass_100_f6f6f6_1x400.png   | Bin
 .../images/ui-bg_glass_100_fdf5ce_1x400.png   | Bin
 .../images/ui-bg_glass_65_ffffff_1x400.png    | Bin
 .../ui-bg_gloss-wave_35_f67028_500x100.png    | Bin
 .../ui-bg_highlight-soft_100_eeeeee_1x100.png | Bin
 .../ui-bg_highlight-soft_75_ffe45c_1x100.png  | Bin
 .../images/ui-icons_222222_256x240.png        | Bin
 .../images/ui-icons_228ef1_256x240.png        | Bin
 .../images/ui-icons_ef8c08_256x240.png        | Bin
 .../images/ui-icons_ffd27a_256x240.png        | Bin
 .../images/ui-icons_ffffff_256x240.png        | Bin
 .../web/template/attributes/grid/paging.html  |   0
 .../view/adminhtml/web/template/checkbox.html |   0
 .../template/form/element/action-delete.html  |   0
 .../web/template/form/element/checkbox.html   |   0
 .../element/helper/custom-option-service.html |   0
 .../helper/custom-option-type-service.html    |   0
 .../web/template/form/element/input.html      |   0
 .../adminhtml/web/template/form/field.html    |   0
 .../adminhtml/web/template/image-preview.html |   0
 .../base/layout/catalog_product_prices.xml    |   0
 .../Catalog/view/base/layout/default.xml      |   0
 .../Catalog/view/base/layout/empty.xml        |   0
 .../view/base/templates/js/components.phtml   |   0
 .../product/price/amount/default.phtml        |   0
 .../product/price/configured_price.phtml      |   0
 .../templates/product/price/default.phtml     |   0
 .../templates/product/price/final_price.phtml |   0
 .../templates/product/price/tier_prices.phtml |   0
 .../web/images/product/placeholder/image.jpg  | Bin
 .../product/placeholder/small_image.jpg       | Bin
 .../product/placeholder/swatch_image.jpg      | Bin
 .../images/product/placeholder/thumbnail.jpg  | Bin
 .../Catalog/view/base/web/js/price-box.js     |   0
 .../view/base/web/js/price-option-date.js     |   0
 .../view/base/web/js/price-option-file.js     |   0
 .../Catalog/view/base/web/js/price-options.js |   0
 .../Catalog/view/base/web/js/price-utils.js   |   0
 .../base/web/js/product/addtocart-button.js   |   0
 .../web/js/product/addtocompare-button.js     |   0
 .../view/base/web/js/product/learn-more.js    |   0
 .../product/list/column-status-validator.js   |   0
 .../js/product/list/columns/final-price.js    |   0
 .../base/web/js/product/list/columns/image.js |   0
 .../web/js/product/list/columns/price-box.js  |   0
 .../js/product/list/columns/pricetype-box.js  |   0
 .../view/base/web/js/product/list/listing.js  |   0
 .../Catalog/view/base/web/js/product/name.js  |   0
 .../web/template/product/final_price.html     |   0
 .../view/base/web/template/product/link.html  |   0
 .../template/product/list/columns/image.html  |   0
 .../list/columns/image_with_borders.html      |   0
 .../web/template/product/list/listing.html    |   0
 .../view/base/web/template/product/name.html  |   0
 .../web/template/product/price/max_price.html |   0
 .../product/price/max_regular_price.html      |   0
 .../template/product/price/minimal_price.html |   0
 .../product/price/minimal_regular_price.html  |   0
 .../web/template/product/price/price_box.html |   0
 .../template/product/price/pricetype_box.html |   0
 .../template/product/price/regular_price.html |   0
 .../template/product/price/special_price.html |   0
 .../frontend/layout/catalog_category_view.xml |   0
 .../catalog_category_view_type_default.xml    |   0
 ...ory_view_type_default_without_children.xml |   0
 .../layout/catalog_product_compare_index.xml  |   0
 .../layout/catalog_product_opengraph.xml      |   0
 .../frontend/layout/catalog_product_view.xml  |   0
 .../catalog_product_view_type_simple.xml      |   0
 .../catalog_product_view_type_virtual.xml     |   0
 .../layout/checkout_cart_item_renderers.xml   |   0
 .../Catalog/view/frontend/layout/default.xml  |   0
 .../Catalog/view/frontend/requirejs-config.js |   0
 .../frontend/templates/category/cms.phtml     |   0
 .../templates/category/description.phtml      |   0
 .../frontend/templates/category/image.phtml   |   0
 .../templates/category/products.phtml         |   0
 .../frontend/templates/category/rss.phtml     |   0
 .../category/widget/link/link_block.phtml     |   0
 .../category/widget/link/link_inline.phtml    |   0
 .../templates/frontend_storage_manager.phtml  |   0
 .../frontend/templates/navigation/left.phtml  |   0
 .../templates/product/compare/link.phtml      |   0
 .../templates/product/compare/list.phtml      |   0
 .../templates/product/compare/sidebar.phtml   |   0
 .../frontend/templates/product/gallery.phtml  |   0
 .../frontend/templates/product/image.phtml    |   0
 .../product/image_with_borders.phtml          |   0
 .../frontend/templates/product/list.phtml     |   0
 .../product/list/addto/compare.phtml          |   0
 .../templates/product/list/items.phtml        |   0
 .../templates/product/list/toolbar.phtml      |   0
 .../product/list/toolbar/amount.phtml         |   0
 .../product/list/toolbar/limiter.phtml        |   0
 .../product/list/toolbar/sorter.phtml         |   0
 .../product/list/toolbar/viewmode.phtml       |   0
 .../frontend/templates/product/listing.phtml  |   0
 .../templates/product/view/additional.phtml   |   0
 .../templates/product/view/addto.phtml        |   0
 .../product/view/addto/compare.phtml          |   0
 .../templates/product/view/addtocart.phtml    |   0
 .../templates/product/view/attribute.phtml    |   0
 .../templates/product/view/attributes.phtml   |   0
 .../templates/product/view/counter.phtml      |   0
 .../templates/product/view/description.phtml  |   0
 .../templates/product/view/details.phtml      |   0
 .../templates/product/view/form.phtml         |   0
 .../templates/product/view/gallery.phtml      |   0
 .../templates/product/view/mailto.phtml       |   0
 .../product/view/opengraph/currency.phtml     |   0
 .../product/view/opengraph/general.phtml      |   0
 .../templates/product/view/options.phtml      |   0
 .../product/view/options/type/date.phtml      |   0
 .../product/view/options/type/default.phtml   |   0
 .../product/view/options/type/file.phtml      |   0
 .../product/view/options/type/select.phtml    |   0
 .../product/view/options/type/text.phtml      |   0
 .../product/view/options/wrapper.phtml        |   0
 .../product/view/options/wrapper/bottom.phtml |   0
 .../templates/product/view/price_clone.phtml  |   0
 .../templates/product/view/review.phtml       |   0
 .../templates/product/view/type/default.phtml |   0
 .../product/widget/compared/grid.phtml        |   0
 .../product/widget/compared/list.phtml        |   0
 .../product/widget/compared/sidebar.phtml     |   0
 .../product/widget/link/link_block.phtml      |   0
 .../product/widget/link/link_inline.phtml     |   0
 .../widget/new/column/new_default_list.phtml  |   0
 .../widget/new/column/new_images_list.phtml   |   0
 .../widget/new/column/new_names_list.phtml    |   0
 .../product/widget/new/content/new_grid.phtml |   0
 .../product/widget/new/content/new_list.phtml |   0
 .../product/widget/viewed/grid.phtml          |   0
 .../product/widget/viewed/list.phtml          |   0
 .../product/widget/viewed/sidebar.phtml       |   0
 .../ui_component/widget_recently_compared.xml |   0
 .../ui_component/widget_recently_viewed.xml   |   0
 .../web/images/product_widget_compared.gif    | Bin
 .../web/images/product_widget_viewed.gif      | Bin
 .../frontend/web/js/catalog-add-to-cart.js    |   0
 .../Catalog/view/frontend/web/js/gallery.js   |   0
 .../Catalog/view/frontend/web/js/list.js      |   0
 .../frontend/web/js/product/list/toolbar.js   |   0
 .../web/js/product/provider-compared.js       |   0
 .../view/frontend/web/js/product/provider.js  |   0
 .../frontend/web/js/product/query-builder.js  |   0
 .../web/js/product/storage/data-storage.js    |   0
 .../js/product/storage/ids-storage-compare.js |   0
 .../web/js/product/storage/ids-storage.js     |   0
 .../web/js/product/storage/storage-service.js |   0
 .../frontend/web/js/product/uenc-processor.js |   0
 .../frontend/web/js/product/view/provider.js  |   0
 .../view/frontend/web/js/related-products.js  |   0
 .../view/frontend/web/js/storage-manager.js   |   0
 .../view/frontend/web/js/upsell-products.js   |   0
 .../view/frontend/web/js/validate-product.js  |   0
 .../frontend/web/js/view/compare-products.js  |   0
 .../view/frontend/web/js/view/image.js        |   0
 .../Catalog/view/frontend/web/js/zoom.js      |   0
 .../frontend/web/product/view/validation.js   |   0
 .../template/product/addtocart-button.html    |   0
 .../template/product/addtocompare-button.html |   0
 .../frontend/web/template/product/image.html  |   0
 .../template/product/image_with_borders.html  |   0
 app/code/Magento/CatalogAnalytics/LICENSE.txt |   0
 .../Magento/CatalogAnalytics/LICENSE_AFL.txt  |   0
 app/code/Magento/CatalogAnalytics/README.md   |   0
 .../Magento/CatalogAnalytics/composer.json    |   0
 .../CatalogAnalytics/etc/analytics.xml        |   0
 .../Magento/CatalogAnalytics/etc/module.xml   |   0
 .../Magento/CatalogAnalytics/etc/reports.xml  |   0
 .../Magento/CatalogAnalytics/registration.php |   0
 .../Magento/CatalogImportExport/LICENSE.txt   |   0
 .../CatalogImportExport/LICENSE_AFL.txt       |   0
 .../Model/Export/Product.php                  |   0
 .../Export/Product/Type/AbstractType.php      |   0
 .../Model/Export/Product/Type/Factory.php     |   0
 .../Model/Export/Product/Type/Simple.php      |   0
 .../Model/Export/RowCustomizer/Composite.php  |   0
 .../Model/Export/RowCustomizerInterface.php   |   0
 .../Model/Import/Product.php                  |   0
 .../Import/Product/CategoryProcessor.php      |   0
 .../Import/Product/MediaGalleryProcessor.php  |   0
 .../Model/Import/Product/Option.php           |   0
 .../Import/Product/RowValidatorInterface.php  |   0
 .../Model/Import/Product/SkuProcessor.php     |   0
 .../Model/Import/Product/StoreResolver.php    |   0
 .../Import/Product/TaxClassProcessor.php      |   0
 .../Import/Product/Type/AbstractType.php      |   0
 .../Model/Import/Product/Type/Factory.php     |   0
 .../Model/Import/Product/Type/Simple.php      |   0
 .../Model/Import/Product/Type/Virtual.php     |   0
 .../Model/Import/Product/Validator.php        |   0
 .../Validator/AbstractImportValidator.php     |   0
 .../Product/Validator/AbstractPrice.php       |   0
 .../Model/Import/Product/Validator/Media.php  |   0
 .../Import/Product/Validator/Quantity.php     |   0
 .../Product/Validator/SuperProductsSku.php    |   0
 .../Import/Product/Validator/TierPrice.php    |   0
 .../Import/Product/Validator/Website.php      |   0
 .../Model/Import/Product/Validator/Weight.php |   0
 .../Model/Import/Proxy/Product.php            |   0
 .../Import/Proxy/Product/ResourceModel.php    |   0
 .../Model/Import/Uploader.php                 |   0
 .../Category/Product/Plugin/Import.php        |   0
 .../Product/Category/Plugin/Import.php        |   0
 .../Indexer/Product/Eav/Plugin/Import.php     |   0
 .../Indexer/Product/Flat/Plugin/Import.php    |   0
 .../Indexer/Product/Price/Plugin/Import.php   |   0
 .../Model/Indexer/Stock/Plugin/Import.php     |   0
 .../Test/Unit/Model/Export/ProductTest.php    |   0
 .../Test/Unit/Model/Export/StubProduct.php    |   0
 .../Import/Product/CategoryProcessorTest.php  |   0
 .../Model/Import/Product/SkuProcessorTest.php |   0
 .../Import/Product/TaxClassProcessorTest.php  |   0
 .../Import/Product/Type/AbstractTypeTest.php  |   0
 .../Model/Import/Product/Type/OptionTest.php  |   0
 .../Model/Import/Product/Type/VirtualTest.php |   0
 .../_files/product_with_custom_options.csv    |   0
 .../row_data_ambiguity_different_type.php     |   0
 .../row_data_ambiguity_several_db_rows.php    |   0
 .../Type/_files/row_data_main_empty_title.php |   0
 .../_files/row_data_main_incorrect_type.php   |   0
 .../row_data_main_invalid_max_characters.php  |   0
 .../_files/row_data_main_invalid_price.php    |   0
 .../row_data_main_invalid_sort_order.php      |   0
 .../_files/row_data_main_invalid_store.php    |   0
 ...row_data_main_max_characters_less_zero.php |   0
 .../Type/_files/row_data_main_no_title.php    |   0
 .../row_data_main_sort_order_less_zero.php    |   0
 .../Type/_files/row_data_main_valid.php       |   0
 .../Type/_files/row_data_no_custom_option.php |   0
 .../row_data_secondary_incorrect_price.php    |   0
 .../row_data_secondary_incorrect_row_sort.php |   0
 .../row_data_secondary_invalid_store.php      |   0
 .../row_data_secondary_row_sort_less_zero.php |   0
 .../Type/_files/row_data_secondary_valid.php  |   0
 .../Import/Product/Validator/MediaTest.php    |   0
 .../Import/Product/Validator/QuantityTest.php |   0
 .../Validator/SuperProductsSkuTest.php        |   0
 .../Product/Validator/TierPriceTest.php       |   0
 .../Model/Import/Product/ValidatorTest.php    |   0
 .../Test/Unit/Model/Import/ProductTest.php    |   0
 .../Test/Unit/Model/Import/UploaderTest.php   |   0
 .../Product/Flat/Plugin/ImportTest.php        |   0
 .../Product/Price/Plugin/ImportTest.php       |   0
 .../Model/Indexer/Stock/Plugin/ImportTest.php |   0
 .../Magento/CatalogImportExport/composer.json |   0
 .../CatalogImportExport/etc/config.xml        |   0
 .../Magento/CatalogImportExport/etc/di.xml    |   0
 .../CatalogImportExport/etc/export.xml        |   0
 .../CatalogImportExport/etc/import.xml        |   0
 .../CatalogImportExport/etc/module.xml        |   0
 .../CatalogImportExport/i18n/en_US.csv        |   0
 .../CatalogImportExport/registration.php      |   0
 .../Api/Data/StockCollectionInterface.php     |   0
 .../Api/Data/StockInterface.php               |   0
 .../Api/Data/StockItemCollectionInterface.php |   0
 .../Api/Data/StockItemInterface.php           |   0
 .../Data/StockStatusCollectionInterface.php   |   0
 .../Api/Data/StockStatusInterface.php         |   0
 .../Api/StockConfigurationInterface.php       |   0
 .../Api/StockCriteriaInterface.php            |   0
 .../Api/StockIndexInterface.php               |   0
 .../Api/StockItemCriteriaInterface.php        |   0
 .../Api/StockItemRepositoryInterface.php      |   0
 .../Api/StockManagementInterface.php          |   0
 .../Api/StockRegistryInterface.php            |   0
 .../Api/StockRepositoryInterface.php          |   0
 .../Api/StockStateInterface.php               |   0
 .../Api/StockStatusCriteriaInterface.php      |   0
 .../Api/StockStatusRepositoryInterface.php    |   0
 .../Adminhtml/Form/Field/Customergroup.php    |   0
 .../Block/Adminhtml/Form/Field/Minsaleqty.php |   0
 .../Block/Adminhtml/Form/Field/Stock.php      |   0
 .../Block/Plugin/ProductView.php              |   0
 .../CatalogInventory/Block/Qtyincrements.php  |   0
 .../Block/Stockqty/AbstractStockqty.php       |   0
 .../Block/Stockqty/Composite.php              |   0
 .../Block/Stockqty/DefaultStockqty.php        |   0
 .../Block/Stockqty/Type/Grouped.php           |   0
 .../Magento/CatalogInventory/Helper/Data.php  |   0
 .../CatalogInventory/Helper/Minsaleqty.php    |   0
 .../Magento/CatalogInventory/Helper/Stock.php |   0
 app/code/Magento/CatalogInventory/LICENSE.txt |   0
 .../Magento/CatalogInventory/LICENSE_AFL.txt  |   0
 .../Model/AddStockStatusToCollection.php      |   0
 .../Model/Adminhtml/Stock/Item.php            |   0
 .../Model/Config/Backend/AbstractValue.php    |   0
 .../Model/Config/Backend/Backorders.php       |   0
 .../Model/Config/Backend/Managestock.php      |   0
 .../Model/Config/Backend/ShowOutOfStock.php   |   0
 .../CatalogInventory/Model/Configuration.php  |   0
 .../CatalogInventory/Model/Indexer/Stock.php  |   0
 .../Model/Indexer/Stock/AbstractAction.php    |   0
 .../Model/Indexer/Stock/Action/Full.php       |   0
 .../Model/Indexer/Stock/Action/Row.php        |   0
 .../Model/Indexer/Stock/Action/Rows.php       |   0
 .../Model/Indexer/Stock/CacheCleaner.php      |   0
 .../Model/Indexer/Stock/Plugin/StoreGroup.php |   0
 .../Model/Indexer/Stock/Processor.php         |   0
 .../Model/Plugin/AfterProductLoad.php         |   0
 .../Model/Plugin/FilterCustomAttribute.php    |   0
 .../CatalogInventory/Model/Plugin/Layer.php   |   0
 .../Model/Plugin/ProductLinks.php             |   0
 .../Model/Plugin/ReindexUpdatedProducts.php   |   0
 .../CopyConstructor/CatalogInventory.php      |   0
 .../Model/ProductCollectionStockCondition.php |   0
 .../Model/Quote/Item/QuantityValidator.php    |   0
 .../QuantityValidator/Initializer/Option.php  |   0
 .../Initializer/QtyProcessor.php              |   0
 .../Initializer/StockItem.php                 |   0
 .../QuantityValidator/QuoteItemQtyList.php    |   0
 .../Indexer/Stock/DefaultStock.php            |   0
 .../Indexer/Stock/QueryProcessorComposite.php |   0
 .../Indexer/Stock/QueryProcessorInterface.php |   0
 .../Indexer/Stock/StockInterface.php          |   0
 .../ResourceModel/Indexer/StockFactory.php    |   0
 .../StockStatusBaseSelectProcessor.php        |   0
 .../ResourceModel/QtyCounterInterface.php     |   0
 .../Model/ResourceModel/Stock.php             |   0
 .../Model/ResourceModel/Stock/Collection.php  |   0
 .../Model/ResourceModel/Stock/Item.php        |   0
 .../ResourceModel/Stock/Item/Collection.php   |   0
 .../Stock/Item/StockItemCriteria.php          |   0
 .../Stock/Item/StockItemCriteriaMapper.php    |   0
 .../Model/ResourceModel/Stock/Status.php      |   0
 .../ResourceModel/Stock/Status/Collection.php |   0
 .../Stock/Status/StockStatusCriteria.php      |   0
 .../Status/StockStatusCriteriaMapper.php      |   0
 .../ResourceModel/Stock/StockCriteria.php     |   0
 .../Stock/StockCriteriaMapper.php             |   0
 .../Model/Source/Backorders.php               |   0
 .../CatalogInventory/Model/Source/Stock.php   |   0
 .../Model/Source/StockConfiguration.php       |   0
 .../Spi/StockRegistryProviderInterface.php    |   0
 .../Model/Spi/StockStateProviderInterface.php |   0
 .../Magento/CatalogInventory/Model/Stock.php  |   0
 .../CatalogInventory/Model/Stock/Item.php     |   0
 .../CatalogInventory/Model/Stock/Status.php   |   0
 .../Model/Stock/StockItemRepository.php       |   0
 .../Model/Stock/StockRepository.php           |   0
 .../Model/Stock/StockStatusRepository.php     |   0
 .../CatalogInventory/Model/StockIndex.php     |   0
 .../Model/StockItemValidator.php              |   0
 .../Model/StockManagement.php                 |   0
 .../CatalogInventory/Model/StockRegistry.php  |   0
 .../Model/StockRegistryProvider.php           |   0
 .../Model/StockRegistryStorage.php            |   0
 .../CatalogInventory/Model/StockState.php     |   0
 .../Model/StockStateProvider.php              |   0
 .../Model/System/Config/Backend/Minqty.php    |   0
 .../System/Config/Backend/Minsaleqty.php      |   0
 .../System/Config/Backend/Qtyincrements.php   |   0
 .../Observer/AddInventoryDataObserver.php     |   0
 .../Observer/AddStockItemsObserver.php        |   0
 .../Observer/CancelOrderItemObserver.php      |   0
 .../CheckoutAllSubmitAfterObserver.php        |   0
 .../DisplayProductStatusInfoObserver.php      |   0
 .../Observer/ItemsForReindex.php              |   0
 .../Observer/ProcessInventoryDataObserver.php |   0
 .../CatalogInventory/Observer/ProductQty.php  |   0
 .../Observer/QuantityValidatorObserver.php    |   0
 .../ReindexQuoteInventoryObserver.php         |   0
 .../Observer/RevertQuoteInventoryObserver.php |   0
 .../Observer/SaveInventoryDataObserver.php    |   0
 .../SubtractQuoteInventoryObserver.php        |   0
 ...dateItemsStockUponConfigChangeObserver.php |   0
 app/code/Magento/CatalogInventory/README.md   |   0
 .../CatalogInventory/Setup/InstallData.php    |   0
 .../CatalogInventory/Setup/InstallSchema.php  |   0
 .../CatalogInventory/Setup/Recurring.php      |   0
 .../CatalogInventory/Setup/UpgradeData.php    |   0
 .../CatalogInventory/Setup/UpgradeSchema.php  |   0
 .../Test/Unit/Api/StockConfigurationTest.php  |   0
 .../Test/Unit/Api/StockRegistryTest.php       |   0
 .../Test/Unit/Api/StockStateTest.php          |   0
 .../Block/Adminhtml/Form/Field/StockTest.php  |   0
 .../Unit/Block/Plugin/ProductViewTest.php     |   0
 .../Test/Unit/Block/QtyincrementsTest.php     |   0
 .../Block/Stockqty/DefaultStockqtyTest.php    |   0
 .../Test/Unit/Helper/MinsaleqtyTest.php       |   0
 .../Test/Unit/Helper/StockTest.php            |   0
 .../Model/AddStockStatusToCollectionTest.php  |   0
 .../Unit/Model/Adminhtml/Stock/ItemTest.php   |   0
 .../Model/Config/Backend/ManagestockTest.php  |   0
 .../Test/Unit/Model/ConfigurationTest.php     |   0
 .../Model/Indexer/Stock/Action/FullTest.php   |   0
 .../Model/Indexer/Stock/Action/RowTest.php    |   0
 .../Model/Indexer/Stock/Action/RowsTest.php   |   0
 .../Model/Indexer/Stock/CacheCleanerTest.php  |   0
 .../Indexer/Stock/Plugin/StoreGroupTest.php   |   0
 .../Model/Plugin/AfterProductLoadTest.php     |   0
 .../Test/Unit/Model/Plugin/LayerTest.php      |   0
 .../Unit/Model/Plugin/ProductLinksTest.php    |   0
 .../CopyConstructor/CatalogInventoryTest.php  |   0
 .../Initializer/OptionTest.php                |   0
 .../Initializer/QtyProcessorTest.php          |   0
 .../Initializer/QuantityValidatorTest.php     |   0
 .../Initializer/StockItemTest.php             |   0
 .../StockStatusBaseSelectProcessorTest.php    |   0
 .../Model/Spi/StockRegistryProviderTest.php   |   0
 .../Unit/Model/Spi/StockStateProviderTest.php |   0
 .../Test/Unit/Model/Stock/ItemTest.php        |   0
 .../Model/Stock/StockItemRepositoryTest.php   |   0
 .../Unit/Model/Stock/StockRepositoryTest.php  |   0
 .../Model/Stock/StockStatusRepositoryTest.php |   0
 .../Test/Unit/Model/StockRegistryTest.php     |   0
 .../Test/Unit/Model/StockTest.php             |   0
 .../Observer/AddInventoryDataObserverTest.php |   0
 .../Observer/AddStockItemsObserverTest.php    |   0
 .../CheckoutAllSubmitAfterObserverTest.php    |   0
 ...ItemsStockUponConfigChangeObserverTest.php |   0
 .../Form/Element/UseConfigSettingsTest.php    |   0
 .../Form/Modifier/AdvancedInventoryTest.php   |   0
 .../Form/Element/UseConfigSettings.php        |   0
 .../Product/AddQuantityFieldToCollection.php  |   0
 .../Product/AddQuantityFilterToCollection.php |   0
 .../Form/Modifier/AdvancedInventory.php       |   0
 .../Magento/CatalogInventory/composer.json    |   0
 app/code/Magento/CatalogInventory/etc/acl.xml |   0
 .../CatalogInventory/etc/adminhtml/di.xml     |   0
 .../CatalogInventory/etc/adminhtml/system.xml |   0
 .../Magento/CatalogInventory/etc/config.xml   |   0
 app/code/Magento/CatalogInventory/etc/di.xml  |   0
 .../Magento/CatalogInventory/etc/events.xml   |   0
 .../etc/extension_attributes.xml              |   0
 .../CatalogInventory/etc/frontend/di.xml      |   0
 .../Magento/CatalogInventory/etc/indexer.xml  |   0
 .../Magento/CatalogInventory/etc/module.xml   |   0
 .../Magento/CatalogInventory/etc/mview.xml    |   0
 .../CatalogInventory/etc/product_types.xml    |   0
 .../Magento/CatalogInventory/etc/webapi.xml   |   0
 .../Magento/CatalogInventory/i18n/en_US.csv   |   0
 .../Magento/CatalogInventory/registration.php |   0
 .../adminhtml/ui_component/product_form.xml   |   0
 .../ui_component/product_listing.xml          |   0
 .../js/components/qty-validator-changer.js    |   0
 .../js/components/use-config-min-sale-qty.js  |   0
 .../web/js/components/use-config-settings.js  |   0
 .../frontend/layout/catalog_product_view.xml  |   0
 .../catalog_product_view_type_simple.xml      |   0
 .../catalog_product_view_type_virtual.xml     |   0
 .../frontend/templates/qtyincrements.phtml    |   0
 .../templates/stockqty/composite.phtml        |   0
 .../frontend/templates/stockqty/default.phtml |   0
 .../Api/CatalogRuleRepositoryInterface.php    |   0
 .../Api/Data/ConditionInterface.php           |   0
 .../CatalogRule/Api/Data/RuleInterface.php    |   0
 .../Block/Adminhtml/Edit/DeleteButton.php     |   0
 .../Block/Adminhtml/Edit/GenericButton.php    |   0
 .../Block/Adminhtml/Edit/ResetButton.php      |   0
 .../Adminhtml/Edit/SaveAndApplyButton.php     |   0
 .../Adminhtml/Edit/SaveAndContinueButton.php  |   0
 .../Block/Adminhtml/Edit/SaveButton.php       |   0
 .../Block/Adminhtml/Promo/Catalog.php         |   0
 .../Promo/Catalog/Edit/Tab/Conditions.php     |   0
 .../Adminhtml/Promo/Widget/Chooser/Sku.php    |   0
 .../Controller/Adminhtml/Promo/Catalog.php    |   0
 .../Adminhtml/Promo/Catalog/ApplyRules.php    |   0
 .../Adminhtml/Promo/Catalog/Chooser.php       |   0
 .../Adminhtml/Promo/Catalog/Delete.php        |   0
 .../Adminhtml/Promo/Catalog/Edit.php          |   0
 .../Adminhtml/Promo/Catalog/Index.php         |   0
 .../Adminhtml/Promo/Catalog/NewAction.php     |   0
 .../Adminhtml/Promo/Catalog/NewActionHtml.php |   0
 .../Promo/Catalog/NewConditionHtml.php        |   0
 .../Adminhtml/Promo/Catalog/Save.php          |   0
 .../Controller/Adminhtml/Promo/Index.php      |   0
 .../Controller/Adminhtml/Promo/Widget.php     |   0
 .../Adminhtml/Promo/Widget/CategoriesJson.php |   0
 .../Adminhtml/Promo/Widget/Chooser.php        |   0
 .../Controller/RegistryConstants.php          |   0
 .../CatalogRule/Cron/DailyCatalogUpdate.php   |   0
 app/code/Magento/CatalogRule/Helper/Data.php  |   0
 app/code/Magento/CatalogRule/LICENSE.txt      |   0
 app/code/Magento/CatalogRule/LICENSE_AFL.txt  |   0
 .../Model/CatalogRuleRepository.php           |   0
 .../CatalogRule/Model/Data/Condition.php      |   0
 .../Model/Data/Condition/Converter.php        |   0
 app/code/Magento/CatalogRule/Model/Flag.php   |   0
 .../Model/Indexer/AbstractIndexer.php         |   0
 .../Model/Indexer/IndexBuilder.php            |   0
 .../Indexer/IndexBuilder/ProductLoader.php    |   0
 .../Indexer/Product/ProductRuleIndexer.php    |   0
 .../Indexer/Product/ProductRuleProcessor.php  |   0
 .../Model/Indexer/ProductPriceCalculator.php  |   0
 .../Model/Indexer/ReindexRuleGroupWebsite.php |   0
 .../Model/Indexer/ReindexRuleProduct.php      |   0
 .../Model/Indexer/ReindexRuleProductPrice.php |   0
 .../Model/Indexer/Rule/RuleProductIndexer.php |   0
 .../Indexer/Rule/RuleProductProcessor.php     |   0
 .../Indexer/RuleProductPricesPersistor.php    |   0
 .../Indexer/RuleProductsSelectBuilder.php     |   0
 .../Model/Product/PriceModifier.php           |   0
 .../Model/ResourceModel/Grid/Collection.php   |   0
 .../Product/CollectionProcessor.php           |   0
 ...ProductSelectBuilderByCatalogRulePrice.php |   0
 .../Model/ResourceModel/ReadHandler.php       |   0
 .../CatalogRule/Model/ResourceModel/Rule.php  |   0
 .../Model/ResourceModel/Rule/Collection.php   |   0
 .../ResourceModel/Rule/Product/Price.php      |   0
 .../Rule/Product/Price/Collection.php         |   0
 .../Model/ResourceModel/SaveHandler.php       |   0
 app/code/Magento/CatalogRule/Model/Rule.php   |   0
 .../Model/Rule/Action/Collection.php          |   0
 .../CatalogRule/Model/Rule/Action/Product.php |   0
 .../Action/SimpleActionOptionsProvider.php    |   0
 .../Model/Rule/Condition/Combine.php          |   0
 .../Model/Rule/Condition/Product.php          |   0
 .../Rule/CustomerGroupsOptionsProvider.php    |   0
 .../CatalogRule/Model/Rule/DataProvider.php   |   0
 .../Magento/CatalogRule/Model/Rule/Job.php    |   0
 .../CatalogRule/Model/Rule/Product/Price.php  |   0
 .../Model/Rule/WebsitesOptionsProvider.php    |   0
 .../Observer/AddDirtyRulesNotice.php          |   0
 ...CatalogProductCollectionPricesObserver.php |   0
 .../ProcessAdminFinalPriceObserver.php        |   0
 .../ProcessFrontFinalPriceObserver.php        |   0
 .../Observer/RulePricesStorage.php            |   0
 .../CatalogRule/Plugin/Indexer/Category.php   |   0
 .../Plugin/Indexer/CustomerGroup.php          |   0
 .../Plugin/Indexer/ImportExport.php           |   0
 .../Plugin/Indexer/Product/Attribute.php      |   0
 .../Indexer/Product/Save/ApplyRules.php       |   0
 .../Product/Save/ApplyRulesAfterReindex.php   |   0
 .../CatalogRule/Plugin/Indexer/Website.php    |   0
 .../Plugin/Model/Product/Action.php           |   0
 .../Pricing/Price/CatalogRulePrice.php        |   0
 app/code/Magento/CatalogRule/README.md        |   0
 .../Magento/CatalogRule/Setup/InstallData.php |   0
 .../CatalogRule/Setup/InstallSchema.php       |   0
 .../Magento/CatalogRule/Setup/UpgradeData.php |   0
 .../CatalogRule/Setup/UpgradeSchema.php       |   0
 .../Block/Adminhtml/Edit/DeleteButtonTest.php |   0
 .../Adminhtml/Edit/GenericButtonTest.php      |   0
 .../Test/Unit/Cron/DailyCatalogUpdateTest.php |   0
 .../CatalogRule/Test/Unit/Helper/DataTest.php |   0
 .../Unit/Model/CatalogRuleRepositoryTest.php  |   0
 .../Model/Data/Condition/ConverterTest.php    |   0
 .../Model/Indexer/AbstractIndexerTest.php     |   0
 .../IndexBuilder/ProductLoaderTest.php        |   0
 .../Unit/Model/Indexer/IndexBuilderTest.php   |   0
 .../Product/ProductRuleIndexerTest.php        |   0
 .../Indexer/ProductPriceCalculatorTest.php    |   0
 .../Indexer/ReindexRuleGroupWebsiteTest.php   |   0
 .../Indexer/ReindexRuleProductPriceTest.php   |   0
 .../Model/Indexer/ReindexRuleProductTest.php  |   0
 .../Indexer/Rule/RuleProductIndexerTest.php   |   0
 .../RuleProductPricesPersistorTest.php        |   0
 .../Indexer/RuleProductsSelectBuilderTest.php |   0
 .../Unit/Model/Product/PriceModifierTest.php  |   0
 .../Model/ResourceModel/ReadHandlerTest.php   |   0
 .../Model/ResourceModel/SaveHandlerTest.php   |   0
 .../Unit/Model/Rule/Condition/ProductTest.php |   0
 .../CustomerGroupsOptionsProviderTest.php     |   0
 .../Test/Unit/Model/Rule/DataProviderTest.php |   0
 .../Test/Unit/Model/Rule/JobTest.php          |   0
 .../Rule/WebsitesOptionsProviderTest.php      |   0
 .../CatalogRule/Test/Unit/Model/RuleTest.php  |   0
 .../Unit/Observer/AddDirtyRulesNoticeTest.php |   0
 .../Test/Unit/Plugin/Indexer/CategoryTest.php |   0
 .../Unit/Plugin/Indexer/CustomerGroupTest.php |   0
 .../Unit/Plugin/Indexer/ImportExportTest.php  |   0
 .../Save/ApplyRulesAfterReindexTest.php       |   0
 .../Indexer/Product/Save/ApplyRulesTest.php   |   0
 .../Test/Unit/Plugin/Indexer/WebsiteTest.php  |   0
 .../Unit/Plugin/Model/Product/ActionTest.php  |   0
 .../Pricing/Price/CatalogRulePriceTest.php    |   0
 app/code/Magento/CatalogRule/composer.json    |   0
 app/code/Magento/CatalogRule/etc/acl.xml      |   0
 .../Magento/CatalogRule/etc/adminhtml/di.xml  |   0
 .../CatalogRule/etc/adminhtml/events.xml      |   0
 .../CatalogRule/etc/adminhtml/menu.xml        |   0
 .../CatalogRule/etc/adminhtml/routes.xml      |   0
 app/code/Magento/CatalogRule/etc/crontab.xml  |   0
 .../CatalogRule/etc/crontab/events.xml        |   0
 app/code/Magento/CatalogRule/etc/di.xml       |   0
 app/code/Magento/CatalogRule/etc/events.xml   |   0
 .../CatalogRule/etc/frontend/events.xml       |   0
 app/code/Magento/CatalogRule/etc/indexer.xml  |   0
 app/code/Magento/CatalogRule/etc/module.xml   |   0
 app/code/Magento/CatalogRule/etc/mview.xml    |   0
 .../CatalogRule/etc/webapi_rest/di.xml        |   0
 .../CatalogRule/etc/webapi_rest/events.xml    |   0
 .../CatalogRule/etc/webapi_soap/events.xml    |   0
 app/code/Magento/CatalogRule/i18n/en_US.csv   |   0
 app/code/Magento/CatalogRule/registration.php |   0
 .../catalog_rule_promo_catalog_block.xml      |   0
 .../catalog_rule_promo_catalog_edit.xml       |   0
 .../catalog_rule_promo_catalog_index.xml      |   0
 .../adminhtml/templates/promo/fieldset.phtml  |   0
 .../view/adminhtml/templates/promo/form.phtml |   0
 .../ui_component/catalog_rule_form.xml        |   0
 .../CatalogRuleConfigurable/LICENSE.txt       |   0
 .../CatalogRuleConfigurable/LICENSE_AFL.txt   |   0
 .../Model/ConfigurableProductsProvider.php    |   0
 .../Model/Indexer/ProductRuleReindex.php      |   0
 .../Model/Rule/ConfigurableProductHandler.php |   0
 .../CatalogRule/Model/Rule/Validation.php     |   0
 .../ResourceModel/AddCatalogRulePrice.php     |   0
 .../Magento/CatalogRuleConfigurable/README.md |   0
 .../Rule/ConfigurableProductHandlerTest.php   |   0
 .../CatalogRule/Model/Rule/ValidationTest.php |   0
 .../CatalogRuleConfigurable/composer.json     |   0
 .../etc/adminhtml/di.xml                      |   0
 .../etc/crontab/di.xml                        |   0
 .../CatalogRuleConfigurable/etc/di.xml        |   0
 .../CatalogRuleConfigurable/etc/module.xml    |   0
 .../CatalogRuleConfigurable/registration.php  |   0
 .../CatalogSearch/Block/Advanced/Form.php     |   0
 .../CatalogSearch/Block/Advanced/Result.php   |   0
 .../Block/Plugin/FrontTabPlugin.php           |   0
 .../Magento/CatalogSearch/Block/Result.php    |   0
 .../Controller/Advanced/Index.php             |   0
 .../Controller/Advanced/Result.php            |   0
 .../CatalogSearch/Controller/Result/Index.php |   0
 .../Magento/CatalogSearch/Helper/Data.php     |   0
 app/code/Magento/CatalogSearch/LICENSE.txt    |   0
 .../Magento/CatalogSearch/LICENSE_AFL.txt     |   0
 .../Aggregation/AggregationResolver.php       |   0
 .../Checker/Query/AdvancedSearch.php          |   0
 .../Aggregation/Checker/Query/CatalogView.php |   0
 .../Aggregation/RequestCheckerComposite.php   |   0
 .../Aggregation/RequestCheckerInterface.php   |   0
 .../Mysql/Aggregation/DataProvider.php        |   0
 .../Aggregation/DataProvider/QueryBuilder.php |   0
 .../BaseSelectAttributesSearchStrategy.php    |   0
 .../BaseSelectFullTextSearchStrategy.php      |   0
 .../Adapter/Mysql/Dynamic/DataProvider.php    |   0
 .../Model/Adapter/Mysql/Field/Resolver.php    |   0
 .../Adapter/Mysql/Filter/AliasResolver.php    |   0
 .../Adapter/Mysql/Filter/Preprocessor.php     |   0
 .../Aggregation/Category/DataProvider.php     |   0
 .../CatalogSearch/Model/Adapter/Options.php   |   0
 .../System/Config/Backend/Engine.php          |   0
 .../Magento/CatalogSearch/Model/Advanced.php  |   0
 .../Model/Advanced/Request/Builder.php        |   0
 .../Model/Attribute/SearchWeight.php          |   0
 .../Model/Autocomplete/DataProvider.php       |   0
 .../Magento/CatalogSearch/Model/Fulltext.php  |   0
 .../CatalogSearch/Model/Indexer/Fulltext.php  |   0
 .../Indexer/Fulltext/Action/DataProvider.php  |   0
 .../Model/Indexer/Fulltext/Action/Full.php    |   0
 .../Indexer/Fulltext/Action/IndexIterator.php |   0
 .../Fulltext/Plugin/AbstractPlugin.php        |   0
 .../Indexer/Fulltext/Plugin/Attribute.php     |   0
 .../Indexer/Fulltext/Plugin/Category.php      |   0
 .../Model/Indexer/Fulltext/Plugin/Product.php |   0
 .../Fulltext/Plugin/Product/Action.php        |   0
 .../Indexer/Fulltext/Plugin/Store/Group.php   |   0
 .../Indexer/Fulltext/Plugin/Store/View.php    |   0
 .../Model/Indexer/Fulltext/Processor.php      |   0
 .../Model/Indexer/Fulltext/Store.php          |   0
 .../Model/Indexer/IndexStructure.php          |   0
 .../Model/Indexer/IndexStructureFactory.php   |   0
 .../Model/Indexer/IndexStructureProxy.php     |   0
 .../Model/Indexer/IndexSwitcherInterface.php  |   0
 .../Model/Indexer/IndexSwitcherProxy.php      |   0
 .../Model/Indexer/IndexerHandler.php          |   0
 .../Model/Indexer/IndexerHandlerFactory.php   |   0
 .../Model/Indexer/Mview/Action.php            |   0
 .../Model/Indexer/ProductFieldset.php         |   0
 .../Model/Indexer/Scope/IndexSwitcher.php     |   0
 .../Scope/IndexTableNotExistException.php     |   0
 .../Model/Indexer/Scope/ScopeProxy.php        |   0
 .../Model/Indexer/Scope/State.php             |   0
 .../Model/Indexer/Scope/TemporaryResolver.php |   0
 .../Indexer/Scope/UnknownStateException.php   |   0
 .../Layer/Category/ItemCollectionProvider.php |   0
 .../Model/Layer/Filter/Attribute.php          |   0
 .../Model/Layer/Filter/Category.php           |   0
 .../Model/Layer/Filter/Decimal.php            |   0
 .../Model/Layer/Filter/Price.php              |   0
 .../Layer/Search/Plugin/CollectionFilter.php  |   0
 .../Model/Layer/Search/StateKey.php           |   0
 .../CatalogSearch/Model/Price/Interval.php    |   0
 .../Model/ResourceModel/Advanced.php          |   0
 .../ResourceModel/Advanced/Collection.php     |   0
 .../Model/ResourceModel/Engine.php            |   0
 .../Model/ResourceModel/EngineInterface.php   |   0
 .../Model/ResourceModel/EngineProvider.php    |   0
 .../Model/ResourceModel/Fulltext.php          |   0
 .../ResourceModel/Fulltext/Collection.php     |   0
 .../Model/ResourceModel/Search/Collection.php |   0
 .../BaseSelectStrategyInterface.php           |   0
 .../BaseSelectStrategy/StrategyMapper.php     |   0
 .../CatalogSearch/Model/Search/Catalog.php    |   0
 .../Search/CustomAttributeFilterCheck.php     |   0
 .../FilterMapper/CustomAttributeFilter.php    |   0
 .../FilterMapper/DimensionsProcessor.php      |   0
 .../Search/FilterMapper/ExclusionStrategy.php |   0
 .../Search/FilterMapper/FilterContext.php     |   0
 .../Search/FilterMapper/FilterMapper.php      |   0
 .../FilterMapper/FilterStrategyInterface.php  |   0
 .../FilterMapper/StaticAttributeStrategy.php  |   0
 .../Search/FilterMapper/StockStatusFilter.php |   0
 .../FilterMapper/TermDropdownStrategy.php     |   0
 .../Search/FilterMapper/VisibilityFilter.php  |   0
 .../Model/Search/FiltersExtractor.php         |   0
 .../Model/Search/IndexBuilder.php             |   0
 .../QueryChecker/FullTextSearchCheck.php      |   0
 .../Model/Search/ReaderPlugin.php             |   0
 .../Model/Search/RequestGenerator.php         |   0
 .../Model/Search/RequestGenerator/Decimal.php |   0
 .../Model/Search/RequestGenerator/General.php |   0
 .../RequestGenerator/GeneratorInterface.php   |   0
 .../RequestGenerator/GeneratorResolver.php    |   0
 .../SelectContainer/SelectContainer.php       |   0
 .../SelectContainerBuilder.php                |   0
 .../Model/Search/TableMapper.php              |   0
 .../CatalogSearch/Model/Source/Weight.php     |   0
 app/code/Magento/CatalogSearch/README.md      |   0
 .../CatalogSearch/Setup/InstallData.php       |   0
 .../CatalogSearch/Setup/InstallSchema.php     |   0
 .../Unit/Block/Plugin/FrontTabPluginTest.php  |   0
 .../Test/Unit/Block/ResultTest.php            |   0
 .../Unit/Controller/Advanced/ResultTest.php   |   0
 .../Aggregation/AggregationResolverTest.php   |   0
 .../Checker/Query/CatalogViewTest.php         |   0
 .../DataProvider/QueryBuilderTest.php         |   0
 .../Mysql/Aggregation/DataProviderTest.php    |   0
 .../Mysql/Dynamic/DataProviderTest.php        |   0
 .../Adapter/Mysql/Field/ResolverTest.php      |   0
 .../Mysql/Filter/AliasResolverTest.php        |   0
 .../Adapter/Mysql/Filter/PreprocessorTest.php |   0
 .../Test/Unit/Model/Adapter/OptionsTest.php   |   0
 .../Model/Advanced/Request/BuilderTest.php    |   0
 .../Test/Unit/Model/AdvancedTest.php          |   0
 .../Unit/Model/Attribute/SearchWeightTest.php |   0
 .../Model/Autocomplete/DataProviderTest.php   |   0
 .../Indexer/Fulltext/Action/FullTest.php      |   0
 .../Indexer/Fulltext/Plugin/AttributeTest.php |   0
 .../Indexer/Fulltext/Plugin/CategoryTest.php  |   0
 .../Fulltext/Plugin/Product/ActionTest.php    |   0
 .../Indexer/Fulltext/Plugin/ProductTest.php   |   0
 .../Fulltext/Plugin/Store/GroupTest.php       |   0
 .../Fulltext/Plugin/Store/ViewTest.php        |   0
 .../Test/Unit/Model/Indexer/FulltextTest.php  |   0
 .../Indexer/IndexerHandlerFactoryTest.php     |   0
 .../Model/Indexer/Scope/IndexSwitcherTest.php |   0
 .../Catalog/ItemCollectionProviderTest.php    |   0
 .../Unit/Model/Layer/Filter/AttributeTest.php |   0
 .../Unit/Model/Layer/Filter/CategoryTest.php  |   0
 .../Unit/Model/Layer/Filter/DecimalTest.php   |   0
 .../Unit/Model/Layer/Filter/PriceTest.php     |   0
 .../Search/Plugin/CollectionFilterTest.php    |   0
 .../ResourceModel/Advanced/CollectionTest.php |   0
 .../Unit/Model/ResourceModel/AdvancedTest.php |   0
 .../Model/ResourceModel/BaseCollection.php    |   0
 .../Unit/Model/ResourceModel/EngineTest.php   |   0
 .../ResourceModel/Fulltext/CollectionTest.php |   0
 .../Unit/Model/ResourceModel/FulltextTest.php |   0
 .../BaseSelectStrategy/StrategyMapperTest.php |   0
 .../Search/CustomAttributeFilterCheckTest.php |   0
 .../FilterMapper/ExclusionStrategyTest.php    |   0
 .../Search/FilterMapper/FilterContextTest.php |   0
 .../FilterMapper/TermDropdownStrategyTest.php |   0
 .../Unit/Model/Search/IndexBuilderTest.php    |   0
 .../Search/Indexer/IndexStructureTest.php     |   0
 .../QueryChecker/FullTextSearchCheckTest.php  |   0
 .../Unit/Model/Search/ReaderPluginTest.php    |   0
 .../Search/RequestGenerator/DecimalTest.php   |   0
 .../Search/RequestGenerator/GeneralTest.php   |   0
 .../GeneratorResolverTest.php                 |   0
 .../Model/Search/RequestGeneratorTest.php     |   0
 .../SelectContainerBuilderTest.php            |   0
 .../Unit/Model/Search/TableMapperTest.php     |   0
 app/code/Magento/CatalogSearch/composer.json  |   0
 app/code/Magento/CatalogSearch/etc/acl.xml    |   0
 .../CatalogSearch/etc/adminhtml/di.xml        |   0
 .../CatalogSearch/etc/adminhtml/system.xml    |   0
 .../CatalogSearch/etc/catalog_attributes.xml  |   0
 app/code/Magento/CatalogSearch/etc/config.xml |   0
 app/code/Magento/CatalogSearch/etc/di.xml     |   0
 app/code/Magento/CatalogSearch/etc/events.xml |   0
 .../Magento/CatalogSearch/etc/frontend/di.xml |   0
 .../CatalogSearch/etc/frontend/page_types.xml |   0
 .../CatalogSearch/etc/frontend/routes.xml     |   0
 .../Magento/CatalogSearch/etc/indexer.xml     |   0
 app/code/Magento/CatalogSearch/etc/module.xml |   0
 app/code/Magento/CatalogSearch/etc/mview.xml  |   0
 .../CatalogSearch/etc/search_request.xml      |   0
 app/code/Magento/CatalogSearch/i18n/en_US.csv |   0
 .../Magento/CatalogSearch/registration.php    |   0
 .../product_attribute_add_form.xml            |   0
 .../layout/catalogsearch_advanced_index.xml   |   0
 .../layout/catalogsearch_advanced_result.xml  |   0
 .../layout/catalogsearch_result_index.xml     |   0
 .../view/frontend/layout/default.xml          |   0
 .../view/frontend/requirejs-config.js         |   0
 .../frontend/templates/advanced/form.phtml    |   0
 .../frontend/templates/advanced/link.phtml    |   0
 .../frontend/templates/advanced/result.phtml  |   0
 .../view/frontend/templates/result.phtml      |   0
 .../Block/UrlKeyRenderer.php                  |   0
 .../Magento/CatalogUrlRewrite/LICENSE.txt     |   0
 .../Magento/CatalogUrlRewrite/LICENSE_AFL.txt |   0
 .../Category/CanonicalUrlRewriteGenerator.php |   0
 .../Category/ChildrenCategoriesProvider.php   |   0
 .../Category/ChildrenUrlRewriteGenerator.php  |   0
 .../CurrentUrlRewritesRegenerator.php         |   0
 .../Model/Category/Plugin/Category/Move.php   |   0
 .../Model/Category/Plugin/Category/Remove.php |   0
 .../Model/Category/Plugin/Storage.php         |   0
 .../Model/Category/Plugin/Store/Group.php     |   0
 .../Model/Category/Plugin/Store/View.php      |   0
 .../Model/Category/Product.php                |   0
 .../CategoryBasedProductRewriteGenerator.php  |   0
 .../Model/CategoryProductUrlPathGenerator.php |   0
 .../Model/CategoryUrlPathGenerator.php        |   0
 .../Model/CategoryUrlRewriteGenerator.php     |   0
 .../Model/Map/DataCategoryHashMap.php         |   0
 .../Map/DataCategoryUrlRewriteDatabaseMap.php |   0
 .../Map/DataCategoryUsedInProductsHashMap.php |   0
 .../Model/Map/DataProductHashMap.php          |   0
 .../Map/DataProductUrlRewriteDatabaseMap.php  |   0
 .../Model/Map/DatabaseMapInterface.php        |   0
 .../Model/Map/DatabaseMapPool.php             |   0
 .../Model/Map/HashMapInterface.php            |   0
 .../Model/Map/HashMapPool.php                 |   0
 .../Model/Map/UrlRewriteFinder.php            |   0
 .../Model/ObjectRegistry.php                  |   0
 .../Product/AnchorUrlRewriteGenerator.php     |   0
 .../Product/CanonicalUrlRewriteGenerator.php  |   0
 .../Product/CategoriesUrlRewriteGenerator.php |   0
 .../Product/CurrentUrlRewritesRegenerator.php |   0
 .../Model/ProductScopeRewriteGenerator.php    |   0
 .../Model/ProductUrlPathGenerator.php         |   0
 .../Model/ProductUrlRewriteGenerator.php      |   0
 .../Model/ResourceModel/Category/Product.php  |   0
 .../Category/ProductCollection.php            |   0
 .../Model/Storage/DbStorage.php               |   0
 .../Model/UrlRewriteBunchReplacer.php         |   0
 .../Observer/AfterImportDataObserver.php      |   0
 ...ategoryProcessUrlRewriteMovingObserver.php |   0
 ...ategoryProcessUrlRewriteSavingObserver.php |   0
 ...egorySaveRewritesHistorySetterObserver.php |   0
 .../CategoryUrlPathAutogeneratorObserver.php  |   0
 .../Observer/ClearProductUrlsObserver.php     |   0
 ...oductProcessUrlRewriteRemovingObserver.php |   0
 ...ProductProcessUrlRewriteSavingObserver.php |   0
 .../ProductToWebsiteChangeObserver.php        |   0
 .../ProductUrlKeyAutogeneratorObserver.php    |   0
 .../Observer/UrlRewriteHandler.php            |   0
 .../Adminhtml/Category/Tab/Attributes.php     |   0
 .../Adminhtml/Product/Edit/Tab/Attributes.php |   0
 .../Product/Initialization/Helper.php         |   0
 .../Service/V1/StoreViewService.php           |   0
 .../CatalogUrlRewrite/Setup/InstallData.php   |   0
 .../CatalogUrlRewrite/Setup/InstallSchema.php |   0
 .../CatalogUrlRewrite/Setup/Recurring.php     |   0
 .../CanonicalUrlRewriteGeneratorTest.php      |   0
 .../ChildrenCategoriesProviderTest.php        |   0
 .../ChildrenUrlRewriteGeneratorTest.php       |   0
 .../CurrentUrlRewritesRegeneratorTest.php     |   0
 .../Category/Plugin/Category/MoveTest.php     |   0
 .../Category/Plugin/Category/RemoveTest.php   |   0
 .../Model/Category/Plugin/StorageTest.php     |   0
 .../Model/Category/Plugin/Store/GroupTest.php |   0
 .../Model/Category/Plugin/Store/ViewTest.php  |   0
 ...tegoryBasedProductRewriteGeneratorTest.php |   0
 .../CategoryProductUrlPathGeneratorTest.php   |   0
 .../Model/CategoryUrlPathGeneratorTest.php    |   0
 .../Model/CategoryUrlRewriteGeneratorTest.php |   0
 .../Model/Map/DataCategoryHashMapTest.php     |   0
 .../DataCategoryUrlRewriteDatabaseMapTest.php |   0
 .../DataCategoryUsedInProductsHashMapTest.php |   0
 .../Unit/Model/Map/DataProductHashMapTest.php |   0
 .../DataProductUrlRewriteDatabaseMapTest.php  |   0
 .../Test/Unit/Model/Map/HashMapPoolTest.php   |   0
 .../Unit/Model/Map/UrlRewriteFinderTest.php   |   0
 .../Test/Unit/Model/ObjectRegistryTest.php    |   0
 .../CanonicalUrlRewriteGeneratorTest.php      |   0
 .../CategoriesUrlRewriteGeneratorTest.php     |   0
 .../CurrentUrlRewritesRegeneratorTest.php     |   0
 .../ProductScopeRewriteGeneratorTest.php      |   0
 .../Model/ProductUrlPathGeneratorTest.php     |   0
 .../Model/ProductUrlRewriteGeneratorTest.php  |   0
 .../Test/Unit/Model/Storage/DbStorageTest.php |   0
 .../Model/UrlRewriteBunchReplacerTest.php     |   0
 .../Observer/AfterImportDataObserverTest.php  |   0
 ...tegoryUrlPathAutogeneratorObserverTest.php |   0
 .../Observer/ClearProductUrlsObserverTest.php |   0
 ...uctProcessUrlRewriteSavingObserverTest.php |   0
 .../Unit/Observer/UrlRewriteHandlerTest.php   |   0
 .../Unit/Service/V1/StoreViewServiceTest.php  |   0
 .../Form/Modifier/ProductUrlRewriteTest.php   |   0
 .../Form/Modifier/ProductUrlRewrite.php       |   0
 .../Magento/CatalogUrlRewrite/composer.json   |   0
 .../CatalogUrlRewrite/etc/adminhtml/di.xml    |   0
 .../etc/adminhtml/events.xml                  |   0
 .../etc/adminhtml/system.xml                  |   0
 .../etc/catalog_attributes.xml                |   0
 app/code/Magento/CatalogUrlRewrite/etc/di.xml |   0
 .../CatalogUrlRewrite/etc/eav_attributes.xml  |   0
 .../Magento/CatalogUrlRewrite/etc/events.xml  |   0
 .../Magento/CatalogUrlRewrite/etc/module.xml  |   0
 .../Magento/CatalogUrlRewrite/i18n/en_US.csv  |   0
 .../CatalogUrlRewrite/registration.php        |   0
 .../adminhtml/ui_component/category_form.xml  |   0
 .../Block/Product/ProductsList.php            |   0
 .../Block/Product/Widget/Conditions.php       |   0
 .../Controller/Adminhtml/Product/Widget.php   |   0
 .../Adminhtml/Product/Widget/Conditions.php   |   0
 app/code/Magento/CatalogWidget/LICENSE.txt    |   0
 .../Magento/CatalogWidget/LICENSE_AFL.txt     |   0
 app/code/Magento/CatalogWidget/Model/Rule.php |   0
 .../Model/Rule/Condition/Combine.php          |   0
 .../Model/Rule/Condition/Product.php          |   0
 app/code/Magento/CatalogWidget/README.md      |   0
 .../Unit/Block/Product/ProductsListTest.php   |   0
 .../Block/Product/Widget/ConditionsTest.php   |   0
 .../Product/Widget/ConditionsTest.php         |   0
 .../Unit/Model/Rule/Condition/CombineTest.php |   0
 .../Unit/Model/Rule/Condition/ProductTest.php |   0
 .../Test/Unit/Model/RuleTest.php              |   0
 app/code/Magento/CatalogWidget/composer.json  |   0
 .../CatalogWidget/etc/adminhtml/routes.xml    |   0
 app/code/Magento/CatalogWidget/etc/di.xml     |   0
 app/code/Magento/CatalogWidget/etc/module.xml |   0
 app/code/Magento/CatalogWidget/etc/widget.xml |   0
 app/code/Magento/CatalogWidget/i18n/en_US.csv |   0
 .../Magento/CatalogWidget/registration.php    |   0
 .../templates/product/widget/conditions.phtml |   0
 .../adminhtml/web/images/products_list.png    | Bin
 .../product/widget/content/grid.phtml         |   0
 .../Api/AgreementsValidatorInterface.php      |   0
 .../Api/Data/PaymentDetailsInterface.php      |   0
 .../Api/Data/ShippingInformationInterface.php |   0
 .../Api/Data/TotalsInformationInterface.php   |   0
 ...tPaymentInformationManagementInterface.php |   0
 ...ShippingInformationManagementInterface.php |   0
 ...stTotalsInformationManagementInterface.php |   0
 .../PaymentInformationManagementInterface.php |   0
 ...ShippingInformationManagementInterface.php |   0
 .../TotalsInformationManagementInterface.php  |   0
 .../Checkout/Block/Adminhtml/CartTab.php      |   0
 app/code/Magento/Checkout/Block/Cart.php      |   0
 .../Checkout/Block/Cart/AbstractCart.php      |   0
 .../Checkout/Block/Cart/Additional/Info.php   |   0
 .../Block/Cart/CartTotalsProcessor.php        |   0
 .../Magento/Checkout/Block/Cart/Coupon.php    |   0
 .../Magento/Checkout/Block/Cart/Crosssell.php |   0
 app/code/Magento/Checkout/Block/Cart/Grid.php |   0
 .../Checkout/Block/Cart/Item/Configure.php    |   0
 .../Checkout/Block/Cart/Item/Renderer.php     |   0
 .../Block/Cart/Item/Renderer/Actions.php      |   0
 .../Block/Cart/Item/Renderer/Actions/Edit.php |   0
 .../Cart/Item/Renderer/Actions/Generic.php    |   0
 .../Cart/Item/Renderer/Actions/Remove.php     |   0
 .../Checkout/Block/Cart/LayoutProcessor.php   |   0
 app/code/Magento/Checkout/Block/Cart/Link.php |   0
 .../Magento/Checkout/Block/Cart/Shipping.php  |   0
 .../Magento/Checkout/Block/Cart/Sidebar.php   |   0
 .../Magento/Checkout/Block/Cart/Totals.php    |   0
 .../Block/Cart/ValidationMessages.php         |   0
 .../Block/Checkout/AttributeMerger.php        |   0
 .../Block/Checkout/DirectoryDataProcessor.php |   0
 .../Block/Checkout/LayoutProcessor.php        |   0
 .../Checkout/LayoutProcessorInterface.php     |   0
 .../Block/Checkout/TotalsProcessor.php        |   0
 .../Checkout/Block/Item/Price/Renderer.php    |   0
 app/code/Magento/Checkout/Block/Link.php      |   0
 app/code/Magento/Checkout/Block/Onepage.php   |   0
 .../Checkout/Block/Onepage/Failure.php        |   0
 .../Magento/Checkout/Block/Onepage/Link.php   |   0
 .../Checkout/Block/Onepage/Success.php        |   0
 .../Checkout/Block/QuoteShortcutButtons.php   |   0
 .../Magento/Checkout/Block/Registration.php   |   0
 .../Magento/Checkout/Block/Shipping/Price.php |   0
 app/code/Magento/Checkout/Block/Success.php   |   0
 .../Checkout/Block/Total/DefaultTotal.php     |   0
 .../Checkout/Controller/Account/Create.php    |   0
 .../Magento/Checkout/Controller/Action.php    |   0
 app/code/Magento/Checkout/Controller/Cart.php |   0
 .../Magento/Checkout/Controller/Cart/Add.php  |   0
 .../Checkout/Controller/Cart/Addgroup.php     |   0
 .../Checkout/Controller/Cart/Configure.php    |   0
 .../Checkout/Controller/Cart/CouponPost.php   |   0
 .../Checkout/Controller/Cart/Delete.php       |   0
 .../Checkout/Controller/Cart/EstimatePost.php |   0
 .../Controller/Cart/EstimateUpdatePost.php    |   0
 .../Checkout/Controller/Cart/Index.php        |   0
 .../Controller/Cart/UpdateItemOptions.php     |   0
 .../Checkout/Controller/Cart/UpdatePost.php   |   0
 .../Express/RedirectLoginInterface.php        |   0
 .../Checkout/Controller/Index/Index.php       |   0
 .../Checkout/Controller/Noroute/Index.php     |   0
 .../Magento/Checkout/Controller/Onepage.php   |   0
 .../Checkout/Controller/Onepage/Failure.php   |   0
 .../Checkout/Controller/Onepage/SaveOrder.php |   0
 .../Checkout/Controller/Onepage/Success.php   |   0
 .../Controller/ShippingRates/Index.php        |   0
 .../Controller/Sidebar/RemoveItem.php         |   0
 .../Controller/Sidebar/UpdateItemQty.php      |   0
 .../Checkout/CustomerData/AbstractItem.php    |   0
 .../Magento/Checkout/CustomerData/Cart.php    |   0
 .../Checkout/CustomerData/DefaultItem.php     |   0
 .../Checkout/CustomerData/DirectoryData.php   |   0
 .../Checkout/CustomerData/ItemInterface.php   |   0
 .../Checkout/CustomerData/ItemPool.php        |   0
 .../CustomerData/ItemPoolInterface.php        |   0
 app/code/Magento/Checkout/Exception.php       |   0
 app/code/Magento/Checkout/Helper/Cart.php     |   0
 app/code/Magento/Checkout/Helper/Data.php     |   0
 .../Checkout/Helper/ExpressRedirect.php       |   0
 app/code/Magento/Checkout/LICENSE.txt         |   0
 app/code/Magento/Checkout/LICENSE_AFL.txt     |   0
 .../BillingAddressDisplayOptions.php          |   0
 .../Checkout/Model/AgreementsValidator.php    |   0
 app/code/Magento/Checkout/Model/Cart.php      |   0
 .../Checkout/Model/Cart/CartInterface.php     |   0
 .../Cart/CheckoutSummaryConfigProvider.php    |   0
 .../Checkout/Model/Cart/CollectQuote.php      |   0
 .../Checkout/Model/Cart/ImageProvider.php     |   0
 .../Checkout/Model/Cart/RequestInfoFilter.php |   0
 .../Model/Cart/RequestInfoFilterComposite.php |   0
 .../Model/Cart/RequestInfoFilterInterface.php |   0
 .../Model/CompositeConfigProvider.php         |   0
 .../Model/Config/Source/Cart/Summary.php      |   0
 .../Model/ConfigProviderInterface.php         |   0
 .../Checkout/Model/DefaultConfigProvider.php  |   0
 .../GuestPaymentInformationManagement.php     |   0
 .../GuestShippingInformationManagement.php    |   0
 .../GuestTotalsInformationManagement.php      |   0
 .../Model/Layout/AbstractTotalsProcessor.php  |   0
 .../Model/Layout/DepersonalizePlugin.php      |   0
 .../Magento/Checkout/Model/PaymentDetails.php |   0
 .../Model/PaymentInformationManagement.php    |   0
 .../Checkout/Model/ResourceModel/Cart.php     |   0
 app/code/Magento/Checkout/Model/Session.php   |   0
 .../Model/Session/SuccessValidator.php        |   0
 .../Checkout/Model/ShippingInformation.php    |   0
 .../Model/ShippingInformationManagement.php   |   0
 app/code/Magento/Checkout/Model/Sidebar.php   |   0
 .../Checkout/Model/TotalsInformation.php      |   0
 .../Model/TotalsInformationManagement.php     |   0
 .../Magento/Checkout/Model/Type/Onepage.php   |   0
 .../Observer/LoadCustomerQuoteObserver.php    |   0
 .../Observer/SalesQuoteSaveAfterObserver.php  |   0
 .../Checkout/Observer/UnsetAllObserver.php    |   0
 app/code/Magento/Checkout/README.md           |   0
 .../Magento/Checkout/Setup/InstallData.php    |   0
 .../Test/Unit/Block/Cart/AbstractCartTest.php |   0
 .../Block/Cart/CartTotalsProcessorTest.php    |   0
 .../Test/Unit/Block/Cart/GridTest.php         |   0
 .../Cart/Item/Renderer/Actions/EditTest.php   |   0
 .../Item/Renderer/Actions/GenericTest.php     |   0
 .../Cart/Item/Renderer/Actions/RemoveTest.php |   0
 .../Block/Cart/Item/Renderer/ActionsTest.php  |   0
 .../Unit/Block/Cart/Item/RendererTest.php     |   0
 .../Unit/Block/Cart/LayoutProcessorTest.php   |   0
 .../Test/Unit/Block/Cart/LinkTest.php         |   0
 .../Test/Unit/Block/Cart/ShippingTest.php     |   0
 .../Test/Unit/Block/Cart/SidebarTest.php      |   0
 .../Checkout/DirectoryDataProcessorTest.php   |   0
 .../Block/Checkout/LayoutProcessorTest.php    |   0
 .../Block/Checkout/TotalsProcessorTest.php    |   0
 .../Unit/Block/Item/Price/RendererTest.php    |   0
 .../Checkout/Test/Unit/Block/LinkTest.php     |   0
 .../Test/Unit/Block/Onepage/SuccessTest.php   |   0
 .../Checkout/Test/Unit/Block/OnepageTest.php  |   0
 .../Test/Unit/Block/Shipping/PriceTest.php    |   0
 .../Unit/Controller/Account/CreateTest.php    |   0
 .../Unit/Controller/Cart/ConfigureTest.php    |   0
 .../Unit/Controller/Cart/CouponPostTest.php   |   0
 .../Test/Unit/Controller/Cart/IndexTest.php   |   0
 .../Test/Unit/Controller/Index/IndexTest.php  |   0
 .../Test/Unit/Controller/OnepageTest.php      |   0
 .../Controller/Sidebar/RemoveItemTest.php     |   0
 .../Controller/Sidebar/UpdateItemQtyTest.php  |   0
 .../Test/Unit/Controller/Stub/OnepageStub.php |   0
 .../Test/Unit/CustomerData/CartTest.php       |   0
 .../Unit/CustomerData/DefaultItemTest.php     |   0
 .../Test/Unit/CustomerData/ItemPoolTest.php   |   0
 .../Checkout/Test/Unit/Helper/CartTest.php    |   0
 .../Checkout/Test/Unit/Helper/DataTest.php    |   0
 .../Test/Unit/Helper/ExpressRedirectTest.php  |   0
 .../Unit/Model/AgreementsValidatorTest.php    |   0
 .../CheckoutSummaryConfigProviderTest.php     |   0
 .../Unit/Model/Cart/ImageProviderTest.php     |   0
 .../Cart/RequestInfoFilterCompositeTest.php   |   0
 .../Unit/Model/Cart/RequestInfoFilterTest.php |   0
 .../Checkout/Test/Unit/Model/CartTest.php     |   0
 .../Model/CompositeConfigProviderTest.php     |   0
 .../Model/Config/Source/Cart/SummaryTest.php  |   0
 .../GuestPaymentInformationManagementTest.php |   0
 ...GuestShippingInformationManagementTest.php |   0
 .../Model/Layout/DepersonalizePluginTest.php  |   0
 .../PaymentInformationManagementTest.php      |   0
 .../Model/Session/SuccessValidatorTest.php    |   0
 .../Checkout/Test/Unit/Model/SessionTest.php  |   0
 .../ShippingInformationManagementTest.php     |   0
 .../Checkout/Test/Unit/Model/SidebarTest.php  |   0
 .../Test/Unit/Model/Type/OnepageTest.php      |   0
 .../LoadCustomerQuoteObserverTest.php         |   0
 .../SalesQuoteSaveAfterObserverTest.php       |   0
 .../Unit/Observer/UnsetAllObserverTest.php    |   0
 app/code/Magento/Checkout/composer.json       |   0
 app/code/Magento/Checkout/etc/acl.xml         |   0
 .../Magento/Checkout/etc/adminhtml/system.xml |   0
 app/code/Magento/Checkout/etc/config.xml      |   0
 app/code/Magento/Checkout/etc/di.xml          |   0
 .../Magento/Checkout/etc/email_templates.xml  |   0
 app/code/Magento/Checkout/etc/events.xml      |   0
 app/code/Magento/Checkout/etc/fieldset.xml    |   0
 app/code/Magento/Checkout/etc/frontend/di.xml |   0
 .../Magento/Checkout/etc/frontend/events.xml  |   0
 .../Checkout/etc/frontend/page_types.xml      |   0
 .../Magento/Checkout/etc/frontend/routes.xml  |   0
 .../Checkout/etc/frontend/sections.xml        |   0
 app/code/Magento/Checkout/etc/module.xml      |   0
 app/code/Magento/Checkout/etc/webapi.xml      |   0
 app/code/Magento/Checkout/i18n/en_US.csv      |   0
 app/code/Magento/Checkout/registration.php    |   0
 .../view/adminhtml/email/failed_payment.html  |   0
 .../js/model/default-post-code-resolver.js    |   0
 .../frontend/layout/catalog_category_view.xml |   0
 .../frontend/layout/catalog_product_view.xml  |   0
 .../layout/checkout_cart_configure.xml        |   0
 .../checkout_cart_configure_type_simple.xml   |   0
 .../frontend/layout/checkout_cart_index.xml   |   0
 .../layout/checkout_cart_item_renderers.xml   |   0
 ...kout_cart_sidebar_item_price_renderers.xml |   0
 .../checkout_cart_sidebar_item_renderers.xml  |   0
 .../checkout_cart_sidebar_total_renderers.xml |   0
 .../frontend/layout/checkout_index_index.xml  |   0
 .../layout/checkout_item_price_renderers.xml  |   0
 .../layout/checkout_onepage_failure.xml       |   0
 ...checkout_onepage_review_item_renderers.xml |   0
 .../layout/checkout_onepage_success.xml       |   0
 .../Checkout/view/frontend/layout/default.xml |   0
 .../view/frontend/page_layout/checkout.xml    |   0
 .../view/frontend/requirejs-config.js         |   0
 .../view/frontend/templates/button.phtml      |   0
 .../view/frontend/templates/cart.phtml        |   0
 .../templates/cart/additional/info.phtml      |   0
 .../view/frontend/templates/cart/coupon.phtml |   0
 .../view/frontend/templates/cart/form.phtml   |   0
 .../cart/item/configure/updatecart.phtml      |   0
 .../templates/cart/item/default.phtml         |   0
 .../templates/cart/item/price/sidebar.phtml   |   0
 .../cart/item/renderer/actions/edit.phtml     |   0
 .../cart/item/renderer/actions/remove.phtml   |   0
 .../frontend/templates/cart/methods.phtml     |   0
 .../frontend/templates/cart/minicart.phtml    |   0
 .../frontend/templates/cart/noItems.phtml     |   0
 .../frontend/templates/cart/shipping.phtml    |   0
 .../view/frontend/templates/cart/totals.phtml |   0
 .../frontend/templates/item/price/row.phtml   |   0
 .../frontend/templates/item/price/unit.phtml  |   0
 .../frontend/templates/js/components.phtml    |   0
 .../view/frontend/templates/onepage.phtml     |   0
 .../frontend/templates/onepage/failure.phtml  |   0
 .../frontend/templates/onepage/link.phtml     |   0
 .../templates/onepage/review/item.phtml       |   0
 .../review/item/price/row_excl_tax.phtml      |   0
 .../review/item/price/row_incl_tax.phtml      |   0
 .../review/item/price/unit_excl_tax.phtml     |   0
 .../review/item/price/unit_incl_tax.phtml     |   0
 .../frontend/templates/registration.phtml     |   0
 .../frontend/templates/shipping/price.phtml   |   0
 .../view/frontend/templates/success.phtml     |   0
 .../frontend/templates/total/default.phtml    |   0
 .../Checkout/view/frontend/web/cvv.png        | Bin
 .../web/js/action/create-billing-address.js   |   0
 .../web/js/action/create-shipping-address.js  |   0
 .../web/js/action/get-payment-information.js  |   0
 .../view/frontend/web/js/action/get-totals.js |   0
 .../frontend/web/js/action/place-order.js     |   0
 .../web/js/action/redirect-on-success.js      |   0
 .../web/js/action/select-billing-address.js   |   0
 .../web/js/action/select-payment-method.js    |   0
 .../web/js/action/select-shipping-address.js  |   0
 .../web/js/action/select-shipping-method.js   |   0
 .../web/js/action/set-billing-address.js      |   0
 .../web/js/action/set-payment-information.js  |   0
 .../web/js/action/set-shipping-information.js |   0
 .../view/frontend/web/js/checkout-data.js     |   0
 .../view/frontend/web/js/checkout-loader.js   |   0
 .../view/frontend/web/js/discount-codes.js    |   0
 .../web/js/model/address-converter.js         |   0
 .../web/js/model/authentication-messages.js   |   0
 .../view/frontend/web/js/model/cart/cache.js  |   0
 .../web/js/model/cart/estimate-service.js     |   0
 .../js/model/cart/totals-processor/default.js |   0
 .../web/js/model/checkout-data-resolver.js    |   0
 .../web/js/model/customer-email-validator.js  |   0
 .../web/js/model/default-validation-rules.js  |   0
 .../web/js/model/default-validator.js         |   0
 .../frontend/web/js/model/error-processor.js  |   0
 .../web/js/model/full-screen-loader.js        |   0
 .../web/js/model/new-customer-address.js      |   0
 .../frontend/web/js/model/payment-service.js  |   0
 .../js/model/payment/additional-validators.js |   0
 .../web/js/model/payment/method-converter.js  |   0
 .../web/js/model/payment/method-group.js      |   0
 .../web/js/model/payment/method-list.js       |   0
 .../web/js/model/payment/renderer-list.js     |   0
 .../view/frontend/web/js/model/place-order.js |   0
 .../web/js/model/postcode-validator.js        |   0
 .../view/frontend/web/js/model/quote.js       |   0
 .../web/js/model/resource-url-manager.js      |   0
 .../shipping-address/form-popup-state.js      |   0
 .../customer-address.js                       |   0
 .../shipping-rate-processor/new-address.js    |   0
 .../web/js/model/shipping-rate-registry.js    |   0
 .../web/js/model/shipping-rate-service.js     |   0
 .../model/shipping-rates-validation-rules.js  |   0
 .../web/js/model/shipping-rates-validator.js  |   0
 .../web/js/model/shipping-save-processor.js   |   0
 .../model/shipping-save-processor/default.js  |   0
 .../payload-extender.js                       |   0
 .../frontend/web/js/model/shipping-service.js |   0
 .../view/frontend/web/js/model/sidebar.js     |   0
 .../frontend/web/js/model/step-navigator.js   |   0
 .../view/frontend/web/js/model/totals.js      |   0
 .../view/frontend/web/js/model/url-builder.js |   0
 .../frontend/web/js/proceed-to-checkout.js    |   0
 .../view/frontend/web/js/region-updater.js    |   0
 .../view/frontend/web/js/shopping-cart.js     |   0
 .../Checkout/view/frontend/web/js/sidebar.js  |   0
 .../web/js/view/authentication-messages.js    |   0
 .../frontend/web/js/view/authentication.js    |   0
 .../frontend/web/js/view/beforePlaceOrder.js  |   0
 .../frontend/web/js/view/billing-address.js   |   0
 .../web/js/view/cart/shipping-estimation.js   |   0
 .../web/js/view/cart/shipping-rates.js        |   0
 .../view/frontend/web/js/view/cart/totals.js  |   0
 .../web/js/view/cart/totals/shipping.js       |   0
 .../view/checkout/minicart/subtotal/totals.js |   0
 .../view/configure/product-customer-data.js   |   0
 .../view/frontend/web/js/view/estimation.js   |   0
 .../web/js/view/form/element/email.js         |   0
 .../view/frontend/web/js/view/minicart.js     |   0
 .../view/frontend/web/js/view/payment.js      |   0
 .../frontend/web/js/view/payment/default.js   |   0
 .../web/js/view/payment/email-validator.js    |   0
 .../view/frontend/web/js/view/payment/list.js |   0
 .../view/frontend/web/js/view/progress-bar.js |   0
 .../view/frontend/web/js/view/registration.js |   0
 .../frontend/web/js/view/review/actions.js    |   0
 .../web/js/view/review/actions/default.js     |   0
 .../address-renderer/default.js               |   0
 .../web/js/view/shipping-address/list.js      |   0
 .../web/js/view/shipping-information.js       |   0
 .../address-renderer/default.js               |   0
 .../web/js/view/shipping-information/list.js  |   0
 .../view/frontend/web/js/view/shipping.js     |   0
 .../view/frontend/web/js/view/sidebar.js      |   0
 .../view/frontend/web/js/view/summary.js      |   0
 .../web/js/view/summary/abstract-total.js     |   0
 .../web/js/view/summary/cart-items.js         |   0
 .../web/js/view/summary/grand-total.js        |   0
 .../web/js/view/summary/item/details.js       |   0
 .../js/view/summary/item/details/subtotal.js  |   0
 .../js/view/summary/item/details/thumbnail.js |   0
 .../frontend/web/js/view/summary/shipping.js  |   0
 .../frontend/web/js/view/summary/subtotal.js  |   0
 .../frontend/web/js/view/summary/totals.js    |   0
 .../frontend/web/template/authentication.html |   0
 .../web/template/billing-address.html         |   0
 .../web/template/billing-address/details.html |   0
 .../web/template/billing-address/form.html    |   0
 .../web/template/billing-address/list.html    |   0
 .../template/cart/shipping-estimation.html    |   0
 .../web/template/cart/shipping-rates.html     |   0
 .../frontend/web/template/cart/totals.html    |   0
 .../web/template/cart/totals/grand-total.html |   0
 .../web/template/cart/totals/shipping.html    |   0
 .../web/template/cart/totals/subtotal.html    |   0
 .../frontend/web/template/estimation.html     |   0
 .../web/template/form/element/email.html      |   0
 .../web/template/minicart/content.html        |   0
 .../web/template/minicart/item/default.html   |   0
 .../web/template/minicart/item/price.html     |   0
 .../web/template/minicart/subtotal.html       |   0
 .../template/minicart/subtotal/totals.html    |   0
 .../view/frontend/web/template/onepage.html   |   0
 .../web/template/payment-methods/list.html    |   0
 .../view/frontend/web/template/payment.html   |   0
 .../template/payment/before-place-order.html  |   0
 .../web/template/payment/generic-title.html   |   0
 .../frontend/web/template/progress-bar.html   |   0
 .../frontend/web/template/registration.html   |   0
 .../frontend/web/template/review/actions.html |   0
 .../web/template/review/actions/default.html  |   0
 .../address-renderer/default.html             |   0
 .../web/template/shipping-address/form.html   |   0
 .../web/template/shipping-address/list.html   |   0
 .../shipping-method-item.html                 |   0
 .../shipping-method-list.html                 |   0
 .../web/template/shipping-information.html    |   0
 .../address-renderer/default.html             |   0
 .../template/shipping-information/list.html   |   0
 .../view/frontend/web/template/shipping.html  |   0
 .../view/frontend/web/template/sidebar.html   |   0
 .../view/frontend/web/template/summary.html   |   0
 .../web/template/summary/cart-items.html      |   0
 .../web/template/summary/grand-total.html     |   0
 .../web/template/summary/item/details.html    |   0
 .../summary/item/details/subtotal.html        |   0
 .../summary/item/details/thumbnail.html       |   0
 .../web/template/summary/shipping.html        |   0
 .../web/template/summary/subtotal.html        |   0
 .../frontend/web/template/summary/totals.html |   0
 .../CheckoutAgreementsRepositoryInterface.php |   0
 .../Api/Data/AgreementInterface.php           |   0
 .../Block/Adminhtml/Agreement.php             |   0
 .../Block/Adminhtml/Agreement/Edit.php        |   0
 .../Block/Adminhtml/Agreement/Edit/Form.php   |   0
 .../Block/Adminhtml/Agreement/Grid.php        |   0
 .../CheckoutAgreements/Block/Agreements.php   |   0
 .../Controller/Adminhtml/Agreement.php        |   0
 .../Controller/Adminhtml/Agreement/Delete.php |   0
 .../Controller/Adminhtml/Agreement/Edit.php   |   0
 .../Controller/Adminhtml/Agreement/Index.php  |   0
 .../Adminhtml/Agreement/NewAction.php         |   0
 .../Controller/Adminhtml/Agreement/Save.php   |   0
 .../Magento/CheckoutAgreements/LICENSE.txt    |   0
 .../CheckoutAgreements/LICENSE_AFL.txt        |   0
 .../CheckoutAgreements/Model/Agreement.php    |   0
 .../Model/AgreementModeOptions.php            |   0
 .../Model/AgreementsConfigProvider.php        |   0
 .../Model/AgreementsProvider.php              |   0
 .../Model/AgreementsProviderInterface.php     |   0
 .../Model/AgreementsValidator.php             |   0
 .../Model/Checkout/Plugin/GuestValidation.php |   0
 .../Model/Checkout/Plugin/Validation.php      |   0
 .../Model/CheckoutAgreementsRepository.php    |   0
 .../Model/ResourceModel/Agreement.php         |   0
 .../ResourceModel/Agreement/Collection.php    |   0
 app/code/Magento/CheckoutAgreements/README.md |   0
 .../Setup/InstallSchema.php                   |   0
 .../Setup/UpgradeSchema.php                   |   0
 .../Test/Unit/Block/AgreementsTest.php        |   0
 .../Unit/Model/AgreementModeOptionsTest.php   |   0
 .../Test/Unit/Model/AgreementTest.php         |   0
 .../Model/AgreementsConfigProviderTest.php    |   0
 .../Unit/Model/AgreementsProviderTest.php     |   0
 .../Unit/Model/AgreementsValidatorTest.php    |   0
 .../Checkout/Plugin/GuestValidationTest.php   |   0
 .../Model/Checkout/Plugin/ValidationTest.php  |   0
 .../CheckoutAgreementsRepositoryTest.php      |   0
 .../Magento/CheckoutAgreements/composer.json  |   0
 .../Magento/CheckoutAgreements/etc/acl.xml    |   0
 .../CheckoutAgreements/etc/adminhtml/menu.xml |   0
 .../etc/adminhtml/routes.xml                  |   0
 .../etc/adminhtml/system.xml                  |   0
 .../Magento/CheckoutAgreements/etc/di.xml     |   0
 .../etc/extension_attributes.xml              |   0
 .../CheckoutAgreements/etc/frontend/di.xml    |   0
 .../Magento/CheckoutAgreements/etc/module.xml |   0
 .../Magento/CheckoutAgreements/etc/webapi.xml |   0
 .../Magento/CheckoutAgreements/i18n/en_US.csv |   0
 .../CheckoutAgreements/registration.php       |   0
 .../frontend/layout/checkout_index_index.xml  |   0
 .../multishipping_checkout_overview.xml       |   0
 .../view/frontend/requirejs-config.js         |   0
 .../templates/additional_agreements.phtml     |   0
 .../view/frontend/templates/agreements.phtml  |   0
 .../templates/multishipping_agreements.phtml  |   0
 .../web/js/model/agreement-validator.js       |   0
 .../web/js/model/agreements-assigner.js       |   0
 .../frontend/web/js/model/agreements-modal.js |   0
 .../web/js/model/place-order-mixin.js         |   0
 .../js/model/set-payment-information-mixin.js |   0
 .../web/js/view/agreement-validation.js       |   0
 .../web/js/view/checkout-agreements.js        |   0
 .../checkout/checkout-agreements.html         |   0
 .../Cms/Api/BlockRepositoryInterface.php      |   0
 .../Magento/Cms/Api/Data/BlockInterface.php   |   0
 .../Api/Data/BlockSearchResultsInterface.php  |   0
 .../Magento/Cms/Api/Data/PageInterface.php    |   0
 .../Api/Data/PageSearchResultsInterface.php   |   0
 .../GetUtilityPageIdentifiersInterface.php    |   0
 .../Cms/Api/PageRepositoryInterface.php       |   0
 .../Magento/Cms/Block/Adminhtml/Block.php     |   0
 .../Block/Adminhtml/Block/Edit/BackButton.php |   0
 .../Adminhtml/Block/Edit/DeleteButton.php     |   0
 .../Adminhtml/Block/Edit/GenericButton.php    |   0
 .../Adminhtml/Block/Edit/ResetButton.php      |   0
 .../Block/Edit/SaveAndContinueButton.php      |   0
 .../Block/Adminhtml/Block/Edit/SaveButton.php |   0
 .../Block/Adminhtml/Block/Widget/Chooser.php  |   0
 app/code/Magento/Cms/Block/Adminhtml/Page.php |   0
 .../Block/Adminhtml/Page/Edit/BackButton.php  |   0
 .../Adminhtml/Page/Edit/DeleteButton.php      |   0
 .../Adminhtml/Page/Edit/GenericButton.php     |   0
 .../Block/Adminhtml/Page/Edit/ResetButton.php |   0
 .../Page/Edit/SaveAndContinueButton.php       |   0
 .../Block/Adminhtml/Page/Edit/SaveButton.php  |   0
 .../Magento/Cms/Block/Adminhtml/Page/Grid.php |   0
 .../Adminhtml/Page/Grid/Renderer/Action.php   |   0
 .../Page/Grid/Renderer/Action/UrlBuilder.php  |   0
 .../Block/Adminhtml/Page/Widget/Chooser.php   |   0
 .../Adminhtml/Wysiwyg/Images/Content.php      |   0
 .../Wysiwyg/Images/Content/Files.php          |   0
 .../Wysiwyg/Images/Content/Newfolder.php      |   0
 .../Wysiwyg/Images/Content/Uploader.php       |   0
 .../Block/Adminhtml/Wysiwyg/Images/Tree.php   |   0
 app/code/Magento/Cms/Block/Block.php          |   0
 app/code/Magento/Cms/Block/Page.php           |   0
 app/code/Magento/Cms/Block/Widget/Block.php   |   0
 .../Magento/Cms/Block/Widget/Page/Link.php    |   0
 .../Cms/Controller/Adminhtml/Block.php        |   0
 .../Cms/Controller/Adminhtml/Block/Delete.php |   0
 .../Cms/Controller/Adminhtml/Block/Edit.php   |   0
 .../Cms/Controller/Adminhtml/Block/Index.php  |   0
 .../Controller/Adminhtml/Block/InlineEdit.php |   0
 .../Controller/Adminhtml/Block/MassDelete.php |   0
 .../Controller/Adminhtml/Block/NewAction.php  |   0
 .../Cms/Controller/Adminhtml/Block/Save.php   |   0
 .../Adminhtml/Block/Widget/Chooser.php        |   0
 .../Cms/Controller/Adminhtml/Page/Delete.php  |   0
 .../Cms/Controller/Adminhtml/Page/Edit.php    |   0
 .../Cms/Controller/Adminhtml/Page/Index.php   |   0
 .../Controller/Adminhtml/Page/InlineEdit.php  |   0
 .../Controller/Adminhtml/Page/MassDelete.php  |   0
 .../Controller/Adminhtml/Page/MassDisable.php |   0
 .../Controller/Adminhtml/Page/MassEnable.php  |   0
 .../Controller/Adminhtml/Page/NewAction.php   |   0
 .../Adminhtml/Page/PostDataProcessor.php      |   0
 .../Cms/Controller/Adminhtml/Page/Save.php    |   0
 .../Adminhtml/Page/Widget/Chooser.php         |   0
 .../Adminhtml/Wysiwyg/Directive.php           |   0
 .../Controller/Adminhtml/Wysiwyg/Images.php   |   0
 .../Adminhtml/Wysiwyg/Images/Contents.php     |   0
 .../Adminhtml/Wysiwyg/Images/DeleteFiles.php  |   0
 .../Adminhtml/Wysiwyg/Images/DeleteFolder.php |   0
 .../Adminhtml/Wysiwyg/Images/Index.php        |   0
 .../Adminhtml/Wysiwyg/Images/NewFolder.php    |   0
 .../Adminhtml/Wysiwyg/Images/OnInsert.php     |   0
 .../Adminhtml/Wysiwyg/Images/Thumbnail.php    |   0
 .../Adminhtml/Wysiwyg/Images/TreeJson.php     |   0
 .../Adminhtml/Wysiwyg/Images/Upload.php       |   0
 .../Cms/Controller/Index/DefaultIndex.php     |   0
 .../Cms/Controller/Index/DefaultNoRoute.php   |   0
 .../Magento/Cms/Controller/Index/Index.php    |   0
 .../Magento/Cms/Controller/Noroute/Index.php  |   0
 app/code/Magento/Cms/Controller/Page/View.php |   0
 app/code/Magento/Cms/Controller/Router.php    |   0
 app/code/Magento/Cms/Helper/Page.php          |   0
 .../Magento/Cms/Helper/Wysiwyg/Images.php     |   0
 app/code/Magento/Cms/LICENSE.txt              |   0
 app/code/Magento/Cms/LICENSE_AFL.txt          |   0
 .../FilterProcessor/BlockStoreFilter.php      |   0
 .../FilterProcessor/PageStoreFilter.php       |   0
 app/code/Magento/Cms/Model/Block.php          |   0
 .../Magento/Cms/Model/Block/DataProvider.php  |   0
 .../Cms/Model/Block/Source/IsActive.php       |   0
 .../Magento/Cms/Model/BlockRepository.php     |   0
 .../Magento/Cms/Model/Config/Source/Page.php  |   0
 .../Model/Config/Source/Wysiwyg/Enabled.php   |   0
 .../Cms/Model/GetUtilityPageIdentifiers.php   |   0
 app/code/Magento/Cms/Model/Page.php           |   0
 .../Magento/Cms/Model/Page/DataProvider.php   |   0
 .../Cms/Model/Page/DomValidationState.php     |   0
 .../Cms/Model/Page/Source/CustomLayout.php    |   0
 .../Cms/Model/Page/Source/IsActive.php        |   0
 .../Cms/Model/Page/Source/IsActiveFilter.php  |   0
 .../Cms/Model/Page/Source/PageLayout.php      |   0
 .../Model/Page/Source/PageLayoutFilter.php    |   0
 .../Magento/Cms/Model/Page/Source/Theme.php   |   0
 app/code/Magento/Cms/Model/PageRepository.php |   0
 .../ResourceModel/AbstractCollection.php      |   0
 .../Magento/Cms/Model/ResourceModel/Block.php |   0
 .../Model/ResourceModel/Block/Collection.php  |   0
 .../ResourceModel/Block/Grid/Collection.php   |   0
 .../Block/Relation/Store/ReadHandler.php      |   0
 .../Block/Relation/Store/SaveHandler.php      |   0
 .../Magento/Cms/Model/ResourceModel/Page.php  |   0
 .../Model/ResourceModel/Page/Collection.php   |   0
 .../ResourceModel/Page/Grid/Collection.php    |   0
 .../Page/Relation/Store/ReadHandler.php       |   0
 .../Page/Relation/Store/SaveHandler.php       |   0
 .../Magento/Cms/Model/Template/Filter.php     |   0
 .../Cms/Model/Template/FilterProvider.php     |   0
 app/code/Magento/Cms/Model/Wysiwyg/Config.php |   0
 .../Cms/Model/Wysiwyg/Images/Storage.php      |   0
 .../Wysiwyg/Images/Storage/Collection.php     |   0
 .../Cms/Observer/NoCookiesObserver.php        |   0
 .../Magento/Cms/Observer/NoRouteObserver.php  |   0
 app/code/Magento/Cms/README.md                |   0
 .../Magento/Cms/Setup/ContentConverter.php    |   0
 app/code/Magento/Cms/Setup/InstallData.php    |   0
 app/code/Magento/Cms/Setup/InstallSchema.php  |   0
 app/code/Magento/Cms/Setup/UpgradeData.php    |   0
 app/code/Magento/Cms/Setup/UpgradeSchema.php  |   0
 .../Adminhtml/Block/Widget/ChooserTest.php    |   0
 .../Adminhtml/Page/Widget/ChooserTest.php     |   0
 .../Magento/Cms/Test/Unit/Block/BlockTest.php |   0
 .../Magento/Cms/Test/Unit/Block/PageTest.php  |   0
 .../Test/Unit/Block/Widget/Page/LinkTest.php  |   0
 .../Adminhtml/AbstractMassActionTest.php      |   0
 .../Controller/Adminhtml/Block/DeleteTest.php |   0
 .../Controller/Adminhtml/Block/EditTest.php   |   0
 .../Adminhtml/Block/MassDeleteTest.php        |   0
 .../Controller/Adminhtml/Block/SaveTest.php   |   0
 .../Controller/Adminhtml/Page/DeleteTest.php  |   0
 .../Controller/Adminhtml/Page/EditTest.php    |   0
 .../Adminhtml/Page/InlineEditTest.php         |   0
 .../Adminhtml/Page/MassDeleteTest.php         |   0
 .../Adminhtml/Page/MassDisableTest.php        |   0
 .../Adminhtml/Page/MassEnableTest.php         |   0
 .../Controller/Adminhtml/Page/SaveTest.php    |   0
 .../Adminhtml/Wysiwyg/DirectiveTest.php       |   0
 .../Unit/Controller/Block/InlineEditTest.php  |   0
 .../Test/Unit/Controller/Index/IndexTest.php  |   0
 .../Unit/Controller/Noroute/IndexTest.php     |   0
 .../Controller/Page/PostDataProcessorTest.php |   0
 .../Test/Unit/Controller/Page/ViewTest.php    |   0
 .../Cms/Test/Unit/Controller/RouterTest.php   |   0
 .../Magento/Cms/Test/Unit/Helper/PageTest.php |   0
 .../Test/Unit/Helper/Wysiwyg/ImagesTest.php   |   0
 .../FilterProcessor/BlockStoreFilterTest.php  |   0
 .../FilterProcessor/PageStoreFilterTest.php   |   0
 .../Unit/Model/Block/Source/IsActiveTest.php  |   0
 .../Test/Unit/Model/BlockRepositoryTest.php   |   0
 .../Unit/Model/Config/Source/PageTest.php     |   0
 .../Model/Page/Source/CustomLayoutTest.php    |   0
 .../Model/Page/Source/IsActiveFilterTest.php  |   0
 .../Unit/Model/Page/Source/IsActiveTest.php   |   0
 .../Page/Source/PageLayoutFilterTest.php      |   0
 .../Unit/Model/Page/Source/PageLayoutTest.php |   0
 .../Test/Unit/Model/Page/Source/ThemeTest.php |   0
 .../Test/Unit/Model/PageRepositoryTest.php    |   0
 .../Magento/Cms/Test/Unit/Model/PageTest.php  |   0
 .../ResourceModel/AbstractCollectionTest.php  |   0
 .../ResourceModel/Block/CollectionTest.php    |   0
 .../Block/Relation/Store/ReadHandlerTest.php  |   0
 .../Block/Relation/Store/SaveHandlerTest.php  |   0
 .../ResourceModel/Page/CollectionTest.php     |   0
 .../Page/Grid/CollectionTest.php              |   0
 .../Page/Relation/Store/ReadHandlerTest.php   |   0
 .../Page/Relation/Store/SaveHandlerTest.php   |   0
 .../Unit/Model/ResourceModel/PageTest.php     |   0
 .../Model/Template/FilterProviderTest.php     |   0
 .../Test/Unit/Model/Template/FilterTest.php   |   0
 .../Test/Unit/Model/Wysiwyg/ConfigTest.php    |   0
 .../Unit/Model/Wysiwyg/Images/StorageTest.php |   0
 .../Unit/Observer/NoCookiesObserverTest.php   |   0
 .../Unit/Observer/NoRouteObserverTest.php     |   0
 .../Listing/Column/BlockActionsTest.php       |   0
 .../Listing/Column/Cms/OptionsTest.php        |   0
 .../Listing/Column/PageActionsTest.php        |   0
 .../Ui/Component/Listing/DataProviderTest.php |   0
 .../Magento/Cms/Ui/Component/DataProvider.php |   0
 .../Component/Listing/Column/BlockActions.php |   0
 .../Component/Listing/Column/Cms/Options.php  |   0
 .../Component/Listing/Column/PageActions.php  |   0
 app/code/Magento/Cms/composer.json            |   0
 app/code/Magento/Cms/etc/acl.xml              |   0
 app/code/Magento/Cms/etc/adminhtml/di.xml     |   0
 app/code/Magento/Cms/etc/adminhtml/menu.xml   |   0
 app/code/Magento/Cms/etc/adminhtml/routes.xml |   0
 app/code/Magento/Cms/etc/adminhtml/system.xml |   0
 app/code/Magento/Cms/etc/config.xml           |   0
 app/code/Magento/Cms/etc/di.xml               |   0
 app/code/Magento/Cms/etc/events.xml           |   0
 app/code/Magento/Cms/etc/frontend/di.xml      |   0
 app/code/Magento/Cms/etc/frontend/events.xml  |   0
 .../Magento/Cms/etc/frontend/page_types.xml   |   0
 app/code/Magento/Cms/etc/frontend/routes.xml  |   0
 app/code/Magento/Cms/etc/module.xml           |   0
 app/code/Magento/Cms/etc/mview.xml            |   0
 app/code/Magento/Cms/etc/webapi.xml           |   0
 app/code/Magento/Cms/etc/widget.xml           |   0
 app/code/Magento/Cms/i18n/en_US.csv           |   0
 app/code/Magento/Cms/registration.php         |   0
 .../view/adminhtml/layout/cms_block_edit.xml  |   0
 .../view/adminhtml/layout/cms_block_index.xml |   0
 .../view/adminhtml/layout/cms_block_new.xml   |   0
 .../view/adminhtml/layout/cms_page_edit.xml   |   0
 .../view/adminhtml/layout/cms_page_index.xml  |   0
 .../view/adminhtml/layout/cms_page_new.xml    |   0
 .../layout/cms_wysiwyg_images_contents.xml    |   0
 .../layout/cms_wysiwyg_images_index.xml       |   0
 .../Cms/view/adminhtml/requirejs-config.js    |   0
 .../adminhtml/templates/browser/content.phtml |   0
 .../templates/browser/content/files.phtml     |   0
 .../templates/browser/content/uploader.phtml  |   0
 .../adminhtml/templates/browser/tree.phtml    |   0
 .../page/edit/form/renderer/content.phtml     |   0
 .../adminhtml/ui_component/cms_block_form.xml |   0
 .../ui_component/cms_block_listing.xml        |   0
 .../adminhtml/ui_component/cms_page_form.xml  |   0
 .../ui_component/cms_page_listing.xml         |   0
 .../web/images/placeholder_thumbnail.jpg      | Bin
 .../adminhtml/web/images/widget_block.png     | Bin
 .../adminhtml/web/images/widget_page_link.png | Bin
 .../web/images/wysiwyg_skin_image.png         | Bin
 .../Cms/view/adminhtml/web/js/folder-tree.js  |   0
 .../layout/cms_index_defaultindex.xml         |   0
 .../layout/cms_index_defaultnoroute.xml       |   0
 .../view/frontend/layout/cms_index_index.xml  |   0
 .../frontend/layout/cms_index_nocookies.xml   |   0
 .../frontend/layout/cms_index_noroute.xml     |   0
 .../view/frontend/layout/cms_page_view.xml    |   0
 .../Cms/view/frontend/layout/default.xml      |   0
 .../Cms/view/frontend/layout/print.xml        |   0
 .../Cms/view/frontend/templates/content.phtml |   0
 .../frontend/templates/default/home.phtml     |   0
 .../frontend/templates/default/no-route.phtml |   0
 .../Cms/view/frontend/templates/meta.phtml    |   0
 .../templates/widget/link/link_block.phtml    |   0
 .../templates/widget/link/link_inline.phtml   |   0
 .../widget/static_block/default.phtml         |   0
 app/code/Magento/CmsUrlRewrite/LICENSE.txt    |   0
 .../Magento/CmsUrlRewrite/LICENSE_AFL.txt     |   0
 .../Model/CmsPageUrlPathGenerator.php         |   0
 .../Model/CmsPageUrlRewriteGenerator.php      |   0
 .../ProcessUrlRewriteSavingObserver.php       |   0
 .../Plugin/Cms/Model/ResourceModel/Page.php   |   0
 app/code/Magento/CmsUrlRewrite/README.md      |   0
 .../Model/CmsPageUrlRewriteGeneratorTest.php  |   0
 .../ProcessUrlRewriteSavingObserverTest.php   |   0
 .../Cms/Model/ResourceModel/PageTest.php      |   0
 app/code/Magento/CmsUrlRewrite/composer.json  |   0
 .../CmsUrlRewrite/etc/adminhtml/di.xml        |   0
 app/code/Magento/CmsUrlRewrite/etc/events.xml |   0
 app/code/Magento/CmsUrlRewrite/etc/module.xml |   0
 app/code/Magento/CmsUrlRewrite/i18n/en_US.csv |   0
 .../Magento/CmsUrlRewrite/registration.php    |   0
 .../Source/DumpConfigSourceAggregated.php     |   0
 .../Source/DumpConfigSourceInterface.php      |   0
 .../Config/Source/EnvironmentConfigSource.php |   0
 .../Source/InitialSnapshotConfigSource.php    |   0
 .../App/Config/Source/ModularConfigSource.php |   0
 .../App/Config/Source/RuntimeConfigSource.php |   0
 .../Magento/Config/App/Config/Type/System.php |   0
 .../Config/App/Config/Type/System/Reader.php  |   0
 .../Config/Block/System/Config/Dwstree.php    |   0
 .../Config/Block/System/Config/Edit.php       |   0
 .../Config/Block/System/Config/Form.php       |   0
 .../Config/Block/System/Config/Form/Field.php |   0
 .../System/Config/Form/Field/Datetime.php     |   0
 .../System/Config/Form/Field/Factory.php      |   0
 .../Field/FieldArray/AbstractFieldArray.php   |   0
 .../Block/System/Config/Form/Field/File.php   |   0
 .../System/Config/Form/Field/Heading.php      |   0
 .../Block/System/Config/Form/Field/Image.php  |   0
 .../System/Config/Form/Field/Notification.php |   0
 .../Config/Form/Field/Regexceptions.php       |   0
 .../Form/Field/Select/Allowspecific.php       |   0
 .../Block/System/Config/Form/Fieldset.php     |   0
 .../System/Config/Form/Fieldset/Factory.php   |   0
 .../Form/Fieldset/Modules/DisableOutput.php   |   0
 .../Config/Block/System/Config/Tabs.php       |   0
 .../ConfigSet/ConfigSetProcessorFactory.php   |   0
 .../ConfigSet/ConfigSetProcessorInterface.php |   0
 .../Command/ConfigSet/DefaultProcessor.php    |   0
 .../Command/ConfigSet/LockProcessor.php       |   0
 .../Command/ConfigSet/ProcessorFacade.php     |   0
 .../Console/Command/ConfigSetCommand.php      |   0
 .../Command/ConfigShow/ValueProcessor.php     |   0
 .../Console/Command/ConfigShowCommand.php     |   0
 .../EmulatedAdminhtmlAreaProcessor.php        |   0
 .../Adminhtml/System/AbstractConfig.php       |   0
 .../System/Config/AbstractScopeConfig.php     |   0
 .../Adminhtml/System/Config/Edit.php          |   0
 .../Adminhtml/System/Config/Index.php         |   0
 .../Adminhtml/System/Config/Save.php          |   0
 .../Adminhtml/System/Config/State.php         |   0
 .../Adminhtml/System/ConfigSectionChecker.php |   0
 app/code/Magento/Config/LICENSE.txt           |   0
 app/code/Magento/Config/LICENSE_AFL.txt       |   0
 app/code/Magento/Config/Model/Config.php      |   0
 .../Model/Config/Backend/Admin/Custom.php     |   0
 .../Model/Config/Backend/Admin/Custompath.php |   0
 .../Admin/Password/Link/Expirationperiod.php  |   0
 .../Model/Config/Backend/Admin/Robots.php     |   0
 .../Model/Config/Backend/Admin/Usecustom.php  |   0
 .../Config/Backend/Admin/Usesecretkey.php     |   0
 .../Config/Model/Config/Backend/Baseurl.php   |   0
 .../Config/Model/Config/Backend/Cache.php     |   0
 .../Backend/Currency/AbstractCurrency.php     |   0
 .../Model/Config/Backend/Currency/Allow.php   |   0
 .../Model/Config/Backend/Currency/Base.php    |   0
 .../Model/Config/Backend/Currency/Cron.php    |   0
 .../Backend/Currency/DefaultCurrency.php      |   0
 .../Config/Model/Config/Backend/Datashare.php |   0
 .../Model/Config/Backend/Design/Exception.php |   0
 .../Model/Config/Backend/Email/Address.php    |   0
 .../Model/Config/Backend/Email/Logo.php       |   0
 .../Model/Config/Backend/Email/Sender.php     |   0
 .../Config/Model/Config/Backend/Encrypted.php |   0
 .../Config/Model/Config/Backend/File.php      |   0
 .../Model/Config/Backend/File/RequestData.php |   0
 .../File/RequestData/RequestDataInterface.php |   0
 .../Config/Model/Config/Backend/Filename.php  |   0
 .../Config/Model/Config/Backend/Image.php     |   0
 .../Model/Config/Backend/Image/Adapter.php    |   0
 .../Model/Config/Backend/Image/Favicon.php    |   0
 .../Model/Config/Backend/Image/Logo.php       |   0
 .../Config/Model/Config/Backend/Image/Pdf.php |   0
 .../Config/Model/Config/Backend/Locale.php    |   0
 .../Model/Config/Backend/Locale/Timezone.php  |   0
 .../Config/Model/Config/Backend/Log/Cron.php  |   0
 .../Config/Model/Config/Backend/Secure.php    |   0
 .../Model/Config/Backend/Serialized.php       |   0
 .../Backend/Serialized/ArraySerialized.php    |   0
 .../Config/Model/Config/Backend/Store.php     |   0
 .../Config/Model/Config/Backend/Translate.php |   0
 .../Model/Config/BackendClone/Factory.php     |   0
 .../Config/Model/Config/BackendFactory.php    |   0
 .../Config/Model/Config/CommentFactory.php    |   0
 .../Config/Model/Config/CommentInterface.php  |   0
 .../Model/Config/Compiler/IncludeElement.php  |   0
 .../Config/Model/Config/Export/Comment.php    |   0
 .../Model/Config/Export/ExcludeList.php       |   0
 .../Magento/Config/Model/Config/Factory.php   |   0
 .../Magento/Config/Model/Config/Importer.php  |   0
 .../Model/Config/Importer/SaveProcessor.php   |   0
 .../Magento/Config/Model/Config/Loader.php    |   0
 .../Config/Model/Config/Parser/Comment.php    |   0
 .../Config/Model/Config/PathValidator.php     |   0
 .../Processor/EnvironmentPlaceholder.php      |   0
 .../Reader/Source/Deployed/DocumentRoot.php   |   0
 .../Reader/Source/Deployed/SettingChecker.php |   0
 .../Config/Model/Config/SchemaLocator.php     |   0
 .../Config/Model/Config/ScopeDefiner.php      |   0
 .../Config/Model/Config/Source/Admin/Page.php |   0
 .../Config/Model/Config/Source/Date/Short.php |   0
 .../Model/Config/Source/Design/Robots.php     |   0
 .../Model/Config/Source/Dev/Dbautoup.php      |   0
 .../Model/Config/Source/Email/Identity.php    |   0
 .../Model/Config/Source/Email/Method.php      |   0
 .../Model/Config/Source/Email/Smtpauth.php    |   0
 .../Model/Config/Source/Email/Template.php    |   0
 .../Model/Config/Source/Enabledisable.php     |   0
 .../Model/Config/Source/Image/Adapter.php     |   0
 .../Config/Model/Config/Source/Locale.php     |   0
 .../Model/Config/Source/Locale/Country.php    |   0
 .../Model/Config/Source/Locale/Currency.php   |   0
 .../Config/Source/Locale/Currency/All.php     |   0
 .../Model/Config/Source/Locale/Timezone.php   |   0
 .../Config/Source/Locale/Weekdaycodes.php     |   0
 .../Model/Config/Source/Locale/Weekdays.php   |   0
 .../Config/Model/Config/Source/Nooptreq.php   |   0
 .../Model/Config/Source/Reports/Scope.php     |   0
 .../Config/Model/Config/Source/Store.php      |   0
 .../Model/Config/Source/Web/Protocol.php      |   0
 .../Model/Config/Source/Web/Redirect.php      |   0
 .../Config/Model/Config/Source/Website.php    |   0
 .../Config/Source/Website/AdminOptionHash.php |   0
 .../Config/Source/Website/OptionHash.php      |   0
 .../Config/Model/Config/Source/Yesno.php      |   0
 .../Model/Config/Source/Yesnocustom.php       |   0
 .../Config/Model/Config/SourceFactory.php     |   0
 .../Magento/Config/Model/Config/Structure.php |   0
 .../Config/Structure/AbstractElement.php      |   0
 .../Model/Config/Structure/AbstractMapper.php |   0
 .../ConcealInProductionConfigList.php         |   0
 .../Model/Config/Structure/Converter.php      |   0
 .../Config/Model/Config/Structure/Data.php    |   0
 .../Structure/Element/AbstractComposite.php   |   0
 .../Structure/Element/Dependency/Field.php    |   0
 .../Element/Dependency/FieldFactory.php       |   0
 .../Structure/Element/Dependency/Mapper.php   |   0
 .../Model/Config/Structure/Element/Field.php  |   0
 .../Structure/Element/FlyweightFactory.php    |   0
 .../Model/Config/Structure/Element/Group.php  |   0
 .../Config/Structure/Element/Group/Proxy.php  |   0
 .../Config/Structure/Element/Iterator.php     |   0
 .../Structure/Element/Iterator/Field.php      |   0
 .../Structure/Element/Iterator/Group.php      |   0
 .../Structure/Element/Iterator/Section.php    |   0
 .../Config/Structure/Element/Iterator/Tab.php |   0
 .../Config/Structure/Element/Section.php      |   0
 .../Model/Config/Structure/Element/Tab.php    |   0
 .../Config/Structure/ElementInterface.php     |   0
 .../Structure/ElementVisibilityComposite.php  |   0
 .../Structure/ElementVisibilityInterface.php  |   0
 .../Mapper/Attribute/Inheritance.php          |   0
 .../Config/Structure/Mapper/Dependencies.php  |   0
 .../Config/Structure/Mapper/ExtendsMapper.php |   0
 .../Model/Config/Structure/Mapper/Factory.php |   0
 .../Mapper/Helper/RelativePathConverter.php   |   0
 .../Model/Config/Structure/Mapper/Ignore.php  |   0
 .../Model/Config/Structure/Mapper/Path.php    |   0
 .../Model/Config/Structure/Mapper/Sorting.php |   0
 .../Config/Structure/MapperInterface.php      |   0
 .../Config/Model/Config/Structure/Reader.php  |   0
 .../Model/Config/Structure/Search/Proxy.php   |   0
 .../Config/Structure/SearchInterface.php      |   0
 .../Magento/Config/Model/Config/TypePool.php  |   0
 .../Config/Model/Placeholder/Environment.php  |   0
 .../Model/Placeholder/PlaceholderFactory.php  |   0
 .../Placeholder/PlaceholderInterface.php      |   0
 .../Config/Model/PreparedValueFactory.php     |   0
 .../Config/Model/ResourceModel/Config.php     |   0
 .../Model/ResourceModel/Config/Data.php       |   0
 .../ResourceModel/Config/Data/Collection.php  |   0
 .../Admin/AfterCustomUrlChangedObserver.php   |   0
 app/code/Magento/Config/README.md             |   0
 app/code/Magento/Config/Setup/InstallData.php |   0
 .../Magento/Config/Setup/InstallSchema.php    |   0
 .../Source/DumpConfigSourceAggregatedTest.php |   0
 .../Source/EnvironmentConfigSourceTest.php    |   0
 .../InitialSnapshotConfigSourceTest.php       |   0
 .../Config/Source/ModularConfigSourceTest.php |   0
 .../Config/Source/RuntimeConfigSourceTest.php |   0
 .../App/Config/Type/System/ReaderTest.php     |   0
 .../Test/Unit/App/Config/Type/SystemTest.php  |   0
 .../Unit/Block/System/Config/DwstreeTest.php  |   0
 .../Unit/Block/System/Config/EditTest.php     |   0
 .../Form/Field/FieldArray/AbstractTest.php    |   0
 .../System/Config/Form/Field/FileTest.php     |   0
 .../System/Config/Form/Field/HeadingTest.php  |   0
 .../System/Config/Form/Field/ImageTest.php    |   0
 .../Config/Form/Field/NotificationTest.php    |   0
 .../Config/Form/Field/RegexceptionsTest.php   |   0
 .../Form/Field/Select/AllowspecificTest.php   |   0
 .../Block/System/Config/Form/FieldTest.php    |   0
 .../Fieldset/Modules/DisableOutputTest.php    |   0
 .../Block/System/Config/Form/FieldsetTest.php |   0
 .../Unit/Block/System/Config/FormTest.php     |   0
 .../Unit/Block/System/Config/TabsTest.php     |   0
 .../ConfigSetProcessorFactoryTest.php         |   0
 .../ConfigSet/DefaultProcessorTest.php        |   0
 .../Command/ConfigSet/LockProcessorTest.php   |   0
 .../Command/ConfigSet/ProcessorFacadeTest.php |   0
 .../Console/Command/ConfigSetCommandTest.php  |   0
 .../Command/ConfigShow/ValueProcessorTest.php |   0
 .../Console/Command/ConfigShowCommandTest.php |   0
 .../EmulatedAdminhtmlAreaProcessorTest.php    |   0
 .../Adminhtml/System/Config/SaveTest.php      |   0
 .../System/Config/_files/expected_array.php   |   0
 .../System/Config/_files/files_array.php      |   0
 .../System/Config/_files/groups_array.php     |   0
 .../Model/Compiler/IncludeElementTest.php     |   0
 .../Unit/Model/Config/Backend/BaseurlTest.php |   0
 .../Config/Backend/Email/AddressTest.php      |   0
 .../Model/Config/Backend/Email/LogoTest.php   |   0
 .../Model/Config/Backend/Email/SenderTest.php |   0
 .../Model/Config/Backend/EncryptedTest.php    |   0
 .../Config/Backend/File/RequestDataTest.php   |   0
 .../Unit/Model/Config/Backend/FileTest.php    |   0
 .../Model/Config/Backend/Image/LogoTest.php   |   0
 .../Unit/Model/Config/Backend/SecureTest.php  |   0
 .../Model/Config/Backend/SerializedTest.php   |   0
 .../Unit/Model/Config/Export/CommentTest.php  |   0
 .../Model/Config/Export/ExcludeListTest.php   |   0
 .../Unit/Model/Config/Export/TypePoolTest.php |   0
 .../Config/Importer/SaveProcessorTest.php     |   0
 .../Test/Unit/Model/Config/ImporterTest.php   |   0
 .../Test/Unit/Model/Config/LoaderTest.php     |   0
 .../Unit/Model/Config/Parser/CommentTest.php  |   0
 .../Unit/Model/Config/PathValidatorTest.php   |   0
 .../Processor/EnvironmentPlaceholderTest.php  |   0
 .../Source/Deployed/DocumentRootTest.php      |   0
 .../Source/Deployed/SettingCheckerTest.php    |   0
 .../Unit/Model/Config/SchemaLocatorTest.php   |   0
 .../Unit/Model/Config/ScopeDefinerTest.php    |   0
 .../Model/Config/Source/Admin/PageTest.php    |   0
 .../Config/Source/Email/TemplateTest.php      |   0
 .../Config/Source/Locale/TimezoneTest.php     |   0
 .../Config/Structure/AbstractElementTest.php  |   0
 .../ConcealInProductionConfigListTest.php     |   0
 .../Model/Config/Structure/ConverterTest.php  |   0
 .../Element/AbstractCompositeTest.php         |   0
 .../Element/Dependency/FieldTest.php          |   0
 .../Element/Dependency/MapperTest.php         |   0
 .../Config/Structure/Element/FieldTest.php    |   0
 .../Element/FlyweightFactoryTest.php          |   0
 .../Structure/Element/Group/ProxyTest.php     |   0
 .../Config/Structure/Element/GroupTest.php    |   0
 .../Structure/Element/Iterator/FieldTest.php  |   0
 .../Config/Structure/Element/IteratorTest.php |   0
 .../Config/Structure/Element/SectionTest.php  |   0
 .../Config/Structure/Element/TabTest.php      |   0
 .../ElementVisibilityCompositeTest.php        |   0
 .../Structure/Mapper/DependenciesTest.php     |   0
 .../Config/Structure/Mapper/ExtendsTest.php   |   0
 .../Helper/RelativePathConverterTest.php      |   0
 .../Config/Structure/Mapper/PathTest.php      |   0
 .../Config/Structure/Mapper/SortingTest.php   |   0
 .../Model/Config/Structure/ReaderTest.php     |   0
 .../Test/Unit/Model/Config/StructureTest.php  |   0
 .../Config/Test/Unit/Model/Config/XsdTest.php |   0
 .../Unit/Model/Config/_files/config.local.php |   0
 .../Config/_files/invalidSystemXmlArray.php   |   0
 .../Unit/Model/Config/_files/valid_system.xml |   0
 .../Config/Test/Unit/Model/ConfigTest.php     |   0
 .../Model/Placeholder/EnvironmentTest.php     |   0
 .../Placeholder/PlaceholderFactoryTest.php    |   0
 .../Unit/Model/PreparedValueFactoryTest.php   |   0
 .../Config/Test/Unit/Model/_files/acl.xml     |   0
 .../Config/Test/Unit/Model/_files/acl_1.xml   |   0
 .../Config/Test/Unit/Model/_files/acl_2.xml   |   0
 .../Test/Unit/Model/_files/acl_merged.xml     |   0
 .../Unit/Model/_files/converted_config.php    |   0
 .../Unit/Model/_files/dependencies_data.php   |   0
 .../Unit/Model/_files/dependencies_mapped.php |   0
 .../Config/Test/Unit/Model/_files/menu_1.xml  |   0
 .../Config/Test/Unit/Model/_files/menu_2.xml  |   0
 .../Test/Unit/Model/_files/system_1.xml       |   0
 .../Test/Unit/Model/_files/system_2.xml       |   0
 .../Model/_files/system_config_options_1.xml  |   0
 .../Model/_files/system_config_options_2.xml  |   0
 .../_files/system_unknown_attribute_1.xml     |   0
 .../_files/system_unknown_attribute_2.xml     |   0
 app/code/Magento/Config/composer.json         |   0
 app/code/Magento/Config/etc/acl.xml           |   0
 app/code/Magento/Config/etc/adminhtml/di.xml  |   0
 .../Magento/Config/etc/adminhtml/events.xml   |   0
 .../Magento/Config/etc/adminhtml/menu.xml     |   0
 .../Magento/Config/etc/adminhtml/routes.xml   |   0
 app/code/Magento/Config/etc/di.xml            |   0
 app/code/Magento/Config/etc/module.xml        |   0
 app/code/Magento/Config/etc/system.xsd        |   0
 app/code/Magento/Config/etc/system_file.xsd   |   0
 .../Magento/Config/etc/system_include.xsd     |   0
 app/code/Magento/Config/i18n/en_US.csv        |   0
 app/code/Magento/Config/registration.php      |   0
 .../layout/adminhtml_system_config_edit.xml   |   0
 .../page/system/config/robots/reset.phtml     |   0
 .../templates/system/config/edit.phtml        |   0
 .../system/config/form/field/array.phtml      |   0
 .../templates/system/config/js.phtml          |   0
 .../templates/system/config/switcher.phtml    |   0
 .../templates/system/config/tabs.phtml        |   0
 .../ConfigurableImportExport/LICENSE.txt      |   0
 .../ConfigurableImportExport/LICENSE_AFL.txt  |   0
 .../Export/Product/Type/Configurable.php      |   0
 .../Model/Export/RowCustomizer.php            |   0
 .../Import/Product/Type/Configurable.php      |   0
 .../Unit/Model/Export/RowCustomizerTest.php   |   0
 .../Import/Product/Type/ConfigurableTest.php  |   0
 .../ConfigurableImportExport/composer.json    |   0
 .../ConfigurableImportExport/etc/di.xml       |   0
 .../ConfigurableImportExport/etc/export.xml   |   0
 .../ConfigurableImportExport/etc/import.xml   |   0
 .../ConfigurableImportExport/etc/module.xml   |   0
 .../ConfigurableImportExport/i18n/en_US.csv   |   0
 .../ConfigurableImportExport/registration.php |   0
 ...ConfigurableProductManagementInterface.php |   0
 .../ConfigurableItemOptionValueInterface.php  |   0
 .../Api/Data/OptionInterface.php              |   0
 .../Api/Data/OptionValueInterface.php         |   0
 .../Api/LinkManagementInterface.php           |   0
 .../Api/OptionRepositoryInterface.php         |   0
 .../Block/Adminhtml/Order/Create/Sidebar.php  |   0
 .../Attribute/Edit/Tab/Variations/Main.php    |   0
 .../NewAttribute/Product/Created.php          |   0
 .../Composite/Fieldset/Configurable.php       |   0
 .../Product/Edit/AttributeSet/Form.php        |   0
 .../Adminhtml/Product/Edit/Button/Save.php    |   0
 .../Product/Edit/Tab/Variations/Config.php    |   0
 .../Edit/Tab/Variations/Config/Matrix.php     |   0
 .../Product/Steps/AttributeValues.php         |   0
 .../Block/Adminhtml/Product/Steps/Bulk.php    |   0
 .../Product/Steps/SelectAttributes.php        |   0
 .../Block/Adminhtml/Product/Steps/Summary.php |   0
 .../Block/Cart/Item/Renderer/Configurable.php |   0
 .../Block/Plugin/Product/Media/Gallery.php    |   0
 .../AssociatedSelector/Renderer/Id.php        |   0
 .../Configurable/AttributeSelector.php        |   0
 .../Block/Product/View/Type/Configurable.php  |   0
 .../Block/Stockqty/Type/Configurable.php      |   0
 .../Adminhtml/Product/AddAttribute.php        |   0
 .../Adminhtml/Product/Associated/Grid.php     |   0
 .../Product/Attribute/CreateOptions.php       |   0
 .../Product/Attribute/GetAttributes.php       |   0
 .../SuggestConfigurableAttributes.php         |   0
 .../Adminhtml/Product/Builder/Plugin.php      |   0
 .../Helper/Plugin/Configurable.php            |   0
 .../Helper/Plugin/UpdateConfigurations.php    |   0
 .../Controller/Adminhtml/Product/Wizard.php   |   0
 .../CustomerData/ConfigurableItem.php         |   0
 .../ConfigurableProduct/Helper/Data.php       |   0
 .../Helper/Product/Configuration/Plugin.php   |   0
 .../Helper/Product/Options/Factory.php        |   0
 .../Helper/Product/Options/Loader.php         |   0
 .../Magento/ConfigurableProduct/LICENSE.txt   |   0
 .../ConfigurableProduct/LICENSE_AFL.txt       |   0
 .../Model/Attribute/LockValidator.php         |   0
 .../Model/AttributeOptionProvider.php         |   0
 .../AttributeOptionProviderInterface.php      |   0
 .../Model/AttributesList.php                  |   0
 .../Model/AttributesListInterface.php         |   0
 .../Model/ConfigurableAttributeData.php       |   0
 .../Model/ConfigurableAttributeHandler.php    |   0
 .../Model/ConfigurableProductManagement.php   |   0
 .../Group/AttributeMapper/Plugin.php          |   0
 .../Model/LinkManagement.php                  |   0
 .../Model/OptionRepository.php                |   0
 .../Order/Admin/Item/Plugin/Configurable.php  |   0
 .../Model/Plugin/PriceBackend.php             |   0
 .../Model/Plugin/ProductRepositorySave.php    |   0
 .../Model/Product/Cache/Tag/Configurable.php  |   0
 .../CartConfiguration/Plugin/Configurable.php |   0
 .../Model/Product/ReadHandler.php             |   0
 .../Model/Product/SaveHandler.php             |   0
 .../Type/Collection/SalableProcessor.php      |   0
 .../Model/Product/Type/Configurable.php       |   0
 .../Product/Type/Configurable/Attribute.php   |   0
 .../Product/Type/Configurable/OptionValue.php |   0
 .../Model/Product/Type/Configurable/Price.php |   0
 .../Model/Product/Type/Plugin.php             |   0
 .../Model/Product/Type/VariationMatrix.php    |   0
 .../Plugin/Configurable.php                   |   0
 .../Model/Product/Validator/Plugin.php        |   0
 .../Model/Product/VariationHandler.php        |   0
 .../Model/ProductOptionProcessor.php          |   0
 .../Model/ProductVariationsBuilder.php        |   0
 .../Model/Quote/Item/CartItemProcessor.php    |   0
 .../Item/ConfigurableItemOptionValue.php      |   0
 .../Option/Plugin/ConfigurableProduct.php     |   0
 .../Attribute/OptionProvider.php              |   0
 .../Attribute/OptionSelectBuilder.php         |   0
 .../OptionSelectBuilderInterface.php          |   0
 .../Indexer/Stock/Configurable.php            |   0
 .../Product/Indexer/Price/Configurable.php    |   0
 .../Product/LinkedProductSelectBuilder.php    |   0
 .../StockStatusBaseSelectProcessor.php        |   0
 .../Product/Type/Configurable.php             |   0
 .../Product/Type/Configurable/Attribute.php   |   0
 .../Configurable/Attribute/Collection.php     |   0
 .../Type/Configurable/Product/Collection.php  |   0
 .../ResourceModel/Setup/PropertyMapper.php    |   0
 .../Model/SuggestedAttributeList.php          |   0
 .../HideUnsupportedAttributeTypes.php         |   0
 .../Pricing/Renderer/SalableResolver.php      |   0
 .../Attribute/Backend/AttributeValidation.php |   0
 .../Attribute/InStockOptionSelectBuilder.php  |   0
 .../Plugin/Model/ResourceModel/Product.php    |   0
 .../Price/ConfigurableOptionsProvider.php     |   0
 .../ConfigurableOptionsProviderInterface.php  |   0
 .../Price/ConfigurablePriceResolver.php       |   0
 .../Price/ConfigurableRegularPrice.php        |   0
 .../ConfigurableRegularPriceInterface.php     |   0
 .../Pricing/Price/FinalPrice.php              |   0
 .../Pricing/Price/FinalPriceResolver.php      |   0
 .../Price/LowestPriceOptionsProvider.php      |   0
 .../LowestPriceOptionsProviderInterface.php   |   0
 .../Pricing/Price/PriceResolverInterface.php  |   0
 .../Pricing/Price/RegularPriceResolver.php    |   0
 .../Pricing/Render/FinalPriceBox.php          |   0
 .../Pricing/Render/TierPriceBox.php           |   0
 .../Magento/ConfigurableProduct/README.md     |   0
 .../ConfigurableProduct/Setup/InstallData.php |   0
 .../Setup/InstallSchema.php                   |   0
 .../ConfigurableProduct/Setup/Recurring.php   |   0
 .../ConfigurableProduct/Setup/UpgradeData.php |   0
 .../Product/Edit/Button/SaveTest.php          |   0
 .../Edit/Tab/Variations/Config/MatrixTest.php |   0
 .../Product/Steps/SelectAttributesTest.php    |   0
 .../Cart/Item/Renderer/ConfigurableTest.php   |   0
 .../Plugin/Product/Media/GalleryTest.php      |   0
 .../Configurable/AttributeSelectorTest.php    |   0
 .../Product/View/Type/ConfigurableTest.php    |   0
 .../Adminhtml/Product/AddAttributeTest.php    |   0
 .../SuggestConfigurableAttributesTest.php     |   0
 .../Adminhtml/Product/Builder/PluginTest.php  |   0
 .../Helper/Plugin/ConfigurableTest.php        |   0
 .../Plugin/UpdateConfigurationsTest.php       |   0
 .../Adminhtml/Product/WizardTest.php          |   0
 .../Test/Unit/Helper/DataTest.php             |   0
 .../Product/Configuration/PluginTest.php      |   0
 .../Helper/Product/Options/FactoryTest.php    |   0
 .../Helper/Product/Options/LoaderTest.php     |   0
 .../Model/Attribute/LockValidatorTest.php     |   0
 .../Model/AttributeOptionProviderTest.php     |   0
 .../Test/Unit/Model/AttributesListTest.php    |   0
 .../Model/ConfigurableAttributeDataTest.php   |   0
 .../ConfigurableProductManagementTest.php     |   0
 .../Group/AttributeMapper/PluginTest.php      |   0
 .../Test/Unit/Model/LinkManagementTest.php    |   0
 .../Test/Unit/Model/OptionRepositoryTest.php  |   0
 .../Admin/Item/Plugin/ConfigurableTest.php    |   0
 .../Unit/Model/Plugin/PriceBackendTest.php    |   0
 .../Plugin/ProductRepositorySaveTest.php      |   0
 .../Product/Cache/Tag/ConfigurableTest.php    |   0
 .../Plugin/ConfigurableTest.php               |   0
 .../Product/ProductExtensionAttributes.php    |   0
 .../ProductOptionExtensionAttributes.php      |   0
 .../Unit/Model/Product/ReadHandlerTest.php    |   0
 .../Unit/Model/Product/SaveHandlerTest.php    |   0
 .../Type/Collection/SalableProcessorTest.php  |   0
 .../Product/Type/Configurable/PriceTest.php   |   0
 .../Model/Product/Type/ConfigurableTest.php   |   0
 .../Unit/Model/Product/Type/PluginTest.php    |   0
 .../Product/Type/VariationMatrixTest.php      |   0
 .../Plugin/ConfigurableTest.php               |   0
 .../Model/Product/Validator/PluginTest.php    |   0
 .../Model/Product/VariationHandlerTest.php    |   0
 .../Unit/Model/ProductOptionProcessorTest.php |   0
 .../Model/ProductVariationsBuilderTest.php    |   0
 .../Quote/Item/CartItemProcessorTest.php      |   0
 .../Option/Plugin/ConfigurableProductTest.php |   0
 .../Attribute/OptionProviderTest.php          |   0
 .../Attribute/OptionSelectBuilderTest.php     |   0
 .../LinkedProductSelectBuilderTest.php        |   0
 .../StockStatusBaseSelectProcessorTest.php    |   0
 .../Type/Configurable/AttributeTest.php       |   0
 .../Product/Type/ConfigurableTest.php         |   0
 .../Unit/Model/SuggestedAttributeListTest.php |   0
 .../HideUnsupportedAttributeTypesTest.php     |   0
 .../InStockOptionSelectBuilderTest.php        |   0
 .../Model/ResourceModel/ProductTest.php       |   0
 .../Price/ConfigurablePriceResolverTest.php   |   0
 .../Price/LowestPriceOptionsProviderTest.php  |   0
 .../Unit/Pricing/Render/FinalPriceBoxTest.php |   0
 .../Columns/AttributesTest.php                |   0
 .../AssociatedProduct/Columns/NameTest.php    |   0
 .../AssociatedProduct/Columns/PriceTest.php   |   0
 .../Product/Form/Modifier/CompositeTest.php   |   0
 .../ConfigurableAttributeSetHandlerTest.php   |   0
 .../Form/Modifier/ConfigurablePanelTest.php   |   0
 .../Form/Modifier/ConfigurablePriceTest.php   |   0
 .../Form/Modifier/ConfigurableQtyTest.php     |   0
 .../Form/Modifier/CustomOptionsTest.php       |   0
 .../Product/Form/Modifier/StockDataTest.php   |   0
 .../Attribute/Repository.php                  |   0
 .../Listing/AssociatedProduct/Columns.php     |   0
 .../AssociatedProduct/Columns/Attributes.php  |   0
 .../AssociatedProduct/Columns/Name.php        |   0
 .../AssociatedProduct/Columns/Price.php       |   0
 .../Listing/AssociatedProduct/Filters.php     |   0
 .../Ui/DataProvider/Attributes.php            |   0
 .../Product/Form/Modifier/Composite.php       |   0
 .../ConfigurableAttributeSetHandler.php       |   0
 .../Form/Modifier/ConfigurablePanel.php       |   0
 .../Form/Modifier/ConfigurablePrice.php       |   0
 .../Product/Form/Modifier/ConfigurableQty.php |   0
 .../Product/Form/Modifier/CustomOptions.php   |   0
 .../Form/Modifier/Data/AssociatedProducts.php |   0
 .../Product/Form/Modifier/StockData.php       |   0
 .../Magento/ConfigurableProduct/composer.json |   0
 .../ConfigurableProduct/etc/adminhtml/di.xml  |   0
 .../etc/adminhtml/events.xml                  |   0
 .../etc/adminhtml/routes.xml                  |   0
 .../etc/adminhtml/system.xml                  |   0
 .../ConfigurableProduct/etc/config.xml        |   0
 .../Magento/ConfigurableProduct/etc/di.xml    |   0
 .../etc/extension_attributes.xml              |   0
 .../ConfigurableProduct/etc/frontend/di.xml   |   0
 .../ConfigurableProduct/etc/module.xml        |   0
 .../ConfigurableProduct/etc/product_types.xml |   0
 .../Magento/ConfigurableProduct/etc/sales.xml |   0
 .../ConfigurableProduct/etc/webapi.xml        |   0
 .../ConfigurableProduct/i18n/en_US.csv        |   0
 .../ConfigurableProduct/registration.php      |   0
 .../layout/catalog_product_addattribute.xml   |   0
 .../catalog_product_associated_grid.xml       |   0
 .../layout/catalog_product_configurable.xml   |   0
 .../layout/catalog_product_downloadable.xml   |   0
 .../adminhtml/layout/catalog_product_new.xml  |   0
 .../layout/catalog_product_set_edit.xml       |   0
 .../layout/catalog_product_simple.xml         |   0
 ...catalog_product_view_type_configurable.xml |   0
 .../layout/catalog_product_virtual.xml        |   0
 .../layout/catalog_product_wizard.xml         |   0
 .../product/attribute/new/created.phtml       |   0
 .../catalog/product/attribute/set/js.phtml    |   0
 .../composite/fieldset/configurable.phtml     |   0
 .../attribute/steps/attributes_values.phtml   |   0
 .../product/edit/attribute/steps/bulk.phtml   |   0
 .../attribute/steps/select_attributes.phtml   |   0
 .../edit/attribute/steps/summary.phtml        |   0
 .../catalog/product/edit/super/config.phtml   |   0
 .../catalog/product/edit/super/matrix.phtml   |   0
 .../product/edit/super/wizard-ajax.phtml      |   0
 .../catalog/product/edit/super/wizard.phtml   |   0
 .../form.phtml                                |   0
 .../affected-attribute-set-selector/js.phtml  |   0
 .../configurable/attribute-selector/js.phtml  |   0
 .../product/configurable/stock/disabler.phtml |   0
 ...onfigurable_associated_product_listing.xml |   0
 .../product_attributes_listing.xml            |   0
 .../adminhtml/ui_component/product_form.xml   |   0
 .../web/css/configurable-product.css          |   0
 .../associated-product-insert-listing.js      |   0
 .../container-configurable-handler.js         |   0
 .../components/custom-options-price-type.js   |   0
 .../js/components/custom-options-warning.js   |   0
 .../components/dynamic-rows-configurable.js   |   0
 .../web/js/components/file-uploader.js        |   0
 .../web/js/components/modal-configurable.js   |   0
 .../web/js/components/price-configurable.js   |   0
 .../web/js/configurable-type-handler.js       |   0
 .../view/adminhtml/web/js/configurable.js     |   0
 .../web/js/options/price-type-handler.js      |   0
 .../web/js/variations/paging/sizes.js         |   0
 .../web/js/variations/product-grid.js         |   0
 .../js/variations/steps/attributes_values.js  |   0
 .../adminhtml/web/js/variations/steps/bulk.js |   0
 .../js/variations/steps/select_attributes.js  |   0
 .../web/js/variations/steps/summary.js        |   0
 .../adminhtml/web/js/variations/variations.js |   0
 .../view/adminhtml/web/product/product.css    |   0
 .../web/template/components/actions-list.html |   0
 .../web/template/components/cell-html.html    |   0
 .../web/template/components/cell-status.html  |   0
 .../template/components/file-uploader.html    |   0
 .../variations/steps/summary-grid.html        |   0
 .../base/layout/catalog_product_prices.xml    |   0
 .../templates/product/price/final_price.phtml |   0
 .../templates/product/price/tier_price.phtml  |   0
 ...catalog_product_view_type_configurable.xml |   0
 ...ckout_cart_configure_type_configurable.xml |   0
 .../layout/checkout_cart_item_renderers.xml   |   0
 ...checkout_onepage_review_item_renderers.xml |   0
 .../view/frontend/requirejs-config.js         |   0
 .../frontend/templates/js/components.phtml    |   0
 .../view/type/options/configurable.phtml      |   0
 .../ui_component/widget_recently_compared.xml |   0
 .../ui_component/widget_recently_viewed.xml   |   0
 .../web/js/configurable-customer-data.js      |   0
 .../view/frontend/web/js/configurable.js      |   0
 .../view/frontend/web/js/options-updater.js   |   0
 .../web/template/product/minimal_price.html   |   0
 .../ConfigurableProductSales/LICENSE.txt      |   0
 .../ConfigurableProductSales/LICENSE_AFL.txt  |   0
 .../OrderedProductAvailabilityChecker.php     |   0
 .../ConfigurableProductSales/README.md        |   0
 .../ConfigurableProductSales/composer.json    |   0
 .../ConfigurableProductSales/etc/di.xml       |   0
 .../ConfigurableProductSales/etc/module.xml   |   0
 .../ConfigurableProductSales/registration.php |   0
 .../Magento/Contact/Block/ContactForm.php     |   0
 app/code/Magento/Contact/Controller/Index.php |   0
 .../Contact/Controller/Index/Index.php        |   0
 .../Magento/Contact/Controller/Index/Post.php |   0
 app/code/Magento/Contact/Helper/Data.php      |   0
 app/code/Magento/Contact/LICENSE.txt          |   0
 app/code/Magento/Contact/LICENSE_AFL.txt      |   0
 app/code/Magento/Contact/Model/Config.php     |   0
 .../Magento/Contact/Model/ConfigInterface.php |   0
 app/code/Magento/Contact/Model/Mail.php       |   0
 .../Magento/Contact/Model/MailInterface.php   |   0
 .../Model/System/Config/Backend/Links.php     |   0
 app/code/Magento/Contact/README.md            |   0
 .../Test/Unit/Block/ContactFormTest.php       |   0
 .../Test/Unit/Controller/Index/IndexTest.php  |   0
 .../Test/Unit/Controller/Index/PostTest.php   |   0
 .../Test/Unit/Controller/IndexTest.php        |   0
 .../Test/Unit/Controller/Stub/IndexStub.php   |   0
 .../Contact/Test/Unit/Helper/DataTest.php     |   0
 .../Contact/Test/Unit/Model/MailTest.php      |   0
 .../Model/System/Config/Backend/LinksTest.php |   0
 app/code/Magento/Contact/composer.json        |   0
 app/code/Magento/Contact/etc/acl.xml          |   0
 .../Magento/Contact/etc/adminhtml/system.xml  |   0
 app/code/Magento/Contact/etc/config.xml       |   0
 app/code/Magento/Contact/etc/di.xml           |   0
 .../Magento/Contact/etc/email_templates.xml   |   0
 app/code/Magento/Contact/etc/frontend/di.xml  |   0
 .../Contact/etc/frontend/page_types.xml       |   0
 .../Magento/Contact/etc/frontend/routes.xml   |   0
 app/code/Magento/Contact/etc/module.xml       |   0
 app/code/Magento/Contact/i18n/en_US.csv       |   0
 app/code/Magento/Contact/registration.php     |   0
 .../view/frontend/email/submitted_form.html   |   0
 .../frontend/layout/contact_index_index.xml   |   0
 .../Contact/view/frontend/layout/default.xml  |   0
 .../view/frontend/templates/form.phtml        |   0
 .../Magento/Cookie/Block/Html/Notices.php     |   0
 .../Magento/Cookie/Block/RequireCookie.php    |   0
 .../Cookie/Controller/Index/NoCookies.php     |   0
 app/code/Magento/Cookie/Helper/Cookie.php     |   0
 app/code/Magento/Cookie/LICENSE.txt           |   0
 app/code/Magento/Cookie/LICENSE_AFL.txt       |   0
 .../Cookie/Model/Config/Backend/Cookie.php    |   0
 .../Cookie/Model/Config/Backend/Domain.php    |   0
 .../Cookie/Model/Config/Backend/Lifetime.php  |   0
 .../Cookie/Model/Config/Backend/Path.php      |   0
 app/code/Magento/Cookie/README.md             |   0
 .../Unit/Controller/Index/NoCookiesTest.php   |   0
 .../Cookie/Test/Unit/Helper/CookieTest.php    |   0
 .../Unit/Model/Config/Backend/DomainTest.php  |   0
 .../Model/Config/Backend/LifetimeTest.php     |   0
 .../Unit/Model/Config/Backend/PathTest.php    |   0
 app/code/Magento/Cookie/composer.json         |   0
 .../Magento/Cookie/etc/adminhtml/system.xml   |   0
 app/code/Magento/Cookie/etc/config.xml        |   0
 app/code/Magento/Cookie/etc/di.xml            |   0
 .../Magento/Cookie/etc/frontend/routes.xml    |   0
 app/code/Magento/Cookie/etc/module.xml        |   0
 app/code/Magento/Cookie/i18n/en_US.csv        |   0
 app/code/Magento/Cookie/registration.php      |   0
 .../Cookie/view/frontend/layout/default.xml   |   0
 .../Cookie/view/frontend/requirejs-config.js  |   0
 .../frontend/templates/html/notices.phtml     |   0
 .../frontend/templates/require_cookie.phtml   |   0
 .../Cookie/view/frontend/web/js/notices.js    |   0
 .../view/frontend/web/js/require-cookie.js    |   0
 .../Cron/Console/Command/CronCommand.php      |   0
 .../Console/Command/CronInstallCommand.php    |   0
 .../Console/Command/CronRemoveCommand.php     |   0
 app/code/Magento/Cron/LICENSE.txt             |   0
 app/code/Magento/Cron/LICENSE_AFL.txt         |   0
 .../Backend/Config/Structure/Converter.php    |   0
 app/code/Magento/Cron/Model/Config.php        |   0
 .../Model/Config/Backend/Product/Alert.php    |   0
 .../Cron/Model/Config/Backend/Sitemap.php     |   0
 .../Cron/Model/Config/Converter/Db.php        |   0
 .../Cron/Model/Config/Converter/Xml.php       |   0
 app/code/Magento/Cron/Model/Config/Data.php   |   0
 .../Magento/Cron/Model/Config/Reader/Db.php   |   0
 .../Magento/Cron/Model/Config/Reader/Xml.php  |   0
 .../Cron/Model/Config/SchemaLocator.php       |   0
 .../Cron/Model/Config/Source/Frequency.php    |   0
 .../Magento/Cron/Model/ConfigInterface.php    |   0
 .../Model/Groups/Config/Converter/Xml.php     |   0
 .../Magento/Cron/Model/Groups/Config/Data.php |   0
 .../Cron/Model/Groups/Config/Reader/Xml.php   |   0
 .../Model/Groups/Config/SchemaLocator.php     |   0
 .../Cron/Model/ResourceModel/Schedule.php     |   0
 .../ResourceModel/Schedule/Collection.php     |   0
 app/code/Magento/Cron/Model/Schedule.php      |   0
 .../Model/System/Config/Initial/Converter.php |   0
 .../Observer/ProcessCronQueueObserver.php     |   0
 app/code/Magento/Cron/README.md               |   0
 app/code/Magento/Cron/Setup/InstallSchema.php |   0
 app/code/Magento/Cron/Setup/Recurring.php     |   0
 .../Unit/Console/Command/CronCommandTest.php  |   0
 .../Command/CronInstallCommandTest.php        |   0
 .../Console/Command/CronRemoveCommandTest.php |   0
 .../Unit/Model/Config/Converter/DbTest.php    |   0
 .../Unit/Model/Config/Converter/XmlTest.php   |   0
 .../Cron/Test/Unit/Model/Config/DataTest.php  |   0
 .../Test/Unit/Model/Config/Reader/DbTest.php  |   0
 .../Test/Unit/Model/Config/Reader/XmlTest.php |   0
 .../Unit/Model/Config/SchemaLocatorTest.php   |   0
 .../Cron/Test/Unit/Model/Config/XsdTest.php   |   0
 .../Model/Config/_files/crontab_invalid.xml   |   0
 .../_files/crontab_invalid_duplicates.xml     |   0
 .../_files/crontab_invalid_node_typo.xml      |   0
 .../crontab_invalid_without_instance.xml      |   0
 .../_files/crontab_invalid_without_method.xml |   0
 .../_files/crontab_invalid_without_name.xml   |   0
 .../Model/Config/_files/crontab_valid.xml     |   0
 .../_files/crontab_valid_without_schedule.xml |   0
 .../Cron/Test/Unit/Model/ConfigTest.php       |   0
 .../Cron/Test/Unit/Model/CronJobException.php |   0
 .../Model/Groups/Config/Converter/XmlTest.php |   0
 .../Cron/Test/Unit/Model/ScheduleTest.php     |   0
 .../Observer/ProcessCronQueueObserverTest.php |   0
 app/code/Magento/Cron/composer.json           |   0
 .../Magento/Cron/etc/adminhtml/system.xml     |   0
 app/code/Magento/Cron/etc/cron_groups.xml     |   0
 app/code/Magento/Cron/etc/cron_groups.xsd     |   0
 app/code/Magento/Cron/etc/crontab.xsd         |   0
 app/code/Magento/Cron/etc/crontab/events.xml  |   0
 app/code/Magento/Cron/etc/di.xml              |   0
 app/code/Magento/Cron/etc/module.xml          |   0
 app/code/Magento/Cron/i18n/en_US.csv          |   0
 app/code/Magento/Cron/registration.php        |   0
 .../Block/Adminhtml/System/Currency.php       |   0
 .../Adminhtml/System/Currency/Rate/Matrix.php |   0
 .../System/Currency/Rate/Services.php         |   0
 .../Block/Adminhtml/System/Currencysymbol.php |   0
 .../Controller/Adminhtml/System/Currency.php  |   0
 .../Adminhtml/System/Currency/FetchRates.php  |   0
 .../Adminhtml/System/Currency/Index.php       |   0
 .../Adminhtml/System/Currency/SaveRates.php   |   0
 .../Adminhtml/System/Currencysymbol.php       |   0
 .../Adminhtml/System/Currencysymbol/Index.php |   0
 .../Adminhtml/System/Currencysymbol/Save.php  |   0
 app/code/Magento/CurrencySymbol/LICENSE.txt   |   0
 .../Magento/CurrencySymbol/LICENSE_AFL.txt    |   0
 .../Model/System/Currencysymbol.php           |   0
 .../Observer/CurrencyDisplayOptions.php       |   0
 app/code/Magento/CurrencySymbol/README.md     |   0
 .../CurrencySymbol/Setup/UpgradeData.php      |   0
 .../System/Currency/Rate/MatrixTest.php       |   0
 .../System/Currency/Rate/ServicesTest.php     |   0
 .../Block/Adminhtml/System/CurrencyTest.php   |   0
 .../Adminhtml/System/CurrencysymbolTest.php   |   0
 .../System/Currencysymbol/IndexTest.php       |   0
 .../System/Currencysymbol/SaveTest.php        |   0
 .../Unit/Model/System/CurrencysymbolTest.php  |   0
 .../Observer/CurrencyDisplayOptionsTest.php   |   0
 app/code/Magento/CurrencySymbol/composer.json |   0
 app/code/Magento/CurrencySymbol/etc/acl.xml   |   0
 .../CurrencySymbol/etc/adminhtml/menu.xml     |   0
 .../CurrencySymbol/etc/adminhtml/routes.xml   |   0
 app/code/Magento/CurrencySymbol/etc/di.xml    |   0
 .../Magento/CurrencySymbol/etc/events.xml     |   0
 .../Magento/CurrencySymbol/etc/module.xml     |   0
 .../Magento/CurrencySymbol/i18n/en_US.csv     |   0
 .../Magento/CurrencySymbol/registration.php   |   0
 .../adminhtml_system_currency_index.xml       |   0
 .../adminhtml_system_currencysymbol_index.xml |   0
 .../view/adminhtml/templates/grid.phtml       |   0
 .../system/currency/rate/matrix.phtml         |   0
 .../system/currency/rate/services.phtml       |   0
 .../templates/system/currency/rates.phtml     |   0
 .../Api/AccountManagementInterface.php        |   0
 .../Customer/Api/AddressMetadataInterface.php |   0
 .../AddressMetadataManagementInterface.php    |   0
 .../Api/AddressRepositoryInterface.php        |   0
 .../Api/CustomerGroupConfigInterface.php      |   0
 .../Api/CustomerManagementInterface.php       |   0
 .../Api/CustomerMetadataInterface.php         |   0
 .../CustomerMetadataManagementInterface.php   |   0
 .../Api/CustomerNameGenerationInterface.php   |   0
 .../Api/CustomerRepositoryInterface.php       |   0
 .../Customer/Api/Data/AddressInterface.php    |   0
 .../Data/AddressSearchResultsInterface.php    |   0
 .../Api/Data/AttributeMetadataInterface.php   |   0
 .../Customer/Api/Data/CustomerInterface.php   |   0
 .../Data/CustomerSearchResultsInterface.php   |   0
 .../Customer/Api/Data/GroupInterface.php      |   0
 .../Api/Data/GroupSearchResultsInterface.php  |   0
 .../Customer/Api/Data/OptionInterface.php     |   0
 .../Customer/Api/Data/RegionInterface.php     |   0
 .../Api/Data/ValidationResultsInterface.php   |   0
 .../Api/Data/ValidationRuleInterface.php      |   0
 .../Customer/Api/GroupManagementInterface.php |   0
 .../Customer/Api/GroupRepositoryInterface.php |   0
 .../Customer/Api/MetadataInterface.php        |   0
 .../Api/MetadataManagementInterface.php       |   0
 .../Block/Account/AuthenticationPopup.php     |   0
 .../Block/Account/AuthorizationLink.php       |   0
 .../Customer/Block/Account/Customer.php       |   0
 .../Customer/Block/Account/Dashboard.php      |   0
 .../Block/Account/Dashboard/Address.php       |   0
 .../Customer/Block/Account/Dashboard/Info.php |   0
 .../Customer/Block/Account/Delimiter.php      |   0
 .../Customer/Block/Account/Forgotpassword.php |   0
 .../Magento/Customer/Block/Account/Link.php   |   0
 .../Customer/Block/Account/Navigation.php     |   0
 .../Customer/Block/Account/RegisterLink.php   |   0
 .../Customer/Block/Account/Resetpassword.php  |   0
 .../Customer/Block/Account/SortLink.php       |   0
 .../Block/Account/SortLinkInterface.php       |   0
 .../Magento/Customer/Block/Address/Book.php   |   0
 .../Magento/Customer/Block/Address/Edit.php   |   0
 .../Address/Renderer/DefaultRenderer.php      |   0
 .../Address/Renderer/RendererInterface.php    |   0
 .../Magento/Customer/Block/Adminhtml/Edit.php |   0
 .../Block/Adminhtml/Edit/BackButton.php       |   0
 .../Block/Adminhtml/Edit/DeleteButton.php     |   0
 .../Customer/Block/Adminhtml/Edit/Form.php    |   0
 .../Block/Adminhtml/Edit/GenericButton.php    |   0
 .../Adminhtml/Edit/InvalidateTokenButton.php  |   0
 .../Block/Adminhtml/Edit/OrderButton.php      |   0
 .../Block/Adminhtml/Edit/Renderer/Region.php  |   0
 .../Block/Adminhtml/Edit/ResetButton.php      |   0
 .../Adminhtml/Edit/ResetPasswordButton.php    |   0
 .../Adminhtml/Edit/SaveAndContinueButton.php  |   0
 .../Block/Adminhtml/Edit/SaveButton.php       |   0
 .../Block/Adminhtml/Edit/Tab/Cart.php         |   0
 .../Block/Adminhtml/Edit/Tab/Carts.php        |   0
 .../Adminhtml/Edit/Tab/GenericMetadata.php    |   0
 .../Block/Adminhtml/Edit/Tab/Newsletter.php   |   0
 .../Adminhtml/Edit/Tab/Newsletter/Grid.php    |   0
 .../Tab/Newsletter/Grid/Filter/Status.php     |   0
 .../Tab/Newsletter/Grid/Renderer/Action.php   |   0
 .../Tab/Newsletter/Grid/Renderer/Status.php   |   0
 .../Block/Adminhtml/Edit/Tab/Orders.php       |   0
 .../Block/Adminhtml/Edit/Tab/Reviews.php      |   0
 .../Block/Adminhtml/Edit/Tab/View.php         |   0
 .../Block/Adminhtml/Edit/Tab/View/Cart.php    |   0
 .../Edit/Tab/View/Grid/Renderer/Item.php      |   0
 .../Adminhtml/Edit/Tab/View/PersonalInfo.php  |   0
 .../Block/Adminhtml/Edit/Tab/View/Sales.php   |   0
 .../Adminhtml/Edit/Tab/View/Wishlist.php      |   0
 .../Wishlist/Grid/Renderer/Description.php    |   0
 .../Block/Adminhtml/Edit/UnlockButton.php     |   0
 .../Block/Adminhtml/Form/Element/Boolean.php  |   0
 .../Block/Adminhtml/Form/Element/File.php     |   0
 .../Block/Adminhtml/Form/Element/Image.php    |   0
 .../Block/Adminhtml/Grid/Filter/Country.php   |   0
 .../Adminhtml/Grid/Renderer/Multiaction.php   |   0
 .../Customer/Block/Adminhtml/Group.php        |   0
 .../Customer/Block/Adminhtml/Group/Edit.php   |   0
 .../Block/Adminhtml/Group/Edit/Form.php       |   0
 .../Sales/Order/Address/Form/Renderer/Vat.php |   0
 .../Adminhtml/System/Config/Validatevat.php   |   0
 .../Magento/Customer/Block/CustomerData.php   |   0
 .../Customer/Block/CustomerScopeData.php      |   0
 app/code/Magento/Customer/Block/Form/Edit.php |   0
 .../Magento/Customer/Block/Form/Login.php     |   0
 .../Customer/Block/Form/Login/Info.php        |   0
 .../Magento/Customer/Block/Form/Register.php  |   0
 .../Magento/Customer/Block/Newsletter.php     |   0
 .../Magento/Customer/Block/SectionConfig.php  |   0
 .../Customer/Block/Widget/AbstractWidget.php  |   0
 .../Magento/Customer/Block/Widget/Company.php |   0
 .../Magento/Customer/Block/Widget/Dob.php     |   0
 .../Magento/Customer/Block/Widget/Fax.php     |   0
 .../Magento/Customer/Block/Widget/Gender.php  |   0
 .../Magento/Customer/Block/Widget/Name.php    |   0
 .../Magento/Customer/Block/Widget/Taxvat.php  |   0
 .../Customer/Block/Widget/Telephone.php       |   0
 .../Command/UpgradeHashAlgorithmCommand.php   |   0
 .../Customer/Controller/AbstractAccount.php   |   0
 .../Customer/Controller/Account/Confirm.php   |   0
 .../Controller/Account/Confirmation.php       |   0
 .../Customer/Controller/Account/Create.php    |   0
 .../Controller/Account/CreatePassword.php     |   0
 .../Controller/Account/CreatePost.php         |   0
 .../Customer/Controller/Account/Edit.php      |   0
 .../Customer/Controller/Account/EditPost.php  |   0
 .../Controller/Account/ForgotPassword.php     |   0
 .../Controller/Account/ForgotPasswordPost.php |   0
 .../Customer/Controller/Account/Index.php     |   0
 .../Customer/Controller/Account/Login.php     |   0
 .../Customer/Controller/Account/LoginPost.php |   0
 .../Customer/Controller/Account/Logout.php    |   0
 .../Controller/Account/LogoutSuccess.php      |   0
 .../Controller/Account/ResetPasswordPost.php  |   0
 .../Customer/Controller/AccountInterface.php  |   0
 .../Magento/Customer/Controller/Address.php   |   0
 .../Customer/Controller/Address/Delete.php    |   0
 .../Customer/Controller/Address/Edit.php      |   0
 .../Customer/Controller/Address/Form.php      |   0
 .../Customer/Controller/Address/FormPost.php  |   0
 .../Customer/Controller/Address/Index.php     |   0
 .../Customer/Controller/Address/NewAction.php |   0
 .../Adminhtml/Cart/Product/Composite/Cart.php |   0
 .../Cart/Product/Composite/Cart/Configure.php |   0
 .../Cart/Product/Composite/Cart/Update.php    |   0
 .../Adminhtml/Customer/InvalidateToken.php    |   0
 .../Adminhtml/File/Address/Upload.php         |   0
 .../Adminhtml/File/Customer/Upload.php        |   0
 .../Customer/Controller/Adminhtml/Group.php   |   0
 .../Controller/Adminhtml/Group/Delete.php     |   0
 .../Controller/Adminhtml/Group/Edit.php       |   0
 .../Controller/Adminhtml/Group/Index.php      |   0
 .../Controller/Adminhtml/Group/NewAction.php  |   0
 .../Controller/Adminhtml/Group/Save.php       |   0
 .../Customer/Controller/Adminhtml/Index.php   |   0
 .../Adminhtml/Index/AbstractMassAction.php    |   0
 .../Controller/Adminhtml/Index/Cart.php       |   0
 .../Controller/Adminhtml/Index/Carts.php      |   0
 .../Controller/Adminhtml/Index/Delete.php     |   0
 .../Controller/Adminhtml/Index/Edit.php       |   0
 .../Controller/Adminhtml/Index/Index.php      |   0
 .../Controller/Adminhtml/Index/InlineEdit.php |   0
 .../Controller/Adminhtml/Index/LastOrders.php |   0
 .../Adminhtml/Index/MassAssignGroup.php       |   0
 .../Controller/Adminhtml/Index/MassDelete.php |   0
 .../Adminhtml/Index/MassSubscribe.php         |   0
 .../Adminhtml/Index/MassUnsubscribe.php       |   0
 .../Controller/Adminhtml/Index/NewAction.php  |   0
 .../Controller/Adminhtml/Index/Newsletter.php |   0
 .../Controller/Adminhtml/Index/Orders.php     |   0
 .../Adminhtml/Index/ProductReviews.php        |   0
 .../Adminhtml/Index/ResetPassword.php         |   0
 .../Controller/Adminhtml/Index/Save.php       |   0
 .../Controller/Adminhtml/Index/Validate.php   |   0
 .../Controller/Adminhtml/Index/ViewCart.php   |   0
 .../Adminhtml/Index/ViewWishlist.php          |   0
 .../Controller/Adminhtml/Index/Viewfile.php   |   0
 .../Controller/Adminhtml/Index/Wishlist.php   |   0
 .../Controller/Adminhtml/Locks/Unlock.php     |   0
 .../Controller/Adminhtml/Online/Index.php     |   0
 .../Adminhtml/System/Config/Validatevat.php   |   0
 .../System/Config/Validatevat/Validate.php    |   0
 .../Config/Validatevat/ValidateAdvanced.php   |   0
 .../Wishlist/Product/Composite/Wishlist.php   |   0
 .../Product/Composite/Wishlist/Configure.php  |   0
 .../Product/Composite/Wishlist/Update.php     |   0
 .../Customer/Controller/Ajax/Login.php        |   0
 .../Customer/Controller/Ajax/Logout.php       |   0
 .../Customer/Controller/Plugin/Account.php    |   0
 .../Customer/Controller/RegistryConstants.php |   0
 .../Magento/Customer/Controller/Review.php    |   0
 .../Customer/Controller/Review/Index.php      |   0
 .../Customer/Controller/Review/View.php       |   0
 .../Customer/Controller/Section/Load.php      |   0
 .../Customer/CustomerData/Customer.php        |   0
 .../JsLayoutDataProviderInterface.php         |   0
 .../CustomerData/JsLayoutDataProviderPool.php |   0
 .../JsLayoutDataProviderPoolInterface.php     |   0
 .../CustomerData/Plugin/SessionChecker.php    |   0
 .../Customer/CustomerData/SchemaLocator.php   |   0
 .../CustomerData/Section/Identifier.php       |   0
 .../CustomerData/SectionConfigConverter.php   |   0
 .../Customer/CustomerData/SectionPool.php     |   0
 .../CustomerData/SectionPoolInterface.php     |   0
 .../CustomerData/SectionSourceInterface.php   |   0
 app/code/Magento/Customer/Helper/Address.php  |   0
 .../Helper/Session/CurrentCustomer.php        |   0
 .../Helper/Session/CurrentCustomerAddress.php |   0
 app/code/Magento/Customer/Helper/View.php     |   0
 app/code/Magento/Customer/LICENSE.txt         |   0
 app/code/Magento/Customer/LICENSE_AFL.txt     |   0
 .../Customer/Model/Account/Redirect.php       |   0
 .../Customer/Model/AccountConfirmation.php    |   0
 .../Customer/Model/AccountManagement.php      |   0
 app/code/Magento/Customer/Model/Address.php   |   0
 .../Model/Address/AbstractAddress.php         |   0
 .../Model/Address/AddressModelInterface.php   |   0
 .../Magento/Customer/Model/Address/Config.php |   0
 .../Model/Address/Config/Converter.php        |   0
 .../Customer/Model/Address/Config/Reader.php  |   0
 .../Model/Address/Config/SchemaLocator.php    |   0
 .../Model/Address/CustomAttributeList.php     |   0
 .../Address/CustomAttributeListInterface.php  |   0
 .../Magento/Customer/Model/Address/Form.php   |   0
 .../Magento/Customer/Model/Address/Mapper.php |   0
 .../Model/Address/Validator/Postcode.php      |   0
 .../Customer/Model/AddressRegistry.php        |   0
 .../Model/App/Action/ContextPlugin.php        |   0
 app/code/Magento/Customer/Model/Attribute.php |   0
 .../Model/Attribute/Backend/Data/Boolean.php  |   0
 .../Model/Attribute/Data/AbstractData.php     |   0
 .../Customer/Model/Attribute/Data/Boolean.php |   0
 .../Customer/Model/Attribute/Data/Date.php    |   0
 .../Customer/Model/Attribute/Data/File.php    |   0
 .../Customer/Model/Attribute/Data/Hidden.php  |   0
 .../Customer/Model/Attribute/Data/Image.php   |   0
 .../Model/Attribute/Data/Multiline.php        |   0
 .../Model/Attribute/Data/Multiselect.php      |   0
 .../Model/Attribute/Data/Postcode.php         |   0
 .../Customer/Model/Attribute/Data/Select.php  |   0
 .../Customer/Model/Attribute/Data/Text.php    |   0
 .../Model/Attribute/Data/Textarea.php         |   0
 .../Customer/Model/AttributeChecker.php       |   0
 .../Model/AttributeMetadataConverter.php      |   0
 .../Model/AttributeMetadataDataProvider.php   |   0
 .../Magento/Customer/Model/Authentication.php |   0
 .../Model/AuthenticationInterface.php         |   0
 .../CustomerSessionUserContext.php            |   0
 .../Customer/Model/Backend/Customer.php       |   0
 .../Model/Cache/Type/Notification.php         |   0
 .../Customer/Model/Cart/ConfigPlugin.php      |   0
 .../Model/Checkout/ConfigProvider.php         |   0
 .../Model/Config/Backend/Address/Street.php   |   0
 .../DisableAutoGroupAssignDefault.php         |   0
 .../Password/Link/Expirationperiod.php        |   0
 .../Model/Config/Backend/Show/Address.php     |   0
 .../Model/Config/Backend/Show/AddressOnly.php |   0
 .../Model/Config/Backend/Show/Customer.php    |   0
 .../Magento/Customer/Model/Config/Share.php   |   0
 .../Model/Config/Source/Address/Type.php      |   0
 .../Customer/Model/Config/Source/Group.php    |   0
 .../Model/Config/Source/Group/Multiselect.php |   0
 app/code/Magento/Customer/Model/Context.php   |   0
 app/code/Magento/Customer/Model/Customer.php  |   0
 .../Customer/Attribute/Backend/Billing.php    |   0
 .../Customer/Attribute/Backend/Password.php   |   0
 .../Customer/Attribute/Backend/Shipping.php   |   0
 .../Customer/Attribute/Backend/Store.php      |   0
 .../Customer/Attribute/Backend/Website.php    |   0
 .../Model/Customer/Attribute/Source/Group.php |   0
 .../GroupSourceLoggedInOnlyInterface.php      |   0
 .../Model/Customer/Attribute/Source/Store.php |   0
 .../Customer/Attribute/Source/Website.php     |   0
 .../Model/Customer/CredentialsValidator.php   |   0
 .../Customer/Model/Customer/DataProvider.php  |   0
 .../Customer/Model/Customer/Mapper.php        |   0
 .../Model/Customer/NotificationStorage.php    |   0
 .../Customer/Model/Customer/Source/Group.php  |   0
 .../Customer/Source/GroupSourceInterface.php  |   0
 .../Customer/Model/CustomerAuthUpdate.php     |   0
 .../Customer/Model/CustomerExtractor.php      |   0
 .../Customer/Model/CustomerGroupConfig.php    |   0
 .../Customer/Model/CustomerManagement.php     |   0
 .../Customer/Model/CustomerRegistry.php       |   0
 .../Magento/Customer/Model/Data/Address.php   |   0
 .../Customer/Model/Data/AttributeMetadata.php |   0
 .../Magento/Customer/Model/Data/Customer.php  |   0
 .../Customer/Model/Data/CustomerSecure.php    |   0
 .../Magento/Customer/Model/Data/Group.php     |   0
 .../Magento/Customer/Model/Data/Option.php    |   0
 .../Magento/Customer/Model/Data/Region.php    |   0
 .../Customer/Model/Data/ValidationResults.php |   0
 .../Customer/Model/Data/ValidationRule.php    |   0
 .../Customer/Model/EmailNotification.php      |   0
 .../Model/EmailNotificationInterface.php      |   0
 .../Magento/Customer/Model/FileProcessor.php  |   0
 .../Magento/Customer/Model/FileUploader.php   |   0
 app/code/Magento/Customer/Model/Form.php      |   0
 app/code/Magento/Customer/Model/Group.php     |   0
 .../Customer/Model/Group/Retriever.php        |   0
 .../Model/Group/RetrieverInterface.php        |   0
 .../Customer/Model/GroupManagement.php        |   0
 .../Magento/Customer/Model/GroupRegistry.php  |   0
 .../Indexer/Address/AttributeProvider.php     |   0
 .../Model/Indexer/Attribute/Filter.php        |   0
 .../Model/Indexer/AttributeProvider.php       |   0
 .../Magento/Customer/Model/Indexer/Source.php |   0
 .../Model/Layout/DepersonalizePlugin.php      |   0
 app/code/Magento/Customer/Model/Log.php       |   0
 app/code/Magento/Customer/Model/Logger.php    |   0
 .../Model/Metadata/AddressCachedMetadata.php  |   0
 .../Model/Metadata/AddressMetadata.php        |   0
 .../Metadata/AddressMetadataManagement.php    |   0
 .../Model/Metadata/AttributeMetadataCache.php |   0
 .../Metadata/AttributeMetadataHydrator.php    |   0
 .../Model/Metadata/AttributeResolver.php      |   0
 .../Model/Metadata/CachedMetadata.php         |   0
 .../Model/Metadata/CustomerCachedMetadata.php |   0
 .../Model/Metadata/CustomerMetadata.php       |   0
 .../Metadata/CustomerMetadataManagement.php   |   0
 .../Model/Metadata/ElementFactory.php         |   0
 .../Magento/Customer/Model/Metadata/Form.php  |   0
 .../Model/Metadata/Form/AbstractData.php      |   0
 .../Customer/Model/Metadata/Form/Boolean.php  |   0
 .../Customer/Model/Metadata/Form/Date.php     |   0
 .../Customer/Model/Metadata/Form/File.php     |   0
 .../Customer/Model/Metadata/Form/Hidden.php   |   0
 .../Customer/Model/Metadata/Form/Image.php    |   0
 .../Model/Metadata/Form/Multiline.php         |   0
 .../Model/Metadata/Form/Multiselect.php       |   0
 .../Customer/Model/Metadata/Form/Postcode.php |   0
 .../Customer/Model/Metadata/Form/Select.php   |   0
 .../Customer/Model/Metadata/Form/Text.php     |   0
 .../Customer/Model/Metadata/Form/Textarea.php |   0
 .../Customer/Model/Metadata/FormFactory.php   |   0
 .../Customer/Model/Metadata/Validator.php     |   0
 .../Magento/Customer/Model/Observer/Grid.php  |   0
 app/code/Magento/Customer/Model/Options.php   |   0
 .../Model/Plugin/AllowedCountries.php         |   0
 .../Model/Plugin/CustomerAuthorization.php    |   0
 .../Model/Plugin/CustomerFlushFormKey.php     |   0
 .../Model/Plugin/CustomerNotification.php     |   0
 .../CustomerRepository/TransactionWrapper.php |   0
 .../Magento/Customer/Model/Registration.php   |   0
 .../Customer/Model/Renderer/Region.php        |   0
 .../Customer/Model/ResourceModel/Address.php  |   0
 .../Address/Attribute/Backend/Region.php      |   0
 .../Address/Attribute/Collection.php          |   0
 .../Address/Attribute/Source/Country.php      |   0
 .../Attribute/Source/CountryWithWebsites.php  |   0
 .../Address/Attribute/Source/Region.php       |   0
 .../ResourceModel/Address/Collection.php      |   0
 .../ResourceModel/Address/DeleteRelation.php  |   0
 .../Model/ResourceModel/Address/Relation.php  |   0
 .../Model/ResourceModel/AddressRepository.php |   0
 .../Model/ResourceModel/Attribute.php         |   0
 .../ResourceModel/Attribute/Collection.php    |   0
 .../Customer/Model/ResourceModel/Customer.php |   0
 .../ResourceModel/Customer/Collection.php     |   0
 .../Model/ResourceModel/Customer/Grid.php     |   0
 .../Customer/Indexer/Collection.php           |   0
 .../Model/ResourceModel/Customer/Relation.php |   0
 .../ResourceModel/CustomerRepository.php      |   0
 .../Db/VersionControl/AddressSnapshot.php     |   0
 .../Model/ResourceModel/Form/Attribute.php    |   0
 .../Form/Attribute/Collection.php             |   0
 .../Model/ResourceModel/Grid/Collection.php   |   0
 .../Customer/Model/ResourceModel/Group.php    |   0
 .../Model/ResourceModel/Group/Collection.php  |   0
 .../ResourceModel/Group/Grid/Collection.php   |   0
 .../Group/Grid/ServiceCollection.php          |   0
 .../Model/ResourceModel/GroupRepository.php   |   0
 .../ResourceModel/Online/Grid/Collection.php  |   0
 .../ResourceModel/Setup/PropertyMapper.php    |   0
 .../Customer/Model/ResourceModel/Visitor.php  |   0
 .../ResourceModel/Visitor/Collection.php      |   0
 app/code/Magento/Customer/Model/Session.php   |   0
 .../Customer/Model/Session/Storage.php        |   0
 app/code/Magento/Customer/Model/Url.php       |   0
 app/code/Magento/Customer/Model/Vat.php       |   0
 app/code/Magento/Customer/Model/Visitor.php   |   0
 .../Observer/AfterAddressSaveObserver.php     |   0
 .../Observer/BeforeAddressSaveObserver.php    |   0
 .../Observer/CustomerLoginSuccessObserver.php |   0
 .../Observer/LogLastLoginAtObserver.php       |   0
 .../Observer/LogLastLogoutAtObserver.php      |   0
 .../UpgradeCustomerPasswordObserver.php       |   0
 .../Visitor/AbstractVisitorObserver.php       |   0
 .../Visitor/BindCustomerLoginObserver.php     |   0
 .../Visitor/BindCustomerLogoutObserver.php    |   0
 .../Visitor/BindQuoteCreateObserver.php       |   0
 .../Visitor/BindQuoteDestroyObserver.php      |   0
 .../Visitor/InitByRequestObserver.php         |   0
 .../Visitor/SaveByRequestObserver.php         |   0
 app/code/Magento/Customer/README.md           |   0
 .../Magento/Customer/Setup/CustomerSetup.php  |   0
 .../Magento/Customer/Setup/InstallData.php    |   0
 .../Magento/Customer/Setup/InstallSchema.php  |   0
 .../Magento/Customer/Setup/UpgradeData.php    |   0
 .../Block/Account/AuthenticationPopupTest.php |   0
 .../Block/Account/AuthorizationLinkTest.php   |   0
 .../Test/Unit/Block/Account/CustomerTest.php  |   0
 .../Unit/Block/Account/Dashboard/InfoTest.php |   0
 .../Test/Unit/Block/Account/LinkTest.php      |   0
 .../Unit/Block/Account/RegisterLinkTest.php   |   0
 .../Unit/Block/Account/ResetpasswordTest.php  |   0
 .../Test/Unit/Block/Address/EditTest.php      |   0
 .../Adminhtml/Edit/Tab/NewsletterTest.php     |   0
 .../Edit/Tab/View/Grid/Renderer/ItemTest.php  |   0
 .../Edit/Tab/View/PersonalInfoTest.php        |   0
 .../Block/Adminhtml/Edit/Tab/ViewTest.php     |   0
 .../Block/Adminhtml/Edit/UnlockButtonTest.php |   0
 .../Adminhtml/From/Element/ImageTest.php      |   0
 .../Test/Unit/Block/CustomerDataTest.php      |   0
 .../Test/Unit/Block/CustomerScopeDataTest.php |   0
 .../Test/Unit/Block/Form/EditTest.php         |   0
 .../Test/Unit/Block/Form/Login/InfoTest.php   |   0
 .../Test/Unit/Block/Form/RegisterTest.php     |   0
 .../Test/Unit/Block/NewsletterTest.php        |   0
 .../Test/Unit/Block/SectionConfigTest.php     |   0
 .../Unit/Block/Widget/AbstractWidgetTest.php  |   0
 .../Test/Unit/Block/Widget/DobTest.php        |   0
 .../Test/Unit/Block/Widget/GenderTest.php     |   0
 .../Test/Unit/Block/Widget/NameTest.php       |   0
 .../Test/Unit/Block/Widget/TaxvatTest.php     |   0
 .../UpgradeHashAlgorithmCommandTest.php       |   0
 .../Unit/Controller/Account/ConfirmTest.php   |   0
 .../Controller/Account/ConfirmationTest.php   |   0
 .../Controller/Account/CreatePasswordTest.php |   0
 .../Controller/Account/CreatePostTest.php     |   0
 .../Unit/Controller/Account/CreateTest.php    |   0
 .../Unit/Controller/Account/EditPostTest.php  |   0
 .../Account/ForgotPasswordPostTest.php        |   0
 .../Unit/Controller/Account/LoginPostTest.php |   0
 .../Unit/Controller/Account/LogoutTest.php    |   0
 .../Account/ResetPasswordPostTest.php         |   0
 .../Unit/Controller/Address/DeleteTest.php    |   0
 .../Unit/Controller/Address/FormPostTest.php  |   0
 .../Adminhtml/File/Address/UploadTest.php     |   0
 .../Adminhtml/File/Customer/UploadTest.php    |   0
 .../Controller/Adminhtml/Group/SaveTest.php   |   0
 .../Controller/Adminhtml/Index/IndexTest.php  |   0
 .../Adminhtml/Index/InlineEditTest.php        |   0
 .../Adminhtml/Index/MassAssignGroupTest.php   |   0
 .../Adminhtml/Index/MassDeleteTest.php        |   0
 .../Adminhtml/Index/MassSubscribeTest.php     |   0
 .../Adminhtml/Index/MassUnsubscribeTest.php   |   0
 .../Adminhtml/Index/NewsletterTest.php        |   0
 .../Adminhtml/Index/ResetPasswordTest.php     |   0
 .../Controller/Adminhtml/Index/SaveTest.php   |   0
 .../Adminhtml/Index/ValidateTest.php          |   0
 .../Adminhtml/Index/ViewfileTest.php          |   0
 .../Controller/Adminhtml/Locks/UnlockTest.php |   0
 .../Config/Validatevat/ValidateTest.php       |   0
 .../Test/Unit/Controller/Ajax/LoginTest.php   |   0
 .../Unit/Controller/Plugin/AccountTest.php    |   0
 .../Test/Unit/Controller/Section/LoadTest.php |   0
 .../Plugin/SessionCheckerTest.php             |   0
 .../CustomerData/Section/IdentifierTest.php   |   0
 .../SectionConfigConverterTest.php            |   0
 .../Unit/CustomerData/SectionPoolTest.php     |   0
 .../Unit/CustomerData/_files/sections.xml     |   0
 .../Customer/Test/Unit/Helper/AddressTest.php |   0
 .../Session/CurrentCustomerAddressTest.php    |   0
 .../Helper/Session/CurrentCustomerTest.php    |   0
 .../Customer/Test/Unit/Helper/ViewTest.php    |   0
 .../Test/Unit/Model/Account/RedirectTest.php  |   0
 .../Unit/Model/AccountConfirmationTest.php    |   0
 .../Test/Unit/Model/AccountManagementTest.php |   0
 .../Model/Address/AbstractAddressTest.php     |   0
 .../Model/Address/Config/ConverterTest.php    |   0
 .../Unit/Model/Address/Config/ReaderTest.php  |   0
 .../Address/Config/SchemaLocatorTest.php      |   0
 .../Unit/Model/Address/Config/XsdTest.php     |   0
 .../Address/Config/_files/formats_merged.php  |   0
 .../Address/Config/_files/formats_merged.xml  |   0
 .../Address/Config/_files/formats_one.xml     |   0
 .../Address/Config/_files/formats_two.xml     |   0
 .../Test/Unit/Model/Address/ConfigTest.php    |   0
 .../Test/Unit/Model/Address/MapperTest.php    |   0
 .../Model/Address/Validator/PostcodeTest.php  |   0
 .../Test/Unit/Model/AddressRegistryTest.php   |   0
 .../Customer/Test/Unit/Model/AddressTest.php  |   0
 .../Model/App/Action/ContextPluginTest.php    |   0
 .../Model/Attribute/Backend/BooleanTest.php   |   0
 .../Model/Attribute/Data/PostcodeTest.php     |   0
 .../Test/Unit/Model/AttributeCheckerTest.php  |   0
 .../Model/AttributeMetadatConverterTest.php   |   0
 .../Test/Unit/Model/AttributeTest.php         |   0
 .../Test/Unit/Model/AuthenticationTest.php    |   0
 .../CustomerSessionUserContextTest.php        |   0
 .../Test/Unit/Model/Backend/CustomerTest.php  |   0
 .../Model/Checkout/ConfigProviderTest.php     |   0
 .../DisableAutoGroupAssignDefaultTest.php     |   0
 .../Model/Config/Source/Address/TypeTest.php  |   0
 .../Config/Source/Group/MultiselectTest.php   |   0
 .../Unit/Model/Config/Source/GroupTest.php    |   0
 .../Attribute/Backend/BillingTest.php         |   0
 .../Attribute/Backend/PasswordTest.php        |   0
 .../Attribute/Backend/ShippingTest.php        |   0
 .../Customer/Attribute/Backend/StoreTest.php  |   0
 .../Attribute/Backend/WebsiteTest.php         |   0
 .../Customer/Attribute/Source/WebsiteTest.php |   0
 .../Customer/CredentialsValidatorTest.php     |   0
 .../Unit/Model/Customer/DataProviderTest.php  |   0
 .../Customer/NotificationStorageTest.php      |   0
 .../Unit/Model/Customer/Source/GroupTest.php  |   0
 .../Unit/Model/CustomerAuthUpdateTest.php     |   0
 .../Test/Unit/Model/CustomerExtractorTest.php |   0
 .../Unit/Model/CustomerGroupConfigTest.php    |   0
 .../Unit/Model/CustomerManagementTest.php     |   0
 .../Test/Unit/Model/CustomerRegistryTest.php  |   0
 .../Customer/Test/Unit/Model/CustomerTest.php |   0
 .../Test/Unit/Model/EmailNotificationTest.php |   0
 .../Test/Unit/Model/FileProcessorTest.php     |   0
 .../Test/Unit/Model/FileUploaderTest.php      |   0
 .../Test/Unit/Model/GroupRegistryTest.php     |   0
 .../Model/Indexer/Attribute/FilterTest.php    |   0
 .../Model/Indexer/AttributeProviderTest.php   |   0
 .../Model/Layout/DepersonalizePluginTest.php  |   0
 .../Customer/Test/Unit/Model/LogTest.php      |   0
 .../Customer/Test/Unit/Model/LoggerTest.php   |   0
 .../AddressMetadataManagementTest.php         |   0
 .../Model/Metadata/AddressMetadataTest.php    |   0
 .../Metadata/AttributeMetadataCacheTest.php   |   0
 .../AttributeMetadataHydratorTest.php         |   0
 .../Model/Metadata/AttributeResolverTest.php  |   0
 .../CustomerMetadataManagementTest.php        |   0
 .../Model/Metadata/ElementFactoryTest.php     |   0
 .../Model/Metadata/Form/AbstractDataTest.php  |   0
 .../Metadata/Form/AbstractFormTestCase.php    |   0
 .../Unit/Model/Metadata/Form/BooleanTest.php  |   0
 .../Unit/Model/Metadata/Form/DateTest.php     |   0
 .../Metadata/Form/ExtendsAbstractData.php     |   0
 .../Unit/Model/Metadata/Form/FileTest.php     |   0
 .../Unit/Model/Metadata/Form/HiddenTest.php   |   0
 .../Unit/Model/Metadata/Form/ImageTest.php    |   0
 .../Model/Metadata/Form/MultilineTest.php     |   0
 .../Model/Metadata/Form/MultiselectTest.php   |   0
 .../Unit/Model/Metadata/Form/PostcodeTest.php |   0
 .../Unit/Model/Metadata/Form/SelectTest.php   |   0
 .../Unit/Model/Metadata/Form/TextTest.php     |   0
 .../Unit/Model/Metadata/Form/TextareaTest.php |   0
 .../Unit/Model/Metadata/Form/_files/logo.gif  | Bin
 .../Unit/Model/Metadata/ValidatorTest.php     |   0
 .../Model/Plugin/AllowedCountriesTest.php     |   0
 .../Model/Plugin/CustomerFlushFormKeyTest.php |   0
 .../Model/Plugin/CustomerNotificationTest.php |   0
 .../TransactionWrapperTest.php                |   0
 .../Test/Unit/Model/Renderer/RegionTest.php   |   0
 .../Address/Attribute/Backend/RegionTest.php  |   0
 .../Source/CountryWithWebsitesTest.php        |   0
 .../Address/DeleteRelationTest.php            |   0
 .../ResourceModel/Address/RelationTest.php    |   0
 .../ResourceModel/AddressRepositoryTest.php   |   0
 .../Unit/Model/ResourceModel/AddressTest.php  |   0
 .../Model/ResourceModel/Customer/GridTest.php |   0
 .../ResourceModel/CustomerRepositoryTest.php  |   0
 .../Db/VersionControl/AddressSnapshotTest.php |   0
 .../Group/Grid/ServiceCollectionTest.php      |   0
 .../ResourceModel/GroupRepositoryTest.php     |   0
 .../Unit/Model/ResourceModel/GroupTest.php    |   0
 .../Customer/Test/Unit/Model/SessionTest.php  |   0
 .../Customer/Test/Unit/Model/VisitorTest.php  |   0
 .../Observer/AfterAddressSaveObserverTest.php |   0
 .../BeforeAddressSaveObserverTest.php         |   0
 .../CustomerLoginSuccessObserverTest.php      |   0
 .../Observer/LogLastLoginAtObserverTest.php   |   0
 .../Observer/LogLastLogoutAtObserverTest.php  |   0
 .../UpgradeCustomerPasswordObserverTest.php   |   0
 .../Unit/Ui/Component/ColumnFactoryTest.php   |   0
 .../Component/DataProvider/DocumentTest.php   |   0
 .../Unit/Ui/Component/DataProviderTest.php    |   0
 .../Unit/Ui/Component/FilterFactoryTest.php   |   0
 .../Listing/AttributeRepositoryTest.php       |   0
 .../Listing/Column/AccountLockTest.php        |   0
 .../Component/Listing/Column/ActionsTest.php  |   0
 .../Listing/Column/AttributeColumnTest.php    |   0
 .../Listing/Column/ConfirmationTest.php       |   0
 .../Listing/Column/InlineEditUpdaterTest.php  |   0
 .../Listing/Column/ValidationRulesTest.php    |   0
 .../Unit/Ui/Component/Listing/ColumnsTest.php |   0
 .../Customer/Ui/Component/ColumnFactory.php   |   0
 .../Customer/Ui/Component/DataProvider.php    |   0
 .../Ui/Component/DataProvider/Document.php    |   0
 .../Customer/Ui/Component/FilterFactory.php   |   0
 .../Component/Listing/AttributeRepository.php |   0
 .../Component/Listing/Column/AccountLock.php  |   0
 .../Ui/Component/Listing/Column/Actions.php   |   0
 .../Listing/Column/AttributeColumn.php        |   0
 .../Component/Listing/Column/Confirmation.php |   0
 .../Listing/Column/Group/Options.php          |   0
 .../Listing/Column/InlineEditUpdater.php      |   0
 .../Component/Listing/Column/Online/Type.php  |   0
 .../Listing/Column/Online/Type/Options.php    |   0
 .../Listing/Column/ValidationRules.php        |   0
 .../Ui/Component/Listing/Column/Websites.php  |   0
 .../Customer/Ui/Component/Listing/Columns.php |   0
 .../Ui/Component/MassAction/Group/Options.php |   0
 app/code/Magento/Customer/composer.json       |   0
 app/code/Magento/Customer/etc/acl.xml         |   0
 .../Magento/Customer/etc/address_formats.xml  |   0
 .../Magento/Customer/etc/address_formats.xsd  |   0
 .../Magento/Customer/etc/adminhtml/di.xml     |   0
 .../Magento/Customer/etc/adminhtml/menu.xml   |   0
 .../Magento/Customer/etc/adminhtml/routes.xml |   0
 .../Magento/Customer/etc/adminhtml/system.xml |   0
 app/code/Magento/Customer/etc/cache.xml       |   0
 app/code/Magento/Customer/etc/config.xml      |   0
 app/code/Magento/Customer/etc/crontab.xml     |   0
 app/code/Magento/Customer/etc/di.xml          |   0
 .../Magento/Customer/etc/email_templates.xml  |   0
 app/code/Magento/Customer/etc/events.xml      |   0
 app/code/Magento/Customer/etc/fieldset.xml    |   0
 app/code/Magento/Customer/etc/frontend/di.xml |   0
 .../Magento/Customer/etc/frontend/events.xml  |   0
 .../Customer/etc/frontend/page_types.xml      |   0
 .../Magento/Customer/etc/frontend/routes.xml  |   0
 .../Customer/etc/frontend/sections.xml        |   0
 app/code/Magento/Customer/etc/indexer.xml     |   0
 app/code/Magento/Customer/etc/module.xml      |   0
 app/code/Magento/Customer/etc/mview.xml       |   0
 app/code/Magento/Customer/etc/sections.xsd    |   0
 app/code/Magento/Customer/etc/validation.xml  |   0
 app/code/Magento/Customer/etc/webapi.xml      |   0
 .../Magento/Customer/etc/webapi_rest/di.xml   |   0
 .../Magento/Customer/etc/webapi_soap/di.xml   |   0
 app/code/Magento/Customer/i18n/en_US.csv      |   0
 app/code/Magento/Customer/registration.php    |   0
 .../adminhtml/layout/customer_group_index.xml |   0
 .../adminhtml/layout/customer_index_cart.xml  |   0
 .../adminhtml/layout/customer_index_carts.xml |   0
 .../adminhtml/layout/customer_index_edit.xml  |   0
 .../adminhtml/layout/customer_index_index.xml |   0
 .../layout/customer_index_newsletter.xml      |   0
 .../layout/customer_index_orders.xml          |   0
 .../layout/customer_index_productreviews.xml  |   0
 .../layout/customer_index_viewcart.xml        |   0
 .../layout/customer_index_viewwishlist.xml    |   0
 .../layout/customer_online_index.xml          |   0
 .../view/adminhtml/requirejs-config.js        |   0
 .../view/adminhtml/templates/edit/js.phtml    |   0
 .../create/address/form/renderer/vat.phtml    |   0
 .../templates/system/config/validatevat.phtml |   0
 .../view/adminhtml/templates/tab/cart.phtml   |   0
 .../adminhtml/templates/tab/newsletter.phtml  |   0
 .../view/adminhtml/templates/tab/view.phtml   |   0
 .../templates/tab/view/personal_info.phtml    |   0
 .../adminhtml/templates/tab/view/sales.phtml  |   0
 .../ui_component/customer_listing.xml         |   0
 .../ui_component/customer_online_grid.xml     |   0
 .../view/adminhtml/web/edit/post-wrapper.js   |   0
 .../adminhtml/web/edit/tab/js/addresses.js    |   0
 .../web/js/bootstrap/customer-post-action.js  |   0
 .../view/base/ui_component/customer_form.xml  |   0
 .../view/frontend/email/account_new.html      |   0
 .../email/account_new_confirmation.html       |   0
 .../frontend/email/account_new_confirmed.html |   0
 .../email/account_new_no_password.html        |   0
 .../view/frontend/email/change_email.html     |   0
 .../email/change_email_and_password.html      |   0
 .../view/frontend/email/password_new.html     |   0
 .../view/frontend/email/password_reset.html   |   0
 .../email/password_reset_confirmation.html    |   0
 .../view/frontend/layout/customer_account.xml |   0
 .../layout/customer_account_confirmation.xml  |   0
 .../layout/customer_account_create.xml        |   0
 .../customer_account_createpassword.xml       |   0
 .../frontend/layout/customer_account_edit.xml |   0
 .../customer_account_forgotpassword.xml       |   0
 .../layout/customer_account_index.xml         |   0
 .../layout/customer_account_login.xml         |   0
 .../layout/customer_account_logoutsuccess.xml |   0
 .../frontend/layout/customer_address_form.xml |   0
 .../layout/customer_address_index.xml         |   0
 .../Customer/view/frontend/layout/default.xml |   0
 .../view/frontend/requirejs-config.js         |   0
 .../account/authentication-popup.phtml        |   0
 .../frontend/templates/account/customer.phtml |   0
 .../templates/account/dashboard/address.phtml |   0
 .../templates/account/dashboard/info.phtml    |   0
 .../account/link/authorization.phtml          |   0
 .../templates/account/link/back.phtml         |   0
 .../account/navigation-delimiter.phtml        |   0
 .../templates/account/navigation.phtml        |   0
 .../templates/additionalinfocustomer.phtml    |   0
 .../frontend/templates/address/book.phtml     |   0
 .../frontend/templates/address/edit.phtml     |   0
 .../templates/form/confirmation.phtml         |   0
 .../view/frontend/templates/form/edit.phtml   |   0
 .../templates/form/forgotpassword.phtml       |   0
 .../view/frontend/templates/form/login.phtml  |   0
 .../frontend/templates/form/newsletter.phtml  |   0
 .../frontend/templates/form/register.phtml    |   0
 .../form/resetforgottenpassword.phtml         |   0
 .../frontend/templates/js/components.phtml    |   0
 .../frontend/templates/js/customer-data.phtml |   0
 .../js/customer-data/invalidation-rules.phtml |   0
 .../templates/js/section-config.phtml         |   0
 .../view/frontend/templates/logout.phtml      |   0
 .../view/frontend/templates/newcustomer.phtml |   0
 .../frontend/templates/widget/company.phtml   |   0
 .../view/frontend/templates/widget/dob.phtml  |   0
 .../view/frontend/templates/widget/fax.phtml  |   0
 .../frontend/templates/widget/gender.phtml    |   0
 .../view/frontend/templates/widget/name.phtml |   0
 .../frontend/templates/widget/taxvat.phtml    |   0
 .../frontend/templates/widget/telephone.phtml |   0
 .../Customer/view/frontend/web/address.js     |   0
 .../frontend/web/change-email-password.js     |   0
 .../web/js/action/check-email-availability.js |   0
 .../view/frontend/web/js/action/login.js      |   0
 .../view/frontend/web/js/addressValidation.js |   0
 .../view/frontend/web/js/checkout-balance.js  |   0
 .../view/frontend/web/js/customer-data.js     |   0
 .../frontend/web/js/invalidation-processor.js |   0
 .../web/js/invalidation-rules/website-rule.js |   0
 .../frontend/web/js/model/address-list.js     |   0
 .../web/js/model/authentication-popup.js      |   0
 .../web/js/model/customer-addresses.js        |   0
 .../view/frontend/web/js/model/customer.js    |   0
 .../frontend/web/js/model/customer/address.js |   0
 .../web/js/password-strength-indicator.js     |   0
 .../view/frontend/web/js/section-config.js    |   0
 .../web/js/view/authentication-popup.js       |   0
 .../view/frontend/web/js/view/customer.js     |   0
 .../Customer/view/frontend/web/js/zxcvbn.js   |   0
 .../web/template/authentication-popup.html    |   0
 .../Magento/CustomerAnalytics/LICENSE.txt     |   0
 .../Magento/CustomerAnalytics/LICENSE_AFL.txt |   0
 app/code/Magento/CustomerAnalytics/README.md  |   0
 .../Magento/CustomerAnalytics/composer.json   |   0
 .../CustomerAnalytics/etc/analytics.xml       |   0
 .../Magento/CustomerAnalytics/etc/module.xml  |   0
 .../Magento/CustomerAnalytics/etc/reports.xml |   0
 .../CustomerAnalytics/registration.php        |   0
 .../Controller/Adminhtml/Index/ExportCsv.php  |   0
 .../Controller/Adminhtml/Index/ExportXml.php  |   0
 .../Magento/CustomerImportExport/LICENSE.txt  |   0
 .../CustomerImportExport/LICENSE_AFL.txt      |   0
 .../Model/Export/Address.php                  |   0
 .../Model/Export/Customer.php                 |   0
 .../Model/Import/AbstractCustomer.php         |   0
 .../Model/Import/Address.php                  |   0
 .../Model/Import/Customer.php                 |   0
 .../Model/Import/CustomerComposite.php        |   0
 .../ResourceModel/Import/Customer/Storage.php |   0
 .../Import/CustomerComposite/Data.php         |   0
 .../Magento/CustomerImportExport/README.md    |   0
 .../Test/Unit/Model/Export/AddressTest.php    |   0
 .../Test/Unit/Model/Export/CustomerTest.php   |   0
 .../Model/Import/AbstractCustomerTest.php     |   0
 .../Test/Unit/Model/Import/AddressTest.php    |   0
 .../Model/Import/CustomerCompositeTest.php    |   0
 .../Test/Unit/Model/Import/CustomerTest.php   |   0
 .../customer_composite_prepare_row_for_db.csv |   0
 .../_files/row_data_abstract_empty_email.php  |   0
 .../row_data_abstract_empty_website.php       |   0
 .../row_data_abstract_invalid_email.php       |   0
 .../row_data_abstract_invalid_website.php     |   0
 .../_files/row_data_abstract_no_email.php     |   0
 .../_files/row_data_abstract_no_website.php   |   0
 .../Import/_files/row_data_abstract_valid.php |   0
 ..._data_address_delete_address_not_found.php |   0
 ...w_data_address_delete_empty_address_id.php |   0
 .../row_data_address_delete_no_customer.php   |   0
 .../_files/row_data_address_delete_valid.php  |   0
 ...dress_update_absent_required_attribute.php |   0
 ...w_data_address_update_empty_address_id.php |   0
 ...row_data_address_update_invalid_region.php |   0
 .../row_data_address_update_no_customer.php   |   0
 .../_files/row_data_address_update_valid.php  |   0
 .../Import/Customer/StorageTest.php           |   0
 .../Import/CustomerComposite/DataTest.php     |   0
 .../CustomerImportExport/composer.json        |   0
 .../etc/adminhtml/routes.xml                  |   0
 .../CustomerImportExport/etc/config.xml       |   0
 .../CustomerImportExport/etc/export.xml       |   0
 .../CustomerImportExport/etc/import.xml       |   0
 .../CustomerImportExport/etc/module.xml       |   0
 .../CustomerImportExport/i18n/en_US.csv       |   0
 .../CustomerImportExport/registration.php     |   0
 ...customer_import_export_index_exportcsv.xml |   0
 ...customer_import_export_index_exportxml.xml |   0
 .../layout/customer_index_grid_block.xml      |   0
 .../Deploy/App/Mode/ConfigProvider.php        |   0
 .../Magento/Deploy/Collector/Collector.php    |   0
 .../Deploy/Collector/CollectorInterface.php   |   0
 .../Magento/Deploy/Config/BundleConfig.php    |   0
 .../Command/App/ApplicationDumpCommand.php    |   0
 .../Command/App/ConfigImport/Processor.php    |   0
 .../Command/App/ConfigImportCommand.php       |   0
 .../Command/App/ConfigStatusCommand.php       |   0
 .../SensitiveConfigSet/CollectorFactory.php   |   0
 .../SensitiveConfigSet/CollectorInterface.php |   0
 .../InteractiveCollector.php                  |   0
 .../SensitiveConfigSetFacade.php              |   0
 .../SensitiveConfigSet/SimpleCollector.php    |   0
 .../Command/App/SensitiveConfigSetCommand.php |   0
 .../Deploy/Console/Command/SetModeCommand.php |   0
 .../Console/Command/ShowModeCommand.php       |   0
 .../Magento/Deploy/Console/CommandList.php    |   0
 .../Magento/Deploy/Console/ConsoleLogger.php  |   0
 .../Deploy/Console/ConsoleLoggerFactory.php   |   0
 .../Deploy/Console/DeployStaticOptions.php    |   0
 .../Magento/Deploy/Console/InputValidator.php |   0
 app/code/Magento/Deploy/LICENSE.txt           |   0
 app/code/Magento/Deploy/LICENSE_AFL.txt       |   0
 .../Magento/Deploy/Model/ConfigWriter.php     |   0
 .../Model/DeploymentConfig/ChangeDetector.php |   0
 .../Model/DeploymentConfig/DataCollector.php  |   0
 .../Deploy/Model/DeploymentConfig/Hash.php    |   0
 .../Model/DeploymentConfig/Hash/Generator.php |   0
 .../DeploymentConfig/ImporterFactory.php      |   0
 .../Model/DeploymentConfig/ImporterPool.php   |   0
 .../DeploymentConfig/ValidatorFactory.php     |   0
 app/code/Magento/Deploy/Model/Filesystem.php  |   0
 app/code/Magento/Deploy/Model/Mode.php        |   0
 .../Model/Plugin/ConfigChangeDetector.php     |   0
 .../Deploy/Package/Bundle/RequireJs.php       |   0
 .../Deploy/Package/BundleInterface.php        |   0
 .../Deploy/Package/BundleInterfaceFactory.php |   0
 app/code/Magento/Deploy/Package/Package.php   |   0
 .../Magento/Deploy/Package/PackageFactory.php |   0
 .../Magento/Deploy/Package/PackageFile.php    |   0
 .../Magento/Deploy/Package/PackagePool.php    |   0
 .../Processor/PostProcessor/CssUrls.php       |   0
 .../Package/Processor/PostProcessor/Map.php   |   0
 .../Package/Processor/PreProcessor/Css.php    |   0
 .../Package/Processor/PreProcessor/Less.php   |   0
 .../Package/Processor/ProcessorInterface.php  |   0
 app/code/Magento/Deploy/Process/Queue.php     |   0
 .../Magento/Deploy/Process/QueueFactory.php   |   0
 app/code/Magento/Deploy/README.md             |   0
 app/code/Magento/Deploy/Service/Bundle.php    |   0
 .../Magento/Deploy/Service/DeployPackage.php  |   0
 .../Deploy/Service/DeployRequireJsConfig.php  |   0
 .../Deploy/Service/DeployStaticContent.php    |   0
 .../Deploy/Service/DeployStaticFile.php       |   0
 .../Service/DeployTranslationsDictionary.php  |   0
 .../Deploy/Service/MinifyTemplates.php        |   0
 app/code/Magento/Deploy/Source/Lib.php        |   0
 app/code/Magento/Deploy/Source/Modules.php    |   0
 .../Magento/Deploy/Source/SourceInterface.php |   0
 app/code/Magento/Deploy/Source/SourcePool.php |   0
 app/code/Magento/Deploy/Source/Themes.php     |   0
 .../Magento/Deploy/Strategy/CompactDeploy.php |   0
 .../Deploy/Strategy/DeployStrategyFactory.php |   0
 .../Magento/Deploy/Strategy/QuickDeploy.php   |   0
 .../Deploy/Strategy/StandardDeploy.php        |   0
 .../Deploy/Strategy/StrategyInterface.php     |   0
 .../Test/Unit/App/Mode/ConfigProviderTest.php |   0
 .../App/ConfigImport/ProcessorTest.php        |   0
 .../Command/App/ConfigImportCommandTest.php   |   0
 .../Command/App/ConfigStatusCommandTest.php   |   0
 .../CollectorFactoryTest.php                  |   0
 .../InteractiveCollectorTest.php              |   0
 .../SensitiveConfigSetFacadeTest.php          |   0
 .../SimpleCollectorTest.php                   |   0
 .../App/SensitiveConfigSetCommandTest.php     |   0
 .../Command/ApplicationDumpCommandTest.php    |   0
 .../Console/Command/SetModeCommandTest.php    |   0
 .../Console/Command/ShowModeCommandTest.php   |   0
 .../Test/Unit/Console/CommandListTest.php     |   0
 .../Test/Unit/Model/ConfigWriterTest.php      |   0
 .../DeploymentConfig/ChangeDetectorTest.php   |   0
 .../DeploymentConfig/DataCollectorTest.php    |   0
 .../DeploymentConfig/Hash/GeneratorTest.php   |   0
 .../Unit/Model/DeploymentConfig/HashTest.php  |   0
 .../DeploymentConfig/ImporterFactoryTest.php  |   0
 .../DeploymentConfig/ImporterPoolTest.php     |   0
 .../DeploymentConfig/ValidatorFactoryTest.php |   0
 .../Deploy/Test/Unit/Model/FilesystemTest.php |   0
 .../Deploy/Test/Unit/Model/ModeTest.php       |   0
 .../Model/Plugin/ConfigChangeDetectorTest.php |   0
 .../Deploy/Test/Unit/Process/QueueTest.php    |   0
 .../Unit/Service/DeployStaticContentTest.php  |   0
 .../DeployTranslationsDictionaryTest.php      |   0
 .../Test/Unit/Service/MinifyTemplatesTest.php |   0
 .../Test/Unit/Strategy/CompactDeployTest.php  |   0
 app/code/Magento/Deploy/cli_commands.php      |   0
 app/code/Magento/Deploy/composer.json         |   0
 app/code/Magento/Deploy/etc/di.xml            |   0
 app/code/Magento/Deploy/etc/module.xml        |   0
 app/code/Magento/Deploy/i18n/en_US.csv        |   0
 app/code/Magento/Deploy/registration.php      |   0
 .../Adminhtml/System/Config/WorkflowType.php  |   0
 .../Console/Command/DevTestsRunCommand.php    |   0
 .../Console/Command/DiInfoCommand.php         |   0
 .../Command/ProfilerDisableCommand.php        |   0
 .../Console/Command/ProfilerEnableCommand.php |   0
 .../Command/QueryLogDisableCommand.php        |   0
 .../Console/Command/QueryLogEnableCommand.php |   0
 .../Command/SourceThemeDeployCommand.php      |   0
 .../Command/TemplateHintsDisableCommand.php   |   0
 .../Command/TemplateHintsEnableCommand.php    |   0
 .../Command/XmlCatalogGenerateCommand.php     |   0
 .../Console/Command/XmlConverterCommand.php   |   0
 app/code/Magento/Developer/Helper/Data.php    |   0
 app/code/Magento/Developer/LICENSE.txt        |   0
 app/code/Magento/Developer/LICENSE_AFL.txt    |   0
 .../Model/Config/Backend/AllowedIps.php       |   0
 .../Model/Config/Backend/WorkflowType.php     |   0
 .../Model/Config/Source/WorkflowType.php      |   0
 .../FileGenerator/PublicationDecorator.php    |   0
 .../Developer/Model/Di/Information.php        |   0
 .../Magento/Developer/Model/Di/PluginList.php |   0
 .../Developer/Model/Logger/Handler/Debug.php  |   0
 .../TemplateEngine/Decorator/DebugHints.php   |   0
 .../TemplateEngine/Plugin/DebugHints.php      |   0
 .../Developer/Model/Tools/Formatter.php       |   0
 .../PreProcessor/FrontendCompilation.php      |   0
 .../PreProcessor/PreprocessorStrategy.php     |   0
 .../ClientSideLessCompilation/Renderer.php    |   0
 .../View/Page/Config/RendererFactory.php      |   0
 .../XmlCatalog/Format/FormatInterface.php     |   0
 .../Model/XmlCatalog/Format/PhpStorm.php      |   0
 app/code/Magento/Developer/README.md          |   0
 .../System/Config/WorkflowTypeTest.php        |   0
 .../Command/DevTestsRunCommandTest.php        |   0
 .../Command/QueryLogDisableCommandTest.php    |   0
 .../Command/QueryLogEnableCommandTest.php     |   0
 .../Command/SourceThemeDeployCommandTest.php  |   0
 .../Command/XmlCatalogGenerateCommandTest.php |   0
 .../Command/XmlConverterCommandTest.php       |   0
 .../Test/Unit/Console/Command/_files/test.xml |   0
 .../Developer/Test/Unit/Helper/DataTest.php   |   0
 .../Model/Config/Backend/AllowedIpsTest.php   |   0
 .../Model/Config/Backend/WorkflowTypeTest.php |   0
 .../Model/Config/Source/WorkflowTypeTest.php  |   0
 .../PublicationDecoratorTest.php              |   0
 .../Test/Unit/Model/Di/InformationTest.php    |   0
 .../Unit/Model/Logger/Handler/DebugTest.php   |   0
 .../Decorator/DebugHintsTest.php              |   0
 .../TemplateEngine/Plugin/DebugHintsTest.php  |   0
 .../PreProcessor/FrontendCompilationTest.php  |   0
 .../PreProcessor/PreprocessorStrategyTest.php |   0
 .../RendererTest.php                          |   0
 .../View/Page/Config/RendererFactoryTest.php  |   0
 app/code/Magento/Developer/composer.json      |   0
 .../Magento/Developer/etc/adminhtml/di.xml    |   0
 .../Developer/etc/adminhtml/system.xml        |   0
 app/code/Magento/Developer/etc/config.xml     |   0
 app/code/Magento/Developer/etc/di.xml         |   0
 .../Magento/Developer/etc/frontend/di.xml     |   0
 app/code/Magento/Developer/etc/module.xml     |   0
 app/code/Magento/Developer/i18n/de_DE.csv     |   0
 app/code/Magento/Developer/i18n/en_US.csv     |   0
 app/code/Magento/Developer/i18n/es_ES.csv     |   0
 app/code/Magento/Developer/i18n/fr_FR.csv     |   0
 app/code/Magento/Developer/i18n/nl_NL.csv     |   0
 app/code/Magento/Developer/i18n/pt_BR.csv     |   0
 .../Magento/Developer/i18n/zh_Hans_CN.csv     |   0
 app/code/Magento/Developer/registration.php   |   0
 .../Dhl/Block/Adminhtml/Unitofmeasure.php     |   0
 app/code/Magento/Dhl/LICENSE.txt              |   0
 app/code/Magento/Dhl/LICENSE_AFL.txt          |   0
 app/code/Magento/Dhl/Model/AbstractDhl.php    |   0
 app/code/Magento/Dhl/Model/Carrier.php        |   0
 .../Plugin/Checkout/Block/Cart/Shipping.php   |   0
 .../Magento/Dhl/Model/Source/Contenttype.php  |   0
 .../Model/Source/Method/AbstractMethod.php    |   0
 .../Magento/Dhl/Model/Source/Method/Doc.php   |   0
 .../Dhl/Model/Source/Method/Freedoc.php       |   0
 .../Dhl/Model/Source/Method/Freenondoc.php    |   0
 .../Dhl/Model/Source/Method/Generic.php       |   0
 .../Dhl/Model/Source/Method/Nondoc.php        |   0
 .../Magento/Dhl/Model/Source/Method/Size.php  |   0
 .../Dhl/Model/Source/Method/Unitofmeasure.php |   0
 .../Validator/ResponseErrorProcessor.php      |   0
 .../Dhl/Model/Validator/XmlValidator.php      |   0
 app/code/Magento/Dhl/README.md                |   0
 app/code/Magento/Dhl/Setup/InstallData.php    |   0
 .../Dhl/Test/Unit/Model/CarrierTest.php       |   0
 .../Validator/ResponseErrorProcessorTest.php  |   0
 .../Unit/Model/Validator/XmlValidatorTest.php |   0
 .../Validator/_files/invalidDHLResponse.xml   |   0
 .../invalidDHLResponseForQuoteResponse.xml    |   0
 .../invalidDHLResponseForShippingLabel.xml    |   0
 .../invalidDHLResponseWithMissingXmlTag.xml   |   0
 .../Validator/_files/validDHLResponse.xml     |   0
 .../Dhl/Test/Unit/Model/_files/countries.xml  |   0
 .../Model/_files/rates_request_data_dhl.php   |   0
 .../Model/_files/response_shipping_label.xml  |   0
 .../_files/success_dhl_response_rates.xml     |   0
 app/code/Magento/Dhl/composer.json            |   0
 app/code/Magento/Dhl/etc/adminhtml/system.xml |   0
 app/code/Magento/Dhl/etc/config.xml           |   0
 app/code/Magento/Dhl/etc/countries.xml        |   0
 app/code/Magento/Dhl/etc/di.xml               |   0
 app/code/Magento/Dhl/etc/module.xml           |   0
 app/code/Magento/Dhl/i18n/en_US.csv           |   0
 app/code/Magento/Dhl/registration.php         |   0
 .../adminhtml/templates/unitofmeasure.phtml   |   0
 .../Magento/Dhl/view/adminhtml/web/logo.jpg   | Bin
 .../frontend/layout/checkout_cart_index.xml   |   0
 .../frontend/layout/checkout_index_index.xml  |   0
 .../model/shipping-rates-validation-rules.js  |   0
 .../web/js/model/shipping-rates-validator.js  |   0
 .../web/js/view/shipping-rates-validation.js  |   0
 .../CountryInformationAcquirerInterface.php   |   0
 .../CurrencyInformationAcquirerInterface.php  |   0
 .../Api/Data/CountryInformationInterface.php  |   0
 .../Api/Data/CurrencyInformationInterface.php |   0
 .../Api/Data/ExchangeRateInterface.php        |   0
 .../Api/Data/RegionInformationInterface.php   |   0
 .../Adminhtml/Frontend/Currency/Base.php      |   0
 .../Adminhtml/Frontend/Region/Updater.php     |   0
 app/code/Magento/Directory/Block/Currency.php |   0
 app/code/Magento/Directory/Block/Data.php     |   0
 .../Adminhtml/Json/CountryRegion.php          |   0
 .../Controller/Currency/SwitchAction.php      |   0
 app/code/Magento/Directory/Helper/Data.php    |   0
 app/code/Magento/Directory/LICENSE.txt        |   0
 app/code/Magento/Directory/LICENSE_AFL.txt    |   0
 .../Directory/Model/AllowedCountries.php      |   0
 .../Model/Config/Source/Allregion.php         |   0
 .../Directory/Model/Config/Source/Country.php |   0
 .../Model/Config/Source/Country/Full.php      |   0
 .../Model/Config/Source/WeightUnit.php        |   0
 app/code/Magento/Directory/Model/Country.php  |   0
 .../Directory/Model/Country/Format.php        |   0
 .../Model/Country/Postcode/Config.php         |   0
 .../Country/Postcode/Config/Converter.php     |   0
 .../Model/Country/Postcode/Config/Data.php    |   0
 .../Model/Country/Postcode/Config/Reader.php  |   0
 .../Country/Postcode/Config/SchemaLocator.php |   0
 .../Country/Postcode/ConfigInterface.php      |   0
 .../Model/Country/Postcode/Validator.php      |   0
 .../Country/Postcode/ValidatorInterface.php   |   0
 .../Model/CountryInformationAcquirer.php      |   0
 app/code/Magento/Directory/Model/Currency.php |   0
 .../Model/Currency/DefaultLocator.php         |   0
 .../Directory/Model/Currency/Filter.php       |   0
 .../Model/Currency/Import/AbstractImport.php  |   0
 .../Model/Currency/Import/Config.php          |   0
 .../Model/Currency/Import/Factory.php         |   0
 .../Model/Currency/Import/FixerIo.php         |   0
 .../Model/Currency/Import/ImportInterface.php |   0
 .../Model/Currency/Import/Source/Service.php  |   0
 .../Model/Currency/Import/Webservicex.php     |   0
 .../Model/Currency/Import/YahooFinance.php    |   0
 .../Directory/Model/CurrencyConfig.php        |   0
 .../Model/CurrencyInformationAcquirer.php     |   0
 .../Model/Data/CountryInformation.php         |   0
 .../Model/Data/CurrencyInformation.php        |   0
 .../Directory/Model/Data/ExchangeRate.php     |   0
 .../Model/Data/RegionInformation.php          |   0
 app/code/Magento/Directory/Model/Observer.php |   0
 .../Magento/Directory/Model/PriceCurrency.php |   0
 app/code/Magento/Directory/Model/Region.php   |   0
 .../Magento/Directory/Model/RegionFactory.php |   0
 .../Directory/Model/ResourceModel/Country.php |   0
 .../ResourceModel/Country/Collection.php      |   0
 .../Model/ResourceModel/Country/Format.php    |   0
 .../Country/Format/Collection.php             |   0
 .../Model/ResourceModel/Currency.php          |   0
 .../Directory/Model/ResourceModel/Region.php  |   0
 .../Model/ResourceModel/Region/Collection.php |   0
 .../Model/TopDestinationCountries.php         |   0
 app/code/Magento/Directory/README.md          |   0
 .../Magento/Directory/Setup/InstallData.php   |   0
 .../Magento/Directory/Setup/InstallSchema.php |   0
 .../Magento/Directory/Setup/UpgradeData.php   |   0
 .../Test/Unit/Block/CurrencyTest.php          |   0
 .../Directory/Test/Unit/Block/DataTest.php    |   0
 .../Directory/Test/Unit/Helper/DataTest.php   |   0
 .../Test/Unit/Model/AllowedCountriesTest.php  |   0
 .../Model/Config/Source/AllRegionTest.php     |   0
 .../Unit/Model/Config/Source/CountryTest.php  |   0
 .../Country/Postcode/Config/ConverterTest.php |   0
 .../Country/Postcode/Config/DataTest.php      |   0
 .../Country/Postcode/Config/ReaderTest.php    |   0
 .../Postcode/Config/SchemaLocatorTest.php     |   0
 .../Model/Country/Postcode/ConfigTest.php     |   0
 .../Model/Country/Postcode/ValidatorTest.php  |   0
 .../Model/CountryInformationAcquirerTest.php  |   0
 .../Directory/Test/Unit/Model/CountryTest.php |   0
 .../Model/Currency/DefaultLocatorTest.php     |   0
 .../Unit/Model/Currency/Import/ConfigTest.php |   0
 .../Model/Currency/Import/FactoryTest.php     |   0
 .../Model/Currency/Import/FixerIoTest.php     |   0
 .../Currency/Import/Source/ServiceTest.php    |   0
 .../Currency/Import/YahooFinanceTest.php      |   0
 .../Test/Unit/Model/CurrencyConfigTest.php    |   0
 .../Model/CurrencyInformationAcquirerTest.php |   0
 .../Test/Unit/Model/CurrencyTest.php          |   0
 .../Test/Unit/Model/ObserverTest.php          |   0
 .../Test/Unit/Model/PriceCurrencyTest.php     |   0
 .../ResourceModel/Country/CollectionTest.php  |   0
 .../ResourceModel/Region/CollectionTest.php   |   0
 .../Model/TopDestinationCountriesTest.php     |   0
 .../Directory/Test/Unit/_files/zip_codes.php  |   0
 .../Directory/Test/Unit/_files/zip_codes.xml  |   0
 app/code/Magento/Directory/composer.json      |   0
 .../Directory/etc/adminhtml/routes.xml        |   0
 .../Directory/etc/adminhtml/system.xml        |   0
 app/code/Magento/Directory/etc/config.xml     |   0
 app/code/Magento/Directory/etc/crontab.xml    |   0
 app/code/Magento/Directory/etc/di.xml         |   0
 .../Magento/Directory/etc/email_templates.xml |   0
 .../Magento/Directory/etc/frontend/routes.xml |   0
 .../Directory/etc/frontend/sections.xml       |   0
 app/code/Magento/Directory/etc/module.xml     |   0
 app/code/Magento/Directory/etc/webapi.xml     |   0
 app/code/Magento/Directory/etc/zip_codes.xml  |   0
 app/code/Magento/Directory/etc/zip_codes.xsd  |   0
 app/code/Magento/Directory/i18n/en_US.csv     |   0
 app/code/Magento/Directory/registration.php   |   0
 .../email/currency_update_notification.html   |   0
 .../templates/js/optional_zip_countries.phtml |   0
 .../frontend/layout/catalog_category_view.xml |   0
 .../layout/catalogsearch_advanced_index.xml   |   0
 .../layout/catalogsearch_advanced_result.xml  |   0
 .../layout/catalogsearch_result_index.xml     |   0
 .../view/frontend/layout/default.xml          |   0
 .../view/frontend/templates/currency.phtml    |   0
 .../frontend/templates/currency/switch.phtml  |   0
 .../Api/Data/DownloadableOptionInterface.php  |   0
 .../Api/Data/File/ContentInterface.php        |   0
 .../Data/File/ContentUploaderInterface.php    |   0
 .../Downloadable/Api/Data/LinkInterface.php   |   0
 .../Api/Data/ProductAttributeInterface.php    |   0
 .../Downloadable/Api/Data/SampleInterface.php |   0
 .../Api/LinkRepositoryInterface.php           |   0
 .../Api/SampleRepositoryInterface.php         |   0
 .../Composite/Fieldset/Downloadable.php       |   0
 .../Catalog/Product/Edit/Tab/Downloadable.php |   0
 .../Product/Edit/Tab/Downloadable/Links.php   |   0
 .../Product/Edit/Tab/Downloadable/Samples.php |   0
 .../Sales/Items/Column/Downloadable/Name.php  |   0
 .../Block/Catalog/Product/Links.php           |   0
 .../Block/Catalog/Product/Samples.php         |   0
 .../Block/Catalog/Product/View/Type.php       |   0
 .../Block/Checkout/Cart/Item/Renderer.php     |   0
 .../Downloadable/Block/Checkout/Success.php   |   0
 .../Block/Customer/Products/ListProducts.php  |   0
 .../Sales/Order/Email/Items/Downloadable.php  |   0
 .../Order/Email/Items/Order/Downloadable.php  |   0
 .../Order/Item/Renderer/Downloadable.php      |   0
 .../Adminhtml/Downloadable/File.php           |   0
 .../Adminhtml/Downloadable/File/Upload.php    |   0
 .../Product/Edit/AddAttributeToTemplate.php   |   0
 .../Product/Edit/AlertsPriceGrid.php          |   0
 .../Product/Edit/AlertsStockGrid.php          |   0
 .../Downloadable/Product/Edit/Categories.php  |   0
 .../Downloadable/Product/Edit/Crosssell.php   |   0
 .../Product/Edit/CrosssellGrid.php            |   0
 .../Product/Edit/CustomOptions.php            |   0
 .../Downloadable/Product/Edit/Duplicate.php   |   0
 .../Downloadable/Product/Edit/Edit.php        |   0
 .../Downloadable/Product/Edit/Form.php        |   0
 .../Downloadable/Product/Edit/Grid.php        |   0
 .../Downloadable/Product/Edit/GridOnly.php    |   0
 .../Downloadable/Product/Edit/Index.php       |   0
 .../Downloadable/Product/Edit/Link.php        |   0
 .../Downloadable/Product/Edit/MassDelete.php  |   0
 .../Downloadable/Product/Edit/MassStatus.php  |   0
 .../Downloadable/Product/Edit/NewAction.php   |   0
 .../Downloadable/Product/Edit/Options.php     |   0
 .../Product/Edit/OptionsImportGrid.php        |   0
 .../Downloadable/Product/Edit/Related.php     |   0
 .../Downloadable/Product/Edit/RelatedGrid.php |   0
 .../Downloadable/Product/Edit/Sample.php      |   0
 .../Downloadable/Product/Edit/Save.php        |   0
 .../Product/Edit/ShowUpdateResult.php         |   0
 .../Product/Edit/SuggestAttributes.php        |   0
 .../Downloadable/Product/Edit/Upsell.php      |   0
 .../Downloadable/Product/Edit/UpsellGrid.php  |   0
 .../Downloadable/Product/Edit/Validate.php    |   0
 .../Downloadable/Product/Edit/Wysiwyg.php     |   0
 .../Helper/Plugin/Downloadable.php            |   0
 .../Controller/Customer/Products.php          |   0
 .../Downloadable/Controller/Download.php      |   0
 .../Downloadable/Controller/Download/Link.php |   0
 .../Controller/Download/LinkSample.php        |   0
 .../Controller/Download/Sample.php            |   0
 .../Helper/Catalog/Product/Configuration.php  |   0
 app/code/Magento/Downloadable/Helper/Data.php |   0
 .../Magento/Downloadable/Helper/Download.php  |   0
 app/code/Magento/Downloadable/Helper/File.php |   0
 app/code/Magento/Downloadable/LICENSE.txt     |   0
 app/code/Magento/Downloadable/LICENSE_AFL.txt |   0
 .../Downloadable/Model/ComponentInterface.php |   0
 .../Downloadable/Model/DownloadableOption.php |   0
 .../Downloadable/Model/File/Content.php       |   0
 .../Model/File/ContentUploader.php            |   0
 .../Model/File/ContentValidator.php           |   0
 app/code/Magento/Downloadable/Model/Link.php  |   0
 .../Downloadable/Model/Link/Builder.php       |   0
 .../Model/Link/ContentValidator.php           |   0
 .../Downloadable/Model/Link/CreateHandler.php |   0
 .../Downloadable/Model/Link/DeleteHandler.php |   0
 .../Downloadable/Model/Link/Purchased.php     |   0
 .../Model/Link/Purchased/Item.php             |   0
 .../Downloadable/Model/Link/ReadHandler.php   |   0
 .../Downloadable/Model/Link/UpdateHandler.php |   0
 .../Downloadable/Model/LinkRepository.php     |   0
 .../CartConfiguration/Plugin/Downloadable.php |   0
 .../Product/CopyConstructor/Downloadable.php  |   0
 .../Downloadable/Model/Product/Price.php      |   0
 .../Downloadable/Model/Product/Type.php       |   0
 .../TypeHandler/AbstractTypeHandler.php       |   0
 .../Model/Product/TypeHandler/Link.php        |   0
 .../Model/Product/TypeHandler/Sample.php      |   0
 .../Model/Product/TypeHandler/TypeHandler.php |   0
 .../TypeHandler/TypeHandlerInterface.php      |   0
 .../Plugin/Downloadable.php                   |   0
 .../Model/ProductOptionProcessor.php          |   0
 .../Model/Quote/Item/CartItemProcessor.php    |   0
 .../Model/ResourceModel/Indexer/Price.php     |   0
 .../Downloadable/Model/ResourceModel/Link.php |   0
 .../Model/ResourceModel/Link/Collection.php   |   0
 .../Model/ResourceModel/Link/Purchased.php    |   0
 .../Link/Purchased/Collection.php             |   0
 .../ResourceModel/Link/Purchased/Item.php     |   0
 .../Link/Purchased/Item/Collection.php        |   0
 .../Model/ResourceModel/Sample.php            |   0
 .../Model/ResourceModel/Sample/Collection.php |   0
 .../Sales/Order/Pdf/Items/AbstractItems.php   |   0
 .../Sales/Order/Pdf/Items/Creditmemo.php      |   0
 .../Model/Sales/Order/Pdf/Items/Invoice.php   |   0
 .../Magento/Downloadable/Model/Sample.php     |   0
 .../Downloadable/Model/Sample/Builder.php     |   0
 .../Model/Sample/ContentValidator.php         |   0
 .../Model/Sample/CreateHandler.php            |   0
 .../Model/Sample/DeleteHandler.php            |   0
 .../Downloadable/Model/Sample/ReadHandler.php |   0
 .../Model/Sample/UpdateHandler.php            |   0
 .../Downloadable/Model/SampleRepository.php   |   0
 .../Downloadable/Model/Source/Shareable.php   |   0
 .../Downloadable/Model/Source/TypeUpload.php  |   0
 .../Config/Source/Contentdisposition.php      |   0
 .../System/Config/Source/Orderitemstatus.php  |   0
 .../Observer/InitOptionRendererObserver.php   |   0
 .../IsAllowedGuestCheckoutObserver.php        |   0
 .../SaveDownloadableOrderItemObserver.php     |   0
 .../SetHasDownloadableProductsObserver.php    |   0
 .../Observer/SetLinkStatusObserver.php        |   0
 .../Downloadable/Pricing/Price/LinkPrice.php  |   0
 .../Pricing/Price/LinkPriceInterface.php      |   0
 app/code/Magento/Downloadable/README.md       |   0
 .../Downloadable/Setup/InstallData.php        |   0
 .../Downloadable/Setup/InstallSchema.php      |   0
 .../Edit/Tab/Downloadable/LinksTest.php       |   0
 .../Edit/Tab/Downloadable/SamplesTest.php     |   0
 .../Items/Column/Downloadable/NameTest.php    |   0
 .../Unit/Block/Catalog/Product/LinksTest.php  |   0
 .../Order/Email/Items/DownloadableTest.php    |   0
 .../Email/Items/Order/DownloadableTest.php    |   0
 .../Order/Item/Renderer/DownloadableTest.php  |   0
 .../Downloadable/File/UploadTest.php          |   0
 .../Downloadable/Product/Edit/LinkTest.php    |   0
 .../Downloadable/Product/Edit/SampleTest.php  |   0
 .../Helper/Plugin/DownloadableTest.php        |   0
 .../Controller/Download/LinkSampleTest.php    |   0
 .../Unit/Controller/Download/LinkTest.php     |   0
 .../Unit/Controller/Download/SampleTest.php   |   0
 .../Catalog/Product/ConfigurationTest.php     |   0
 .../Test/Unit/Helper/DownloadTest.php         |   0
 .../Test/Unit/Helper/FileTest.php             |   0
 .../Unit/Model/File/ContentValidatorTest.php  |   0
 .../Test/Unit/Model/Link/BuilderTest.php      |   0
 .../Unit/Model/Link/ContentValidatorTest.php  |   0
 .../Unit/Model/Link/CreateHandlerTest.php     |   0
 .../Unit/Model/Link/UpdateHandlerTest.php     |   0
 .../Test/Unit/Model/LinkRepositoryTest.php    |   0
 .../CopyConstructor/DownloadableTest.php      |   0
 .../CopyConstructor/_files/expected_data.php  |   0
 .../Model/Product/TypeHandler/LinkTest.php    |   0
 .../Model/Product/TypeHandler/SampleTest.php  |   0
 .../Test/Unit/Model/Product/TypeTest.php      |   0
 .../Plugin/DownloadableTest.php               |   0
 .../Unit/Model/ProductOptionProcessorTest.php |   0
 .../Quote/Item/CartItemProcessorTest.php      |   0
 .../Sales/Order/Pdf/Items/CreditmemoTest.php  |   0
 .../Test/Unit/Model/Sample/BuilderTest.php    |   0
 .../Model/Sample/ContentValidatorTest.php     |   0
 .../Unit/Model/Sample/CreateHandlerTest.php   |   0
 .../Unit/Model/Sample/UpdateHandlerTest.php   |   0
 .../Test/Unit/Model/SampleRepositoryTest.php  |   0
 .../IsAllowedGuestCheckoutObserverTest.php    |   0
 .../SaveDownloadableOrderItemObserverTest.php |   0
 .../Observer/SetLinkStatusObserverTest.php    |   0
 .../Test/Unit/Pricing/Price/LinkPriceTest.php |   0
 .../Product/Form/Modifier/CompositeTest.php   |   0
 .../Product/Form/Modifier/Data/LinksTest.php  |   0
 .../Form/Modifier/DownloadablePanelTest.php   |   0
 .../Product/Form/Modifier/LinksTest.php       |   0
 .../Product/Form/Modifier/SamplesTest.php     |   0
 .../Test/Unit/_files/download_mock.php        |   0
 .../Product/Form/Modifier/Composite.php       |   0
 .../Product/Form/Modifier/Data/Links.php      |   0
 .../Product/Form/Modifier/Data/Samples.php    |   0
 .../Form/Modifier/DownloadablePanel.php       |   0
 .../Product/Form/Modifier/Links.php           |   0
 .../Product/Form/Modifier/Samples.php         |   0
 .../Product/Form/Modifier/UsedDefault.php     |   0
 app/code/Magento/Downloadable/composer.json   |   0
 app/code/Magento/Downloadable/etc/acl.xml     |   0
 .../Magento/Downloadable/etc/adminhtml/di.xml |   0
 .../Downloadable/etc/adminhtml/menu.xml       |   0
 .../Downloadable/etc/adminhtml/routes.xml     |   0
 .../Downloadable/etc/adminhtml/system.xml     |   0
 .../Downloadable/etc/catalog_attributes.xml   |   0
 app/code/Magento/Downloadable/etc/config.xml  |   0
 app/code/Magento/Downloadable/etc/di.xml      |   0
 app/code/Magento/Downloadable/etc/events.xml  |   0
 .../Downloadable/etc/extension_attributes.xml |   0
 .../Magento/Downloadable/etc/fieldset.xml     |   0
 .../Magento/Downloadable/etc/frontend/di.xml  |   0
 .../Downloadable/etc/frontend/events.xml      |   0
 .../Downloadable/etc/frontend/page_types.xml  |   0
 .../Downloadable/etc/frontend/routes.xml      |   0
 app/code/Magento/Downloadable/etc/module.xml  |   0
 app/code/Magento/Downloadable/etc/pdf.xml     |   0
 .../Downloadable/etc/product_types.xml        |   0
 app/code/Magento/Downloadable/etc/sales.xml   |   0
 app/code/Magento/Downloadable/etc/webapi.xml  |   0
 .../Downloadable/etc/webapi_rest/di.xml       |   0
 .../Downloadable/etc/webapi_soap/di.xml       |   0
 app/code/Magento/Downloadable/i18n/en_US.csv  |   0
 .../Magento/Downloadable/registration.php     |   0
 .../layout/catalog_product_downloadable.xml   |   0
 .../layout/catalog_product_simple.xml         |   0
 ...catalog_product_view_type_downloadable.xml |   0
 .../layout/catalog_product_virtual.xml        |   0
 .../layout/customer_index_wishlist.xml        |   0
 .../adminhtml/layout/downloadable_items.xml   |   0
 .../layout/sales_order_creditmemo_new.xml     |   0
 .../sales_order_creditmemo_updateqty.xml      |   0
 .../layout/sales_order_creditmemo_view.xml    |   0
 .../layout/sales_order_invoice_new.xml        |   0
 .../layout/sales_order_invoice_updateqty.xml  |   0
 .../layout/sales_order_invoice_view.xml       |   0
 .../adminhtml/layout/sales_order_view.xml     |   0
 .../composite/fieldset/downloadable.phtml     |   0
 .../templates/product/edit/downloadable.phtml |   0
 .../product/edit/downloadable/links.phtml     |   0
 .../product/edit/downloadable/samples.phtml   |   0
 .../column/downloadable/creditmemo/name.phtml |   0
 .../column/downloadable/invoice/name.phtml    |   0
 .../items/column/downloadable/name.phtml      |   0
 .../web/downloadable-type-handler.js          |   0
 .../web/js/components/file-uploader.js        |   0
 .../js/components/is-downloadable-handler.js  |   0
 .../web/js/components/price-handler.js        |   0
 .../web/js/components/upload-type-handler.js  |   0
 .../components/use-price-default-handler.js   |   0
 .../template/components/file-uploader.html    |   0
 ...catalog_product_view_type_downloadable.xml |   0
 ...ckout_cart_configure_type_downloadable.xml |   0
 .../layout/checkout_cart_item_renderers.xml   |   0
 ...checkout_onepage_review_item_renderers.xml |   0
 .../layout/checkout_onepage_success.xml       |   0
 .../view/frontend/layout/customer_account.xml |   0
 .../layout/downloadable_customer_products.xml |   0
 .../layout/multishipping_checkout_success.xml |   0
 ...sales_email_order_creditmemo_renderers.xml |   0
 .../sales_email_order_invoice_renderers.xml   |   0
 .../layout/sales_email_order_renderers.xml    |   0
 .../sales_order_creditmemo_renderers.xml      |   0
 .../layout/sales_order_invoice_renderers.xml  |   0
 .../layout/sales_order_item_renderers.xml     |   0
 ...sales_order_print_creditmemo_renderers.xml |   0
 .../sales_order_print_invoice_renderers.xml   |   0
 .../layout/sales_order_print_renderers.xml    |   0
 .../view/frontend/requirejs-config.js         |   0
 .../templates/catalog/product/links.phtml     |   0
 .../templates/catalog/product/samples.phtml   |   0
 .../templates/catalog/product/type.phtml      |   0
 .../frontend/templates/checkout/success.phtml |   0
 .../templates/customer/products/list.phtml    |   0
 .../order/items/creditmemo/downloadable.phtml |   0
 .../order/items/invoice/downloadable.phtml    |   0
 .../order/items/order/downloadable.phtml      |   0
 .../frontend/templates/js/components.phtml    |   0
 .../items/renderer/downloadable.phtml         |   0
 .../invoice/items/renderer/downloadable.phtml |   0
 .../order/items/renderer/downloadable.phtml   |   0
 .../view/frontend/web/downloadable.js         |   0
 .../DownloadableImportExport/Helper/Data.php  |   0
 .../Helper/Uploader.php                       |   0
 .../DownloadableImportExport/LICENSE.txt      |   0
 .../DownloadableImportExport/LICENSE_AFL.txt  |   0
 .../Import/Product/Type/Downloadable.php      |   0
 .../DownloadableImportExport/README.md        |   0
 .../Import/Product/Type/DownloadableTest.php  |   0
 .../DownloadableImportExport/composer.json    |   0
 .../DownloadableImportExport/etc/import.xml   |   0
 .../DownloadableImportExport/etc/module.xml   |   0
 .../DownloadableImportExport/i18n/en_US.csv   |   0
 .../DownloadableImportExport/registration.php |   0
 .../Api/AttributeGroupRepositoryInterface.php |   0
 .../Eav/Api/AttributeManagementInterface.php  |   0
 .../AttributeOptionManagementInterface.php    |   0
 .../Eav/Api/AttributeRepositoryInterface.php  |   0
 .../Api/AttributeSetManagementInterface.php   |   0
 .../Api/AttributeSetRepositoryInterface.php   |   0
 .../Data/AttributeDefaultValueInterface.php   |   0
 .../Data/AttributeFrontendLabelInterface.php  |   0
 .../Eav/Api/Data/AttributeGroupInterface.php  |   0
 .../AttributeGroupSearchResultsInterface.php  |   0
 .../Eav/Api/Data/AttributeInterface.php       |   0
 .../Eav/Api/Data/AttributeOptionInterface.php |   0
 .../Data/AttributeOptionLabelInterface.php    |   0
 .../Data/AttributeSearchResultsInterface.php  |   0
 .../Eav/Api/Data/AttributeSetInterface.php    |   0
 .../AttributeSetSearchResultsInterface.php    |   0
 .../Data/AttributeValidationRuleInterface.php |   0
 .../Eav/Block/Adminhtml/Attribute/Edit/Js.php |   0
 .../Attribute/Edit/Main/AbstractMain.php      |   0
 .../Edit/Options/AbstractOptions.php          |   0
 .../Attribute/Edit/Options/Labels.php         |   0
 .../Attribute/Edit/Options/Options.php        |   0
 .../Adminhtml/Attribute/Grid/AbstractGrid.php |   0
 .../Adminhtml/Attribute/PropertyLocker.php    |   0
 app/code/Magento/Eav/Helper/Data.php          |   0
 app/code/Magento/Eav/LICENSE.txt              |   0
 app/code/Magento/Eav/LICENSE_AFL.txt          |   0
 .../Attribute/Validation/Rules/Options.php    |   0
 .../System/Config/Source/Inputtype.php        |   0
 .../Config/Source/Inputtype/Validator.php     |   0
 .../CollectionProcessor/FilterProcessor.php   |   0
 .../AttributeGroupAttributeSetIdFilter.php    |   0
 .../AttributeGroupCodeFilter.php              |   0
 .../AttributeSetEntityTypeCodeFilter.php      |   0
 app/code/Magento/Eav/Model/Attribute.php      |   0
 .../Eav/Model/Attribute/Data/AbstractData.php |   0
 .../Eav/Model/Attribute/Data/Boolean.php      |   0
 .../Magento/Eav/Model/Attribute/Data/Date.php |   0
 .../Magento/Eav/Model/Attribute/Data/File.php |   0
 .../Eav/Model/Attribute/Data/Hidden.php       |   0
 .../Eav/Model/Attribute/Data/Image.php        |   0
 .../Eav/Model/Attribute/Data/Multiline.php    |   0
 .../Eav/Model/Attribute/Data/Multiselect.php  |   0
 .../Eav/Model/Attribute/Data/Select.php       |   0
 .../Magento/Eav/Model/Attribute/Data/Text.php |   0
 .../Eav/Model/Attribute/Data/Textarea.php     |   0
 .../Eav/Model/Attribute/GroupRepository.php   |   0
 .../Eav/Model/AttributeDataFactory.php        |   0
 .../Magento/Eav/Model/AttributeFactory.php    |   0
 .../Magento/Eav/Model/AttributeManagement.php |   0
 .../Magento/Eav/Model/AttributeProvider.php   |   0
 .../Magento/Eav/Model/AttributeRepository.php |   0
 .../Eav/Model/AttributeSetManagement.php      |   0
 .../Eav/Model/AttributeSetRepository.php      |   0
 app/code/Magento/Eav/Model/Cache/Type.php     |   0
 app/code/Magento/Eav/Model/Config.php         |   0
 .../Eav/Model/CustomAttributesMapper.php      |   0
 .../Model/EavCustomAttributeTypeLocator.php   |   0
 .../ComplexType.php                           |   0
 .../SimpleType.php                            |   0
 app/code/Magento/Eav/Model/Entity.php         |   0
 .../Eav/Model/Entity/AbstractEntity.php       |   0
 .../Magento/Eav/Model/Entity/Attribute.php    |   0
 .../Entity/Attribute/AbstractAttribute.php    |   0
 .../AttributeGroupAlreadyExistsException.php  |   0
 .../Entity/Attribute/AttributeInterface.php   |   0
 .../Attribute/Backend/AbstractBackend.php     |   0
 .../Entity/Attribute/Backend/ArrayBackend.php |   0
 .../Attribute/Backend/BackendInterface.php    |   0
 .../Entity/Attribute/Backend/Datetime.php     |   0
 .../Attribute/Backend/DefaultBackend.php      |   0
 .../Entity/Attribute/Backend/Increment.php    |   0
 .../Entity/Attribute/Backend/JsonEncoded.php  |   0
 .../Model/Entity/Attribute/Backend/Store.php  |   0
 .../Entity/Attribute/Backend/Time/Created.php |   0
 .../Entity/Attribute/Backend/Time/Updated.php |   0
 .../Eav/Model/Entity/Attribute/Config.php     |   0
 .../Entity/Attribute/Config/Converter.php     |   0
 .../Model/Entity/Attribute/Config/Reader.php  |   0
 .../Entity/Attribute/Config/SchemaLocator.php |   0
 .../Eav/Model/Entity/Attribute/Exception.php  |   0
 .../Attribute/Frontend/AbstractFrontend.php   |   0
 .../Entity/Attribute/Frontend/Datetime.php    |   0
 .../Attribute/Frontend/DefaultFrontend.php    |   0
 .../Attribute/Frontend/FrontendInterface.php  |   0
 .../Model/Entity/Attribute/FrontendLabel.php  |   0
 .../Eav/Model/Entity/Attribute/Group.php      |   0
 .../Eav/Model/Entity/Attribute/Option.php     |   0
 .../Model/Entity/Attribute/OptionLabel.php    |   0
 .../Entity/Attribute/OptionManagement.php     |   0
 .../Attribute/ScopedAttributeInterface.php    |   0
 .../Eav/Model/Entity/Attribute/Set.php        |   0
 .../Attribute/Source/AbstractSource.php       |   0
 .../Model/Entity/Attribute/Source/Boolean.php |   0
 .../Model/Entity/Attribute/Source/Config.php  |   0
 .../Attribute/Source/SourceInterface.php      |   0
 .../Model/Entity/Attribute/Source/Store.php   |   0
 .../Model/Entity/Attribute/Source/Table.php   |   0
 .../Model/Entity/Attribute/ValidationRule.php |   0
 .../Eav/Model/Entity/AttributeLoader.php      |   0
 .../Model/Entity/AttributeLoaderInterface.php |   0
 .../Entity/Collection/AbstractCollection.php  |   0
 .../VersionControl/AbstractCollection.php     |   0
 app/code/Magento/Eav/Model/Entity/Context.php |   0
 .../Eav/Model/Entity/EntityInterface.php      |   0
 .../Entity/Increment/AbstractIncrement.php    |   0
 .../Eav/Model/Entity/Increment/Alphanum.php   |   0
 .../Entity/Increment/IncrementInterface.php   |   0
 .../Model/Entity/Increment/NumericValue.php   |   0
 .../Eav/Model/Entity/Setup/Context.php        |   0
 .../Eav/Model/Entity/Setup/PropertyMapper.php |   0
 .../Entity/Setup/PropertyMapper/Composite.php |   0
 .../Entity/Setup/PropertyMapperAbstract.php   |   0
 .../Entity/Setup/PropertyMapperInterface.php  |   0
 app/code/Magento/Eav/Model/Entity/Store.php   |   0
 app/code/Magento/Eav/Model/Entity/Type.php    |   0
 .../Entity/VersionControl/AbstractEntity.php  |   0
 .../Model/Entity/VersionControl/Metadata.php  |   0
 app/code/Magento/Eav/Model/Form.php           |   0
 app/code/Magento/Eav/Model/Form/Element.php   |   0
 app/code/Magento/Eav/Model/Form/Factory.php   |   0
 app/code/Magento/Eav/Model/Form/Fieldset.php  |   0
 app/code/Magento/Eav/Model/Form/Type.php      |   0
 .../Eav/Model/ResourceModel/Attribute.php     |   0
 .../ResourceModel/Attribute/Collection.php    |   0
 .../ProviderInterface.php                     |   0
 .../Model/ResourceModel/AttributeLoader.php   |   0
 .../ResourceModel/AttributePersistor.php      |   0
 .../Eav/Model/ResourceModel/Config.php        |   0
 .../Eav/Model/ResourceModel/CreateHandler.php |   0
 .../Model/ResourceModel/Entity/Attribute.php  |   0
 .../Entity/Attribute/Collection.php           |   0
 .../Entity/Attribute/Grid/Collection.php      |   0
 .../ResourceModel/Entity/Attribute/Group.php  |   0
 .../Entity/Attribute/Group/Collection.php     |   0
 .../ResourceModel/Entity/Attribute/Option.php |   0
 .../Entity/Attribute/Option/Collection.php    |   0
 .../ResourceModel/Entity/Attribute/Set.php    |   0
 .../Entity/Attribute/Set/Collection.php       |   0
 .../Eav/Model/ResourceModel/Entity/Store.php  |   0
 .../Eav/Model/ResourceModel/Entity/Type.php   |   0
 .../ResourceModel/Entity/Type/Collection.php  |   0
 .../Model/ResourceModel/Form/Attribute.php    |   0
 .../Form/Attribute/Collection.php             |   0
 .../Eav/Model/ResourceModel/Form/Element.php  |   0
 .../ResourceModel/Form/Element/Collection.php |   0
 .../Eav/Model/ResourceModel/Form/Fieldset.php |   0
 .../Form/Fieldset/Collection.php              |   0
 .../Eav/Model/ResourceModel/Form/Type.php     |   0
 .../ResourceModel/Form/Type/Collection.php    |   0
 .../Eav/Model/ResourceModel/Helper.php        |   0
 .../Eav/Model/ResourceModel/ReadHandler.php   |   0
 .../Eav/Model/ResourceModel/ReadSnapshot.php  |   0
 .../Eav/Model/ResourceModel/UpdateHandler.php |   0
 .../Eav/Model/Validator/Attribute/Backend.php |   0
 .../Eav/Model/Validator/Attribute/Data.php    |   0
 .../Model/ResourceModel/Entity/Attribute.php  |   0
 app/code/Magento/Eav/README.md                |   0
 app/code/Magento/Eav/Setup/EavSetup.php       |   0
 app/code/Magento/Eav/Setup/InstallData.php    |   0
 app/code/Magento/Eav/Setup/InstallSchema.php  |   0
 app/code/Magento/Eav/Setup/UpgradeSchema.php  |   0
 .../Attribute/PropertyLockerTest.php          |   0
 .../Magento/Eav/Test/Unit/Helper/DataTest.php |   0
 .../Validation/Rules/OptionsTest.php          |   0
 .../Config/Source/Inputtype/ValidatorTest.php |   0
 .../System/Config/Source/InputtypeTest.php    |   0
 ...AttributeGroupAttributeSetIdFilterTest.php |   0
 .../AttributeGroupCodeFilterTest.php          |   0
 .../AttributeSetEntityTypeCodeFilterTest.php  |   0
 .../FilterProcessorTest.php                   |   0
 .../Model/Attribute/Data/AbstractDataTest.php |   0
 .../Unit/Model/Attribute/Data/BooleanTest.php |   0
 .../Unit/Model/Attribute/Data/DateTest.php    |   0
 .../Unit/Model/Attribute/Data/FileTest.php    |   0
 .../Unit/Model/Attribute/Data/ImageTest.php   |   0
 .../Model/Attribute/Data/MultilineTest.php    |   0
 .../Model/Attribute/Data/MultiselectTest.php  |   0
 .../Unit/Model/Attribute/Data/SelectTest.php  |   0
 .../Unit/Model/Attribute/Data/TextTest.php    |   0
 .../Model/Attribute/Data/_files/image.ico     | Bin
 .../Model/Attribute/Data/_files/image.jpg     | Bin
 .../Model/Attribute/GroupRepositoryTest.php   |   0
 .../Test/Unit/Model/AttributeFactoryTest.php  |   0
 .../Unit/Model/AttributeManagementTest.php    |   0
 .../Unit/Model/AttributeRepositoryTest.php    |   0
 .../Unit/Model/AttributeSetManagementTest.php |   0
 .../Unit/Model/AttributeSetRepositoryTest.php |   0
 .../Eav/Test/Unit/Model/ConfigTest.php        |   0
 .../Unit/Model/CustomAttributesMapperTest.php |   0
 .../EavCustomAttributeTypeLocatorTest.php     |   0
 .../Unit/Model/Entity/AbstractEntityTest.php  |   0
 .../Attribute/AbstractAttributeTest.php       |   0
 .../Entity/Attribute/Backend/AbstractTest.php |   0
 .../Attribute/Backend/ArrayBackendTest.php    |   0
 .../Attribute/Backend/JsonEncodedTest.php     |   0
 .../Entity/Attribute/Config/ConverterTest.php |   0
 .../Model/Entity/Attribute/Config/XsdTest.php |   0
 .../Config/_files/eav_attributes.php          |   0
 .../Config/_files/eav_attributes.xml          |   0
 .../_files/invalidEavAttributeXmlArray.php    |   0
 .../Model/Entity/Attribute/ConfigTest.php     |   0
 .../Attribute/Frontend/DatetimeTest.php       |   0
 .../Frontend/DefaultFrontendTest.php          |   0
 .../Unit/Model/Entity/Attribute/GroupTest.php |   0
 .../Entity/Attribute/OptionManagementTest.php |   0
 .../Unit/Model/Entity/Attribute/SetTest.php   |   0
 .../Entity/Attribute/Source/BooleanTest.php   |   0
 .../Entity/Attribute/Source/TableTest.php     |   0
 .../Unit/Model/Entity/AttributeLoaderTest.php |   0
 .../Test/Unit/Model/Entity/AttributeTest.php  |   0
 .../Collection/AbstractCollectionStub.php     |   0
 .../Collection/AbstractCollectionTest.php     |   0
 .../VersionControl/AbstractCollectionStub.php |   0
 .../VersionControl/AbstractCollectionTest.php |   0
 .../Model/Entity/Increment/AlphanumTest.php   |   0
 .../Model/Entity/Increment/NumericTest.php    |   0
 .../Eav/Test/Unit/Model/Entity/TypeTest.php   |   0
 .../VersionControl/AbstractEntityTest.php     |   0
 .../Entity/VersionControl/MetadataTest.php    |   0
 .../Magento/Eav/Test/Unit/Model/FormTest.php  |   0
 .../Attribute/CollectionTest.php              |   0
 .../ResourceModel/AttributeLoaderTest.php     |   0
 .../Attribute/Option/CollectionTest.php       |   0
 .../Entity/Attribute/SetTest.php              |   0
 .../ResourceModel/Entity/AttributeTest.php    |   0
 .../Model/ResourceModel/ReadHandlerTest.php   |   0
 .../Model/Validator/Attribute/BackendTest.php |   0
 .../Model/Validator/Attribute/DataTest.php    |   0
 .../ResourceModel/Entity/AttributeTest.php    |   0
 .../_files/describe_table_eav_attribute.php   |   0
 app/code/Magento/Eav/composer.json            |   0
 app/code/Magento/Eav/etc/cache.xml            |   0
 app/code/Magento/Eav/etc/config.xml           |   0
 app/code/Magento/Eav/etc/di.xml               |   0
 app/code/Magento/Eav/etc/eav_attributes.xsd   |   0
 .../Magento/Eav/etc/extension_attributes.xml  |   0
 app/code/Magento/Eav/etc/module.xml           |   0
 app/code/Magento/Eav/etc/validation.xml       |   0
 app/code/Magento/Eav/etc/webapi.xml           |   0
 app/code/Magento/Eav/i18n/en_US.csv           |   0
 app/code/Magento/Eav/registration.php         |   0
 .../templates/attribute/edit/js.phtml         |   0
 .../Email/Block/Adminhtml/Template.php        |   0
 .../Email/Block/Adminhtml/Template/Edit.php   |   0
 .../Block/Adminhtml/Template/Edit/Form.php    |   0
 .../Adminhtml/Template/Grid/Filter/Type.php   |   0
 .../Template/Grid/Renderer/Action.php         |   0
 .../Template/Grid/Renderer/Sender.php         |   0
 .../Adminhtml/Template/Grid/Renderer/Type.php |   0
 .../Block/Adminhtml/Template/Preview.php      |   0
 .../Controller/Adminhtml/Email/Template.php   |   0
 .../Email/Template/DefaultTemplate.php        |   0
 .../Adminhtml/Email/Template/Delete.php       |   0
 .../Adminhtml/Email/Template/Edit.php         |   0
 .../Adminhtml/Email/Template/Grid.php         |   0
 .../Adminhtml/Email/Template/Index.php        |   0
 .../Adminhtml/Email/Template/NewAction.php    |   0
 .../Adminhtml/Email/Template/Preview.php      |   0
 .../Adminhtml/Email/Template/Save.php         |   0
 app/code/Magento/Email/LICENSE.txt            |   0
 app/code/Magento/Email/LICENSE_AFL.txt        |   0
 .../Magento/Email/Model/AbstractTemplate.php  |   0
 .../Magento/Email/Model/BackendTemplate.php   |   0
 .../Email/Model/Design/Backend/Logo.php       |   0
 .../Model/Mail/TransportInterfacePlugin.php   |   0
 .../Email/Model/Plugin/WindowsSmtpConfig.php  |   0
 .../Email/Model/ResourceModel/Template.php    |   0
 .../ResourceModel/Template/Collection.php     |   0
 .../Magento/Email/Model/Source/Variables.php  |   0
 app/code/Magento/Email/Model/Template.php     |   0
 .../Magento/Email/Model/Template/Config.php   |   0
 .../Email/Model/Template/Config/Converter.php |   0
 .../Email/Model/Template/Config/Data.php      |   0
 .../Model/Template/Config/FileIterator.php    |   0
 .../Model/Template/Config/FileResolver.php    |   0
 .../Email/Model/Template/Config/Reader.php    |   0
 .../Model/Template/Config/SchemaLocator.php   |   0
 .../Email/Model/Template/Css/Processor.php    |   0
 .../Magento/Email/Model/Template/Filter.php   |   0
 .../Email/Model/Template/SenderResolver.php   |   0
 app/code/Magento/Email/Model/Transport.php    |   0
 app/code/Magento/Email/README.md              |   0
 .../Magento/Email/Setup/InstallSchema.php     |   0
 .../Adminhtml/Template/Edit/FormTest.php      |   0
 .../Block/Adminhtml/Template/EditTest.php     |   0
 .../Template/Grid/Renderer/ActionTest.php     |   0
 .../Template/Grid/Renderer/SenderTest.php     |   0
 .../Template/Grid/Renderer/TypeTest.php       |   0
 .../Block/Adminhtml/Template/PreviewTest.php  |   0
 .../Unit/Block/Adminhtml/TemplateTest.php     |   0
 .../Adminhtml/Email/Template/EditTest.php     |   0
 .../Adminhtml/Email/Template/IndexTest.php    |   0
 .../Adminhtml/Email/Template/PreviewTest.php  |   0
 .../Test/Unit/Model/AbstractTemplateTest.php  |   0
 .../Test/Unit/Model/BackendTemplateTest.php   |   0
 .../Mail/TransportInterfacePluginTest.php     |   0
 .../Test/Unit/Model/Source/VariablesTest.php  |   0
 .../Model/Template/Config/ConverterTest.php   |   0
 .../Template/Config/FileIteratorTest.php      |   0
 .../Template/Config/FileResolverTest.php      |   0
 .../Unit/Model/Template/Config/ReaderTest.php |   0
 .../Template/Config/SchemaLocatorTest.php     |   0
 .../Unit/Model/Template/Config/XsdTest.php    |   0
 .../ModuleOne/etc/email_templates_one.xml     |   0
 .../ModuleTwo/etc/email_templates_two.xml     |   0
 .../Config/_files/email_templates_merged.php  |   0
 .../Config/_files/email_templates_merged.xml  |   0
 .../Test/Unit/Model/Template/ConfigTest.php   |   0
 .../Unit/Model/Template/Css/ProcessorTest.php |   0
 .../Test/Unit/Model/Template/FilterTest.php   |   0
 .../Email/Test/Unit/Model/TemplateTest.php    |   0
 .../Email/Test/Unit/Model/TransportTest.php   |   0
 app/code/Magento/Email/composer.json          |   0
 app/code/Magento/Email/etc/acl.xml            |   0
 app/code/Magento/Email/etc/adminhtml/di.xml   |   0
 app/code/Magento/Email/etc/adminhtml/menu.xml |   0
 .../Magento/Email/etc/adminhtml/routes.xml    |   0
 app/code/Magento/Email/etc/config.xml         |   0
 app/code/Magento/Email/etc/di.xml             |   0
 .../Magento/Email/etc/email_templates.xml     |   0
 .../Magento/Email/etc/email_templates.xsd     |   0
 app/code/Magento/Email/etc/frontend/di.xml    |   0
 app/code/Magento/Email/etc/module.xml         |   0
 app/code/Magento/Email/i18n/en_US.csv         |   0
 app/code/Magento/Email/registration.php       |   0
 .../layout/adminhtml_email_template_grid.xml  |   0
 .../adminhtml_email_template_grid_block.xml   |   0
 .../layout/adminhtml_email_template_index.xml |   0
 .../adminhtml_email_template_preview.xml      |   0
 .../adminhtml/templates/template/edit.phtml   |   0
 .../adminhtml/templates/template/list.phtml   |   0
 .../templates/template/preview.phtml          |   0
 .../ui_component/design_config_form.xml       |   0
 .../Email/view/frontend/email/footer.html     |   0
 .../Email/view/frontend/email/header.html     |   0
 .../Email/view/frontend/web/logo_email.png    | Bin
 .../Block/Adminhtml/Crypt/Key/Edit.php        |   0
 .../Block/Adminhtml/Crypt/Key/Form.php        |   0
 .../Controller/Adminhtml/Crypt/Key.php        |   0
 .../Controller/Adminhtml/Crypt/Key/Index.php  |   0
 .../Controller/Adminhtml/Crypt/Key/Save.php   |   0
 app/code/Magento/EncryptionKey/LICENSE.txt    |   0
 .../Magento/EncryptionKey/LICENSE_AFL.txt     |   0
 .../Model/ResourceModel/Key/Change.php        |   0
 app/code/Magento/EncryptionKey/README.md      |   0
 .../Adminhtml/Crypt/Key/SaveTest.php          |   0
 .../Model/ResourceModel/Key/ChangeTest.php    |   0
 app/code/Magento/EncryptionKey/composer.json  |   0
 app/code/Magento/EncryptionKey/etc/acl.xml    |   0
 .../EncryptionKey/etc/adminhtml/menu.xml      |   0
 .../EncryptionKey/etc/adminhtml/routes.xml    |   0
 app/code/Magento/EncryptionKey/etc/config.xml |   0
 app/code/Magento/EncryptionKey/etc/module.xml |   0
 app/code/Magento/EncryptionKey/i18n/en_US.csv |   0
 .../Magento/EncryptionKey/registration.php    |   0
 .../layout/adminhtml_crypt_key_index.xml      |   0
 app/code/Magento/Fedex/LICENSE.txt            |   0
 app/code/Magento/Fedex/LICENSE_AFL.txt        |   0
 app/code/Magento/Fedex/Model/Carrier.php      |   0
 .../Magento/Fedex/Model/Source/Dropoff.php    |   0
 .../Magento/Fedex/Model/Source/Freemethod.php |   0
 .../Magento/Fedex/Model/Source/Generic.php    |   0
 .../Magento/Fedex/Model/Source/Method.php     |   0
 .../Magento/Fedex/Model/Source/Packaging.php  |   0
 .../Fedex/Model/Source/Unitofmeasure.php      |   0
 app/code/Magento/Fedex/README.md              |   0
 app/code/Magento/Fedex/Setup/InstallData.php  |   0
 .../Fedex/Test/Unit/Model/CarrierTest.php     |   0
 app/code/Magento/Fedex/composer.json          |   0
 .../Magento/Fedex/etc/adminhtml/system.xml    |   0
 app/code/Magento/Fedex/etc/config.xml         |   0
 app/code/Magento/Fedex/etc/di.xml             |   0
 app/code/Magento/Fedex/etc/module.xml         |   0
 .../Fedex/etc/wsdl/RateService_v10.wsdl       |   0
 .../Fedex/etc/wsdl/RateService_v9.wsdl        |   0
 .../Fedex/etc/wsdl/ShipService_v10.wsdl       |   0
 .../Fedex/etc/wsdl/ShipService_v9.wsdl        |   0
 .../Fedex/etc/wsdl/TrackService_v10.wsdl      |   0
 app/code/Magento/Fedex/i18n/en_US.csv         |   0
 app/code/Magento/Fedex/registration.php       |   0
 .../frontend/layout/checkout_cart_index.xml   |   0
 .../frontend/layout/checkout_index_index.xml  |   0
 .../model/shipping-rates-validation-rules.js  |   0
 .../web/js/model/shipping-rates-validator.js  |   0
 .../web/js/view/shipping-rates-validation.js  |   0
 .../Api/CartRepositoryInterface.php           |   0
 .../GiftMessage/Api/Data/MessageInterface.php |   0
 .../Api/GuestCartRepositoryInterface.php      |   0
 .../Api/GuestItemRepositoryInterface.php      |   0
 .../Api/ItemRepositoryInterface.php           |   0
 .../Api/OrderItemRepositoryInterface.php      |   0
 .../Api/OrderRepositoryInterface.php          |   0
 .../Adminhtml/Product/Helper/Form/Config.php  |   0
 .../Adminhtml/Sales/Order/Create/Form.php     |   0
 .../Sales/Order/Create/Giftoptions.php        |   0
 .../Adminhtml/Sales/Order/Create/Items.php    |   0
 .../Block/Adminhtml/Sales/Order/View/Form.php |   0
 .../Sales/Order/View/Giftoptions.php          |   0
 .../Adminhtml/Sales/Order/View/Items.php      |   0
 .../GiftMessage/Block/Cart/GiftOptions.php    |   0
 .../Item/Renderer/Actions/GiftOptions.php     |   0
 .../Item/Renderer/Actions/ItemIdProcessor.php |   0
 .../Actions/LayoutProcessorInterface.php      |   0
 .../GiftMessage/Block/Message/Inline.php      |   0
 .../Message/Multishipping/Plugin/ItemsBox.php |   0
 .../Magento/GiftMessage/Helper/Message.php    |   0
 app/code/Magento/GiftMessage/LICENSE.txt      |   0
 app/code/Magento/GiftMessage/LICENSE_AFL.txt  |   0
 .../GiftMessage/Model/CartRepository.php      |   0
 .../Model/CompositeConfigProvider.php         |   0
 .../Model/GiftMessageConfigProvider.php       |   0
 .../GiftMessage/Model/GiftMessageManager.php  |   0
 .../GiftMessage/Model/GuestCartRepository.php |   0
 .../GiftMessage/Model/GuestItemRepository.php |   0
 .../GiftMessage/Model/ItemRepository.php      |   0
 .../Magento/GiftMessage/Model/Message.php     |   0
 .../GiftMessage/Model/OrderItemRepository.php |   0
 .../GiftMessage/Model/OrderRepository.php     |   0
 .../GiftMessage/Model/Plugin/OrderGet.php     |   0
 .../GiftMessage/Model/Plugin/OrderSave.php    |   0
 .../GiftMessage/Model/Plugin/QuoteItem.php    |   0
 .../Model/ResourceModel/Message.php           |   0
 .../ResourceModel/Message/Collection.php      |   0
 app/code/Magento/GiftMessage/Model/Save.php   |   0
 .../Model/Type/Plugin/Multishipping.php       |   0
 .../GiftMessage/Model/Type/Plugin/Onepage.php |   0
 .../Magento/GiftMessage/Model/TypeFactory.php |   0
 ...MultishippingEventCreateOrdersObserver.php |   0
 ...SalesEventOrderItemToQuoteItemObserver.php |   0
 .../SalesEventOrderToQuoteObserver.php        |   0
 .../SalesEventQuoteSubmitBeforeObserver.php   |   0
 app/code/Magento/GiftMessage/README.md        |   0
 .../Magento/GiftMessage/Setup/InstallData.php |   0
 .../GiftMessage/Setup/InstallSchema.php       |   0
 .../Magento/GiftMessage/Setup/UpgradeData.php |   0
 .../Test/Unit/Block/Cart/GiftOptionsTest.php  |   0
 .../Item/Renderer/Actions/GiftOptionsTest.php |   0
 .../Renderer/Actions/ItemIdProcessorTest.php  |   0
 .../Test/Unit/Block/Message/InlineTest.php    |   0
 .../Test/Unit/Helper/MessageTest.php          |   0
 .../Test/Unit/Model/CartRepositoryTest.php    |   0
 .../Model/CompositeConfigProviderTest.php     |   0
 .../Model/GiftMessageConfigProviderTest.php   |   0
 .../Unit/Model/GiftMessageManagerTest.php     |   0
 .../Unit/Model/GuestCartRepositoryTest.php    |   0
 .../Unit/Model/GuestItemRepositoryTest.php    |   0
 .../Test/Unit/Model/ItemRepositoryTest.php    |   0
 .../Unit/Model/OrderItemRepositoryTest.php    |   0
 .../Test/Unit/Model/Plugin/OrderGetTest.php   |   0
 .../Test/Unit/Model/Plugin/OrderSaveTest.php  |   0
 .../Test/Unit/Model/Plugin/QuoteItemTest.php  |   0
 .../GiftMessage/Test/Unit/Model/SaveTest.php  |   0
 .../Model/Type/Plugin/MultishippingTest.php   |   0
 .../Unit/Model/Type/Plugin/OnepageTest.php    |   0
 ...ishippingEventCreateOrdersObserverTest.php |   0
 ...alesEventQuoteSubmitBeforeObserverTest.php |   0
 .../Product/Modifier/GiftMessageTest.php      |   0
 .../Product/Modifier/GiftMessage.php          |   0
 app/code/Magento/GiftMessage/composer.json    |   0
 .../Magento/GiftMessage/etc/adminhtml/di.xml  |   0
 .../GiftMessage/etc/adminhtml/events.xml      |   0
 .../GiftMessage/etc/adminhtml/system.xml      |   0
 .../GiftMessage/etc/catalog_attributes.xml    |   0
 app/code/Magento/GiftMessage/etc/config.xml   |   0
 app/code/Magento/GiftMessage/etc/di.xml       |   0
 .../GiftMessage/etc/extension_attributes.xml  |   0
 app/code/Magento/GiftMessage/etc/fieldset.xml |   0
 .../Magento/GiftMessage/etc/frontend/di.xml   |   0
 .../GiftMessage/etc/frontend/events.xml       |   0
 .../GiftMessage/etc/frontend/routes.xml       |   0
 app/code/Magento/GiftMessage/etc/module.xml   |   0
 app/code/Magento/GiftMessage/etc/webapi.xml   |   0
 .../GiftMessage/etc/webapi_rest/events.xml    |   0
 app/code/Magento/GiftMessage/i18n/en_US.csv   |   0
 app/code/Magento/GiftMessage/registration.php |   0
 .../layout/sales_order_create_index.xml       |   0
 .../sales_order_create_load_block_data.xml    |   0
 .../sales_order_create_load_block_items.xml   |   0
 .../adminhtml/layout/sales_order_view.xml     |   0
 .../adminhtml/templates/giftoptionsform.phtml |   0
 .../view/adminhtml/templates/popup.phtml      |   0
 .../sales/order/create/giftoptions.phtml      |   0
 .../templates/sales/order/create/items.phtml  |   0
 .../sales/order/view/giftoptions.phtml        |   0
 .../templates/sales/order/view/items.phtml    |   0
 .../frontend/layout/checkout_cart_index.xml   |   0
 .../layout/checkout_cart_item_renderers.xml   |   0
 .../view/frontend/requirejs-config.js         |   0
 .../templates/cart/gift_options.phtml         |   0
 .../item/renderer/actions/gift_options.phtml  |   0
 .../view/frontend/templates/inline.phtml      |   0
 .../view/frontend/web/extra-options.js        |   0
 .../view/frontend/web/gift-options.js         |   0
 .../frontend/web/js/action/gift-options.js    |   0
 .../frontend/web/js/model/gift-message.js     |   0
 .../frontend/web/js/model/gift-options.js     |   0
 .../view/frontend/web/js/model/url-builder.js |   0
 .../view/frontend/web/js/view/gift-message.js |   0
 .../web/template/gift-message-form.html       |   0
 .../web/template/gift-message-item-level.html |   0
 .../frontend/web/template/gift-message.html   |   0
 app/code/Magento/GoogleAdwords/Block/Code.php |   0
 .../Magento/GoogleAdwords/Helper/Data.php     |   0
 app/code/Magento/GoogleAdwords/LICENSE.txt    |   0
 .../Magento/GoogleAdwords/LICENSE_AFL.txt     |   0
 .../Config/Backend/AbstractConversion.php     |   0
 .../Model/Config/Backend/Color.php            |   0
 .../Model/Config/Backend/ConversionId.php     |   0
 .../Model/Config/Source/Language.php          |   0
 .../Model/Config/Source/ValueType.php         |   0
 .../Model/Filter/UppercaseTitle.php           |   0
 .../GoogleAdwords/Model/Validator/Factory.php |   0
 .../Observer/SetConversionValueObserver.php   |   0
 app/code/Magento/GoogleAdwords/README.md      |   0
 .../Test/Unit/Helper/DataTest.php             |   0
 .../Model/Config/Source/ValueTypeTest.php     |   0
 .../Unit/Model/Filter/UppercaseTitleTest.php  |   0
 .../Test/Unit/Model/Validator/FactoryTest.php |   0
 .../SetConversionValueObserverTest.php        |   0
 app/code/Magento/GoogleAdwords/composer.json  |   0
 .../GoogleAdwords/etc/adminhtml/system.xml    |   0
 app/code/Magento/GoogleAdwords/etc/config.xml |   0
 app/code/Magento/GoogleAdwords/etc/di.xml     |   0
 .../GoogleAdwords/etc/frontend/events.xml     |   0
 app/code/Magento/GoogleAdwords/etc/module.xml |   0
 app/code/Magento/GoogleAdwords/i18n/en_US.csv |   0
 .../Magento/GoogleAdwords/registration.php    |   0
 .../layout/checkout_onepage_success.xml       |   0
 .../view/frontend/templates/code.phtml        |   0
 app/code/Magento/GoogleAnalytics/Block/Ga.php |   0
 .../Magento/GoogleAnalytics/Helper/Data.php   |   0
 app/code/Magento/GoogleAnalytics/LICENSE.txt  |   0
 .../Magento/GoogleAnalytics/LICENSE_AFL.txt   |   0
 ...nalyticsOnOrderSuccessPageViewObserver.php |   0
 app/code/Magento/GoogleAnalytics/README.md    |   0
 .../Test/Unit/Block/GaTest.php                |   0
 .../Magento/GoogleAnalytics/composer.json     |   0
 app/code/Magento/GoogleAnalytics/etc/acl.xml  |   0
 .../GoogleAnalytics/etc/adminhtml/system.xml  |   0
 app/code/Magento/GoogleAnalytics/etc/di.xml   |   0
 .../GoogleAnalytics/etc/frontend/events.xml   |   0
 .../Magento/GoogleAnalytics/etc/module.xml    |   0
 .../Magento/GoogleAnalytics/i18n/en_US.csv    |   0
 .../Magento/GoogleAnalytics/registration.php  |   0
 .../view/frontend/layout/default.xml          |   0
 .../view/frontend/templates/ga.phtml          |   0
 .../view/frontend/web/js/google-analytics.js  |   0
 .../GoogleOptimizer/Block/AbstractCode.php    |   0
 .../Block/Adminhtml/AbstractTab.php           |   0
 .../Catalog/Category/Edit/Googleoptimizer.php |   0
 .../Category/Edit/GoogleoptimizerForm.php     |   0
 .../Product/Edit/Tab/Googleoptimizer.php      |   0
 .../Cms/Page/Edit/Tab/Googleoptimizer.php     |   0
 .../Adminhtml/Cms/Page/EntityCmsPage.php      |   0
 .../GoogleOptimizer/Block/Adminhtml/Form.php  |   0
 .../GoogleOptimizer/Block/Code/Category.php   |   0
 .../GoogleOptimizer/Block/Code/Page.php       |   0
 .../GoogleOptimizer/Block/Code/Product.php    |   0
 .../Magento/GoogleOptimizer/Helper/Code.php   |   0
 .../Magento/GoogleOptimizer/Helper/Data.php   |   0
 .../Magento/GoogleOptimizer/Helper/Form.php   |   0
 app/code/Magento/GoogleOptimizer/LICENSE.txt  |   0
 .../Magento/GoogleOptimizer/LICENSE_AFL.txt   |   0
 .../Magento/GoogleOptimizer/Model/Code.php    |   0
 .../Plugin/Catalog/Category/DataProvider.php  |   0
 .../Catalog/Product/Category/DataProvider.php |   0
 .../Model/Plugin/Cms/Page/DataProvider.php    |   0
 .../Model/ResourceModel/Code.php              |   0
 .../GoogleOptimizer/Observer/AbstractSave.php |   0
 ...CategoryGoogleExperimentScriptObserver.php |   0
 .../SaveGoogleExperimentScriptObserver.php    |   0
 ...eleteCmsGoogleExperimentScriptObserver.php |   0
 .../SaveGoogleExperimentScriptObserver.php    |   0
 ...eProductGoogleExperimentScriptObserver.php |   0
 .../SaveGoogleExperimentScriptObserver.php    |   0
 app/code/Magento/GoogleOptimizer/README.md    |   0
 .../GoogleOptimizer/Setup/InstallSchema.php   |   0
 .../Test/Unit/Block/Code/CategoryTest.php     |   0
 .../Test/Unit/Block/Code/ProductTest.php      |   0
 .../Test/Unit/Helper/CodeTest.php             |   0
 .../Test/Unit/Helper/DataTest.php             |   0
 .../Test/Unit/Helper/FormTest.php             |   0
 .../Product/Category/DataProviderTest.php     |   0
 ...goryGoogleExperimentScriptObserverTest.php |   0
 ...SaveGoogleExperimentScriptObserverTest.php |   0
 ...eCmsGoogleExperimentScriptObserverTest.php |   0
 ...SaveGoogleExperimentScriptObserverTest.php |   0
 ...ductGoogleExperimentScriptObserverTest.php |   0
 ...SaveGoogleExperimentScriptObserverTest.php |   0
 .../Form/Modifier/GoogleOptimizerTest.php     |   0
 .../Product/Form/Modifier/GoogleOptimizer.php |   0
 .../Magento/GoogleOptimizer/composer.json     |   0
 .../GoogleOptimizer/etc/adminhtml/di.xml      |   0
 .../GoogleOptimizer/etc/adminhtml/system.xml  |   0
 .../Magento/GoogleOptimizer/etc/config.xml    |   0
 .../Magento/GoogleOptimizer/etc/events.xml    |   0
 .../Magento/GoogleOptimizer/etc/module.xml    |   0
 .../Magento/GoogleOptimizer/i18n/en_US.csv    |   0
 .../Magento/GoogleOptimizer/registration.php  |   0
 .../adminhtml/layout/catalog_product_new.xml  |   0
 .../view/adminhtml/layout/cms_page_edit.xml   |   0
 .../adminhtml/ui_component/category_form.xml  |   0
 .../adminhtml/ui_component/cms_page_form.xml  |   0
 .../ui_component/new_category_form.xml        |   0
 .../frontend/layout/catalog_category_view.xml |   0
 .../frontend/layout/catalog_product_view.xml  |   0
 .../view/frontend/layout/cms_page_view.xml    |   0
 .../Magento/GroupedImportExport/LICENSE.txt   |   0
 .../GroupedImportExport/LICENSE_AFL.txt       |   0
 .../Model/Export/Product/Type/Grouped.php     |   0
 .../Model/Export/RowCustomizer.php            |   0
 .../Model/Import/Product/Type/Grouped.php     |   0
 .../Import/Product/Type/Grouped/Links.php     |   0
 .../Export/Product/RowCustomizerTest.php      |   0
 .../Import/Product/Type/Grouped/LinksTest.php |   0
 .../Model/Import/Product/Type/GroupedTest.php |   0
 .../Magento/GroupedImportExport/composer.json |   0
 .../Magento/GroupedImportExport/etc/di.xml    |   0
 .../GroupedImportExport/etc/export.xml        |   0
 .../GroupedImportExport/etc/import.xml        |   0
 .../GroupedImportExport/etc/module.xml        |   0
 .../GroupedImportExport/i18n/en_US.csv        |   0
 .../GroupedImportExport/registration.php      |   0
 .../Adminhtml/Items/Column/Name/Grouped.php   |   0
 .../Block/Adminhtml/Order/Create/Sidebar.php  |   0
 .../Product/Composite/Fieldset/Grouped.php    |   0
 .../Block/Cart/Item/Renderer/Grouped.php      |   0
 .../Block/Order/Email/Items/Order/Grouped.php |   0
 .../Block/Order/Item/Renderer/Grouped.php     |   0
 .../Product/Grouped/AssociatedProducts.php    |   0
 .../ListAssociatedProducts.php                |   0
 .../Block/Product/View/Type/Grouped.php       |   0
 .../Block/Stockqty/Type/Grouped.php           |   0
 .../Controller/Adminhtml/Edit/Popup.php       |   0
 .../CustomerData/GroupedItem.php              |   0
 .../Product/Configuration/Plugin/Grouped.php  |   0
 app/code/Magento/GroupedProduct/LICENSE.txt   |   0
 .../Magento/GroupedProduct/LICENSE_AFL.txt    |   0
 .../Order/Pdf/Items/Creditmemo/Grouped.php    |   0
 .../Model/Order/Pdf/Items/Invoice/Grouped.php |   0
 .../Cart/Configuration/Plugin/Grouped.php     |   0
 .../Model/Product/CatalogPrice.php            |   0
 .../Model/Product/CopyConstructor/Grouped.php |   0
 .../Helper/ProductLinks/Plugin/Grouped.php    |   0
 .../Link/CollectionProvider/Grouped.php       |   0
 .../Product/Link/ProductEntity/Converter.php  |   0
 .../Model/Product/Type/Grouped.php            |   0
 .../Model/Product/Type/Grouped/Backend.php    |   0
 .../Model/Product/Type/Grouped/Price.php      |   0
 .../Model/Product/Type/Plugin.php             |   0
 .../ResourceModel/Indexer/Stock/Grouped.php   |   0
 .../Product/Indexer/Price/Grouped.php         |   0
 .../Indexer/Price/GroupedInterface.php        |   0
 .../Model/ResourceModel/Product/Link.php      |   0
 .../Product/Link/RelationPersister.php        |   0
 .../Grouped/AssociatedProductsCollection.php  |   0
 .../Product/Quote/Plugin/Initializer.php      |   0
 .../Pricing/Price/ConfiguredPrice.php         |   0
 .../Pricing/Price/FinalPrice.php              |   0
 app/code/Magento/GroupedProduct/README.md     |   0
 .../GroupedProduct/Setup/InstallData.php      |   0
 .../GroupedProduct/Setup/UpgradeData.php      |   0
 .../Adminhtml/Order/Create/SidebarTest.php    |   0
 .../Composite/Fieldset/GroupedTest.php        |   0
 .../Block/Cart/Item/Renderer/GroupedTest.php  |   0
 .../ListAssociatedProductsTest.php            |   0
 .../Grouped/AssociatedProductsTest.php        |   0
 .../Block/Product/View/Type/GroupedTest.php   |   0
 .../Unit/Block/Stockqty/Type/GroupedTest.php  |   0
 .../Controller/Adminhtml/Edit/PopupTest.php   |   0
 .../Configuration/Plugin/GroupedTest.php      |   0
 .../Cart/Configuration/Plugin/GroupedTest.php |   0
 .../Unit/Model/Product/CatalogPriceTest.php   |   0
 .../Product/CopyConstructor/GroupedTest.php   |   0
 .../ProductLinks/Plugin/GroupedTest.php       |   0
 .../Model/Product/Type/Grouped/PriceTest.php  |   0
 .../Unit/Model/Product/Type/GroupedTest.php   |   0
 .../Unit/Model/Product/Type/PluginTest.php    |   0
 .../Test/Unit/Model/ProductTest.php           |   0
 .../Product/Link/RelationPersisterTest.php    |   0
 .../Product/Quote/Plugin/InitializerTest.php  |   0
 .../Pricing/Price/ConfiguredPriceTest.php     |   0
 .../Unit/Pricing/Price/FinalPriceTest.php     |   0
 .../Form/Modifier/CustomOptionsTest.php       |   0
 .../Product/Form/Modifier/GroupedTest.php     |   0
 .../GroupedProductDataProviderTest.php        |   0
 .../Product/Form/Modifier/CustomOptions.php   |   0
 .../Product/Form/Modifier/Grouped.php         |   0
 .../Product/Form/Modifier/StockData.php       |   0
 .../Product/GroupedProductDataProvider.php    |   0
 app/code/Magento/GroupedProduct/composer.json |   0
 .../GroupedProduct/etc/adminhtml/di.xml       |   0
 .../GroupedProduct/etc/adminhtml/routes.xml   |   0
 .../GroupedProduct/etc/adminhtml/system.xml   |   0
 .../Magento/GroupedProduct/etc/config.xml     |   0
 app/code/Magento/GroupedProduct/etc/di.xml    |   0
 .../etc/extension_attributes.xml              |   0
 .../GroupedProduct/etc/frontend/di.xml        |   0
 .../Magento/GroupedProduct/etc/module.xml     |   0
 app/code/Magento/GroupedProduct/etc/pdf.xml   |   0
 .../GroupedProduct/etc/product_types.xml      |   0
 app/code/Magento/GroupedProduct/etc/sales.xml |   0
 .../Magento/GroupedProduct/i18n/en_US.csv     |   0
 .../Magento/GroupedProduct/registration.php   |   0
 .../layout/catalog_product_grouped.xml        |   0
 .../adminhtml/layout/catalog_product_new.xml  |   0
 .../catalog_product_view_type_grouped.xml     |   0
 .../layout/groupedproduct_edit_popup.xml      |   0
 .../layout/groupedproduct_popup_grid.xml      |   0
 .../layout/sales_order_creditmemo_new.xml     |   0
 .../sales_order_creditmemo_updateqty.xml      |   0
 .../layout/sales_order_creditmemo_view.xml    |   0
 .../layout/sales_order_invoice_new.xml        |   0
 .../layout/sales_order_invoice_updateqty.xml  |   0
 .../layout/sales_order_invoice_view.xml       |   0
 .../adminhtml/layout/sales_order_view.xml     |   0
 .../view/adminhtml/requirejs-config.js        |   0
 .../product/composite/fieldset/grouped.phtml  |   0
 .../templates/product/grouped/grouped.phtml   |   0
 .../templates/product/grouped/list.phtml      |   0
 .../templates/product/stock/disabler.phtml    |   0
 .../ui_component/grouped_product_listing.xml  |   0
 .../adminhtml/web/css/grouped-product.css     |   0
 .../view/adminhtml/web/js/grouped-product.js  |   0
 .../base/layout/catalog_product_prices.xml    |   0
 .../templates/product/price/final_price.phtml |   0
 .../template/product/price/minimal_price.html |   0
 .../template/product/price/regular_price.html |   0
 ...catalog_product_rss_feed_renderer_list.xml |   0
 .../catalog_product_view_type_grouped.xml     |   0
 .../layout/checkout_cart_item_renderers.xml   |   0
 ...checkout_onepage_review_item_renderers.xml |   0
 ...sales_email_order_creditmemo_renderers.xml |   0
 .../sales_email_order_invoice_renderers.xml   |   0
 .../layout/sales_email_order_renderers.xml    |   0
 .../frontend/layout/sales_guest_invoice.xml   |   0
 .../sales_order_creditmemo_renderers.xml      |   0
 .../layout/sales_order_invoice_renderers.xml  |   0
 .../layout/sales_order_item_renderers.xml     |   0
 ...sales_order_print_creditmemo_renderers.xml |   0
 .../sales_order_print_invoice_renderers.xml   |   0
 .../layout/sales_order_print_renderers.xml    |   0
 .../templates/product/view/type/default.phtml |   0
 .../templates/product/view/type/grouped.phtml |   0
 .../ui_component/widget_recently_compared.xml |   0
 .../ui_component/widget_recently_viewed.xml   |   0
 .../Block/Adminhtml/Export/Edit.php           |   0
 .../Block/Adminhtml/Export/Edit/Form.php      |   0
 .../Block/Adminhtml/Export/Filter.php         |   0
 .../Block/Adminhtml/Form/After.php            |   0
 .../Grid/Column/Renderer/Download.php         |   0
 .../Adminhtml/Grid/Column/Renderer/Error.php  |   0
 .../ImportExport/Block/Adminhtml/History.php  |   0
 .../Block/Adminhtml/Import/Edit.php           |   0
 .../Block/Adminhtml/Import/Edit/Before.php    |   0
 .../Block/Adminhtml/Import/Edit/Form.php      |   0
 .../Block/Adminhtml/Import/Frame/Result.php   |   0
 .../Controller/Adminhtml/Export.php           |   0
 .../Controller/Adminhtml/Export/Export.php    |   0
 .../Controller/Adminhtml/Export/GetFilter.php |   0
 .../Controller/Adminhtml/Export/Index.php     |   0
 .../Controller/Adminhtml/History.php          |   0
 .../Controller/Adminhtml/History/Download.php |   0
 .../Controller/Adminhtml/History/Index.php    |   0
 .../Controller/Adminhtml/Import.php           |   0
 .../Controller/Adminhtml/Import/Download.php  |   0
 .../Controller/Adminhtml/Import/Index.php     |   0
 .../Controller/Adminhtml/Import/Start.php     |   0
 .../Controller/Adminhtml/Import/Validate.php  |   0
 .../Controller/Adminhtml/ImportResult.php     |   0
 .../Files/Sample/advanced_pricing.csv         |   0
 .../Files/Sample/catalog_product.csv          |   0
 .../ImportExport/Files/Sample/customer.csv    |   0
 .../Files/Sample/customer_address.csv         |   0
 .../Files/Sample/customer_composite.csv       |   0
 .../Files/Sample/customer_finance.csv         |   0
 app/code/Magento/ImportExport/Helper/Data.php |   0
 .../Magento/ImportExport/Helper/Report.php    |   0
 app/code/Magento/ImportExport/LICENSE.txt     |   0
 app/code/Magento/ImportExport/LICENSE_AFL.txt |   0
 .../ImportExport/Model/AbstractModel.php      |   0
 .../Magento/ImportExport/Model/Export.php     |   0
 .../Model/Export/AbstractEntity.php           |   0
 .../Model/Export/Adapter/AbstractAdapter.php  |   0
 .../ImportExport/Model/Export/Adapter/Csv.php |   0
 .../Model/Export/Adapter/Factory.php          |   0
 .../ImportExport/Model/Export/Config.php      |   0
 .../Model/Export/Config/Converter.php         |   0
 .../Model/Export/Config/Reader.php            |   0
 .../Model/Export/Config/SchemaLocator.php     |   0
 .../Model/Export/ConfigInterface.php          |   0
 .../Model/Export/Entity/AbstractEav.php       |   0
 .../Model/Export/Entity/AbstractEntity.php    |   0
 .../Model/Export/Entity/Factory.php           |   0
 .../ImportExport/Model/Export/Factory.php     |   0
 .../Magento/ImportExport/Model/History.php    |   0
 .../Magento/ImportExport/Model/Import.php     |   0
 .../Model/Import/AbstractEntity.php           |   0
 .../Model/Import/AbstractSource.php           |   0
 .../ImportExport/Model/Import/Adapter.php     |   0
 .../ImportExport/Model/Import/Config.php      |   0
 .../Model/Import/Config/Converter.php         |   0
 .../Model/Import/Config/Reader.php            |   0
 .../Model/Import/Config/SchemaLocator.php     |   0
 .../Model/Import/ConfigInterface.php          |   0
 .../Model/Import/Entity/AbstractEav.php       |   0
 .../Model/Import/Entity/AbstractEntity.php    |   0
 .../Model/Import/Entity/Factory.php           |   0
 .../ErrorProcessing/ProcessingError.php       |   0
 .../ProcessingErrorAggregator.php             |   0
 .../ProcessingErrorAggregatorInterface.php    |   0
 .../ImportExport/Model/Import/Source/Csv.php  |   0
 .../ImportExport/Model/Import/Source/Zip.php  |   0
 .../Magento/ImportExport/Model/Report/Csv.php |   0
 .../Model/Report/ReportProcessorInterface.php |   0
 .../CollectionByPagesIterator.php             |   0
 .../Model/ResourceModel/Helper.php            |   0
 .../Model/ResourceModel/History.php           |   0
 .../ResourceModel/History/Collection.php      |   0
 .../Model/ResourceModel/Import/Data.php       |   0
 .../Model/Source/Export/Entity.php            |   0
 .../Model/Source/Export/Format.php            |   0
 .../Model/Source/Import/AbstractBehavior.php  |   0
 .../Model/Source/Import/Behavior/Basic.php    |   0
 .../Model/Source/Import/Behavior/Custom.php   |   0
 .../Model/Source/Import/Behavior/Factory.php  |   0
 .../Model/Source/Import/Entity.php            |   0
 app/code/Magento/ImportExport/README.md       |   0
 .../ImportExport/Setup/InstallSchema.php      |   0
 .../ImportExport/Setup/UpgradeSchema.php      |   0
 .../Block/Adminhtml/Export/FilterTest.php     |   0
 .../Grid/Column/Renderer/DownloadTest.php     |   0
 .../Block/Adminhtml/Import/Edit/FormTest.php  |   0
 .../Adminhtml/History/DownloadTest.php        |   0
 .../Adminhtml/History/IndexTest.php           |   0
 .../Adminhtml/Import/ValidateTest.php         |   0
 .../Test/Unit/Helper/ReportTest.php           |   0
 .../Model/Export/Config/ConverterTest.php     |   0
 .../Model/Export/Config/SchemaLocatorTest.php |   0
 .../Test/Unit/Model/Export/Config/XsdTest.php |   0
 .../Model/Export/Config/_files/export.php     |   0
 .../Model/Export/Config/_files/export.xml     |   0
 .../Config/_files/export_merged_valid.xml     |   0
 .../Export/Config/_files/export_valid.xml     |   0
 .../_files/invalidExportMergedXmlArray.php    |   0
 .../Config/_files/invalidExportXmlArray.php   |   0
 .../Test/Unit/Model/Export/ConfigTest.php     |   0
 .../Model/Export/Entity/AbstractEavTest.php   |   0
 .../Unit/Model/Export/EntityAbstractTest.php  |   0
 .../Test/Unit/Model/ExportTest.php            |   0
 .../Model/Import/AbstractImportTestCase.php   |   0
 .../Test/Unit/Model/Import/AdapterTest.php    |   0
 .../Model/Import/Config/ConverterTest.php     |   0
 .../Model/Import/Config/SchemaLocatorTest.php |   0
 .../Model/Import/Config/XsdMergedTest.php     |   0
 .../Test/Unit/Model/Import/Config/XsdTest.php |   0
 .../Model/Import/Config/_files/import.php     |   0
 .../Model/Import/Config/_files/import.xml     |   0
 .../_files/invalidImportMergedXmlArray.php    |   0
 .../Config/_files/invalidImportXmlArray.php   |   0
 .../Import/Config/_files/valid_import.xml     |   0
 .../Config/_files/valid_import_merged.xml     |   0
 .../Test/Unit/Model/Import/ConfigTest.php     |   0
 .../Unit/Model/Import/Entity/AbstractTest.php |   0
 .../Model/Import/Entity/EavAbstractTest.php   |   0
 .../Unit/Model/Import/EntityAbstractTest.php  |   0
 .../ProcessingErrorAggregatorTest.php         |   0
 .../ErrorProcessing/ProcessingErrorTest.php   |   0
 .../Test/Unit/Model/Import/Source/CsvTest.php |   0
 .../Test/Unit/Model/Import/Source/ZipTest.php |   0
 .../Unit/Model/Import/Source/_files/test.csv  |   0
 .../Unit/Model/Import/SourceAbstractTest.php  |   0
 .../Test/Unit/Model/ImportTest.php            |   0
 .../Test/Unit/Model/Report/CsvTest.php        |   0
 .../CollectionByPagesIteratorTest.php         |   0
 .../Unit/Model/ResourceModel/HistoryTest.php  |   0
 .../Import/AbstractBehaviorTestCase.php       |   0
 .../Source/Import/Behavior/BasicTest.php      |   0
 .../Source/Import/Behavior/CustomTest.php     |   0
 .../Source/Import/BehaviorAbstractTest.php    |   0
 app/code/Magento/ImportExport/composer.json   |   0
 app/code/Magento/ImportExport/etc/acl.xml     |   0
 .../Magento/ImportExport/etc/adminhtml/di.xml |   0
 .../ImportExport/etc/adminhtml/menu.xml       |   0
 .../ImportExport/etc/adminhtml/routes.xml     |   0
 app/code/Magento/ImportExport/etc/config.xml  |   0
 app/code/Magento/ImportExport/etc/di.xml      |   0
 app/code/Magento/ImportExport/etc/export.xsd  |   0
 .../ImportExport/etc/export_merged.xsd        |   0
 app/code/Magento/ImportExport/etc/import.xsd  |   0
 .../ImportExport/etc/import_merged.xsd        |   0
 app/code/Magento/ImportExport/etc/module.xml  |   0
 app/code/Magento/ImportExport/i18n/en_US.csv  |   0
 .../Magento/ImportExport/registration.php     |   0
 .../layout/adminhtml_export_getfilter.xml     |   0
 .../layout/adminhtml_export_index.xml         |   0
 .../layout/adminhtml_history_grid_block.xml   |   0
 .../layout/adminhtml_history_index.xml        |   0
 .../layout/adminhtml_import_busy.xml          |   0
 .../layout/adminhtml_import_index.xml         |   0
 .../layout/adminhtml_import_start.xml         |   0
 .../layout/adminhtml_import_validate.xml      |   0
 .../view/adminhtml/templates/busy.phtml       |   0
 .../templates/export/form/after.phtml         |   0
 .../templates/export/form/before.phtml        |   0
 .../templates/export/form/filter/after.phtml  |   0
 .../templates/import/form/after.phtml         |   0
 .../templates/import/form/before.phtml        |   0
 .../templates/import/frame/result.phtml       |   0
 .../view/adminhtml/web/css/importexport.css   |   0
 app/code/Magento/Indexer/App/Indexer.php      |   0
 .../Indexer/Block/Backend/Container.php       |   0
 .../Grid/Column/Renderer/Scheduled.php        |   0
 .../Backend/Grid/Column/Renderer/Status.php   |   0
 .../Backend/Grid/Column/Renderer/Updated.php  |   0
 .../Block/Backend/Grid/ItemsUpdater.php       |   0
 .../Command/AbstractIndexerCommand.php        |   0
 .../Command/AbstractIndexerManageCommand.php  |   0
 .../Console/Command/IndexerInfoCommand.php    |   0
 .../Console/Command/IndexerReindexCommand.php |   0
 .../Command/IndexerResetStateCommand.php      |   0
 .../Console/Command/IndexerSetModeCommand.php |   0
 .../Command/IndexerShowModeCommand.php        |   0
 .../Console/Command/IndexerStatusCommand.php  |   0
 .../Indexer/Controller/Adminhtml/Indexer.php  |   0
 .../Adminhtml/Indexer/ListAction.php          |   0
 .../Adminhtml/Indexer/MassChangelog.php       |   0
 .../Adminhtml/Indexer/MassOnTheFly.php        |   0
 .../Magento/Indexer/Cron/ClearChangelog.php   |   0
 .../Indexer/Cron/ReindexAllInvalid.php        |   0
 app/code/Magento/Indexer/Cron/UpdateMview.php |   0
 app/code/Magento/Indexer/LICENSE.txt          |   0
 app/code/Magento/Indexer/LICENSE_AFL.txt      |   0
 app/code/Magento/Indexer/Model/Config.php     |   0
 .../Magento/Indexer/Model/Config/Data.php     |   0
 app/code/Magento/Indexer/Model/Indexer.php    |   0
 .../Indexer/Model/Indexer/Collection.php      |   0
 .../Model/Indexer/DependencyDecorator.php     |   0
 .../Magento/Indexer/Model/Indexer/State.php   |   0
 .../Magento/Indexer/Model/Message/Invalid.php |   0
 .../Indexer/Model/Mview/View/State.php        |   0
 app/code/Magento/Indexer/Model/Processor.php  |   0
 .../Indexer/Model/Processor/CleanCache.php    |   0
 .../Model/ResourceModel/AbstractResource.php  |   0
 .../Model/ResourceModel/Indexer/State.php     |   0
 .../Indexer/State/Collection.php              |   0
 .../Model/ResourceModel/Mview/View/State.php  |   0
 .../Mview/View/State/Collection.php           |   0
 .../Indexer/Model/Source/DataInterface.php    |   0
 .../Indexer/Model/Source/ServiceSource.php    |   0
 app/code/Magento/Indexer/README.md            |   0
 .../Magento/Indexer/Setup/InstallData.php     |   0
 .../Magento/Indexer/Setup/InstallSchema.php   |   0
 app/code/Magento/Indexer/Setup/Recurring.php  |   0
 .../Magento/Indexer/Setup/RecurringData.php   |   0
 .../Indexer/Test/Unit/App/IndexerTest.php     |   0
 .../Test/Unit/Block/Backend/ContainerTest.php |   0
 .../Grid/Column/Renderer/ScheduledTest.php    |   0
 .../Grid/Column/Renderer/StatusTest.php       |   0
 .../Grid/Column/Renderer/UpdatedTest.php      |   0
 .../Block/Backend/Grid/ItemsUpdaterTest.php   |   0
 .../AbstractIndexerCommandCommonSetup.php     |   0
 .../Command/IndexerInfoCommandTest.php        |   0
 .../Command/IndexerReindexCommandTest.php     |   0
 .../Command/IndexerResetStateCommandTest.php  |   0
 .../Command/IndexerSetModeCommandTest.php     |   0
 .../Command/IndexerShowModeCommandTest.php    |   0
 .../Command/IndexerStatusCommandTest.php      |   0
 .../Adminhtml/Indexer/ListActionTest.php      |   0
 .../Adminhtml/Indexer/MassChangelogTest.php   |   0
 .../Adminhtml/Indexer/MassOnTheFlyTest.php    |   0
 .../Test/Unit/Model/CacheContextTest.php      |   0
 .../Test/Unit/Model/Config/DataTest.php       |   0
 .../Indexer/Test/Unit/Model/ConfigTest.php    |   0
 .../Model/Indexer/AbstractProcessorStub.php   |   0
 .../Model/Indexer/AbstractProcessorTest.php   |   0
 .../Unit/Model/Indexer/CollectionTest.php     |   0
 .../Model/Indexer/DependencyDecoratorTest.php |   0
 .../Test/Unit/Model/Indexer/StateTest.php     |   0
 .../Indexer/Test/Unit/Model/IndexerTest.php   |   0
 .../Test/Unit/Model/Message/InvalidTest.php   |   0
 .../Test/Unit/Model/Mview/View/StateTest.php  |   0
 .../Unit/Model/Processor/CleanCacheTest.php   |   0
 .../Indexer/Test/Unit/Model/ProcessorTest.php |   0
 .../ResourceModel/AbstractResourceStub.php    |   0
 .../ResourceModel/AbstractResourceTest.php    |   0
 .../Indexer/State/CollectionTest.php          |   0
 .../Model/ResourceModel/Indexer/StateTest.php |   0
 .../Mview/View/State/CollectionTest.php       |   0
 .../ResourceModel/Mview/View/StateTest.php    |   0
 .../Indexer/DataCollectionTest.php            |   0
 .../DataProvider/Indexer/DataCollection.php   |   0
 app/code/Magento/Indexer/composer.json        |   0
 app/code/Magento/Indexer/etc/acl.xml          |   0
 app/code/Magento/Indexer/etc/adminhtml/di.xml |   0
 .../Magento/Indexer/etc/adminhtml/menu.xml    |   0
 .../Magento/Indexer/etc/adminhtml/routes.xml  |   0
 app/code/Magento/Indexer/etc/cron_groups.xml  |   0
 app/code/Magento/Indexer/etc/crontab.xml      |   0
 app/code/Magento/Indexer/etc/di.xml           |   0
 app/code/Magento/Indexer/etc/module.xml       |   0
 app/code/Magento/Indexer/i18n/en_US.csv       |   0
 app/code/Magento/Indexer/registration.php     |   0
 .../adminhtml/layout/indexer_indexer_list.xml |   0
 .../layout/indexer_indexer_list_grid.xml      |   0
 .../Magento/InstantPurchase/Block/Button.php  |   0
 .../Controller/Button/PlaceOrder.php          |   0
 .../CustomerData/InstantPurchase.php          |   0
 .../BillingAddressChooserInterface.php        |   0
 .../DefaultBillingAddressChooser.php          |   0
 .../Magento/InstantPurchase/Model/Config.php  |   0
 .../Model/InstantPurchaseChooser.php          |   0
 .../Model/InstantPurchaseInterface.php        |   0
 .../Model/InstantPurchaseOption.php           |   0
 .../Model/InstantPurchaseOptionFactory.php    |   0
 .../InstantPurchaseOptionLoadingFactory.php   |   0
 .../LastCreatedPaymentTokenChooser.php        |   0
 .../PaymentTokenChooserInterface.php          |   0
 .../InstantPurchase/Model/PlaceOrder.php      |   0
 .../QuoteManagement/PaymentConfiguration.php  |   0
 .../Model/QuoteManagement/Purchase.php        |   0
 .../Model/QuoteManagement/QuoteCreation.php   |   0
 .../Model/QuoteManagement/QuoteFilling.php    |   0
 .../QuoteManagement/ShippingConfiguration.php |   0
 .../DefaultShippingAddressChooser.php         |   0
 .../ShippingAddressChooserInterface.php       |   0
 .../ShippingMethodChoose/CarrierFinder.php    |   0
 .../CheapestMethodChooser.php                 |   0
 .../CheapestMethodDeferredChooser.php         |   0
 ...DeferredShippingMethodChooserInterface.php |   0
 .../DeferredShippingMethodChooserPool.php     |   0
 .../ShippingMethodChooserInterface.php        |   0
 .../Model/Ui/CustomerAddressesFormatter.php   |   0
 .../Model/Ui/PaymentTokenFormatter.php        |   0
 .../Model/Ui/ShippingMethodFormatter.php      |   0
 .../AvailabilityCheckerInterface.php          |   0
 .../PaymentMethodIntegration/Integration.php  |   0
 .../IntegrationFactory.php                    |   0
 .../IntegrationsManager.php                   |   0
 ...AdditionalInformationProviderInterface.php |   0
 .../PaymentTokenFormatterInterface.php        |   0
 .../SimplePaymentTokenFormatter.php           |   0
 .../StaticAdditionalInformationProvider.php   |   0
 .../StaticAvailabilityChecker.php             |   0
 app/code/Magento/InstantPurchase/README.md    |   0
 .../Magento/InstantPurchase/composer.json     |   0
 .../InstantPurchase/etc/adminhtml/system.xml  |   0
 .../Magento/InstantPurchase/etc/config.xml    |   0
 app/code/Magento/InstantPurchase/etc/di.xml   |   0
 .../InstantPurchase/etc/frontend/di.xml       |   0
 .../InstantPurchase/etc/frontend/routes.xml   |   0
 .../InstantPurchase/etc/frontend/sections.xml |   0
 .../Magento/InstantPurchase/etc/module.xml    |   0
 .../Magento/InstantPurchase/registration.php  |   0
 .../frontend/layout/catalog_product_view.xml  |   0
 .../catalog_product_view_type_bundle.xml      |   0
 .../view/frontend/templates/button.phtml      |   0
 .../frontend/web/js/view/instant-purchase.js  |   0
 .../frontend/web/template/confirmation.html   |   0
 .../web/template/instant-purchase.html        |   0
 .../Api/AdminTokenServiceInterface.php        |   0
 .../Api/AuthorizationServiceInterface.php     |   0
 .../Api/CustomerTokenServiceInterface.php     |   0
 .../Api/IntegrationServiceInterface.php       |   0
 .../Integration/Api/OauthServiceInterface.php |   0
 .../Block/Adminhtml/Integration.php           |   0
 .../Activate/Permissions/Tab/Webapi.php       |   0
 .../Integration/Activate/Permissions/Tabs.php |   0
 .../Block/Adminhtml/Integration/Edit.php      |   0
 .../Block/Adminhtml/Integration/Edit/Form.php |   0
 .../Adminhtml/Integration/Edit/Tab/Info.php   |   0
 .../Adminhtml/Integration/Edit/Tab/Webapi.php |   0
 .../Block/Adminhtml/Integration/Edit/Tabs.php |   0
 .../Block/Adminhtml/Integration/Grid.php      |   0
 .../Block/Adminhtml/Integration/Tokens.php    |   0
 .../Widget/Grid/Column/Renderer/Button.php    |   0
 .../Grid/Column/Renderer/Button/Delete.php    |   0
 .../Grid/Column/Renderer/Button/Edit.php      |   0
 .../Widget/Grid/Column/Renderer/Link.php      |   0
 .../Grid/Column/Renderer/Link/Activate.php    |   0
 .../Widget/Grid/Column/Renderer/Name.php      |   0
 .../Controller/Adminhtml/Integration.php      |   0
 .../Adminhtml/Integration/Delete.php          |   0
 .../Controller/Adminhtml/Integration/Edit.php |   0
 .../Controller/Adminhtml/Integration/Grid.php |   0
 .../Adminhtml/Integration/Index.php           |   0
 .../Integration/LoginSuccessCallback.php      |   0
 .../Adminhtml/Integration/NewAction.php       |   0
 .../Integration/PermissionsDialog.php         |   0
 .../Controller/Adminhtml/Integration/Save.php |   0
 .../Adminhtml/Integration/TokensDialog.php    |   0
 .../Adminhtml/Integration/TokensExchange.php  |   0
 .../Integration/Controller/Token/Access.php   |   0
 .../Integration/Controller/Token/Request.php  |   0
 .../CleanExpiredAuthenticationFailures.php    |   0
 .../Integration/Cron/CleanExpiredTokens.php   |   0
 app/code/Magento/Integration/Helper/Data.php  |   0
 .../Magento/Integration/Helper/Oauth/Data.php |   0
 app/code/Magento/Integration/LICENSE.txt      |   0
 app/code/Magento/Integration/LICENSE_AFL.txt  |   0
 .../Integration/Model/AdminTokenService.php   |   0
 .../Model/AuthorizationService.php            |   0
 .../Magento/Integration/Model/Cache/Type.php  |   0
 .../Model/Cache/TypeConsolidated.php          |   0
 .../Model/Cache/TypeIntegration.php           |   0
 app/code/Magento/Integration/Model/Config.php |   0
 .../Model/Config/Consolidated/Converter.php   |   0
 .../Model/Config/Consolidated/Reader.php      |   0
 .../Config/Consolidated/SchemaLocator.php     |   0
 .../Integration/Model/Config/Converter.php    |   0
 .../Model/Config/Integration/Converter.php    |   0
 .../Model/Config/Integration/Reader.php       |   0
 .../Config/Integration/SchemaLocator.php      |   0
 .../Integration/Model/Config/Reader.php       |   0
 .../Model/Config/SchemaLocator.php            |   0
 .../Model/ConfigBasedIntegrationManager.php   |   0
 .../Integration/Model/ConsolidatedConfig.php  |   0
 .../Model/CredentialsValidator.php            |   0
 .../Model/CustomerTokenService.php            |   0
 .../Magento/Integration/Model/Integration.php |   0
 .../Model/Integration/Source/Status.php       |   0
 .../Integration/Model/IntegrationConfig.php   |   0
 .../Integration/Model/IntegrationService.php  |   0
 .../Model/Message/RecreatedIntegration.php    |   0
 .../Integration/Model/Oauth/Consumer.php      |   0
 .../Oauth/Consumer/Validator/KeyLength.php    |   0
 .../Magento/Integration/Model/Oauth/Nonce.php |   0
 .../Model/Oauth/Nonce/Generator.php           |   0
 .../Magento/Integration/Model/Oauth/Token.php |   0
 .../Model/Oauth/Token/Provider.php            |   0
 .../Model/Oauth/Token/RequestLog/Config.php   |   0
 .../Token/RequestLog/ReaderInterface.php      |   0
 .../Token/RequestLog/WriterInterface.php      |   0
 .../Model/Oauth/Token/RequestThrottler.php    |   0
 .../Integration/Model/OauthService.php        |   0
 .../Integration/Model/Plugin/Integration.php  |   0
 .../Model/ResourceModel/Integration.php       |   0
 .../ResourceModel/Integration/Collection.php  |   0
 .../Model/ResourceModel/Oauth/Consumer.php    |   0
 .../Oauth/Consumer/Collection.php             |   0
 .../Model/ResourceModel/Oauth/Nonce.php       |   0
 .../ResourceModel/Oauth/Nonce/Collection.php  |   0
 .../Model/ResourceModel/Oauth/Token.php       |   0
 .../ResourceModel/Oauth/Token/Collection.php  |   0
 .../ResourceModel/Oauth/Token/RequestLog.php  |   0
 .../Integration/Plugin/Model/AdminUser.php    |   0
 .../Integration/Plugin/Model/CustomerUser.php |   0
 app/code/Magento/Integration/README.md        |   0
 .../Integration/Setup/InstallSchema.php       |   0
 .../Magento/Integration/Setup/Recurring.php   |   0
 .../Magento/Integration/Setup/UpgradeData.php |   0
 .../Integration/Setup/UpgradeSchema.php       |   0
 .../Integration/Edit/Tab/InfoTest.php         |   0
 .../Integration/Edit/Tab/WebapiTest.php       |   0
 .../Grid/Column/Renderer/ButtonTest.php       |   0
 .../Widget/Grid/Column/Renderer/LinkTest.php  |   0
 .../Widget/Grid/Column/Renderer/NameTest.php  |   0
 .../Adminhtml/Integration/DeleteTest.php      |   0
 .../Adminhtml/Integration/EditTest.php        |   0
 .../Adminhtml/Integration/IndexTest.php       |   0
 .../Adminhtml/Integration/NewActionTest.php   |   0
 .../Integration/PermissionsDialogTest.php     |   0
 .../Adminhtml/Integration/SaveTest.php        |   0
 .../Integration/TokensDialogTest.php          |   0
 .../Integration/TokensExchangeTest.php        |   0
 .../Controller/Adminhtml/IntegrationTest.php  |   0
 .../Test/Unit/Controller/Token/AccessTest.php |   0
 .../Unit/Controller/Token/RequestTest.php     |   0
 .../Integration/Test/Unit/Helper/DataTest.php |   0
 .../Test/Unit/Helper/Oauth/ConsumerTest.php   |   0
 .../Test/Unit/Helper/Oauth/DataTest.php       |   0
 .../Test/Unit/Helper/Oauth/OauthTest.php      |   0
 .../Test/Unit/Helper/_files/acl-map.php       |   0
 .../Test/Unit/Helper/_files/acl.php           |   0
 .../Test/Unit/Model/AdminTokenServiceTest.php |   0
 .../Unit/Model/AuthorizationServiceTest.php   |   0
 .../Config/Consolidated/ConverterTest.php     |   0
 .../Config/Consolidated/SchemaLocatorTest.php |   0
 .../Model/Config/Consolidated/XsdTest.php     |   0
 .../Model/Config/Consolidated/_files/acl.php  |   0
 .../Consolidated/_files/integration.php       |   0
 .../Consolidated/_files/integration.xml       |   0
 .../Test/Unit/Model/Config/ConverterTest.php  |   0
 .../Config/Integration/ConverterTest.php      |   0
 .../Config/Integration/SchemaLocatorTest.php  |   0
 .../Unit/Model/Config/Integration/XsdTest.php |   0
 .../Model/Config/Integration/_files/api.php   |   0
 .../Model/Config/Integration/_files/api.xml   |   0
 .../Unit/Model/Config/SchemaLocatorTest.php   |   0
 .../Test/Unit/Model/Config/XsdTest.php        |   0
 .../Test/Unit/Model/Config/_files/config.xml  |   0
 .../Unit/Model/Config/_files/integration.php  |   0
 .../Unit/Model/ConsolidatedConfigTest.php     |   0
 .../Unit/Model/CredentialsValidatorTest.php   |   0
 .../Unit/Model/CustomerTokenServiceTest.php   |   0
 .../Model/Integration/Source/StatusTest.php   |   0
 .../Test/Unit/Model/IntegrationConfigTest.php |   0
 .../Unit/Model/IntegrationServiceTest.php     |   0
 .../Test/Unit/Model/IntegrationTest.php       |   0
 .../Test/Unit/Model/ManagerTest.php           |   0
 .../Consumer/Validator/KeyLengthTest.php      |   0
 .../Test/Unit/Model/Oauth/ConsumerTest.php    |   0
 .../Test/Unit/Model/Oauth/NonceTest.php       |   0
 .../Unit/Model/Oauth/Token/ProviderTest.php   |   0
 .../Test/Unit/Model/Oauth/TokenTest.php       |   0
 .../Test/Unit/Model/OauthServiceTest.php      |   0
 .../Unit/Model/Plugin/IntegrationTest.php     |   0
 .../Integration/CollectionTest.php            |   0
 .../Model/ResourceModel/IntegrationTest.php   |   0
 .../ResourceModel/Oauth/ConsumerTest.php      |   0
 .../Model/ResourceModel/Oauth/NonceTest.php   |   0
 .../Oauth/Token/CollectionTest.php            |   0
 .../Model/ResourceModel/Oauth/TokenTest.php   |   0
 .../Integration/Test/Unit/Oauth/OauthTest.php |   0
 app/code/Magento/Integration/composer.json    |   0
 app/code/Magento/Integration/etc/acl.xml      |   0
 .../Magento/Integration/etc/adminhtml/di.xml  |   0
 .../Integration/etc/adminhtml/menu.xml        |   0
 .../Integration/etc/adminhtml/routes.xml      |   0
 .../Integration/etc/adminhtml/system.xml      |   0
 app/code/Magento/Integration/etc/cache.xml    |   0
 app/code/Magento/Integration/etc/config.xml   |   0
 app/code/Magento/Integration/etc/crontab.xml  |   0
 app/code/Magento/Integration/etc/di.xml       |   0
 .../Integration/etc/frontend/routes.xml       |   0
 .../Integration/etc/integration/api.xsd       |   0
 .../Integration/etc/integration/config.xsd    |   0
 .../etc/integration/integration.xsd           |   0
 .../etc/integration/integration_base.xsd      |   0
 .../etc/integration/integration_file.xsd      |   0
 app/code/Magento/Integration/etc/module.xml   |   0
 app/code/Magento/Integration/etc/webapi.xml   |   0
 app/code/Magento/Integration/i18n/en_US.csv   |   0
 app/code/Magento/Integration/registration.php |   0
 .../layout/adminhtml_integration_edit.xml     |   0
 .../layout/adminhtml_integration_grid.xml     |   0
 .../adminhtml_integration_grid_block.xml      |   0
 .../layout/adminhtml_integration_index.xml    |   0
 .../layout/adminhtml_integration_new.xml      |   0
 ...dminhtml_integration_permissionsdialog.xml |   0
 .../adminhtml_integration_tokensdialog.xml    |   0
 .../adminhtml_integration_tokensexchange.xml  |   0
 .../view/adminhtml/requirejs-config.js        |   0
 .../integration/activate/permissions.phtml    |   0
 .../activate/permissions/tab/webapi.phtml     |   0
 .../integration/popup_container.phtml         |   0
 .../integration/tokens_exchange.phtml         |   0
 .../adminhtml/templates/resourcetree.phtml    |   0
 .../view/adminhtml/web/js/integration.js      |   0
 .../LayeredNavigation/Block/Navigation.php    |   0
 .../Block/Navigation/FilterRenderer.php       |   0
 .../Navigation/FilterRendererInterface.php    |   0
 .../Block/Navigation/State.php                |   0
 .../Magento/LayeredNavigation/LICENSE.txt     |   0
 .../Magento/LayeredNavigation/LICENSE_AFL.txt |   0
 .../Model/Aggregation/Status.php              |   0
 .../Attribute/Source/FilterableOptions.php    |   0
 ...ductAttributeFormBuildFrontTabObserver.php |   0
 .../ProductAttributeGridBuildObserver.php     |   0
 app/code/Magento/LayeredNavigation/README.md  |   0
 .../Test/Unit/Block/NavigationTest.php        |   0
 .../Unit/Model/Aggregation/StatusTest.php     |   0
 .../Magento/LayeredNavigation/composer.json   |   0
 .../etc/adminhtml/events.xml                  |   0
 .../etc/adminhtml/system.xml                  |   0
 .../Magento/LayeredNavigation/etc/config.xml  |   0
 app/code/Magento/LayeredNavigation/etc/di.xml |   0
 .../LayeredNavigation/etc/frontend/di.xml     |   0
 .../Magento/LayeredNavigation/etc/module.xml  |   0
 .../Magento/LayeredNavigation/i18n/en_US.csv  |   0
 .../LayeredNavigation/registration.php        |   0
 .../product_attribute_add_form.xml            |   0
 .../ui_component/product_attributes_grid.xml  |   0
 .../product_attributes_listing.xml            |   0
 .../catalog_category_view_type_layered.xml    |   0
 ...ory_view_type_layered_without_children.xml |   0
 .../layout/catalogsearch_result_index.xml     |   0
 .../view/frontend/page_layout/1column.xml     |   0
 .../frontend/page_layout/2columns-left.xml    |   0
 .../frontend/page_layout/2columns-right.xml   |   0
 .../view/frontend/page_layout/3columns.xml    |   0
 .../view/frontend/page_layout/empty.xml       |   0
 .../frontend/templates/layer/filter.phtml     |   0
 .../view/frontend/templates/layer/state.phtml |   0
 .../view/frontend/templates/layer/view.phtml  |   0
 app/code/Magento/Marketplace/Block/Index.php  |   0
 .../Magento/Marketplace/Block/Partners.php    |   0
 .../Controller/Adminhtml/Index.php            |   0
 .../Controller/Adminhtml/Index/Index.php      |   0
 .../Controller/Adminhtml/Partners.php         |   0
 .../Controller/Adminhtml/Partners/Index.php   |   0
 app/code/Magento/Marketplace/Helper/Cache.php |   0
 app/code/Magento/Marketplace/LICENSE.txt      |   0
 app/code/Magento/Marketplace/LICENSE_AFL.txt  |   0
 .../Magento/Marketplace/Model/Partners.php    |   0
 app/code/Magento/Marketplace/README.md        |   0
 .../Test/Unit/Block/PartnersTest.php          |   0
 .../Test/Unit/Controller/Index/IndexTest.php  |   0
 .../Unit/Controller/Partners/IndexTest.php    |   0
 .../Test/Unit/Helper/CacheTest.php            |   0
 .../Test/Unit/Model/PartnersTest.php          |   0
 app/code/Magento/Marketplace/composer.json    |   0
 .../Marketplace/etc/adminhtml/menu.xml        |   0
 .../Marketplace/etc/adminhtml/routes.xml      |   0
 app/code/Magento/Marketplace/etc/module.xml   |   0
 app/code/Magento/Marketplace/i18n/en_US.csv   |   0
 app/code/Magento/Marketplace/registration.php |   0
 .../layout/marketplace_index_index.xml        |   0
 .../layout/marketplace_partners_index.xml     |   0
 .../view/adminhtml/templates/index.phtml      |   0
 .../view/adminhtml/templates/partners.phtml   |   0
 .../Marketplace/view/adminhtml/web/default.js |   0
 .../partners/images/magento-marketplace.svg   |   0
 app/code/Magento/MediaStorage/App/Media.php   |   0
 .../System/Storage/Media/Synchronize.php      |   0
 .../System/Config/System/Storage.php          |   0
 .../System/Config/System/Storage/Status.php   |   0
 .../Config/System/Storage/Synchronize.php     |   0
 .../MediaStorage/Helper/File/Media.php        |   0
 .../MediaStorage/Helper/File/Storage.php      |   0
 .../Helper/File/Storage/Database.php          |   0
 app/code/Magento/MediaStorage/LICENSE.txt     |   0
 app/code/Magento/MediaStorage/LICENSE_AFL.txt |   0
 .../Model/Asset/Plugin/CleanMergedJsCss.php   |   0
 .../Config/Backend/Storage/Media/Database.php |   0
 .../Config/Source/Storage/Media/Database.php  |   0
 .../Config/Source/Storage/Media/Storage.php   |   0
 .../MediaStorage/Model/File/Storage.php       |   0
 .../Model/File/Storage/Config.php             |   0
 .../Model/File/Storage/Database.php           |   0
 .../Storage/Database/AbstractDatabase.php     |   0
 .../Model/File/Storage/Directory/Database.php |   0
 .../MediaStorage/Model/File/Storage/File.php  |   0
 .../MediaStorage/Model/File/Storage/Flag.php  |   0
 .../Model/File/Storage/Request.php            |   0
 .../Model/File/Storage/Response.php           |   0
 .../Model/File/Storage/Synchronization.php    |   0
 .../MediaStorage/Model/File/Uploader.php      |   0
 .../Model/File/Validator/AvailablePath.php    |   0
 .../File/Validator/NotProtectedExtension.php  |   0
 .../File/Storage/AbstractStorage.php          |   0
 .../ResourceModel/File/Storage/Database.php   |   0
 .../File/Storage/Directory/Database.php       |   0
 .../Model/ResourceModel/File/Storage/File.php |   0
 app/code/Magento/MediaStorage/README.md       |   0
 .../MediaStorage/Test/Unit/App/MediaTest.php  |   0
 .../Test/Unit/Helper/File/MediaTest.php       |   0
 .../Unit/Helper/File/Storage/DatabaseTest.php |   0
 .../Test/Unit/Helper/File/StorageTest.php     |   0
 .../Asset/Plugin/CleanMergedJsCssTest.php     |   0
 .../Source/Storage/Media/DatabaseTest.php     |   0
 .../Unit/Model/File/Storage/ConfigTest.php    |   0
 .../File/Storage/Directory/DatabaseTest.php   |   0
 .../Unit/Model/File/Storage/MediaTest.php     |   0
 .../Unit/Model/File/Storage/RequestTest.php   |   0
 .../File/Storage/SynchronizationTest.php      |   0
 .../Unit/Model/File/Storage/_files/config.xml |   0
 .../ResourceModel/File/Storage/FileTest.php   |   0
 app/code/Magento/MediaStorage/composer.json   |   0
 .../MediaStorage/etc/adminhtml/routes.xml     |   0
 .../MediaStorage/etc/adminhtml/system.xml     |   0
 app/code/Magento/MediaStorage/etc/di.xml      |   0
 app/code/Magento/MediaStorage/etc/module.xml  |   0
 app/code/Magento/MediaStorage/i18n/en_US.csv  |   0
 .../Magento/MediaStorage/registration.php     |   0
 .../system/storage/media/synchronize.phtml    |   0
 .../ProductRender/MsrpPriceInfoInterface.php  |   0
 .../Adminhtml/Product/Helper/Form/Type.php    |   0
 .../Product/Helper/Form/Type/Price.php        |   0
 app/code/Magento/Msrp/Block/Popup.php         |   0
 app/code/Magento/Msrp/Block/Total.php         |   0
 app/code/Magento/Msrp/Helper/Data.php         |   0
 app/code/Magento/Msrp/LICENSE.txt             |   0
 app/code/Magento/Msrp/LICENSE_AFL.txt         |   0
 app/code/Magento/Msrp/Model/Config.php        |   0
 app/code/Magento/Msrp/Model/Msrp.php          |   0
 .../Model/Product/Attribute/Source/Type.php   |   0
 .../Product/Attribute/Source/Type/Price.php   |   0
 .../Magento/Msrp/Model/Product/Options.php    |   0
 .../Model/ProductRender/MsrpPriceInfo.php     |   0
 .../Msrp/Model/Quote/Address/CanApplyMsrp.php |   0
 app/code/Magento/Msrp/Model/Quote/Msrp.php    |   0
 .../Quote/SetCanApplyMsrpObserver.php         |   0
 .../Catalog/Product/Edit/Tab/Attributes.php   |   0
 .../Magento/Msrp/Pricing/Price/MsrpPrice.php  |   0
 .../Msrp/Pricing/Price/MsrpPriceInterface.php |   0
 app/code/Magento/Msrp/Setup/InstallData.php   |   0
 app/code/Magento/Msrp/Setup/UpgradeData.php   |   0
 .../Msrp/Test/Unit/Helper/DataTest.php        |   0
 .../Attribute/Source/Type/PriceTest.php       |   0
 .../Quote/SetCanApplyMsrpObserverTest.php     |   0
 .../Test/Unit/Pricing/Price/MsrpPriceTest.php |   0
 .../Product/Form/Modifier/MsrpTest.php        |   0
 .../Listing/Collector/MsrpPriceTest.php       |   0
 .../Product/Form/Modifier/Msrp.php            |   0
 .../Product/Listing/Collector/MsrpPrice.php   |   0
 app/code/Magento/Msrp/composer.json           |   0
 app/code/Magento/Msrp/etc/adminhtml/di.xml    |   0
 .../Magento/Msrp/etc/adminhtml/system.xml     |   0
 .../Magento/Msrp/etc/catalog_attributes.xml   |   0
 app/code/Magento/Msrp/etc/config.xml          |   0
 app/code/Magento/Msrp/etc/di.xml              |   0
 .../Magento/Msrp/etc/extension_attributes.xml |   0
 app/code/Magento/Msrp/etc/frontend/events.xml |   0
 app/code/Magento/Msrp/etc/module.xml          |   0
 .../Magento/Msrp/etc/webapi_rest/events.xml   |   0
 .../Magento/Msrp/etc/webapi_soap/events.xml   |   0
 app/code/Magento/Msrp/i18n/de_DE.csv          |   0
 app/code/Magento/Msrp/i18n/en_US.csv          |   0
 app/code/Magento/Msrp/i18n/es_ES.csv          |   0
 app/code/Magento/Msrp/i18n/fr_FR.csv          |   0
 app/code/Magento/Msrp/i18n/nl_NL.csv          |   0
 app/code/Magento/Msrp/i18n/pt_BR.csv          |   0
 app/code/Magento/Msrp/i18n/zh_Hans_CN.csv     |   0
 app/code/Magento/Msrp/registration.php        |   0
 .../base/layout/catalog_product_prices.xml    |   0
 .../base/templates/product/price/msrp.phtml   |   0
 .../Magento/Msrp/view/base/web/js/msrp.js     |   0
 .../frontend/layout/catalog_category_view.xml |   0
 .../layout/catalog_product_compare_index.xml  |   0
 .../frontend/layout/catalog_product_view.xml  |   0
 ...catalog_product_view_type_downloadable.xml |   0
 .../layout/catalogsearch_advanced_result.xml  |   0
 .../layout/catalogsearch_result_index.xml     |   0
 .../frontend/layout/checkout_cart_index.xml   |   0
 .../checkout_cart_sidebar_total_renderers.xml |   0
 .../layout/checkout_onepage_failure.xml       |   0
 .../layout/checkout_onepage_success.xml       |   0
 .../Msrp/view/frontend/layout/msrp_popup.xml  |   0
 .../frontend/layout/review_product_list.xml   |   0
 ...list_index_configure_type_downloadable.xml |   0
 .../frontend/layout/wishlist_index_index.xml  |   0
 .../frontend/layout/wishlist_search_view.xml  |   0
 .../frontend/layout/wishlist_shared_index.xml |   0
 .../Msrp/view/frontend/requirejs-config.js    |   0
 .../frontend/templates/cart/subtotal.phtml    |   0
 .../view/frontend/templates/cart/totals.phtml |   0
 .../Msrp/view/frontend/templates/popup.phtml  |   0
 .../render/item/price_msrp_item.phtml         |   0
 .../render/item/price_msrp_rss.phtml          |   0
 .../ui_component/widget_recently_compared.xml |   0
 .../ui_component/widget_recently_viewed.xml   |   0
 .../web/js/product/list/columns/msrp-price.js |   0
 .../view/checkout/minicart/subtotal/totals.js |   0
 .../checkout/minicart/subtotal/totals.html    |   0
 .../web/template/product/item/popup.html      |   0
 .../web/template/product/price/price_box.html |   0
 .../Block/Checkout/AbstractMultishipping.php  |   0
 .../Block/Checkout/Address/Select.php         |   0
 .../Block/Checkout/Addresses.php              |   0
 .../Multishipping/Block/Checkout/Billing.php  |   0
 .../Block/Checkout/Billing/Items.php          |   0
 .../Multishipping/Block/Checkout/Link.php     |   0
 .../Multishipping/Block/Checkout/Overview.php |   0
 .../Block/Checkout/Payment/Info.php           |   0
 .../Multishipping/Block/Checkout/Shipping.php |   0
 .../Multishipping/Block/Checkout/State.php    |   0
 .../Multishipping/Block/Checkout/Success.php  |   0
 .../Multishipping/Controller/Checkout.php     |   0
 .../Controller/Checkout/Address.php           |   0
 .../Checkout/Address/EditAddress.php          |   0
 .../Checkout/Address/EditBilling.php          |   0
 .../Checkout/Address/EditShipping.php         |   0
 .../Checkout/Address/EditShippingPost.php     |   0
 .../Checkout/Address/NewBilling.php           |   0
 .../Checkout/Address/NewShipping.php          |   0
 .../Checkout/Address/SaveBilling.php          |   0
 .../Checkout/Address/SelectBilling.php        |   0
 .../Checkout/Address/SetBilling.php           |   0
 .../Checkout/Address/ShippingSaved.php        |   0
 .../Controller/Checkout/Addresses.php         |   0
 .../Controller/Checkout/AddressesPost.php     |   0
 .../Controller/Checkout/BackToAddresses.php   |   0
 .../Controller/Checkout/BackToBilling.php     |   0
 .../Controller/Checkout/BackToShipping.php    |   0
 .../Controller/Checkout/Billing.php           |   0
 .../Controller/Checkout/Index.php             |   0
 .../Controller/Checkout/Login.php             |   0
 .../Controller/Checkout/Overview.php          |   0
 .../Controller/Checkout/OverviewPost.php      |   0
 .../Controller/Checkout/Plugin.php            |   0
 .../Controller/Checkout/Register.php          |   0
 .../Controller/Checkout/RemoveItem.php        |   0
 .../Controller/Checkout/Shipping.php          |   0
 .../Controller/Checkout/ShippingPost.php      |   0
 .../Controller/Checkout/Success.php           |   0
 .../Magento/Multishipping/Helper/Data.php     |   0
 app/code/Magento/Multishipping/Helper/Url.php |   0
 app/code/Magento/Multishipping/LICENSE.txt    |   0
 .../Magento/Multishipping/LICENSE_AFL.txt     |   0
 .../Model/Cart/Controller/CartPlugin.php      |   0
 .../Model/Checkout/Type/Multishipping.php     |   0
 .../Checkout/Type/Multishipping/Plugin.php    |   0
 .../Checkout/Type/Multishipping/State.php     |   0
 .../Payment/Method/Specification/Enabled.php  |   0
 app/code/Magento/Multishipping/README.md      |   0
 .../Block/Checkout/Address/SelectTest.php     |   0
 .../Unit/Block/Checkout/Billing/ItemsTest.php |   0
 .../Test/Unit/Block/Checkout/OverviewTest.php |   0
 .../Unit/Block/Checkout/Payment/InfoTest.php  |   0
 .../Test/Unit/Block/Checkout/ShippingTest.php |   0
 .../Test/Unit/Block/Checkout/StateTest.php    |   0
 .../Test/Unit/Block/Checkout/SuccessTest.php  |   0
 .../Checkout/Address/EditAddressTest.php      |   0
 .../Checkout/Address/EditBillingTest.php      |   0
 .../Checkout/Address/EditShippingTest.php     |   0
 .../Checkout/Address/NewBillingTest.php       |   0
 .../Checkout/Address/NewShippingTest.php      |   0
 .../Checkout/Address/ShippingSavedTest.php    |   0
 .../Unit/Controller/Checkout/PluginTest.php   |   0
 .../Test/Unit/Helper/DataTest.php             |   0
 .../Model/Cart/Controller/CartPluginTest.php  |   0
 .../Type/Multishipping/PluginTest.php         |   0
 .../Model/Checkout/Type/MultishippingTest.php |   0
 .../Method/Specification/EnabledTest.php      |   0
 app/code/Magento/Multishipping/composer.json  |   0
 app/code/Magento/Multishipping/etc/acl.xml    |   0
 .../Multishipping/etc/adminhtml/system.xml    |   0
 app/code/Magento/Multishipping/etc/config.xml |   0
 .../Magento/Multishipping/etc/frontend/di.xml |   0
 .../Multishipping/etc/frontend/page_types.xml |   0
 .../Multishipping/etc/frontend/routes.xml     |   0
 .../Multishipping/etc/frontend/sections.xml   |   0
 app/code/Magento/Multishipping/etc/module.xml |   0
 app/code/Magento/Multishipping/i18n/en_US.csv |   0
 .../Magento/Multishipping/registration.php    |   0
 .../frontend/layout/checkout_cart_index.xml   |   0
 .../layout/multishipping_checkout.xml         |   0
 ...ishipping_checkout_address_editaddress.xml |   0
 ...ishipping_checkout_address_editbilling.xml |   0
 ...shipping_checkout_address_editshipping.xml |   0
 ...tishipping_checkout_address_newbilling.xml |   0
 ...ishipping_checkout_address_newshipping.xml |   0
 .../multishipping_checkout_address_select.xml |   0
 ...hipping_checkout_address_selectbilling.xml |   0
 .../multishipping_checkout_addresses.xml      |   0
 .../layout/multishipping_checkout_billing.xml |   0
 ...ultishipping_checkout_customer_address.xml |   0
 .../layout/multishipping_checkout_login.xml   |   0
 .../multishipping_checkout_overview.xml       |   0
 .../multishipping_checkout_register.xml       |   0
 .../multishipping_checkout_shipping.xml       |   0
 .../layout/multishipping_checkout_success.xml |   0
 .../view/frontend/requirejs-config.js         |   0
 .../templates/checkout/address/select.phtml   |   0
 .../templates/checkout/addresses.phtml        |   0
 .../frontend/templates/checkout/billing.phtml |   0
 .../templates/checkout/billing/items.phtml    |   0
 .../templates/checkout/item/default.phtml     |   0
 .../frontend/templates/checkout/link.phtml    |   0
 .../templates/checkout/overview.phtml         |   0
 .../templates/checkout/overview/item.phtml    |   0
 .../templates/checkout/shipping.phtml         |   0
 .../frontend/templates/checkout/state.phtml   |   0
 .../frontend/templates/checkout/success.phtml |   0
 .../frontend/templates/js/components.phtml    |   0
 .../multishipping/item/default.phtml          |   0
 .../view/frontend/web/js/multi-shipping.js    |   0
 .../view/frontend/web/js/overview.js          |   0
 .../view/frontend/web/js/payment.js           |   0
 .../Console/Command/DeployMarker.php          |   0
 .../Magento/NewRelicReporting/LICENSE.txt     |   0
 .../Magento/NewRelicReporting/LICENSE_AFL.txt |   0
 .../Model/Apm/Deployments.php                 |   0
 .../NewRelicReporting/Model/Config.php        |   0
 .../NewRelicReporting/Model/Counter.php       |   0
 .../NewRelicReporting/Model/Counts.php        |   0
 .../Magento/NewRelicReporting/Model/Cron.php  |   0
 .../Model/Cron/ReportCounts.php               |   0
 .../Model/Cron/ReportModulesInfo.php          |   0
 .../Model/Cron/ReportNewRelicCron.php         |   0
 .../NewRelicReporting/Model/CronEvent.php     |   0
 .../NewRelicReporting/Model/Module.php        |   0
 .../Model/Module/Collect.php                  |   0
 .../Model/NewRelicWrapper.php                 |   0
 .../Model/Observer/CheckConfig.php            |   0
 .../Model/Observer/ReportConcurrentAdmins.php |   0
 .../ReportConcurrentAdminsToNewRelic.php      |   0
 .../Model/Observer/ReportConcurrentUsers.php  |   0
 .../ReportConcurrentUsersToNewRelic.php       |   0
 .../Model/Observer/ReportOrderPlaced.php      |   0
 .../Observer/ReportOrderPlacedToNewRelic.php  |   0
 .../Model/Observer/ReportProductDeleted.php   |   0
 .../ReportProductDeletedToNewRelic.php        |   0
 .../Model/Observer/ReportProductSaved.php     |   0
 .../Observer/ReportProductSavedToNewRelic.php |   0
 .../Model/Observer/ReportSystemCacheFlush.php |   0
 .../ReportSystemCacheFlushToNewRelic.php      |   0
 .../NewRelicReporting/Model/Orders.php        |   0
 .../Model/ResourceModel/Counts.php            |   0
 .../Model/ResourceModel/Counts/Collection.php |   0
 .../Model/ResourceModel/Module.php            |   0
 .../Model/ResourceModel/Module/Collection.php |   0
 .../Model/ResourceModel/Orders.php            |   0
 .../Model/ResourceModel/Orders/Collection.php |   0
 .../Model/ResourceModel/System.php            |   0
 .../Model/ResourceModel/System/Collection.php |   0
 .../Model/ResourceModel/Users.php             |   0
 .../Model/ResourceModel/Users/Collection.php  |   0
 .../Model/ServiceShellUser.php                |   0
 .../NewRelicReporting/Model/System.php        |   0
 .../Magento/NewRelicReporting/Model/Users.php |   0
 .../NewRelicReporting/Plugin/HttpPlugin.php   |   0
 app/code/Magento/NewRelicReporting/README.md  |   0
 .../NewRelicReporting/Setup/InstallSchema.php |   0
 .../NewRelicReporting/Setup/UpgradeSchema.php |   0
 .../Test/Unit/Model/Apm/DeploymentsTest.php   |   0
 .../Test/Unit/Model/CounterTest.php           |   0
 .../Test/Unit/Model/Cron/ReportCountsTest.php |   0
 .../Unit/Model/Cron/ReportModulesInfoTest.php |   0
 .../Model/Cron/ReportNewRelicCronTest.php     |   0
 .../Test/Unit/Model/CronEventTest.php         |   0
 .../Test/Unit/Model/CronTest.php              |   0
 .../Test/Unit/Model/Module/CollectTest.php    |   0
 .../Unit/Model/Observer/CheckConfigTest.php   |   0
 .../Observer/ReportConcurrentAdminsTest.php   |   0
 .../ReportConcurrentAdminsToNewRelicTest.php  |   0
 .../Observer/ReportConcurrentUsersTest.php    |   0
 .../ReportConcurrentUsersToNewRelicTest.php   |   0
 .../Model/Observer/ReportOrderPlacedTest.php  |   0
 .../ReportOrderPlacedToNewRelicTest.php       |   0
 .../Observer/ReportProductDeletedTest.php     |   0
 .../ReportProductDeletedToNewRelicTest.php    |   0
 .../Model/Observer/ReportProductSavedTest.php |   0
 .../ReportProductSavedToNewRelicTest.php      |   0
 .../Observer/ReportSystemCacheFlushTest.php   |   0
 .../ReportSystemCacheFlushToNewRelicTest.php  |   0
 .../Magento/NewRelicReporting/composer.json   |   0
 .../Magento/NewRelicReporting/etc/acl.xml     |   0
 .../etc/adminhtml/events.xml                  |   0
 .../etc/adminhtml/system.xml                  |   0
 .../Magento/NewRelicReporting/etc/config.xml  |   0
 .../Magento/NewRelicReporting/etc/crontab.xml |   0
 app/code/Magento/NewRelicReporting/etc/di.xml |   0
 .../Magento/NewRelicReporting/etc/events.xml  |   0
 .../NewRelicReporting/etc/frontend/events.xml |   0
 .../Magento/NewRelicReporting/etc/module.xml  |   0
 .../Magento/NewRelicReporting/i18n/en_US.csv  |   0
 .../NewRelicReporting/registration.php        |   0
 .../Newsletter/Block/Adminhtml/Problem.php    |   0
 .../Problem/Grid/Filter/Checkbox.php          |   0
 .../Problem/Grid/Renderer/Checkbox.php        |   0
 .../Newsletter/Block/Adminhtml/Queue/Edit.php |   0
 .../Block/Adminhtml/Queue/Edit/Form.php       |   0
 .../Adminhtml/Queue/Grid/Renderer/Action.php  |   0
 .../Block/Adminhtml/Queue/Preview.php         |   0
 .../Block/Adminhtml/Queue/Preview/Form.php    |   0
 .../Newsletter/Block/Adminhtml/Subscriber.php |   0
 .../Block/Adminhtml/Subscriber/Grid.php       |   0
 .../Subscriber/Grid/Filter/Checkbox.php       |   0
 .../Subscriber/Grid/Filter/Website.php        |   0
 .../Subscriber/Grid/Renderer/Checkbox.php     |   0
 .../Newsletter/Block/Adminhtml/Template.php   |   0
 .../Block/Adminhtml/Template/Edit.php         |   0
 .../Block/Adminhtml/Template/Edit/Form.php    |   0
 .../Block/Adminhtml/Template/Grid.php         |   0
 .../Template/Grid/Renderer/Action.php         |   0
 .../Template/Grid/Renderer/Sender.php         |   0
 .../Block/Adminhtml/Template/Preview.php      |   0
 .../Block/Adminhtml/Template/Preview/Form.php |   0
 .../Magento/Newsletter/Block/Subscribe.php    |   0
 .../Grid/Options/GroupOptionHash.php          |   0
 .../Grid/Options/StoreOptionHash.php          |   0
 .../Controller/Adminhtml/Problem.php          |   0
 .../Controller/Adminhtml/Problem/Grid.php     |   0
 .../Controller/Adminhtml/Problem/Index.php    |   0
 .../Newsletter/Controller/Adminhtml/Queue.php |   0
 .../Controller/Adminhtml/Queue/Cancel.php     |   0
 .../Controller/Adminhtml/Queue/Drop.php       |   0
 .../Controller/Adminhtml/Queue/Edit.php       |   0
 .../Controller/Adminhtml/Queue/Grid.php       |   0
 .../Controller/Adminhtml/Queue/Index.php      |   0
 .../Controller/Adminhtml/Queue/Pause.php      |   0
 .../Controller/Adminhtml/Queue/Preview.php    |   0
 .../Controller/Adminhtml/Queue/Resume.php     |   0
 .../Controller/Adminhtml/Queue/Save.php       |   0
 .../Controller/Adminhtml/Queue/Sending.php    |   0
 .../Controller/Adminhtml/Queue/Start.php      |   0
 .../Controller/Adminhtml/Subscriber.php       |   0
 .../Adminhtml/Subscriber/ExportCsv.php        |   0
 .../Adminhtml/Subscriber/ExportXml.php        |   0
 .../Controller/Adminhtml/Subscriber/Grid.php  |   0
 .../Controller/Adminhtml/Subscriber/Index.php |   0
 .../Adminhtml/Subscriber/MassDelete.php       |   0
 .../Adminhtml/Subscriber/MassUnsubscribe.php  |   0
 .../Controller/Adminhtml/Template.php         |   0
 .../Controller/Adminhtml/Template/Delete.php  |   0
 .../Controller/Adminhtml/Template/Drop.php    |   0
 .../Controller/Adminhtml/Template/Edit.php    |   0
 .../Controller/Adminhtml/Template/Grid.php    |   0
 .../Controller/Adminhtml/Template/Index.php   |   0
 .../Adminhtml/Template/NewAction.php          |   0
 .../Controller/Adminhtml/Template/Preview.php |   0
 .../Controller/Adminhtml/Template/Save.php    |   0
 .../Magento/Newsletter/Controller/Manage.php  |   0
 .../Newsletter/Controller/Manage/Index.php    |   0
 .../Newsletter/Controller/Manage/Save.php     |   0
 .../Newsletter/Controller/Subscriber.php      |   0
 .../Controller/Subscriber/Confirm.php         |   0
 .../Controller/Subscriber/NewAction.php       |   0
 .../Controller/Subscriber/Unsubscribe.php     |   0
 app/code/Magento/Newsletter/Helper/Data.php   |   0
 app/code/Magento/Newsletter/LICENSE.txt       |   0
 app/code/Magento/Newsletter/LICENSE_AFL.txt   |   0
 .../Magento/Newsletter/Model/Observer.php     |   0
 .../Model/Plugin/CustomerPlugin.php           |   0
 app/code/Magento/Newsletter/Model/Problem.php |   0
 app/code/Magento/Newsletter/Model/Queue.php   |   0
 .../Newsletter/Model/Queue/Options/Status.php |   0
 .../Model/Queue/TransportBuilder.php          |   0
 .../Model/ResourceModel/Grid/Collection.php   |   0
 .../Model/ResourceModel/Problem.php           |   0
 .../ResourceModel/Problem/Collection.php      |   0
 .../Newsletter/Model/ResourceModel/Queue.php  |   0
 .../Model/ResourceModel/Queue/Collection.php  |   0
 .../ResourceModel/Queue/Grid/Collection.php   |   0
 .../Model/ResourceModel/Subscriber.php        |   0
 .../ResourceModel/Subscriber/Collection.php   |   0
 .../Subscriber/Grid/Collection.php            |   0
 .../Model/ResourceModel/Template.php          |   0
 .../ResourceModel/Template/Collection.php     |   0
 app/code/Magento/Newsletter/Model/Session.php |   0
 .../Magento/Newsletter/Model/Subscriber.php   |   0
 .../Magento/Newsletter/Model/Template.php     |   0
 .../Newsletter/Model/Template/Filter.php      |   0
 app/code/Magento/Newsletter/README.md         |   0
 .../Newsletter/Setup/InstallSchema.php        |   0
 .../Newsletter/Setup/UpgradeSchema.php        |   0
 .../Block/Adminhtml/Queue/PreviewTest.php     |   0
 .../Block/Adminhtml/Template/PreviewTest.php  |   0
 .../Test/Unit/Controller/Manage/SaveTest.php  |   0
 .../Unit/Model/Plugin/CustomerPluginTest.php  |   0
 .../Unit/Model/Queue/TransportBuilderTest.php |   0
 .../Newsletter/Test/Unit/Model/QueueTest.php  |   0
 .../Test/Unit/Model/SubscriberTest.php        |   0
 .../Test/Unit/Model/Template/FilterTest.php   |   0
 .../Test/Unit/Model/TemplateTest.php          |   0
 app/code/Magento/Newsletter/composer.json     |   0
 app/code/Magento/Newsletter/etc/acl.xml       |   0
 .../Magento/Newsletter/etc/adminhtml/menu.xml |   0
 .../Newsletter/etc/adminhtml/routes.xml       |   0
 .../Newsletter/etc/adminhtml/system.xml       |   0
 app/code/Magento/Newsletter/etc/config.xml    |   0
 app/code/Magento/Newsletter/etc/crontab.xml   |   0
 app/code/Magento/Newsletter/etc/di.xml        |   0
 .../Newsletter/etc/email_templates.xml        |   0
 .../Newsletter/etc/extension_attributes.xml   |   0
 .../Magento/Newsletter/etc/frontend/di.xml    |   0
 .../Newsletter/etc/frontend/page_types.xml    |   0
 .../Newsletter/etc/frontend/routes.xml        |   0
 app/code/Magento/Newsletter/etc/module.xml    |   0
 app/code/Magento/Newsletter/i18n/en_US.csv    |   0
 app/code/Magento/Newsletter/registration.php  |   0
 .../layout/newsletter_problem_block.xml       |   0
 .../layout/newsletter_problem_grid.xml        |   0
 .../layout/newsletter_problem_index.xml       |   0
 .../layout/newsletter_queue_edit.xml          |   0
 .../layout/newsletter_queue_grid.xml          |   0
 .../layout/newsletter_queue_grid_block.xml    |   0
 .../layout/newsletter_queue_index.xml         |   0
 .../layout/newsletter_queue_preview.xml       |   0
 .../layout/newsletter_queue_preview_popup.xml |   0
 .../layout/newsletter_subscriber_block.xml    |   0
 .../newsletter_subscriber_exportcsv.xml       |   0
 .../newsletter_subscriber_exportxml.xml       |   0
 .../layout/newsletter_subscriber_grid.xml     |   0
 .../layout/newsletter_subscriber_index.xml    |   0
 .../layout/newsletter_template_edit.xml       |   0
 .../layout/newsletter_template_preview.xml    |   0
 .../newsletter_template_preview_popup.xml     |   0
 .../view/adminhtml/layout/preview.xml         |   0
 .../templates/preview/iframeswitcher.phtml    |   0
 .../adminhtml/templates/preview/store.phtml   |   0
 .../adminhtml/templates/problem/list.phtml    |   0
 .../view/adminhtml/templates/queue/edit.phtml |   0
 .../view/adminhtml/templates/queue/list.phtml |   0
 .../adminhtml/templates/queue/preview.phtml   |   0
 .../adminhtml/templates/subscriber/list.phtml |   0
 .../adminhtml/templates/template/edit.phtml   |   0
 .../adminhtml/templates/template/list.phtml   |   0
 .../templates/template/preview.phtml          |   0
 .../view/base/ui_component/customer_form.xml  |   0
 .../view/frontend/email/subscr_confirm.html   |   0
 .../view/frontend/email/subscr_success.html   |   0
 .../view/frontend/email/unsub_success.html    |   0
 .../view/frontend/layout/customer_account.xml |   0
 .../view/frontend/layout/default.xml          |   0
 .../layout/newsletter_manage_index.xml        |   0
 .../frontend/templates/js/components.phtml    |   0
 .../view/frontend/templates/subscribe.phtml   |   0
 .../Block/Form/AbstractInstruction.php        |   0
 .../Block/Form/Banktransfer.php               |   0
 .../Block/Form/Cashondelivery.php             |   0
 .../OfflinePayments/Block/Form/Checkmo.php    |   0
 .../Block/Form/Purchaseorder.php              |   0
 .../OfflinePayments/Block/Info/Checkmo.php    |   0
 .../Block/Info/Purchaseorder.php              |   0
 app/code/Magento/OfflinePayments/LICENSE.txt  |   0
 .../Magento/OfflinePayments/LICENSE_AFL.txt   |   0
 .../OfflinePayments/Model/Banktransfer.php    |   0
 .../OfflinePayments/Model/Cashondelivery.php  |   0
 .../Magento/OfflinePayments/Model/Checkmo.php |   0
 .../Model/CheckmoConfigProvider.php           |   0
 .../Model/InstructionsConfigProvider.php      |   0
 .../OfflinePayments/Model/Purchaseorder.php   |   0
 .../BeforeOrderPaymentSaveObserver.php        |   0
 app/code/Magento/OfflinePayments/README.md    |   0
 .../Block/Form/AbstractInstructionTest.php    |   0
 .../Test/Unit/Block/Info/CheckmoTest.php      |   0
 .../Test/Unit/Model/BanktransferTest.php      |   0
 .../Test/Unit/Model/CashondeliveryTest.php    |   0
 .../Unit/Model/CheckmoConfigProviderTest.php  |   0
 .../Test/Unit/Model/CheckmoTest.php           |   0
 .../Model/InstructionsConfigProviderTest.php  |   0
 .../Test/Unit/Model/PurchaseorderTest.php     |   0
 .../BeforeOrderPaymentSaveObserverTest.php    |   0
 .../Magento/OfflinePayments/composer.json     |   0
 .../OfflinePayments/etc/adminhtml/system.xml  |   0
 .../Magento/OfflinePayments/etc/config.xml    |   0
 app/code/Magento/OfflinePayments/etc/di.xml   |   0
 .../Magento/OfflinePayments/etc/events.xml    |   0
 .../OfflinePayments/etc/frontend/di.xml       |   0
 .../Magento/OfflinePayments/etc/module.xml    |   0
 .../Magento/OfflinePayments/etc/payment.xml   |   0
 .../Magento/OfflinePayments/i18n/en_US.csv    |   0
 .../Magento/OfflinePayments/registration.php  |   0
 .../templates/form/banktransfer.phtml         |   0
 .../templates/form/cashondelivery.phtml       |   0
 .../adminhtml/templates/form/checkmo.phtml    |   0
 .../templates/form/purchaseorder.phtml        |   0
 .../adminhtml/templates/info/checkmo.phtml    |   0
 .../templates/info/pdf/checkmo.phtml          |   0
 .../templates/info/pdf/purchaseorder.phtml    |   0
 .../templates/info/purchaseorder.phtml        |   0
 .../frontend/layout/checkout_index_index.xml  |   0
 .../templates/form/banktransfer.phtml         |   0
 .../templates/form/cashondelivery.phtml       |   0
 .../frontend/templates/form/checkmo.phtml     |   0
 .../templates/form/purchaseorder.phtml        |   0
 .../frontend/templates/info/checkmo.phtml     |   0
 .../templates/info/purchaseorder.phtml        |   0
 .../method-renderer/banktransfer-method.js    |   0
 .../method-renderer/cashondelivery-method.js  |   0
 .../payment/method-renderer/checkmo-method.js |   0
 .../method-renderer/purchaseorder-method.js   |   0
 .../web/js/view/payment/offline-payments.js   |   0
 .../web/template/payment/banktransfer.html    |   0
 .../web/template/payment/cashondelivery.html  |   0
 .../web/template/payment/checkmo.html         |   0
 .../template/payment/purchaseorder-form.html  |   0
 .../Adminhtml/Carrier/Tablerate/Grid.php      |   0
 .../Block/Adminhtml/Form/Field/Export.php     |   0
 .../Block/Adminhtml/Form/Field/Import.php     |   0
 .../System/Config/ExportTablerates.php        |   0
 app/code/Magento/OfflineShipping/LICENSE.txt  |   0
 .../Magento/OfflineShipping/LICENSE_AFL.txt   |   0
 .../Model/Carrier/Flatrate.php                |   0
 .../Carrier/Flatrate/ItemPriceCalculator.php  |   0
 .../Model/Carrier/Freeshipping.php            |   0
 .../OfflineShipping/Model/Carrier/Pickup.php  |   0
 .../Model/Carrier/Tablerate.php               |   0
 .../Model/Config/Backend/Tablerate.php        |   0
 .../Model/Config/Source/Flatrate.php          |   0
 .../Model/Config/Source/Tablerate.php         |   0
 .../Plugin/Checkout/Block/Cart/Shipping.php   |   0
 .../Model/Quote/Address/FreeShipping.php      |   0
 .../Model/ResourceModel/Carrier/Tablerate.php |   0
 .../Tablerate/CSV/ColumnNotFoundException.php |   0
 .../Carrier/Tablerate/CSV/ColumnResolver.php  |   0
 .../Carrier/Tablerate/CSV/RowException.php    |   0
 .../Carrier/Tablerate/CSV/RowParser.php       |   0
 .../Carrier/Tablerate/Collection.php          |   0
 .../Carrier/Tablerate/DataHashGenerator.php   |   0
 .../Carrier/Tablerate/Import.php              |   0
 .../Carrier/Tablerate/LocationDirectory.php   |   0
 .../Carrier/Tablerate/RateQuery.php           |   0
 .../Model/SalesRule/Calculator.php            |   0
 .../OfflineShipping/Model/SalesRule/Rule.php  |   0
 .../Source/SalesRule/FreeShippingOptions.php  |   0
 app/code/Magento/OfflineShipping/README.md    |   0
 .../OfflineShipping/Setup/InstallSchema.php   |   0
 .../OfflineShipping/Setup/UpgradeData.php     |   0
 .../OfflineShipping/Setup/UpgradeSchema.php   |   0
 .../Adminhtml/Carrier/Tablerate/GridTest.php  |   0
 .../Block/Adminhtml/Form/Field/ExportTest.php |   0
 .../Block/Adminhtml/Form/Field/ImportTest.php |   0
 .../Test/Unit/Model/Carrier/FlatrateTest.php  |   0
 .../Test/Unit/Model/Carrier/TablerateTest.php |   0
 .../Model/Config/Backend/TablerateTest.php    |   0
 .../Unit/Model/Config/Source/FlatrateTest.php |   0
 .../Model/Config/Source/TablerateTest.php     |   0
 .../Checkout/Block/Cart/ShippingTest.php      |   0
 .../Model/Quote/Address/FreeShippingTest.php  |   0
 .../Tablerate/CSV/ColumnResolverTest.php      |   0
 .../Carrier/Tablerate/CSV/RowParserTest.php   |   0
 .../Carrier/Tablerate/ImportTest.php          |   0
 .../Unit/Model/SalesRule/CalculatorTest.php   |   0
 .../Magento/OfflineShipping/composer.json     |   0
 .../OfflineShipping/etc/adminhtml/routes.xml  |   0
 .../OfflineShipping/etc/adminhtml/system.xml  |   0
 .../Magento/OfflineShipping/etc/config.xml    |   0
 app/code/Magento/OfflineShipping/etc/di.xml   |   0
 .../Magento/OfflineShipping/etc/fieldset.xml  |   0
 .../Magento/OfflineShipping/etc/module.xml    |   0
 .../Magento/OfflineShipping/i18n/en_US.csv    |   0
 .../Magento/OfflineShipping/registration.php  |   0
 .../ui_component/sales_rule_form.xml          |   0
 .../salesrulestaging_update_form.xml          |   0
 .../frontend/layout/checkout_cart_index.xml   |   0
 .../frontend/layout/checkout_index_index.xml  |   0
 .../flatrate.js                               |   0
 .../freeshipping.js                           |   0
 .../tablerate.js                              |   0
 .../shipping-rates-validator/flatrate.js      |   0
 .../shipping-rates-validator/freeshipping.js  |   0
 .../shipping-rates-validator/tablerate.js     |   0
 .../shipping-rates-validation/flatrate.js     |   0
 .../shipping-rates-validation/freeshipping.js |   0
 .../shipping-rates-validation/tablerate.js    |   0
 .../Magento/PageCache/Block/Javascript.php    |   0
 .../Block/System/Config/Form/Field/Export.php |   0
 .../Config/Form/Field/Export/Varnish4.php     |   0
 .../Config/Form/Field/Export/Varnish5.php     |   0
 .../Console/Command/GenerateVclCommand.php    |   0
 .../PageCache/ExportVarnishConfig.php         |   0
 .../Magento/PageCache/Controller/Block.php    |   0
 .../PageCache/Controller/Block/Esi.php        |   0
 .../PageCache/Controller/Block/Render.php     |   0
 .../Exception/UnsupportedVarnishVersion.php   |   0
 app/code/Magento/PageCache/Helper/Data.php    |   0
 app/code/Magento/PageCache/LICENSE.txt        |   0
 app/code/Magento/PageCache/LICENSE_AFL.txt    |   0
 .../Model/App/CacheIdentifierPlugin.php       |   0
 .../App/FrontController/BuiltinPlugin.php     |   0
 .../App/FrontController/VarnishPlugin.php     |   0
 .../PageCache/Model/App/PageCachePlugin.php   |   0
 .../Model/App/Response/HttpPlugin.php         |   0
 .../Magento/PageCache/Model/Cache/Server.php  |   0
 .../Magento/PageCache/Model/Cache/Type.php    |   0
 app/code/Magento/PageCache/Model/Config.php   |   0
 .../Model/Controller/Result/BuiltinPlugin.php |   0
 .../Model/Controller/Result/VarnishPlugin.php |   0
 .../PageCache/Model/DepersonalizeChecker.php  |   0
 .../Model/Layout/DepersonalizePlugin.php      |   0
 .../PageCache/Model/Layout/LayoutPlugin.php   |   0
 .../PageCache/Model/Layout/MergePlugin.php    |   0
 .../Model/System/Config/Backend/Ttl.php       |   0
 .../Model/System/Config/Backend/Varnish.php   |   0
 .../System/Config/Source/Application.php      |   0
 .../PageCache/Model/Varnish/VclGenerator.php  |   0
 .../Model/Varnish/VclTemplateLocator.php      |   0
 .../PageCache/Model/VclGeneratorInterface.php |   0
 .../Model/VclTemplateLocatorInterface.php     |   0
 .../PageCache/Observer/FlushAllCache.php      |   0
 .../PageCache/Observer/FlushCacheByTags.php   |   0
 .../PageCache/Observer/FlushFormKey.php       |   0
 .../PageCache/Observer/InvalidateCache.php    |   0
 .../Observer/ProcessLayoutRenderElement.php   |   0
 .../Observer/RegisterFormKeyFromCookie.php    |   0
 app/code/Magento/PageCache/README.md          |   0
 .../Unit/App/CacheIdentifierPluginTest.php    |   0
 .../Test/Unit/Block/Controller/StubBlock.php  |   0
 .../Test/Unit/Block/JavascriptTest.php        |   0
 .../PageCache/ExportVarnishConfigTest.php     |   0
 .../Test/Unit/Controller/Block/EsiTest.php    |   0
 .../Test/Unit/Controller/Block/RenderTest.php |   0
 .../PageCache/Test/Unit/Helper/DataTest.php   |   0
 .../App/FrontController/BuiltinPluginTest.php |   0
 .../App/FrontController/VarnishPluginTest.php |   0
 .../Unit/Model/App/PageCachePluginTest.php    |   0
 .../Model/App/Response/HttpPluginTest.php     |   0
 .../Test/Unit/Model/Cache/ServerTest.php      |   0
 .../Test/Unit/Model/Cache/TypeTest.php        |   0
 .../PageCache/Test/Unit/Model/ConfigTest.php  |   0
 .../Controller/Result/BuiltinPluginTest.php   |   0
 .../Controller/Result/VarnishPluginTest.php   |   0
 .../Unit/Model/DepersonalizeCheckerTest.php   |   0
 .../Model/Layout/DepersonalizePluginTest.php  |   0
 .../Unit/Model/Layout/LayoutPluginTest.php    |   0
 .../Test/Unit/Model/_files/result.vcl         |   0
 .../PageCache/Test/Unit/Model/_files/test.vcl |   0
 .../Test/Unit/Observer/FlushAllCacheTest.php  |   0
 .../Unit/Observer/FlushCacheByTagsTest.php    |   0
 .../Test/Unit/Observer/FlushFormKeyTest.php   |   0
 .../Unit/Observer/InvalidateCacheTest.php     |   0
 .../ProcessLayoutRenderElementTest.php        |   0
 .../RegisterFormKeyFromCookieTest.php         |   0
 app/code/Magento/PageCache/composer.json      |   0
 .../Magento/PageCache/etc/adminhtml/di.xml    |   0
 .../PageCache/etc/adminhtml/routes.xml        |   0
 .../PageCache/etc/adminhtml/system.xml        |   0
 app/code/Magento/PageCache/etc/cache.xml      |   0
 app/code/Magento/PageCache/etc/config.xml     |   0
 app/code/Magento/PageCache/etc/di.xml         |   0
 app/code/Magento/PageCache/etc/events.xml     |   0
 .../Magento/PageCache/etc/frontend/di.xml     |   0
 .../Magento/PageCache/etc/frontend/events.xml |   0
 .../Magento/PageCache/etc/frontend/routes.xml |   0
 app/code/Magento/PageCache/etc/module.xml     |   0
 app/code/Magento/PageCache/etc/varnish4.vcl   |   0
 app/code/Magento/PageCache/etc/varnish5.vcl   |   0
 app/code/Magento/PageCache/i18n/en_US.csv     |   0
 app/code/Magento/PageCache/registration.php   |   0
 .../layout/adminhtml_system_config_edit.xml   |   0
 .../templates/page_cache_validation.phtml     |   0
 .../view/frontend/layout/default.xml          |   0
 .../view/frontend/requirejs-config.js         |   0
 .../view/frontend/templates/javascript.phtml  |   0
 .../frontend/templates/js/components.phtml    |   0
 .../view/frontend/web/js/page-cache.js        |   0
 .../Api/Data/PaymentMethodInterface.php       |   0
 .../Api/PaymentMethodListInterface.php        |   0
 .../Api/PaymentVerificationInterface.php      |   0
 .../Block/Adminhtml/Transparent/Form.php      |   0
 .../Payment/Block/ConfigurableInfo.php        |   0
 app/code/Magento/Payment/Block/Form.php       |   0
 app/code/Magento/Payment/Block/Form/Cc.php    |   0
 .../Magento/Payment/Block/Form/Container.php  |   0
 app/code/Magento/Payment/Block/Info.php       |   0
 .../Payment/Block/Info/AbstractContainer.php  |   0
 app/code/Magento/Payment/Block/Info/Cc.php    |   0
 .../Payment/Block/Info/Instructions.php       |   0
 .../Payment/Block/Info/Substitution.php       |   0
 .../Payment/Block/Transparent/Form.php        |   0
 .../Payment/Block/Transparent/Iframe.php      |   0
 .../Payment/Block/Transparent/Info.php        |   0
 .../Gateway/Command/CommandException.php      |   0
 .../Gateway/Command/CommandManager.php        |   0
 .../Command/CommandManagerInterface.php       |   0
 .../Gateway/Command/CommandManagerPool.php    |   0
 .../Command/CommandManagerPoolInterface.php   |   0
 .../Payment/Gateway/Command/CommandPool.php   |   0
 .../Gateway/Command/CommandPoolInterface.php  |   0
 .../Gateway/Command/GatewayCommand.php        |   0
 .../Payment/Gateway/Command/NullCommand.php   |   0
 .../Gateway/Command/Result/ArrayResult.php    |   0
 .../Gateway/Command/Result/BoolResult.php     |   0
 .../Gateway/Command/ResultInterface.php       |   0
 .../Payment/Gateway/CommandInterface.php      |   0
 .../Magento/Payment/Gateway/Config/Config.php |   0
 .../Payment/Gateway/Config/ConfigFactory.php  |   0
 .../Gateway/Config/ConfigValueHandler.php     |   0
 .../Gateway/Config/ValueHandlerInterface.php  |   0
 .../Gateway/Config/ValueHandlerPool.php       |   0
 .../Config/ValueHandlerPoolInterface.php      |   0
 .../Gateway/ConfigFactoryInterface.php        |   0
 .../Payment/Gateway/ConfigInterface.php       |   0
 .../Gateway/Data/AddressAdapterInterface.php  |   0
 .../Gateway/Data/Order/AddressAdapter.php     |   0
 .../Gateway/Data/Order/OrderAdapter.php       |   0
 .../Gateway/Data/OrderAdapterInterface.php    |   0
 .../Gateway/Data/PaymentDataObject.php        |   0
 .../Gateway/Data/PaymentDataObjectFactory.php |   0
 .../PaymentDataObjectFactoryInterface.php     |   0
 .../Data/PaymentDataObjectInterface.php       |   0
 .../Gateway/Data/Quote/AddressAdapter.php     |   0
 .../Gateway/Data/Quote/QuoteAdapter.php       |   0
 .../ErrorMapper/ErrorMessageMapper.php        |   0
 .../ErrorMessageMapperInterface.php           |   0
 .../Gateway/ErrorMapper/MappingData.php       |   0
 .../Gateway/ErrorMapper/NullMappingData.php   |   0
 .../ErrorMapper/XmlToArrayConverter.php       |   0
 .../Payment/Gateway/Helper/ContextHelper.php  |   0
 .../Payment/Gateway/Helper/SubjectReader.php  |   0
 .../Payment/Gateway/Http/Client/Soap.php      |   0
 .../Payment/Gateway/Http/Client/Zend.php      |   0
 .../Payment/Gateway/Http/ClientException.php  |   0
 .../Payment/Gateway/Http/ClientInterface.php  |   0
 .../Http/Converter/HtmlFormConverter.php      |   0
 .../Converter/Soap/ObjectToArrayConverter.php |   0
 .../Gateway/Http/ConverterException.php       |   0
 .../Gateway/Http/ConverterInterface.php       |   0
 .../Magento/Payment/Gateway/Http/Transfer.php |   0
 .../Payment/Gateway/Http/TransferBuilder.php  |   0
 .../Gateway/Http/TransferFactoryInterface.php |   0
 .../Gateway/Http/TransferInterface.php        |   0
 .../Gateway/Request/BuilderComposite.php      |   0
 .../Gateway/Request/BuilderInterface.php      |   0
 .../Payment/Gateway/Response/HandlerChain.php |   0
 .../Gateway/Response/HandlerInterface.php     |   0
 .../Gateway/Validator/AbstractValidator.php   |   0
 .../Gateway/Validator/CountryValidator.php    |   0
 .../Payment/Gateway/Validator/Result.php      |   0
 .../Gateway/Validator/ResultInterface.php     |   0
 .../Gateway/Validator/ValidatorComposite.php  |   0
 .../Gateway/Validator/ValidatorInterface.php  |   0
 .../Gateway/Validator/ValidatorPool.php       |   0
 .../Validator/ValidatorPoolInterface.php      |   0
 app/code/Magento/Payment/Helper/Data.php      |   0
 app/code/Magento/Payment/Helper/Formatter.php |   0
 app/code/Magento/Payment/LICENSE.txt          |   0
 app/code/Magento/Payment/LICENSE_AFL.txt      |   0
 app/code/Magento/Payment/Model/Cart.php       |   0
 .../Payment/Model/Cart/SalesModel/Factory.php |   0
 .../Payment/Model/Cart/SalesModel/Order.php   |   0
 .../Payment/Model/Cart/SalesModel/Quote.php   |   0
 .../Cart/SalesModel/SalesModelInterface.php   |   0
 app/code/Magento/Payment/Model/CcConfig.php   |   0
 .../Payment/Model/CcConfigProvider.php        |   0
 .../Payment/Model/CcGenericConfigProvider.php |   0
 .../Payment/Model/Checks/CanUseCheckout.php   |   0
 .../Payment/Model/Checks/CanUseForCountry.php |   0
 .../CanUseForCountry/CountryProvider.php      |   0
 .../Model/Checks/CanUseForCurrency.php        |   0
 .../Payment/Model/Checks/CanUseInternal.php   |   0
 .../Payment/Model/Checks/Composite.php        |   0
 .../Model/Checks/SpecificationFactory.php     |   0
 .../Model/Checks/SpecificationInterface.php   |   0
 .../Payment/Model/Checks/TotalMinMax.php      |   0
 .../Payment/Model/Checks/ZeroTotal.php        |   0
 app/code/Magento/Payment/Model/Config.php     |   0
 .../Payment/Model/Config/Converter.php        |   0
 .../Magento/Payment/Model/Config/Reader.php   |   0
 .../Payment/Model/Config/SchemaLocator.php    |   0
 .../Model/Config/Source/Allmethods.php        |   0
 .../Config/Source/Allspecificcountries.php    |   0
 .../Payment/Model/Config/Source/Cctype.php    |   0
 .../Payment/Model/IframeConfigProvider.php    |   0
 app/code/Magento/Payment/Model/Info.php       |   0
 .../Magento/Payment/Model/InfoInterface.php   |   0
 .../Payment/Model/Method/AbstractMethod.php   |   0
 .../Magento/Payment/Model/Method/Adapter.php  |   0
 app/code/Magento/Payment/Model/Method/Cc.php  |   0
 .../Payment/Model/Method/ConfigInterface.php  |   0
 .../Magento/Payment/Model/Method/Factory.php  |   0
 .../Magento/Payment/Model/Method/Free.php     |   0
 .../Payment/Model/Method/InstanceFactory.php  |   0
 .../Magento/Payment/Model/Method/Logger.php   |   0
 .../Model/Method/Online/GatewayInterface.php  |   0
 .../Specification/AbstractSpecification.php   |   0
 .../Model/Method/Specification/Composite.php  |   0
 .../Model/Method/Specification/Factory.php    |   0
 .../Model/Method/SpecificationInterface.php   |   0
 .../Payment/Model/Method/Substitution.php     |   0
 .../Model/Method/TransparentInterface.php     |   0
 .../Magento/Payment/Model/MethodInterface.php |   0
 app/code/Magento/Payment/Model/MethodList.php |   0
 .../Magento/Payment/Model/Paygate/Result.php  |   0
 .../Magento/Payment/Model/PaymentMethod.php   |   0
 .../Payment/Model/PaymentMethodList.php       |   0
 .../Model/ResourceModel/Grid/GroupList.php    |   0
 .../Model/ResourceModel/Grid/TypeList.php     |   0
 .../Magento/Payment/Model/Source/Cctype.php   |   0
 .../Magento/Payment/Model/Source/Invoice.php  |   0
 .../Observer/AbstractDataAssignObserver.php   |   0
 .../Observer/SalesOrderBeforeSaveObserver.php |   0
 ...teOrderStatusForPaymentMethodsObserver.php |   0
 .../Plugin/PaymentConfigurationProcess.php    |   0
 app/code/Magento/Payment/README.md            |   0
 .../Block/Adminhtml/Transparent/FormTest.php  |   0
 .../Adminhtml/Transparent/FormTesting.php     |   0
 .../Test/Unit/Block/Form/ContainerTest.php    |   0
 .../Payment/Test/Unit/Block/FormTest.php      |   0
 .../Payment/Test/Unit/Block/Info/CcTest.php   |   0
 .../Unit/Block/Info/ContainerAbstractTest.php |   0
 .../Test/Unit/Block/Info/InstructionsTest.php |   0
 .../Test/Unit/Block/Info/SubstitutionTest.php |   0
 .../Payment/Test/Unit/Block/InfoTest.php      |   0
 .../Test/Unit/Block/Transparent/FormTest.php  |   0
 .../Unit/Block/Transparent/FormTesting.php    |   0
 .../Unit/Gateway/Command/CommandPoolTest.php  |   0
 .../Gateway/Command/GatewayCommandTest.php    |   0
 .../Test/Unit/Gateway/Config/ConfigTest.php   |   0
 .../Gateway/Config/ConfigValueHandlerTest.php |   0
 .../Gateway/Config/ValueHandlerPoolTest.php   |   0
 .../Gateway/Data/Order/AddressAdapterTest.php |   0
 .../Gateway/Data/Order/OrderAdapterTest.php   |   0
 .../Data/PaymentDataObjectFactoryTest.php     |   0
 .../Gateway/Data/PaymentDataObjectTest.php    |   0
 .../Gateway/Data/Quote/AddressAdapterTest.php |   0
 .../Gateway/Data/Quote/QuoteAdapterTest.php   |   0
 .../Unit/Gateway/Http/Client/SoapTest.php     |   0
 .../Unit/Gateway/Http/Client/ZendTest.php     |   0
 .../Http/Converter/HtmlFormConverterTest.php  |   0
 .../Soap/ObjectToArrayConverterTest.php       |   0
 .../Test/Unit/Gateway/Http/TransferTest.php   |   0
 .../Gateway/Request/BuilderCompositeTest.php  |   0
 .../Gateway/Response/HandlerChainTest.php     |   0
 .../Validator/CountryValidatorTest.php        |   0
 .../Unit/Gateway/Validator/ResultTest.php     |   0
 .../Validator/ValidatorCompositeTest.php      |   0
 .../Gateway/Validator/ValidatorPoolTest.php   |   0
 .../Payment/Test/Unit/Helper/DataTest.php     |   0
 .../Model/Cart/SalesModel/FactoryTest.php     |   0
 .../Unit/Model/Cart/SalesModel/OrderTest.php  |   0
 .../Unit/Model/Cart/SalesModel/QuoteTest.php  |   0
 .../Payment/Test/Unit/Model/CartTest.php      |   0
 .../Test/Unit/Model/CcConfigProviderTest.php  |   0
 .../Payment/Test/Unit/Model/CcConfigTest.php  |   0
 .../Model/CcGenericConfigProviderTest.php     |   0
 .../Unit/Model/Checks/CanUseCheckoutTest.php  |   0
 .../CanUseForCountry/CountryProviderTest.php  |   0
 .../Model/Checks/CanUseForCountryTest.php     |   0
 .../Model/Checks/CanUseForCurrencyTest.php    |   0
 .../Unit/Model/Checks/CanUseInternalTest.php  |   0
 .../Test/Unit/Model/Checks/CompositeTest.php  |   0
 .../Model/Checks/SpecificationFactoryTest.php |   0
 .../Unit/Model/Checks/TotalMinMaxTest.php     |   0
 .../Test/Unit/Model/Checks/ZeroTotalTest.php  |   0
 .../Test/Unit/Model/Config/ConverterTest.php  |   0
 .../Unit/Model/Config/SchemaLocatorTest.php   |   0
 .../Model/Config/Source/AllmethodsTest.php    |   0
 .../Source/AllspecificcountriesTest.php       |   0
 .../Unit/Model/Config/Source/CctypeTest.php   |   0
 .../Test/Unit/Model/Config/_files/payment.xml |   0
 .../Payment/Test/Unit/Model/ConfigTest.php    |   0
 .../Payment/Test/Unit/Model/InfoTest.php      |   0
 .../Unit/Model/Method/AbstractMethod/Stub.php |   0
 .../Unit/Model/Method/AbstractMethodTest.php  |   0
 .../Test/Unit/Model/Method/AdapterTest.php    |   0
 .../Payment/Test/Unit/Model/Method/CcTest.php |   0
 .../Test/Unit/Model/Method/FreeTest.php       |   0
 .../Test/Unit/Model/Method/LoggerTest.php     |   0
 .../Method/Specification/CompositeTest.php    |   0
 .../Unit/Model/Method/SubstitutionTest.php    |   0
 .../Test/Unit/Model/MethodListTest.php        |   0
 .../Test/Unit/Model/PaymentMethodListTest.php |   0
 .../ResourceModel/Grid/GroupListTest.php      |   0
 .../Model/ResourceModel/Grid/TypeListTest.php |   0
 .../Test/Unit/Model/Source/CctypeTest.php     |   0
 .../Test/Unit/Model/Source/InvoiceTest.php    |   0
 .../SalesOrderBeforeSaveObserverTest.php      |   0
 ...derStatusForPaymentMethodsObserverTest.php |   0
 .../PaymentConfigurationProcessTest.php       |   0
 .../Listing/Column/Method/Options.php         |   0
 app/code/Magento/Payment/composer.json        |   0
 app/code/Magento/Payment/etc/acl.xml          |   0
 .../Magento/Payment/etc/adminhtml/system.xml  |   0
 app/code/Magento/Payment/etc/config.xml       |   0
 app/code/Magento/Payment/etc/di.xml           |   0
 .../Magento/Payment/etc/error_mapping.xsd     |   0
 app/code/Magento/Payment/etc/events.xml       |   0
 app/code/Magento/Payment/etc/frontend/di.xml  |   0
 app/code/Magento/Payment/etc/module.xml       |   0
 app/code/Magento/Payment/etc/payment.xml      |   0
 app/code/Magento/Payment/etc/payment.xsd      |   0
 app/code/Magento/Payment/etc/payment_file.xsd |   0
 app/code/Magento/Payment/i18n/en_US.csv       |   0
 app/code/Magento/Payment/registration.php     |   0
 .../view/adminhtml/templates/form/cc.phtml    |   0
 .../adminhtml/templates/info/default.phtml    |   0
 .../templates/info/instructions.phtml         |   0
 .../templates/info/pdf/default.phtml          |   0
 .../templates/info/substitution.phtml         |   0
 .../templates/transparent/form.phtml          |   0
 .../templates/transparent/iframe.phtml        |   0
 .../templates/transparent/info.phtml          |   0
 .../Payment/view/adminhtml/web/transparent.js |   0
 .../Payment/view/base/web/images/cc/ae.png    | Bin
 .../Payment/view/base/web/images/cc/di.png    | Bin
 .../Payment/view/base/web/images/cc/dn.png    | Bin
 .../Payment/view/base/web/images/cc/jcb.png   | Bin
 .../Payment/view/base/web/images/cc/mc.png    | Bin
 .../Payment/view/base/web/images/cc/md.png    | Bin
 .../Payment/view/base/web/images/cc/mi.png    | Bin
 .../Payment/view/base/web/images/cc/sm.png    | Bin
 .../Payment/view/base/web/images/cc/so.png    | Bin
 .../Payment/view/base/web/images/cc/un.png    | Bin
 .../Payment/view/base/web/images/cc/vi.png    | Bin
 .../credit-card-data.js                       |   0
 .../credit-card-number-validator.js           |   0
 .../credit-card-type.js                       |   0
 .../luhn10-validator.js                       |   0
 .../credit-card-validation/cvv-validator.js   |   0
 .../expiration-date-validator.js              |   0
 .../expiration-month-validator.js             |   0
 .../expiration-year-validator.js              |   0
 .../expiration-date-validator/parse-date.js   |   0
 .../model/credit-card-validation/validator.js |   0
 .../frontend/layout/checkout_index_index.xml  |   0
 .../layout/checkout_onepage_review.xml        |   0
 .../Payment/view/frontend/requirejs-config.js |   0
 .../view/frontend/templates/form/cc.phtml     |   0
 .../frontend/templates/info/default.phtml     |   0
 .../templates/info/instructions.phtml         |   0
 .../frontend/templates/info/pdf/default.phtml |   0
 .../frontend/templates/transparent/form.phtml |   0
 .../templates/transparent/iframe.phtml        |   0
 .../frontend/templates/transparent/info.phtml |   0
 .../Payment/view/frontend/web/cc-type.js      |   0
 .../frontend/web/js/view/payment/cc-form.js   |   0
 .../frontend/web/js/view/payment/iframe.js    |   0
 .../payment/method-renderer/free-method.js    |   0
 .../frontend/web/js/view/payment/payments.js  |   0
 .../web/template/payment/cc-form.html         |   0
 .../frontend/web/template/payment/free.html   |   0
 .../frontend/web/template/payment/iframe.html |   0
 .../Payment/view/frontend/web/transparent.js  |   0
 .../Block/Adminhtml/Billing/Agreement.php     |   0
 .../Adminhtml/Billing/Agreement/Grid.php      |   0
 .../Adminhtml/Billing/Agreement/View.php      |   0
 .../Adminhtml/Billing/Agreement/View/Form.php |   0
 .../Billing/Agreement/View/Tab/Info.php       |   0
 .../Billing/Agreement/View/Tab/Orders.php     |   0
 .../Adminhtml/Billing/Agreement/View/Tabs.php |   0
 .../Adminhtml/Customer/Edit/Tab/Agreement.php |   0
 .../Block/Adminhtml/Payflowpro/CcForm.php     |   0
 .../Block/Adminhtml/Settlement/Details.php    |   0
 .../Adminhtml/Settlement/Details/Form.php     |   0
 .../Block/Adminhtml/Settlement/Report.php     |   0
 .../Block/Adminhtml/Store/SwitcherPlugin.php  |   0
 .../Adminhtml/System/Config/ApiWizard.php     |   0
 .../Adminhtml/System/Config/BmlApiWizard.php  |   0
 .../Adminhtml/System/Config/Field/Country.php |   0
 .../Config/Field/Depends/BmlApiSortOrder.php  |   0
 .../Config/Field/Depends/BmlSortOrder.php     |   0
 .../Config/Field/Depends/MerchantId.php       |   0
 .../Config/Field/Enable/AbstractEnable.php    |   0
 .../System/Config/Field/Enable/Bml.php        |   0
 .../System/Config/Field/Enable/BmlApi.php     |   0
 .../System/Config/Field/Enable/Express.php    |   0
 .../System/Config/Field/Enable/InContext.php  |   0
 .../Config/Field/Enable/InContextApi.php      |   0
 .../System/Config/Field/Enable/Payment.php    |   0
 .../Adminhtml/System/Config/Field/Hidden.php  |   0
 .../System/Config/Fieldset/Expanded.php       |   0
 .../System/Config/Fieldset/Group.php          |   0
 .../Adminhtml/System/Config/Fieldset/Hint.php |   0
 .../System/Config/Fieldset/Payment.php        |   0
 .../System/Config/Payflowlink/Advanced.php    |   0
 .../System/Config/Payflowlink/Info.php        |   0
 .../System/Config/ResolutionRules.php         |   0
 .../Paypal/Block/Billing/Agreement/View.php   |   0
 .../Paypal/Block/Billing/Agreements.php       |   0
 app/code/Magento/Paypal/Block/Bml/Banners.php |   0
 app/code/Magento/Paypal/Block/Bml/Form.php    |   0
 .../Magento/Paypal/Block/Bml/Shortcut.php     |   0
 .../Paypal/Block/Cart/ValidationMessages.php  |   0
 .../Onepage/Success/BillingAgreement.php      |   0
 .../Magento/Paypal/Block/Express/Form.php     |   0
 .../Block/Express/InContext/Component.php     |   0
 .../Express/InContext/Minicart/Button.php     |   0
 .../Magento/Paypal/Block/Express/Review.php   |   0
 .../Paypal/Block/Express/Review/Billing.php   |   0
 .../Paypal/Block/Express/Review/Details.php   |   0
 .../Paypal/Block/Express/Review/Shipping.php  |   0
 .../Magento/Paypal/Block/Express/Shortcut.php |   0
 .../Magento/Paypal/Block/Hosted/Pro/Form.php  |   0
 .../Paypal/Block/Hosted/Pro/Iframe.php        |   0
 .../Magento/Paypal/Block/Hosted/Pro/Info.php  |   0
 app/code/Magento/Paypal/Block/Iframe.php      |   0
 app/code/Magento/Paypal/Block/Logo.php        |   0
 .../Paypal/Block/Payflow/Advanced/Form.php    |   0
 .../Paypal/Block/Payflow/Advanced/Iframe.php  |   0
 .../Paypal/Block/Payflow/Advanced/Info.php    |   0
 .../Magento/Paypal/Block/Payflow/Bml/Form.php |   0
 .../Block/Payflow/Customer/CardRenderer.php   |   0
 .../Magento/Paypal/Block/Payflow/Info.php     |   0
 .../Paypal/Block/Payflow/Link/Form.php        |   0
 .../Paypal/Block/Payflow/Link/Iframe.php      |   0
 .../Paypal/Block/Payflow/Link/Info.php        |   0
 .../Paypal/Block/PayflowExpress/Form.php      |   0
 .../Block/Payment/Form/Billing/Agreement.php  |   0
 .../Magento/Paypal/Block/Payment/Info.php     |   0
 .../Block/Payment/Info/Billing/Agreement.php  |   0
 .../Adminhtml/Billing/Agreement.php           |   0
 .../Adminhtml/Billing/Agreement/Cancel.php    |   0
 .../Billing/Agreement/CustomerGrid.php        |   0
 .../Adminhtml/Billing/Agreement/Delete.php    |   0
 .../Adminhtml/Billing/Agreement/Grid.php      |   0
 .../Adminhtml/Billing/Agreement/Index.php     |   0
 .../Billing/Agreement/OrdersGrid.php          |   0
 .../Adminhtml/Billing/Agreement/View.php      |   0
 .../Controller/Adminhtml/Paypal/Reports.php   |   0
 .../Adminhtml/Paypal/Reports/Details.php      |   0
 .../Adminhtml/Paypal/Reports/Fetch.php        |   0
 .../Adminhtml/Paypal/Reports/Grid.php         |   0
 .../Adminhtml/Paypal/Reports/Index.php        |   0
 .../Transparent/RequestSecureToken.php        |   0
 .../Adminhtml/Transparent/Response.php        |   0
 .../Paypal/Controller/Billing/Agreement.php   |   0
 .../Controller/Billing/Agreement/Cancel.php   |   0
 .../Billing/Agreement/CancelWizard.php        |   0
 .../Controller/Billing/Agreement/Index.php    |   0
 .../Billing/Agreement/ReturnWizard.php        |   0
 .../Billing/Agreement/StartWizard.php         |   0
 .../Controller/Billing/Agreement/View.php     |   0
 .../Magento/Paypal/Controller/Bml/Start.php   |   0
 .../Controller/Express/AbstractExpress.php    |   0
 .../Express/AbstractExpress/Cancel.php        |   0
 .../Express/AbstractExpress/Edit.php          |   0
 .../Express/AbstractExpress/PlaceOrder.php    |   0
 .../Express/AbstractExpress/ReturnAction.php  |   0
 .../Express/AbstractExpress/Review.php        |   0
 .../AbstractExpress/SaveShippingMethod.php    |   0
 .../ShippingOptionsCallback.php               |   0
 .../Express/AbstractExpress/Start.php         |   0
 .../AbstractExpress/UpdateShippingMethods.php |   0
 .../Paypal/Controller/Express/Cancel.php      |   0
 .../Paypal/Controller/Express/Edit.php        |   0
 .../Paypal/Controller/Express/GetToken.php    |   0
 .../Paypal/Controller/Express/PlaceOrder.php  |   0
 .../Controller/Express/ReturnAction.php       |   0
 .../Paypal/Controller/Express/Review.php      |   0
 .../Controller/Express/SaveShippingMethod.php |   0
 .../Express/ShippingOptionsCallback.php       |   0
 .../Paypal/Controller/Express/Start.php       |   0
 .../Express/UpdateShippingMethods.php         |   0
 .../Paypal/Controller/Hostedpro/Cancel.php    |   0
 .../Paypal/Controller/Hostedpro/Redirect.php  |   0
 .../Controller/Hostedpro/ReturnAction.php     |   0
 .../Magento/Paypal/Controller/Ipn/Index.php   |   0
 .../Magento/Paypal/Controller/Payflow.php     |   0
 .../Controller/Payflow/CancelPayment.php      |   0
 .../Paypal/Controller/Payflow/Form.php        |   0
 .../Paypal/Controller/Payflow/ReturnUrl.php   |   0
 .../Paypal/Controller/Payflow/SilentPost.php  |   0
 .../Payflowadvanced/CancelPayment.php         |   0
 .../Controller/Payflowadvanced/Form.php       |   0
 .../Controller/Payflowadvanced/ReturnUrl.php  |   0
 .../Controller/Payflowadvanced/SilentPost.php |   0
 .../Paypal/Controller/Payflowbml/Start.php    |   0
 .../Controller/Payflowexpress/Cancel.php      |   0
 .../Paypal/Controller/Payflowexpress/Edit.php |   0
 .../Controller/Payflowexpress/PlaceOrder.php  |   0
 .../Payflowexpress/ReturnAction.php           |   0
 .../Controller/Payflowexpress/Review.php      |   0
 .../Payflowexpress/SaveShippingMethod.php     |   0
 .../ShippingOptionsCallback.php               |   0
 .../Controller/Payflowexpress/Start.php       |   0
 .../Payflowexpress/UpdateShippingMethods.php  |   0
 .../Transparent/RequestSecureToken.php        |   0
 .../Controller/Transparent/Response.php       |   0
 app/code/Magento/Paypal/Cron/FetchReports.php |   0
 .../Paypal/CustomerData/BillingAgreement.php  |   0
 .../Command/AuthorizationCommand.php          |   0
 .../Payflowpro/Command/SaleCommand.php        |   0
 app/code/Magento/Paypal/Helper/Backend.php    |   0
 app/code/Magento/Paypal/Helper/Checkout.php   |   0
 app/code/Magento/Paypal/Helper/Data.php       |   0
 app/code/Magento/Paypal/Helper/Hss.php        |   0
 .../Helper/Shortcut/CheckoutValidator.php     |   0
 .../Paypal/Helper/Shortcut/Factory.php        |   0
 .../Paypal/Helper/Shortcut/Validator.php      |   0
 .../Helper/Shortcut/ValidatorInterface.php    |   0
 app/code/Magento/Paypal/LICENSE.txt           |   0
 app/code/Magento/Paypal/LICENSE_AFL.txt       |   0
 .../Magento/Paypal/Model/AbstractConfig.php   |   0
 app/code/Magento/Paypal/Model/AbstractIpn.php |   0
 .../Magento/Paypal/Model/Api/AbstractApi.php  |   0
 app/code/Magento/Paypal/Model/Api/Nvp.php     |   0
 .../Magento/Paypal/Model/Api/PayflowNvp.php   |   0
 .../Paypal/Model/Api/ProcessableException.php |   0
 .../Magento/Paypal/Model/Api/Type/Factory.php |   0
 .../Model/Billing/AbstractAgreement.php       |   0
 .../Paypal/Model/Billing/Agreement.php        |   0
 .../Billing/Agreement/MethodInterface.php     |   0
 .../Model/Billing/Agreement/OrdersUpdater.php |   0
 .../Model/BillingAgreementConfigProvider.php  |   0
 app/code/Magento/Paypal/Model/Bml.php         |   0
 app/code/Magento/Paypal/Model/Cart.php        |   0
 app/code/Magento/Paypal/Model/Cert.php        |   0
 app/code/Magento/Paypal/Model/Config.php      |   0
 .../Magento/Paypal/Model/Config/Factory.php   |   0
 .../Paypal/Model/Config/Rules/Converter.php   |   0
 .../Model/Config/Rules/FileResolver.php       |   0
 .../Paypal/Model/Config/Rules/Reader.php      |   0
 .../Model/Config/Rules/SchemaLocator.php      |   0
 .../Config/Structure/Element/FieldPlugin.php  |   0
 .../Structure/PaymentSectionModifier.php      |   0
 .../Paypal/Model/Config/StructurePlugin.php   |   0
 app/code/Magento/Paypal/Model/Direct.php      |   0
 app/code/Magento/Paypal/Model/Express.php     |   0
 .../Magento/Paypal/Model/Express/Checkout.php |   0
 .../Paypal/Model/Express/Checkout/Factory.php |   0
 .../Paypal/Model/Express/QuotePlugin.php      |   0
 .../Paypal/Model/ExpressConfigProvider.php    |   0
 app/code/Magento/Paypal/Model/Hostedpro.php   |   0
 .../Paypal/Model/Hostedpro/Request.php        |   0
 .../Paypal/Model/IframeConfigProvider.php     |   0
 app/code/Magento/Paypal/Model/Info.php        |   0
 .../Payflow/Pro/TokenFormatter.php            |   0
 app/code/Magento/Paypal/Model/Ipn.php         |   0
 app/code/Magento/Paypal/Model/IpnFactory.php  |   0
 .../Magento/Paypal/Model/IpnInterface.php     |   0
 .../Magento/Paypal/Model/Method/Agreement.php |   0
 .../Method/Checks/SpecificationPlugin.php     |   0
 .../Paypal/Model/Payflow/AvsEmsCodeMapper.php |   0
 app/code/Magento/Paypal/Model/Payflow/Bml.php |   0
 .../Paypal/Model/Payflow/CvvEmsCodeMapper.php |   0
 app/code/Magento/Paypal/Model/Payflow/Pro.php |   0
 .../Magento/Paypal/Model/Payflow/Request.php  |   0
 .../Paypal/Model/Payflow/Service/Gateway.php  |   0
 .../Payflow/Service/Request/SecureToken.php   |   0
 .../Handler/CreditCardValidationHandler.php   |   0
 .../Service/Response/Handler/FraudHandler.php |   0
 .../Response/Handler/HandlerComposite.php     |   0
 .../Response/Handler/HandlerInterface.php     |   0
 .../Payflow/Service/Response/Transaction.php  |   0
 .../Response/Validator/AVSResponse.php        |   0
 .../Service/Response/Validator/CVV2Match.php  |   0
 .../Response/Validator/IAVSResponse.php       |   0
 .../Response/Validator/ResponseValidator.php  |   0
 .../Response/Validator/SecureToken.php        |   0
 .../Service/Response/ValidatorInterface.php   |   0
 .../Paypal/Model/Payflow/Transparent.php      |   0
 .../Ui/Adminhtml/TokenUiComponentProvider.php |   0
 .../Payflow/Ui/TokenUiComponentProvider.php   |   0
 .../Magento/Paypal/Model/PayflowConfig.php    |   0
 .../Magento/Paypal/Model/PayflowExpress.php   |   0
 .../Paypal/Model/PayflowExpress/Checkout.php  |   0
 .../Magento/Paypal/Model/Payflowadvanced.php  |   0
 app/code/Magento/Paypal/Model/Payflowlink.php |   0
 app/code/Magento/Paypal/Model/Payflowpro.php  |   0
 .../Method/Billing/AbstractAgreement.php      |   0
 app/code/Magento/Paypal/Model/Pro.php         |   0
 .../Paypal/Model/Report/Settlement.php        |   0
 .../Paypal/Model/Report/Settlement/Row.php    |   0
 .../Model/ResourceModel/Billing/Agreement.php |   0
 .../Billing/Agreement/Collection.php          |   0
 .../Paypal/Model/ResourceModel/Cert.php       |   0
 .../Model/ResourceModel/Report/Settlement.php |   0
 .../Settlement/Options/TransactionEvents.php  |   0
 .../ResourceModel/Report/Settlement/Row.php   |   0
 .../Report/Settlement/Row/Collection.php      |   0
 .../Model/System/Config/Backend/Cert.php      |   0
 .../Model/System/Config/Backend/Cron.php      |   0
 .../System/Config/Backend/MerchantCountry.php |   0
 .../System/Config/Source/BmlPosition.php      |   0
 .../Model/System/Config/Source/BmlSize.php    |   0
 .../System/Config/Source/BuyerCountry.php     |   0
 .../System/Config/Source/FetchingSchedule.php |   0
 .../Model/System/Config/Source/Logo.php       |   0
 .../System/Config/Source/MerchantCountry.php  |   0
 .../System/Config/Source/PaymentActions.php   |   0
 .../Config/Source/PaymentActions/Express.php  |   0
 .../Config/Source/RequireBillingAddress.php   |   0
 .../Model/System/Config/Source/UrlMethod.php  |   0
 .../System/Config/Source/Yesnoshortcut.php    |   0
 .../AddBillingAgreementToSessionObserver.php  |   0
 .../Observer/AddPaypalShortcutsObserver.php   |   0
 .../Observer/HtmlTransactionIdObserver.php    |   0
 .../Paypal/Observer/PayflowProAddCcData.php   |   0
 ...rictAdminBillingAgreementUsageObserver.php |   0
 .../Observer/SaveOrderAfterSubmitObserver.php |   0
 .../SetResponseAfterSaveOrderObserver.php     |   0
 app/code/Magento/Paypal/README.md             |   0
 app/code/Magento/Paypal/Setup/InstallData.php |   0
 .../Magento/Paypal/Setup/InstallSchema.php    |   0
 .../Magento/Paypal/Setup/UpgradeSchema.php    |   0
 .../Adminhtml/Store/SwitcherPluginTest.php    |   0
 .../System/Config/Field/CountryTest.php       |   0
 .../Field/Enable/AbstractEnable/Stub.php      |   0
 .../Field/Enable/AbstractEnableTest.php       |   0
 .../System/Config/Fieldset/GroupTest.php      |   0
 .../System/Config/Fieldset/HintTest.php       |   0
 .../System/Config/Fieldset/PaymentTest.php    |   0
 .../System/Config/ResolutionRulesTest.php     |   0
 .../Unit/Block/Billing/Agreement/ViewTest.php |   0
 .../Unit/Block/Billing/AgreementsTest.php     |   0
 .../Test/Unit/Block/Bml/ShortcutTest.php      |   0
 .../Test/Unit/Block/Express/FormTest.php      |   0
 .../Test/Unit/Block/Express/ReviewTest.php    |   0
 .../Test/Unit/Block/Express/ShortcutTest.php  |   0
 .../Unit/Block/Payflow/Link/IframeTest.php    |   0
 .../Unit/Block/PayflowExpress/FormTest.php    |   0
 .../Billing/Agreement/CancelTest.php          |   0
 .../Controller/Express/PlaceOrderTest.php     |   0
 .../Controller/Express/ReturnActionTest.php   |   0
 .../Unit/Controller/Express/StartTest.php     |   0
 .../Test/Unit/Controller/ExpressTest.php      |   0
 .../Test/Unit/Controller/Ipn/IndexTest.php    |   0
 .../Unit/Controller/Payflow/ReturnUrlTest.php |   0
 .../Transparent/RequestSecureTokenTest.php    |   0
 .../Controller/Transparent/ResponseTest.php   |   0
 .../Test/Unit/Cron/FetchReportsTest.php       |   0
 .../CustomerData/BillingAgreementTest.php     |   0
 .../Paypal/Test/Unit/Helper/BackendTest.php   |   0
 .../Paypal/Test/Unit/Helper/CheckoutTest.php  |   0
 .../Paypal/Test/Unit/Helper/DataTest.php      |   0
 .../Helper/Shortcut/CheckoutValidatorTest.php |   0
 .../Test/Unit/Helper/Shortcut/FactoryTest.php |   0
 .../Unit/Helper/Shortcut/ValidatorTest.php    |   0
 .../Test/Unit/Model/AbstractConfigTest.php    |   0
 .../Test/Unit/Model/AbstractConfigTesting.php |   0
 .../Paypal/Test/Unit/Model/Api/NvpTest.php    |   0
 .../Model/Api/ProcessableExceptionTest.php    |   0
 .../Model/Billing/AbstractAgreementTest.php   |   0
 .../Billing/Agreement/OrdersUpdaterTest.php   |   0
 .../Test/Unit/Model/Billing/AgreementTest.php |   0
 .../BillingAgreementConfigProviderTest.php    |   0
 .../Paypal/Test/Unit/Model/CartTest.php       |   0
 .../Unit/Model/Config/Rules/ConverterTest.php |   0
 .../Config/Rules/ConvertibleContent/rules.xml |   0
 .../Model/Config/Rules/FileResolverTest.php   |   0
 .../Unit/Model/Config/Rules/ReaderTest.php    |   0
 .../Model/Config/Rules/SchemaLocatorTest.php  |   0
 .../Structure/Element/FieldPluginTest.php     |   0
 .../Structure/PaymentSectionModifierTest.php  |   0
 .../payment_section_structure_variations.php  |   0
 .../Unit/Model/Config/StructurePluginTest.php |   0
 .../Paypal/Test/Unit/Model/ConfigTest.php     |   0
 .../Test/Unit/Model/Express/CheckoutTest.php  |   0
 .../Unit/Model/ExpressConfigProviderTest.php  |   0
 .../Paypal/Test/Unit/Model/ExpressTest.php    |   0
 .../Test/Unit/Model/Hostedpro/RequestTest.php |   0
 .../Unit/Model/IframeConfigProviderTest.php   |   0
 .../Paypal/Test/Unit/Model/InfoTest.php       |   0
 .../Paypal/Test/Unit/Model/IpnTest.php        |   0
 .../Test/Unit/Model/Method/AgreementTest.php  |   0
 .../Method/Checks/SpecificationPluginTest.php |   0
 .../Model/Payflow/AvsEmsCodeMapperTest.php    |   0
 .../Model/Payflow/CvvEmsCodeMapperTest.php    |   0
 .../Model/Payflow/Service/GatewayTest.php     |   0
 .../Service/Request/SecureTokenTest.php       |   0
 .../CreditCardValidationHandlerTest.php       |   0
 .../Response/Handler/FraudHandlerTest.php     |   0
 .../Response/Handler/HandlerCompositeTest.php |   0
 .../Handler/_files/fps_prexmldata.xml         |   0
 .../Response/Handler/_files/xxe-xml.txt       |   0
 .../Handler/_files/xxe_fps_prexmldata.xml     |   0
 .../Service/Response/TransactionTest.php      |   0
 .../Response/Validator/AVSResponseTest.php    |   0
 .../Response/Validator/CVV2MatchTest.php      |   0
 .../Response/Validator/IAVSResponseTest.php   |   0
 .../Validator/ResponseValidatorTest.php       |   0
 .../Response/Validator/SecureTokenTest.php    |   0
 .../Unit/Model/Payflow/TransparentTest.php    |   0
 .../Test/Unit/Model/PayflowConfigTest.php     |   0
 .../Test/Unit/Model/PayflowExpressTest.php    |   0
 .../Test/Unit/Model/PayflowadvancedTest.php   |   0
 .../Test/Unit/Model/PayflowlinkTest.php       |   0
 .../Paypal/Test/Unit/Model/PayflowproTest.php |   0
 .../Method/Billing/AbstractAgreementStub.php  |   0
 .../Method/Billing/AbstractAgreementTest.php  |   0
 .../Paypal/Test/Unit/Model/ProTest.php        |   0
 .../Unit/Model/Report/Settlement/RowTest.php  |   0
 .../ResourceModel/Billing/AgreementTest.php   |   0
 .../System/Config/Source/BmlPositionTest.php  |   0
 .../Config/Source/YesnoshortcutTest.php       |   0
 .../Model/_files/additional_info_data.php     |   0
 ...dBillingAgreementToSessionObserverTest.php |   0
 .../AddPaypalShortcutsObserverTest.php        |   0
 .../HtmlTransactionIdObserverTest.php         |   0
 ...AdminBillingAgreementUsageObserverTest.php |   0
 .../SetResponseAfterSaveOrderObserverTest.php |   0
 app/code/Magento/Paypal/composer.json         |   0
 app/code/Magento/Paypal/etc/acl.xml           |   0
 app/code/Magento/Paypal/etc/adminhtml/di.xml  |   0
 .../Magento/Paypal/etc/adminhtml/events.xml   |   0
 .../Magento/Paypal/etc/adminhtml/menu.xml     |   0
 .../Magento/Paypal/etc/adminhtml/routes.xml   |   0
 .../Paypal/etc/adminhtml/rules/payment_au.xml |   0
 .../Paypal/etc/adminhtml/rules/payment_ca.xml |   0
 .../Paypal/etc/adminhtml/rules/payment_de.xml |   0
 .../Paypal/etc/adminhtml/rules/payment_es.xml |   0
 .../Paypal/etc/adminhtml/rules/payment_fr.xml |   0
 .../Paypal/etc/adminhtml/rules/payment_gb.xml |   0
 .../Paypal/etc/adminhtml/rules/payment_hk.xml |   0
 .../Paypal/etc/adminhtml/rules/payment_it.xml |   0
 .../Paypal/etc/adminhtml/rules/payment_jp.xml |   0
 .../Paypal/etc/adminhtml/rules/payment_nz.xml |   0
 .../etc/adminhtml/rules/payment_other.xml     |   0
 .../Paypal/etc/adminhtml/rules/payment_us.xml |   0
 .../Magento/Paypal/etc/adminhtml/system.xml   |   0
 .../etc/adminhtml/system/express_checkout.xml |   0
 .../etc/adminhtml/system/payflow_advanced.xml |   0
 .../etc/adminhtml/system/payflow_link.xml     |   0
 .../system/payments_pro_hosted_solution.xml   |   0
 ..._hosted_solution_with_express_checkout.xml |   0
 .../adminhtml/system/paypal_payflowpro.xml    |   0
 ...aypal_payflowpro_with_express_checkout.xml |   0
 app/code/Magento/Paypal/etc/config.xml        |   0
 app/code/Magento/Paypal/etc/crontab.xml       |   0
 app/code/Magento/Paypal/etc/di.xml            |   0
 app/code/Magento/Paypal/etc/events.xml        |   0
 app/code/Magento/Paypal/etc/frontend/di.xml   |   0
 .../Magento/Paypal/etc/frontend/events.xml    |   0
 .../Paypal/etc/frontend/page_types.xml        |   0
 .../Magento/Paypal/etc/frontend/routes.xml    |   0
 .../Magento/Paypal/etc/frontend/sections.xml  |   0
 app/code/Magento/Paypal/etc/module.xml        |   0
 app/code/Magento/Paypal/etc/payment.xml       |   0
 app/code/Magento/Paypal/etc/rules.xsd         |   0
 app/code/Magento/Paypal/i18n/en_US.csv        |   0
 app/code/Magento/Paypal/registration.php      |   0
 .../layout/adminhtml_paypal_reports_block.xml |   0
 .../layout/adminhtml_system_config_edit.xml   |   0
 .../paypal_billing_agreement_customergrid.xml |   0
 .../layout/paypal_billing_agreement_grid.xml  |   0
 .../layout/paypal_billing_agreement_index.xml |   0
 .../paypal_billing_agreement_ordersgrid.xml   |   0
 .../layout/paypal_billing_agreement_view.xml  |   0
 .../layout/paypal_paypal_reports_grid.xml     |   0
 .../layout/paypal_paypal_reports_index.xml    |   0
 .../layout/sales_order_create_index.xml       |   0
 ...order_create_load_block_billing_method.xml |   0
 .../layout/transparent_payment_response.xml   |   0
 .../templates/billing/agreement/form.phtml    |   0
 .../billing/agreement/view/form.phtml         |   0
 .../billing/agreement/view/tab/info.phtml     |   0
 .../templates/payflowpro/vault.phtml          |   0
 .../payment/form/billing/agreement.phtml      |   0
 .../templates/system/config/api_wizard.phtml  |   0
 .../system/config/bml_api_wizard.phtml        |   0
 .../system/config/fieldset/hint.phtml         |   0
 .../system/config/payflowlink/advanced.phtml  |   0
 .../system/config/payflowlink/info.phtml      |   0
 .../templates/system/config/rules.phtml       |   0
 .../templates/transparent/form.phtml          |   0
 .../templates/transparent/iframe.phtml        |   0
 .../adminhtml/web/images/AM_mc_vs_dc_ae.jpg   | Bin
 .../view/adminhtml/web/images/logo-paypal.png | Bin
 .../view/adminhtml/web/images/paypal-logo.png | Bin
 .../view/adminhtml/web/images/pp-allinone.png | Bin
 .../view/adminhtml/web/images/pp-alt.png      | Bin
 .../view/adminhtml/web/images/pp-gateways.png | Bin
 .../adminhtml/web/images/pp-logo-200px.png    | Bin
 .../adminhtml/web/images/pp-payflow-mark.png  | Bin
 .../view/adminhtml/web/images/pp-uk.png       | Bin
 .../view/adminhtml/web/js/payflowpro/vault.js |   0
 .../adminhtml/web/js/predicate/confirm.js     |   0
 .../Paypal/view/adminhtml/web/js/rule.js      |   0
 .../Paypal/view/adminhtml/web/js/rules.js     |   0
 .../Paypal/view/adminhtml/web/js/solution.js  |   0
 .../Paypal/view/adminhtml/web/js/solutions.js |   0
 .../Paypal/view/adminhtml/web/logo.gif        | Bin
 .../Paypal/view/adminhtml/web/section.png     | Bin
 .../Paypal/view/adminhtml/web/styles.css      |   0
 .../Paypal/view/base/requirejs-config.js      |   0
 .../view/base/ui_component/customer_form.xml  |   0
 .../frontend/layout/catalog_category_view.xml |   0
 .../frontend/layout/catalog_product_view.xml  |   0
 .../frontend/layout/checkout_cart_index.xml   |   0
 .../frontend/layout/checkout_index_index.xml  |   0
 .../layout/checkout_onepage_review.xml        |   0
 .../layout/checkout_onepage_success.xml       |   0
 .../view/frontend/layout/cms_index_index.xml  |   0
 .../view/frontend/layout/customer_account.xml |   0
 .../Paypal/view/frontend/layout/default.xml   |   0
 .../layout/paypal_billing_agreement_index.xml |   0
 .../layout/paypal_billing_agreement_view.xml  |   0
 .../frontend/layout/paypal_express_review.xml |   0
 .../layout/paypal_express_review_details.xml  |   0
 .../layout/paypal_payflow_cancelpayment.xml   |   0
 .../frontend/layout/paypal_payflow_form.xml   |   0
 .../layout/paypal_payflow_returnurl.xml       |   0
 .../paypal_payflowadvanced_cancelpayment.xml  |   0
 .../layout/paypal_payflowadvanced_form.xml    |   0
 .../paypal_payflowadvanced_returnurl.xml      |   0
 .../layout/paypal_payflowexpress_review.xml   |   0
 .../layout/transparent_payment_response.xml   |   0
 .../layout/vault_cards_listaction.xml         |   0
 .../Paypal/view/frontend/requirejs-config.js  |   0
 .../templates/billing/agreement/view.phtml    |   0
 .../templates/billing/agreements.phtml        |   0
 .../Paypal/view/frontend/templates/bml.phtml  |   0
 .../checkout/onepage/review/totals.phtml      |   0
 .../onepage/success/billing_agreement.phtml   |   0
 .../express/in-context/component.phtml        |   0
 .../express/in-context/shortcut/button.phtml  |   0
 .../frontend/templates/express/review.phtml   |   0
 .../templates/express/review/details.phtml    |   0
 .../express/review/shipping/method.phtml      |   0
 .../frontend/templates/express/shortcut.phtml |   0
 .../express/shortcut/container.phtml          |   0
 .../view/frontend/templates/hss/form.phtml    |   0
 .../view/frontend/templates/hss/iframe.phtml  |   0
 .../view/frontend/templates/hss/info.phtml    |   0
 .../view/frontend/templates/hss/js.phtml      |   0
 .../templates/hss/review/button.phtml         |   0
 .../frontend/templates/js/components.phtml    |   0
 .../frontend/templates/partner/logo.phtml     |   0
 .../templates/payflowadvanced/form.phtml      |   0
 .../templates/payflowadvanced/info.phtml      |   0
 .../frontend/templates/payflowlink/form.phtml |   0
 .../frontend/templates/payflowlink/info.phtml |   0
 .../templates/payflowlink/redirect.phtml      |   0
 .../payment/form/billing/agreement.phtml      |   0
 .../frontend/templates/payment/mark.phtml     |   0
 .../frontend/templates/payment/redirect.phtml |   0
 .../web/js/action/set-payment-method.js       |   0
 .../web/js/in-context/billing-agreement.js    |   0
 .../view/frontend/web/js/in-context/button.js |   0
 .../web/js/in-context/express-checkout.js     |   0
 .../frontend/web/js/model/iframe-redirect.js  |   0
 .../view/frontend/web/js/model/iframe.js      |   0
 .../view/frontend/web/js/paypal-checkout.js   |   0
 .../payment/method-renderer/iframe-methods.js |   0
 .../in-context/checkout-express.js            |   0
 .../method-renderer/payflow-express-bml.js    |   0
 .../method-renderer/payflow-express.js        |   0
 .../method-renderer/payflowpro-method.js      |   0
 .../method-renderer/payflowpro/vault.js       |   0
 .../paypal-billing-agreement.js               |   0
 .../paypal-express-abstract.js                |   0
 .../method-renderer/paypal-express-bml.js     |   0
 .../payment/method-renderer/paypal-express.js |   0
 .../web/js/view/payment/paypal-payments.js    |   0
 .../web/js/view/review/actions/iframe.js      |   0
 .../Paypal/view/frontend/web/order-review.js  |   0
 .../payment/express/billing-agreement.html    |   0
 .../web/template/payment/iframe-methods.html  |   0
 .../template/payment/payflow-express-bml.html |   0
 .../web/template/payment/payflow-express.html |   0
 .../web/template/payment/payflowpro-form.html |   0
 .../template/payment/paypal-express-bml.html  |   0
 .../payment/paypal-express-in-context.html    |   0
 .../web/template/payment/paypal-express.html  |   0
 .../paypal_billing_agreement-form.html        |   0
 .../template/payment/paypal_direct-form.html  |   0
 .../Persistent/Block/Form/Remember.php        |   0
 .../Persistent/Block/Header/Additional.php    |   0
 .../Magento/Persistent/Controller/Index.php   |   0
 .../Controller/Index/ExpressCheckout.php      |   0
 .../Controller/Index/SaveMethod.php           |   0
 .../Controller/Index/UnsetCookie.php          |   0
 app/code/Magento/Persistent/Helper/Data.php   |   0
 .../Magento/Persistent/Helper/Session.php     |   0
 app/code/Magento/Persistent/LICENSE.txt       |   0
 app/code/Magento/Persistent/LICENSE_AFL.txt   |   0
 .../Checkout/AddressDataProcessorPlugin.php   |   0
 .../Model/Checkout/ConfigProviderPlugin.php   |   0
 ...uestPaymentInformationManagementPlugin.php |   0
 .../Model/CheckoutConfigProvider.php          |   0
 app/code/Magento/Persistent/Model/Factory.php |   0
 .../Model/Layout/DepersonalizePlugin.php      |   0
 .../Magento/Persistent/Model/Observer.php     |   0
 .../Persistent/Model/Persistent/Config.php    |   0
 .../Persistent/Model/Plugin/CustomerData.php  |   0
 .../Magento/Persistent/Model/QuoteManager.php |   0
 .../Model/ResourceModel/Session.php           |   0
 app/code/Magento/Persistent/Model/Session.php |   0
 .../ApplyBlockPersistentDataObserver.php      |   0
 .../Observer/ApplyPersistentDataObserver.php  |   0
 .../CheckExpirePersistentQuoteObserver.php    |   0
 .../Observer/ClearExpiredCronJobObserver.php  |   0
 .../CustomerAuthenticatedEventObserver.php    |   0
 .../Observer/EmulateCustomerObserver.php      |   0
 .../Observer/EmulateQuoteObserver.php         |   0
 .../MakePersistentQuoteGuestObserver.php      |   0
 .../PreventClearCheckoutSessionObserver.php   |   0
 .../PreventExpressCheckoutObserver.php        |   0
 .../Observer/RefreshCustomerData.php          |   0
 ...oveGuestPersistenceOnEmptyCartObserver.php |   0
 ...movePersistentCookieOnRegisterObserver.php |   0
 .../Observer/RenewCookieObserver.php          |   0
 .../SetLoadPersistentQuoteObserver.php        |   0
 .../SetQuotePersistentDataObserver.php        |   0
 .../SetRememberMeCheckedStatusObserver.php    |   0
 ...etRememberMeStatusForAjaxLoginObserver.php |   0
 .../SynchronizePersistentInfoObserver.php     |   0
 .../SynchronizePersistentOnLoginObserver.php  |   0
 .../SynchronizePersistentOnLogoutObserver.php |   0
 .../UpdateCustomerCookiesObserver.php         |   0
 app/code/Magento/Persistent/README.md         |   0
 .../Persistent/Setup/InstallSchema.php        |   0
 .../Test/Unit/Block/Header/AdditionalTest.php |   0
 .../Persistent/Test/Unit/Helper/DataTest.php  |   0
 .../Checkout/ConfigProviderPluginTest.php     |   0
 ...PaymentInformationManagementPluginTest.php |   0
 .../Test/Unit/Model/FactoryTest.php           |   0
 .../Model/Layout/DepersonalizePluginTest.php  |   0
 .../Test/Unit/Model/ObserverTest.php          |   0
 .../Unit/Model/Plugin/CustomerDataTest.php    |   0
 .../Test/Unit/Model/QuoteManagerTest.php      |   0
 .../Test/Unit/Model/SessionTest.php           |   0
 .../ApplyBlockPersistentDataObserverTest.php  |   0
 .../ApplyPersistentDataObserverTest.php       |   0
 ...CheckExpirePersistentQuoteObserverTest.php |   0
 .../ClearExpiredCronJobObserverTest.php       |   0
 ...CustomerAuthenticatedEventObserverTest.php |   0
 .../Observer/EmulateCustomerObserverTest.php  |   0
 .../Observer/EmulateQuoteObserverTest.php     |   0
 .../MakePersistentQuoteGuestObserverTest.php  |   0
 ...reventClearCheckoutSessionObserverTest.php |   0
 .../PreventExpressCheckoutObserverTest.php    |   0
 .../Unit/Observer/RefreshCustomerDataTest.php |   0
 ...uestPersistenceOnEmptyCartObserverTest.php |   0
 ...PersistentCookieOnRegisterObserverTest.php |   0
 .../Unit/Observer/RenewCookieObserverTest.php |   0
 .../SetLoadPersistentQuoteObserverTest.php    |   0
 .../SetQuotePersistentDataObserverTest.php    |   0
 ...SetRememberMeCheckedStatusObserverTest.php |   0
 .../SynchronizePersistentInfoObserverTest.php |   0
 ...chronizePersistentOnLogoutObserverTest.php |   0
 .../UpdateCustomerCookiesObserverTest.php     |   0
 app/code/Magento/Persistent/composer.json     |   0
 app/code/Magento/Persistent/etc/acl.xml       |   0
 .../Persistent/etc/adminhtml/system.xml       |   0
 app/code/Magento/Persistent/etc/config.xml    |   0
 app/code/Magento/Persistent/etc/crontab.xml   |   0
 app/code/Magento/Persistent/etc/di.xml        |   0
 .../Persistent/etc/extension_attributes.xml   |   0
 .../Magento/Persistent/etc/frontend/di.xml    |   0
 .../Persistent/etc/frontend/events.xml        |   0
 .../Persistent/etc/frontend/routes.xml        |   0
 app/code/Magento/Persistent/etc/module.xml    |   0
 .../Magento/Persistent/etc/persistent.xml     |   0
 .../Magento/Persistent/etc/persistent.xsd     |   0
 .../Magento/Persistent/etc/webapi_rest/di.xml |   0
 .../Persistent/etc/webapi_rest/events.xml     |   0
 .../Magento/Persistent/etc/webapi_soap/di.xml |   0
 .../Persistent/etc/webapi_soap/events.xml     |   0
 app/code/Magento/Persistent/i18n/en_US.csv    |   0
 app/code/Magento/Persistent/registration.php  |   0
 .../layout/customer_account_create.xml        |   0
 .../layout/customer_account_login.xml         |   0
 .../view/frontend/templates/remember_me.phtml |   0
 .../view/frontend/web/js/view/remember-me.js  |   0
 .../frontend/web/template/remember-me.html    |   0
 .../Block/Email/AbstractEmail.php             |   0
 .../ProductAlert/Block/Email/Price.php        |   0
 .../ProductAlert/Block/Email/Stock.php        |   0
 .../ProductAlert/Block/Product/View.php       |   0
 .../ProductAlert/Block/Product/View/Price.php |   0
 .../ProductAlert/Block/Product/View/Stock.php |   0
 .../Magento/ProductAlert/Controller/Add.php   |   0
 .../ProductAlert/Controller/Add/Price.php     |   0
 .../ProductAlert/Controller/Add/Stock.php     |   0
 .../ProductAlert/Controller/Unsubscribe.php   |   0
 .../Controller/Unsubscribe/Price.php          |   0
 .../Controller/Unsubscribe/PriceAll.php       |   0
 .../Controller/Unsubscribe/Stock.php          |   0
 .../Controller/Unsubscribe/StockAll.php       |   0
 app/code/Magento/ProductAlert/Helper/Data.php |   0
 app/code/Magento/ProductAlert/LICENSE.txt     |   0
 app/code/Magento/ProductAlert/LICENSE_AFL.txt |   0
 app/code/Magento/ProductAlert/Model/Email.php |   0
 .../Magento/ProductAlert/Model/Observer.php   |   0
 app/code/Magento/ProductAlert/Model/Price.php |   0
 .../Model/ResourceModel/AbstractResource.php  |   0
 .../Model/ResourceModel/Price.php             |   0
 .../Model/ResourceModel/Price/Collection.php  |   0
 .../Price/Customer/Collection.php             |   0
 .../Model/ResourceModel/Stock.php             |   0
 .../Model/ResourceModel/Stock/Collection.php  |   0
 .../Stock/Customer/Collection.php             |   0
 app/code/Magento/ProductAlert/Model/Stock.php |   0
 app/code/Magento/ProductAlert/README.md       |   0
 .../ProductAlert/Setup/InstallSchema.php      |   0
 .../Magento/ProductAlert/Setup/Recurring.php  |   0
 .../Test/Unit/Block/Email/StockTest.php       |   0
 .../Unit/Block/Product/View/PriceTest.php     |   0
 .../Unit/Block/Product/View/StockTest.php     |   0
 .../Test/Unit/Block/Product/ViewTest.php      |   0
 .../Test/Unit/Model/ObserverTest.php          |   0
 app/code/Magento/ProductAlert/composer.json   |   0
 .../ProductAlert/etc/adminhtml/system.xml     |   0
 app/code/Magento/ProductAlert/etc/config.xml  |   0
 app/code/Magento/ProductAlert/etc/crontab.xml |   0
 app/code/Magento/ProductAlert/etc/di.xml      |   0
 .../ProductAlert/etc/email_templates.xml      |   0
 .../ProductAlert/etc/frontend/routes.xml      |   0
 app/code/Magento/ProductAlert/etc/module.xml  |   0
 app/code/Magento/ProductAlert/i18n/en_US.csv  |   0
 .../Magento/ProductAlert/registration.php     |   0
 .../view/adminhtml/email/cron_error.html      |   0
 .../view/frontend/email/price_alert.html      |   0
 .../view/frontend/email/stock_alert.html      |   0
 .../frontend/layout/catalog_product_view.xml  |   0
 .../view/frontend/templates/email/price.phtml |   0
 .../view/frontend/templates/email/stock.phtml |   0
 .../frontend/templates/product/view.phtml     |   0
 .../Block/Adminhtml/Product/Edit/NewVideo.php |   0
 .../Block/Product/View/Gallery.php            |   0
 .../Product/Gallery/RetrieveImage.php         |   0
 .../Magento/ProductVideo/Helper/Media.php     |   0
 app/code/Magento/ProductVideo/LICENSE.txt     |   0
 app/code/Magento/ProductVideo/LICENSE_AFL.txt |   0
 .../Product/Gallery/AbstractHandler.php       |   0
 .../Catalog/Product/Gallery/CreateHandler.php |   0
 .../Catalog/Product/Gallery/ReadHandler.php   |   0
 .../Plugin/ExternalVideoResourceBackend.php   |   0
 .../Media/ExternalVideoEntryConverter.php     |   0
 .../Product/Attribute/Media/VideoEntry.php    |   0
 .../Model/ResourceModel/Video.php             |   0
 .../ProductVideo/Model/VideoExtractor.php     |   0
 .../Observer/ChangeTemplateObserver.php       |   0
 app/code/Magento/ProductVideo/README.md       |   0
 .../ProductVideo/Setup/InstallSchema.php      |   0
 .../Adminhtml/Product/Edit/NewVideoTest.php   |   0
 .../Unit/Block/Product/View/GalleryTest.php   |   0
 .../Product/Gallery/RetrieveImageTest.php     |   0
 .../Test/Unit/Helper/MediaTest.php            |   0
 .../Product/Gallery/CreateHandlerTest.php     |   0
 .../Product/Gallery/ReadHandlerTest.php       |   0
 .../Media/ExternalVideoEntryConverterTest.php |   0
 .../Attribute/Media/VideoEntryTest.php        |   0
 .../Observer/ChangeTemplateObserverTest.php   |   0
 app/code/Magento/ProductVideo/composer.json   |   0
 .../ProductVideo/etc/adminhtml/events.xml     |   0
 .../ProductVideo/etc/adminhtml/routes.xml     |   0
 .../ProductVideo/etc/adminhtml/system.xml     |   0
 app/code/Magento/ProductVideo/etc/config.xml  |   0
 app/code/Magento/ProductVideo/etc/di.xml      |   0
 .../ProductVideo/etc/extension_attributes.xml |   0
 app/code/Magento/ProductVideo/etc/module.xml  |   0
 app/code/Magento/ProductVideo/i18n/de_DE.csv  |   0
 app/code/Magento/ProductVideo/i18n/en_US.csv  |   0
 app/code/Magento/ProductVideo/i18n/es_ES.csv  |   0
 app/code/Magento/ProductVideo/i18n/fr_FR.csv  |   0
 app/code/Magento/ProductVideo/i18n/nl_NL.csv  |   0
 app/code/Magento/ProductVideo/i18n/pt_BR.csv  |   0
 .../Magento/ProductVideo/i18n/zh_Hans_CN.csv  |   0
 .../Magento/ProductVideo/registration.php     |   0
 .../adminhtml/layout/catalog_product_new.xml  |   0
 .../view/adminhtml/requirejs-config.js        |   0
 .../templates/product/edit/base_image.phtml   |   0
 .../product/edit/slideout/form.phtml          |   0
 .../adminhtml/ui_component/product_form.xml   |   0
 .../view/adminhtml/web/images/camera.png      | Bin
 .../adminhtml/web/images/gallery-sprite.png   | Bin
 .../adminhtml/web/js/get-video-information.js |   0
 .../view/adminhtml/web/js/new-video-dialog.js |   0
 .../view/adminhtml/web/js/video-modal.js      |   0
 .../frontend/layout/catalog_product_view.xml  |   0
 .../view/frontend/requirejs-config.js         |   0
 .../templates/product/view/gallery.phtml      |   0
 .../view/frontend/web/img/gallery-sprite.png  | Bin
 .../web/js/fotorama-add-video-events.js       |   0
 .../view/frontend/web/js/load-player.js       |   0
 .../Api/BillingAddressManagementInterface.php |   0
 .../Quote/Api/CartItemRepositoryInterface.php |   0
 .../Quote/Api/CartManagementInterface.php     |   0
 .../Quote/Api/CartRepositoryInterface.php     |   0
 .../Api/CartTotalManagementInterface.php      |   0
 .../Api/CartTotalRepositoryInterface.php      |   0
 .../Quote/Api/CouponManagementInterface.php   |   0
 .../Data/AddressAdditionalDataInterface.php   |   0
 .../Quote/Api/Data/AddressInterface.php       |   0
 .../Magento/Quote/Api/Data/CartInterface.php  |   0
 .../Quote/Api/Data/CartItemInterface.php      |   0
 .../Api/Data/CartSearchResultsInterface.php   |   0
 .../Quote/Api/Data/CurrencyInterface.php      |   0
 .../Api/Data/EstimateAddressInterface.php     |   0
 .../Quote/Api/Data/PaymentInterface.php       |   0
 .../Quote/Api/Data/PaymentMethodInterface.php |   0
 .../Quote/Api/Data/ProductOptionInterface.php |   0
 .../Api/Data/ShippingAssignmentInterface.php  |   0
 .../Quote/Api/Data/ShippingInterface.php      |   0
 .../Api/Data/ShippingMethodInterface.php      |   0
 .../Quote/Api/Data/TotalSegmentInterface.php  |   0
 .../Data/TotalsAdditionalDataInterface.php    |   0
 .../Quote/Api/Data/TotalsInterface.php        |   0
 .../Quote/Api/Data/TotalsItemInterface.php    |   0
 ...GuestBillingAddressManagementInterface.php |   0
 .../Api/GuestCartItemRepositoryInterface.php  |   0
 .../Api/GuestCartManagementInterface.php      |   0
 .../Api/GuestCartRepositoryInterface.php      |   0
 .../Api/GuestCartTotalManagementInterface.php |   0
 .../Api/GuestCartTotalRepositoryInterface.php |   0
 .../Api/GuestCouponManagementInterface.php    |   0
 .../GuestPaymentMethodManagementInterface.php |   0
 .../Api/GuestShipmentEstimationInterface.php  |   0
 ...GuestShippingMethodManagementInterface.php |   0
 .../Api/PaymentMethodManagementInterface.php  |   0
 .../Quote/Api/ShipmentEstimationInterface.php |   0
 .../Api/ShippingMethodManagementInterface.php |   0
 app/code/Magento/Quote/LICENSE.txt            |   0
 app/code/Magento/Quote/LICENSE_AFL.txt        |   0
 .../Quote/Model/AddressAdditionalData.php     |   0
 .../Model/AddressAdditionalDataProcessor.php  |   0
 .../Quote/Model/BillingAddressManagement.php  |   0
 .../Quote/Model/Cart/CartTotalManagement.php  |   0
 .../Quote/Model/Cart/CartTotalRepository.php  |   0
 .../Magento/Quote/Model/Cart/Currency.php     |   0
 .../Quote/Model/Cart/ShippingMethod.php       |   0
 .../Model/Cart/ShippingMethodConverter.php    |   0
 .../Magento/Quote/Model/Cart/TotalSegment.php |   0
 app/code/Magento/Quote/Model/Cart/Totals.php  |   0
 .../Magento/Quote/Model/Cart/Totals/Item.php  |   0
 .../Quote/Model/Cart/Totals/ItemConverter.php |   0
 .../Quote/Model/Cart/TotalsAdditionalData.php |   0
 .../Cart/TotalsAdditionalDataProcessor.php    |   0
 .../Quote/Model/Cart/TotalsConverter.php      |   0
 .../Magento/Quote/Model/CouponManagement.php  |   0
 .../Quote/Model/CustomerManagement.php        |   0
 .../Magento/Quote/Model/EstimateAddress.php   |   0
 .../GuestBillingAddressManagement.php         |   0
 .../GuestCart/GuestCartItemRepository.php     |   0
 .../Model/GuestCart/GuestCartManagement.php   |   0
 .../Model/GuestCart/GuestCartRepository.php   |   0
 .../GuestCart/GuestCartTotalManagement.php    |   0
 .../GuestCart/GuestCartTotalRepository.php    |   0
 .../Model/GuestCart/GuestCouponManagement.php |   0
 .../GuestPaymentMethodManagement.php          |   0
 .../GuestShippingAddressManagement.php        |   0
 ...uestShippingAddressManagementInterface.php |   0
 .../GuestShippingMethodManagement.php         |   0
 ...GuestShippingMethodManagementInterface.php |   0
 .../Plugin/Authorization.php                  |   0
 .../Quote/Model/PaymentMethodManagement.php   |   0
 .../Model/Product/Plugin/RemoveQuoteItems.php |   0
 .../Model/Product/Plugin/UpdateQuoteItems.php |   0
 .../Quote/Model/Product/QuoteItemsCleaner.php |   0
 .../Product/QuoteItemsCleanerInterface.php    |   0
 .../Magento/Quote/Model/QueryResolver.php     |   0
 app/code/Magento/Quote/Model/Quote.php        |   0
 .../Magento/Quote/Model/Quote/Address.php     |   0
 .../Quote/Address/BillingAddressPersister.php |   0
 .../Quote/Address/CustomAttributeList.php     |   0
 .../Address/CustomAttributeListInterface.php  |   0
 .../Model/Quote/Address/FreeShipping.php      |   0
 .../Quote/Address/FreeShippingInterface.php   |   0
 .../Quote/Model/Quote/Address/Item.php        |   0
 .../Quote/Model/Quote/Address/Rate.php        |   0
 .../Quote/Address/RateCollectorInterface.php  |   0
 .../Address/RateCollectorInterfaceFactory.php |   0
 .../Quote/Model/Quote/Address/RateRequest.php |   0
 .../Address/RateResult/AbstractResult.php     |   0
 .../Model/Quote/Address/RateResult/Error.php  |   0
 .../Model/Quote/Address/RateResult/Method.php |   0
 .../Quote/Model/Quote/Address/Relation.php    |   0
 .../Quote/Model/Quote/Address/ToOrder.php     |   0
 .../Model/Quote/Address/ToOrderAddress.php    |   0
 .../Quote/Model/Quote/Address/Total.php       |   0
 .../Quote/Address/Total/AbstractTotal.php     |   0
 .../Model/Quote/Address/Total/Collector.php   |   0
 .../Address/Total/CollectorInterface.php      |   0
 .../Quote/Model/Quote/Address/Total/Grand.php |   0
 .../Quote/Address/Total/ReaderInterface.php   |   0
 .../Model/Quote/Address/Total/Shipping.php    |   0
 .../Model/Quote/Address/Total/Subtotal.php    |   0
 .../Model/Quote/Address/TotalFactory.php      |   0
 .../Quote/Model/Quote/Address/Validator.php   |   0
 app/code/Magento/Quote/Model/Quote/Config.php |   0
 app/code/Magento/Quote/Model/Quote/Item.php   |   0
 .../Quote/Model/Quote/Item/AbstractItem.php   |   0
 .../Quote/Item/CartItemOptionsProcessor.php   |   0
 .../Model/Quote/Item/CartItemPersister.php    |   0
 .../Quote/Item/CartItemProcessorInterface.php |   0
 .../Quote/Item/CartItemProcessorsPool.php     |   0
 .../Quote/Model/Quote/Item/Compare.php        |   0
 .../Magento/Quote/Model/Quote/Item/Option.php |   0
 .../Quote/Model/Quote/Item/Processor.php      |   0
 .../Model/Quote/Item/RelatedProducts.php      |   0
 .../Quote/Model/Quote/Item/Repository.php     |   0
 .../Quote/Model/Quote/Item/ToOrderItem.php    |   0
 .../Quote/Model/Quote/Item/Updater.php        |   0
 .../Magento/Quote/Model/Quote/Payment.php     |   0
 .../Model/Quote/Payment/ToOrderPayment.php    |   0
 .../Quote/Model/Quote/ProductOption.php       |   0
 .../Magento/Quote/Model/Quote/Relation.php    |   0
 .../ShippingAssignmentPersister.php           |   0
 .../ShippingAssignmentProcessor.php           |   0
 .../ShippingAssignment/ShippingProcessor.php  |   0
 .../Quote/Model/Quote/TotalsCollector.php     |   0
 .../Quote/Model/Quote/TotalsCollectorList.php |   0
 .../Quote/Model/Quote/TotalsReader.php        |   0
 .../MinimumOrderAmount/ValidationMessage.php  |   0
 .../Quote/Model/QuoteAddressValidator.php     |   0
 app/code/Magento/Quote/Model/QuoteIdMask.php  |   0
 .../Magento/Quote/Model/QuoteManagement.php   |   0
 .../Magento/Quote/Model/QuoteRepository.php   |   0
 .../Model/QuoteRepository/LoadHandler.php     |   0
 .../Plugin/AccessChangeQuoteControl.php       |   0
 .../QuoteRepository/Plugin/Authorization.php  |   0
 .../Model/QuoteRepository/SaveHandler.php     |   0
 .../Magento/Quote/Model/QuoteValidator.php    |   0
 .../Quote/Model/ResourceModel/Quote.php       |   0
 .../Model/ResourceModel/Quote/Address.php     |   0
 .../Quote/Address/Attribute/Backend.php       |   0
 .../Quote/Address/Attribute/Backend/Child.php |   0
 .../Address/Attribute/Backend/Region.php      |   0
 .../Quote/Address/Attribute/Frontend.php      |   0
 .../Attribute/Frontend/Custbalance.php        |   0
 .../Address/Attribute/Frontend/Discount.php   |   0
 .../Address/Attribute/Frontend/Grand.php      |   0
 .../Address/Attribute/Frontend/Shipping.php   |   0
 .../Address/Attribute/Frontend/Subtotal.php   |   0
 .../Quote/Address/Attribute/Frontend/Tax.php  |   0
 .../Quote/Address/Collection.php              |   0
 .../ResourceModel/Quote/Address/Item.php      |   0
 .../Quote/Address/Item/Collection.php         |   0
 .../ResourceModel/Quote/Address/Rate.php      |   0
 .../Quote/Address/Rate/Collection.php         |   0
 .../Model/ResourceModel/Quote/Collection.php  |   0
 .../Quote/Model/ResourceModel/Quote/Item.php  |   0
 .../ResourceModel/Quote/Item/Collection.php   |   0
 .../Model/ResourceModel/Quote/Item/Option.php |   0
 .../Quote/Item/Option/Collection.php          |   0
 .../Model/ResourceModel/Quote/Payment.php     |   0
 .../Quote/Payment/Collection.php              |   0
 .../Model/ResourceModel/Quote/QuoteIdMask.php |   0
 app/code/Magento/Quote/Model/Shipping.php     |   0
 .../Quote/Model/ShippingAddressAssignment.php |   0
 .../Quote/Model/ShippingAddressManagement.php |   0
 .../ShippingAddressManagementInterface.php    |   0
 .../Quote/Model/ShippingAssignment.php        |   0
 .../Quote/Model/ShippingMethodManagement.php  |   0
 .../ShippingMethodManagementInterface.php     |   0
 .../Model/Webapi/ParamOverriderCartId.php     |   0
 .../Backend/CustomerQuoteObserver.php         |   0
 .../Quote/Address/CollectTotalsObserver.php   |   0
 .../Frontend/Quote/Address/VatValidator.php   |   0
 .../Quote/Observer/Webapi/SubmitObserver.php  |   0
 app/code/Magento/Quote/README.md              |   0
 .../Setup/ConvertSerializedDataToJson.php     |   0
 app/code/Magento/Quote/Setup/InstallData.php  |   0
 .../Magento/Quote/Setup/InstallSchema.php     |   0
 app/code/Magento/Quote/Setup/QuoteSetup.php   |   0
 app/code/Magento/Quote/Setup/UpgradeData.php  |   0
 .../Magento/Quote/Setup/UpgradeSchema.php     |   0
 .../Model/BillingAddressManagementTest.php    |   0
 .../Model/Cart/CartTotalManagementTest.php    |   0
 .../Model/Cart/CartTotalRepositoryTest.php    |   0
 .../Cart/ShippingMethodConverterTest.php      |   0
 .../Model/Cart/Totals/ItemConverterTest.php   |   0
 .../Test/Unit/Model/CouponManagementTest.php  |   0
 .../Unit/Model/CustomerManagementTest.php     |   0
 .../GuestBillingAddressManagementTest.php     |   0
 .../GuestCart/GuestCartItemRepositoryTest.php |   0
 .../GuestCart/GuestCartManagementTest.php     |   0
 .../GuestCart/GuestCartRepositoryTest.php     |   0
 .../Model/GuestCart/GuestCartTestHelper.php   |   0
 .../GuestCartTotalRepositoryTest.php          |   0
 .../GuestCart/GuestCouponManagementTest.php   |   0
 .../GuestPaymentMethodManagementTest.php      |   0
 .../GuestShippingAddressManagementTest.php    |   0
 .../GuestShippingMethodManagementTest.php     |   0
 .../Plugin/AuthorizationTest.php              |   0
 .../Model/PaymentMethodManagementTest.php     |   0
 .../Product/Plugin/RemoveQuoteItemsTest.php   |   0
 .../Product/Plugin/UpdateQuoteItemsTest.php   |   0
 .../Model/Product/QuoteItemsCleanerTest.php   |   0
 .../Test/Unit/Model/QueryResolverTest.php     |   0
 .../Unit/Model/Quote/Address/RelationTest.php |   0
 .../Quote/Address/ToOrderAddressTest.php      |   0
 .../Unit/Model/Quote/Address/ToOrderTest.php  |   0
 .../Model/Quote/Address/Total/GrandTest.php   |   0
 .../Quote/Address/Total/ShippingTest.php      |   0
 .../Quote/Address/Total/SubtotalTest.php      |   0
 .../Unit/Model/Quote/Address/TotalTest.php    |   0
 .../Model/Quote/Address/ValidatorTest.php     |   0
 .../Test/Unit/Model/Quote/AddressTest.php     |   0
 .../Test/Unit/Model/Quote/ConfigTest.php      |   0
 .../Model/Quote/Item/AbstractItemTest.php     |   0
 .../Unit/Model/Quote/Item/CompareTest.php     |   0
 .../Unit/Model/Quote/Item/ProcessorTest.php   |   0
 .../Model/Quote/Item/RelatedProductsTest.php  |   0
 .../Unit/Model/Quote/Item/RepositoryTest.php  |   0
 .../Unit/Model/Quote/Item/ToOrderItemTest.php |   0
 .../Unit/Model/Quote/Item/UpdaterTest.php     |   0
 .../Quote/Test/Unit/Model/Quote/ItemTest.php  |   0
 .../Quote/Payment/ToOrderPaymentTest.php      |   0
 .../Test/Unit/Model/Quote/PaymentTest.php     |   0
 .../Test/Unit/Model/Quote/RelationTest.php    |   0
 .../ShippingAssignmentProcessorTest.php       |   0
 .../ShippingProcessorTest.php                 |   0
 .../Unit/Model/Quote/TotalsReaderTest.php     |   0
 .../ValidationMessageTest.php                 |   0
 .../Unit/Model/QuoteAddressValidatorTest.php  |   0
 .../Quote/Test/Unit/Model/QuoteIdMaskTest.php |   0
 .../Test/Unit/Model/QuoteManagementTest.php   |   0
 .../Plugin/AccessChangeQuoteControlTest.php   |   0
 .../Plugin/AuthorizationTest.php              |   0
 .../Model/QuoteRepository/SaveHandlerTest.php |   0
 .../Test/Unit/Model/QuoteRepositoryTest.php   |   0
 .../Quote/Test/Unit/Model/QuoteTest.php       |   0
 .../Test/Unit/Model/QuoteValidatorTest.php    |   0
 .../Quote/Item/CollectionTest.php             |   0
 .../Model/ResourceModel/Quote/ItemTest.php    |   0
 .../ResourceModel/Quote/QuoteAddressTest.php  |   0
 .../Unit/Model/ResourceModel/QuoteTest.php    |   0
 .../Model/ShippingAddressAssignmentTest.php   |   0
 .../Model/ShippingAddressManagementTest.php   |   0
 .../Model/ShippingMethodManagementTest.php    |   0
 .../Model/Webapi/ParamOverriderCartIdTest.php |   0
 .../Backend/CustomerQuoteObserverTest.php     |   0
 .../Address/CollectTotalsObserverTest.php     |   0
 .../Quote/Address/VatValidatorTest.php        |   0
 .../Observer/Webapi/SubmitObserverTest.php    |   0
 app/code/Magento/Quote/composer.json          |   0
 app/code/Magento/Quote/etc/acl.xml            |   0
 .../Magento/Quote/etc/adminhtml/events.xml    |   0
 app/code/Magento/Quote/etc/di.xml             |   0
 app/code/Magento/Quote/etc/events.xml         |   0
 .../Quote/etc/extension_attributes.xml        |   0
 app/code/Magento/Quote/etc/fieldset.xml       |   0
 app/code/Magento/Quote/etc/module.xml         |   0
 app/code/Magento/Quote/etc/sales.xml          |   0
 app/code/Magento/Quote/etc/webapi.xml         |   0
 app/code/Magento/Quote/etc/webapi_rest/di.xml |   0
 .../Magento/Quote/etc/webapi_rest/events.xml  |   0
 app/code/Magento/Quote/etc/webapi_soap/di.xml |   0
 .../Magento/Quote/etc/webapi_soap/events.xml  |   0
 app/code/Magento/Quote/i18n/en_US.csv         |   0
 app/code/Magento/Quote/registration.php       |   0
 app/code/Magento/QuoteAnalytics/LICENSE.txt   |   0
 .../Magento/QuoteAnalytics/LICENSE_AFL.txt    |   0
 app/code/Magento/QuoteAnalytics/README.md     |   0
 app/code/Magento/QuoteAnalytics/composer.json |   0
 .../Magento/QuoteAnalytics/etc/analytics.xml  |   0
 .../Magento/QuoteAnalytics/etc/module.xml     |   0
 .../Magento/QuoteAnalytics/etc/reports.xml    |   0
 .../Magento/QuoteAnalytics/registration.php   |   0
 .../Notification/MarkUserNotified.php         |   0
 .../Magento/ReleaseNotification/LICENSE.txt   |   0
 .../ReleaseNotification/LICENSE_AFL.txt       |   0
 .../Model/Condition/CanViewNotification.php   |   0
 .../Model/ResourceModel/Viewer/Logger.php     |   0
 .../ReleaseNotification/Model/Viewer/Log.php  |   0
 .../Magento/ReleaseNotification/README.md     |   0
 .../Setup/InstallSchema.php                   |   0
 .../Notification/MarkUserNotifiedTest.php     |   0
 .../Condition/CanViewNotificationTest.php     |   0
 .../Ui/DataProvider/DataProvider.php          |   0
 .../Magento/ReleaseNotification/composer.json |   0
 .../etc/adminhtml/routes.xml                  |   0
 .../ReleaseNotification/etc/module.xml        |   0
 .../ReleaseNotification/i18n/en_US.csv        |   0
 .../ReleaseNotification/registration.php      |   0
 .../layout/adminhtml_dashboard_index.xml      |   0
 .../ui_component/release_notification.xml     |   0
 .../view/adminhtml/web/js/modal/component.js  |   0
 .../Adminhtml/Config/Form/Field/MtdStart.php  |   0
 .../Adminhtml/Config/Form/Field/YtdStart.php  |   0
 .../Block/Adminhtml/Customer/Accounts.php     |   0
 .../Block/Adminhtml/Customer/Orders.php       |   0
 .../Block/Adminhtml/Customer/Totals.php       |   0
 .../Reports/Block/Adminhtml/Filter/Form.php   |   0
 .../Magento/Reports/Block/Adminhtml/Grid.php  |   0
 .../Block/Adminhtml/Grid/AbstractGrid.php     |   0
 .../Grid/Column/Renderer/Blanknumber.php      |   0
 .../Grid/Column/Renderer/Currency.php         |   0
 .../Grid/Column/Renderer/Customer.php         |   0
 .../Grid/Column/Renderer/Product.php          |   0
 .../Reports/Block/Adminhtml/Grid/Shopcart.php |   0
 .../Reports/Block/Adminhtml/Product.php       |   0
 .../Block/Adminhtml/Product/Downloads.php     |   0
 .../Adminhtml/Product/Downloads/Grid.php      |   0
 .../Product/Downloads/Renderer/Purchases.php  |   0
 .../Block/Adminhtml/Product/Lowstock.php      |   0
 .../Block/Adminhtml/Product/Lowstock/Grid.php |   0
 .../Reports/Block/Adminhtml/Product/Sold.php  |   0
 .../Block/Adminhtml/Product/Viewed.php        |   0
 .../Block/Adminhtml/Product/Viewed/Grid.php   |   0
 .../Block/Adminhtml/Refresh/Statistics.php    |   0
 .../Block/Adminhtml/Review/Customer.php       |   0
 .../Reports/Block/Adminhtml/Review/Detail.php |   0
 .../Block/Adminhtml/Review/Detail/Grid.php    |   0
 .../Block/Adminhtml/Review/Product.php        |   0
 .../Block/Adminhtml/Sales/Bestsellers.php     |   0
 .../Adminhtml/Sales/Bestsellers/Grid.php      |   0
 .../Reports/Block/Adminhtml/Sales/Coupons.php |   0
 .../Block/Adminhtml/Sales/Coupons/Grid.php    |   0
 .../Sales/Grid/Column/Renderer/Date.php       |   0
 .../Block/Adminhtml/Sales/Invoiced.php        |   0
 .../Block/Adminhtml/Sales/Invoiced/Grid.php   |   0
 .../Block/Adminhtml/Sales/Refunded.php        |   0
 .../Block/Adminhtml/Sales/Refunded/Grid.php   |   0
 .../Reports/Block/Adminhtml/Sales/Sales.php   |   0
 .../Block/Adminhtml/Sales/Sales/Grid.php      |   0
 .../Block/Adminhtml/Sales/Shipping.php        |   0
 .../Block/Adminhtml/Sales/Shipping/Grid.php   |   0
 .../Reports/Block/Adminhtml/Sales/Tax.php     |   0
 .../Block/Adminhtml/Sales/Tax/Grid.php        |   0
 .../Block/Adminhtml/Shopcart/Abandoned.php    |   0
 .../Adminhtml/Shopcart/Abandoned/Grid.php     |   0
 .../Block/Adminhtml/Shopcart/Customer.php     |   0
 .../Adminhtml/Shopcart/Customer/Grid.php      |   0
 .../Block/Adminhtml/Shopcart/Product.php      |   0
 .../Block/Adminhtml/Shopcart/Product/Grid.php |   0
 .../Reports/Block/Adminhtml/Wishlist.php      |   0
 .../Reports/Block/Adminhtml/Wishlist/Grid.php |   0
 .../Reports/Block/Product/AbstractProduct.php |   0
 .../Reports/Block/Product/Compared.php        |   0
 .../Magento/Reports/Block/Product/Viewed.php  |   0
 .../Reports/Block/Product/Widget/Compared.php |   0
 .../Reports/Block/Product/Widget/Viewed.php   |   0
 .../Block/Product/Widget/Viewed/Item.php      |   0
 .../Reports/Controller/Adminhtml/Index.php    |   0
 .../Adminhtml/Report/AbstractReport.php       |   0
 .../Controller/Adminhtml/Report/Customer.php  |   0
 .../Adminhtml/Report/Customer/Accounts.php    |   0
 .../Report/Customer/ExportAccountsCsv.php     |   0
 .../Report/Customer/ExportAccountsExcel.php   |   0
 .../Report/Customer/ExportOrdersCsv.php       |   0
 .../Report/Customer/ExportOrdersExcel.php     |   0
 .../Report/Customer/ExportTotalsCsv.php       |   0
 .../Report/Customer/ExportTotalsExcel.php     |   0
 .../Adminhtml/Report/Customer/Orders.php      |   0
 .../Adminhtml/Report/Customer/Totals.php      |   0
 .../Controller/Adminhtml/Report/Product.php   |   0
 .../Adminhtml/Report/Product/Downloads.php    |   0
 .../Report/Product/ExportDownloadsCsv.php     |   0
 .../Report/Product/ExportDownloadsExcel.php   |   0
 .../Report/Product/ExportLowstockCsv.php      |   0
 .../Report/Product/ExportLowstockExcel.php    |   0
 .../Report/Product/ExportSoldCsv.php          |   0
 .../Report/Product/ExportSoldExcel.php        |   0
 .../Report/Product/ExportViewedCsv.php        |   0
 .../Report/Product/ExportViewedExcel.php      |   0
 .../Adminhtml/Report/Product/Lowstock.php     |   0
 .../Adminhtml/Report/Product/Sold.php         |   0
 .../Adminhtml/Report/Product/Viewed.php       |   0
 .../Controller/Adminhtml/Report/Review.php    |   0
 .../Adminhtml/Report/Review/Customer.php      |   0
 .../Report/Review/ExportCustomerCsv.php       |   0
 .../Report/Review/ExportCustomerExcel.php     |   0
 .../Report/Review/ExportProductCsv.php        |   0
 .../Report/Review/ExportProductDetailCsv.php  |   0
 .../Review/ExportProductDetailExcel.php       |   0
 .../Report/Review/ExportProductExcel.php      |   0
 .../Adminhtml/Report/Review/Product.php       |   0
 .../Adminhtml/Report/Review/ProductDetail.php |   0
 .../Controller/Adminhtml/Report/Sales.php     |   0
 .../Adminhtml/Report/Sales/Bestsellers.php    |   0
 .../Adminhtml/Report/Sales/Coupons.php        |   0
 .../Report/Sales/ExportBestsellersCsv.php     |   0
 .../Report/Sales/ExportBestsellersExcel.php   |   0
 .../Report/Sales/ExportCouponsCsv.php         |   0
 .../Report/Sales/ExportCouponsExcel.php       |   0
 .../Report/Sales/ExportInvoicedCsv.php        |   0
 .../Report/Sales/ExportInvoicedExcel.php      |   0
 .../Report/Sales/ExportRefundedCsv.php        |   0
 .../Report/Sales/ExportRefundedExcel.php      |   0
 .../Adminhtml/Report/Sales/ExportSalesCsv.php |   0
 .../Report/Sales/ExportSalesExcel.php         |   0
 .../Report/Sales/ExportShippingCsv.php        |   0
 .../Report/Sales/ExportShippingExcel.php      |   0
 .../Adminhtml/Report/Sales/ExportTaxCsv.php   |   0
 .../Adminhtml/Report/Sales/ExportTaxExcel.php |   0
 .../Adminhtml/Report/Sales/Invoiced.php       |   0
 .../Report/Sales/RefreshLifetime.php          |   0
 .../Adminhtml/Report/Sales/RefreshRecent.php  |   0
 .../Report/Sales/RefreshStatistics.php        |   0
 .../Adminhtml/Report/Sales/Refunded.php       |   0
 .../Adminhtml/Report/Sales/Sales.php          |   0
 .../Adminhtml/Report/Sales/Shipping.php       |   0
 .../Controller/Adminhtml/Report/Sales/Tax.php |   0
 .../Controller/Adminhtml/Report/Shopcart.php  |   0
 .../Adminhtml/Report/Shopcart/Abandoned.php   |   0
 .../Adminhtml/Report/Shopcart/Customer.php    |   0
 .../Report/Shopcart/ExportAbandonedCsv.php    |   0
 .../Report/Shopcart/ExportAbandonedExcel.php  |   0
 .../Report/Shopcart/ExportCustomerCsv.php     |   0
 .../Report/Shopcart/ExportCustomerExcel.php   |   0
 .../Report/Shopcart/ExportProductCsv.php      |   0
 .../Report/Shopcart/ExportProductExcel.php    |   0
 .../Adminhtml/Report/Shopcart/Product.php     |   0
 .../Adminhtml/Report/Statistics.php           |   0
 .../Adminhtml/Report/Statistics/Index.php     |   0
 .../Report/Statistics/RefreshLifetime.php     |   0
 .../Report/Statistics/RefreshRecent.php       |   0
 app/code/Magento/Reports/Helper/Data.php      |   0
 app/code/Magento/Reports/LICENSE.txt          |   0
 app/code/Magento/Reports/LICENSE_AFL.txt      |   0
 app/code/Magento/Reports/Model/Config.php     |   0
 app/code/Magento/Reports/Model/Event.php      |   0
 app/code/Magento/Reports/Model/Event/Type.php |   0
 app/code/Magento/Reports/Model/Flag.php       |   0
 .../Reports/Model/Grouped/Collection.php      |   0
 app/code/Magento/Reports/Model/Item.php       |   0
 app/code/Magento/Reports/Model/Plugin/Log.php |   0
 .../Model/Product/Index/AbstractIndex.php     |   0
 .../Reports/Model/Product/Index/Compared.php  |   0
 .../Reports/Model/Product/Index/Factory.php   |   0
 .../Reports/Model/Product/Index/Viewed.php    |   0
 .../ResourceModel/Accounts/Collection.php     |   0
 .../Accounts/Collection/Initial.php           |   0
 .../ResourceModel/Customer/Collection.php     |   0
 .../Customer/Orders/Collection.php            |   0
 .../Customer/Orders/Collection/Initial.php    |   0
 .../Customer/Totals/Collection.php            |   0
 .../Customer/Totals/Collection/Initial.php    |   0
 .../Reports/Model/ResourceModel/Event.php     |   0
 .../Model/ResourceModel/Event/Collection.php  |   0
 .../Model/ResourceModel/Event/Type.php        |   0
 .../ResourceModel/Event/Type/Collection.php   |   0
 .../Reports/Model/ResourceModel/Helper.php    |   0
 .../Model/ResourceModel/HelperInterface.php   |   0
 .../Model/ResourceModel/Order/Collection.php  |   0
 .../ResourceModel/Product/Collection.php      |   0
 .../Product/Downloads/Collection.php          |   0
 .../Product/Index/AbstractIndex.php           |   0
 .../Index/Collection/AbstractCollection.php   |   0
 .../ResourceModel/Product/Index/Compared.php  |   0
 .../Product/Index/Compared/Collection.php     |   0
 .../ResourceModel/Product/Index/Viewed.php    |   0
 .../Product/Index/Viewed/Collection.php       |   0
 .../Product/Lowstock/Collection.php           |   0
 .../ResourceModel/Product/Sold/Collection.php |   0
 .../Product/Sold/Collection/Initial.php       |   0
 .../Model/ResourceModel/Quote/Collection.php  |   0
 .../ResourceModel/Quote/CollectionFactory.php |   0
 .../Quote/CollectionFactoryInterface.php      |   0
 .../ResourceModel/Quote/Item/Collection.php   |   0
 .../ResourceModel/Refresh/Collection.php      |   0
 .../ResourceModel/Report/AbstractReport.php   |   0
 .../Model/ResourceModel/Report/Collection.php |   0
 .../Report/Collection/AbstractCollection.php  |   0
 .../Report/Collection/Factory.php             |   0
 .../ResourceModel/Report/Product/Viewed.php   |   0
 .../Report/Product/Viewed/Collection.php      |   0
 .../Model/ResourceModel/Review/Collection.php |   0
 .../Review/Customer/Collection.php            |   0
 .../Review/Product/Collection.php             |   0
 .../ResourceModel/Wishlist/Collection.php     |   0
 .../Wishlist/Product/Collection.php           |   0
 ...atalogProductCompareAddProductObserver.php |   0
 .../CatalogProductCompareClearObserver.php    |   0
 .../Observer/CatalogProductViewObserver.php   |   0
 .../CheckoutCartAddProductObserver.php        |   0
 .../Observer/CustomerLoginObserver.php        |   0
 .../Observer/CustomerLogoutObserver.php       |   0
 .../Magento/Reports/Observer/EventSaver.php   |   0
 .../Observer/SendfriendProductObserver.php    |   0
 .../Observer/WishlistAddProductObserver.php   |   0
 .../Observer/WishlistShareObserver.php        |   0
 app/code/Magento/Reports/README.md            |   0
 .../Magento/Reports/Setup/InstallData.php     |   0
 .../Magento/Reports/Setup/InstallSchema.php   |   0
 app/code/Magento/Reports/Setup/Recurring.php  |   0
 .../Block/Adminhtml/Grid/AbstractGridTest.php |   0
 .../Sales/Grid/Column/Renderer/DateTest.php   |   0
 .../Test/Unit/Block/Product/ComparedTest.php  |   0
 .../Test/Unit/Block/Product/ViewedTest.php    |   0
 .../Report/AbstractControllerTest.php         |   0
 .../Report/Customer/AccountsTest.php          |   0
 .../Report/Customer/ExportAccountsCsvTest.php |   0
 .../Customer/ExportAccountsExcelTest.php      |   0
 .../Report/Customer/ExportOrdersCsvTest.php   |   0
 .../Report/Customer/ExportOrdersExcelTest.php |   0
 .../Report/Customer/ExportTotalsCsvTest.php   |   0
 .../Report/Customer/ExportTotalsExcelTest.php |   0
 .../Adminhtml/Report/Customer/OrdersTest.php  |   0
 .../Adminhtml/Report/Customer/TotalsTest.php  |   0
 .../Report/Product/DownloadsTest.php          |   0
 .../Report/Product/ExportDownloadsCsvTest.php |   0
 .../Product/ExportDownloadsExcelTest.php      |   0
 .../Report/Product/ExportLowstockCsvTest.php  |   0
 .../Product/ExportLowstockExcelTest.php       |   0
 .../Report/Product/ExportSoldCsvTest.php      |   0
 .../Report/Product/ExportSoldExcelTest.php    |   0
 .../Report/Product/ExportViewedCsvTest.php    |   0
 .../Report/Product/ExportViewedExcelTest.php  |   0
 .../Adminhtml/Report/Product/LowstockTest.php |   0
 .../Adminhtml/Report/Product/SoldTest.php     |   0
 .../Adminhtml/Report/Product/ViewedTest.php   |   0
 .../Reports/Test/Unit/Helper/DataTest.php     |   0
 .../Test/Unit/Model/Plugin/LogTest.php        |   0
 .../Unit/Model/Product/Index/ComparedTest.php |   0
 .../ResourceModel/Event/CollectionTest.php    |   0
 .../Unit/Model/ResourceModel/EventTest.php    |   0
 .../Unit/Model/ResourceModel/HelperTest.php   |   0
 .../ResourceModel/Order/CollectionTest.php    |   0
 .../ResourceModel/Product/CollectionTest.php  |   0
 .../Sold/Collection/CollectionTest.php        |   0
 .../ResourceModel/Quote/CollectionTest.php    |   0
 .../Collection/AbstractCollectionTest.php     |   0
 .../ResourceModel/Report/CollectionTest.php   |   0
 .../Report/Product/ViewedTest.php             |   0
 .../Report/Quote/CollectionTest.php           |   0
 ...ogProductCompareAddProductObserverTest.php |   0
 .../CatalogProductViewObserverTest.php        |   0
 .../Observer/CustomerLoginObserverTest.php    |   0
 .../Observer/CustomerLogoutObserverTest.php   |   0
 app/code/Magento/Reports/composer.json        |   0
 app/code/Magento/Reports/etc/acl.xml          |   0
 app/code/Magento/Reports/etc/adminhtml/di.xml |   0
 .../Magento/Reports/etc/adminhtml/menu.xml    |   0
 .../Magento/Reports/etc/adminhtml/routes.xml  |   0
 .../Magento/Reports/etc/adminhtml/system.xml  |   0
 app/code/Magento/Reports/etc/config.xml       |   0
 app/code/Magento/Reports/etc/di.xml           |   0
 .../Magento/Reports/etc/frontend/events.xml   |   0
 app/code/Magento/Reports/etc/module.xml       |   0
 .../Reports/etc/webapi_rest/events.xml        |   0
 .../Reports/etc/webapi_soap/events.xml        |   0
 app/code/Magento/Reports/i18n/en_US.csv       |   0
 app/code/Magento/Reports/registration.php     |   0
 .../reports_report_customer_accounts.xml      |   0
 .../reports_report_customer_accounts_grid.xml |   0
 ...orts_report_customer_exportaccountscsv.xml |   0
 ...ts_report_customer_exportaccountsexcel.xml |   0
 ...eports_report_customer_exportorderscsv.xml |   0
 ...orts_report_customer_exportordersexcel.xml |   0
 ...eports_report_customer_exporttotalscsv.xml |   0
 ...orts_report_customer_exporttotalsexcel.xml |   0
 .../layout/reports_report_customer_orders.xml |   0
 .../reports_report_customer_orders_grid.xml   |   0
 .../layout/reports_report_customer_totals.xml |   0
 .../reports_report_customer_totals_grid.xml   |   0
 .../adminhtml/layout/reports_report_grid.xml  |   0
 .../reports_report_product_downloads.xml      |   0
 ...ports_report_product_exportlowstockcsv.xml |   0
 ...rts_report_product_exportlowstockexcel.xml |   0
 .../reports_report_product_exportsoldcsv.xml  |   0
 ...reports_report_product_exportsoldexcel.xml |   0
 .../reports_report_product_lowstock.xml       |   0
 .../reports_report_product_lowstock_grid.xml  |   0
 .../layout/reports_report_product_sold.xml    |   0
 .../reports_report_product_sold_grid.xml      |   0
 .../layout/reports_report_product_viewed.xml  |   0
 .../layout/reports_report_review_customer.xml |   0
 .../reports_report_review_customer_grid.xml   |   0
 ...eports_report_review_exportcustomercsv.xml |   0
 ...orts_report_review_exportcustomerexcel.xml |   0
 ...reports_report_review_exportproductcsv.xml |   0
 ...ports_report_review_exportproductexcel.xml |   0
 .../layout/reports_report_review_product.xml  |   0
 .../reports_report_review_product_grid.xml    |   0
 .../reports_report_sales_bestsellers.xml      |   0
 .../layout/reports_report_sales_coupons.xml   |   0
 .../layout/reports_report_sales_invoiced.xml  |   0
 .../layout/reports_report_sales_refunded.xml  |   0
 .../layout/reports_report_sales_sales.xml     |   0
 .../layout/reports_report_sales_shipping.xml  |   0
 .../layout/reports_report_sales_tax.xml       |   0
 .../reports_report_shopcart_abandoned.xml     |   0
 .../reports_report_statistics_index.xml       |   0
 .../view/adminhtml/layout/reports_sales.xml   |   0
 .../view/adminhtml/templates/grid.phtml       |   0
 .../templates/report/grid/container.phtml     |   0
 .../templates/report/refresh/statistics.phtml |   0
 .../adminhtml/templates/report/wishlist.phtml |   0
 .../adminhtml/templates/store/switcher.phtml  |   0
 .../templates/store/switcher/enhanced.phtml   |   0
 .../web/images/product_widget_compared.gif    | Bin
 .../web/images/product_widget_viewed.gif      | Bin
 .../Reports/view/frontend/layout/default.xml  |   0
 .../Reports/view/frontend/layout/print.xml    |   0
 .../Reports/view/frontend/requirejs-config.js |   0
 .../frontend/templates/js/components.phtml    |   0
 .../templates/product/widget/viewed.phtml     |   0
 .../product/widget/viewed/item.phtml          |   0
 .../column/compared_default_list.phtml        |   0
 .../column/compared_images_list.phtml         |   0
 .../compared/column/compared_names_list.phtml |   0
 .../compared/content/compared_grid.phtml      |   0
 .../compared/content/compared_list.phtml      |   0
 .../viewed/column/viewed_default_list.phtml   |   0
 .../viewed/column/viewed_images_list.phtml    |   0
 .../viewed/column/viewed_names_list.phtml     |   0
 .../widget/viewed/content/viewed_grid.phtml   |   0
 .../widget/viewed/content/viewed_list.phtml   |   0
 .../view/frontend/web/js/recently-viewed.js   |   0
 .../RequireJs/Block/Html/Head/Config.php      |   0
 app/code/Magento/RequireJs/LICENSE.txt        |   0
 app/code/Magento/RequireJs/LICENSE_AFL.txt    |   0
 .../Magento/RequireJs/Model/FileManager.php   |   0
 app/code/Magento/RequireJs/README.md          |   0
 .../Test/Unit/Block/Html/Head/ConfigTest.php  |   0
 .../Test/Unit/Model/FileManagerTest.php       |   0
 app/code/Magento/RequireJs/composer.json      |   0
 app/code/Magento/RequireJs/etc/di.xml         |   0
 app/code/Magento/RequireJs/etc/module.xml     |   0
 app/code/Magento/RequireJs/i18n/en_US.csv     |   0
 app/code/Magento/RequireJs/registration.php   |   0
 .../Magento/Review/Block/Adminhtml/Add.php    |   0
 .../Review/Block/Adminhtml/Add/Form.php       |   0
 .../Magento/Review/Block/Adminhtml/Edit.php   |   0
 .../Review/Block/Adminhtml/Edit/Form.php      |   0
 .../Magento/Review/Block/Adminhtml/Grid.php   |   0
 .../Block/Adminhtml/Grid/Filter/Type.php      |   0
 .../Block/Adminhtml/Grid/Renderer/Type.php    |   0
 .../Magento/Review/Block/Adminhtml/Main.php   |   0
 .../Block/Adminhtml/Product/Edit/Tab.php      |   0
 .../Adminhtml/Product/Edit/Tab/Reviews.php    |   0
 .../Review/Block/Adminhtml/Product/Grid.php   |   0
 .../Magento/Review/Block/Adminhtml/Rating.php |   0
 .../Block/Adminhtml/Rating/Detailed.php       |   0
 .../Review/Block/Adminhtml/Rating/Edit.php    |   0
 .../Block/Adminhtml/Rating/Edit/Form.php      |   0
 .../Block/Adminhtml/Rating/Edit/Tab/Form.php  |   0
 .../Block/Adminhtml/Rating/Edit/Tabs.php      |   0
 .../Review/Block/Adminhtml/Rating/Summary.php |   0
 .../Review/Block/Adminhtml/ReviewTab.php      |   0
 .../Magento/Review/Block/Adminhtml/Rss.php    |   0
 .../Review/Block/Adminhtml/Rss/Grid/Link.php  |   0
 .../Review/Block/Customer/ListCustomer.php    |   0
 .../Magento/Review/Block/Customer/Recent.php  |   0
 .../Magento/Review/Block/Customer/View.php    |   0
 app/code/Magento/Review/Block/Form.php        |   0
 .../Magento/Review/Block/Form/Configure.php   |   0
 .../Compare/ListCompare/Plugin/Review.php     |   0
 .../Magento/Review/Block/Product/Review.php   |   0
 .../Review/Block/Product/ReviewRenderer.php   |   0
 .../Magento/Review/Block/Product/View.php     |   0
 .../Review/Block/Product/View/ListView.php    |   0
 .../Review/Block/Product/View/Other.php       |   0
 .../Review/Block/Rating/Entity/Detailed.php   |   0
 app/code/Magento/Review/Block/View.php        |   0
 .../Review/Controller/Adminhtml/Product.php   |   0
 .../Controller/Adminhtml/Product/Delete.php   |   0
 .../Controller/Adminhtml/Product/Edit.php     |   0
 .../Controller/Adminhtml/Product/Index.php    |   0
 .../Adminhtml/Product/JsonProductInfo.php     |   0
 .../Adminhtml/Product/MassDelete.php          |   0
 .../Adminhtml/Product/MassUpdateStatus.php    |   0
 .../Adminhtml/Product/MassVisibleIn.php       |   0
 .../Adminhtml/Product/NewAction.php           |   0
 .../Controller/Adminhtml/Product/Pending.php  |   0
 .../Controller/Adminhtml/Product/Post.php     |   0
 .../Adminhtml/Product/ProductGrid.php         |   0
 .../Adminhtml/Product/RatingItems.php         |   0
 .../Adminhtml/Product/ReviewGrid.php          |   0
 .../Adminhtml/Product/Reviews/Grid.php        |   0
 .../Controller/Adminhtml/Product/Save.php     |   0
 .../Review/Controller/Adminhtml/Rating.php    |   0
 .../Controller/Adminhtml/Rating/Delete.php    |   0
 .../Controller/Adminhtml/Rating/Edit.php      |   0
 .../Controller/Adminhtml/Rating/Index.php     |   0
 .../Controller/Adminhtml/Rating/NewAction.php |   0
 .../Controller/Adminhtml/Rating/Save.php      |   0
 .../Magento/Review/Controller/Customer.php    |   0
 .../Review/Controller/Customer/Index.php      |   0
 .../Review/Controller/Customer/View.php       |   0
 .../Magento/Review/Controller/Product.php     |   0
 .../Review/Controller/Product/ListAction.php  |   0
 .../Review/Controller/Product/ListAjax.php    |   0
 .../Review/Controller/Product/Post.php        |   0
 .../Review/Controller/Product/View.php        |   0
 .../Magento/Review/CustomerData/Review.php    |   0
 .../Magento/Review/Helper/Action/Pager.php    |   0
 app/code/Magento/Review/Helper/Data.php       |   0
 app/code/Magento/Review/LICENSE.txt           |   0
 app/code/Magento/Review/LICENSE_AFL.txt       |   0
 app/code/Magento/Review/Model/Rating.php      |   0
 .../Magento/Review/Model/Rating/Entity.php    |   0
 .../Magento/Review/Model/Rating/Option.php    |   0
 .../Review/Model/Rating/Option/Vote.php       |   0
 .../Review/Model/ResourceModel/Rating.php     |   0
 .../Model/ResourceModel/Rating/Collection.php |   0
 .../Model/ResourceModel/Rating/Entity.php     |   0
 .../ResourceModel/Rating/Grid/Collection.php  |   0
 .../Model/ResourceModel/Rating/Option.php     |   0
 .../Rating/Option/Collection.php              |   0
 .../ResourceModel/Rating/Option/Vote.php      |   0
 .../Rating/Option/Vote/Collection.php         |   0
 .../Review/Model/ResourceModel/Review.php     |   0
 .../Model/ResourceModel/Review/Collection.php |   0
 .../Review/Product/Collection.php             |   0
 .../Model/ResourceModel/Review/Status.php     |   0
 .../Review/Status/Collection.php              |   0
 .../Model/ResourceModel/Review/Summary.php    |   0
 .../Review/Summary/Collection.php             |   0
 app/code/Magento/Review/Model/Review.php      |   0
 .../Magento/Review/Model/Review/Status.php    |   0
 .../Magento/Review/Model/Review/Summary.php   |   0
 app/code/Magento/Review/Model/Rss.php         |   0
 ...kProductCollectionBeforeToHtmlObserver.php |   0
 ...ProcessProductAfterDeleteEventObserver.php |   0
 .../TagProductCollectionLoadAfterObserver.php |   0
 app/code/Magento/Review/README.md             |   0
 app/code/Magento/Review/Setup/InstallData.php |   0
 .../Magento/Review/Setup/InstallSchema.php    |   0
 .../Test/Unit/Block/Adminhtml/MainTest.php    |   0
 .../Adminhtml/Rating/Edit/Tab/FormTest.php    |   0
 .../Block/Adminhtml/Rss/Grid/LinkTest.php     |   0
 .../Test/Unit/Block/Adminhtml/RssTest.php     |   0
 .../Test/Unit/Block/Customer/RecentTest.php   |   0
 .../Review/Test/Unit/Block/FormTest.php       |   0
 .../Test/Unit/Block/Product/ReviewTest.php    |   0
 .../Controller/Adminhtml/Product/PostTest.php |   0
 .../Test/Unit/Controller/Product/PostTest.php |   0
 .../Test/Unit/Helper/Action/PagerTest.php     |   0
 .../Review/Test/Unit/Model/RatingTest.php     |   0
 .../ResourceModel/Review/CollectionTest.php   |   0
 .../Review/Product/CollectionTest.php         |   0
 .../Review/Summary/CollectionTest.php         |   0
 .../Review/Test/Unit/Model/ReviewTest.php     |   0
 .../Review/Test/Unit/Model/RssTest.php        |   0
 .../Listing/Columns/ReviewActionsTest.php     |   0
 .../Component/Listing/Columns/StatusTest.php  |   0
 .../Ui/Component/Listing/Columns/TypeTest.php |   0
 .../Listing/Columns/VisibilityTest.php        |   0
 .../Product/Form/Modifier/ReviewTest.php      |   0
 .../Product/ReviewDataProviderTest.php        |   0
 .../Listing/Columns/ReviewActions.php         |   0
 .../Ui/Component/Listing/Columns/Status.php   |   0
 .../Ui/Component/Listing/Columns/Type.php     |   0
 .../Component/Listing/Columns/Visibility.php  |   0
 .../Product/Form/Modifier/Review.php          |   0
 .../Product/Listing/Collector/Review.php      |   0
 .../Product/ReviewDataProvider.php            |   0
 app/code/Magento/Review/composer.json         |   0
 app/code/Magento/Review/etc/acl.xml           |   0
 app/code/Magento/Review/etc/adminhtml/di.xml  |   0
 .../Magento/Review/etc/adminhtml/events.xml   |   0
 .../Magento/Review/etc/adminhtml/menu.xml     |   0
 .../Magento/Review/etc/adminhtml/routes.xml   |   0
 .../Magento/Review/etc/adminhtml/system.xml   |   0
 app/code/Magento/Review/etc/config.xml        |   0
 app/code/Magento/Review/etc/di.xml            |   0
 .../Review/etc/extension_attributes.xml       |   0
 app/code/Magento/Review/etc/frontend/di.xml   |   0
 .../Magento/Review/etc/frontend/events.xml    |   0
 .../Review/etc/frontend/page_types.xml        |   0
 .../Magento/Review/etc/frontend/routes.xml    |   0
 .../Magento/Review/etc/frontend/sections.xml  |   0
 app/code/Magento/Review/etc/module.xml        |   0
 app/code/Magento/Review/i18n/en_US.csv        |   0
 app/code/Magento/Review/registration.php      |   0
 .../adminhtml/layout/catalog_product_new.xml  |   0
 .../view/adminhtml/layout/rating_block.xml    |   0
 .../adminhtml/layout/review_product_edit.xml  |   0
 .../adminhtml/layout/review_product_index.xml |   0
 .../layout/review_product_reviews_grid.xml    |   0
 .../adminhtml/layout/review_rating_edit.xml   |   0
 .../adminhtml/layout/review_rating_index.xml  |   0
 .../Review/view/adminhtml/templates/add.phtml |   0
 .../adminhtml/templates/rating/detailed.phtml |   0
 .../adminhtml/templates/rating/form.phtml     |   0
 .../adminhtml/templates/rating/options.phtml  |   0
 .../templates/rating/stars/detailed.phtml     |   0
 .../templates/rating/stars/summary.phtml      |   0
 .../adminhtml/templates/rss/grid/link.phtml   |   0
 .../adminhtml/ui_component/review_listing.xml |   0
 .../Review/view/adminhtml/web/js/rating.js    |   0
 .../view/base/ui_component/customer_form.xml  |   0
 .../frontend/layout/catalog_product_view.xml  |   0
 .../layout/checkout_cart_configure.xml        |   0
 .../view/frontend/layout/customer_account.xml |   0
 .../layout/customer_account_index.xml         |   0
 .../frontend/layout/review_customer_index.xml |   0
 .../frontend/layout/review_customer_view.xml  |   0
 .../layout/review_product_form_component.xml  |   0
 .../frontend/layout/review_product_list.xml   |   0
 .../layout/review_product_listajax.xml        |   0
 .../frontend/layout/review_product_view.xml   |   0
 .../layout/wishlist_index_configure.xml       |   0
 .../frontend/templates/customer/list.phtml    |   0
 .../frontend/templates/customer/recent.phtml  |   0
 .../frontend/templates/customer/view.phtml    |   0
 .../view/frontend/templates/detailed.phtml    |   0
 .../view/frontend/templates/empty.phtml       |   0
 .../Review/view/frontend/templates/form.phtml |   0
 .../frontend/templates/helper/summary.phtml   |   0
 .../templates/helper/summary_short.phtml      |   0
 .../templates/product/view/count.phtml        |   0
 .../templates/product/view/list.phtml         |   0
 .../templates/product/view/other.phtml        |   0
 .../view/frontend/templates/redirect.phtml    |   0
 .../view/frontend/templates/review.phtml      |   0
 .../Review/view/frontend/templates/view.phtml |   0
 .../ui_component/widget_recently_compared.xml |   0
 .../ui_component/widget_recently_viewed.xml   |   0
 .../view/frontend/web/js/error-placement.js   |   0
 .../view/frontend/web/js/process-reviews.js   |   0
 .../view/frontend/web/js/validate-review.js   |   0
 .../view/frontend/web/js/view/review.js       |   0
 app/code/Magento/ReviewAnalytics/LICENSE.txt  |   0
 .../Magento/ReviewAnalytics/LICENSE_AFL.txt   |   0
 app/code/Magento/ReviewAnalytics/README.md    |   0
 .../Magento/ReviewAnalytics/composer.json     |   0
 .../Magento/ReviewAnalytics/etc/analytics.xml |   0
 .../Magento/ReviewAnalytics/etc/module.xml    |   0
 .../Magento/ReviewAnalytics/etc/reports.xml   |   0
 .../Magento/ReviewAnalytics/registration.php  |   0
 app/code/Magento/Robots/Block/Data.php        |   0
 .../Magento/Robots/Controller/Index/Index.php |   0
 app/code/Magento/Robots/Controller/Router.php |   0
 app/code/Magento/Robots/LICENSE.txt           |   0
 app/code/Magento/Robots/LICENSE_AFL.txt       |   0
 .../Magento/Robots/Model/Config/Value.php     |   0
 app/code/Magento/Robots/Model/Robots.php      |   0
 app/code/Magento/Robots/README.md             |   0
 .../Robots/Test/Unit/Block/DataTest.php       |   0
 .../Test/Unit/Controller/Index/IndexTest.php  |   0
 .../Test/Unit/Controller/RouterTest.php       |   0
 .../Test/Unit/Model/Config/ValueTest.php      |   0
 .../Robots/Test/Unit/Model/RobotsTest.php     |   0
 app/code/Magento/Robots/composer.json         |   0
 app/code/Magento/Robots/etc/di.xml            |   0
 app/code/Magento/Robots/etc/frontend/di.xml   |   0
 .../Magento/Robots/etc/frontend/routes.xml    |   0
 app/code/Magento/Robots/etc/module.xml        |   0
 app/code/Magento/Robots/registration.php      |   0
 .../frontend/layout/robots_index_index.xml    |   0
 .../view/frontend/page_layout/robots.xml      |   0
 .../view/frontend/templates/robots.phtml      |   0
 .../Action/Plugin/BackendAuthentication.php   |   0
 app/code/Magento/Rss/Block/Feeds.php          |   0
 .../Magento/Rss/Controller/Adminhtml/Feed.php |   0
 .../Rss/Controller/Adminhtml/Feed/Index.php   |   0
 app/code/Magento/Rss/Controller/Feed.php      |   0
 .../Magento/Rss/Controller/Feed/Index.php     |   0
 app/code/Magento/Rss/Controller/Index.php     |   0
 .../Magento/Rss/Controller/Index/Index.php    |   0
 app/code/Magento/Rss/LICENSE.txt              |   0
 app/code/Magento/Rss/LICENSE_AFL.txt          |   0
 app/code/Magento/Rss/Model/Rss.php            |   0
 app/code/Magento/Rss/Model/RssManager.php     |   0
 .../Rss/Model/System/Config/Backend/Links.php |   0
 app/code/Magento/Rss/Model/UrlBuilder.php     |   0
 app/code/Magento/Rss/README.md                |   0
 .../Plugin/BackendAuthenticationTest.php      |   0
 .../Magento/Rss/Test/Unit/Block/FeedsTest.php |   0
 .../Controller/Adminhtml/Feed/IndexTest.php   |   0
 .../Test/Unit/Controller/Feed/IndexTest.php   |   0
 .../Rss/Test/Unit/Model/RssManagerTest.php    |   0
 .../Magento/Rss/Test/Unit/Model/RssTest.php   |   0
 .../Rss/Test/Unit/Model/UrlBuilderTest.php    |   0
 app/code/Magento/Rss/composer.json            |   0
 app/code/Magento/Rss/etc/acl.xml              |   0
 app/code/Magento/Rss/etc/adminhtml/di.xml     |   0
 app/code/Magento/Rss/etc/adminhtml/routes.xml |   0
 app/code/Magento/Rss/etc/adminhtml/system.xml |   0
 app/code/Magento/Rss/etc/di.xml               |   0
 .../Magento/Rss/etc/frontend/page_types.xml   |   0
 app/code/Magento/Rss/etc/frontend/routes.xml  |   0
 app/code/Magento/Rss/etc/module.xml           |   0
 app/code/Magento/Rss/i18n/en_US.csv           |   0
 app/code/Magento/Rss/registration.php         |   0
 .../Rss/view/frontend/layout/default.xml      |   0
 .../view/frontend/layout/rss_index_index.xml  |   0
 .../Rss/view/frontend/templates/feeds.phtml   |   0
 app/code/Magento/Rule/Block/Actions.php       |   0
 app/code/Magento/Rule/Block/Conditions.php    |   0
 app/code/Magento/Rule/Block/Editable.php      |   0
 app/code/Magento/Rule/Block/Newchild.php      |   0
 app/code/Magento/Rule/Block/Rule.php          |   0
 app/code/Magento/Rule/LICENSE.txt             |   0
 app/code/Magento/Rule/LICENSE_AFL.txt         |   0
 app/code/Magento/Rule/Model/AbstractModel.php |   0
 .../Rule/Model/Action/AbstractAction.php      |   0
 .../Rule/Model/Action/ActionInterface.php     |   0
 .../Magento/Rule/Model/Action/Collection.php  |   0
 app/code/Magento/Rule/Model/ActionFactory.php |   0
 .../Model/Condition/AbstractCondition.php     |   0
 .../Magento/Rule/Model/Condition/Combine.php  |   0
 .../Model/Condition/ConditionInterface.php    |   0
 .../Magento/Rule/Model/Condition/Context.php  |   0
 .../Condition/Product/AbstractProduct.php     |   0
 .../Rule/Model/Condition/Sql/Builder.php      |   0
 .../Rule/Model/Condition/Sql/Expression.php   |   0
 .../Magento/Rule/Model/ConditionFactory.php   |   0
 .../Magento/Rule/Model/Renderer/Actions.php   |   0
 .../Rule/Model/Renderer/Conditions.php        |   0
 .../Model/ResourceModel/AbstractResource.php  |   0
 .../Rule/Collection/AbstractCollection.php    |   0
 app/code/Magento/Rule/README.md               |   0
 .../Test/Unit/Model/AbstractModelTest.php     |   0
 .../Test/Unit/Model/ActionFactoryTest.php     |   0
 .../Model/Condition/AbstractConditionTest.php |   0
 .../Test/Unit/Model/Condition/CombineTest.php |   0
 .../Condition/Product/AbstractProductTest.php |   0
 .../Unit/Model/Condition/Sql/BuilderTest.php  |   0
 .../Model/Condition/Sql/ExpressionTest.php    |   0
 .../Test/Unit/Model/ConditionFactoryTest.php  |   0
 .../Test/Unit/Model/Renderer/ActionsTest.php  |   0
 .../Unit/Model/Renderer/ConditionsTest.php    |   0
 .../Collection/AbstractCollectionTest.php     |   0
 app/code/Magento/Rule/composer.json           |   0
 app/code/Magento/Rule/etc/module.xml          |   0
 app/code/Magento/Rule/i18n/en_US.csv          |   0
 app/code/Magento/Rule/registration.php        |   0
 .../Magento/Rule/view/adminhtml/web/rules.js  |   0
 .../CreditmemoCommentRepositoryInterface.php  |   0
 .../Api/CreditmemoItemRepositoryInterface.php |   0
 .../Api/CreditmemoManagementInterface.php     |   0
 .../Api/CreditmemoRepositoryInterface.php     |   0
 .../Sales/Api/Data/CommentInterface.php       |   0
 .../CreditmemoCommentCreationInterface.php    |   0
 .../Api/Data/CreditmemoCommentInterface.php   |   0
 ...CreditmemoCommentSearchResultInterface.php |   0
 .../CreditmemoCreationArgumentsInterface.php  |   0
 .../Sales/Api/Data/CreditmemoInterface.php    |   0
 .../Data/CreditmemoItemCreationInterface.php  |   0
 .../Api/Data/CreditmemoItemInterface.php      |   0
 .../CreditmemoItemSearchResultInterface.php   |   0
 .../Data/CreditmemoSearchResultInterface.php  |   0
 .../Sales/Api/Data/EntityInterface.php        |   0
 .../Data/InvoiceCommentCreationInterface.php  |   0
 .../Api/Data/InvoiceCommentInterface.php      |   0
 .../InvoiceCommentSearchResultInterface.php   |   0
 .../InvoiceCreationArgumentsInterface.php     |   0
 .../Sales/Api/Data/InvoiceInterface.php       |   0
 .../Api/Data/InvoiceItemCreationInterface.php |   0
 .../Sales/Api/Data/InvoiceItemInterface.php   |   0
 .../Data/InvoiceItemSearchResultInterface.php |   0
 .../Api/Data/InvoiceSearchResultInterface.php |   0
 .../Sales/Api/Data/LineItemInterface.php      |   0
 .../Sales/Api/Data/OrderAddressInterface.php  |   0
 .../OrderAddressSearchResultInterface.php     |   0
 .../Magento/Sales/Api/Data/OrderInterface.php |   0
 .../Sales/Api/Data/OrderItemInterface.php     |   0
 .../Data/OrderItemSearchResultInterface.php   |   0
 .../Sales/Api/Data/OrderPaymentInterface.php  |   0
 .../OrderPaymentSearchResultInterface.php     |   0
 .../Api/Data/OrderSearchResultInterface.php   |   0
 .../Api/Data/OrderStatusHistoryInterface.php  |   0
 ...rderStatusHistorySearchResultInterface.php |   0
 .../Data/ShipmentCommentCreationInterface.php |   0
 .../Api/Data/ShipmentCommentInterface.php     |   0
 .../ShipmentCommentSearchResultInterface.php  |   0
 .../ShipmentCreationArgumentsInterface.php    |   0
 .../Sales/Api/Data/ShipmentInterface.php      |   0
 .../Data/ShipmentItemCreationInterface.php    |   0
 .../Sales/Api/Data/ShipmentItemInterface.php  |   0
 .../ShipmentItemSearchResultInterface.php     |   0
 .../Data/ShipmentPackageCreationInterface.php |   0
 .../Api/Data/ShipmentPackageInterface.php     |   0
 .../Data/ShipmentSearchResultInterface.php    |   0
 .../Data/ShipmentTrackCreationInterface.php   |   0
 .../Sales/Api/Data/ShipmentTrackInterface.php |   0
 .../ShipmentTrackSearchResultInterface.php    |   0
 .../Api/Data/ShippingAssignmentInterface.php  |   0
 .../Sales/Api/Data/ShippingInterface.php      |   0
 .../Magento/Sales/Api/Data/TotalInterface.php |   0
 .../Magento/Sales/Api/Data/TrackInterface.php |   0
 .../Sales/Api/Data/TransactionInterface.php   |   0
 .../Data/TransactionSearchResultInterface.php |   0
 .../CouldNotInvoiceExceptionInterface.php     |   0
 .../CouldNotRefundExceptionInterface.php      |   0
 .../CouldNotShipExceptionInterface.php        |   0
 .../DocumentValidationExceptionInterface.php  |   0
 .../Api/InvoiceCommentRepositoryInterface.php |   0
 .../Api/InvoiceItemRepositoryInterface.php    |   0
 .../Sales/Api/InvoiceManagementInterface.php  |   0
 .../Sales/Api/InvoiceOrderInterface.php       |   0
 .../Sales/Api/InvoiceRepositoryInterface.php  |   0
 .../Api/OrderAddressRepositoryInterface.php   |   0
 .../Api/OrderCustomerManagementInterface.php  |   0
 .../Api/OrderItemRepositoryInterface.php      |   0
 .../Sales/Api/OrderManagementInterface.php    |   0
 .../Api/OrderPaymentRepositoryInterface.php   |   0
 .../Sales/Api/OrderRepositoryInterface.php    |   0
 .../OrderStatusHistoryRepositoryInterface.php |   0
 .../Sales/Api/RefundInvoiceInterface.php      |   0
 .../Sales/Api/RefundOrderInterface.php        |   0
 .../Magento/Sales/Api/ShipOrderInterface.php  |   0
 .../ShipmentCommentRepositoryInterface.php    |   0
 .../Api/ShipmentItemRepositoryInterface.php   |   0
 .../Sales/Api/ShipmentManagementInterface.php |   0
 .../Sales/Api/ShipmentRepositoryInterface.php |   0
 .../Api/ShipmentTrackRepositoryInterface.php  |   0
 .../Api/TransactionRepositoryInterface.php    |   0
 .../Sales/Block/Adminhtml/Creditmemo.php      |   0
 .../Block/Adminhtml/CustomerOrdersTab.php     |   0
 .../Magento/Sales/Block/Adminhtml/Invoice.php |   0
 .../Block/Adminhtml/Items/AbstractItems.php   |   0
 .../Adminhtml/Items/Column/DefaultColumn.php  |   0
 .../Block/Adminhtml/Items/Column/Name.php     |   0
 .../Block/Adminhtml/Items/Column/Qty.php      |   0
 .../Items/Renderer/DefaultRenderer.php        |   0
 .../Magento/Sales/Block/Adminhtml/Order.php   |   0
 .../Block/Adminhtml/Order/AbstractOrder.php   |   0
 .../Sales/Block/Adminhtml/Order/Address.php   |   0
 .../Block/Adminhtml/Order/Address/Form.php    |   0
 .../Block/Adminhtml/Order/Comments/View.php   |   0
 .../Sales/Block/Adminhtml/Order/Create.php    |   0
 .../Adminhtml/Order/Create/AbstractCreate.php |   0
 .../Order/Create/Billing/Address.php          |   0
 .../Adminhtml/Order/Create/Billing/Method.php |   0
 .../Order/Create/Billing/Method/Form.php      |   0
 .../Block/Adminhtml/Order/Create/Comment.php  |   0
 .../Block/Adminhtml/Order/Create/Coupons.php  |   0
 .../Adminhtml/Order/Create/Coupons/Form.php   |   0
 .../Block/Adminhtml/Order/Create/Customer.php |   0
 .../Block/Adminhtml/Order/Create/Data.php     |   0
 .../Block/Adminhtml/Order/Create/Form.php     |   0
 .../Order/Create/Form/AbstractForm.php        |   0
 .../Adminhtml/Order/Create/Form/Account.php   |   0
 .../Adminhtml/Order/Create/Form/Address.php   |   0
 .../Adminhtml/Order/Create/Giftmessage.php    |   0
 .../Order/Create/Giftmessage/Form.php         |   0
 .../Block/Adminhtml/Order/Create/Header.php   |   0
 .../Block/Adminhtml/Order/Create/Items.php    |   0
 .../Adminhtml/Order/Create/Items/Grid.php     |   0
 .../Block/Adminhtml/Order/Create/Load.php     |   0
 .../Block/Adminhtml/Order/Create/Messages.php |   0
 .../Adminhtml/Order/Create/Newsletter.php     |   0
 .../Order/Create/Newsletter/Form.php          |   0
 .../Block/Adminhtml/Order/Create/Search.php   |   0
 .../Adminhtml/Order/Create/Search/Grid.php    |   0
 .../Create/Search/Grid/Renderer/Price.php     |   0
 .../Create/Search/Grid/Renderer/Product.php   |   0
 .../Order/Create/Search/Grid/Renderer/Qty.php |   0
 .../Order/Create/Shipping/Address.php         |   0
 .../Order/Create/Shipping/Method.php          |   0
 .../Order/Create/Shipping/Method/Form.php     |   0
 .../Block/Adminhtml/Order/Create/Sidebar.php  |   0
 .../Order/Create/Sidebar/AbstractSidebar.php  |   0
 .../Adminhtml/Order/Create/Sidebar/Cart.php   |   0
 .../Order/Create/Sidebar/Compared.php         |   0
 .../Order/Create/Sidebar/Pcompared.php        |   0
 .../Order/Create/Sidebar/Pviewed.php          |   0
 .../Order/Create/Sidebar/Reorder.php          |   0
 .../Adminhtml/Order/Create/Sidebar/Viewed.php |   0
 .../Order/Create/Sidebar/Wishlist.php         |   0
 .../Block/Adminhtml/Order/Create/Store.php    |   0
 .../Adminhtml/Order/Create/Store/Select.php   |   0
 .../Block/Adminhtml/Order/Create/Totals.php   |   0
 .../Order/Create/Totals/DefaultTotals.php     |   0
 .../Order/Create/Totals/Discount.php          |   0
 .../Order/Create/Totals/Grandtotal.php        |   0
 .../Order/Create/Totals/Shipping.php          |   0
 .../Order/Create/Totals/Subtotal.php          |   0
 .../Adminhtml/Order/Create/Totals/Table.php   |   0
 .../Adminhtml/Order/Create/Totals/Tax.php     |   0
 .../Adminhtml/Order/Creditmemo/Create.php     |   0
 .../Order/Creditmemo/Create/Adjustments.php   |   0
 .../Order/Creditmemo/Create/Form.php          |   0
 .../Order/Creditmemo/Create/Items.php         |   0
 .../Adminhtml/Order/Creditmemo/Totals.php     |   0
 .../Block/Adminhtml/Order/Creditmemo/View.php |   0
 .../Order/Creditmemo/View/Comments.php        |   0
 .../Adminhtml/Order/Creditmemo/View/Form.php  |   0
 .../Adminhtml/Order/Creditmemo/View/Items.php |   0
 .../Sales/Block/Adminhtml/Order/Details.php   |   0
 .../Block/Adminhtml/Order/Invoice/Create.php  |   0
 .../Adminhtml/Order/Invoice/Create/Form.php   |   0
 .../Adminhtml/Order/Invoice/Create/Items.php  |   0
 .../Block/Adminhtml/Order/Invoice/Totals.php  |   0
 .../Block/Adminhtml/Order/Invoice/View.php    |   0
 .../Adminhtml/Order/Invoice/View/Comments.php |   0
 .../Adminhtml/Order/Invoice/View/Form.php     |   0
 .../Adminhtml/Order/Invoice/View/Items.php    |   0
 .../Sales/Block/Adminhtml/Order/Payment.php   |   0
 .../Sales/Block/Adminhtml/Order/Status.php    |   0
 .../Block/Adminhtml/Order/Status/Assign.php   |   0
 .../Adminhtml/Order/Status/Assign/Form.php    |   0
 .../Block/Adminhtml/Order/Status/Edit.php     |   0
 .../Adminhtml/Order/Status/Edit/Form.php      |   0
 .../Adminhtml/Order/Status/NewStatus.php      |   0
 .../Adminhtml/Order/Status/NewStatus/Form.php |   0
 .../Sales/Block/Adminhtml/Order/Totalbar.php  |   0
 .../Sales/Block/Adminhtml/Order/Totals.php    |   0
 .../Block/Adminhtml/Order/Totals/Item.php     |   0
 .../Block/Adminhtml/Order/Totals/Tax.php      |   0
 .../Sales/Block/Adminhtml/Order/View.php      |   0
 .../Sales/Block/Adminhtml/Order/View/Form.php |   0
 .../Adminhtml/Order/View/Giftmessage.php      |   0
 .../Block/Adminhtml/Order/View/History.php    |   0
 .../Sales/Block/Adminhtml/Order/View/Info.php |   0
 .../Block/Adminhtml/Order/View/Items.php      |   0
 .../View/Items/Renderer/DefaultRenderer.php   |   0
 .../Block/Adminhtml/Order/View/Messages.php   |   0
 .../Adminhtml/Order/View/Tab/Creditmemos.php  |   0
 .../Adminhtml/Order/View/Tab/History.php      |   0
 .../Block/Adminhtml/Order/View/Tab/Info.php   |   0
 .../Adminhtml/Order/View/Tab/Invoices.php     |   0
 .../Adminhtml/Order/View/Tab/Shipments.php    |   0
 .../Adminhtml/Order/View/Tab/Transactions.php |   0
 .../Sales/Block/Adminhtml/Order/View/Tabs.php |   0
 .../Adminhtml/Reorder/Renderer/Action.php     |   0
 .../Block/Adminhtml/Report/Filter/Form.php    |   0
 .../Adminhtml/Report/Filter/Form/Coupon.php   |   0
 .../Adminhtml/Report/Filter/Form/Order.php    |   0
 .../Block/Adminhtml/Rss/Order/Grid/Link.php   |   0
 .../Sales/Block/Adminhtml/Shipment.php        |   0
 .../Config/Form/Fieldset/Order/Statuses.php   |   0
 .../Magento/Sales/Block/Adminhtml/Totals.php  |   0
 .../Sales/Block/Adminhtml/Transactions.php    |   0
 .../Block/Adminhtml/Transactions/Detail.php   |   0
 .../Adminhtml/Transactions/Detail/Grid.php    |   0
 app/code/Magento/Sales/Block/Guest/Link.php   |   0
 .../Sales/Block/Items/AbstractItems.php       |   0
 .../Magento/Sales/Block/Order/Comments.php    |   0
 .../Magento/Sales/Block/Order/Creditmemo.php  |   0
 .../Sales/Block/Order/Creditmemo/Items.php    |   0
 .../Sales/Block/Order/Creditmemo/Totals.php   |   0
 .../Block/Order/Email/Creditmemo/Items.php    |   0
 .../Sales/Block/Order/Email/Invoice/Items.php |   0
 .../Magento/Sales/Block/Order/Email/Items.php |   0
 .../Block/Order/Email/Items/DefaultItems.php  |   0
 .../Order/Email/Items/Order/DefaultOrder.php  |   0
 .../Block/Order/Email/Shipment/Items.php      |   0
 .../Magento/Sales/Block/Order/History.php     |   0
 .../Sales/Block/Order/History/Container.php   |   0
 app/code/Magento/Sales/Block/Order/Info.php   |   0
 .../Sales/Block/Order/Info/Buttons.php        |   0
 .../Sales/Block/Order/Info/Buttons/Rss.php    |   0
 .../Magento/Sales/Block/Order/Invoice.php     |   0
 .../Sales/Block/Order/Invoice/Items.php       |   0
 .../Sales/Block/Order/Invoice/Totals.php      |   0
 .../Order/Item/Renderer/DefaultRenderer.php   |   0
 app/code/Magento/Sales/Block/Order/Items.php  |   0
 app/code/Magento/Sales/Block/Order/Link.php   |   0
 .../Block/Order/PrintOrder/Creditmemo.php     |   0
 .../Sales/Block/Order/PrintOrder/Invoice.php  |   0
 .../Sales/Block/Order/PrintOrder/Shipment.php |   0
 .../Sales/Block/Order/PrintShipment.php       |   0
 app/code/Magento/Sales/Block/Order/Recent.php |   0
 app/code/Magento/Sales/Block/Order/Totals.php |   0
 app/code/Magento/Sales/Block/Order/View.php   |   0
 .../Magento/Sales/Block/Reorder/Sidebar.php   |   0
 .../Sales/Block/Status/Grid/Column/State.php  |   0
 .../Block/Status/Grid/Column/Unassign.php     |   0
 .../Magento/Sales/Block/Widget/Guest/Form.php |   0
 .../AbstractController/Creditmemo.php         |   0
 .../Controller/AbstractController/Invoice.php |   0
 .../AbstractController/OrderLoader.php        |   0
 .../OrderLoaderInterface.php                  |   0
 .../OrderViewAuthorization.php                |   0
 .../OrderViewAuthorizationInterface.php       |   0
 .../AbstractController/PrintAction.php        |   0
 .../AbstractController/PrintCreditmemo.php    |   0
 .../AbstractController/PrintInvoice.php       |   0
 .../AbstractController/PrintShipment.php      |   0
 .../Controller/AbstractController/Reorder.php |   0
 .../AbstractController/Shipment.php           |   0
 .../Controller/AbstractController/View.php    |   0
 .../Creditmemo/AbstractCreditmemo/Email.php   |   0
 .../Creditmemo/AbstractCreditmemo/Grid.php    |   0
 .../Creditmemo/AbstractCreditmemo/Index.php   |   0
 .../AbstractCreditmemo/Pdfcreditmemos.php     |   0
 .../AbstractCreditmemo/PrintAction.php        |   0
 .../Creditmemo/AbstractCreditmemo/View.php    |   0
 .../Controller/Adminhtml/Creditmemo/Email.php |   0
 .../Controller/Adminhtml/Creditmemo/Grid.php  |   0
 .../Controller/Adminhtml/Creditmemo/Index.php |   0
 .../Adminhtml/Creditmemo/Pdfcreditmemos.php   |   0
 .../Adminhtml/Creditmemo/PrintAction.php      |   0
 .../Controller/Adminhtml/Creditmemo/View.php  |   0
 .../Invoice/AbstractInvoice/Email.php         |   0
 .../Invoice/AbstractInvoice/Grid.php          |   0
 .../Invoice/AbstractInvoice/Index.php         |   0
 .../Invoice/AbstractInvoice/Pdfinvoices.php   |   0
 .../Invoice/AbstractInvoice/PrintAction.php   |   0
 .../Invoice/AbstractInvoice/View.php          |   0
 .../Controller/Adminhtml/Invoice/Email.php    |   0
 .../Controller/Adminhtml/Invoice/Grid.php     |   0
 .../Controller/Adminhtml/Invoice/Index.php    |   0
 .../Adminhtml/Invoice/Pdfinvoices.php         |   0
 .../Adminhtml/Invoice/PrintAction.php         |   0
 .../Controller/Adminhtml/Invoice/View.php     |   0
 .../Sales/Controller/Adminhtml/Order.php      |   0
 .../Adminhtml/Order/AbstractMassAction.php    |   0
 .../Controller/Adminhtml/Order/AddComment.php |   0
 .../Controller/Adminhtml/Order/Address.php    |   0
 .../Adminhtml/Order/AddressSave.php           |   0
 .../Controller/Adminhtml/Order/Cancel.php     |   0
 .../Adminhtml/Order/CommentsHistory.php       |   0
 .../Controller/Adminhtml/Order/Create.php     |   0
 .../Adminhtml/Order/Create/AddConfigured.php  |   0
 .../Adminhtml/Order/Create/Cancel.php         |   0
 .../Order/Create/ConfigureProductToAdd.php    |   0
 .../Order/Create/ConfigureQuoteItems.php      |   0
 .../Adminhtml/Order/Create/Index.php          |   0
 .../Adminhtml/Order/Create/LoadBlock.php      |   0
 .../Adminhtml/Order/Create/ProcessData.php    |   0
 .../Adminhtml/Order/Create/Reorder.php        |   0
 .../Adminhtml/Order/Create/Save.php           |   0
 .../Order/Create/ShowUpdateResult.php         |   0
 .../Adminhtml/Order/Create/Start.php          |   0
 .../Adminhtml/Order/Creditmemo/AddComment.php |   0
 .../Adminhtml/Order/Creditmemo/Cancel.php     |   0
 .../Adminhtml/Order/Creditmemo/Email.php      |   0
 .../Adminhtml/Order/Creditmemo/Grid.php       |   0
 .../Adminhtml/Order/Creditmemo/Index.php      |   0
 .../Adminhtml/Order/Creditmemo/NewAction.php  |   0
 .../Order/Creditmemo/Pdfcreditmemos.php       |   0
 .../Order/Creditmemo/PrintAction.php          |   0
 .../Adminhtml/Order/Creditmemo/Save.php       |   0
 .../Adminhtml/Order/Creditmemo/Start.php      |   0
 .../Adminhtml/Order/Creditmemo/UpdateQty.php  |   0
 .../Adminhtml/Order/Creditmemo/View.php       |   0
 .../Adminhtml/Order/Creditmemo/VoidAction.php |   0
 .../Adminhtml/Order/CreditmemoLoader.php      |   0
 .../Adminhtml/Order/Creditmemos.php           |   0
 .../Adminhtml/Order/Edit/AddConfigured.php    |   0
 .../Adminhtml/Order/Edit/Cancel.php           |   0
 .../Order/Edit/ConfigureProductToAdd.php      |   0
 .../Order/Edit/ConfigureQuoteItems.php        |   0
 .../Controller/Adminhtml/Order/Edit/Index.php |   0
 .../Adminhtml/Order/Edit/LoadBlock.php        |   0
 .../Adminhtml/Order/Edit/ProcessData.php      |   0
 .../Adminhtml/Order/Edit/Reorder.php          |   0
 .../Controller/Adminhtml/Order/Edit/Save.php  |   0
 .../Adminhtml/Order/Edit/ShowUpdateResult.php |   0
 .../Controller/Adminhtml/Order/Edit/Start.php |   0
 .../Controller/Adminhtml/Order/Email.php      |   0
 .../Sales/Controller/Adminhtml/Order/Grid.php |   0
 .../Sales/Controller/Adminhtml/Order/Hold.php |   0
 .../Controller/Adminhtml/Order/Index.php      |   0
 .../Adminhtml/Order/Invoice/AddComment.php    |   0
 .../Adminhtml/Order/Invoice/Cancel.php        |   0
 .../Adminhtml/Order/Invoice/Capture.php       |   0
 .../Adminhtml/Order/Invoice/Email.php         |   0
 .../Adminhtml/Order/Invoice/Grid.php          |   0
 .../Adminhtml/Order/Invoice/Index.php         |   0
 .../Adminhtml/Order/Invoice/NewAction.php     |   0
 .../Adminhtml/Order/Invoice/Pdfinvoices.php   |   0
 .../Adminhtml/Order/Invoice/PrintAction.php   |   0
 .../Adminhtml/Order/Invoice/Save.php          |   0
 .../Adminhtml/Order/Invoice/Start.php         |   0
 .../Adminhtml/Order/Invoice/UpdateQty.php     |   0
 .../Adminhtml/Order/Invoice/View.php          |   0
 .../Adminhtml/Order/Invoice/VoidAction.php    |   0
 .../Controller/Adminhtml/Order/Invoices.php   |   0
 .../Controller/Adminhtml/Order/MassCancel.php |   0
 .../Controller/Adminhtml/Order/MassHold.php   |   0
 .../Controller/Adminhtml/Order/MassUnhold.php |   0
 .../Order/PdfDocumentsMassAction.php          |   0
 .../Adminhtml/Order/Pdfcreditmemos.php        |   0
 .../Controller/Adminhtml/Order/Pdfdocs.php    |   0
 .../Adminhtml/Order/Pdfinvoices.php           |   0
 .../Adminhtml/Order/Pdfshipments.php          |   0
 .../Adminhtml/Order/ReviewPayment.php         |   0
 .../Controller/Adminhtml/Order/Shipments.php  |   0
 .../Controller/Adminhtml/Order/Status.php     |   0
 .../Adminhtml/Order/Status/Assign.php         |   0
 .../Adminhtml/Order/Status/AssignPost.php     |   0
 .../Adminhtml/Order/Status/Edit.php           |   0
 .../Adminhtml/Order/Status/Index.php          |   0
 .../Adminhtml/Order/Status/NewAction.php      |   0
 .../Adminhtml/Order/Status/Save.php           |   0
 .../Adminhtml/Order/Status/Unassign.php       |   0
 .../Adminhtml/Order/Transactions.php          |   0
 .../Controller/Adminhtml/Order/Unhold.php     |   0
 .../Sales/Controller/Adminhtml/Order/View.php |   0
 .../Adminhtml/Order/View/Giftmessage.php      |   0
 .../Adminhtml/Order/View/Giftmessage/Save.php |   0
 .../Adminhtml/Order/VoidPayment.php           |   0
 .../Shipment/AbstractShipment/Index.php       |   0
 .../AbstractShipment/Pdfshipments.php         |   0
 .../Shipment/AbstractShipment/PrintAction.php |   0
 .../Shipment/AbstractShipment/View.php        |   0
 .../Controller/Adminhtml/Shipment/Index.php   |   0
 .../Adminhtml/Shipment/Pdfshipments.php       |   0
 .../Adminhtml/Shipment/PrintAction.php        |   0
 .../Controller/Adminhtml/Shipment/View.php    |   0
 .../Controller/Adminhtml/Transactions.php     |   0
 .../Adminhtml/Transactions/Fetch.php          |   0
 .../Adminhtml/Transactions/Grid.php           |   0
 .../Adminhtml/Transactions/Index.php          |   0
 .../Adminhtml/Transactions/View.php           |   0
 .../Download/DownloadCustomOption.php         |   0
 .../Sales/Controller/Guest/Creditmemo.php     |   0
 .../Magento/Sales/Controller/Guest/Form.php   |   0
 .../Sales/Controller/Guest/Invoice.php        |   0
 .../Sales/Controller/Guest/OrderLoader.php    |   0
 .../Guest/OrderViewAuthorization.php          |   0
 .../Sales/Controller/Guest/PrintAction.php    |   0
 .../Controller/Guest/PrintCreditmemo.php      |   0
 .../Sales/Controller/Guest/PrintInvoice.php   |   0
 .../Sales/Controller/Guest/PrintShipment.php  |   0
 .../Sales/Controller/Guest/Reorder.php        |   0
 .../Sales/Controller/Guest/Shipment.php       |   0
 .../Magento/Sales/Controller/Guest/View.php   |   0
 .../Sales/Controller/Order/Creditmemo.php     |   0
 .../Sales/Controller/Order/History.php        |   0
 .../Sales/Controller/Order/Invoice.php        |   0
 .../Order/Plugin/Authentication.php           |   0
 .../Sales/Controller/Order/PrintAction.php    |   0
 .../Controller/Order/PrintCreditmemo.php      |   0
 .../Sales/Controller/Order/PrintInvoice.php   |   0
 .../Sales/Controller/Order/PrintShipment.php  |   0
 .../Sales/Controller/Order/Reorder.php        |   0
 .../Sales/Controller/Order/Shipment.php       |   0
 .../Magento/Sales/Controller/Order/View.php   |   0
 .../Sales/Controller/OrderInterface.php       |   0
 .../Magento/Sales/Cron/CleanExpiredQuotes.php |   0
 .../Magento/Sales/Cron/GridAsyncInsert.php    |   0
 app/code/Magento/Sales/Cron/SendEmails.php    |   0
 .../Sales/CustomerData/LastOrderedItems.php   |   0
 .../Exception/CouldNotInvoiceException.php    |   0
 .../Exception/CouldNotRefundException.php     |   0
 .../Sales/Exception/CouldNotShipException.php |   0
 .../Exception/DocumentValidationException.php |   0
 app/code/Magento/Sales/Helper/Admin.php       |   0
 app/code/Magento/Sales/Helper/Data.php        |   0
 app/code/Magento/Sales/Helper/Guest.php       |   0
 app/code/Magento/Sales/Helper/Reorder.php     |   0
 app/code/Magento/Sales/LICENSE.txt            |   0
 app/code/Magento/Sales/LICENSE_AFL.txt        |   0
 .../Magento/Sales/Model/AbstractModel.php     |   0
 .../Magento/Sales/Model/AbstractNotifier.php  |   0
 .../Magento/Sales/Model/AdminOrder/Create.php |   0
 .../Sales/Model/AdminOrder/EmailSender.php    |   0
 .../AdminOrder/Product/Quote/Initializer.php  |   0
 app/code/Magento/Sales/Model/Config.php       |   0
 .../Config/Backend/Email/AsyncSending.php     |   0
 .../Config/Backend/Grid/AsyncIndexing.php     |   0
 .../Magento/Sales/Model/Config/Converter.php  |   0
 app/code/Magento/Sales/Model/Config/Data.php  |   0
 .../Magento/Sales/Model/Config/Ordered.php    |   0
 .../Magento/Sales/Model/Config/Reader.php     |   0
 .../Sales/Model/Config/SchemaLocator.php      |   0
 .../Model/Config/Source/Order/Status.php      |   0
 .../Config/Source/Order/Status/NewStatus.php  |   0
 .../Source/Order/Status/Newprocessing.php     |   0
 .../Config/Source/Order/Status/Processing.php |   0
 .../Magento/Sales/Model/ConfigInterface.php   |   0
 .../Magento/Sales/Model/Convert/Order.php     |   0
 .../AggregateSalesReportBestsellersData.php   |   0
 .../AggregateSalesReportInvoicedData.php      |   0
 .../CronJob/AggregateSalesReportOrderData.php |   0
 .../AggregateSalesReportRefundedData.php      |   0
 .../Model/CronJob/CleanExpiredOrders.php      |   0
 .../Sales/Model/CustomerGroupRetriever.php    |   0
 app/code/Magento/Sales/Model/Download.php     |   0
 .../Sales/Model/EmailSenderHandler.php        |   0
 .../Magento/Sales/Model/EntityInterface.php   |   0
 .../Magento/Sales/Model/EntityStorage.php     |   0
 .../Model/Grid/Child/CollectionUpdater.php    |   0
 .../Sales/Model/Grid/CollectionUpdater.php    |   0
 .../Magento/Sales/Model/GridAsyncInsert.php   |   0
 app/code/Magento/Sales/Model/Increment.php    |   0
 app/code/Magento/Sales/Model/InvoiceOrder.php |   0
 app/code/Magento/Sales/Model/Order.php        |   0
 .../Magento/Sales/Model/Order/Address.php     |   0
 .../Sales/Model/Order/Address/Renderer.php    |   0
 .../Sales/Model/Order/Address/Validator.php   |   0
 .../Sales/Model/Order/AddressRepository.php   |   0
 .../Magento/Sales/Model/Order/Admin/Item.php  |   0
 app/code/Magento/Sales/Model/Order/Config.php |   0
 .../Magento/Sales/Model/Order/Creditmemo.php  |   0
 .../Sales/Model/Order/Creditmemo/Comment.php  |   0
 .../Order/Creditmemo/Comment/Validator.php    |   0
 .../Order/Creditmemo/CommentCreation.php      |   0
 .../Order/Creditmemo/CommentRepository.php    |   0
 .../Sales/Model/Order/Creditmemo/Config.php   |   0
 .../Order/Creditmemo/CreationArguments.php    |   0
 .../Order/Creditmemo/CreditmemoValidator.php  |   0
 .../CreditmemoValidatorInterface.php          |   0
 .../Sales/Model/Order/Creditmemo/Item.php     |   0
 .../Validation/CreationQuantityValidator.php  |   0
 .../Model/Order/Creditmemo/ItemCreation.php   |   0
 .../Creditmemo/ItemCreationValidator.php      |   0
 .../ItemCreationValidatorInterface.php        |   0
 .../Model/Order/Creditmemo/ItemRepository.php |   0
 .../Sales/Model/Order/Creditmemo/Notifier.php |   0
 .../Order/Creditmemo/NotifierInterface.php    |   0
 .../Order/Creditmemo/RefundOperation.php      |   0
 .../Order/Creditmemo/Sender/EmailSender.php   |   0
 .../Order/Creditmemo/SenderInterface.php      |   0
 .../Order/Creditmemo/Total/AbstractTotal.php  |   0
 .../Model/Order/Creditmemo/Total/Cost.php     |   0
 .../Model/Order/Creditmemo/Total/Discount.php |   0
 .../Model/Order/Creditmemo/Total/Grand.php    |   0
 .../Model/Order/Creditmemo/Total/Shipping.php |   0
 .../Model/Order/Creditmemo/Total/Subtotal.php |   0
 .../Model/Order/Creditmemo/Total/Tax.php      |   0
 .../Validation/QuantityValidator.php          |   0
 .../Creditmemo/Validation/TotalsValidator.php |   0
 .../Model/Order/CreditmemoDocumentFactory.php |   0
 .../Sales/Model/Order/CreditmemoFactory.php   |   0
 .../Sales/Model/Order/CreditmemoNotifier.php  |   0
 .../Model/Order/CreditmemoRepository.php      |   0
 .../Sales/Model/Order/CustomerManagement.php  |   0
 .../Model/Order/Email/Container/Container.php |   0
 .../Container/CreditmemoCommentIdentity.php   |   0
 .../Email/Container/CreditmemoIdentity.php    |   0
 .../Email/Container/IdentityInterface.php     |   0
 .../Container/InvoiceCommentIdentity.php      |   0
 .../Order/Email/Container/InvoiceIdentity.php |   0
 .../Email/Container/OrderCommentIdentity.php  |   0
 .../Order/Email/Container/OrderIdentity.php   |   0
 .../Container/ShipmentCommentIdentity.php     |   0
 .../Email/Container/ShipmentIdentity.php      |   0
 .../Model/Order/Email/Container/Template.php  |   0
 .../Sales/Model/Order/Email/NotifySender.php  |   0
 .../Sales/Model/Order/Email/Sender.php        |   0
 .../Email/Sender/CreditmemoCommentSender.php  |   0
 .../Order/Email/Sender/CreditmemoSender.php   |   0
 .../Email/Sender/InvoiceCommentSender.php     |   0
 .../Order/Email/Sender/InvoiceSender.php      |   0
 .../Order/Email/Sender/OrderCommentSender.php |   0
 .../Model/Order/Email/Sender/OrderSender.php  |   0
 .../Email/Sender/ShipmentCommentSender.php    |   0
 .../Order/Email/Sender/ShipmentSender.php     |   0
 .../Sales/Model/Order/Email/SenderBuilder.php |   0
 .../Order/Grid/Massaction/ItemsUpdater.php    |   0
 .../Model/Order/Grid/Row/UrlGenerator.php     |   0
 .../Magento/Sales/Model/Order/Invoice.php     |   0
 .../Sales/Model/Order/Invoice/Comment.php     |   0
 .../Model/Order/Invoice/Comment/Validator.php |   0
 .../Model/Order/Invoice/CommentCreation.php   |   0
 .../Model/Order/Invoice/CommentRepository.php |   0
 .../Sales/Model/Order/Invoice/Config.php      |   0
 .../Model/Order/Invoice/CreationArguments.php |   0
 .../Order/Invoice/Grid/Row/UrlGenerator.php   |   0
 .../Model/Order/Invoice/InvoiceValidator.php  |   0
 .../Invoice/InvoiceValidatorInterface.php     |   0
 .../Sales/Model/Order/Invoice/Item.php        |   0
 .../Model/Order/Invoice/ItemCreation.php      |   0
 .../Model/Order/Invoice/ItemRepository.php    |   0
 .../Sales/Model/Order/Invoice/Notifier.php    |   0
 .../Model/Order/Invoice/NotifierInterface.php |   0
 .../Model/Order/Invoice/PayOperation.php      |   0
 .../Order/Invoice/Plugin/AddressUpdate.php    |   0
 .../Order/Invoice/Sender/EmailSender.php      |   0
 .../Model/Order/Invoice/SenderInterface.php   |   0
 .../Order/Invoice/Total/AbstractTotal.php     |   0
 .../Sales/Model/Order/Invoice/Total/Cost.php  |   0
 .../Model/Order/Invoice/Total/Discount.php    |   0
 .../Sales/Model/Order/Invoice/Total/Grand.php |   0
 .../Model/Order/Invoice/Total/Shipping.php    |   0
 .../Model/Order/Invoice/Total/Subtotal.php    |   0
 .../Sales/Model/Order/Invoice/Total/Tax.php   |   0
 .../Order/Invoice/Validation/CanRefund.php    |   0
 .../Model/Order/InvoiceDocumentFactory.php    |   0
 .../Sales/Model/Order/InvoiceNotifier.php     |   0
 .../Model/Order/InvoiceQuantityValidator.php  |   0
 .../Sales/Model/Order/InvoiceRepository.php   |   0
 .../Model/Order/InvoiceStatisticInterface.php |   0
 app/code/Magento/Sales/Model/Order/Item.php   |   0
 .../Sales/Model/Order/ItemRepository.php      |   0
 .../Order/OrderStateResolverInterface.php     |   0
 .../Sales/Model/Order/OrderValidator.php      |   0
 .../Model/Order/OrderValidatorInterface.php   |   0
 .../Magento/Sales/Model/Order/Payment.php     |   0
 .../Sales/Model/Order/Payment/Info.php        |   0
 .../Payment/Operations/AbstractOperation.php  |   0
 .../Payment/Operations/AuthorizeOperation.php |   0
 .../Payment/Operations/CaptureOperation.php   |   0
 .../Payment/Operations/OrderOperation.php     |   0
 .../RegisterCaptureNotificationOperation.php  |   0
 .../Sales/Model/Order/Payment/Processor.php   |   0
 .../Sales/Model/Order/Payment/Repository.php  |   0
 .../Order/Payment/State/AuthorizeCommand.php  |   0
 .../Order/Payment/State/CaptureCommand.php    |   0
 .../Order/Payment/State/CommandInterface.php  |   0
 .../Order/Payment/State/OrderCommand.php      |   0
 .../RegisterCaptureNotificationCommand.php    |   0
 .../Sales/Model/Order/Payment/Transaction.php |   0
 .../Order/Payment/Transaction/Builder.php     |   0
 .../Payment/Transaction/BuilderInterface.php  |   0
 .../Order/Payment/Transaction/Manager.php     |   0
 .../Payment/Transaction/ManagerInterface.php  |   0
 .../Order/Payment/Transaction/Repository.php  |   0
 .../Sales/Model/Order/PaymentAdapter.php      |   0
 .../Model/Order/PaymentAdapterInterface.php   |   0
 .../Sales/Model/Order/Pdf/AbstractPdf.php     |   0
 .../Magento/Sales/Model/Order/Pdf/Config.php  |   0
 .../Model/Order/Pdf/Config/Converter.php      |   0
 .../Sales/Model/Order/Pdf/Config/Reader.php   |   0
 .../Model/Order/Pdf/Config/SchemaLocator.php  |   0
 .../Sales/Model/Order/Pdf/Creditmemo.php      |   0
 .../Magento/Sales/Model/Order/Pdf/Invoice.php |   0
 .../Model/Order/Pdf/Items/AbstractItems.php   |   0
 .../Items/Creditmemo/DefaultCreditmemo.php    |   0
 .../Pdf/Items/Invoice/DefaultInvoice.php      |   0
 .../Pdf/Items/Shipment/DefaultShipment.php    |   0
 .../Sales/Model/Order/Pdf/ItemsFactory.php    |   0
 .../Sales/Model/Order/Pdf/Shipment.php        |   0
 .../Model/Order/Pdf/Total/DefaultTotal.php    |   0
 .../Sales/Model/Order/Pdf/Total/Factory.php   |   0
 .../Sales/Model/Order/RefundAdapter.php       |   0
 .../Model/Order/RefundAdapterInterface.php    |   0
 .../OrderedProductAvailabilityChecker.php     |   0
 ...redProductAvailabilityCheckerInterface.php |   0
 .../Reorder/UnavailableProductsProvider.php   |   0
 .../Magento/Sales/Model/Order/Shipment.php    |   0
 .../Sales/Model/Order/Shipment/Comment.php    |   0
 .../Order/Shipment/Comment/Validator.php      |   0
 .../Model/Order/Shipment/CommentCreation.php  |   0
 .../Order/Shipment/CommentRepository.php      |   0
 .../Order/Shipment/CreationArguments.php      |   0
 .../Sales/Model/Order/Shipment/Item.php       |   0
 .../Model/Order/Shipment/ItemCreation.php     |   0
 .../Model/Order/Shipment/ItemRepository.php   |   0
 .../Sales/Model/Order/Shipment/Notifier.php   |   0
 .../Order/Shipment/NotifierInterface.php      |   0
 .../Model/Order/Shipment/OrderRegistrar.php   |   0
 .../Shipment/OrderRegistrarInterface.php      |   0
 .../Sales/Model/Order/Shipment/Package.php    |   0
 .../Model/Order/Shipment/PackageCreation.php  |   0
 .../Order/Shipment/Sender/EmailSender.php     |   0
 .../Model/Order/Shipment/SenderInterface.php  |   0
 .../Order/Shipment/ShipmentValidator.php      |   0
 .../Shipment/ShipmentValidatorInterface.php   |   0
 .../Sales/Model/Order/Shipment/Track.php      |   0
 .../Model/Order/Shipment/Track/Validator.php  |   0
 .../Model/Order/Shipment/TrackCreation.php    |   0
 .../Model/Order/Shipment/TrackRepository.php  |   0
 .../Shipment/Validation/QuantityValidator.php |   0
 .../Shipment/Validation/TrackValidator.php    |   0
 .../Model/Order/ShipmentDocumentFactory.php   |   0
 .../Sales/Model/Order/ShipmentFactory.php     |   0
 .../Sales/Model/Order/ShipmentRepository.php  |   0
 .../Magento/Sales/Model/Order/Shipping.php    |   0
 .../Sales/Model/Order/ShippingAssignment.php  |   0
 .../Model/Order/ShippingAssignmentBuilder.php |   0
 .../Sales/Model/Order/ShippingBuilder.php     |   0
 .../Sales/Model/Order/ShippingTotal.php       |   0
 .../Sales/Model/Order/StateResolver.php       |   0
 app/code/Magento/Sales/Model/Order/Status.php |   0
 .../Sales/Model/Order/Status/History.php      |   0
 .../Model/Order/Status/History/Validator.php  |   0
 .../Model/Order/Status/HistoryRepository.php  |   0
 .../Sales/Model/Order/StatusResolver.php      |   0
 app/code/Magento/Sales/Model/Order/Tax.php    |   0
 .../Magento/Sales/Model/Order/Tax/Item.php    |   0
 app/code/Magento/Sales/Model/Order/Total.php  |   0
 .../Sales/Model/Order/Total/AbstractTotal.php |   0
 .../Sales/Model/Order/Total/Config/Base.php   |   0
 .../Sales/Model/Order/TotalFactory.php        |   0
 .../Model/Order/Validation/CanInvoice.php     |   0
 .../Model/Order/Validation/CanRefund.php      |   0
 .../Sales/Model/Order/Validation/CanShip.php  |   0
 .../Model/Order/Validation/InvoiceOrder.php   |   0
 .../Validation/InvoiceOrderInterface.php      |   0
 .../Model/Order/Validation/RefundInvoice.php  |   0
 .../Validation/RefundInvoiceInterface.php     |   0
 .../Model/Order/Validation/RefundOrder.php    |   0
 .../Order/Validation/RefundOrderInterface.php |   0
 .../Model/Order/Validation/ShipOrder.php      |   0
 .../Order/Validation/ShipOrderInterface.php   |   0
 .../Sales/Model/OrderIncrementIdChecker.php   |   0
 .../Magento/Sales/Model/OrderNotifier.php     |   0
 .../Magento/Sales/Model/OrderRepository.php   |   0
 .../Magento/Sales/Model/RefundInvoice.php     |   0
 app/code/Magento/Sales/Model/RefundOrder.php  |   0
 .../Model/ResourceModel/AbstractGrid.php      |   0
 .../Sales/Model/ResourceModel/Attribute.php   |   0
 .../Collection/AbstractCollection.php         |   0
 .../Model/ResourceModel/EntityAbstract.php    |   0
 .../Sales/Model/ResourceModel/Grid.php        |   0
 .../Model/ResourceModel/Grid/Collection.php   |   0
 .../Model/ResourceModel/GridInterface.php     |   0
 .../Sales/Model/ResourceModel/GridPool.php    |   0
 .../Sales/Model/ResourceModel/Helper.php      |   0
 .../Model/ResourceModel/HelperInterface.php   |   0
 .../Sales/Model/ResourceModel/Metadata.php    |   0
 .../Sales/Model/ResourceModel/Order.php       |   0
 .../Model/ResourceModel/Order/Address.php     |   0
 .../Order/Address/Collection.php              |   0
 .../Order/Attribute/Backend/Billing.php       |   0
 .../Order/Attribute/Backend/Child.php         |   0
 .../Order/Attribute/Backend/Shipping.php      |   0
 .../Model/ResourceModel/Order/Collection.php  |   0
 .../Order/Collection/AbstractCollection.php   |   0
 .../Order/Collection/Factory.php              |   0
 .../ResourceModel/Order/CollectionFactory.php |   0
 .../Order/CollectionFactoryInterface.php      |   0
 .../Comment/Collection/AbstractCollection.php |   0
 .../Model/ResourceModel/Order/Creditmemo.php  |   0
 .../Creditmemo/Attribute/Backend/Child.php    |   0
 .../Order/Creditmemo/Collection.php           |   0
 .../Order/Creditmemo/Comment.php              |   0
 .../Order/Creditmemo/Comment/Collection.php   |   0
 .../Order/Creditmemo/Grid/Collection.php      |   0
 .../Order/Creditmemo/Grid/StatusList.php      |   0
 .../ResourceModel/Order/Creditmemo/Item.php   |   0
 .../Order/Creditmemo/Item/Collection.php      |   0
 .../Creditmemo/Order/Grid/Collection.php      |   0
 .../Order/Creditmemo/Relation.php             |   0
 .../Order/Creditmemo/Relation/Refund.php      |   0
 .../Order/Customer/Collection.php             |   0
 .../ResourceModel/Order/Grid/Collection.php   |   0
 .../ResourceModel/Order/Handler/Address.php   |   0
 .../ResourceModel/Order/Handler/State.php     |   0
 .../Model/ResourceModel/Order/Invoice.php     |   0
 .../Order/Invoice/Attribute/Backend/Child.php |   0
 .../Order/Invoice/Attribute/Backend/Item.php  |   0
 .../Order/Invoice/Attribute/Backend/Order.php |   0
 .../Order/Invoice/Collection.php              |   0
 .../ResourceModel/Order/Invoice/Comment.php   |   0
 .../Order/Invoice/Comment/Collection.php      |   0
 .../Order/Invoice/Grid/Collection.php         |   0
 .../Order/Invoice/Grid/StatusList.php         |   0
 .../ResourceModel/Order/Invoice/Item.php      |   0
 .../Order/Invoice/Item/Collection.php         |   0
 .../Order/Invoice/Orders/Grid/Collection.php  |   0
 .../ResourceModel/Order/Invoice/Relation.php  |   0
 .../Sales/Model/ResourceModel/Order/Item.php  |   0
 .../ResourceModel/Order/Item/Collection.php   |   0
 .../Model/ResourceModel/Order/Payment.php     |   0
 .../Order/Payment/Collection.php              |   0
 .../Order/Payment/Transaction.php             |   0
 .../Order/Payment/Transaction/Collection.php  |   0
 .../Order/Plugin/Authorization.php            |   0
 .../Model/ResourceModel/Order/Relation.php    |   0
 .../ResourceModel/Order/Rss/OrderStatus.php   |   0
 .../Model/ResourceModel/Order/Shipment.php    |   0
 .../Shipment/Attribute/Backend/Child.php      |   0
 .../Order/Shipment/Collection.php             |   0
 .../ResourceModel/Order/Shipment/Comment.php  |   0
 .../Order/Shipment/Comment/Collection.php     |   0
 .../Order/Shipment/Grid/Collection.php        |   0
 .../ResourceModel/Order/Shipment/Item.php     |   0
 .../Order/Shipment/Item/Collection.php        |   0
 .../Order/Shipment/Order/Grid/Collection.php  |   0
 .../ResourceModel/Order/Shipment/Relation.php |   0
 .../ResourceModel/Order/Shipment/Track.php    |   0
 .../Order/Shipment/Track/Collection.php       |   0
 .../Model/ResourceModel/Order/Status.php      |   0
 .../ResourceModel/Order/Status/Collection.php |   0
 .../ResourceModel/Order/Status/History.php    |   0
 .../Order/Status/History/Collection.php       |   0
 .../Sales/Model/ResourceModel/Order/Tax.php   |   0
 .../ResourceModel/Order/Tax/Collection.php    |   0
 .../Model/ResourceModel/Order/Tax/Item.php    |   0
 .../Provider/NotSyncedDataProvider.php        |   0
 .../NotSyncedDataProviderInterface.php        |   0
 .../Provider/UpdatedAtListProvider.php        |   0
 .../Provider/UpdatedIdListProvider.php        |   0
 .../Sales/Model/ResourceModel/Report.php      |   0
 .../ResourceModel/Report/AbstractReport.php   |   0
 .../ResourceModel/Report/Bestsellers.php      |   0
 .../Report/Bestsellers/Collection.php         |   0
 .../Report/Collection/AbstractCollection.php  |   0
 .../Model/ResourceModel/Report/Invoiced.php   |   0
 .../Report/Invoiced/Collection/Invoiced.php   |   0
 .../Report/Invoiced/Collection/Order.php      |   0
 .../Model/ResourceModel/Report/Order.php      |   0
 .../ResourceModel/Report/Order/Collection.php |   0
 .../ResourceModel/Report/Order/Createdat.php  |   0
 .../ResourceModel/Report/Order/Updatedat.php  |   0
 .../Report/Order/Updatedat/Collection.php     |   0
 .../Model/ResourceModel/Report/Refunded.php   |   0
 .../Report/Refunded/Collection/Order.php      |   0
 .../Report/Refunded/Collection/Refunded.php   |   0
 .../Model/ResourceModel/Report/Shipping.php   |   0
 .../Report/Shipping/Collection/Order.php      |   0
 .../Report/Shipping/Collection/Shipment.php   |   0
 .../Model/ResourceModel/Sale/Collection.php   |   0
 .../Model/ResourceModel/Status/Collection.php |   0
 .../Transaction/Grid/Collection.php           |   0
 .../Transaction/Grid/TypeList.php             |   0
 app/code/Magento/Sales/Model/Rss/NewOrder.php |   0
 .../Magento/Sales/Model/Rss/OrderStatus.php   |   0
 .../Sales/Model/Service/CreditmemoService.php |   0
 .../Sales/Model/Service/InvoiceService.php    |   0
 .../Sales/Model/Service/OrderService.php      |   0
 .../Sales/Model/Service/ShipmentService.php   |   0
 app/code/Magento/Sales/Model/ShipOrder.php    |   0
 .../CreditmemoCommentResourceInterface.php    |   0
 .../Spi/CreditmemoItemResourceInterface.php   |   0
 .../Model/Spi/CreditmemoResourceInterface.php |   0
 .../Spi/InvoiceCommentResourceInterface.php   |   0
 .../Spi/InvoiceItemResourceInterface.php      |   0
 .../Model/Spi/InvoiceResourceInterface.php    |   0
 .../Spi/OrderAddressResourceInterface.php     |   0
 .../Model/Spi/OrderItemResourceInterface.php  |   0
 .../Spi/OrderPaymentResourceInterface.php     |   0
 .../Model/Spi/OrderResourceInterface.php      |   0
 .../OrderStatusHistoryResourceInterface.php   |   0
 .../Spi/ShipmentCommentResourceInterface.php  |   0
 .../Spi/ShipmentItemResourceInterface.php     |   0
 .../Model/Spi/ShipmentResourceInterface.php   |   0
 .../Spi/ShipmentTrackResourceInterface.php    |   0
 .../Spi/TransactionResourceInterface.php      |   0
 .../Sales/Model/Status/ListFactory.php        |   0
 .../Magento/Sales/Model/Status/ListStatus.php |   0
 app/code/Magento/Sales/Model/Validator.php    |   0
 .../Sales/Model/ValidatorInterface.php        |   0
 .../Magento/Sales/Model/ValidatorResult.php   |   0
 .../Sales/Model/ValidatorResultInterface.php  |   0
 .../Sales/Model/ValidatorResultMerger.php     |   0
 .../Observer/Backend/CatalogPriceRule.php     |   0
 .../CatalogProductSaveAfterObserver.php       |   0
 .../Backend/SubtractQtyFromQuotesObserver.php |   0
 .../AddVatRequestParamsOrderComment.php       |   0
 .../Frontend/RestoreCustomerGroupId.php       |   0
 .../Observer/GridAsyncInsertObserver.php      |   0
 .../Observer/GridProcessAddressChange.php     |   0
 .../Sales/Observer/GridSyncInsertObserver.php |   0
 .../Sales/Observer/GridSyncRemoveObserver.php |   0
 .../Sales/Observer/Virtual/SendEmails.php     |   0
 app/code/Magento/Sales/README.md              |   0
 app/code/Magento/Sales/Setup/InstallData.php  |   0
 .../Magento/Sales/Setup/InstallSchema.php     |   0
 .../Setup/SalesOrderPaymentDataConverter.php  |   0
 app/code/Magento/Sales/Setup/SalesSetup.php   |   0
 .../Sales/Setup/SerializedDataConverter.php   |   0
 app/code/Magento/Sales/Setup/UpgradeData.php  |   0
 .../Magento/Sales/Setup/UpgradeSchema.php     |   0
 .../Adminhtml/Items/AbstractItemsTest.php     |   0
 .../Block/Adminhtml/Items/AbstractTest.php    |   0
 .../Items/Column/DefaultColumnTest.php        |   0
 .../Adminhtml/Order/Address/FormTest.php      |   0
 .../Adminhtml/Order/Comments/ViewTest.php     |   0
 .../Order/Create/AbstractCreateTest.php       |   0
 .../Adminhtml/Order/Create/CustomerTest.php   |   0
 .../Adminhtml/Order/Create/Items/GridTest.php |   0
 .../Create/Search/Grid/Renderer/QtyTest.php   |   0
 .../Create/Sidebar/AbstractSidebarTest.php    |   0
 .../Adminhtml/Order/Create/TotalsTest.php     |   0
 .../Order/Creditmemo/Create/ItemsTest.php     |   0
 .../Adminhtml/Order/Invoice/ViewTest.php      |   0
 .../Order/Status/Assign/FormTest.php          |   0
 .../Block/Adminhtml/Order/Totals/TaxTest.php  |   0
 .../Adminhtml/Order/View/GiftmessageTest.php  |   0
 .../Adminhtml/Order/View/HistoryTest.php      |   0
 .../Block/Adminhtml/Order/View/InfoTest.php   |   0
 .../Adminhtml/Order/View/Tab/HistoryTest.php  |   0
 .../Order/View/Tab/Stub/OnlineMethod.php      |   0
 .../Order/View/Tab/TransactionsTest.php       |   0
 .../Adminhtml/Rss/Order/Grid/LinkTest.php     |   0
 .../Sales/Test/Unit/Block/Guest/LinkTest.php  |   0
 .../Test/Unit/Block/Items/AbstractTest.php    |   0
 .../Unit/Block/Order/Create/TotalsTest.php    |   0
 .../Order/Email/Items/DefaultItemsTest.php    |   0
 .../Email/Items/Order/DefaultOrderTest.php    |   0
 .../Test/Unit/Block/Order/HistoryTest.php     |   0
 .../Unit/Block/Order/Info/Buttons/RssTest.php |   0
 .../Item/Renderer/DefaultRendererTest.php     |   0
 .../Unit/Block/Order/PrintShipmentTest.php    |   0
 .../Test/Unit/Block/Order/RecentTest.php      |   0
 .../Test/Unit/Block/Reorder/SidebarTest.php   |   0
 .../Block/Status/Grid/Column/StateTest.php    |   0
 .../AbstractCreditmemo/EmailTest.php          |   0
 .../Invoice/AbstractInvoice/EmailTest.php     |   0
 .../Controller/Adminhtml/Order/CancelTest.php |   0
 .../Order/Create/ProcessDataTest.php          |   0
 .../Adminhtml/Order/Create/ReorderTest.php    |   0
 .../Order/Creditmemo/AddCommentTest.php       |   0
 .../Adminhtml/Order/Creditmemo/CancelTest.php |   0
 .../Order/Creditmemo/NewActionTest.php        |   0
 .../Order/Creditmemo/PrintActionTest.php      |   0
 .../Adminhtml/Order/Creditmemo/SaveTest.php   |   0
 .../Order/Creditmemo/UpdateQtyTest.php        |   0
 .../Adminhtml/Order/Creditmemo/ViewTest.php   |   0
 .../Order/Creditmemo/VoidActionTest.php       |   0
 .../Adminhtml/Order/CreditmemoLoaderTest.php  |   0
 .../Controller/Adminhtml/Order/EmailTest.php  |   0
 .../Controller/Adminhtml/Order/HoldTest.php   |   0
 .../Order/Invoice/AddCommentTest.php          |   0
 .../Adminhtml/Order/Invoice/CancelTest.php    |   0
 .../Adminhtml/Order/Invoice/CaptureTest.php   |   0
 .../Adminhtml/Order/Invoice/NewActionTest.php |   0
 .../Order/Invoice/PrintActionTest.php         |   0
 .../Adminhtml/Order/Invoice/SaveTest.php      |   0
 .../Adminhtml/Order/Invoice/UpdateQtyTest.php |   0
 .../Adminhtml/Order/Invoice/ViewTest.php      |   0
 .../Order/Invoice/VoidActionTest.php          |   0
 .../Adminhtml/Order/MassCancelTest.php        |   0
 .../Adminhtml/Order/MassHoldTest.php          |   0
 .../Adminhtml/Order/MassUnholdTest.php        |   0
 .../Adminhtml/Order/ReviewPaymentTest.php     |   0
 .../Controller/Adminhtml/Order/UnholdTest.php |   0
 .../Controller/Adminhtml/Order/ViewTest.php   |   0
 .../Adminhtml/PdfDocumentsMassActionTest.php  |   0
 .../Download/DownloadCustomOptionTest.php     |   0
 .../Test/Unit/Controller/Guest/ViewTest.php   |   0
 .../Test/Unit/Cron/CleanExpiredQuotesTest.php |   0
 .../CustomerData/LastOrderedItemsTest.php     |   0
 .../Sales/Test/Unit/Helper/AdminTest.php      |   0
 .../Sales/Test/Unit/Helper/DataTest.php       |   0
 .../Sales/Test/Unit/Helper/GuestTest.php      |   0
 .../Sales/Test/Unit/Helper/ReorderTest.php    |   0
 .../Test/Unit/Model/AbstractModelTest.php     |   0
 .../Test/Unit/Model/AdminOrder/CreateTest.php |   0
 .../Unit/Model/AdminOrder/EmailSenderTest.php |   0
 .../Product/Quote/InitializerTest.php         |   0
 .../Config/Backend/Email/AsyncSendingTest.php |   0
 .../Config/Backend/Grid/AsyncIndexingTest.php |   0
 .../Test/Unit/Model/Config/ConverterTest.php  |   0
 .../Sales/Test/Unit/Model/Config/DataTest.php |   0
 .../Test/Unit/Model/Config/ReaderTest.php     |   0
 .../Unit/Model/Config/SchemaLocatorTest.php   |   0
 .../Model/Config/Source/Order/StatusTest.php  |   0
 .../Sales/Test/Unit/Model/Config/XsdTest.php  |   0
 .../Config/_files/core_totals_config.php      |   0
 .../Config/_files/custom_totals_config.php    |   0
 .../Model/Config/_files/sales_invalid.xml     |   0
 .../_files/sales_invalid_duplicates.xml       |   0
 .../Config/_files/sales_invalid_root_node.xml |   0
 .../Config/_files/sales_invalid_scope.xml     |   0
 .../sales_invalid_without_attributes.xml      |   0
 .../Unit/Model/Config/_files/sales_valid.xml  |   0
 .../Sales/Test/Unit/Model/ConfigTest.php      |   0
 ...ggregateSalesReportBestsellersDataTest.php |   0
 .../AggregateSalesReportInvoicedDataTest.php  |   0
 .../AggregateSalesReportOrderDataTest.php     |   0
 .../AggregateSalesReportRefundedDataTest.php  |   0
 .../Model/CronJob/CleanExpiredOrdersTest.php  |   0
 .../Unit/Model/CustomerGroupRetrieverTest.php |   0
 .../Sales/Test/Unit/Model/DownloadTest.php    |   0
 .../Unit/Model/EmailSenderHandlerTest.php     |   0
 .../Grid/Child/CollectionUpdaterTest.php      |   0
 .../Unit/Model/Grid/CollectionUpdaterTest.php |   0
 .../Test/Unit/Model/GridAsyncInsertTest.php   |   0
 .../Sales/Test/Unit/Model/IncrementTest.php   |   0
 .../Test/Unit/Model/InvoiceOrderTest.php      |   0
 .../Test/Unit/Model/InvoiceRepositoryTest.php |   0
 .../Unit/Model/Order/Address/RendererTest.php |   0
 .../Model/Order/Address/ValidatorTest.php     |   0
 .../Model/Order/AddressRepositoryTest.php     |   0
 .../Test/Unit/Model/Order/AddressTest.php     |   0
 .../Test/Unit/Model/Order/Admin/ItemTest.php  |   0
 .../Test/Unit/Model/Order/ConfigTest.php      |   0
 .../Creditmemo/Comment/ValidatorTest.php      |   0
 .../Creditmemo/CommentRepositoryTest.php      |   0
 .../CreateQuantityValidatorTest.php           |   0
 .../Unit/Model/Order/Creditmemo/ItemTest.php  |   0
 .../Order/Creditmemo/RefundOperationTest.php  |   0
 .../Creditmemo/Sender/EmailSenderTest.php     |   0
 .../Model/Order/Creditmemo/Total/CostTest.php |   0
 .../Order/Creditmemo/Total/DiscountTest.php   |   0
 .../Order/Creditmemo/Total/ShippingTest.php   |   0
 .../Order/Creditmemo/Total/SubtotalTest.php   |   0
 .../Model/Order/Creditmemo/Total/TaxTest.php  |   0
 .../Validation/QuantityValidatorTest.php      |   0
 .../Order/CreditmemoDocumentFactoryTest.php   |   0
 .../Model/Order/CreditmemoNotifierTest.php    |   0
 .../Model/Order/CreditmemoRepositoryTest.php  |   0
 .../Test/Unit/Model/Order/CreditmemoTest.php  |   0
 .../Model/Order/CustomerManagementTest.php    |   0
 .../CreditmemoCommentIdentityTest.php         |   0
 .../Container/CreditmemoIdentityTest.php      |   0
 .../Container/InvoiceCommentIdentityTest.php  |   0
 .../Email/Container/InvoiceIdentityTest.php   |   0
 .../Container/OrderCommentIdentityTest.php    |   0
 .../Email/Container/OrderIdentityTest.php     |   0
 .../Container/ShipmentCommentIdentityTest.php |   0
 .../Email/Container/ShipmentIdentityTest.php  |   0
 .../Order/Email/Container/TemplateTest.php    |   0
 .../Order/Email/Sender/AbstractSenderTest.php |   0
 .../Sender/CreditmemoCommentSenderTest.php    |   0
 .../Email/Sender/CreditmemoSenderTest.php     |   0
 .../Email/Sender/InvoiceCommentSenderTest.php |   0
 .../Order/Email/Sender/InvoiceSenderTest.php  |   0
 .../Email/Sender/OrderCommentSenderTest.php   |   0
 .../Order/Email/Sender/OrderSenderTest.php    |   0
 .../Sender/ShipmentCommentSenderTest.php      |   0
 .../Order/Email/Sender/ShipmentSenderTest.php |   0
 .../Model/Order/Email/SenderBuilderTest.php   |   0
 .../Email/Stub/TransportInterfaceMock.php     |   0
 .../Grid/Massaction/ItemsUpdaterTest.php      |   0
 .../Model/Order/Grid/Row/UrlGeneratorTest.php |   0
 .../Order/Invoice/Comment/ValidatorTest.php   |   0
 .../Order/Invoice/CommentRepositoryTest.php   |   0
 .../Invoice/Grid/Row/UrlGeneratorTest.php     |   0
 .../Unit/Model/Order/Invoice/ItemTest.php     |   0
 .../Model/Order/Invoice/PayOperationTest.php  |   0
 .../Invoice/Plugin/AddressUpdateTest.php      |   0
 .../Order/Invoice/Sender/EmailSenderTest.php  |   0
 .../Order/Invoice/Total/ShippingTest.php      |   0
 .../Model/Order/Invoice/Total/TaxTest.php     |   0
 .../Invoice/Validation/CanRefundTest.php      |   0
 .../Order/InvoiceDocumentFactoryTest.php      |   0
 .../Unit/Model/Order/InvoiceNotifierTest.php  |   0
 .../Order/InvoiceQuantityValidatorTest.php    |   0
 .../Test/Unit/Model/Order/InvoiceTest.php     |   0
 .../Unit/Model/Order/ItemRepositoryTest.php   |   0
 .../Sales/Test/Unit/Model/Order/ItemTest.php  |   0
 .../Unit/Model/Order/Payment/InfoTest.php     |   0
 .../Operations/CaptureOperationTest.php       |   0
 .../Model/Order/Payment/RepositoryTest.php    |   0
 .../Payment/State/AuthorizeCommandTest.php    |   0
 .../Payment/State/CaptureCommandTest.php      |   0
 .../Order/Payment/State/OrderCommandTest.php  |   0
 ...RegisterCaptureNotificationCommandTest.php |   0
 .../Order/Payment/Transaction/BuilderTest.php |   0
 .../Order/Payment/Transaction/ManagerTest.php |   0
 .../Payment/Transaction/RepositoryTest.php    |   0
 .../Model/Order/Payment/TransactionTest.php   |   0
 .../Unit/Model/Order/PaymentAdapterTest.php   |   0
 .../Test/Unit/Model/Order/PaymentTest.php     |   0
 .../Unit/Model/Order/Pdf/AbstractTest.php     |   0
 .../Model/Order/Pdf/Config/ConverterTest.php  |   0
 .../Model/Order/Pdf/Config/ReaderTest.php     |   0
 .../Order/Pdf/Config/SchemaLocatorTest.php    |   0
 .../Unit/Model/Order/Pdf/Config/XsdTest.php   |   0
 .../Order/Pdf/Config/_files/pdf_merged.php    |   0
 .../Order/Pdf/Config/_files/pdf_merged.xml    |   0
 .../Model/Order/Pdf/Config/_files/pdf_one.xml |   0
 .../Model/Order/Pdf/Config/_files/pdf_two.xml |   0
 .../Test/Unit/Model/Order/Pdf/ConfigTest.php  |   0
 .../Test/Unit/Model/Order/Pdf/InvoiceTest.php |   0
 .../Model/Order/Pdf/Total/FactoryTest.php     |   0
 .../Unit/Model/Order/RefundAdapterTest.php    |   0
 .../OrderProductAvailabilityCheckerTest.php   |   0
 .../UnavailableProductsProviderTest.php       |   0
 .../Order/Shipment/Comment/ValidatorTest.php  |   0
 .../Order/Shipment/CommentRepositoryTest.php  |   0
 .../Order/Shipment/OrderRegistrarTest.php     |   0
 .../Order/Shipment/Sender/EmailSenderTest.php |   0
 .../Order/Shipment/Track/ValidatorTest.php    |   0
 .../Unit/Model/Order/Shipment/TrackTest.php   |   0
 .../Validation/QuantityValidatorTest.php      |   0
 .../Validation/TrackValidatorTest.php         |   0
 .../Order/ShipmentDocumentFactoryTest.php     |   0
 .../Unit/Model/Order/ShipmentFactoryTest.php  |   0
 .../Model/Order/ShipmentRepositoryTest.php    |   0
 .../Test/Unit/Model/Order/ShipmentTest.php    |   0
 .../Unit/Model/Order/StateResolverTest.php    |   0
 .../Order/Status/History/ValidatorTest.php    |   0
 .../Unit/Model/Order/Status/HistoryTest.php   |   0
 .../Unit/Model/Order/StatusResolverTest.php   |   0
 .../Test/Unit/Model/Order/StatusTest.php      |   0
 .../Model/Order/Total/Config/BaseTest.php     |   0
 .../Model/Order/Validation/CanInvoiceTest.php |   0
 .../Model/Order/Validation/CanRefundTest.php  |   0
 .../Model/Order/Validation/CanShipTest.php    |   0
 .../Model/OrderIncrementIdCheckerTest.php     |   0
 .../Test/Unit/Model/OrderNotifierTest.php     |   0
 .../Test/Unit/Model/OrderRepositoryTest.php   |   0
 .../Sales/Test/Unit/Model/OrderTest.php       |   0
 .../Test/Unit/Model/RefundInvoiceTest.php     |   0
 .../Sales/Test/Unit/Model/RefundOrderTest.php |   0
 .../Model/ResourceModel/AttributeTest.php     |   0
 .../Unit/Model/ResourceModel/GridPoolTest.php |   0
 .../Unit/Model/ResourceModel/HelperTest.php   |   0
 .../Model/ResourceModel/Order/AddressTest.php |   0
 .../Order/Creditmemo/CommentTest.php          |   0
 .../Order/Creditmemo/Relation/RefundTest.php  |   0
 .../Order/Creditmemo/RelationTest.php         |   0
 .../Order/Handler/AddressTest.php             |   0
 .../ResourceModel/Order/Handler/StateTest.php |   0
 .../Order/Invoice/CommentTest.php             |   0
 .../Order/Invoice/RelationTest.php            |   0
 .../Order/Plugin/AuthorizationTest.php        |   0
 .../ResourceModel/Order/RelationTest.php      |   0
 .../Order/Shipment/CommentTest.php            |   0
 .../Order/Shipment/RelationTest.php           |   0
 .../Order/Shipment/TrackTest.php              |   0
 .../Order/Status/History/CollectionTest.php   |   0
 .../Order/Status/HistoryTest.php              |   0
 .../Model/ResourceModel/Order/StatusTest.php  |   0
 .../ResourceModel/Order/Tax/ItemTest.php      |   0
 .../Unit/Model/ResourceModel/OrderTest.php    |   0
 .../Provider/NotSyncedDataProviderTest.php    |   0
 .../Test/Unit/Model/Rss/NewOrderTest.php      |   0
 .../Test/Unit/Model/Rss/OrderStatusTest.php   |   0
 .../Model/Service/CreditmemoServiceTest.php   |   0
 .../Unit/Model/Service/InvoiceServiceTest.php |   0
 .../Unit/Model/Service/OrderServiceTest.php   |   0
 .../Model/Service/ShipmentServiceTest.php     |   0
 .../Sales/Test/Unit/Model/ShipOrderTest.php   |   0
 .../Test/Unit/Model/Status/ListStatusTest.php |   0
 .../Observer/Backend/CatalogPriceRuleTest.php |   0
 .../CatalogProductSaveAfterObserverTest.php   |   0
 .../SubtractQtyFromQuotesObserverTest.php     |   0
 .../AddVatRequestParamsOrderCommentTest.php   |   0
 .../Frontend/RestoreCustomerGroupIdTest.php   |   0
 .../Observer/GridProcessAddressChangeTest.php |   0
 .../Observer/GridSyncInsertObserverTest.php   |   0
 .../Observer/GridSyncRemoveObserverTest.php   |   0
 .../SalesOrderPaymentDataConverterTest.php    |   0
 .../Setup/SerializedDataConverterTest.php     |   0
 .../Component/DataProvider/DocumentTest.php   |   0
 .../Component/Listing/Column/AddressTest.php  |   0
 .../Listing/Column/CustomerGroupTest.php      |   0
 .../Listing/Column/PaymentMethodTest.php      |   0
 .../Ui/Component/Listing/Column/PriceTest.php |   0
 .../Listing/Column/PurchasedPriceTest.php     |   0
 .../Listing/Column/Status/OptionsTest.php     |   0
 .../Component/Listing/Column/StatusTest.php   |   0
 .../Listing/Column/ViewActionTest.php         |   0
 .../Sales/Ui/Component/Control/PdfAction.php  |   0
 .../Ui/Component/DataProvider/Document.php    |   0
 .../Ui/Component/Listing/Column/Address.php   |   0
 .../Listing/Column/Creditmemo/State.php       |   0
 .../Column/Creditmemo/State/Options.php       |   0
 .../Listing/Column/CustomerGroup.php          |   0
 .../Listing/Column/Invoice/State.php          |   0
 .../Listing/Column/Invoice/State/Options.php  |   0
 .../Listing/Column/PaymentMethod.php          |   0
 .../Ui/Component/Listing/Column/Price.php     |   0
 .../Listing/Column/PurchasedPrice.php         |   0
 .../Ui/Component/Listing/Column/Status.php    |   0
 .../Listing/Column/Status/Options.php         |   0
 .../Component/Listing/Column/ViewAction.php   |   0
 app/code/Magento/Sales/composer.json          |   0
 app/code/Magento/Sales/etc/acl.xml            |   0
 app/code/Magento/Sales/etc/adminhtml/di.xml   |   0
 .../Magento/Sales/etc/adminhtml/events.xml    |   0
 app/code/Magento/Sales/etc/adminhtml/menu.xml |   0
 .../Magento/Sales/etc/adminhtml/routes.xml    |   0
 .../Magento/Sales/etc/adminhtml/system.xml    |   0
 .../Magento/Sales/etc/catalog_attributes.xml  |   0
 app/code/Magento/Sales/etc/config.xml         |   0
 app/code/Magento/Sales/etc/crontab.xml        |   0
 app/code/Magento/Sales/etc/di.xml             |   0
 .../Magento/Sales/etc/email_templates.xml     |   0
 app/code/Magento/Sales/etc/events.xml         |   0
 .../Sales/etc/extension_attributes.xml        |   0
 app/code/Magento/Sales/etc/fieldset.xml       |   0
 app/code/Magento/Sales/etc/frontend/di.xml    |   0
 .../Magento/Sales/etc/frontend/events.xml     |   0
 .../Magento/Sales/etc/frontend/page_types.xml |   0
 .../Magento/Sales/etc/frontend/routes.xml     |   0
 .../Magento/Sales/etc/frontend/sections.xml   |   0
 app/code/Magento/Sales/etc/module.xml         |   0
 app/code/Magento/Sales/etc/pdf.xml            |   0
 app/code/Magento/Sales/etc/pdf.xsd            |   0
 app/code/Magento/Sales/etc/pdf_file.xsd       |   0
 app/code/Magento/Sales/etc/resources.xml      |   0
 app/code/Magento/Sales/etc/sales.xml          |   0
 app/code/Magento/Sales/etc/sales.xsd          |   0
 app/code/Magento/Sales/etc/webapi.xml         |   0
 app/code/Magento/Sales/etc/webapi_rest/di.xml |   0
 .../Magento/Sales/etc/webapi_rest/events.xml  |   0
 app/code/Magento/Sales/etc/webapi_soap/di.xml |   0
 .../Magento/Sales/etc/webapi_soap/events.xml  |   0
 app/code/Magento/Sales/etc/widget.xml         |   0
 app/code/Magento/Sales/i18n/en_US.csv         |   0
 app/code/Magento/Sales/registration.php       |   0
 .../layout/sales_creditmemo_exportcsv.xml     |   0
 .../layout/sales_creditmemo_exportexcel.xml   |   0
 .../layout/sales_creditmemo_grid.xml          |   0
 .../layout/sales_creditmemo_index.xml         |   0
 .../layout/sales_creditmemo_item_price.xml    |   0
 .../layout/sales_invoice_exportcsv.xml        |   0
 .../layout/sales_invoice_exportexcel.xml      |   0
 .../adminhtml/layout/sales_invoice_grid.xml   |   0
 .../adminhtml/layout/sales_invoice_index.xml  |   0
 .../layout/sales_invoice_item_price.xml       |   0
 .../layout/sales_order_addcomment.xml         |   0
 .../adminhtml/layout/sales_order_address.xml  |   0
 .../sales_order_create_customer_block.xml     |   0
 .../layout/sales_order_create_index.xml       |   0
 .../layout/sales_order_create_item_price.xml  |   0
 ...rder_create_load_block_billing_address.xml |   0
 ...order_create_load_block_billing_method.xml |   0
 .../sales_order_create_load_block_comment.xml |   0
 ..._order_create_load_block_customer_grid.xml |   0
 .../sales_order_create_load_block_data.xml    |   0
 ...s_order_create_load_block_form_account.xml |   0
 ...es_order_create_load_block_giftmessage.xml |   0
 .../sales_order_create_load_block_header.xml  |   0
 .../sales_order_create_load_block_items.xml   |   0
 .../sales_order_create_load_block_json.xml    |   0
 .../sales_order_create_load_block_message.xml |   0
 ...les_order_create_load_block_newsletter.xml |   0
 .../sales_order_create_load_block_plain.xml   |   0
 .../sales_order_create_load_block_search.xml  |   0
 ...es_order_create_load_block_search_grid.xml |   0
 ...der_create_load_block_shipping_address.xml |   0
 ...rder_create_load_block_shipping_method.xml |   0
 .../sales_order_create_load_block_sidebar.xml |   0
 ...s_order_create_load_block_sidebar_cart.xml |   0
 ...der_create_load_block_sidebar_compared.xml |   0
 ...er_create_load_block_sidebar_pcompared.xml |   0
 ...rder_create_load_block_sidebar_pviewed.xml |   0
 ...rder_create_load_block_sidebar_reorder.xml |   0
 ...order_create_load_block_sidebar_viewed.xml |   0
 ...der_create_load_block_sidebar_wishlist.xml |   0
 .../sales_order_create_load_block_totals.xml  |   0
 .../sales_order_creditmemo_addcomment.xml     |   0
 .../sales_order_creditmemo_grid_block.xml     |   0
 .../layout/sales_order_creditmemo_new.xml     |   0
 .../sales_order_creditmemo_updateqty.xml      |   0
 .../layout/sales_order_creditmemo_view.xml    |   0
 .../layout/sales_order_creditmemos.xml        |   0
 .../layout/sales_order_edit_index.xml         |   0
 .../layout/sales_order_exportcsv.xml          |   0
 .../layout/sales_order_exportexcel.xml        |   0
 .../adminhtml/layout/sales_order_grid.xml     |   0
 .../adminhtml/layout/sales_order_index.xml    |   0
 .../layout/sales_order_invoice_addcomment.xml |   0
 .../layout/sales_order_invoice_grid_block.xml |   0
 .../layout/sales_order_invoice_new.xml        |   0
 .../layout/sales_order_invoice_updateqty.xml  |   0
 .../layout/sales_order_invoice_view.xml       |   0
 .../adminhtml/layout/sales_order_invoices.xml |   0
 .../layout/sales_order_item_price.xml         |   0
 .../sales_order_shipment_grid_block.xml       |   0
 .../layout/sales_order_shipments.xml          |   0
 .../layout/sales_order_status_assign.xml      |   0
 .../layout/sales_order_status_edit.xml        |   0
 .../layout/sales_order_status_index.xml       |   0
 .../layout/sales_order_status_new.xml         |   0
 .../layout/sales_order_transactions.xml       |   0
 .../sales_order_transactions_grid_block.xml   |   0
 .../adminhtml/layout/sales_order_view.xml     |   0
 .../layout/sales_shipment_exportcsv.xml       |   0
 .../layout/sales_shipment_exportexcel.xml     |   0
 .../adminhtml/layout/sales_shipment_index.xml |   0
 .../layout/sales_transaction_child_block.xml  |   0
 .../layout/sales_transactions_grid.xml        |   0
 .../layout/sales_transactions_grid_block.xml  |   0
 .../layout/sales_transactions_index.xml       |   0
 .../layout/sales_transactions_view.xml        |   0
 .../Sales/view/adminhtml/requirejs-config.js  |   0
 .../templates/items/column/name.phtml         |   0
 .../templates/items/column/qty.phtml          |   0
 .../adminhtml/templates/items/price/row.phtml |   0
 .../templates/items/price/total.phtml         |   0
 .../templates/items/price/unit.phtml          |   0
 .../templates/items/renderer/default.phtml    |   0
 .../templates/order/address/form.phtml        |   0
 .../templates/order/comments/view.phtml       |   0
 .../templates/order/create/abstract.phtml     |   0
 .../order/create/billing/method/form.phtml    |   0
 .../templates/order/create/comment.phtml      |   0
 .../templates/order/create/coupons/form.phtml |   0
 .../templates/order/create/data.phtml         |   0
 .../templates/order/create/form.phtml         |   0
 .../templates/order/create/form/account.phtml |   0
 .../templates/order/create/form/address.phtml |   0
 .../templates/order/create/giftmessage.phtml  |   0
 .../templates/order/create/items.phtml        |   0
 .../templates/order/create/items/grid.phtml   |   0
 .../order/create/items/price/row.phtml        |   0
 .../order/create/items/price/total.phtml      |   0
 .../order/create/items/price/unit.phtml       |   0
 .../adminhtml/templates/order/create/js.phtml |   0
 .../order/create/newsletter/form.phtml        |   0
 .../order/create/shipping/method/form.phtml   |   0
 .../templates/order/create/sidebar.phtml      |   0
 .../order/create/sidebar/items.phtml          |   0
 .../templates/order/create/store/select.phtml |   0
 .../templates/order/create/totals.phtml       |   0
 .../order/create/totals/default.phtml         |   0
 .../order/create/totals/grandtotal.phtml      |   0
 .../order/create/totals/shipping.phtml        |   0
 .../order/create/totals/subtotal.phtml        |   0
 .../order/creditmemo/create/form.phtml        |   0
 .../order/creditmemo/create/items.phtml       |   0
 .../create/items/renderer/default.phtml       |   0
 .../create/totals/adjustments.phtml           |   0
 .../order/creditmemo/view/form.phtml          |   0
 .../order/creditmemo/view/items.phtml         |   0
 .../view/items/renderer/default.phtml         |   0
 .../adminhtml/templates/order/details.phtml   |   0
 .../templates/order/giftoptions.phtml         |   0
 .../templates/order/invoice/create/form.phtml |   0
 .../order/invoice/create/items.phtml          |   0
 .../create/items/renderer/default.phtml       |   0
 .../templates/order/invoice/view/form.phtml   |   0
 .../templates/order/invoice/view/items.phtml  |   0
 .../invoice/view/items/renderer/default.phtml |   0
 .../adminhtml/templates/order/totalbar.phtml  |   0
 .../adminhtml/templates/order/totals.phtml    |   0
 .../templates/order/totals/discount.phtml     |   0
 .../templates/order/totals/due.phtml          |   0
 .../templates/order/totals/footer.phtml       |   0
 .../templates/order/totals/grand.phtml        |   0
 .../templates/order/totals/item.phtml         |   0
 .../templates/order/totals/main.phtml         |   0
 .../templates/order/totals/paid.phtml         |   0
 .../templates/order/totals/refunded.phtml     |   0
 .../templates/order/totals/shipping.phtml     |   0
 .../templates/order/totals/tax.phtml          |   0
 .../adminhtml/templates/order/view/form.phtml |   0
 .../templates/order/view/giftmessage.phtml    |   0
 .../templates/order/view/history.phtml        |   0
 .../adminhtml/templates/order/view/info.phtml |   0
 .../templates/order/view/items.phtml          |   0
 .../order/view/items/renderer/default.phtml   |   0
 .../templates/order/view/tab/history.phtml    |   0
 .../templates/order/view/tab/info.phtml       |   0
 .../templates/page/js/components.phtml        |   0
 .../templates/rss/order/grid/link.phtml       |   0
 .../templates/transactions/detail.phtml       |   0
 .../sales_order_creditmemo_grid.xml           |   0
 .../ui_component/sales_order_grid.xml         |   0
 .../ui_component/sales_order_invoice_grid.xml |   0
 .../sales_order_shipment_grid.xml             |   0
 .../sales_order_view_creditmemo_grid.xml      |   0
 .../sales_order_view_invoice_grid.xml         |   0
 .../sales_order_view_shipment_grid.xml        |   0
 .../web/js/bootstrap/order-create-index.js    |   0
 .../web/js/bootstrap/order-post-action.js     |   0
 .../view/adminhtml/web/order/create/form.js   |   0
 .../adminhtml/web/order/create/giftmessage.js |   0
 .../adminhtml/web/order/create/scripts.js     |   0
 .../adminhtml/web/order/edit/address/form.js  |   0
 .../view/adminhtml/web/order/edit/message.js  |   0
 .../web/order/giftoptions_tooltip.js          |   0
 .../adminhtml/web/order/view/post-wrapper.js  |   0
 .../view/base/ui_component/customer_form.xml  |   0
 .../view/frontend/email/creditmemo_new.html   |   0
 .../frontend/email/creditmemo_new_guest.html  |   0
 .../frontend/email/creditmemo_update.html     |   0
 .../email/creditmemo_update_guest.html        |   0
 .../view/frontend/email/invoice_new.html      |   0
 .../frontend/email/invoice_new_guest.html     |   0
 .../view/frontend/email/invoice_update.html   |   0
 .../frontend/email/invoice_update_guest.html  |   0
 .../Sales/view/frontend/email/order_new.html  |   0
 .../view/frontend/email/order_new_guest.html  |   0
 .../view/frontend/email/order_update.html     |   0
 .../frontend/email/order_update_guest.html    |   0
 .../view/frontend/email/shipment_new.html     |   0
 .../frontend/email/shipment_new_guest.html    |   0
 .../view/frontend/email/shipment_update.html  |   0
 .../frontend/email/shipment_update_guest.html |   0
 .../frontend/layout/checkout_index_index.xml  |   0
 .../view/frontend/layout/customer_account.xml |   0
 .../layout/customer_account_index.xml         |   0
 .../Sales/view/frontend/layout/default.xml    |   0
 .../layout/sales_email_item_price.xml         |   0
 .../sales_email_order_creditmemo_items.xml    |   0
 ...sales_email_order_creditmemo_renderers.xml |   0
 .../sales_email_order_invoice_items.xml       |   0
 .../sales_email_order_invoice_renderers.xml   |   0
 .../layout/sales_email_order_items.xml        |   0
 .../layout/sales_email_order_renderers.xml    |   0
 .../sales_email_order_shipment_items.xml      |   0
 .../sales_email_order_shipment_renderers.xml  |   0
 .../layout/sales_guest_creditmemo.xml         |   0
 .../view/frontend/layout/sales_guest_form.xml |   0
 .../frontend/layout/sales_guest_invoice.xml   |   0
 .../frontend/layout/sales_guest_print.xml     |   0
 .../layout/sales_guest_printcreditmemo.xml    |   0
 .../layout/sales_guest_printinvoice.xml       |   0
 .../layout/sales_guest_printshipment.xml      |   0
 .../frontend/layout/sales_guest_reorder.xml   |   0
 .../frontend/layout/sales_guest_shipment.xml  |   0
 .../view/frontend/layout/sales_guest_view.xml |   0
 .../layout/sales_order_creditmemo.xml         |   0
 .../sales_order_creditmemo_renderers.xml      |   0
 .../layout/sales_order_guest_info_links.xml   |   0
 .../frontend/layout/sales_order_history.xml   |   0
 .../layout/sales_order_info_links.xml         |   0
 .../frontend/layout/sales_order_invoice.xml   |   0
 .../layout/sales_order_invoice_renderers.xml  |   0
 .../layout/sales_order_item_price.xml         |   0
 .../layout/sales_order_item_renderers.xml     |   0
 .../frontend/layout/sales_order_print.xml     |   0
 ...sales_order_print_creditmemo_renderers.xml |   0
 .../sales_order_print_invoice_renderers.xml   |   0
 .../layout/sales_order_print_renderers.xml    |   0
 .../sales_order_print_shipment_renderers.xml  |   0
 .../layout/sales_order_printcreditmemo.xml    |   0
 .../layout/sales_order_printinvoice.xml       |   0
 .../layout/sales_order_printshipment.xml      |   0
 .../frontend/layout/sales_order_reorder.xml   |   0
 .../frontend/layout/sales_order_shipment.xml  |   0
 .../layout/sales_order_shipment_renderers.xml |   0
 .../view/frontend/layout/sales_order_view.xml |   0
 .../Sales/view/frontend/requirejs-config.js   |   0
 .../templates/email/creditmemo/items.phtml    |   0
 .../templates/email/invoice/items.phtml       |   0
 .../view/frontend/templates/email/items.phtml |   0
 .../email/items/creditmemo/default.phtml      |   0
 .../email/items/invoice/default.phtml         |   0
 .../templates/email/items/order/default.phtml |   0
 .../templates/email/items/price/row.phtml     |   0
 .../email/items/shipment/default.phtml        |   0
 .../templates/email/shipment/items.phtml      |   0
 .../templates/email/shipment/track.phtml      |   0
 .../view/frontend/templates/guest/form.phtml  |   0
 .../frontend/templates/items/price/row.phtml  |   0
 .../items/price/total_after_discount.phtml    |   0
 .../frontend/templates/items/price/unit.phtml |   0
 .../frontend/templates/js/components.phtml    |   0
 .../frontend/templates/order/comments.phtml   |   0
 .../frontend/templates/order/creditmemo.phtml |   0
 .../templates/order/creditmemo/items.phtml    |   0
 .../creditmemo/items/renderer/default.phtml   |   0
 .../frontend/templates/order/history.phtml    |   0
 .../view/frontend/templates/order/info.phtml  |   0
 .../templates/order/info/buttons.phtml        |   0
 .../templates/order/info/buttons/rss.phtml    |   0
 .../frontend/templates/order/invoice.phtml    |   0
 .../templates/order/invoice/items.phtml       |   0
 .../invoice/items/renderer/default.phtml      |   0
 .../view/frontend/templates/order/items.phtml |   0
 .../order/items/renderer/default.phtml        |   0
 .../templates/order/order_comments.phtml      |   0
 .../frontend/templates/order/order_date.phtml |   0
 .../templates/order/order_status.phtml        |   0
 .../templates/order/print/creditmemo.phtml    |   0
 .../templates/order/print/invoice.phtml       |   0
 .../templates/order/print/shipment.phtml      |   0
 .../frontend/templates/order/recent.phtml     |   0
 .../shipment/items/renderer/default.phtml     |   0
 .../frontend/templates/order/totals.phtml     |   0
 .../view/frontend/templates/order/view.phtml  |   0
 .../frontend/templates/reorder/sidebar.phtml  |   0
 .../templates/widget/guest/form.phtml         |   0
 .../Sales/view/frontend/web/gift-message.js   |   0
 .../web/js/view/last-ordered-items.js         |   0
 .../Sales/view/frontend/web/orders-returns.js |   0
 app/code/Magento/SalesAnalytics/LICENSE.txt   |   0
 .../Magento/SalesAnalytics/LICENSE_AFL.txt    |   0
 app/code/Magento/SalesAnalytics/README.md     |   0
 app/code/Magento/SalesAnalytics/composer.json |   0
 .../Magento/SalesAnalytics/etc/analytics.xml  |   0
 .../Magento/SalesAnalytics/etc/module.xml     |   0
 .../Magento/SalesAnalytics/etc/reports.xml    |   0
 .../Magento/SalesAnalytics/registration.php   |   0
 app/code/Magento/SalesInventory/LICENSE.txt   |   0
 .../Magento/SalesInventory/LICENSE_AFL.txt    |   0
 .../Model/Order/ReturnProcessor.php           |   0
 .../Model/Order/ReturnValidator.php           |   0
 .../Plugin/Order/ReturnToStockInvoice.php     |   0
 .../Model/Plugin/Order/ReturnToStockOrder.php |   0
 .../InvoiceRefundCreationArguments.php        |   0
 .../OrderRefundCreationArguments.php          |   0
 .../Observer/RefundOrderInventoryObserver.php |   0
 app/code/Magento/SalesInventory/README.md     |   0
 .../Unit/Model/Order/ReturnProcessorTest.php  |   0
 .../Unit/Model/Order/ReturnValidatorTest.php  |   0
 .../Plugin/Order/ReturnToStockInvoiceTest.php |   0
 .../Plugin/Order/ReturnToStockOrderTest.php   |   0
 .../InvoiceRefundCreationArgumentsTest.php    |   0
 .../OrderRefundCreationArgumentsTest.php      |   0
 .../RefundOrderInventoryObserverTest.php      |   0
 app/code/Magento/SalesInventory/composer.json |   0
 app/code/Magento/SalesInventory/etc/di.xml    |   0
 .../Magento/SalesInventory/etc/events.xml     |   0
 .../etc/extension_attributes.xml              |   0
 .../Magento/SalesInventory/etc/module.xml     |   0
 .../Magento/SalesInventory/i18n/en_US.csv     |   0
 .../Magento/SalesInventory/registration.php   |   0
 .../Api/CouponManagementInterface.php         |   0
 .../Api/CouponRepositoryInterface.php         |   0
 .../SalesRule/Api/Data/ConditionInterface.php |   0
 .../Data/CouponGenerationSpecInterface.php    |   0
 .../SalesRule/Api/Data/CouponInterface.php    |   0
 .../Data/CouponMassDeleteResultInterface.php  |   0
 .../Api/Data/CouponSearchResultInterface.php  |   0
 .../SalesRule/Api/Data/RuleInterface.php      |   0
 .../SalesRule/Api/Data/RuleLabelInterface.php |   0
 .../Api/Data/RuleSearchResultInterface.php    |   0
 .../SalesRule/Api/RuleRepositoryInterface.php |   0
 .../SalesRule/Block/Adminhtml/Promo/Quote.php |   0
 .../Promo/Quote/Edit/DeleteButton.php         |   0
 .../Promo/Quote/Edit/GenericButton.php        |   0
 .../Promo/Quote/Edit/ResetButton.php          |   0
 .../Quote/Edit/SaveAndContinueButton.php      |   0
 .../Adminhtml/Promo/Quote/Edit/SaveButton.php |   0
 .../Promo/Quote/Edit/Tab/Actions.php          |   0
 .../Promo/Quote/Edit/Tab/Conditions.php       |   0
 .../Promo/Quote/Edit/Tab/Coupons.php          |   0
 .../Promo/Quote/Edit/Tab/Coupons/Form.php     |   0
 .../Promo/Quote/Edit/Tab/Coupons/Grid.php     |   0
 .../Tab/Coupons/Grid/Column/Renderer/Used.php |   0
 .../Adminhtml/Promo/Quote/Edit/Tab/Labels.php |   0
 .../Block/Adminhtml/Promo/Widget/Chooser.php  |   0
 .../Magento/SalesRule/Block/Rss/Discounts.php |   0
 .../Block/Widget/Form/Element/Dependence.php  |   0
 .../Controller/Adminhtml/Promo/Quote.php      |   0
 .../Adminhtml/Promo/Quote/ApplyRules.php      |   0
 .../Adminhtml/Promo/Quote/Chooser.php         |   0
 .../Adminhtml/Promo/Quote/CouponsGrid.php     |   0
 .../Promo/Quote/CouponsMassDelete.php         |   0
 .../Adminhtml/Promo/Quote/Delete.php          |   0
 .../Controller/Adminhtml/Promo/Quote/Edit.php |   0
 .../Promo/Quote/ExportCouponsCsv.php          |   0
 .../Promo/Quote/ExportCouponsXml.php          |   0
 .../Adminhtml/Promo/Quote/Generate.php        |   0
 .../Adminhtml/Promo/Quote/Index.php           |   0
 .../Adminhtml/Promo/Quote/NewAction.php       |   0
 .../Adminhtml/Promo/Quote/NewActionHtml.php   |   0
 .../Promo/Quote/NewConditionHtml.php          |   0
 .../Controller/Adminhtml/Promo/Quote/Save.php |   0
 .../Adminhtml/Promo/Widget/Chooser.php        |   0
 .../Cron/AggregateSalesReportCouponsData.php  |   0
 app/code/Magento/SalesRule/Helper/Coupon.php  |   0
 app/code/Magento/SalesRule/LICENSE.txt        |   0
 app/code/Magento/SalesRule/LICENSE_AFL.txt    |   0
 .../SalesRule/Model/Converter/ToDataModel.php |   0
 .../SalesRule/Model/Converter/ToModel.php     |   0
 app/code/Magento/SalesRule/Model/Coupon.php   |   0
 .../SalesRule/Model/Coupon/Codegenerator.php  |   0
 .../Model/Coupon/CodegeneratorInterface.php   |   0
 .../SalesRule/Model/Coupon/Massgenerator.php  |   0
 .../SalesRule/Model/CouponGenerator.php       |   0
 .../SalesRule/Model/CouponRepository.php      |   0
 .../SalesRule/Model/Data/Condition.php        |   0
 .../Model/Data/CouponGenerationSpec.php       |   0
 .../Model/Data/CouponMassDeleteResult.php     |   0
 .../Magento/SalesRule/Model/Data/Rule.php     |   0
 .../SalesRule/Model/Data/RuleLabel.php        |   0
 .../Plugin/QuoteConfigProductAttributes.php   |   0
 .../Model/Plugin/ResourceModel/Rule.php       |   0
 .../Magento/SalesRule/Model/Plugin/Rule.php   |   0
 .../SalesRule/Model/Quote/Discount.php        |   0
 .../SalesRule/Model/RegistryConstants.php     |   0
 .../SalesRule/Model/ResourceModel/Coupon.php  |   0
 .../Model/ResourceModel/Coupon/Collection.php |   0
 .../Model/ResourceModel/Coupon/Usage.php      |   0
 .../Model/ResourceModel/ReadHandler.php       |   0
 .../Model/ResourceModel/Report/Collection.php |   0
 .../Model/ResourceModel/Report/Rule.php       |   0
 .../ResourceModel/Report/Rule/Createdat.php   |   0
 .../ResourceModel/Report/Rule/Updatedat.php   |   0
 .../Report/Updatedat/Collection.php           |   0
 .../SalesRule/Model/ResourceModel/Rule.php    |   0
 .../Model/ResourceModel/Rule/Collection.php   |   0
 .../Model/ResourceModel/Rule/Customer.php     |   0
 .../Rule/Customer/Collection.php              |   0
 .../Model/ResourceModel/Rule/DateApplier.php  |   0
 .../ResourceModel/Rule/Quote/Collection.php   |   0
 .../Model/ResourceModel/SaveHandler.php       |   0
 .../Magento/SalesRule/Model/Rss/Discounts.php |   0
 app/code/Magento/SalesRule/Model/Rule.php     |   0
 .../Model/Rule/Action/Collection.php          |   0
 .../Rule/Action/Discount/AbstractDiscount.php |   0
 .../Model/Rule/Action/Discount/BuyXGetY.php   |   0
 .../Model/Rule/Action/Discount/ByFixed.php    |   0
 .../Model/Rule/Action/Discount/ByPercent.php  |   0
 .../Action/Discount/CalculatorFactory.php     |   0
 .../Model/Rule/Action/Discount/CartFixed.php  |   0
 .../Model/Rule/Action/Discount/Data.php       |   0
 .../Action/Discount/DiscountInterface.php     |   0
 .../Model/Rule/Action/Discount/ToFixed.php    |   0
 .../Model/Rule/Action/Discount/ToPercent.php  |   0
 .../SalesRule/Model/Rule/Action/Product.php   |   0
 .../Model/Rule/Condition/Address.php          |   0
 .../Model/Rule/Condition/Combine.php          |   0
 .../Model/Rule/Condition/Product.php          |   0
 .../Model/Rule/Condition/Product/Combine.php  |   0
 .../Model/Rule/Condition/Product/Found.php    |   0
 .../Rule/Condition/Product/Subselect.php      |   0
 .../Magento/SalesRule/Model/Rule/Customer.php |   0
 .../SalesRule/Model/Rule/DataProvider.php     |   0
 .../Model/Rule/Metadata/ValueProvider.php     |   0
 .../SalesRule/Model/RuleRepository.php        |   0
 .../Magento/SalesRule/Model/RulesApplier.php  |   0
 .../Model/Service/CouponManagementService.php |   0
 .../Model/Spi/CouponResourceInterface.php     |   0
 .../System/Config/Source/Coupon/Format.php    |   0
 app/code/Magento/SalesRule/Model/Utility.php  |   0
 .../Magento/SalesRule/Model/Validator.php     |   0
 .../SalesRule/Model/Validator/Pool.php        |   0
 .../AddSalesRuleNameToOrderObserver.php       |   0
 .../CatalogAttributeDeleteAfterObserver.php   |   0
 .../CatalogAttributeSaveAfterObserver.php     |   0
 .../Observer/CheckSalesRulesAvailability.php  |   0
 .../Observer/SalesOrderAfterPlaceObserver.php |   0
 .../SalesRule/Plugin/CartTotalRepository.php  |   0
 app/code/Magento/SalesRule/README.md          |   0
 .../Magento/SalesRule/Setup/InstallData.php   |   0
 .../Magento/SalesRule/Setup/InstallSchema.php |   0
 .../Magento/SalesRule/Setup/UpgradeData.php   |   0
 .../Magento/SalesRule/Setup/UpgradeSchema.php |   0
 .../Promo/Quote/Edit/DeleteButtonTest.php     |   0
 .../Promo/Quote/Edit/GenericButtonTest.php    |   0
 .../Promo/Quote/Edit/ResetButtonTest.php      |   0
 .../Quote/Edit/SaveAndContinueButtonTest.php  |   0
 .../Promo/Quote/Edit/SaveButtonTest.php       |   0
 .../Test/Unit/Block/Rss/DiscountsTest.php     |   0
 .../Adminhtml/Promo/Quote/GenerateTest.php    |   0
 .../AggregateSalesReportCouponsDataTest.php   |   0
 .../SalesRule/Test/Unit/Helper/CouponTest.php |   0
 .../Unit/Model/Converter/ToDataModelTest.php  |   0
 .../Test/Unit/Model/Converter/ToModelTest.php |   0
 .../Unit/Model/Coupon/CodegeneratorTest.php   |   0
 .../Unit/Model/Coupon/MassgeneratorTest.php   |   0
 .../Test/Unit/Model/CouponRepositoryTest.php  |   0
 .../SalesRule/Test/Unit/Model/CouponTest.php  |   0
 .../QuoteConfigProductAttributesTest.php      |   0
 .../Model/Plugin/ResourceModel/RuleTest.php   |   0
 .../Test/Unit/Model/Plugin/RuleTest.php       |   0
 .../Test/Unit/Model/Quote/DiscountTest.php    |   0
 .../Model/ResourceModel/ReadHandlerTest.php   |   0
 .../ResourceModel/Report/CollectionTest.php   |   0
 .../Model/ResourceModel/Report/RuleTest.php   |   0
 .../ResourceModel/Rule/DateApplierTest.php    |   0
 .../Unit/Model/ResourceModel/RuleTest.php     |   0
 .../Model/ResourceModel/SaveHandlerTest.php   |   0
 .../Test/Unit/Model/Rss/DiscountsTest.php     |   0
 .../Rule/Action/Discount/ByPercentTest.php    |   0
 .../Rule/Action/Discount/CartFixedTest.php    |   0
 .../Rule/Action/Discount/ToPercentTest.php    |   0
 .../Unit/Model/Rule/Condition/ProductTest.php |   0
 .../Test/Unit/Model/Rule/DataProviderTest.php |   0
 .../Model/Rule/Metadata/ValueProviderTest.php |   0
 .../Model/Rule/Metadata/_files/MetaData.php   |   0
 .../Test/Unit/Model/RuleRepositoryTest.php    |   0
 .../SalesRule/Test/Unit/Model/RuleTest.php    |   0
 .../Test/Unit/Model/RulesApplierTest.php      |   0
 .../Service/CouponManagementServiceTest.php   |   0
 .../Config/Source/Coupon/FormatTest.php       |   0
 .../SalesRule/Test/Unit/Model/UtilityTest.php |   0
 .../Test/Unit/Model/Validator/PoolTest.php    |   0
 .../Test/Unit/Model/ValidatorTest.php         |   0
 .../Model/_files/quote_item_downloadable.php  |   0
 .../Unit/Model/_files/quote_item_simple.php   |   0
 .../AddSalesRuleNameToOrderObserverTest.php   |   0
 ...atalogAttributeDeleteAfterObserverTest.php |   0
 .../CatalogAttributeSaveAfterObserverTest.php |   0
 .../SalesOrderAfterPlaceObserverTest.php      |   0
 app/code/Magento/SalesRule/composer.json      |   0
 app/code/Magento/SalesRule/etc/acl.xml        |   0
 .../Magento/SalesRule/etc/adminhtml/di.xml    |   0
 .../SalesRule/etc/adminhtml/events.xml        |   0
 .../Magento/SalesRule/etc/adminhtml/menu.xml  |   0
 .../SalesRule/etc/adminhtml/routes.xml        |   0
 .../SalesRule/etc/adminhtml/system.xml        |   0
 app/code/Magento/SalesRule/etc/config.xml     |   0
 app/code/Magento/SalesRule/etc/crontab.xml    |   0
 app/code/Magento/SalesRule/etc/di.xml         |   0
 app/code/Magento/SalesRule/etc/events.xml     |   0
 app/code/Magento/SalesRule/etc/fieldset.xml   |   0
 .../Magento/SalesRule/etc/frontend/di.xml     |   0
 app/code/Magento/SalesRule/etc/module.xml     |   0
 app/code/Magento/SalesRule/etc/sales.xml      |   0
 app/code/Magento/SalesRule/etc/webapi.xml     |   0
 app/code/Magento/SalesRule/i18n/en_US.csv     |   0
 app/code/Magento/SalesRule/registration.php   |   0
 .../sales_rule_promo_quote_couponsgrid.xml    |   0
 .../layout/sales_rule_promo_quote_edit.xml    |   0
 .../layout/sales_rule_promo_quote_index.xml   |   0
 .../templates/promo/salesrulejs.phtml         |   0
 .../adminhtml/templates/tab/coupons.phtml     |   0
 .../ui_component/sales_rule_form.xml          |   0
 .../base/web/js/form/element/coupon-type.js   |   0
 .../js/form/element/manage-coupon-codes.js    |   0
 .../frontend/layout/checkout_cart_index.xml   |   0
 .../frontend/layout/checkout_index_index.xml  |   0
 .../frontend/web/js/action/cancel-coupon.js   |   0
 .../frontend/web/js/action/set-coupon-code.js |   0
 .../web/js/model/payment/discount-messages.js |   0
 .../web/js/view/cart/totals/discount.js       |   0
 .../web/js/view/payment/discount-messages.js  |   0
 .../frontend/web/js/view/payment/discount.js  |   0
 .../frontend/web/js/view/summary/discount.js  |   0
 .../web/template/cart/totals/discount.html    |   0
 .../web/template/payment/discount.html        |   0
 .../web/template/summary/discount.html        |   0
 app/code/Magento/SalesSequence/LICENSE.txt    |   0
 .../Magento/SalesSequence/LICENSE_AFL.txt     |   0
 .../Magento/SalesSequence/Model/Builder.php   |   0
 .../Magento/SalesSequence/Model/Config.php    |   0
 .../SalesSequence/Model/EntityPool.php        |   0
 .../Magento/SalesSequence/Model/Manager.php   |   0
 app/code/Magento/SalesSequence/Model/Meta.php |   0
 .../Magento/SalesSequence/Model/Profile.php   |   0
 .../Model/ResourceModel/Meta.php              |   0
 .../Model/ResourceModel/Profile.php           |   0
 .../Magento/SalesSequence/Model/Sequence.php  |   0
 .../Observer/SequenceCreatorObserver.php      |   0
 app/code/Magento/SalesSequence/README.md      |   0
 .../SalesSequence/Setup/InstallData.php       |   0
 .../SalesSequence/Setup/InstallSchema.php     |   0
 .../SalesSequence/Setup/RecurringData.php     |   0
 .../SalesSequence/Setup/SequenceCreator.php   |   0
 .../Test/Unit/Model/BuilderTest.php           |   0
 .../Test/Unit/Model/ManagerTest.php           |   0
 .../Unit/Model/ResourceModel/MetaTest.php     |   0
 .../Unit/Model/ResourceModel/ProfileTest.php  |   0
 .../Test/Unit/Model/SequenceTest.php          |   0
 app/code/Magento/SalesSequence/composer.json  |   0
 app/code/Magento/SalesSequence/etc/module.xml |   0
 app/code/Magento/SalesSequence/i18n/en_US.csv |   0
 .../Magento/SalesSequence/registration.php    |   0
 .../Command/SampleDataDeployCommand.php       |   0
 .../Command/SampleDataRemoveCommand.php       |   0
 .../Command/SampleDataResetCommand.php        |   0
 .../SampleData/Console/CommandList.php        |   0
 .../Magento/SampleData/Model/Dependency.php   |   0
 app/code/Magento/SampleData/README.md         |   0
 .../Magento/SampleData/Setup/InstallData.php  |   0
 .../Command/AbstractSampleDataCommandTest.php |   0
 .../Command/SampleDataDeployCommandTest.php   |   0
 .../Command/SampleDataRemoveCommandTest.php   |   0
 app/code/Magento/SampleData/cli_commands.php  |   0
 app/code/Magento/SampleData/composer.json     |   0
 app/code/Magento/SampleData/etc/di.xml        |   0
 app/code/Magento/SampleData/etc/module.xml    |   0
 app/code/Magento/SampleData/registration.php  |   0
 .../Adapter/Query/Preprocessor/Synonyms.php   |   0
 .../Search/Api/Data/SynonymGroupInterface.php |   0
 .../Magento/Search/Api/SearchInterface.php    |   0
 .../Search/Api/SynonymAnalyzerInterface.php   |   0
 .../Api/SynonymGroupRepositoryInterface.php   |   0
 .../Search/Block/Adminhtml/Dashboard/Last.php |   0
 .../Search/Block/Adminhtml/Dashboard/Top.php  |   0
 .../Search/Block/Adminhtml/Reports/Search.php |   0
 .../Search/Block/Adminhtml/Synonyms.php       |   0
 .../Adminhtml/Synonyms/Edit/BackButton.php    |   0
 .../Adminhtml/Synonyms/Edit/DeleteButton.php  |   0
 .../Adminhtml/Synonyms/Edit/GenericButton.php |   0
 .../Adminhtml/Synonyms/Edit/ResetButton.php   |   0
 .../Synonyms/Edit/SaveAndContinueButton.php   |   0
 .../Adminhtml/Synonyms/Edit/SaveButton.php    |   0
 .../Magento/Search/Block/Adminhtml/Term.php   |   0
 .../Search/Block/Adminhtml/Term/Edit.php      |   0
 .../Search/Block/Adminhtml/Term/Edit/Form.php |   0
 app/code/Magento/Search/Block/Term.php        |   0
 .../Controller/Adminhtml/Synonyms/Delete.php  |   0
 .../Controller/Adminhtml/Synonyms/Edit.php    |   0
 .../Controller/Adminhtml/Synonyms/Index.php   |   0
 .../Adminhtml/Synonyms/MassDelete.php         |   0
 .../Adminhtml/Synonyms/NewAction.php          |   0
 .../Adminhtml/Synonyms/ResultPageBuilder.php  |   0
 .../Controller/Adminhtml/Synonyms/Save.php    |   0
 .../Search/Controller/Adminhtml/Term.php      |   0
 .../Controller/Adminhtml/Term/Delete.php      |   0
 .../Search/Controller/Adminhtml/Term/Edit.php |   0
 .../Adminhtml/Term/ExportSearchCsv.php        |   0
 .../Adminhtml/Term/ExportSearchExcel.php      |   0
 .../Controller/Adminhtml/Term/Index.php       |   0
 .../Controller/Adminhtml/Term/MassDelete.php  |   0
 .../Controller/Adminhtml/Term/NewAction.php   |   0
 .../Controller/Adminhtml/Term/Report.php      |   0
 .../Search/Controller/Adminhtml/Term/Save.php |   0
 .../Search/Controller/Ajax/Suggest.php        |   0
 .../Search/Controller/RegistryConstants.php   |   0
 .../Search/Controller/Term/Popular.php        |   0
 app/code/Magento/Search/Helper/Data.php       |   0
 app/code/Magento/Search/LICENSE.txt           |   0
 app/code/Magento/Search/LICENSE_AFL.txt       |   0
 .../Magento/Search/Model/AdapterFactory.php   |   0
 .../Adminhtml/System/Config/Source/Engine.php |   0
 .../Magento/Search/Model/Autocomplete.php     |   0
 .../Autocomplete/DataProviderInterface.php    |   0
 .../Search/Model/Autocomplete/Item.php        |   0
 .../Search/Model/Autocomplete/ItemFactory.php |   0
 .../Model/Autocomplete/ItemInterface.php      |   0
 .../Search/Model/AutocompleteInterface.php    |   0
 .../Magento/Search/Model/EngineResolver.php   |   0
 app/code/Magento/Search/Model/Query.php       |   0
 .../Magento/Search/Model/QueryFactory.php     |   0
 .../Search/Model/QueryFactoryInterface.php    |   0
 .../Magento/Search/Model/QueryInterface.php   |   0
 app/code/Magento/Search/Model/QueryResult.php |   0
 .../Search/Model/ResourceModel/Query.php      |   0
 .../Model/ResourceModel/Query/Collection.php  |   0
 .../Model/ResourceModel/SynonymGroup.php      |   0
 .../ResourceModel/SynonymGroup/Collection.php |   0
 .../Model/ResourceModel/SynonymReader.php     |   0
 app/code/Magento/Search/Model/Search.php      |   0
 .../Search/Model/SearchCollectionFactory.php  |   0
 .../Model/SearchCollectionInterface.php       |   0
 .../Magento/Search/Model/SearchEngine.php     |   0
 .../Search/Model/SearchEngine/Config.php      |   0
 .../Search/Model/SearchEngine/Config/Data.php |   0
 .../Search/Model/SearchEngine/MenuBuilder.php |   0
 .../Search/Model/Synonym/DataProvider.php     |   0
 .../Model/Synonym/MergeConflictException.php  |   0
 .../Magento/Search/Model/SynonymAnalyzer.php  |   0
 .../Magento/Search/Model/SynonymGroup.php     |   0
 .../Search/Model/SynonymGroupRepository.php   |   0
 .../Magento/Search/Model/SynonymReader.php    |   0
 app/code/Magento/Search/README.md             |   0
 .../Magento/Search/Setup/InstallSchema.php    |   0
 .../Magento/Search/Setup/UpgradeSchema.php    |   0
 .../Query/Preprocessor/SynonymsTest.php       |   0
 .../Controller/Adminhtml/Ajax/SuggestTest.php |   0
 .../Adminhtml/Synonyms/DeleteTest.php         |   0
 .../Adminhtml/Term/ExportSearchCsvTest.php    |   0
 .../Controller/Adminhtml/Term/IndexTest.php   |   0
 .../Adminhtml/Term/MassDeleteTest.php         |   0
 .../Controller/Adminhtml/Term/ReportTest.php  |   0
 .../Controller/Adminhtml/Term/SaveTest.php    |   0
 .../Search/Test/Unit/Helper/DataTest.php      |   0
 .../Test/Unit/Model/AdapterFactoryTest.php    |   0
 .../Test/Unit/Model/AutocompleteTest.php      |   0
 .../Test/Unit/Model/QueryFactoryTest.php      |   0
 .../Test/Unit/Model/QueryResultTest.php       |   0
 .../Search/Test/Unit/Model/QueryTest.php      |   0
 .../Unit/Model/ResourceModel/QueryTest.php    |   0
 .../Model/ResourceModel/SynonymGroupTest.php  |   0
 .../Unit/Model/SearchEngine/ConfigTest.php    |   0
 .../Model/SearchEngine/MenuBuilderTest.php    |   0
 .../Test/Unit/Model/SearchEngineTest.php      |   0
 .../Unit/Model/SynonymGroupRepositoryTest.php |   0
 .../Test/Unit/Model/SynonymGroupTest.php      |   0
 .../Listing/Column/Scope/Options.php          |   0
 .../Listing/Column/Store/Options.php          |   0
 .../Ui/Component/Listing/Column/StoreView.php |   0
 .../Listing/Column/SynonymActions.php         |   0
 .../Ui/Component/Listing/Column/Website.php   |   0
 .../Listing/Column/Website/Options.php        |   0
 app/code/Magento/Search/composer.json         |   0
 app/code/Magento/Search/etc/acl.xml           |   0
 .../Magento/Search/etc/adminhtml/menu.xml     |   0
 .../Magento/Search/etc/adminhtml/routes.xml   |   0
 .../Magento/Search/etc/adminhtml/system.xml   |   0
 .../Search/etc/frontend/page_types.xml        |   0
 .../Magento/Search/etc/frontend/routes.xml    |   0
 app/code/Magento/Search/etc/module.xml        |   0
 app/code/Magento/Search/etc/search_engine.xml |   0
 app/code/Magento/Search/etc/webapi.xml        |   0
 app/code/Magento/Search/i18n/de_DE.csv        |   0
 app/code/Magento/Search/i18n/en_US.csv        |   0
 app/code/Magento/Search/i18n/es_ES.csv        |   0
 app/code/Magento/Search/i18n/fr_FR.csv        |   0
 app/code/Magento/Search/i18n/nl_NL.csv        |   0
 app/code/Magento/Search/i18n/pt_BR.csv        |   0
 app/code/Magento/Search/i18n/zh_Hans_CN.csv   |   0
 app/code/Magento/Search/registration.php      |   0
 .../layout/adminhtml_dashboard_index.xml      |   0
 .../adminhtml/layout/search_synonyms_edit.xml |   0
 .../layout/search_synonyms_index.xml          |   0
 .../adminhtml/layout/search_synonyms_new.xml  |   0
 .../adminhtml/layout/search_term_block.xml    |   0
 .../adminhtml/layout/search_term_edit.xml     |   0
 .../layout/search_term_exportsearchcsv.xml    |   0
 .../layout/search_term_exportsearchexcel.xml  |   0
 .../layout/search_term_grid_block.xml         |   0
 .../adminhtml/layout/search_term_index.xml    |   0
 .../adminhtml/layout/search_term_report.xml   |   0
 .../layout/search_term_report_block.xml       |   0
 .../ui_component/search_synonyms_form.xml     |   0
 .../ui_component/search_synonyms_grid.xml     |   0
 .../Search/view/frontend/layout/default.xml   |   0
 .../frontend/layout/search_term_popular.xml   |   0
 .../Search/view/frontend/requirejs-config.js  |   0
 .../view/frontend/templates/form.mini.phtml   |   0
 .../Search/view/frontend/templates/term.phtml |   0
 .../Search/view/frontend/web/form-mini.js     |   0
 .../Block/Adminhtml/Session/Activity.php      |   0
 .../Controller/Adminhtml/Session/Activity.php |   0
 .../Adminhtml/Session/LogoutAll.php           |   0
 app/code/Magento/Security/LICENSE.txt         |   0
 app/code/Magento/Security/LICENSE_AFL.txt     |   0
 .../Security/Model/AdminSessionInfo.php       |   0
 .../Security/Model/AdminSessionsManager.php   |   0
 app/code/Magento/Security/Model/Config.php    |   0
 .../Model/Config/Source/ResetMethod.php       |   0
 .../Security/Model/ConfigInterface.php        |   0
 .../Model/PasswordResetRequestEvent.php       |   0
 .../Model/Plugin/AccountManagement.php        |   0
 .../Magento/Security/Model/Plugin/Auth.php    |   0
 .../Security/Model/Plugin/AuthSession.php     |   0
 .../Security/Model/Plugin/LoginController.php |   0
 .../Model/ResourceModel/AdminSessionInfo.php  |   0
 .../AdminSessionInfo/Collection.php           |   0
 .../PasswordResetRequestEvent.php             |   0
 .../PasswordResetRequestEvent/Collection.php  |   0
 .../CollectionFactory.php                     |   0
 .../Model/SecurityChecker/Frequency.php       |   0
 .../Model/SecurityChecker/Quantity.php        |   0
 .../SecurityCheckerInterface.php              |   0
 .../Magento/Security/Model/SecurityCookie.php |   0
 .../Security/Model/SecurityManager.php        |   0
 app/code/Magento/Security/README.md           |   0
 .../Magento/Security/Setup/InstallSchema.php  |   0
 .../Magento/Security/Setup/UpgradeSchema.php  |   0
 .../Block/Adminhtml/Session/ActivityTest.php  |   0
 .../Adminhtml/Session/ActivityTest.php        |   0
 .../Adminhtml/Session/LogoutAllTest.php       |   0
 .../Test/Unit/Model/AdminSessionInfoTest.php  |   0
 .../Unit/Model/AdminSessionsManagerTest.php   |   0
 .../Model/Config/Source/ResetMethodTest.php   |   0
 .../Security/Test/Unit/Model/ConfigTest.php   |   0
 .../Model/Plugin/AccountManagementTest.php    |   0
 .../Unit/Model/Plugin/AuthSessionTest.php     |   0
 .../Test/Unit/Model/Plugin/AuthTest.php       |   0
 .../Unit/Model/Plugin/LoginControllerTest.php |   0
 .../AdminSessionInfo/CollectionTest.php       |   0
 .../ResourceModel/AdminSessionInfoTest.php    |   0
 .../CollectionFactoryTest.php                 |   0
 .../CollectionTest.php                        |   0
 .../PasswordResetRequestEventTest.php         |   0
 .../Model/SecurityChecker/FrequencyTest.php   |   0
 .../Model/SecurityChecker/QuantityTest.php    |   0
 .../Test/Unit/Model/SecurityCookieTest.php    |   0
 .../Test/Unit/Model/SecurityManagerTest.php   |   0
 app/code/Magento/Security/composer.json       |   0
 .../Magento/Security/etc/adminhtml/di.xml     |   0
 .../Magento/Security/etc/adminhtml/routes.xml |   0
 .../Magento/Security/etc/adminhtml/system.xml |   0
 app/code/Magento/Security/etc/config.xml      |   0
 app/code/Magento/Security/etc/crontab.xml     |   0
 app/code/Magento/Security/etc/di.xml          |   0
 app/code/Magento/Security/etc/module.xml      |   0
 app/code/Magento/Security/i18n/en_US.csv      |   0
 app/code/Magento/Security/registration.php    |   0
 .../view/adminhtml/layout/default.xml         |   0
 .../layout/security_session_activity.xml      |   0
 .../adminhtml/page_layout/admin-popup.xml     |   0
 .../view/adminhtml/requirejs-config.js        |   0
 .../templates/page/activity_link.phtml        |   0
 .../templates/session/activity.phtml          |   0
 .../view/adminhtml/web/css/activity.css       |   0
 .../view/adminhtml/web/js/confirm-redirect.js |   0
 .../Block/Plugin/Catalog/Product/View.php     |   0
 app/code/Magento/SendFriend/Block/Send.php    |   0
 .../Magento/SendFriend/Controller/Product.php |   0
 .../SendFriend/Controller/Product/Send.php    |   0
 .../Controller/Product/Sendmail.php           |   0
 app/code/Magento/SendFriend/Helper/Data.php   |   0
 app/code/Magento/SendFriend/LICENSE.txt       |   0
 app/code/Magento/SendFriend/LICENSE_AFL.txt   |   0
 .../Model/ResourceModel/SendFriend.php        |   0
 .../ResourceModel/SendFriend/Collection.php   |   0
 .../Magento/SendFriend/Model/SendFriend.php   |   0
 .../SendFriend/Model/Source/Checktype.php     |   0
 app/code/Magento/SendFriend/README.md         |   0
 .../SendFriend/Setup/InstallSchema.php        |   0
 .../Block/Plugin/Catalog/Product/ViewTest.php |   0
 .../SendFriend/Test/Unit/Block/SendTest.php   |   0
 .../Test/Unit/Controller/Product/SendTest.php |   0
 .../Unit/Controller/Product/SendmailTest.php  |   0
 .../Test/Unit/Model/SendFriendTest.php        |   0
 app/code/Magento/SendFriend/composer.json     |   0
 .../SendFriend/etc/adminhtml/system.xml       |   0
 app/code/Magento/SendFriend/etc/config.xml    |   0
 .../SendFriend/etc/email_templates.xml        |   0
 .../Magento/SendFriend/etc/frontend/di.xml    |   0
 .../SendFriend/etc/frontend/page_types.xml    |   0
 .../SendFriend/etc/frontend/routes.xml        |   0
 app/code/Magento/SendFriend/etc/module.xml    |   0
 app/code/Magento/SendFriend/i18n/en_US.csv    |   0
 app/code/Magento/SendFriend/registration.php  |   0
 .../view/frontend/email/product_share.html    |   0
 .../layout/sendfriend_product_send.xml        |   0
 .../view/frontend/templates/send.phtml        |   0
 .../view/frontend/web/back-event.js           |   0
 .../Shipping/Block/Adminhtml/Create.php       |   0
 .../Shipping/Block/Adminhtml/Create/Form.php  |   0
 .../Shipping/Block/Adminhtml/Create/Items.php |   0
 .../Block/Adminhtml/Order/Packaging.php       |   0
 .../Block/Adminhtml/Order/Packaging/Grid.php  |   0
 .../Block/Adminhtml/Order/Tracking.php        |   0
 .../Adminhtml/Order/Tracking/Invoice.php      |   0
 .../Block/Adminhtml/Order/Tracking/View.php   |   0
 .../Magento/Shipping/Block/Adminhtml/View.php |   0
 .../Block/Adminhtml/View/Comments.php         |   0
 .../Shipping/Block/Adminhtml/View/Form.php    |   0
 .../Shipping/Block/Adminhtml/View/Items.php   |   0
 app/code/Magento/Shipping/Block/Items.php     |   0
 .../Magento/Shipping/Block/Order/Shipment.php |   0
 .../Magento/Shipping/Block/Tracking/Ajax.php  |   0
 .../Magento/Shipping/Block/Tracking/Link.php  |   0
 .../Magento/Shipping/Block/Tracking/Popup.php |   0
 .../Adminhtml/Order/Shipment/AddComment.php   |   0
 .../Adminhtml/Order/Shipment/AddTrack.php     |   0
 .../Adminhtml/Order/Shipment/CreateLabel.php  |   0
 .../Adminhtml/Order/Shipment/Email.php        |   0
 .../Order/Shipment/GetShippingItemsGrid.php   |   0
 .../Adminhtml/Order/Shipment/Index.php        |   0
 .../Order/Shipment/MassPrintShippingLabel.php |   0
 .../Adminhtml/Order/Shipment/NewAction.php    |   0
 .../Adminhtml/Order/Shipment/Pdfshipments.php |   0
 .../Adminhtml/Order/Shipment/PrintAction.php  |   0
 .../Adminhtml/Order/Shipment/PrintLabel.php   |   0
 .../Adminhtml/Order/Shipment/PrintPackage.php |   0
 .../Adminhtml/Order/Shipment/RemoveTrack.php  |   0
 .../Adminhtml/Order/Shipment/Save.php         |   0
 .../Adminhtml/Order/Shipment/Start.php        |   0
 .../Adminhtml/Order/Shipment/View.php         |   0
 .../Adminhtml/Order/ShipmentLoader.php        |   0
 .../Shipment/MassPrintShippingLabel.php       |   0
 .../Shipping/Controller/Tracking/Popup.php    |   0
 app/code/Magento/Shipping/Helper/Carrier.php  |   0
 app/code/Magento/Shipping/Helper/Data.php     |   0
 app/code/Magento/Shipping/LICENSE.txt         |   0
 app/code/Magento/Shipping/LICENSE_AFL.txt     |   0
 .../Model/Carrier/AbstractCarrier.php         |   0
 .../Carrier/AbstractCarrierInterface.php      |   0
 .../Model/Carrier/AbstractCarrierOnline.php   |   0
 .../Model/Carrier/CarrierInterface.php        |   0
 .../Model/Carrier/Source/GenericDefault.php   |   0
 .../Model/Carrier/Source/GenericInterface.php |   0
 .../Magento/Shipping/Model/CarrierFactory.php |   0
 .../Model/CarrierFactoryInterface.php         |   0
 app/code/Magento/Shipping/Model/Config.php    |   0
 .../Model/Config/Source/Allmethods.php        |   0
 .../Config/Source/Allspecificcountries.php    |   0
 .../Model/Config/Source/Online/Mode.php       |   0
 .../Config/Source/Online/Requesttype.php      |   0
 app/code/Magento/Shipping/Model/Info.php      |   0
 app/code/Magento/Shipping/Model/Observer.php  |   0
 .../Shipping/Model/Order/Pdf/Packaging.php    |   0
 .../Magento/Shipping/Model/Order/Track.php    |   0
 .../Magento/Shipping/Model/Rate/Result.php    |   0
 .../ResourceModel/Order/Track/Collection.php  |   0
 .../Shipping/Model/Shipment/Request.php       |   0
 .../Model/Shipment/ReturnShipment.php         |   0
 .../Shipping/Model/ShipmentNotifier.php       |   0
 app/code/Magento/Shipping/Model/Shipping.php  |   0
 .../Model/Shipping/LabelGenerator.php         |   0
 .../Shipping/Model/Shipping/Labels.php        |   0
 .../Shipping/Model/Simplexml/Element.php      |   0
 .../Shipping/Model/Source/HandlingAction.php  |   0
 .../Shipping/Model/Source/HandlingType.php    |   0
 .../Shipping/Model/Tracking/Result.php        |   0
 .../Model/Tracking/Result/AbstractResult.php  |   0
 .../Shipping/Model/Tracking/Result/Error.php  |   0
 .../Shipping/Model/Tracking/Result/Status.php |   0
 app/code/Magento/Shipping/README.md           |   0
 .../Block/Adminhtml/Order/TrackingTest.php    |   0
 .../Order/Shipment/AddCommentTest.php         |   0
 .../Adminhtml/Order/Shipment/AddTrackTest.php |   0
 .../Order/Shipment/CreateLabelTest.php        |   0
 .../Adminhtml/Order/Shipment/EmailTest.php    |   0
 .../Shipment/GetShippingItemsGridTest.php     |   0
 .../Order/Shipment/NewActionTest.php          |   0
 .../Order/Shipment/PrintLabelTest.php         |   0
 .../Order/Shipment/PrintPackageTest.php       |   0
 .../Order/Shipment/RemoveTrackTest.php        |   0
 .../Adminhtml/Order/Shipment/SaveTest.php     |   0
 .../Adminhtml/Order/Shipment/ViewTest.php     |   0
 .../Adminhtml/Order/ShipmentLoaderTest.php    |   0
 .../Shipping/Test/Unit/Helper/CarrierTest.php |   0
 .../Carrier/AbstractCarrierOnline/xxe-xml.txt |   0
 .../Carrier/AbstractCarrierOnlineTest.php     |   0
 .../Test/Unit/Model/Order/TrackTest.php       |   0
 .../Test/Unit/Model/ShipmentNotifierTest.php  |   0
 .../Shipping/Test/Unit/Model/ShipmentTest.php |   0
 .../Model/Shipping/LabelGeneratorTest.php     |   0
 .../Test/Unit/Model/Shipping/LabelsTest.php   |   0
 .../Shipping/Test/Unit/Model/ShippingTest.php |   0
 .../Test/Unit/Model/Simplexml/ElementTest.php |   0
 app/code/Magento/Shipping/composer.json       |   0
 app/code/Magento/Shipping/etc/acl.xml         |   0
 .../Magento/Shipping/etc/adminhtml/di.xml     |   0
 .../Magento/Shipping/etc/adminhtml/routes.xml |   0
 .../Magento/Shipping/etc/adminhtml/system.xml |   0
 app/code/Magento/Shipping/etc/config.xml      |   0
 app/code/Magento/Shipping/etc/crontab.xml     |   0
 app/code/Magento/Shipping/etc/di.xml          |   0
 .../Shipping/etc/frontend/page_types.xml      |   0
 .../Magento/Shipping/etc/frontend/routes.xml  |   0
 app/code/Magento/Shipping/etc/module.xml      |   0
 app/code/Magento/Shipping/i18n/en_US.csv      |   0
 app/code/Magento/Shipping/registration.php    |   0
 .../adminhtml_order_shipment_addcomment.xml   |   0
 .../adminhtml_order_shipment_addtrack.xml     |   0
 .../layout/adminhtml_order_shipment_new.xml   |   0
 .../adminhtml_order_shipment_removetrack.xml  |   0
 .../layout/adminhtml_order_shipment_view.xml  |   0
 .../layout/sales_order_invoice_new.xml        |   0
 .../adminhtml/layout/sales_order_view.xml     |   0
 .../adminhtml/templates/create/form.phtml     |   0
 .../adminhtml/templates/create/items.phtml    |   0
 .../create/items/renderer/default.phtml       |   0
 .../templates/order/packaging/grid.phtml      |   0
 .../templates/order/packaging/packed.phtml    |   0
 .../templates/order/packaging/popup.phtml     |   0
 .../order/packaging/popup_content.phtml       |   0
 .../adminhtml/templates/order/tracking.phtml  |   0
 .../templates/order/tracking/view.phtml       |   0
 .../adminhtml/templates/order/view/info.phtml |   0
 .../view/adminhtml/templates/view/form.phtml  |   0
 .../view/adminhtml/templates/view/items.phtml |   0
 .../view/items/renderer/default.phtml         |   0
 .../view/adminhtml/web/js/packages.js         |   0
 .../view/adminhtml/web/order/packaging.js     |   0
 .../frontend/layout/checkout_index_index.xml  |   0
 .../frontend/layout/sales_guest_reorder.xml   |   0
 .../frontend/layout/sales_guest_shipment.xml  |   0
 .../view/frontend/layout/sales_guest_view.xml |   0
 .../frontend/layout/sales_order_reorder.xml   |   0
 .../frontend/layout/sales_order_shipment.xml  |   0
 .../view/frontend/layout/sales_order_view.xml |   0
 .../layout/shipping_tracking_popup.xml        |   0
 .../view/frontend/templates/items.phtml       |   0
 .../frontend/templates/order/shipment.phtml   |   0
 .../frontend/templates/tracking/details.phtml |   0
 .../frontend/templates/tracking/link.phtml    |   0
 .../frontend/templates/tracking/popup.phtml   |   0
 .../templates/tracking/progress.phtml         |   0
 .../view/frontend/web/js/model/config.js      |   0
 .../view/checkout/shipping/shipping-policy.js |   0
 .../checkout/shipping/shipping-policy.html    |   0
 .../Api/CaseCreationServiceInterface.php      |   0
 .../Signifyd/Api/CaseManagementInterface.php  |   0
 .../Signifyd/Api/CaseRepositoryInterface.php  |   0
 .../Signifyd/Api/Data/CaseInterface.php       |   0
 .../Api/Data/CaseSearchResultsInterface.php   |   0
 .../GuaranteeCancelingServiceInterface.php    |   0
 .../Api/GuaranteeCreationServiceInterface.php |   0
 .../Signifyd/Block/Adminhtml/CaseInfo.php     |   0
 .../System/Config/Field/WebhookUrl.php        |   0
 .../Adminhtml/System/Config/Fieldset/Info.php |   0
 .../Magento/Signifyd/Block/Fingerprint.php    |   0
 .../Signifyd/Controller/Webhooks/Handler.php  |   0
 app/code/Magento/Signifyd/LICENSE.txt         |   0
 app/code/Magento/Signifyd/LICENSE_AFL.txt     |   0
 .../Magento/Signifyd/Model/CaseEntity.php     |   0
 .../Magento/Signifyd/Model/CaseManagement.php |   0
 .../Magento/Signifyd/Model/CaseRepository.php |   0
 .../Model/CaseServices/CreationService.php    |   0
 .../CaseServices/StubUpdatingService.php      |   0
 .../Model/CaseServices/UpdatingService.php    |   0
 .../CaseServices/UpdatingServiceFactory.php   |   0
 .../CaseServices/UpdatingServiceInterface.php |   0
 .../Signifyd/Model/CommentsHistoryUpdater.php |   0
 app/code/Magento/Signifyd/Model/Config.php    |   0
 .../Magento/Signifyd/Model/CustomerOrders.php |   0
 .../Guarantee/CancelGuaranteeAbility.php      |   0
 .../Model/Guarantee/CancelingService.php      |   0
 .../Guarantee/CreateGuaranteeAbility.php      |   0
 .../Model/Guarantee/CreationService.php       |   0
 .../Model/MessageGenerators/CaseRescore.php   |   0
 .../MessageGenerators/GeneratorException.php  |   0
 .../MessageGenerators/GeneratorFactory.php    |   0
 .../MessageGenerators/GeneratorInterface.php  |   0
 .../MessageGenerators/PatternGenerator.php    |   0
 .../Signifyd/Model/OrderStateService.php      |   0
 .../PaymentMethodMapper.php                   |   0
 .../XmlToArrayConfigConverter.php             |   0
 .../Model/PaymentVerificationFactory.php      |   0
 .../Model/PredefinedVerificationCode.php      |   0
 .../QuoteSession/Adminhtml/BackendSession.php |   0
 .../Model/QuoteSession/FrontendSession.php    |   0
 .../QuoteSession/QuoteSessionInterface.php    |   0
 .../Model/ResourceModel/CaseEntity.php        |   0
 .../ResourceModel/CaseEntity/Collection.php   |   0
 .../NotSyncedOrderIdListProvider.php          |   0
 .../Model/SalesOrderGrid/OrderGridUpdater.php |   0
 .../SignifydGateway/ApiCallException.php      |   0
 .../Model/SignifydGateway/ApiClient.php       |   0
 .../Client/HttpClientFactory.php              |   0
 .../SignifydGateway/Client/RequestBuilder.php |   0
 .../SignifydGateway/Client/RequestSender.php  |   0
 .../Client/ResponseHandler.php                |   0
 .../SignifydGateway/Debugger/BlackHole.php    |   0
 .../Debugger/DebuggerFactory.php              |   0
 .../Debugger/DebuggerInterface.php            |   0
 .../Model/SignifydGateway/Debugger/Log.php    |   0
 .../Model/SignifydGateway/Gateway.php         |   0
 .../SignifydGateway/GatewayException.php      |   0
 .../Request/AddressBuilder.php                |   0
 .../SignifydGateway/Request/CardBuilder.php   |   0
 .../Request/ClientVersionBuilder.php          |   0
 .../Request/CreateCaseBuilder.php             |   0
 .../Request/CreateCaseBuilderInterface.php    |   0
 .../Request/PurchaseBuilder.php               |   0
 .../Request/RecipientBuilder.php              |   0
 .../SignifydGateway/Request/SellerBuilder.php |   0
 .../Request/UserAccountBuilder.php            |   0
 .../Response/WebhookMessage.php               |   0
 .../Response/WebhookMessageReader.php         |   0
 .../Response/WebhookRequest.php               |   0
 .../Response/WebhookRequestValidator.php      |   0
 .../Signifyd/Model/SignifydOrderSessionId.php |   0
 .../Magento/Signifyd/Observer/PlaceOrder.php  |   0
 .../Magento/Signifyd/Plugin/OrderPlugin.php   |   0
 .../Magento/Signifyd/Plugin/PaymentPlugin.php |   0
 app/code/Magento/Signifyd/README.md           |   0
 .../Magento/Signifyd/Setup/InstallSchema.php  |   0
 .../Unit/Block/Adminhtml/CaseInfoTest.php     |   0
 .../Unit/Controller/Webhooks/HandlerTest.php  |   0
 .../UpdatingServiceFactoryTest.php            |   0
 .../CaseServices/UpdatingServiceTest.php      |   0
 .../Unit/Model/CommentsHistoryUpdaterTest.php |   0
 .../Test/Unit/Model/CustomerOrdersTest.php    |   0
 .../Guarantee/CancelGuaranteeAbilityTest.php  |   0
 .../Model/Guarantee/CancelingServiceTest.php  |   0
 .../Guarantee/CreateGuaranteeAbilityTest.php  |   0
 .../Model/Guarantee/CreationServiceTest.php   |   0
 .../MessageGenerators/CaseRescoreTest.php     |   0
 .../GeneratorFactoryTest.php                  |   0
 .../PatternGeneratorTest.php                  |   0
 .../Test/Unit/Model/OrderStateServiceTest.php |   0
 .../XmlToArrayConfigConverterTest.php         |   0
 .../_files/expected_array.php                 |   0
 .../_files/signifyd_payment_mapping.xml       |   0
 .../Model/PaymentVerificationFactoryTest.php  |   0
 .../SalesOrderGrid/OrderGridUpdaterTest.php   |   0
 .../Client/HttpClientFactoryTest.php          |   0
 .../Client/ResponseHandlerTest.php            |   0
 .../Model/SignifydGateway/GatewayTest.php     |   0
 .../Response/WebhookMessageReaderTest.php     |   0
 .../Response/WebhookRequestValidatorTest.php  |   0
 .../Unit/Model/SignifydOrderSessionIdTest.php |   0
 .../Test/Unit/Observer/PlaceOrderTest.php     |   0
 .../Listing/Column/Guarantee/Options.php      |   0
 app/code/Magento/Signifyd/composer.json       |   0
 app/code/Magento/Signifyd/etc/acl.xml         |   0
 .../Magento/Signifyd/etc/adminhtml/di.xml     |   0
 .../Magento/Signifyd/etc/adminhtml/routes.xml |   0
 .../Magento/Signifyd/etc/adminhtml/system.xml |   0
 app/code/Magento/Signifyd/etc/config.xml      |   0
 app/code/Magento/Signifyd/etc/di.xml          |   0
 app/code/Magento/Signifyd/etc/events.xml      |   0
 app/code/Magento/Signifyd/etc/frontend/di.xml |   0
 .../Magento/Signifyd/etc/frontend/routes.xml  |   0
 app/code/Magento/Signifyd/etc/module.xml      |   0
 .../Signifyd/etc/signifyd_payment_mapping.xml |   0
 .../Signifyd/etc/signifyd_payment_mapping.xsd |   0
 app/code/Magento/Signifyd/i18n/en_US.csv      |   0
 app/code/Magento/Signifyd/registration.php    |   0
 .../adminhtml/layout/sales_order_view.xml     |   0
 .../view/adminhtml/templates/case_info.phtml  |   0
 .../ui_component/sales_order_grid.xml         |   0
 .../view/adminhtml/web/images/logo.png        | Bin
 .../frontend/layout/checkout_cart_index.xml   |   0
 .../frontend/layout/checkout_index_index.xml  |   0
 .../view/frontend/templates/fingerprint.phtml |   0
 .../Magento/Sitemap/Block/Adminhtml/Edit.php  |   0
 .../Sitemap/Block/Adminhtml/Edit/Form.php     |   0
 .../Block/Adminhtml/Grid/Renderer/Action.php  |   0
 .../Block/Adminhtml/Grid/Renderer/Link.php    |   0
 .../Block/Adminhtml/Grid/Renderer/Time.php    |   0
 .../Sitemap/Block/Adminhtml/Sitemap.php       |   0
 app/code/Magento/Sitemap/Block/Robots.php     |   0
 .../Sitemap/Controller/Adminhtml/Sitemap.php  |   0
 .../Controller/Adminhtml/Sitemap/Delete.php   |   0
 .../Controller/Adminhtml/Sitemap/Edit.php     |   0
 .../Controller/Adminhtml/Sitemap/Generate.php |   0
 .../Controller/Adminhtml/Sitemap/Index.php    |   0
 .../Adminhtml/Sitemap/NewAction.php           |   0
 .../Controller/Adminhtml/Sitemap/Save.php     |   0
 app/code/Magento/Sitemap/Helper/Data.php      |   0
 app/code/Magento/Sitemap/LICENSE.txt          |   0
 app/code/Magento/Sitemap/LICENSE_AFL.txt      |   0
 .../Sitemap/Model/Config/Backend/Priority.php |   0
 .../Sitemap/Model/Config/Backend/Robots.php   |   0
 .../Sitemap/Model/Config/Source/Frequency.php |   0
 app/code/Magento/Sitemap/Model/Observer.php   |   0
 .../Model/ResourceModel/Catalog/Category.php  |   0
 .../Model/ResourceModel/Catalog/Product.php   |   0
 .../Sitemap/Model/ResourceModel/Cms/Page.php  |   0
 .../Sitemap/Model/ResourceModel/Sitemap.php   |   0
 .../ResourceModel/Sitemap/Collection.php      |   0
 app/code/Magento/Sitemap/Model/Sitemap.php    |   0
 .../Source/Product/Image/IncludeImage.php     |   0
 app/code/Magento/Sitemap/README.md            |   0
 .../Magento/Sitemap/Setup/InstallSchema.php   |   0
 .../Sitemap/Test/Unit/Block/RobotsTest.php    |   0
 .../Adminhtml/Sitemap/DeleteTest.php          |   0
 .../Controller/Adminhtml/Sitemap/SaveTest.php |   0
 .../Sitemap/Test/Unit/Helper/DataTest.php     |   0
 .../Unit/Model/Config/Backend/RobotsTest.php  |   0
 .../Sitemap/Test/Unit/Model/ObserverTest.php  |   0
 .../Sitemap/Test/Unit/Model/SitemapTest.php   |   0
 .../Test/Unit/Model/_files/sitemap-1-1.xml    |   0
 .../Test/Unit/Model/_files/sitemap-1-2.xml    |   0
 .../Test/Unit/Model/_files/sitemap-1-3.xml    |   0
 .../Test/Unit/Model/_files/sitemap-1-4.xml    |   0
 .../Test/Unit/Model/_files/sitemap-index.xml  |   0
 .../Test/Unit/Model/_files/sitemap-single.xml |   0
 app/code/Magento/Sitemap/composer.json        |   0
 app/code/Magento/Sitemap/etc/acl.xml          |   0
 .../Magento/Sitemap/etc/adminhtml/menu.xml    |   0
 .../Magento/Sitemap/etc/adminhtml/routes.xml  |   0
 .../Magento/Sitemap/etc/adminhtml/system.xml  |   0
 app/code/Magento/Sitemap/etc/config.xml       |   0
 app/code/Magento/Sitemap/etc/crontab.xml      |   0
 app/code/Magento/Sitemap/etc/di.xml           |   0
 .../Magento/Sitemap/etc/email_templates.xml   |   0
 app/code/Magento/Sitemap/etc/module.xml       |   0
 app/code/Magento/Sitemap/i18n/en_US.csv       |   0
 app/code/Magento/Sitemap/registration.php     |   0
 .../adminhtml/email/generate_warnings.html    |   0
 .../layout/adminhtml_sitemap_index.xml        |   0
 .../adminhtml_sitemap_index_grid_block.xml    |   0
 .../frontend/layout/robots_index_index.xml    |   0
 .../Magento/Store/Api/Data/GroupInterface.php |   0
 .../Store/Api/Data/StoreConfigInterface.php   |   0
 .../Magento/Store/Api/Data/StoreInterface.php |   0
 .../Store/Api/Data/WebsiteInterface.php       |   0
 .../Store/Api/GroupRepositoryInterface.php    |   0
 .../Store/Api/StoreConfigManagerInterface.php |   0
 .../Store/Api/StoreCookieManagerInterface.php |   0
 .../Store/Api/StoreManagementInterface.php    |   0
 .../Store/Api/StoreRepositoryInterface.php    |   0
 .../Store/Api/StoreResolverInterface.php      |   0
 .../Api/StoreWebsiteRelationInterface.php     |   0
 .../Store/Api/WebsiteManagementInterface.php  |   0
 .../Store/Api/WebsiteRepositoryInterface.php  |   0
 .../Store/App/Action/Plugin/Context.php       |   0
 .../Store/App/Action/Plugin/StoreCheck.php    |   0
 .../App/Config/Source/InitialConfigSource.php |   0
 .../App/Config/Source/RuntimeConfigSource.php |   0
 .../Magento/Store/App/Config/Type/Scopes.php  |   0
 .../FrontController/Plugin/DefaultStore.php   |   0
 .../Plugin/RequestPreprocessor.php            |   0
 .../Store/App/Request/PathInfoProcessor.php   |   0
 .../Magento/Store/App/Response/Redirect.php   |   0
 .../Magento/Store/Block/Store/Switcher.php    |   0
 app/code/Magento/Store/Block/Switcher.php     |   0
 .../Console/Command/StoreListCommand.php      |   0
 .../Console/Command/WebsiteListCommand.php    |   0
 .../Store/Controller/Store/SwitchAction.php   |   0
 app/code/Magento/Store/LICENSE.txt            |   0
 app/code/Magento/Store/LICENSE_AFL.txt        |   0
 .../Magento/Store/Model/Address/Renderer.php  |   0
 .../Magento/Store/Model/App/Emulation.php     |   0
 .../Model/Argument/Interpreter/ServiceUrl.php |   0
 .../Magento/Store/Model/BaseUrlChecker.php    |   0
 .../Magento/Store/Model/Config/Converter.php  |   0
 .../Magento/Store/Model/Config/Importer.php   |   0
 .../Importer/DataDifferenceCalculator.php     |   0
 .../Config/Importer/Processor/Create.php      |   0
 .../Config/Importer/Processor/Delete.php      |   0
 .../Importer/Processor/ProcessorFactory.php   |   0
 .../Importer/Processor/ProcessorInterface.php |   0
 .../Config/Importer/Processor/Update.php      |   0
 .../Store/Model/Config/Placeholder.php        |   0
 .../Store/Model/Config/Processor/Fallback.php |   0
 .../Model/Config/Processor/Placeholder.php    |   0
 .../Reader/Source/Dynamic/DefaultScope.php    |   0
 .../Config/Reader/Source/Dynamic/Store.php    |   0
 .../Config/Reader/Source/Dynamic/Website.php  |   0
 .../Reader/Source/Initial/DefaultScope.php    |   0
 .../Config/Reader/Source/Initial/Store.php    |   0
 .../Config/Reader/Source/Initial/Website.php  |   0
 .../Magento/Store/Model/Config/StoreView.php  |   0
 .../Magento/Store/Model/Config/Validator.php  |   0
 .../Magento/Store/Model/Data/StoreConfig.php  |   0
 .../Store/Model/DefaultStoreScopeProvider.php |   0
 app/code/Magento/Store/Model/Group.php        |   0
 .../Magento/Store/Model/GroupRepository.php   |   0
 .../Store/Model/HeaderProvider/Hsts.php       |   0
 .../Model/HeaderProvider/UpgradeInsecure.php  |   0
 app/code/Magento/Store/Model/Information.php  |   0
 .../Model/Message/EmptyGroupCategory.php      |   0
 app/code/Magento/Store/Model/PathConfig.php   |   0
 .../Store/Model/Plugin/StoreCookie.php        |   0
 .../Magento/Store/Model/Resolver/Group.php    |   0
 .../Magento/Store/Model/Resolver/Store.php    |   0
 .../Magento/Store/Model/Resolver/Website.php  |   0
 .../Config/Collection/Scoped.php              |   0
 .../Store/Model/ResourceModel/Group.php       |   0
 .../Model/ResourceModel/Group/Collection.php  |   0
 .../Store/Model/ResourceModel/Store.php       |   0
 .../Model/ResourceModel/Store/Collection.php  |   0
 .../ResourceModel/StoreWebsiteRelation.php    |   0
 .../Store/Model/ResourceModel/Website.php     |   0
 .../ResourceModel/Website/Collection.php      |   0
 .../ResourceModel/Website/Grid/Collection.php |   0
 .../Store/Model/ScopeFallbackResolver.php     |   0
 .../Magento/Store/Model/ScopeInterface.php    |   0
 .../Magento/Store/Model/ScopeTreeProvider.php |   0
 .../Store/Model/ScopeTypeNormalizer.php       |   0
 .../Magento/Store/Model/ScopeValidator.php    |   0
 .../Model/Service/StoreConfigManager.php      |   0
 app/code/Magento/Store/Model/Store.php        |   0
 .../Store/Model/StoreCookieManager.php        |   0
 .../Store/Model/StoreIsInactiveException.php  |   0
 .../Magento/Store/Model/StoreManagement.php   |   0
 app/code/Magento/Store/Model/StoreManager.php |   0
 .../Store/Model/StoreManagerInterface.php     |   0
 .../Magento/Store/Model/StoreRepository.php   |   0
 .../Magento/Store/Model/StoreResolver.php     |   0
 .../Store/Model/StoreResolver/Group.php       |   0
 .../Model/StoreResolver/ReaderInterface.php   |   0
 .../Store/Model/StoreResolver/ReaderList.php  |   0
 .../Store/Model/StoreResolver/Store.php       |   0
 .../Store/Model/StoreResolver/Website.php     |   0
 .../Store/Model/StoreScopeProvider.php        |   0
 app/code/Magento/Store/Model/StoresConfig.php |   0
 app/code/Magento/Store/Model/System/Store.php |   0
 app/code/Magento/Store/Model/Website.php      |   0
 .../Magento/Store/Model/WebsiteManagement.php |   0
 .../Magento/Store/Model/WebsiteRepository.php |   0
 app/code/Magento/Store/README.md              |   0
 .../Magento/Store/Setup/InstallSchema.php     |   0
 app/code/Magento/Store/Setup/UpgradeData.php  |   0
 .../Magento/Store/Setup/UpgradeSchema.php     |   0
 .../Unit/App/Action/Plugin/ContextTest.php    |   0
 .../Unit/App/Action/Plugin/StoreCheckTest.php |   0
 .../Config/Source/InitialConfigSourceTest.php |   0
 .../Config/Source/RuntimeConfigSourceTest.php |   0
 .../Test/Unit/App/Config/Type/ScopesTest.php  |   0
 .../Plugin/RequestPreprocessorTest.php        |   0
 .../App/Request/PathInfoProcessorTest.php     |   0
 .../Test/Unit/App/Response/RedirectTest.php   |   0
 .../Test/Unit/Block/Store/SwitcherTest.php    |   0
 .../Store/Test/Unit/Block/SwitcherTest.php    |   0
 .../Console/Command/StoreListCommandTest.php  |   0
 .../Command/WebsiteListCommandTest.php        |   0
 .../Controller/Store/SwitchActionTest.php     |   0
 .../Test/Unit/Model/Address/RendererTest.php  |   0
 .../Test/Unit/Model/App/EmulationTest.php     |   0
 .../Test/Unit/Model/BaseUrlCheckerTest.php    |   0
 .../Test/Unit/Model/Config/ConverterTest.php  |   0
 .../Importer/DataDifferenceCalculatorTest.php |   0
 .../Config/Importer/Processor/CreateTest.php  |   0
 .../Config/Importer/Processor/DeleteTest.php  |   0
 .../Processor/ProcessorFactoryTest.php        |   0
 .../Config/Importer/Processor/UpdateTest.php  |   0
 .../Test/Unit/Model/Config/ImporterTest.php   |   0
 .../Unit/Model/Config/PlaceholderTest.php     |   0
 .../Config/Processor/PlaceholderTest.php      |   0
 .../Source/Dynamic/DefaultScopeTest.php       |   0
 .../Reader/Source/Dynamic/StoreTest.php       |   0
 .../Reader/Source/Dynamic/WebsiteTest.php     |   0
 .../Source/Initial/DefaultScopeTest.php       |   0
 .../Reader/Source/Initial/StoreTest.php       |   0
 .../Reader/Source/Initial/WebsiteTest.php     |   0
 .../Test/Unit/Model/Config/ValidatorTest.php  |   0
 .../Unit/Model/HeaderProvider/HstsTest.php    |   0
 .../HeaderProvider/UpgradeInsecureTest.php    |   0
 .../Store/Test/Unit/Model/InformationTest.php |   0
 .../Model/Message/EmptyGroupCategoryTest.php  |   0
 .../Store/Test/Unit/Model/PathConfigTest.php  |   0
 .../Unit/Model/Plugin/StoreCookieTest.php     |   0
 .../Test/Unit/Model/Resolver/GroupTest.php    |   0
 .../Test/Unit/Model/Resolver/StoreTest.php    |   0
 .../Test/Unit/Model/Resolver/WebsiteTest.php  |   0
 .../StoreWebsiteRelationTest.php              |   0
 .../Unit/Model/ScopeFallbackResolverTest.php  |   0
 .../Test/Unit/Model/ScopeTreeProviderTest.php |   0
 .../Unit/Model/ScopeTypeNormalizerTest.php    |   0
 .../Test/Unit/Model/ScopeValidatorTest.php    |   0
 .../Model/Service/StoreConfigManagerTest.php  |   0
 .../Test/Unit/Model/StoreManagementTest.php   |   0
 .../Test/Unit/Model/StoreManagerTest.php      |   0
 .../Test/Unit/Model/StoreRepositoryTest.php   |   0
 .../Store/Test/Unit/Model/StoreTest.php       |   0
 .../Test/Unit/Model/StoresConfigTest.php      |   0
 .../Test/Unit/Model/System/StoreTest.php      |   0
 .../Test/Unit/Model/WebsiteManagementTest.php |   0
 .../Test/Unit/Model/WebsiteRepositoryTest.php |   0
 .../Store/Test/Unit/Model/WebsiteTest.php     |   0
 .../Store/Test/Unit/Setup/UpgradeDataTest.php |   0
 .../Ui/Component/Listing/Column/StoreTest.php |   0
 .../Url/Plugin/RouteParamsResolverTest.php    |   0
 .../Test/Unit/Url/Plugin/SecurityInfoTest.php |   0
 .../Ui/Component/Form/Fieldset/Websites.php   |   0
 .../Ui/Component/Listing/Column/Store.php     |   0
 .../Listing/Column/Store/Options.php          |   0
 .../Store/Url/Plugin/RouteParamsResolver.php  |   0
 .../Magento/Store/Url/Plugin/SecurityInfo.php |   0
 app/code/Magento/Store/composer.json          |   0
 app/code/Magento/Store/etc/adminhtml/di.xml   |   0
 app/code/Magento/Store/etc/cache.xml          |   0
 app/code/Magento/Store/etc/config.xml         |   0
 app/code/Magento/Store/etc/config.xsd         |   0
 .../Magento/Store/etc/data_source/website.xml |   0
 app/code/Magento/Store/etc/di.xml             |   0
 app/code/Magento/Store/etc/frontend/di.xml    |   0
 .../Magento/Store/etc/frontend/routes.xml     |   0
 .../Magento/Store/etc/frontend/sections.xml   |   0
 app/code/Magento/Store/etc/module.xml         |   0
 app/code/Magento/Store/etc/webapi.xml         |   0
 app/code/Magento/Store/i18n/en_US.csv         |   0
 app/code/Magento/Store/registration.php       |   0
 .../frontend/templates/switch/flags.phtml     |   0
 .../frontend/templates/switch/languages.phtml |   0
 .../frontend/templates/switch/stores.phtml    |   0
 app/code/Magento/Swagger/Block/Index.php      |   0
 .../Swagger/Controller/Index/Index.php        |   0
 app/code/Magento/Swagger/LICENSE.txt          |   0
 app/code/Magento/Swagger/LICENSE_AFL.txt      |   0
 app/code/Magento/Swagger/README.md            |   0
 .../Test/Unit/Controller/Index/IndexTest.php  |   0
 app/code/Magento/Swagger/composer.json        |   0
 .../Magento/Swagger/etc/frontend/routes.xml   |   0
 app/code/Magento/Swagger/etc/module.xml       |   0
 app/code/Magento/Swagger/registration.php     |   0
 .../frontend/layout/swagger_index_index.xml   |   0
 .../frontend/templates/swagger-ui/LICENSE.txt |   0
 .../frontend/templates/swagger-ui/index.phtml |   0
 .../view/frontend/web/swagger-ui/LICENSE.txt  |   0
 .../frontend/web/swagger-ui/css/print.css     |   0
 .../frontend/web/swagger-ui/css/reset.css     |   0
 .../frontend/web/swagger-ui/css/screen.css    |   0
 .../frontend/web/swagger-ui/css/style.css     |   0
 .../web/swagger-ui/css/typography.css         |   0
 .../fonts/droid-sans-v6-latin-700.eot         | Bin
 .../fonts/droid-sans-v6-latin-700.svg         |   0
 .../fonts/droid-sans-v6-latin-700.ttf         | Bin
 .../fonts/droid-sans-v6-latin-700.woff        | Bin
 .../fonts/droid-sans-v6-latin-700.woff2       | Bin
 .../fonts/droid-sans-v6-latin-regular.eot     | Bin
 .../fonts/droid-sans-v6-latin-regular.svg     |   0
 .../fonts/droid-sans-v6-latin-regular.ttf     | Bin
 .../fonts/droid-sans-v6-latin-regular.woff    | Bin
 .../fonts/droid-sans-v6-latin-regular.woff2   | Bin
 .../web/swagger-ui/images/explorer_icons.png  | Bin
 .../web/swagger-ui/images/logo_small.png      | Bin
 .../web/swagger-ui/images/pet_store_api.png   | Bin
 .../web/swagger-ui/images/throbber.gif        | Bin
 .../web/swagger-ui/images/wordnik_api.png     | Bin
 .../frontend/web/swagger-ui/js/lang/en.js     |   0
 .../frontend/web/swagger-ui/js/lang/es.js     |   0
 .../frontend/web/swagger-ui/js/lang/pt.js     |   0
 .../frontend/web/swagger-ui/js/lang/ru.js     |   0
 .../web/swagger-ui/js/lang/translator.js      |   0
 .../web/swagger-ui/js/lib/backbone-min.js     |   0
 .../js/lib/handlebars.min-v4.0.10.js          |   0
 .../swagger-ui/js/lib/highlight.9.1.0.pack.js |   0
 .../js/lib/highlight.9.1.0.pack_extended.js   |   0
 .../web/swagger-ui/js/lib/jquery-1.8.0.min.js |   0
 .../swagger-ui/js/lib/jquery.ba-bbq.min.js    |   0
 .../swagger-ui/js/lib/jquery.slideto.min.js   |   0
 .../swagger-ui/js/lib/jquery.wiggle.min.js    |   0
 .../web/swagger-ui/js/lib/jsoneditor.min.js   |   0
 .../web/swagger-ui/js/lib/lodash.min.js       |   0
 .../frontend/web/swagger-ui/js/lib/marked.js  |   0
 .../js/lib/object-assign-pollyfill.js         |   0
 .../web/swagger-ui/js/lib/swagger-oauth.js    |   0
 .../web/swagger-ui/js/lib/underscore-min.js   |   0
 .../web/swagger-ui/js/lib/underscore-min.map  |   0
 .../web/swagger-ui/js/magento-swagger.js      |   0
 .../frontend/web/swagger-ui/js/swagger-ui.js  |   0
 .../Attribute/Edit/Options/AbstractSwatch.php |   0
 .../Adminhtml/Attribute/Edit/Options/Text.php |   0
 .../Attribute/Edit/Options/Visual.php         |   0
 .../Adminhtml/Product/Attribute/Edit/Form.php |   0
 .../Block/LayeredNavigation/RenderLayered.php |   0
 .../Block/Product/Renderer/Configurable.php   |   0
 .../Product/Renderer/Listing/Configurable.php |   0
 .../Controller/Adminhtml/Iframe/Show.php      |   0
 .../Product/Attribute/Plugin/Save.php         |   0
 .../Swatches/Controller/Ajax/Media.php        |   0
 app/code/Magento/Swatches/Helper/Data.php     |   0
 app/code/Magento/Swatches/Helper/Media.php    |   0
 app/code/Magento/Swatches/LICENSE.txt         |   0
 app/code/Magento/Swatches/LICENSE_AFL.txt     |   0
 .../Magento/Swatches/Model/AttributesList.php |   0
 .../Model/Form/Element/AbstractSwatch.php     |   0
 .../Model/Form/Element/SwatchText.php         |   0
 .../Model/Form/Element/SwatchVisual.php       |   0
 .../Swatches/Model/Plugin/Configurable.php    |   0
 .../Swatches/Model/Plugin/EavAttribute.php    |   0
 .../Swatches/Model/Plugin/FilterRenderer.php  |   0
 .../Magento/Swatches/Model/Plugin/Product.php |   0
 .../Swatches/Model/Plugin/ProductImage.php    |   0
 .../Swatches/Model/ResourceModel/Swatch.php   |   0
 .../Model/ResourceModel/Swatch/Collection.php |   0
 app/code/Magento/Swatches/Model/Swatch.php    |   0
 .../Swatches/Model/SwatchAttributeCodes.php   |   0
 .../Model/SwatchAttributesProvider.php        |   0
 .../Observer/AddFieldsToAttributeObserver.php |   0
 .../AddSwatchAttributeTypeObserver.php        |   0
 .../Plugin/Catalog/CacheInvalidate.php        |   0
 app/code/Magento/Swatches/README.md           |   0
 .../Magento/Swatches/Setup/InstallData.php    |   0
 .../Magento/Swatches/Setup/InstallSchema.php  |   0
 .../Magento/Swatches/Setup/UpgradeData.php    |   0
 .../Edit/Options/AbstractSwatchTest.php       |   0
 .../Product/Attribute/Edit/FormTest.php       |   0
 .../LayeredNavigation/RenderLayeredTest.php   |   0
 .../Product/Renderer/ConfigurableTest.php     |   0
 .../Renderer/Listing/ConfigurableTest.php     |   0
 .../Controller/Adminhtml/Iframe/ShowTest.php  |   0
 .../Product/Attribute/Plugin/SaveTest.php     |   0
 .../Test/Unit/Controller/Ajax/MediaTest.php   |   0
 .../Swatches/Test/Unit/Helper/DataTest.php    |   0
 .../Swatches/Test/Unit/Helper/MediaTest.php   |   0
 .../Test/Unit/Model/AttributesListTest.php    |   0
 .../Model/Form/Element/AbstractSwatchTest.php |   0
 .../Unit/Model/Plugin/ConfigurableTest.php    |   0
 .../Unit/Model/Plugin/EavAttributeTest.php    |   0
 .../Unit/Model/Plugin/FilterRendererTest.php  |   0
 .../Unit/Model/Plugin/ProductImageTest.php    |   0
 .../Test/Unit/Model/Plugin/ProductTest.php    |   0
 .../Unit/Model/SwatchAttributeCodesTest.php   |   0
 .../Model/SwatchAttributesProviderTest.php    |   0
 .../AddFieldsToAttributeObserverTest.php      |   0
 .../AddSwatchAttributeTypeObserverTest.php    |   0
 .../Plugin/Catalog/CacheInvalidateTest.php    |   0
 app/code/Magento/Swatches/composer.json       |   0
 app/code/Magento/Swatches/etc/acl.xml         |   0
 .../Magento/Swatches/etc/adminhtml/di.xml     |   0
 .../Magento/Swatches/etc/adminhtml/events.xml |   0
 .../Magento/Swatches/etc/adminhtml/routes.xml |   0
 .../Magento/Swatches/etc/adminhtml/system.xml |   0
 app/code/Magento/Swatches/etc/config.xml      |   0
 app/code/Magento/Swatches/etc/di.xml          |   0
 .../Magento/Swatches/etc/frontend/routes.xml  |   0
 app/code/Magento/Swatches/etc/module.xml      |   0
 app/code/Magento/Swatches/etc/view.xml        |   0
 app/code/Magento/Swatches/i18n/de_DE.csv      |   0
 app/code/Magento/Swatches/i18n/en_US.csv      |   0
 app/code/Magento/Swatches/i18n/es_ES.csv      |   0
 app/code/Magento/Swatches/i18n/fr_FR.csv      |   0
 app/code/Magento/Swatches/i18n/nl_NL.csv      |   0
 app/code/Magento/Swatches/i18n/pt_BR.csv      |   0
 app/code/Magento/Swatches/i18n/zh_Hans_CN.csv |   0
 app/code/Magento/Swatches/registration.php    |   0
 .../layout/catalog_product_attribute_edit.xml |   0
 .../adminhtml/layout/catalog_product_form.xml |   0
 .../catalog_product_superconfig_config.xml    |   0
 .../view/adminhtml/requirejs-config.js        |   0
 .../catalog/product/attribute/js.phtml        |   0
 .../catalog/product/attribute/text.phtml      |   0
 .../catalog/product/attribute/visual.phtml    |   0
 .../attribute/steps/attributes_values.phtml   |   0
 .../ui_component/design_config_form.xml       |   0
 .../product_attribute_add_form.xml            |   0
 .../view/adminhtml/web/css/swatches.css       |   0
 .../web/js/form/element/swatch-visual.js      |   0
 .../adminhtml/web/js/product-attributes.js    |   0
 .../Swatches/view/adminhtml/web/js/text.js    |   0
 .../view/adminhtml/web/js/type-change.js      |   0
 .../Swatches/view/adminhtml/web/js/visual.js  |   0
 .../adminhtml/web/template/swatch-visual.html |   0
 .../frontend/layout/catalog_category_view.xml |   0
 .../layout/catalogsearch_advanced_result.xml  |   0
 .../layout/catalogsearch_result_index.xml     |   0
 ...ckout_cart_configure_type_configurable.xml |   0
 ...list_index_configure_type_configurable.xml |   0
 .../templates/product/layered/renderer.phtml  |   0
 .../templates/product/listing/renderer.phtml  |   0
 .../templates/product/view/renderer.phtml     |   0
 .../view/frontend/web/css/swatches.css        |   0
 .../view/frontend/web/images/loader-2.gif     | Bin
 .../frontend/web/js/catalog-add-to-cart.js    |   0
 .../web/js/configurable-customer-data.js      |   0
 .../view/frontend/web/js/swatch-renderer.js   |   0
 .../SwatchesLayeredNavigation/LICENSE.txt     |   0
 .../SwatchesLayeredNavigation/LICENSE_AFL.txt |   0
 .../SwatchesLayeredNavigation/README.md       |   0
 .../SwatchesLayeredNavigation/composer.json   |   0
 .../SwatchesLayeredNavigation/etc/module.xml  |   0
 .../registration.php                          |   0
 .../product_attribute_add_form.xml            |   0
 .../Tax/Api/Data/AppliedTaxInterface.php      |   0
 .../Tax/Api/Data/AppliedTaxRateInterface.php  |   0
 .../Api/Data/GrandTotalDetailsInterface.php   |   0
 .../Tax/Api/Data/GrandTotalRatesInterface.php |   0
 .../OrderTaxDetailsAppliedTaxInterface.php    |   0
 .../Tax/Api/Data/OrderTaxDetailsInterface.php |   0
 .../Api/Data/OrderTaxDetailsItemInterface.php |   0
 .../Tax/Api/Data/QuoteDetailsInterface.php    |   0
 .../Api/Data/QuoteDetailsItemInterface.php    |   0
 .../Tax/Api/Data/TaxClassInterface.php        |   0
 .../Tax/Api/Data/TaxClassKeyInterface.php     |   0
 .../Data/TaxClassSearchResultsInterface.php   |   0
 .../Tax/Api/Data/TaxDetailsInterface.php      |   0
 .../Tax/Api/Data/TaxDetailsItemInterface.php  |   0
 .../Magento/Tax/Api/Data/TaxRateInterface.php |   0
 .../Data/TaxRateSearchResultsInterface.php    |   0
 .../Tax/Api/Data/TaxRateTitleInterface.php    |   0
 .../Magento/Tax/Api/Data/TaxRuleInterface.php |   0
 .../Data/TaxRuleSearchResultsInterface.php    |   0
 .../Tax/Api/OrderTaxManagementInterface.php   |   0
 .../Tax/Api/TaxAddressManagerInterface.php    |   0
 .../Tax/Api/TaxCalculationInterface.php       |   0
 .../Tax/Api/TaxClassManagementInterface.php   |   0
 .../Tax/Api/TaxClassRepositoryInterface.php   |   0
 .../Tax/Api/TaxRateManagementInterface.php    |   0
 .../Tax/Api/TaxRateRepositoryInterface.php    |   0
 .../Tax/Api/TaxRuleRepositoryInterface.php    |   0
 .../Adminhtml/Frontend/Region/Updater.php     |   0
 .../Block/Adminhtml/Items/Price/Renderer.php  |   0
 .../Magento/Tax/Block/Adminhtml/Rate/Form.php |   0
 .../Adminhtml/Rate/Grid/Renderer/Data.php     |   0
 .../Tax/Block/Adminhtml/Rate/Title.php        |   0
 .../Block/Adminhtml/Rate/Title/Fieldset.php   |   0
 .../Tax/Block/Adminhtml/Rate/Toolbar/Add.php  |   0
 .../Tax/Block/Adminhtml/Rate/Toolbar/Save.php |   0
 app/code/Magento/Tax/Block/Adminhtml/Rule.php |   0
 .../Magento/Tax/Block/Adminhtml/Rule/Edit.php |   0
 .../Tax/Block/Adminhtml/Rule/Edit/Form.php    |   0
 .../Magento/Tax/Block/Checkout/Discount.php   |   0
 .../Magento/Tax/Block/Checkout/Grandtotal.php |   0
 .../Magento/Tax/Block/Checkout/Shipping.php   |   0
 .../Tax/Block/Checkout/Shipping/Price.php     |   0
 .../Magento/Tax/Block/Checkout/Subtotal.php   |   0
 app/code/Magento/Tax/Block/Checkout/Tax.php   |   0
 .../Magento/Tax/Block/Grid/Renderer/Codes.php |   0
 .../Magento/Tax/Block/Item/Price/Renderer.php |   0
 .../Magento/Tax/Block/Sales/Order/Tax.php     |   0
 .../Magento/Tax/Controller/Adminhtml/Rate.php |   0
 .../Tax/Controller/Adminhtml/Rate/Add.php     |   0
 .../Controller/Adminhtml/Rate/AjaxDelete.php  |   0
 .../Controller/Adminhtml/Rate/AjaxLoad.php    |   0
 .../Controller/Adminhtml/Rate/AjaxSave.php    |   0
 .../Tax/Controller/Adminhtml/Rate/Delete.php  |   0
 .../Tax/Controller/Adminhtml/Rate/Edit.php    |   0
 .../Tax/Controller/Adminhtml/Rate/Index.php   |   0
 .../Tax/Controller/Adminhtml/Rate/Save.php    |   0
 .../Magento/Tax/Controller/Adminhtml/Rule.php |   0
 .../Adminhtml/Rule/AjaxLoadRates.php          |   0
 .../Tax/Controller/Adminhtml/Rule/Delete.php  |   0
 .../Tax/Controller/Adminhtml/Rule/Edit.php    |   0
 .../Tax/Controller/Adminhtml/Rule/Index.php   |   0
 .../Controller/Adminhtml/Rule/NewAction.php   |   0
 .../Tax/Controller/Adminhtml/Rule/Save.php    |   0
 .../Magento/Tax/Controller/Adminhtml/Tax.php  |   0
 .../Controller/Adminhtml/Tax/AjaxDelete.php   |   0
 .../Tax/Controller/Adminhtml/Tax/AjaxSave.php |   0
 .../Adminhtml/Tax/IgnoreTaxNotification.php   |   0
 .../Tax/Controller/RegistryConstants.php      |   0
 .../CheckoutTotalsJsLayoutDataProvider.php    |   0
 app/code/Magento/Tax/Helper/Data.php          |   0
 app/code/Magento/Tax/LICENSE.txt              |   0
 app/code/Magento/Tax/LICENSE_AFL.txt          |   0
 .../Tax/Model/AggregateSalesReportTaxData.php |   0
 .../JoinProcessor/CalculationData.php         |   0
 .../JoinProcessor/CustomerTaxClass.php        |   0
 .../JoinProcessor/ProductTaxClass.php         |   0
 .../Api/SearchCriteria/JoinProcessor/Rate.php |   0
 .../SearchCriteria/JoinProcessor/RateCode.php |   0
 .../Tax/Model/App/Action/ContextPlugin.php    |   0
 app/code/Magento/Tax/Model/Calculation.php    |   0
 .../AbstractAggregateCalculator.php           |   0
 .../Model/Calculation/AbstractCalculator.php  |   0
 .../Model/Calculation/CalculatorFactory.php   |   0
 .../Model/Calculation/GrandTotalDetails.php   |   0
 .../Tax/Model/Calculation/GrandTotalRates.php |   0
 .../Magento/Tax/Model/Calculation/Rate.php    |   0
 .../Tax/Model/Calculation/Rate/Converter.php  |   0
 .../Tax/Model/Calculation/Rate/Title.php      |   0
 .../Tax/Model/Calculation/RateFactory.php     |   0
 .../Tax/Model/Calculation/RateRegistry.php    |   0
 .../Tax/Model/Calculation/RateRepository.php  |   0
 .../Model/Calculation/RowBaseCalculator.php   |   0
 .../Magento/Tax/Model/Calculation/Rule.php    |   0
 .../Tax/Model/Calculation/Rule/Validator.php  |   0
 .../Tax/Model/Calculation/TaxRuleRegistry.php |   0
 .../Model/Calculation/TotalBaseCalculator.php |   0
 .../Model/Calculation/UnitBaseCalculator.php  |   0
 app/code/Magento/Tax/Model/ClassModel.php     |   0
 .../Magento/Tax/Model/ClassModelRegistry.php  |   0
 app/code/Magento/Tax/Model/Config.php         |   0
 .../Magento/Tax/Model/Config/Notification.php |   0
 .../Tax/Model/Config/Price/IncludePrice.php   |   0
 .../Tax/Model/Config/Source/Apply/On.php      |   0
 .../Tax/Model/Config/Source/Basedon.php       |   0
 .../Tax/Model/Config/Source/Catalog.php       |   0
 .../Magento/Tax/Model/Config/TaxClass.php     |   0
 .../Tax/Model/Layout/DepersonalizePlugin.php  |   0
 .../Magento/Tax/Model/Plugin/OrderSave.php    |   0
 .../Model/Quote/GrandTotalDetailsPlugin.php   |   0
 .../Tax/Model/Quote/ToOrderConverter.php      |   0
 app/code/Magento/Tax/Model/Rate/Provider.php  |   0
 app/code/Magento/Tax/Model/Rate/Source.php    |   0
 .../Tax/Model/ResourceModel/Calculation.php   |   0
 .../ResourceModel/Calculation/Collection.php  |   0
 .../Model/ResourceModel/Calculation/Rate.php  |   0
 .../Calculation/Rate/Collection.php           |   0
 .../ResourceModel/Calculation/Rate/Title.php  |   0
 .../Calculation/Rate/Title/Collection.php     |   0
 .../Model/ResourceModel/Calculation/Rule.php  |   0
 .../Calculation/Rule/Collection.php           |   0
 .../Model/ResourceModel/Report/Collection.php |   0
 .../Tax/Model/ResourceModel/Report/Tax.php    |   0
 .../ResourceModel/Report/Tax/Createdat.php    |   0
 .../ResourceModel/Report/Tax/Updatedat.php    |   0
 .../Report/Updatedat/Collection.php           |   0
 .../Model/ResourceModel/Sales/Order/Tax.php   |   0
 .../Sales/Order/Tax/Collection.php            |   0
 .../Tax/Model/ResourceModel/TaxClass.php      |   0
 .../ResourceModel/TaxClass/Collection.php     |   0
 .../Magento/Tax/Model/Sales/Order/Details.php |   0
 .../Magento/Tax/Model/Sales/Order/Tax.php     |   0
 .../Tax/Model/Sales/Order/TaxManagement.php   |   0
 .../Tax/Model/Sales/Pdf/Grandtotal.php        |   0
 .../Magento/Tax/Model/Sales/Pdf/Shipping.php  |   0
 .../Magento/Tax/Model/Sales/Pdf/Subtotal.php  |   0
 app/code/Magento/Tax/Model/Sales/Pdf/Tax.php  |   0
 .../Tax/Model/Sales/Quote/ItemDetails.php     |   0
 .../Tax/Model/Sales/Quote/QuoteDetails.php    |   0
 .../Sales/Total/Quote/CommonTaxCollector.php  |   0
 .../Tax/Model/Sales/Total/Quote/Shipping.php  |   0
 .../Tax/Model/Sales/Total/Quote/Subtotal.php  |   0
 .../Model/System/Config/Source/Algorithm.php  |   0
 .../Tax/Model/System/Config/Source/Apply.php  |   0
 .../Model/System/Config/Source/PriceType.php  |   0
 .../System/Config/Source/Tax/Country.php      |   0
 .../System/Config/Source/Tax/Display/Type.php |   0
 .../Model/System/Config/Source/Tax/Region.php |   0
 .../Notification/ApplyDiscountOnPrices.php    |   0
 .../Message/Notification/DiscountErrors.php   |   0
 .../Message/Notification/RoundingErrors.php   |   0
 .../System/Message/NotificationInterface.php  |   0
 .../Model/System/Message/Notifications.php    |   0
 .../Magento/Tax/Model/TaxAddressManager.php   |   0
 app/code/Magento/Tax/Model/TaxCalculation.php |   0
 .../Tax/Model/TaxClass/AbstractType.php       |   0
 .../Magento/Tax/Model/TaxClass/Factory.php    |   0
 app/code/Magento/Tax/Model/TaxClass/Key.php   |   0
 .../Magento/Tax/Model/TaxClass/Management.php |   0
 .../Magento/Tax/Model/TaxClass/Repository.php |   0
 .../Tax/Model/TaxClass/Source/Customer.php    |   0
 .../Tax/Model/TaxClass/Source/Product.php     |   0
 .../Tax/Model/TaxClass/Type/Customer.php      |   0
 .../Tax/Model/TaxClass/Type/Product.php       |   0
 .../Tax/Model/TaxClass/Type/TypeInterface.php |   0
 .../Magento/Tax/Model/TaxConfigProvider.php   |   0
 .../Tax/Model/TaxDetails/AppliedTax.php       |   0
 .../Tax/Model/TaxDetails/AppliedTaxRate.php   |   0
 .../Tax/Model/TaxDetails/ItemDetails.php      |   0
 .../Tax/Model/TaxDetails/TaxDetails.php       |   0
 .../Magento/Tax/Model/TaxRateCollection.php   |   0
 .../Magento/Tax/Model/TaxRateManagement.php   |   0
 .../Magento/Tax/Model/TaxRuleCollection.php   |   0
 .../Magento/Tax/Model/TaxRuleRepository.php   |   0
 .../Tax/Observer/AfterAddressSaveObserver.php |   0
 .../Tax/Observer/CustomerLoggedInObserver.php |   0
 .../GetPriceConfigurationObserver.php         |   0
 .../Observer/UpdateProductOptionsObserver.php |   0
 .../Tax/Plugin/Checkout/CustomerData/Cart.php |   0
 .../Plugin/Ui/DataProvider/TaxSettings.php    |   0
 app/code/Magento/Tax/Pricing/Adjustment.php   |   0
 .../Magento/Tax/Pricing/Render/Adjustment.php |   0
 app/code/Magento/Tax/README.md                |   0
 app/code/Magento/Tax/Setup/InstallData.php    |   0
 app/code/Magento/Tax/Setup/InstallSchema.php  |   0
 app/code/Magento/Tax/Setup/TaxSetup.php       |   0
 app/code/Magento/Tax/Setup/UpgradeData.php    |   0
 .../Unit/App/Action/ContextPluginTest.php     |   0
 .../Adminhtml/Items/Price/RendererTest.php    |   0
 .../Block/Adminhtml/Rule/Edit/FormTest.php    |   0
 .../Block/Checkout/Shipping/PriceTest.php     |   0
 .../Test/Unit/Block/Checkout/ShippingTest.php |   0
 .../Unit/Block/Grid/Renderer/CodesTest.php    |   0
 .../Unit/Block/Item/Price/RendererTest.php    |   0
 .../Adminhtml/Rate/AjaxLoadTest.php           |   0
 .../Adminhtml/Rule/AjaxLoadRatesTest.php      |   0
 .../Tax/IgnoreTaxNotificationTest.php         |   0
 .../Tax/Test/Unit/GetterSetterTest.php        |   0
 .../Magento/Tax/Test/Unit/Helper/DataTest.php |   0
 .../Calculation/CalculatorFactoryTest.php     |   0
 .../Model/Calculation/Rate/ConverterTest.php  |   0
 .../Model/Calculation/RateRegistryTest.php    |   0
 .../Model/Calculation/RateRepositoryTest.php  |   0
 .../Test/Unit/Model/Calculation/RateTest.php  |   0
 .../RowBaseAndTotalBaseCalculatorTestCase.php |   0
 .../Calculation/RowBaseCalculatorTest.php     |   0
 .../Model/Calculation/TaxRuleRegistryTest.php |   0
 .../Calculation/TotalBaseCalculatorTest.php   |   0
 .../Calculation/UnitBaseCalculatorTest.php    |   0
 .../Unit/Model/ClassModelRegistryTest.php     |   0
 .../Test/Unit/Model/Config/TaxClassTest.php   |   0
 .../Tax/Test/Unit/Model/ConfigTest.php        |   0
 .../Test/Unit/Model/Plugin/OrderSaveTest.php  |   0
 .../Quote/GrandTotalDetailsPluginTest.php     |   0
 .../Unit/Model/Quote/ToOrderConverterTest.php |   0
 .../Model/ResourceModel/CalculationTest.php   |   0
 .../Model/Sales/Order/TaxManagementTest.php   |   0
 .../Total/Quote/CommonTaxCollectorTest.php    |   0
 .../Model/Sales/Total/Quote/ShippingTest.php  |   0
 .../Model/Sales/Total/Quote/SubtotalTest.php  |   0
 .../Unit/Model/Sales/Total/Quote/TaxTest.php  |   0
 .../ApplyDiscountOnPricesTest.php             |   0
 .../Notification/DiscountErrorsTest.php       |   0
 .../Notification/RoundingErrorsTest.php       |   0
 .../System/Message/NotificationsTest.php      |   0
 .../Test/Unit/Model/TaxAddressManagerTest.php |   0
 .../Test/Unit/Model/TaxCalculationTest.php    |   0
 .../Test/Unit/Model/TaxClass/FactoryTest.php  |   0
 .../Unit/Model/TaxClass/ManagementTest.php    |   0
 .../Unit/Model/TaxClass/RepositoryTest.php    |   0
 .../Model/TaxClass/Source/CustomerTest.php    |   0
 .../Model/TaxClass/Source/ProductTest.php     |   0
 .../Unit/Model/TaxClass/Type/CustomerTest.php |   0
 .../Unit/Model/TaxClass/Type/ProductTest.php  |   0
 .../Test/Unit/Model/TaxConfigProviderTest.php |   0
 .../Test/Unit/Model/TaxRateCollectionTest.php |   0
 .../Test/Unit/Model/TaxRateManagementTest.php |   0
 .../Test/Unit/Model/TaxRuleCollectionTest.php |   0
 .../Test/Unit/Model/TaxRuleRepositoryTest.php |   0
 .../Observer/AfterAddressSaveObserverTest.php |   0
 .../Observer/CustomerLoggedInObserverTest.php |   0
 .../GetPriceConfigurationObserverTest.php     |   0
 .../UpdateProductOptionsObserverTest.php      |   0
 .../Plugin/Checkout/CustomerData/CartTest.php |   0
 .../Tax/Test/Unit/Pricing/AdjustmentTest.php  |   0
 .../Unit/Pricing/Render/AdjustmentTest.php    |   0
 .../Tax/Test/Unit/Setup/TaxSetupTest.php      |   0
 .../Product/Listing/Collector/TaxTest.php     |   0
 .../Product/Listing/Collector/Tax.php         |   0
 app/code/Magento/Tax/composer.json            |   0
 app/code/Magento/Tax/etc/acl.xml              |   0
 app/code/Magento/Tax/etc/adminhtml/di.xml     |   0
 app/code/Magento/Tax/etc/adminhtml/menu.xml   |   0
 app/code/Magento/Tax/etc/adminhtml/routes.xml |   0
 app/code/Magento/Tax/etc/adminhtml/system.xml |   0
 .../Magento/Tax/etc/catalog_attributes.xml    |   0
 app/code/Magento/Tax/etc/config.xml           |   0
 app/code/Magento/Tax/etc/crontab.xml          |   0
 app/code/Magento/Tax/etc/di.xml               |   0
 app/code/Magento/Tax/etc/events.xml           |   0
 .../Magento/Tax/etc/extension_attributes.xml  |   0
 app/code/Magento/Tax/etc/fieldset.xml         |   0
 app/code/Magento/Tax/etc/frontend/di.xml      |   0
 app/code/Magento/Tax/etc/frontend/events.xml  |   0
 app/code/Magento/Tax/etc/module.xml           |   0
 app/code/Magento/Tax/etc/pdf.xml              |   0
 app/code/Magento/Tax/etc/sales.xml            |   0
 app/code/Magento/Tax/etc/webapi.xml           |   0
 app/code/Magento/Tax/i18n/en_US.csv           |   0
 app/code/Magento/Tax/registration.php         |   0
 .../layout/sales_creditmemo_item_price.xml    |   0
 .../layout/sales_invoice_item_price.xml       |   0
 .../layout/sales_order_create_item_price.xml  |   0
 .../layout/sales_order_item_price.xml         |   0
 .../view/adminhtml/layout/tax_rate_block.xml  |   0
 .../adminhtml/layout/tax_rate_exportcsv.xml   |   0
 .../adminhtml/layout/tax_rate_exportxml.xml   |   0
 .../view/adminhtml/layout/tax_rate_index.xml  |   0
 .../view/adminhtml/layout/tax_rule_block.xml  |   0
 .../view/adminhtml/layout/tax_rule_edit.xml   |   0
 .../view/adminhtml/layout/tax_rule_index.xml  |   0
 .../adminhtml/templates/class/page/edit.phtml |   0
 .../adminhtml/templates/items/price/row.phtml |   0
 .../templates/items/price/total.phtml         |   0
 .../templates/items/price/unit.phtml          |   0
 .../order/create/items/price/row.phtml        |   0
 .../order/create/items/price/total.phtml      |   0
 .../order/create/items/price/unit.phtml       |   0
 .../view/adminhtml/templates/rate/form.phtml  |   0
 .../view/adminhtml/templates/rate/js.phtml    |   0
 .../view/adminhtml/templates/rate/title.phtml |   0
 .../view/adminhtml/templates/rule/edit.phtml  |   0
 .../adminhtml/templates/rule/rate/form.phtml  |   0
 .../templates/toolbar/class/add.phtml         |   0
 .../templates/toolbar/class/save.phtml        |   0
 .../templates/toolbar/rate/add.phtml          |   0
 .../templates/toolbar/rate/save.phtml         |   0
 .../templates/toolbar/rule/add.phtml          |   0
 .../templates/toolbar/rule/save.phtml         |   0
 .../Tax/view/adminhtml/web/js/bootstrap.js    |   0
 .../base/layout/catalog_product_prices.xml    |   0
 .../base/templates/pricing/adjustment.phtml   |   0
 .../templates/pricing/adjustment/bundle.phtml |   0
 .../Tax/view/base/web/js/price/adjustment.js  |   0
 .../base/web/template/price/adjustment.html   |   0
 .../web/template/price/bundle/adjustment.html |   0
 .../frontend/layout/checkout_cart_index.xml   |   0
 .../checkout_cart_sidebar_total_renderers.xml |   0
 .../frontend/layout/checkout_index_index.xml  |   0
 .../layout/checkout_item_price_renderers.xml  |   0
 .../layout/sales_email_item_price.xml         |   0
 .../layout/sales_order_item_price.xml         |   0
 .../checkout/cart/item/price/sidebar.phtml    |   0
 .../templates/checkout/discount.phtml         |   0
 .../templates/checkout/grandtotal.phtml       |   0
 .../templates/checkout/shipping.phtml         |   0
 .../templates/checkout/shipping/price.phtml   |   0
 .../templates/checkout/subtotal.phtml         |   0
 .../frontend/templates/checkout/tax.phtml     |   0
 .../templates/email/items/price/row.phtml     |   0
 .../frontend/templates/item/price/row.phtml   |   0
 .../item/price/total_after_discount.phtml     |   0
 .../frontend/templates/item/price/unit.phtml  |   0
 .../view/frontend/templates/order/tax.phtml   |   0
 .../ui_component/widget_recently_compared.xml |   0
 .../ui_component/widget_recently_viewed.xml   |   0
 .../view/checkout/cart/totals/grand-total.js  |   0
 .../js/view/checkout/cart/totals/shipping.js  |   0
 .../web/js/view/checkout/cart/totals/tax.js   |   0
 .../view/checkout/minicart/subtotal/totals.js |   0
 .../js/view/checkout/shipping_method/price.js |   0
 .../js/view/checkout/summary/grand-total.js   |   0
 .../checkout/summary/item/details/subtotal.js |   0
 .../web/js/view/checkout/summary/shipping.js  |   0
 .../web/js/view/checkout/summary/subtotal.js  |   0
 .../web/js/view/checkout/summary/tax.js       |   0
 .../checkout/cart/totals/grand-total.html     |   0
 .../checkout/cart/totals/shipping.html        |   0
 .../template/checkout/cart/totals/tax.html    |   0
 .../checkout/minicart/subtotal/totals.html    |   0
 .../checkout/shipping_method/price.html       |   0
 .../checkout/summary/grand-total.html         |   0
 .../summary/item/details/subtotal.html        |   0
 .../template/checkout/summary/shipping.html   |   0
 .../template/checkout/summary/subtotal.html   |   0
 .../web/template/checkout/summary/tax.html    |   0
 .../Adminhtml/Rate/Grid/Renderer/Country.php  |   0
 .../Block/Adminhtml/Rate/ImportExport.php     |   0
 .../Adminhtml/Rate/ImportExportHeader.php     |   0
 .../Controller/Adminhtml/Rate.php             |   0
 .../Controller/Adminhtml/Rate/ExportCsv.php   |   0
 .../Controller/Adminhtml/Rate/ExportPost.php  |   0
 .../Controller/Adminhtml/Rate/ExportXml.php   |   0
 .../Adminhtml/Rate/ImportExport.php           |   0
 .../Controller/Adminhtml/Rate/ImportPost.php  |   0
 app/code/Magento/TaxImportExport/LICENSE.txt  |   0
 .../Magento/TaxImportExport/LICENSE_AFL.txt   |   0
 .../Model/Rate/CsvImportHandler.php           |   0
 .../Adminhtml/Rate/ExportPostTest.php         |   0
 .../Magento/TaxImportExport/composer.json     |   0
 app/code/Magento/TaxImportExport/etc/acl.xml  |   0
 .../TaxImportExport/etc/adminhtml/menu.xml    |   0
 .../TaxImportExport/etc/adminhtml/routes.xml  |   0
 .../Magento/TaxImportExport/etc/module.xml    |   0
 .../Magento/TaxImportExport/i18n/en_US.csv    |   0
 .../Magento/TaxImportExport/registration.php  |   0
 .../view/adminhtml/layout/tax_rate_block.xml  |   0
 .../view/adminhtml/layout/tax_rule_edit.xml   |   0
 .../adminhtml/templates/importExport.phtml    |   0
 .../templates/importExportHeader.phtml        |   0
 .../Api/Data/DesignConfigDataInterface.php    |   0
 .../Theme/Api/Data/DesignConfigInterface.php  |   0
 .../Api/DesignConfigRepositoryInterface.php   |   0
 .../Design/Config/Edit/BackButton.php         |   0
 .../Config/Edit/SaveAndContinueButton.php     |   0
 .../Design/Config/Edit/SaveButton.php         |   0
 .../Adminhtml/Design/Config/Edit/Scope.php    |   0
 .../Block/Adminhtml/System/Design/Theme.php   |   0
 .../Adminhtml/System/Design/Theme/Edit.php    |   0
 .../System/Design/Theme/Edit/AbstractTab.php  |   0
 .../System/Design/Theme/Edit/Form.php         |   0
 .../Design/Theme/Edit/Form/Element/File.php   |   0
 .../Design/Theme/Edit/Form/Element/Image.php  |   0
 .../Design/Theme/Edit/Form/Element/Links.php  |   0
 .../System/Design/Theme/Edit/Tab/Css.php      |   0
 .../System/Design/Theme/Edit/Tab/General.php  |   0
 .../System/Design/Theme/Edit/Tab/Js.php       |   0
 .../System/Design/Theme/Edit/Tabs.php         |   0
 .../Block/Adminhtml/Wysiwyg/Files/Content.php |   0
 .../Adminhtml/Wysiwyg/Files/Content/Files.php |   0
 .../Wysiwyg/Files/Content/Uploader.php        |   0
 .../Block/Adminhtml/Wysiwyg/Files/Tree.php    |   0
 .../Magento/Theme/Block/Html/Breadcrumbs.php  |   0
 app/code/Magento/Theme/Block/Html/Footer.php  |   0
 app/code/Magento/Theme/Block/Html/Header.php  |   0
 .../Magento/Theme/Block/Html/Header/Logo.php  |   0
 app/code/Magento/Theme/Block/Html/Notices.php |   0
 app/code/Magento/Theme/Block/Html/Pager.php   |   0
 app/code/Magento/Theme/Block/Html/Title.php   |   0
 app/code/Magento/Theme/Block/Html/Topmenu.php |   0
 app/code/Magento/Theme/Block/Html/Welcome.php |   0
 .../Console/Command/ThemeUninstallCommand.php |   0
 .../Adminhtml/Design/Config/Edit.php          |   0
 .../Design/Config/FileUploader/Save.php       |   0
 .../Adminhtml/Design/Config/Index.php         |   0
 .../Adminhtml/Design/Config/Save.php          |   0
 .../Adminhtml/System/Design/Theme.php         |   0
 .../Adminhtml/System/Design/Theme/Delete.php  |   0
 .../System/Design/Theme/DownloadCss.php       |   0
 .../System/Design/Theme/DownloadCustomCss.php |   0
 .../Adminhtml/System/Design/Theme/Edit.php    |   0
 .../Adminhtml/System/Design/Theme/Grid.php    |   0
 .../Adminhtml/System/Design/Theme/Index.php   |   0
 .../System/Design/Theme/NewAction.php         |   0
 .../Adminhtml/System/Design/Theme/Save.php    |   0
 .../System/Design/Theme/UploadCss.php         |   0
 .../System/Design/Theme/UploadJs.php          |   0
 .../Adminhtml/System/Design/Wysiwyg/Files.php |   0
 .../System/Design/Wysiwyg/Files/Contents.php  |   0
 .../Design/Wysiwyg/Files/DeleteFiles.php      |   0
 .../Design/Wysiwyg/Files/DeleteFolder.php     |   0
 .../System/Design/Wysiwyg/Files/Index.php     |   0
 .../System/Design/Wysiwyg/Files/NewFolder.php |   0
 .../System/Design/Wysiwyg/Files/OnInsert.php  |   0
 .../Design/Wysiwyg/Files/PreviewImage.php     |   0
 .../System/Design/Wysiwyg/Files/TreeJson.php  |   0
 .../System/Design/Wysiwyg/Files/Upload.php    |   0
 .../Theme/Controller/Result/MessagePlugin.php |   0
 .../Magento/Theme/CustomerData/Messages.php   |   0
 app/code/Magento/Theme/Helper/Storage.php     |   0
 app/code/Magento/Theme/Helper/Theme.php       |   0
 app/code/Magento/Theme/LICENSE.txt            |   0
 app/code/Magento/Theme/LICENSE_AFL.txt        |   0
 app/code/Magento/Theme/Model/Config.php       |   0
 .../Theme/Model/Config/Customization.php      |   0
 .../Magento/Theme/Model/Config/Importer.php   |   0
 .../Model/Config/Processor/DesignTheme.php    |   0
 app/code/Magento/Theme/Model/CopyService.php  |   0
 .../Theme/Model/Data/Design/Config.php        |   0
 .../Theme/Model/Data/Design/Config/Data.php   |   0
 .../Theme/Model/Data/Design/ConfigFactory.php |   0
 app/code/Magento/Theme/Model/Design.php       |   0
 .../Theme/Model/Design/Backend/Exceptions.php |   0
 .../Theme/Model/Design/Backend/Favicon.php    |   0
 .../Theme/Model/Design/Backend/File.php       |   0
 .../Theme/Model/Design/Backend/Image.php      |   0
 .../Theme/Model/Design/Backend/Logo.php       |   0
 .../Theme/Model/Design/Backend/Theme.php      |   0
 .../Model/Design/BackendModelFactory.php      |   0
 .../Model/Design/Config/DataProvider.php      |   0
 .../Design/Config/DataProvider/DataLoader.php |   0
 .../Config/DataProvider/MetadataLoader.php    |   0
 .../Config/FileUploader/FileProcessor.php     |   0
 .../Model/Design/Config/MetadataProvider.php  |   0
 .../Config/MetadataProviderInterface.php      |   0
 .../Theme/Model/Design/Config/Plugin.php      |   0
 .../Theme/Model/Design/Config/Plugin/Dump.php |   0
 .../Theme/Model/Design/Config/Storage.php     |   0
 .../Theme/Model/Design/Config/Validator.php   |   0
 .../Model/Design/Config/ValueChecker.php      |   0
 .../Model/Design/Config/ValueProcessor.php    |   0
 .../Theme/Model/Design/Theme/Label.php        |   0
 .../Theme/Model/DesignConfigRepository.php    |   0
 .../Magento/Theme/Model/Favicon/Favicon.php   |   0
 .../Theme/Model/Indexer/Design/Config.php     |   0
 .../Indexer/Design/Config/FieldsProvider.php  |   0
 .../Indexer/Design/Config/Plugin/Store.php    |   0
 .../Design/Config/Plugin/StoreGroup.php       |   0
 .../Indexer/Design/Config/Plugin/Website.php  |   0
 .../Magento/Theme/Model/Layout/Config.php     |   0
 .../Theme/Model/Layout/Config/Converter.php   |   0
 .../Theme/Model/Layout/Config/Reader.php      |   0
 .../Model/Layout/Config/SchemaLocator.php     |   0
 .../Theme/Model/Layout/Source/Layout.php      |   0
 .../Theme/Model/PageLayout/Config/Builder.php |   0
 .../Theme/Model/ResourceModel/Design.php      |   0
 .../Model/ResourceModel/Design/Collection.php |   0
 .../Model/ResourceModel/Design/Config.php     |   0
 .../Design/Config/Collection.php              |   0
 .../Design/Config/Scope/Collection.php        |   0
 .../Theme/Model/ResourceModel/Theme.php       |   0
 .../Model/ResourceModel/Theme/Collection.php  |   0
 .../Theme/Customization/Update.php            |   0
 .../ResourceModel/Theme/Data/Collection.php   |   0
 .../Theme/Model/ResourceModel/Theme/File.php  |   0
 .../ResourceModel/Theme/File/Collection.php   |   0
 .../ResourceModel/Theme/Grid/Collection.php   |   0
 .../Theme/Model/Source/InitialThemeSource.php |   0
 app/code/Magento/Theme/Model/Theme.php        |   0
 .../Magento/Theme/Model/Theme/Collection.php  |   0
 .../Model/Theme/Customization/Config.php      |   0
 .../Theme/Customization/File/CustomCss.php    |   0
 app/code/Magento/Theme/Model/Theme/Data.php   |   0
 .../Theme/Model/Theme/Data/Collection.php     |   0
 .../Theme/Model/Theme/Domain/Physical.php     |   0
 .../Theme/Model/Theme/Domain/Staging.php      |   0
 .../Theme/Model/Theme/Domain/Virtual.php      |   0
 app/code/Magento/Theme/Model/Theme/File.php   |   0
 .../Theme/Model/Theme/FileProvider.php        |   0
 .../Magento/Theme/Model/Theme/Image/Path.php  |   0
 .../Theme/Model/Theme/Plugin/Registration.php |   0
 .../Theme/Model/Theme/Registration.php        |   0
 .../Magento/Theme/Model/Theme/Resolver.php    |   0
 .../Magento/Theme/Model/Theme/SingleFile.php  |   0
 .../Theme/Model/Theme/Source/Theme.php        |   0
 .../Model/Theme/ThemeDependencyChecker.php    |   0
 .../Theme/Model/Theme/ThemePackageInfo.php    |   0
 .../Theme/Model/Theme/ThemeProvider.php       |   0
 .../Theme/Model/Theme/ThemeUninstaller.php    |   0
 .../Magento/Theme/Model/ThemeValidator.php    |   0
 .../Magento/Theme/Model/Uploader/Service.php  |   0
 .../Theme/Model/Url/Plugin/Signature.php      |   0
 app/code/Magento/Theme/Model/View/Design.php  |   0
 .../Magento/Theme/Model/Wysiwyg/Storage.php   |   0
 .../ApplyThemeCustomizationObserver.php       |   0
 .../Observer/CheckThemeIsAssignedObserver.php |   0
 .../CleanThemeRelatedContentObserver.php      |   0
 app/code/Magento/Theme/README.md              |   0
 app/code/Magento/Theme/Setup/InstallData.php  |   0
 .../Magento/Theme/Setup/InstallSchema.php     |   0
 .../Magento/Theme/Setup/RecurringData.php     |   0
 app/code/Magento/Theme/Setup/UpgradeData.php  |   0
 .../Design/Config/Edit/BackButtonTest.php     |   0
 .../Design/Config/Edit/SaveButtonTest.php     |   0
 .../Design/Config/Edit/ScopeTest.php          |   0
 .../Theme/Edit/Form/Element/FileTest.php      |   0
 .../System/Design/Theme/Edit/FormTest.php     |   0
 .../System/Design/Theme/Tab/CssTest.php       |   0
 .../System/Design/Theme/Tab/JsTest.php        |   0
 .../System/Design/Theme/TabAbstractTest.php   |   0
 .../Adminhtml/Wysiwyg/Files/ContentTest.php   |   0
 .../Adminhtml/Wysiwyg/Files/TreeTest.php      |   0
 .../Theme/Test/Unit/Block/Html/FooterTest.php |   0
 .../Test/Unit/Block/Html/Header/LogoTest.php  |   0
 .../Theme/Test/Unit/Block/Html/HeaderTest.php |   0
 .../Theme/Test/Unit/Block/Html/TitleTest.php  |   0
 .../Test/Unit/Block/Html/TopmenuTest.php      |   0
 .../Block/Html/_files/logo/default/image.gif  | Bin
 .../Command/ThemeUninstallCommandTest.php     |   0
 .../Adminhtml/Design/Config/EditTest.php      |   0
 .../Design/Config/FileUploader/SaveTest.php   |   0
 .../Adminhtml/Design/Config/IndexTest.php     |   0
 .../Adminhtml/Design/Config/SaveTest.php      |   0
 .../System/Design/Theme/DeleteTest.php        |   0
 .../System/Design/Theme/DownloadCssTest.php   |   0
 .../Design/Theme/DownloadCustomCssTest.php    |   0
 .../System/Design/Theme/EditTest.php          |   0
 .../System/Design/Theme/GridTest.php          |   0
 .../System/Design/Theme/IndexTest.php         |   0
 .../System/Design/Theme/SaveTest.php          |   0
 .../System/Design/Theme/UploadCssTest.php     |   0
 .../System/Design/Theme/UploadJsTest.php      |   0
 .../Adminhtml/System/Design/ThemeTest.php     |   0
 .../Design/Wysiwyg/Files/ContentsTest.php     |   0
 .../Design/Wysiwyg/Files/DeleteFilesTest.php  |   0
 .../Design/Wysiwyg/Files/DeleteFolderTest.php |   0
 .../System/Design/Wysiwyg/Files/IndexTest.php |   0
 .../Design/Wysiwyg/Files/OnInsertTest.php     |   0
 .../Controller/Result/MessagePluginTest.php   |   0
 .../Test/Unit/CustomerData/MessagesTest.php   |   0
 .../Theme/Test/Unit/Helper/StorageTest.php    |   0
 .../Theme/Test/Unit/Helper/ThemeTest.php      |   0
 .../Unit/Model/Config/CustomizationTest.php   |   0
 .../Test/Unit/Model/Config/ImporterTest.php   |   0
 .../Config/Processor/DesignThemeTest.php      |   0
 .../Test/Unit/Model/Config/ValidatorTest.php  |   0
 .../Model/Config/_files/template_fixture.html |   0
 .../Theme/Test/Unit/Model/ConfigTest.php      |   0
 .../Theme/Test/Unit/Model/CopyServiceTest.php |   0
 .../Model/Data/Design/ConfigFactoryTest.php   |   0
 .../Model/Design/Backend/ExceptionsTest.php   |   0
 .../Unit/Model/Design/Backend/FileTest.php    |   0
 .../Unit/Model/Design/Backend/ThemeTest.php   |   0
 .../Model/Design/BackendModelFactoryTest.php  |   0
 .../Config/DataProvider/DataLoaderTest.php    |   0
 .../DataProvider/MetadataLoaderTest.php       |   0
 .../Model/Design/Config/DataProviderTest.php  |   0
 .../Config/FileUploader/FileProcessorTest.php |   0
 .../Model/Design/Config/Plugin/DumpTest.php   |   0
 .../Unit/Model/Design/Config/PluginTest.php   |   0
 .../Unit/Model/Design/Config/StorageTest.php  |   0
 .../Model/Design/Config/ValueCheckerTest.php  |   0
 .../Design/Config/ValueProcessorTest.php      |   0
 .../Unit/Model/DesignConfigRepositoryTest.php |   0
 .../Theme/Test/Unit/Model/DesignTest.php      |   0
 .../Test/Unit/Model/Favicon/FaviconTest.php   |   0
 .../Design/Config/Plugin/StoreGroupTest.php   |   0
 .../Design/Config/Plugin/StoreTest.php        |   0
 .../Design/Config/Plugin/WebsiteTest.php      |   0
 .../Unit/Model/Indexer/Design/ConfigTest.php  |   0
 .../Model/Layout/Config/ConverterTest.php     |   0
 .../Model/Layout/Config/SchemaLocatorTest.php |   0
 .../Layout/Config/_files/page_layouts.xml     |   0
 .../Test/Unit/Model/Layout/ConfigTest.php     |   0
 .../Unit/Model/Layout/Source/LayoutTest.php   |   0
 .../Model/PageLayout/Config/BuilderTest.php   |   0
 .../Design/Config/Scope/CollectionTest.php    |   0
 .../Model/Source/InitialThemeSourceTest.php   |   0
 .../Test/Unit/Model/Theme/CollectionTest.php  |   0
 .../Model/Theme/Customization/ConfigTest.php  |   0
 .../Customization/File/CustomCssTest.php      |   0
 .../Theme/Test/Unit/Model/Theme/DataTest.php  |   0
 .../Unit/Model/Theme/Domain/PhysicalTest.php  |   0
 .../Unit/Model/Theme/Domain/StagingTest.php   |   0
 .../Unit/Model/Theme/Domain/VirtualTest.php   |   0
 .../Unit/Model/Theme/FileProviderTest.php     |   0
 .../Theme/Test/Unit/Model/Theme/FileTest.php  |   0
 .../Test/Unit/Model/Theme/Image/PathTest.php  |   0
 .../Model/Theme/Plugin/RegistrationTest.php   |   0
 .../Unit/Model/Theme/RegistrationTest.php     |   0
 .../Test/Unit/Model/Theme/ResolverTest.php    |   0
 .../Test/Unit/Model/Theme/SingleFileTest.php  |   0
 .../Unit/Model/Theme/Source/ThemeTest.php     |   0
 .../Theme/ThemeDependencyCheckerTest.php      |   0
 .../Unit/Model/Theme/ThemePackageInfoTest.php |   0
 .../Unit/Model/Theme/ThemeProviderTest.php    |   0
 .../Unit/Model/Theme/ThemeUninstallerTest.php |   0
 .../Test/Unit/Model/Theme/ValidationTest.php  |   0
 .../Theme/Test/Unit/Model/ThemeTest.php       |   0
 .../Test/Unit/Model/ThemeValidatorTest.php    |   0
 .../Test/Unit/Model/Uploader/ServiceTest.php  |   0
 .../Unit/Model/Url/Plugin/SignatureTest.php   |   0
 .../Theme/Test/Unit/Model/View/DesignTest.php |   0
 .../Test/Unit/Model/Wysiwyg/StorageTest.php   |   0
 .../_files/frontend/magento_iphone/theme.xml  |   0
 .../frontend/magento_iphone/theme_invalid.xml |   0
 .../ApplyThemeCustomizationObserverTest.php   |   0
 .../CheckThemeIsAssignedObserverTest.php      |   0
 .../CleanThemeRelatedContentObserverTest.php  |   0
 .../Config/SearchRobots/ResetButtonTest.php   |   0
 .../Listing/Column/EditActionTest.php         |   0
 .../Component/Design/Config/DataProvider.php  |   0
 .../Config/SearchRobots/ResetButton.php       |   0
 .../Component/Listing/Column/EditAction.php   |   0
 app/code/Magento/Theme/composer.json          |   0
 app/code/Magento/Theme/etc/acl.xml            |   0
 app/code/Magento/Theme/etc/adminhtml/di.xml   |   0
 app/code/Magento/Theme/etc/adminhtml/menu.xml |   0
 .../Magento/Theme/etc/adminhtml/routes.xml    |   0
 app/code/Magento/Theme/etc/config.xml         |   0
 app/code/Magento/Theme/etc/di.xml             |   0
 app/code/Magento/Theme/etc/events.xml         |   0
 .../Theme/etc/extension_attributes.xml        |   0
 app/code/Magento/Theme/etc/frontend/di.xml    |   0
 .../Magento/Theme/etc/frontend/events.xml     |   0
 .../Magento/Theme/etc/frontend/sections.xml   |   0
 app/code/Magento/Theme/etc/indexer.xml        |   0
 app/code/Magento/Theme/etc/module.xml         |   0
 app/code/Magento/Theme/etc/mview.xml          |   0
 app/code/Magento/Theme/i18n/en_US.csv         |   0
 app/code/Magento/Theme/registration.php       |   0
 .../adminhtml_system_design_theme_block.xml   |   0
 .../adminhtml_system_design_theme_edit.xml    |   0
 .../adminhtml_system_design_theme_grid.xml    |   0
 .../adminhtml_system_design_theme_index.xml   |   0
 ...l_system_design_wysiwyg_files_contents.xml |   0
 ...html_system_design_wysiwyg_files_index.xml |   0
 .../layout/theme_design_config_edit.xml       |   0
 .../layout/theme_design_config_index.xml      |   0
 .../Magento/Theme/view/adminhtml/layouts.xml  |   0
 .../adminhtml/page_layout/admin-1column.xml   |   0
 .../page_layout/admin-2columns-left.xml       |   0
 .../adminhtml/page_layout/admin-empty.xml     |   0
 .../adminhtml/page_layout/admin-login.xml     |   0
 .../Theme/view/adminhtml/requirejs-config.js  |   0
 .../adminhtml/templates/browser/content.phtml |   0
 .../templates/browser/content/files.phtml     |   0
 .../templates/browser/content/uploader.phtml  |   0
 .../templates/design/config/edit/scope.phtml  |   0
 .../view/adminhtml/templates/tabs/css.phtml   |   0
 .../templates/tabs/fieldset/js.phtml          |   0
 .../view/adminhtml/templates/tabs/js.phtml    |   0
 .../view/adminhtml/templates/title.phtml      |   0
 .../ui_component/design_config_form.xml       |   0
 .../ui_component/design_config_listing.xml    |   0
 .../Theme/view/adminhtml/web/calendar.png     | Bin
 .../Theme/view/adminhtml/web/css/theme.css    |   0
 .../view/adminhtml/web/fam_book_open.png      | Bin
 .../Theme/view/adminhtml/web/favicon.ico      | Bin
 .../web/images/bkg_movable-arrows.png         | Bin
 .../view/adminhtml/web/images/js_icon.gif     | Bin
 .../Theme/view/adminhtml/web/js/bootstrap.js  |   0
 .../view/adminhtml/web/js/custom-js-list.js   |   0
 .../Theme/view/adminhtml/web/js/form.js       |   0
 .../js/form/component/robots-reset-button.js  |   0
 .../Theme/view/adminhtml/web/js/sortable.js   |   0
 .../view/adminhtml/web/prototype/magento.css  |   0
 .../web/template/form/button-field.html       |   0
 .../web/template/form/element/button.html     |   0
 .../adminhtml/web/theme/default_preview.jpg   | Bin
 app/code/Magento/Theme/view/base/layouts.xml  |   0
 .../Theme/view/base/page_layout/empty.xml     |   0
 .../Theme/view/base/requirejs-config.js       |   0
 .../Theme/view/base/templates/root.phtml      |   0
 .../Theme/view/frontend/layout/default.xml    |   0
 .../frontend/layout/default_head_blocks.xml   |   0
 .../view/frontend/layout/page_calendar.xml    |   0
 .../Theme/view/frontend/layout/print.xml      |   0
 .../Magento/Theme/view/frontend/layouts.xml   |   0
 .../view/frontend/page_layout/1column.xml     |   0
 .../frontend/page_layout/2columns-left.xml    |   0
 .../frontend/page_layout/2columns-right.xml   |   0
 .../view/frontend/page_layout/3columns.xml    |   0
 .../Theme/view/frontend/requirejs-config.js   |   0
 .../templates/callouts/left_col.phtml         |   0
 .../templates/callouts/right_col.phtml        |   0
 .../templates/html/absolute_footer.phtml      |   0
 .../view/frontend/templates/html/block.phtml  |   0
 .../frontend/templates/html/breadcrumbs.phtml |   0
 .../frontend/templates/html/bugreport.phtml   |   0
 .../frontend/templates/html/collapsible.phtml |   0
 .../frontend/templates/html/container.phtml   |   0
 .../frontend/templates/html/copyright.phtml   |   0
 .../view/frontend/templates/html/footer.phtml |   0
 .../view/frontend/templates/html/header.phtml |   0
 .../frontend/templates/html/header/logo.phtml |   0
 .../frontend/templates/html/messages.phtml    |   0
 .../frontend/templates/html/notices.phtml     |   0
 .../view/frontend/templates/html/pager.phtml  |   0
 .../view/frontend/templates/html/print.phtml  |   0
 .../frontend/templates/html/sections.phtml    |   0
 .../view/frontend/templates/html/skip.phtml   |   0
 .../frontend/templates/html/skiptarget.phtml  |   0
 .../view/frontend/templates/html/title.phtml  |   0
 .../frontend/templates/html/topmenu.phtml     |   0
 .../view/frontend/templates/js/calendar.phtml |   0
 .../frontend/templates/js/components.phtml    |   0
 .../view/frontend/templates/js/cookie.phtml   |   0
 .../view/frontend/templates/js/polyfill.phtml |   0
 .../Theme/view/frontend/templates/link.phtml  |   0
 .../view/frontend/templates/messages.phtml    |   0
 .../templates/page/js/require_js.phtml        |   0
 .../view/frontend/templates/template.phtml    |   0
 .../Theme/view/frontend/templates/text.phtml  |   0
 .../Theme/view/frontend/web/calendar.png      | Bin
 .../Theme/view/frontend/web/css/tabs.css      |   0
 .../Theme/view/frontend/web/css/validate.css  |   0
 .../Theme/view/frontend/web/fam_book_open.png | Bin
 .../Theme/view/frontend/web/favicon.ico       | Bin
 .../web/images/validation_advice_bg.gif       | Bin
 .../Theme/view/frontend/web/js/row-builder.js |   0
 .../Theme/view/frontend/web/js/truncate.js    |   0
 .../view/frontend/web/js/view/messages.js     |   0
 .../Magento/Theme/view/frontend/web/menu.js   |   0
 .../view/frontend/web/prototype/magento.css   |   0
 .../Theme/view/install/web/favicon.ico        | Bin
 .../App/Config/Type/Translation.php           |   0
 .../Translation/Block/Html/Head/Config.php    |   0
 app/code/Magento/Translation/Block/Js.php     |   0
 .../Command/UninstallLanguageCommand.php      |   0
 .../Translation/Controller/Ajax/Index.php     |   0
 app/code/Magento/Translation/LICENSE.txt      |   0
 app/code/Magento/Translation/LICENSE_AFL.txt  |   0
 .../Magento/Translation/Model/FileManager.php |   0
 .../Translation/Model/Inline/CacheManager.php |   0
 .../Translation/Model/Inline/Config.php       |   0
 .../Translation/Model/Inline/Parser.php       |   0
 .../Magento/Translation/Model/Js/Config.php   |   0
 .../Model/Js/Config/Source/Strategy.php       |   0
 .../Translation/Model/Js/DataProvider.php     |   0
 .../Model/Js/DataProviderInterface.php        |   0
 .../Translation/Model/Js/PreProcessor.php     |   0
 .../Translation/Model/Json/PreProcessor.php   |   0
 .../Model/ResourceModel/StringUtils.php       |   0
 .../Model/ResourceModel/Translate.php         |   0
 .../Model/Source/InitialTranslationSource.php |   0
 .../Magento/Translation/Model/StringUtils.php |   0
 app/code/Magento/Translation/README.md        |   0
 .../Translation/Setup/InstallSchema.php       |   0
 .../Unit/App/Config/Type/TranslationTest.php  |   0
 .../Translation/Test/Unit/Block/JsTest.php    |   0
 .../Command/UninstallLanguageCommandTest.php  |   0
 .../Test/Unit/Model/FileManagerTest.php       |   0
 .../Unit/Model/Inline/CacheManagerTest.php    |   0
 .../Test/Unit/Model/Inline/ConfigTest.php     |   0
 .../Test/Unit/Model/Inline/ParserTest.php     |   0
 .../Inline/_files/datatranslate_fixture.html  |   0
 .../Model/Js/Config/Source/StrategyTest.php   |   0
 .../Test/Unit/Model/Js/ConfigTest.php         |   0
 .../Test/Unit/Model/Js/DataProviderTest.php   |   0
 .../Test/Unit/Model/Js/PreProcessorTest.php   |   0
 .../Test/Unit/Model/Json/PreProcessorTest.php |   0
 .../Source/InitialTranslationSourceTest.php   |   0
 app/code/Magento/Translation/composer.json    |   0
 .../Magento/Translation/etc/adminhtml/di.xml  |   0
 .../Translation/etc/adminhtml/routes.xml      |   0
 .../Translation/etc/adminhtml/system.xml      |   0
 app/code/Magento/Translation/etc/cache.xml    |   0
 app/code/Magento/Translation/etc/config.xml   |   0
 app/code/Magento/Translation/etc/di.xml       |   0
 .../Translation/etc/frontend/routes.xml       |   0
 app/code/Magento/Translation/etc/module.xml   |   0
 app/code/Magento/Translation/i18n/en_US.csv   |   0
 app/code/Magento/Translation/registration.php |   0
 .../templates/translate_inline.phtml          |   0
 .../view/base/templates/translate.phtml       |   0
 .../view/base/web/js/i18n-config.js           |   0
 .../view/frontend/requirejs-config.js         |   0
 .../frontend/templates/translate_inline.phtml |   0
 .../view/frontend/web/add-class.js            |   0
 .../view/frontend/web/translate_edit_icon.png | Bin
 .../web/translate_edit_icon_hover.png         | Bin
 .../Ui/Api/BookmarkManagementInterface.php    |   0
 .../Ui/Api/BookmarkRepositoryInterface.php    |   0
 .../Api/Data/BookmarkExtensionInterface.php   |   0
 .../Magento/Ui/Api/Data/BookmarkInterface.php |   0
 .../Data/BookmarkSearchResultsInterface.php   |   0
 .../Ui/Block/Component/StepsWizard.php        |   0
 .../Component/StepsWizard/StepAbstract.php    |   0
 .../Component/StepsWizard/StepInterface.php   |   0
 app/code/Magento/Ui/Block/Logger.php          |   0
 app/code/Magento/Ui/Block/Wrapper.php         |   0
 .../Ui/Component/AbstractComponent.php        |   0
 app/code/Magento/Ui/Component/Action.php      |   0
 app/code/Magento/Ui/Component/Bookmark.php    |   0
 app/code/Magento/Ui/Component/Container.php   |   0
 .../Magento/Ui/Component/Control/Action.php   |   0
 .../Ui/Component/Control/ActionPool.php       |   0
 .../Magento/Ui/Component/Control/Button.php   |   0
 .../Ui/Component/Control/Container.php        |   0
 .../Magento/Ui/Component/Control/Item.php     |   0
 .../Magento/Ui/Component/Control/Link.php     |   0
 .../Ui/Component/Control/SplitButton.php      |   0
 app/code/Magento/Ui/Component/DataSource.php  |   0
 app/code/Magento/Ui/Component/DynamicRows.php |   0
 .../Magento/Ui/Component/ExportButton.php     |   0
 app/code/Magento/Ui/Component/Filters.php     |   0
 .../Ui/Component/Filters/FilterModifier.php   |   0
 .../Component/Filters/Type/AbstractFilter.php |   0
 .../Ui/Component/Filters/Type/Date.php        |   0
 .../Ui/Component/Filters/Type/DateRange.php   |   0
 .../Ui/Component/Filters/Type/Input.php       |   0
 .../Ui/Component/Filters/Type/Range.php       |   0
 .../Ui/Component/Filters/Type/Search.php      |   0
 .../Ui/Component/Filters/Type/Select.php      |   0
 app/code/Magento/Ui/Component/Form.php        |   0
 .../Ui/Component/Form/AttributeMapper.php     |   0
 .../Magento/Ui/Component/Form/Collection.php  |   0
 .../Form/Element/AbstractElement.php          |   0
 .../Form/Element/AbstractOptionsField.php     |   0
 .../Component/Form/Element/ActionDelete.php   |   0
 .../Ui/Component/Form/Element/Checkbox.php    |   0
 .../Ui/Component/Form/Element/CheckboxSet.php |   0
 .../Element/DataType/AbstractDataType.php     |   0
 .../Form/Element/DataType/Boolean.php         |   0
 .../Element/DataType/DataTypeInterface.php    |   0
 .../Component/Form/Element/DataType/Date.php  |   0
 .../Component/Form/Element/DataType/Email.php |   0
 .../Component/Form/Element/DataType/Media.php |   0
 .../Form/Element/DataType/Number.php          |   0
 .../Form/Element/DataType/Password.php        |   0
 .../Component/Form/Element/DataType/Price.php |   0
 .../Component/Form/Element/DataType/Text.php  |   0
 .../Form/Element/ElementInterface.php         |   0
 .../Ui/Component/Form/Element/Hidden.php      |   0
 .../Ui/Component/Form/Element/Input.php       |   0
 .../Ui/Component/Form/Element/MultiSelect.php |   0
 .../Ui/Component/Form/Element/Multiline.php   |   0
 .../Ui/Component/Form/Element/Radio.php       |   0
 .../Ui/Component/Form/Element/RadioSet.php    |   0
 .../Ui/Component/Form/Element/Range.php       |   0
 .../Ui/Component/Form/Element/Select.php      |   0
 .../Ui/Component/Form/Element/Textarea.php    |   0
 .../Ui/Component/Form/Element/Wysiwyg.php     |   0
 app/code/Magento/Ui/Component/Form/Field.php  |   0
 .../Magento/Ui/Component/Form/Fieldset.php    |   0
 .../Ui/Component/Form/Fieldset/Factory.php    |   0
 app/code/Magento/Ui/Component/HtmlContent.php |   0
 app/code/Magento/Ui/Component/Layout.php      |   0
 app/code/Magento/Ui/Component/Layout/Tabs.php |   0
 .../Magento/Ui/Component/Layout/Tabs/Nav.php  |   0
 .../Magento/Ui/Component/Layout/Tabs/Tab.php  |   0
 .../Ui/Component/Layout/Tabs/TabInterface.php |   0
 .../Ui/Component/Layout/Tabs/TabWrapper.php   |   0
 app/code/Magento/Ui/Component/Listing.php     |   0
 .../Magento/Ui/Component/Listing/Columns.php  |   0
 .../Ui/Component/Listing/Columns/Column.php   |   0
 .../Listing/Columns/ColumnInterface.php       |   0
 .../Ui/Component/Listing/Columns/Date.php     |   0
 .../Ui/Component/Listing/RowInterface.php     |   0
 app/code/Magento/Ui/Component/MassAction.php  |   0
 .../Component/MassAction/Columns/Column.php   |   0
 .../Ui/Component/MassAction/Filter.php        |   0
 app/code/Magento/Ui/Component/Modal.php       |   0
 app/code/Magento/Ui/Component/Paging.php      |   0
 .../Magento/Ui/Component/Wrapper/Block.php    |   0
 .../Ui/Component/Wrapper/UiComponent.php      |   0
 .../Magento/Ui/Component/Wysiwyg/Config.php   |   0
 .../Ui/Component/Wysiwyg/ConfigInterface.php  |   0
 .../Ui/Config/Argument/Parser/ArrayType.php   |   0
 .../Ui/Config/Argument/Parser/Composite.php   |   0
 .../Parser/ConfigurableObjectType.php         |   0
 .../Config/Argument/Parser/ConverterType.php  |   0
 .../Magento/Ui/Config/Argument/Parser/Url.php |   0
 .../Ui/Config/Argument/Parser/XpathType.php   |   0
 .../Ui/Config/Argument/ParserInterface.php    |   0
 app/code/Magento/Ui/Config/Converter.php      |   0
 .../Magento/Ui/Config/Converter/Actions.php   |   0
 .../Ui/Config/Converter/AdditionalClasses.php |   0
 .../Magento/Ui/Config/Converter/Buttons.php   |   0
 .../Ui/Config/Converter/Communication.php     |   0
 .../Magento/Ui/Config/Converter/Composite.php |   0
 app/code/Magento/Ui/Config/Converter/Deps.php |   0
 .../Ui/Config/Converter/HtmlContent.php       |   0
 app/code/Magento/Ui/Config/Converter/Item.php |   0
 .../Magento/Ui/Config/Converter/Options.php   |   0
 .../Ui/Config/Converter/StorageConfig.php     |   0
 app/code/Magento/Ui/Config/Converter/Url.php  |   0
 .../Magento/Ui/Config/ConverterInterface.php  |   0
 app/code/Magento/Ui/Config/ConverterUtils.php |   0
 app/code/Magento/Ui/Config/Data.php           |   0
 app/code/Magento/Ui/Config/Reader.php         |   0
 .../Magento/Ui/Config/Reader/Definition.php   |   0
 .../Ui/Config/Reader/Definition/Data.php      |   0
 .../Reader/Definition/SchemaLocator.php       |   0
 .../Ui/Config/Reader/DefinitionMap.php        |   0
 .../Config/Reader/DefinitionMap/Converter.php |   0
 .../Reader/DefinitionMap/SchemaLocator.php    |   0
 app/code/Magento/Ui/Config/Reader/Dom.php     |   0
 .../Magento/Ui/Config/Reader/FileResolver.php |   0
 .../Ui/Config/Reader/SchemaLocator.php        |   0
 .../Config/Reader/Template/SchemaLocator.php  |   0
 .../Controller/Adminhtml/AbstractAction.php   |   0
 .../Controller/Adminhtml/Bookmark/Delete.php  |   0
 .../Ui/Controller/Adminhtml/Bookmark/Save.php |   0
 .../Controller/Adminhtml/Export/GridToCsv.php |   0
 .../Controller/Adminhtml/Export/GridToXml.php |   0
 .../Ui/Controller/Adminhtml/Index/Render.php  |   0
 .../Adminhtml/Index/Render/Handle.php         |   0
 .../Magento/Ui/Controller/Index/Render.php    |   0
 .../Ui/Controller/UiActionInterface.php       |   0
 .../Ui/DataProvider/AbstractDataProvider.php  |   0
 .../Ui/DataProvider/AddFieldToCollection.php  |   0
 .../AddFieldToCollectionInterface.php         |   0
 .../AddFilterToCollectionInterface.php        |   0
 .../Ui/DataProvider/EavValidationRules.php    |   0
 .../Ui/DataProvider/Mapper/FormElement.php    |   0
 .../DataProvider/Mapper/MapperInterface.php   |   0
 .../Ui/DataProvider/Mapper/MetaProperties.php |   0
 .../Ui/DataProvider/Modifier/Dummy.php        |   0
 .../DataProvider/Modifier/ModifierFactory.php |   0
 .../Modifier/ModifierInterface.php            |   0
 .../Magento/Ui/DataProvider/Modifier/Pool.php |   0
 .../DataProvider/Modifier/PoolInterface.php   |   0
 app/code/Magento/Ui/LICENSE.txt               |   0
 app/code/Magento/Ui/LICENSE_AFL.txt           |   0
 app/code/Magento/Ui/Model/Bookmark.php        |   0
 .../Magento/Ui/Model/BookmarkManagement.php   |   0
 app/code/Magento/Ui/Model/Config.php          |   0
 .../Magento/Ui/Model/Export/ConvertToCsv.php  |   0
 .../Magento/Ui/Model/Export/ConvertToXml.php  |   0
 .../Ui/Model/Export/MetadataProvider.php      |   0
 .../Ui/Model/Export/SearchResultIterator.php  |   0
 app/code/Magento/Ui/Model/Manager.php         |   0
 .../Ui/Model/ResourceModel/Bookmark.php       |   0
 .../ResourceModel/Bookmark/Collection.php     |   0
 .../ResourceModel/BookmarkRepository.php      |   0
 .../Magento/Ui/Model/UiComponentGenerator.php |   0
 app/code/Magento/Ui/README.md                 |   0
 app/code/Magento/Ui/Setup/InstallSchema.php   |   0
 .../Xhtml/Compiler/Element/Content.php        |   0
 .../Xhtml/Compiler/Element/Form.php           |   0
 .../Xhtml/Compiler/Element/Render.php         |   0
 .../Ui/TemplateEngine/Xhtml/Result.php        |   0
 .../Unit/Component/AbstractComponentTest.php  |   0
 .../Unit/Component/Control/ActionPoolTest.php |   0
 .../Unit/Component/Control/ActionTest.php     |   0
 .../Unit/Component/Control/ButtonTest.php     |   0
 .../Unit/Component/Control/ContainerTest.php  |   0
 .../Test/Unit/Component/Control/LinkTest.php  |   0
 .../Test/Unit/Component/ExportButtonTest.php  |   0
 .../Component/Filters/FilterModifierTest.php  |   0
 .../Component/Filters/Type/DateRangeTest.php  |   0
 .../Unit/Component/Filters/Type/DateTest.php  |   0
 .../Unit/Component/Filters/Type/InputTest.php |   0
 .../Unit/Component/Filters/Type/RangeTest.php |   0
 .../Component/Filters/Type/SelectTest.php     |   0
 .../Ui/Test/Unit/Component/FiltersTest.php    |   0
 .../Form/Element/AbstractElementTest.php      |   0
 .../Form/Element/ActionDeleteTest.php         |   0
 .../Form/Element/CheckboxSetTest.php          |   0
 .../Form/Element/DataType/DateTest.php        |   0
 .../Form/Element/DataType/MediaTest.php       |   0
 .../Form/Element/MultiSelectTest.php          |   0
 .../Component/Form/Element/RadioSetTest.php   |   0
 .../Component/Form/Element/SelectTest.php     |   0
 .../Component/Form/Element/WysiwygTest.php    |   0
 .../Component/Form/Field/MultilineTest.php    |   0
 .../Ui/Test/Unit/Component/Form/FieldTest.php |   0
 .../Ui/Test/Unit/Component/FormTest.php       |   0
 .../Component/Listing/Columns/ColumnTest.php  |   0
 .../Component/Listing/Columns/DateTest.php    |   0
 .../Unit/Component/Listing/ColumnsTest.php    |   0
 .../Ui/Test/Unit/Component/ListingTest.php    |   0
 .../MassAction/Columns/ColumnTest.php         |   0
 .../Unit/Component/MassAction/FilterTest.php  |   0
 .../Ui/Test/Unit/Component/MassActionTest.php |   0
 .../Ui/Test/Unit/Component/PagingTest.php     |   0
 .../Unit/Config/Converter/ActionsTest.php     |   0
 .../Converter/AdditionalClassesTest.php       |   0
 .../Unit/Config/Converter/ButtonsTest.php     |   0
 .../Config/Converter/CommunicationTest.php    |   0
 .../Unit/Config/Converter/CompositeTest.php   |   0
 .../Test/Unit/Config/Converter/DepsTest.php   |   0
 .../Unit/Config/Converter/HtmlContentTest.php |   0
 .../Test/Unit/Config/Converter/ItemTest.php   |   0
 .../Unit/Config/Converter/OptionsTest.php     |   0
 .../Config/Converter/StorageConfigTest.php    |   0
 .../Ui/Test/Unit/Config/Converter/UrlTest.php |   0
 .../Unit/Config/Converter/_files/test.xml     |   0
 .../Unit/Config/Converter/_files/testForm.xml |   0
 .../Adminhtml/Export/GridToCsvTest.php        |   0
 .../Adminhtml/Export/GridToXmlTest.php        |   0
 .../Adminhtml/Index/Render/HandleTest.php     |   0
 .../Controller/Adminhtml/Index/RenderTest.php |   0
 .../DataProvider/EavValidationRulesTest.php   |   0
 .../Unit/DataProvider/Modifier/PoolTest.php   |   0
 .../Unit/Model/BookmarkManagementTest.php     |   0
 .../Unit/Model/Export/ConvertToCsvTest.php    |   0
 .../Unit/Model/Export/ConvertToXmlTest.php    |   0
 .../Model/Export/MetadataProviderTest.php     |   0
 .../Ui/Test/Unit/Model/ManagerTest.php        |   0
 .../ResourceModel/BookmarkRepositoryTest.php  |   0
 .../Unit/Model/UiComponentGeneratorTest.php   |   0
 .../Unit/TemplateEngine/Xhtml/ResultTest.php  |   0
 app/code/Magento/Ui/composer.json             |   0
 app/code/Magento/Ui/etc/adminhtml/di.xml      |   0
 app/code/Magento/Ui/etc/adminhtml/routes.xml  |   0
 app/code/Magento/Ui/etc/adminhtml/system.xml  |   0
 app/code/Magento/Ui/etc/config.xml            |   0
 app/code/Magento/Ui/etc/data_source.xsd       |   0
 app/code/Magento/Ui/etc/di.xml                |   0
 app/code/Magento/Ui/etc/frontend/routes.xml   |   0
 app/code/Magento/Ui/etc/module.xml            |   0
 app/code/Magento/Ui/etc/ui_components.xsd     |   0
 app/code/Magento/Ui/etc/ui_configuration.xsd  |   0
 app/code/Magento/Ui/etc/ui_definition.map.xsd |   0
 app/code/Magento/Ui/etc/ui_definition.xsd     |   0
 app/code/Magento/Ui/etc/ui_template.xsd       |   0
 app/code/Magento/Ui/i18n/de_DE.csv            |   0
 app/code/Magento/Ui/i18n/en_US.csv            |   0
 app/code/Magento/Ui/i18n/es_ES.csv            |   0
 app/code/Magento/Ui/i18n/fr_FR.csv            |   0
 app/code/Magento/Ui/i18n/nl_NL.csv            |   0
 app/code/Magento/Ui/i18n/pt_BR.csv            |   0
 app/code/Magento/Ui/i18n/zh_Hans_CN.csv       |   0
 app/code/Magento/Ui/registration.php          |   0
 .../templates/modal/modal-prompt-content.html |   0
 .../Magento/Ui/view/base/layout/default.xml   |   0
 .../Magento/Ui/view/base/requirejs-config.js  |   0
 .../templates/container/content/default.phtml |   0
 .../view/base/templates/context/default.phtml |   0
 .../templates/control/button/default.phtml    |   0
 .../base/templates/control/button/split.phtml |   0
 .../Ui/view/base/templates/form/default.phtml |   0
 .../view/base/templates/label/default.phtml   |   0
 .../base/templates/layout/tabs/default.phtml  |   0
 .../templates/layout/tabs/nav/default.phtml   |   0
 .../Ui/view/base/templates/logger.phtml       |   0
 .../Ui/view/base/templates/stepswizard.phtml  |   0
 .../base/ui_component/etc/definition.map.xml  |   0
 .../ui_component/etc/definition/action.xsd    |   0
 .../etc/definition/actionDelete.xsd           |   0
 .../ui_component/etc/definition/actions.xsd   |   0
 .../etc/definition/actionsColumn.xsd          |   0
 .../ui_component/etc/definition/bookmark.xsd  |   0
 .../ui_component/etc/definition/boolean.xsd   |   0
 .../ui_component/etc/definition/button.xsd    |   0
 .../ui_component/etc/definition/checkbox.xsd  |   0
 .../etc/definition/checkboxset.xsd            |   0
 .../ui_component/etc/definition/column.xsd    |   0
 .../ui_component/etc/definition/columns.xsd   |   0
 .../etc/definition/columnsControls.xsd        |   0
 .../ui_component/etc/definition/component.xsd |   0
 .../ui_component/etc/definition/container.xsd |   0
 .../etc/definition/dataProvider.xsd           |   0
 .../etc/definition/dataSource.xsd             |   0
 .../base/ui_component/etc/definition/date.xsd |   0
 .../etc/definition/dynamicRows.xsd            |   0
 .../ui_component/etc/definition/email.xsd     |   0
 .../etc/definition/exportButton.xsd           |   0
 .../ui_component/etc/definition/field.xsd     |   0
 .../ui_component/etc/definition/fieldset.xsd  |   0
 .../base/ui_component/etc/definition/file.xsd |   0
 .../etc/definition/fileUploader.xsd           |   0
 .../etc/definition/filterRange.xsd            |   0
 .../ui_component/etc/definition/filters.xsd   |   0
 .../base/ui_component/etc/definition/form.xsd |   0
 .../ui_component/etc/definition/hidden.xsd    |   0
 .../etc/definition/htmlContent.xsd            |   0
 .../etc/definition/inlineEditing.xsd          |   0
 .../ui_component/etc/definition/input.xsd     |   0
 .../etc/definition/insertForm.xsd             |   0
 .../etc/definition/insertListing.xsd          |   0
 .../ui_component/etc/definition/listing.xsd   |   0
 .../etc/definition/listingToolbar.xsd         |   0
 .../etc/definition/massaction.xsd             |   0
 .../ui_component/etc/definition/modal.xsd     |   0
 .../ui_component/etc/definition/multiline.xsd |   0
 .../etc/definition/multiselect.xsd            |   0
 .../base/ui_component/etc/definition/nav.xsd  |   0
 .../ui_component/etc/definition/number.xsd    |   0
 .../ui_component/etc/definition/paging.xsd    |   0
 .../ui_component/etc/definition/price.xsd     |   0
 .../ui_component/etc/definition/radioset.xsd  |   0
 .../ui_component/etc/definition/select.xsd    |   0
 .../etc/definition/selectionsColumn.xsd       |   0
 .../base/ui_component/etc/definition/tab.xsd  |   0
 .../base/ui_component/etc/definition/text.xsd |   0
 .../ui_component/etc/definition/textarea.xsd  |   0
 .../etc/definition/ui_component.xsd           |   0
 .../etc/definition/ui_settings.xsd            |   0
 .../ui_component/etc/definition/wysiwyg.xsd   |   0
 .../templates/container/default.xhtml         |   0
 .../templates/export/button.xhtml             |   0
 .../templates/form/collapsible.xhtml          |   0
 .../ui_component/templates/form/default.xhtml |   0
 .../templates/listing/default.xhtml           |   0
 .../Ui/view/base/web/js/block-loader.js       |   0
 .../Magento/Ui/view/base/web/js/core/app.js   |   0
 .../view/base/web/js/core/renderer/layout.js  |   0
 .../view/base/web/js/core/renderer/types.js   |   0
 .../base/web/js/dynamic-rows/action-delete.js |   0
 .../Ui/view/base/web/js/dynamic-rows/dnd.js   |   0
 .../web/js/dynamic-rows/dynamic-rows-grid.js  |   0
 .../base/web/js/dynamic-rows/dynamic-rows.js  |   0
 .../view/base/web/js/dynamic-rows/record.js   |   0
 .../Ui/view/base/web/js/form/adapter.js       |   0
 .../view/base/web/js/form/button-adapter.js   |   0
 .../Ui/view/base/web/js/form/client.js        |   0
 .../view/base/web/js/form/components/area.js  |   0
 .../base/web/js/form/components/button.js     |   0
 .../base/web/js/form/components/collection.js |   0
 .../web/js/form/components/collection/item.js |   0
 .../base/web/js/form/components/fieldset.js   |   0
 .../view/base/web/js/form/components/group.js |   0
 .../view/base/web/js/form/components/html.js  |   0
 .../web/js/form/components/insert-form.js     |   0
 .../web/js/form/components/insert-listing.js  |   0
 .../base/web/js/form/components/insert.js     |   0
 .../view/base/web/js/form/components/tab.js   |   0
 .../base/web/js/form/components/tab_group.js  |   0
 .../view/base/web/js/form/element/boolean.js  |   0
 .../base/web/js/form/element/checkbox-set.js  |   0
 .../view/base/web/js/form/element/country.js  |   0
 .../Ui/view/base/web/js/form/element/date.js  |   0
 .../base/web/js/form/element/file-uploader.js |   0
 .../Ui/view/base/web/js/form/element/media.js |   0
 .../base/web/js/form/element/multiselect.js   |   0
 .../base/web/js/form/element/post-code.js     |   0
 .../view/base/web/js/form/element/region.js   |   0
 .../view/base/web/js/form/element/select.js   |   0
 .../element/single-checkbox-toggle-notice.js  |   0
 .../element/single-checkbox-use-config.js     |   0
 .../web/js/form/element/single-checkbox.js    |   0
 .../Ui/view/base/web/js/form/element/text.js  |   0
 .../view/base/web/js/form/element/textarea.js |   0
 .../base/web/js/form/element/ui-select.js     |   0
 .../view/base/web/js/form/element/website.js  |   0
 .../view/base/web/js/form/element/wysiwyg.js  |   0
 .../Magento/Ui/view/base/web/js/form/form.js  |   0
 .../Ui/view/base/web/js/form/provider.js      |   0
 .../Ui/view/base/web/js/form/switcher.js      |   0
 .../view/base/web/js/grid/columns/actions.js  |   0
 .../view/base/web/js/grid/columns/column.js   |   0
 .../Ui/view/base/web/js/grid/columns/date.js  |   0
 .../base/web/js/grid/columns/expandable.js    |   0
 .../Ui/view/base/web/js/grid/columns/link.js  |   0
 .../base/web/js/grid/columns/multiselect.js   |   0
 .../view/base/web/js/grid/columns/select.js   |   0
 .../base/web/js/grid/columns/thumbnail.js     |   0
 .../js/grid/controls/bookmarks/bookmarks.js   |   0
 .../web/js/grid/controls/bookmarks/storage.js |   0
 .../view/base/web/js/grid/controls/columns.js |   0
 .../Ui/view/base/web/js/grid/data-storage.js  |   0
 .../Magento/Ui/view/base/web/js/grid/dnd.js   |   0
 .../Ui/view/base/web/js/grid/editing/bulk.js  |   0
 .../view/base/web/js/grid/editing/client.js   |   0
 .../base/web/js/grid/editing/editor-view.js   |   0
 .../view/base/web/js/grid/editing/editor.js   |   0
 .../view/base/web/js/grid/editing/record.js   |   0
 .../Ui/view/base/web/js/grid/export.js        |   0
 .../Ui/view/base/web/js/grid/filters/chips.js |   0
 .../view/base/web/js/grid/filters/filters.js  |   0
 .../Ui/view/base/web/js/grid/filters/range.js |   0
 .../Ui/view/base/web/js/grid/listing.js       |   0
 .../Ui/view/base/web/js/grid/massactions.js   |   0
 .../Ui/view/base/web/js/grid/paging/paging.js |   0
 .../Ui/view/base/web/js/grid/paging/sizes.js  |   0
 .../Ui/view/base/web/js/grid/provider.js      |   0
 .../Ui/view/base/web/js/grid/resize.js        |   0
 .../Ui/view/base/web/js/grid/search/search.js |   0
 .../Ui/view/base/web/js/grid/sticky/sticky.js |   0
 .../Ui/view/base/web/js/grid/toolbar.js       |   0
 .../view/base/web/js/grid/tree-massactions.js |   0
 .../Ui/view/base/web/js/lib/collapsible.js    |   0
 .../Ui/view/base/web/js/lib/core/class.js     |   0
 .../view/base/web/js/lib/core/collection.js   |   0
 .../base/web/js/lib/core/element/element.js   |   0
 .../base/web/js/lib/core/element/links.js     |   0
 .../Ui/view/base/web/js/lib/core/events.js    |   0
 .../base/web/js/lib/core/storage/local.js     |   0
 .../Ui/view/base/web/js/lib/key-codes.js      |   0
 .../js/lib/knockout/bindings/after-render.js  |   0
 .../js/lib/knockout/bindings/autoselect.js    |   0
 .../web/js/lib/knockout/bindings/bind-html.js |   0
 .../web/js/lib/knockout/bindings/bootstrap.js |   0
 .../js/lib/knockout/bindings/collapsible.js   |   0
 .../js/lib/knockout/bindings/datepicker.js    |   0
 .../js/lib/knockout/bindings/fadeVisible.js   |   0
 .../base/web/js/lib/knockout/bindings/i18n.js |   0
 .../web/js/lib/knockout/bindings/keyboard.js  |   0
 .../web/js/lib/knockout/bindings/mage-init.js |   0
 .../web/js/lib/knockout/bindings/optgroup.js  |   0
 .../js/lib/knockout/bindings/outer_click.js   |   0
 .../web/js/lib/knockout/bindings/range.js     |   0
 .../web/js/lib/knockout/bindings/resizable.js |   0
 .../web/js/lib/knockout/bindings/scope.js     |   0
 .../lib/knockout/bindings/simple-checked.js   |   0
 .../js/lib/knockout/bindings/staticChecked.js |   0
 .../web/js/lib/knockout/bindings/tooltip.js   |   0
 .../base/web/js/lib/knockout/bootstrap.js     |   0
 .../js/lib/knockout/extender/bound-nodes.js   |   0
 .../lib/knockout/extender/observable_array.js |   0
 .../web/js/lib/knockout/template/engine.js    |   0
 .../web/js/lib/knockout/template/loader.js    |   0
 .../knockout/template/observable_source.js    |   0
 .../web/js/lib/knockout/template/renderer.js  |   0
 .../base/web/js/lib/logger/console-logger.js  |   0
 .../js/lib/logger/console-output-handler.js   |   0
 .../base/web/js/lib/logger/entry-factory.js   |   0
 .../Ui/view/base/web/js/lib/logger/entry.js   |   0
 .../view/base/web/js/lib/logger/formatter.js  |   0
 .../base/web/js/lib/logger/levels-pool.js     |   0
 .../base/web/js/lib/logger/logger-utils.js    |   0
 .../Ui/view/base/web/js/lib/logger/logger.js  |   0
 .../base/web/js/lib/logger/message-pool.js    |   0
 .../view/base/web/js/lib/registry/registry.js |   0
 .../Ui/view/base/web/js/lib/spinner.js        |   0
 .../Ui/view/base/web/js/lib/step-wizard.js    |   0
 .../view/base/web/js/lib/validation/rules.js  |   0
 .../view/base/web/js/lib/validation/utils.js  |   0
 .../base/web/js/lib/validation/validator.js   |   0
 .../view/base/web/js/lib/view/utils/async.js  |   0
 .../base/web/js/lib/view/utils/bindings.js    |   0
 .../web/js/lib/view/utils/dom-observer.js     |   0
 .../Ui/view/base/web/js/lib/view/utils/raf.js |   0
 .../Ui/view/base/web/js/modal/alert.js        |   0
 .../Ui/view/base/web/js/modal/confirm.js      |   0
 .../view/base/web/js/modal/modal-component.js |   0
 .../Ui/view/base/web/js/modal/modal.js        |   0
 .../Ui/view/base/web/js/modal/modalToggle.js  |   0
 .../Ui/view/base/web/js/modal/prompt.js       |   0
 .../base/web/js/timeline/timeline-view.js     |   0
 .../Ui/view/base/web/js/timeline/timeline.js  |   0
 .../Ui/view/base/web/templates/area.html      |   0
 .../view/base/web/templates/block-loader.html |   0
 .../view/base/web/templates/collection.html   |   0
 .../base/web/templates/content/content.html   |   0
 .../dynamic-rows/cells/action-delete.html     |   0
 .../web/templates/dynamic-rows/cells/dnd.html |   0
 .../templates/dynamic-rows/cells/text.html    |   0
 .../dynamic-rows/cells/thumbnail.html         |   0
 .../dynamic-rows/templates/collapsible.html   |   0
 .../dynamic-rows/templates/default.html       |   0
 .../dynamic-rows/templates/grid.html          |   0
 .../base/web/templates/form/collection.html   |   0
 .../form/components/button/container.html     |   0
 .../form/components/button/simple.html        |   0
 .../templates/form/components/collection.html |   0
 .../form/components/collection/preview.html   |   0
 .../templates/form/components/complex.html    |   0
 .../form/components/single/checkbox.html      |   0
 .../form/components/single/field.html         |   0
 .../form/components/single/radio.html         |   0
 .../form/components/single/switcher.html      |   0
 .../web/templates/form/element/button.html    |   0
 .../templates/form/element/checkbox-set.html  |   0
 .../web/templates/form/element/checkbox.html  |   0
 .../base/web/templates/form/element/date.html |   0
 .../web/templates/form/element/email.html     |   0
 .../form/element/helper/fallback-reset.html   |   0
 .../form/element/helper/service.html          |   0
 .../form/element/helper/tooltip.html          |   0
 .../web/templates/form/element/hidden.html    |   0
 .../base/web/templates/form/element/html.html |   0
 .../web/templates/form/element/input.html     |   0
 .../web/templates/form/element/media.html     |   0
 .../templates/form/element/multiselect.html   |   0
 .../web/templates/form/element/preview.html   |   0
 .../web/templates/form/element/price.html     |   0
 .../web/templates/form/element/radio.html     |   0
 .../web/templates/form/element/select.html    |   0
 .../templates/form/element/split-button.html  |   0
 .../web/templates/form/element/switcher.html  |   0
 .../base/web/templates/form/element/text.html |   0
 .../web/templates/form/element/textDate.html  |   0
 .../web/templates/form/element/textarea.html  |   0
 .../form/element/uploader/preview.html        |   0
 .../form/element/uploader/uploader.html       |   0
 .../web/templates/form/element/wysiwyg.html   |   0
 .../view/base/web/templates/form/field.html   |   0
 .../base/web/templates/form/fieldset.html     |   0
 .../view/base/web/templates/form/insert.html  |   0
 .../view/base/web/templates/grid/actions.html |   0
 .../web/templates/grid/cells/actions.html     |   0
 .../web/templates/grid/cells/expandable.html  |   0
 .../grid/cells/expandable/content.html        |   0
 .../base/web/templates/grid/cells/html.html   |   0
 .../base/web/templates/grid/cells/link.html   |   0
 .../web/templates/grid/cells/multiselect.html |   0
 .../base/web/templates/grid/cells/onoff.html  |   0
 .../base/web/templates/grid/cells/text.html   |   0
 .../web/templates/grid/cells/thumbnail.html   |   0
 .../grid/cells/thumbnail/preview.html         |   0
 .../templates/grid/columns/multiselect.html   |   0
 .../web/templates/grid/columns/onoff.html     |   0
 .../base/web/templates/grid/columns/text.html |   0
 .../grid/controls/bookmarks/bookmarks.html    |   0
 .../grid/controls/bookmarks/view.html         |   0
 .../web/templates/grid/controls/columns.html  |   0
 .../base/web/templates/grid/editing/bulk.html |   0
 .../web/templates/grid/editing/field.html     |   0
 .../grid/editing/header-buttons.html          |   0
 .../templates/grid/editing/row-buttons.html   |   0
 .../base/web/templates/grid/editing/row.html  |   0
 .../base/web/templates/grid/exportButton.html |   0
 .../web/templates/grid/filters/chips.html     |   0
 .../grid/filters/elements/group.html          |   0
 .../filters/elements/ui-select-optgroup.html  |   0
 .../grid/filters/elements/ui-select.html      |   0
 .../web/templates/grid/filters/field.html     |   0
 .../web/templates/grid/filters/filters.html   |   0
 .../view/base/web/templates/grid/listing.html |   0
 .../base/web/templates/grid/paging-total.html |   0
 .../grid/paging/paging-detailed-total.html    |   0
 .../web/templates/grid/paging/paging.html     |   0
 .../base/web/templates/grid/paging/sizes.html |   0
 .../web/templates/grid/search/search.html     |   0
 .../web/templates/grid/sticky/filters.html    |   0
 .../web/templates/grid/sticky/listing.html    |   0
 .../web/templates/grid/sticky/sticky.html     |   0
 .../view/base/web/templates/grid/submenu.html |   0
 .../view/base/web/templates/grid/toolbar.html |   0
 .../web/templates/grid/tree-massactions.html  |   0
 .../web/templates/grid/view-switcher.html     |   0
 .../view/base/web/templates/group/group.html  |   0
 .../view/base/web/templates/list/listing.html |   0
 .../web/templates/modal/modal-component.html  |   0
 .../web/templates/modal/modal-custom.html     |   0
 .../base/web/templates/modal/modal-popup.html |   0
 .../templates/modal/modal-prompt-content.html |   0
 .../base/web/templates/modal/modal-slide.html |   0
 .../Ui/view/base/web/templates/tab.html       |   0
 .../base/web/templates/timeline/record.html   |   0
 .../base/web/templates/timeline/timeline.html |   0
 .../base/web/templates/tooltip/tooltip.html   |   0
 .../view/frontend/web/js/model/messageList.js |   0
 .../Ui/view/frontend/web/js/model/messages.js |   0
 .../Ui/view/frontend/web/js/view/messages.js  |   0
 .../view/frontend/web/template/messages.html  |   0
 .../web/templates/form/element/checkbox.html  |   0
 .../web/templates/form/element/date.html      |   0
 .../web/templates/form/element/email.html     |   0
 .../form/element/helper/tooltip.html          |   0
 .../web/templates/form/element/input.html     |   0
 .../web/templates/form/element/password.html  |   0
 .../web/templates/form/element/select.html    |   0
 .../frontend/web/templates/form/field.html    |   0
 .../frontend/web/templates/group/group.html   |   0
 .../Block/Backend/System/CarrierConfig.php    |   0
 app/code/Magento/Ups/Helper/Config.php        |   0
 app/code/Magento/Ups/LICENSE.txt              |   0
 app/code/Magento/Ups/LICENSE_AFL.txt          |   0
 app/code/Magento/Ups/Model/Carrier.php        |   0
 .../Ups/Model/Config/Source/Container.php     |   0
 .../Ups/Model/Config/Source/DestType.php      |   0
 .../Ups/Model/Config/Source/Freemethod.php    |   0
 .../Ups/Model/Config/Source/Generic.php       |   0
 .../Ups/Model/Config/Source/Method.php        |   0
 .../Model/Config/Source/OriginShipment.php    |   0
 .../Ups/Model/Config/Source/Pickup.php        |   0
 .../Magento/Ups/Model/Config/Source/Type.php  |   0
 .../Ups/Model/Config/Source/Unitofmeasure.php |   0
 app/code/Magento/Ups/README.md                |   0
 .../Ups/Test/Unit/Helper/ConfigTest.php       |   0
 .../Ups/Test/Unit/Model/CarrierTest.php       |   0
 app/code/Magento/Ups/composer.json            |   0
 app/code/Magento/Ups/etc/adminhtml/system.xml |   0
 app/code/Magento/Ups/etc/config.xml           |   0
 app/code/Magento/Ups/etc/di.xml               |   0
 app/code/Magento/Ups/etc/module.xml           |   0
 app/code/Magento/Ups/i18n/en_US.csv           |   0
 app/code/Magento/Ups/registration.php         |   0
 .../layout/adminhtml_system_config_edit.xml   |   0
 .../system/shipping/carrier_config.phtml      |   0
 .../frontend/layout/checkout_cart_index.xml   |   0
 .../frontend/layout/checkout_index_index.xml  |   0
 .../model/shipping-rates-validation-rules.js  |   0
 .../web/js/model/shipping-rates-validator.js  |   0
 .../web/js/view/shipping-rates-validation.js  |   0
 .../Block/Catalog/Category/Edit.php           |   0
 .../Block/Catalog/Category/Tree.php           |   0
 .../UrlRewrite/Block/Catalog/Edit/Form.php    |   0
 .../UrlRewrite/Block/Catalog/Product/Edit.php |   0
 .../UrlRewrite/Block/Catalog/Product/Grid.php |   0
 .../UrlRewrite/Block/Cms/Page/Edit.php        |   0
 .../UrlRewrite/Block/Cms/Page/Edit/Form.php   |   0
 .../UrlRewrite/Block/Cms/Page/Grid.php        |   0
 app/code/Magento/UrlRewrite/Block/Edit.php    |   0
 .../Magento/UrlRewrite/Block/Edit/Form.php    |   0
 .../UrlRewrite/Block/GridContainer.php        |   0
 app/code/Magento/UrlRewrite/Block/Link.php    |   0
 .../Plugin/Store/Switcher/SetRedirectUrl.php  |   0
 .../Magento/UrlRewrite/Block/Selector.php     |   0
 .../Controller/Adminhtml/Url/Rewrite.php      |   0
 .../Adminhtml/Url/Rewrite/CategoriesJson.php  |   0
 .../Adminhtml/Url/Rewrite/CmsPageGrid.php     |   0
 .../Adminhtml/Url/Rewrite/Delete.php          |   0
 .../Controller/Adminhtml/Url/Rewrite/Edit.php |   0
 .../Adminhtml/Url/Rewrite/Index.php           |   0
 .../Adminhtml/Url/Rewrite/ProductGrid.php     |   0
 .../Controller/Adminhtml/Url/Rewrite/Save.php |   0
 .../Magento/UrlRewrite/Controller/Router.php  |   0
 .../Magento/UrlRewrite/Helper/UrlRewrite.php  |   0
 app/code/Magento/UrlRewrite/LICENSE.txt       |   0
 app/code/Magento/UrlRewrite/LICENSE_AFL.txt   |   0
 .../Exception/UrlAlreadyExistsException.php   |   0
 .../UrlRewrite/Model/MergeDataProvider.php    |   0
 .../UrlRewriteExceptionMessageFactory.php     |   0
 .../UrlRewrite/Model/OptionProvider.php       |   0
 .../Model/ResourceModel/UrlRewrite.php        |   0
 .../ResourceModel/UrlRewriteCollection.php    |   0
 .../Model/Storage/AbstractStorage.php         |   0
 .../UrlRewrite/Model/Storage/DbStorage.php    |   0
 .../UrlRewrite/Model/StorageInterface.php     |   0
 .../UrlRewrite/Model/UrlFinderInterface.php   |   0
 .../UrlRewrite/Model/UrlPersistInterface.php  |   0
 .../Magento/UrlRewrite/Model/UrlRewrite.php   |   0
 app/code/Magento/UrlRewrite/README.md         |   0
 .../UrlRewrite/Service/V1/Data/UrlRewrite.php |   0
 .../UrlRewrite/Setup/InstallSchema.php        |   0
 .../Magento/UrlRewrite/Setup/UpgradeData.php  |   0
 .../Test/Unit/Block/Catalog/Edit/FormTest.php |   0
 .../Store/Switcher/SetRedirectUrlTest.php     |   0
 .../Test/Unit/Controller/RouterTest.php       |   0
 .../Test/Unit/Helper/UrlRewriteTest.php       |   0
 .../UrlAlreadyExistsExceptionTest.php         |   0
 .../Test/Unit/Model/MergeDataProviderTest.php |   0
 .../UrlRewriteExceptionMessageFactoryTest.php |   0
 .../UrlRewriteCollectionTest.php              |   0
 .../Model/Storage/AbstractStorageTest.php     |   0
 .../Test/Unit/Model/Storage/DbStorageTest.php |   0
 .../Test/Unit/Model/UrlRewriteTest.php        |   0
 .../Unit/Service/V1/Data/UrlRewriteTest.php   |   0
 app/code/Magento/UrlRewrite/composer.json     |   0
 app/code/Magento/UrlRewrite/etc/acl.xml       |   0
 .../Magento/UrlRewrite/etc/adminhtml/di.xml   |   0
 .../Magento/UrlRewrite/etc/adminhtml/menu.xml |   0
 .../UrlRewrite/etc/adminhtml/routes.xml       |   0
 app/code/Magento/UrlRewrite/etc/config.xml    |   0
 app/code/Magento/UrlRewrite/etc/di.xml        |   0
 .../Magento/UrlRewrite/etc/frontend/di.xml    |   0
 app/code/Magento/UrlRewrite/etc/module.xml    |   0
 app/code/Magento/UrlRewrite/i18n/en_US.csv    |   0
 app/code/Magento/UrlRewrite/registration.php  |   0
 .../layout/adminhtml_url_rewrite_index.xml    |   0
 .../view/adminhtml/templates/categories.phtml |   0
 .../view/adminhtml/templates/edit.phtml       |   0
 .../messages/url_duplicate_message.phtml      |   0
 .../view/adminhtml/templates/selector.phtml   |   0
 .../Magento/User/Api/Data/UserInterface.php   |   0
 .../Magento/User/Block/Adminhtml/Locks.php    |   0
 app/code/Magento/User/Block/Buttons.php       |   0
 app/code/Magento/User/Block/Role.php          |   0
 app/code/Magento/User/Block/Role/Edit.php     |   0
 .../Magento/User/Block/Role/Grid/User.php     |   0
 app/code/Magento/User/Block/Role/Tab/Edit.php |   0
 app/code/Magento/User/Block/Role/Tab/Info.php |   0
 .../Magento/User/Block/Role/Tab/Users.php     |   0
 app/code/Magento/User/Block/User.php          |   0
 app/code/Magento/User/Block/User/Edit.php     |   0
 .../Magento/User/Block/User/Edit/Form.php     |   0
 .../Magento/User/Block/User/Edit/Tab/Main.php |   0
 .../User/Block/User/Edit/Tab/Roles.php        |   0
 .../Magento/User/Block/User/Edit/Tabs.php     |   0
 .../Console/UnlockAdminAccountCommand.php     |   0
 .../User/Controller/Adminhtml/Auth.php        |   0
 .../Adminhtml/Auth/Forgotpassword.php         |   0
 .../Adminhtml/Auth/ResetPassword.php          |   0
 .../Adminhtml/Auth/ResetPasswordPost.php      |   0
 .../User/Controller/Adminhtml/Locks.php       |   0
 .../User/Controller/Adminhtml/Locks/Grid.php  |   0
 .../User/Controller/Adminhtml/Locks/Index.php |   0
 .../Controller/Adminhtml/Locks/MassUnlock.php |   0
 .../User/Controller/Adminhtml/User.php        |   0
 .../User/Controller/Adminhtml/User/Delete.php |   0
 .../User/Controller/Adminhtml/User/Edit.php   |   0
 .../User/Controller/Adminhtml/User/Index.php  |   0
 .../Adminhtml/User/InvalidateToken.php        |   0
 .../Controller/Adminhtml/User/NewAction.php   |   0
 .../User/Controller/Adminhtml/User/Role.php   |   0
 .../Controller/Adminhtml/User/Role/Delete.php |   0
 .../Adminhtml/User/Role/EditRole.php          |   0
 .../Adminhtml/User/Role/Editrolegrid.php      |   0
 .../Controller/Adminhtml/User/Role/Index.php  |   0
 .../Adminhtml/User/Role/RoleGrid.php          |   0
 .../Adminhtml/User/Role/SaveRole.php          |   0
 .../Controller/Adminhtml/User/RoleGrid.php    |   0
 .../Controller/Adminhtml/User/RolesGrid.php   |   0
 .../User/Controller/Adminhtml/User/Save.php   |   0
 .../Controller/Adminhtml/User/Validate.php    |   0
 app/code/Magento/User/Helper/Data.php         |   0
 app/code/Magento/User/LICENSE.txt             |   0
 app/code/Magento/User/LICENSE_AFL.txt         |   0
 .../Authorization/AdminSessionUserContext.php |   0
 .../Model/Backend/Config/ObserverConfig.php   |   0
 .../User/Model/Plugin/AuthorizationRole.php   |   0
 .../ResourceModel/Role/User/Collection.php    |   0
 .../Magento/User/Model/ResourceModel/User.php |   0
 .../Model/ResourceModel/User/Collection.php   |   0
 .../ResourceModel/User/Locked/Collection.php  |   0
 .../Model/System/Config/Source/Password.php   |   0
 app/code/Magento/User/Model/User.php          |   0
 .../User/Model/UserValidationRules.php        |   0
 .../User/Observer/Backend/AuthObserver.php    |   0
 .../ForceAdminPasswordChangeObserver.php      |   0
 .../Backend/TrackAdminNewPasswordObserver.php |   0
 app/code/Magento/User/README.md               |   0
 app/code/Magento/User/Setup/InstallSchema.php |   0
 app/code/Magento/User/Setup/UpgradeData.php   |   0
 app/code/Magento/User/Setup/UpgradeSchema.php |   0
 .../User/Test/Unit/Block/Role/EditTest.php    |   0
 .../Test/Unit/Block/Role/Grid/UserTest.php    |   0
 .../Test/Unit/Block/Role/Tab/EditTest.php     |   0
 .../Test/Unit/Block/Role/Tab/InfoTest.php     |   0
 .../Test/Unit/Block/Role/Tab/UsersTest.php    |   0
 .../Console/UnlockAdminAccountCommandTest.php |   0
 .../Controller/Adminhtml/User/DeleteTest.php  |   0
 .../User/Test/Unit/Helper/DataTest.php        |   0
 .../AdminSessionUserContextTest.php           |   0
 .../Model/Plugin/AuthorizationRoleTest.php    |   0
 .../Unit/Model/ResourceModel/UserTest.php     |   0
 .../Magento/User/Test/Unit/Model/UserTest.php |   0
 .../Unit/Model/UserValidationRulesTest.php    |   0
 .../Observer/Backend/AuthObserverTest.php     |   0
 .../ForceAdminPasswordChangeObserverTest.php  |   0
 .../TrackAdminNewPasswordObserverTest.php     |   0
 app/code/Magento/User/composer.json           |   0
 app/code/Magento/User/etc/acl.xml             |   0
 app/code/Magento/User/etc/adminhtml/menu.xml  |   0
 .../Magento/User/etc/adminhtml/routes.xml     |   0
 .../Magento/User/etc/adminhtml/system.xml     |   0
 app/code/Magento/User/etc/config.xml          |   0
 app/code/Magento/User/etc/di.xml              |   0
 app/code/Magento/User/etc/email_templates.xml |   0
 app/code/Magento/User/etc/module.xml          |   0
 app/code/Magento/User/etc/webapi_rest/di.xml  |   0
 app/code/Magento/User/i18n/en_US.csv          |   0
 app/code/Magento/User/registration.php        |   0
 .../email/password_reset_confirmation.html    |   0
 .../adminhtml/email/user_notification.html    |   0
 .../layout/adminhtml_auth_forgotpassword.xml  |   0
 .../adminhtml/layout/adminhtml_auth_login.xml |   0
 .../layout/adminhtml_auth_resetpassword.xml   |   0
 .../layout/adminhtml_locks_block.xml          |   0
 .../adminhtml/layout/adminhtml_locks_grid.xml |   0
 .../layout/adminhtml_locks_index.xml          |   0
 .../adminhtml/layout/adminhtml_user_edit.xml  |   0
 .../layout/adminhtml_user_grid_block.xml      |   0
 .../adminhtml/layout/adminhtml_user_index.xml |   0
 .../layout/adminhtml_user_role_editrole.xml   |   0
 .../adminhtml_user_role_editrolegrid.xml      |   0
 .../layout/adminhtml_user_role_grid_block.xml |   0
 .../layout/adminhtml_user_role_index.xml      |   0
 .../layout/adminhtml_user_role_rolegrid.xml   |   0
 .../layout/adminhtml_user_rolegrid.xml        |   0
 .../layout/adminhtml_user_rolesgrid.xml       |   0
 .../User/view/adminhtml/requirejs-config.js   |   0
 .../templates/admin/forgotpassword.phtml      |   0
 .../templates/admin/forgotpassword_url.phtml  |   0
 .../admin/resetforgottenpassword.phtml        |   0
 .../view/adminhtml/templates/role/edit.phtml  |   0
 .../view/adminhtml/templates/role/info.phtml  |   0
 .../view/adminhtml/templates/role/users.phtml |   0
 .../templates/role/users_grid_js.phtml        |   0
 .../templates/user/roles_grid_js.phtml        |   0
 .../User/view/adminhtml/web/app-config.js     |   0
 .../adminhtml/web/js/delete-user-account.js   |   0
 .../User/view/adminhtml/web/js/roles-tree.js  |   0
 .../Order/Packaging/Plugin/DisplayGirth.php   |   0
 app/code/Magento/Usps/Helper/Data.php         |   0
 app/code/Magento/Usps/LICENSE.txt             |   0
 app/code/Magento/Usps/LICENSE_AFL.txt         |   0
 app/code/Magento/Usps/Model/Carrier.php       |   0
 .../Magento/Usps/Model/Source/Container.php   |   0
 .../Magento/Usps/Model/Source/Freemethod.php  |   0
 .../Magento/Usps/Model/Source/Generic.php     |   0
 .../Magento/Usps/Model/Source/Machinable.php  |   0
 app/code/Magento/Usps/Model/Source/Method.php |   0
 app/code/Magento/Usps/Model/Source/Size.php   |   0
 app/code/Magento/Usps/README.md               |   0
 app/code/Magento/Usps/Setup/UpgradeData.php   |   0
 .../Usps/Test/Unit/Helper/DataTest.php        |   0
 .../Usps/Test/Unit/Model/CarrierTest.php      |   0
 .../Test/Unit/Model/Source/GenericTest.php    |   0
 .../Unit/Model/_files/rates_request_data.php  |   0
 .../Test/Unit/Model/_files/response_rates.xml |   0
 .../_files/return_shipment_request_data.php   |   0
 .../_files/success_usps_response_rates.xml    |   0
 .../success_usps_response_return_shipment.xml |   0
 app/code/Magento/Usps/composer.json           |   0
 app/code/Magento/Usps/etc/adminhtml/di.xml    |   0
 .../Magento/Usps/etc/adminhtml/system.xml     |   0
 app/code/Magento/Usps/etc/config.xml          |   0
 app/code/Magento/Usps/etc/di.xml              |   0
 app/code/Magento/Usps/etc/module.xml          |   0
 app/code/Magento/Usps/i18n/en_US.csv          |   0
 app/code/Magento/Usps/registration.php        |   0
 .../frontend/layout/checkout_cart_index.xml   |   0
 .../frontend/layout/checkout_index_index.xml  |   0
 .../model/shipping-rates-validation-rules.js  |   0
 .../web/js/model/shipping-rates-validator.js  |   0
 .../web/js/view/shipping-rates-validation.js  |   0
 .../Variable/Block/System/Variable.php        |   0
 .../Variable/Block/System/Variable/Edit.php   |   0
 .../Block/System/Variable/Edit/Form.php       |   0
 .../Controller/Adminhtml/System/Variable.php  |   0
 .../Adminhtml/System/Variable/Delete.php      |   0
 .../Adminhtml/System/Variable/Edit.php        |   0
 .../Adminhtml/System/Variable/Index.php       |   0
 .../Adminhtml/System/Variable/NewAction.php   |   0
 .../Adminhtml/System/Variable/Save.php        |   0
 .../Adminhtml/System/Variable/Validate.php    |   0
 .../System/Variable/WysiwygPlugin.php         |   0
 app/code/Magento/Variable/LICENSE.txt         |   0
 app/code/Magento/Variable/LICENSE_AFL.txt     |   0
 .../Variable/Model/ResourceModel/Variable.php |   0
 .../ResourceModel/Variable/Collection.php     |   0
 app/code/Magento/Variable/Model/Variable.php  |   0
 .../Variable/Model/Variable/Config.php        |   0
 app/code/Magento/Variable/README.md           |   0
 .../Magento/Variable/Setup/InstallSchema.php  |   0
 .../System/Variable/ValidateTest.php          |   0
 .../Test/Unit/Model/Variable/ConfigTest.php   |   0
 .../Variable/Test/Unit/Model/VariableTest.php |   0
 app/code/Magento/Variable/composer.json       |   0
 app/code/Magento/Variable/etc/acl.xml         |   0
 .../Magento/Variable/etc/adminhtml/menu.xml   |   0
 .../Magento/Variable/etc/adminhtml/routes.xml |   0
 app/code/Magento/Variable/etc/module.xml      |   0
 app/code/Magento/Variable/i18n/en_US.csv      |   0
 app/code/Magento/Variable/registration.php    |   0
 .../layout/adminhtml_system_variable_edit.xml |   0
 .../adminhtml_system_variable_grid_block.xml  |   0
 .../adminhtml_system_variable_index.xml       |   0
 .../templates/system/variable/js.phtml        |   0
 .../Variable/view/adminhtml/web/variables.js  |   0
 .../Api/Data/PaymentTokenFactoryInterface.php |   0
 .../Vault/Api/Data/PaymentTokenInterface.php  |   0
 .../Api/Data/PaymentTokenInterfaceFactory.php |   0
 .../PaymentTokenSearchResultsInterface.php    |   0
 .../Vault/Api/PaymentMethodListInterface.php  |   0
 .../Api/PaymentTokenManagementInterface.php   |   0
 .../Api/PaymentTokenRepositoryInterface.php   |   0
 .../Vault/Block/AbstractCardRenderer.php      |   0
 .../Vault/Block/AbstractTokenRenderer.php     |   0
 .../Vault/Block/CardRendererInterface.php     |   0
 .../Vault/Block/Customer/AccountTokens.php    |   0
 .../Vault/Block/Customer/CreditCards.php      |   0
 .../Vault/Block/Customer/IconInterface.php    |   0
 .../Vault/Block/Customer/PaymentTokens.php    |   0
 app/code/Magento/Vault/Block/Form.php         |   0
 .../Vault/Block/TokenRendererInterface.php    |   0
 .../Vault/Controller/Cards/DeleteAction.php   |   0
 .../Vault/Controller/Cards/ListAction.php     |   0
 .../Vault/Controller/CardsManagement.php      |   0
 app/code/Magento/Vault/LICENSE.txt            |   0
 app/code/Magento/Vault/LICENSE_AFL.txt        |   0
 .../Model/AbstractPaymentTokenFactory.php     |   0
 .../Model/AccountPaymentTokenFactory.php      |   0
 .../Vault/Model/CreditCardTokenFactory.php    |   0
 .../Vault/Model/CustomerTokenManagement.php   |   0
 .../Model/Method/NullPaymentProvider.php      |   0
 app/code/Magento/Vault/Model/Method/Vault.php |   0
 .../Magento/Vault/Model/PaymentMethodList.php |   0
 app/code/Magento/Vault/Model/PaymentToken.php |   0
 .../Vault/Model/PaymentTokenFactory.php       |   0
 .../Vault/Model/PaymentTokenManagement.php    |   0
 .../Vault/Model/PaymentTokenRepository.php    |   0
 .../Model/ResourceModel/PaymentToken.php      |   0
 .../ResourceModel/PaymentToken/Collection.php |   0
 .../Ui/Adminhtml/TokensConfigProvider.php     |   0
 .../Vault/Model/Ui/TokenUiComponent.php       |   0
 .../Model/Ui/TokenUiComponentInterface.php    |   0
 .../Ui/TokenUiComponentProviderInterface.php  |   0
 .../Vault/Model/Ui/TokensConfigProvider.php   |   0
 .../Vault/Model/Ui/VaultConfigProvider.php    |   0
 .../Vault/Model/VaultPaymentInterface.php     |   0
 .../Observer/AfterPaymentSaveObserver.php     |   0
 .../Vault/Observer/PaymentTokenAssigner.php   |   0
 .../Vault/Observer/VaultEnableAssigner.php    |   0
 .../Plugin/PaymentVaultAttributesLoad.php     |   0
 .../PaymentVaultConfigurationProcess.php      |   0
 app/code/Magento/Vault/README.md              |   0
 .../Magento/Vault/Setup/InstallSchema.php     |   0
 app/code/Magento/Vault/Setup/UpgradeData.php  |   0
 .../Magento/Vault/Setup/UpgradeSchema.php     |   0
 .../Unit/Block/Customer/AccountTokensTest.php |   0
 .../Model/AccountPaymentTokenFactoryTest.php  |   0
 .../Unit/Model/CreditCardTokenFactoryTest.php |   0
 .../Model/CustomerTokenManagementTest.php     |   0
 .../Test/Unit/Model/Method/VaultTest.php      |   0
 .../Test/Unit/Model/PaymentMethodListTest.php |   0
 .../Unit/Model/PaymentTokenManagementTest.php |   0
 .../Unit/Model/PaymentTokenRepositoryTest.php |   0
 .../Ui/Adminhtml/TokensConfigProviderTest.php |   0
 .../Model/Ui/TokensConfigProviderTest.php     |   0
 .../Unit/Model/Ui/VaultConfigProviderTest.php |   0
 .../Observer/AfterPaymentSaveObserverTest.php |   0
 .../Observer/PaymentTokenAssignerTest.php     |   0
 .../Unit/Observer/VaultEnableAssignerTest.php |   0
 .../PaymentVaultConfigurationProcessTest.php  |   0
 app/code/Magento/Vault/composer.json          |   0
 app/code/Magento/Vault/etc/adminhtml/di.xml   |   0
 app/code/Magento/Vault/etc/config.xml         |   0
 app/code/Magento/Vault/etc/di.xml             |   0
 app/code/Magento/Vault/etc/events.xml         |   0
 .../Vault/etc/extension_attributes.xml        |   0
 app/code/Magento/Vault/etc/frontend/di.xml    |   0
 .../Magento/Vault/etc/frontend/routes.xml     |   0
 app/code/Magento/Vault/etc/module.xml         |   0
 app/code/Magento/Vault/i18n/en_US.csv         |   0
 app/code/Magento/Vault/registration.php       |   0
 .../view/adminhtml/templates/form/vault.phtml |   0
 .../Vault/view/adminhtml/web/js/vault.js      |   0
 .../frontend/layout/checkout_index_index.xml  |   0
 .../view/frontend/layout/customer_account.xml |   0
 .../layout/vault_cards_listaction.xml         |   0
 .../view/frontend/templates/cards_list.phtml  |   0
 .../customer_account/credit_card.phtml        |   0
 .../view/frontend/templates/token_list.phtml  |   0
 .../web/js/customer_account/deleteWidget.js   |   0
 .../js/view/payment/method-renderer/vault.js  |   0
 .../web/js/view/payment/vault-enabler.js      |   0
 .../frontend/web/js/view/payment/vault.js     |   0
 .../frontend/web/template/payment/form.html   |   0
 .../Version/Controller/Index/Index.php        |   0
 app/code/Magento/Version/LICENSE.txt          |   0
 app/code/Magento/Version/LICENSE_AFL.txt      |   0
 app/code/Magento/Version/README.md            |   0
 app/code/Magento/Version/composer.json        |   0
 .../Magento/Version/etc/frontend/routes.xml   |   0
 app/code/Magento/Version/etc/module.xml       |   0
 app/code/Magento/Version/i18n/en_US.csv       |   0
 app/code/Magento/Version/registration.php     |   0
 .../Webapi/Controller/PathProcessor.php       |   0
 app/code/Magento/Webapi/Controller/Rest.php   |   0
 .../Controller/Rest/InputParamsResolver.php   |   0
 .../Rest/ParamOverriderCustomerId.php         |   0
 .../Controller/Rest/ParamsOverrider.php       |   0
 .../Controller/Rest/RequestValidator.php      |   0
 .../Magento/Webapi/Controller/Rest/Router.php |   0
 .../Webapi/Controller/Rest/Router/Route.php   |   0
 app/code/Magento/Webapi/Controller/Soap.php   |   0
 .../Controller/Soap/Request/Handler.php       |   0
 app/code/Magento/Webapi/LICENSE.txt           |   0
 app/code/Magento/Webapi/LICENSE_AFL.txt       |   0
 .../Webapi/Model/AbstractSchemaGenerator.php  |   0
 .../Model/Authorization/GuestUserContext.php  |   0
 .../Model/Authorization/OauthUserContext.php  |   0
 .../Model/Authorization/TokenUserContext.php  |   0
 .../Webapi/Model/Cache/Type/Webapi.php        |   0
 app/code/Magento/Webapi/Model/Config.php      |   0
 .../Webapi/Model/Config/ClassReflector.php    |   0
 .../Magento/Webapi/Model/Config/Converter.php |   0
 .../Magento/Webapi/Model/Config/Reader.php    |   0
 .../Webapi/Model/Config/SchemaLocator.php     |   0
 .../CustomerSessionUserContext.php            |   0
 .../Model/Plugin/GuestAuthorization.php       |   0
 .../Magento/Webapi/Model/Plugin/Manager.php   |   0
 app/code/Magento/Webapi/Model/Rest/Config.php |   0
 .../Magento/Webapi/Model/Rest/Swagger.php     |   0
 .../Webapi/Model/Rest/Swagger/Generator.php   |   0
 .../Magento/Webapi/Model/ServiceMetadata.php  |   0
 app/code/Magento/Webapi/Model/Soap/Config.php |   0
 app/code/Magento/Webapi/Model/Soap/Fault.php  |   0
 app/code/Magento/Webapi/Model/Soap/Server.php |   0
 .../Webapi/Model/Soap/ServerFactory.php       |   0
 app/code/Magento/Webapi/Model/Soap/Wsdl.php   |   0
 .../Model/Soap/Wsdl/ComplexTypeStrategy.php   |   0
 .../Webapi/Model/Soap/Wsdl/Generator.php      |   0
 .../Magento/Webapi/Model/Soap/WsdlFactory.php |   0
 app/code/Magento/Webapi/Model/UrlDecoder.php  |   0
 .../Webapi/Model/WebapiRoleLocator.php        |   0
 app/code/Magento/Webapi/README.md             |   0
 .../Unit/Controller/PathProcessorTest.php     |   0
 .../Rest/ParamOverriderCustomerIdTest.php     |   0
 .../Controller/Rest/ParamsOverriderTest.php   |   0
 .../Controller/Rest/RequestValidatorTest.php  |   0
 .../Unit/Controller/Rest/Router/RouteTest.php |   0
 .../Test/Unit/Controller/Rest/RouterTest.php  |   0
 .../Webapi/Test/Unit/Controller/RestTest.php  |   0
 .../Controller/Soap/Request/HandlerTest.php   |   0
 .../Webapi/Test/Unit/Controller/SoapTest.php  |   0
 .../Webapi/Test/Unit/ExceptionTest.php        |   0
 .../Authorization/GuestUserContextTest.php    |   0
 .../Authorization/OauthUserContextTest.php    |   0
 .../Authorization/TokenUserContextTest.php    |   0
 .../Unit/Model/Config/ClassReflectorTest.php  |   0
 .../Test/Unit/Model/Config/ConverterTest.php  |   0
 .../Config/TestServiceForClassReflector.php   |   0
 .../Test/Unit/Model/Config/_files/webapi.php  |   0
 .../Test/Unit/Model/Config/_files/webapi.xml  |   0
 .../Webapi/Test/Unit/Model/ConfigTest.php     |   0
 .../Unit/Model/DataObjectProcessorTest.php    |   0
 .../Test/Unit/Model/Plugin/ManagerTest.php    |   0
 .../Unit/Model/Rest/Swagger/GeneratorTest.php |   0
 .../Test/Unit/Model/ServiceMetadataTest.php   |   0
 .../Webapi/Test/Unit/Model/Soap/FaultTest.php |   0
 .../Test/Unit/Model/Soap/ServerTest.php       |   0
 .../Soap/Wsdl/ComplexTypeStrategyTest.php     |   0
 .../Unit/Model/Soap/Wsdl/GeneratorTest.php    |   0
 .../Test/Unit/Model/Soap/WsdlFactoryTest.php  |   0
 .../Test/Unit/Model/WebapiRoleLocatorTest.php |   0
 .../Webapi/Test/Unit/Model/_files/acl.php     |   0
 .../Webapi/Test/Unit/Model/_files/acl.xml     |   0
 .../Webapi/Test/Unit/Model/_files/acl.xsd     |   0
 .../soap_fault/soap_fault_expected_xmls.php   |   0
 app/code/Magento/Webapi/composer.json         |   0
 .../Magento/Webapi/etc/adminhtml/system.xml   |   0
 app/code/Magento/Webapi/etc/cache.xml         |   0
 app/code/Magento/Webapi/etc/di.xml            |   0
 .../Magento/Webapi/etc/frontend/routes.xml    |   0
 app/code/Magento/Webapi/etc/module.xml        |   0
 app/code/Magento/Webapi/etc/webapi.xsd        |   0
 .../Magento/Webapi/etc/webapi_rest/di.xml     |   0
 .../Magento/Webapi/etc/webapi_soap/di.xml     |   0
 app/code/Magento/Webapi/i18n/en_US.csv        |   0
 app/code/Magento/Webapi/registration.php      |   0
 .../layout/adminhtml_integration_edit.xml     |   0
 ...dminhtml_integration_permissionsdialog.xml |   0
 app/code/Magento/WebapiSecurity/LICENSE.txt   |   0
 .../Magento/WebapiSecurity/LICENSE_AFL.txt    |   0
 .../Plugin/AnonymousResourceSecurity.php      |   0
 .../Model/Plugin/CacheInvalidator.php         |   0
 app/code/Magento/WebapiSecurity/README.md     |   0
 app/code/Magento/WebapiSecurity/composer.json |   0
 .../WebapiSecurity/etc/adminhtml/system.xml   |   0
 .../Magento/WebapiSecurity/etc/config.xml     |   0
 app/code/Magento/WebapiSecurity/etc/di.xml    |   0
 .../Magento/WebapiSecurity/etc/module.xml     |   0
 .../Magento/WebapiSecurity/i18n/en_US.csv     |   0
 .../Magento/WebapiSecurity/registration.php   |   0
 .../WeeeAdjustmentAttributeInterface.php      |   0
 .../Block/Adminhtml/Items/Price/Renderer.php  |   0
 .../Magento/Weee/Block/Element/Weee/Tax.php   |   0
 .../Magento/Weee/Block/Renderer/Weee/Tax.php  |   0
 .../Magento/Weee/Block/Sales/Order/Totals.php |   0
 app/code/Magento/Weee/Helper/Data.php         |   0
 app/code/Magento/Weee/LICENSE.txt             |   0
 app/code/Magento/Weee/LICENSE_AFL.txt         |   0
 .../Weee/Model/App/Action/ContextPlugin.php   |   0
 .../Weee/Model/Attribute/Backend/Weee/Tax.php |   0
 app/code/Magento/Weee/Model/Config.php        |   0
 .../Weee/Model/Config/Source/Display.php      |   0
 .../ProductRender/WeeeAdjustmentAttribute.php |   0
 .../Attribute/Backend/Weee/Tax.php            |   0
 .../Magento/Weee/Model/ResourceModel/Tax.php  |   0
 .../Magento/Weee/Model/Sales/Pdf/Weee.php     |   0
 app/code/Magento/Weee/Model/Tax.php           |   0
 .../Weee/Model/Total/Creditmemo/Weee.php      |   0
 .../Magento/Weee/Model/Total/Invoice/Weee.php |   0
 .../Magento/Weee/Model/Total/Quote/Weee.php   |   0
 .../Weee/Model/Total/Quote/WeeeTax.php        |   0
 .../Magento/Weee/Model/WeeeConfigProvider.php |   0
 .../Weee/Observer/AddPaymentWeeeItem.php      |   0
 .../AddWeeeTaxAttributeTypeObserver.php       |   0
 .../Weee/Observer/AfterAddressSave.php        |   0
 .../AssignBackendModelToAttributeObserver.php |   0
 .../Weee/Observer/CustomerLoggedIn.php        |   0
 .../GetPriceConfigurationObserver.php         |   0
 .../SetWeeeRendererInFormObserver.php         |   0
 .../Observer/UpdateElementTypesObserver.php   |   0
 .../UpdateExcludedFieldListObserver.php       |   0
 .../Observer/UpdateProductOptionsObserver.php |   0
 .../Plugin/Checkout/CustomerData/Cart.php     |   0
 .../Plugin/Ui/DataProvider/WeeeSettings.php   |   0
 app/code/Magento/Weee/Pricing/Adjustment.php  |   0
 .../Weee/Pricing/Render/Adjustment.php        |   0
 .../Weee/Pricing/Render/TaxAdjustment.php     |   0
 .../Magento/Weee/Pricing/TaxAdjustment.php    |   0
 app/code/Magento/Weee/README.md               |   0
 app/code/Magento/Weee/Setup/InstallData.php   |   0
 app/code/Magento/Weee/Setup/InstallSchema.php |   0
 app/code/Magento/Weee/Setup/Recurring.php     |   0
 .../Unit/App/Action/ContextPluginTest.php     |   0
 .../Test/Unit/Block/Element/Weee/TaxTest.php  |   0
 .../Unit/Block/Item/Price/RendererTest.php    |   0
 .../Weee/Test/Unit/Helper/DataTest.php        |   0
 .../Model/Attribute/Backend/Weee/TaxTest.php  |   0
 .../Weee/Test/Unit/Model/ConfigTest.php       |   0
 .../Attribute/Backend/Weee/TaxTest.php        |   0
 .../Test/Unit/Model/ResourceModel/TaxTest.php |   0
 .../Magento/Weee/Test/Unit/Model/TaxTest.php  |   0
 .../Unit/Model/Total/Creditmemo/WeeeTest.php  |   0
 .../Unit/Model/Total/Invoice/WeeeTest.php     |   0
 .../Unit/Model/Total/Quote/WeeeTaxTest.php    |   0
 .../Test/Unit/Model/Total/Quote/WeeeTest.php  |   0
 .../Unit/Model/WeeeConfigProviderTest.php     |   0
 .../Unit/Observer/AfterAddressSaveTest.php    |   0
 .../Unit/Observer/CustomerLoggedInTest.php    |   0
 .../GetPriceConfigurationObserverTest.php     |   0
 .../UpdateProductOptionsObserverTest.php      |   0
 .../Weee/Test/Unit/Pricing/AdjustmentTest.php |   0
 .../Unit/Pricing/Render/AdjustmentTest.php    |   0
 .../Unit/Pricing/Render/TaxAdjustmentTest.php |   0
 .../Test/Unit/Pricing/TaxAdjustmentTest.php   |   0
 .../Form/Modifier/Manager/WebsiteTest.php     |   0
 .../Product/Form/Modifier/WeeeTest.php        |   0
 .../Product/Listing/Collector/WeeeTest.php    |   0
 .../Product/Form/Modifier/Manager/Website.php |   0
 .../Product/Form/Modifier/Weee.php            |   0
 .../Product/Listing/Collector/Weee.php        |   0
 app/code/Magento/Weee/composer.json           |   0
 app/code/Magento/Weee/etc/adminhtml/di.xml    |   0
 .../Magento/Weee/etc/adminhtml/events.xml     |   0
 .../Magento/Weee/etc/adminhtml/system.xml     |   0
 app/code/Magento/Weee/etc/config.xml          |   0
 app/code/Magento/Weee/etc/di.xml              |   0
 app/code/Magento/Weee/etc/events.xml          |   0
 .../Magento/Weee/etc/extension_attributes.xml |   0
 app/code/Magento/Weee/etc/fieldset.xml        |   0
 app/code/Magento/Weee/etc/frontend/di.xml     |   0
 app/code/Magento/Weee/etc/frontend/events.xml |   0
 app/code/Magento/Weee/etc/module.xml          |   0
 app/code/Magento/Weee/etc/pdf.xml             |   0
 app/code/Magento/Weee/etc/sales.xml           |   0
 app/code/Magento/Weee/i18n/en_US.csv          |   0
 app/code/Magento/Weee/registration.php        |   0
 .../adminhtml/layout/catalog_product_form.xml |   0
 .../layout/sales_creditmemo_item_price.xml    |   0
 .../layout/sales_invoice_item_price.xml       |   0
 .../layout/sales_order_create_item_price.xml  |   0
 .../layout/sales_order_creditmemo_new.xml     |   0
 .../sales_order_creditmemo_updateqty.xml      |   0
 .../layout/sales_order_creditmemo_view.xml    |   0
 .../layout/sales_order_invoice_new.xml        |   0
 .../layout/sales_order_invoice_updateqty.xml  |   0
 .../layout/sales_order_invoice_view.xml       |   0
 .../layout/sales_order_item_price.xml         |   0
 .../adminhtml/layout/sales_order_view.xml     |   0
 .../Weee/view/adminhtml/requirejs-config.js   |   0
 .../adminhtml/templates/items/price/row.phtml |   0
 .../templates/items/price/total.phtml         |   0
 .../templates/items/price/unit.phtml          |   0
 .../order/create/items/price/row.phtml        |   0
 .../order/create/items/price/total.phtml      |   0
 .../order/create/items/price/unit.phtml       |   0
 .../adminhtml/templates/renderer/tax.phtml    |   0
 .../product_attribute_add_form.xml            |   0
 .../view/adminhtml/web/js/fpt-attribute.js    |   0
 .../Weee/view/adminhtml/web/js/fpt-group.js   |   0
 .../adminhtml/web/js/regions-tax-select.js    |   0
 .../Weee/view/adminhtml/web/styles.css        |   0
 .../base/layout/catalog_product_prices.xml    |   0
 .../base/templates/pricing/adjustment.phtml   |   0
 .../Weee/view/base/web/js/price/adjustment.js |   0
 .../base/web/template/price/adjustment.html   |   0
 .../frontend/layout/checkout_cart_index.xml   |   0
 .../frontend/layout/checkout_index_index.xml  |   0
 .../layout/checkout_item_price_renderers.xml  |   0
 .../Weee/view/frontend/layout/default.xml     |   0
 .../layout/sales_email_item_price.xml         |   0
 .../sales_email_order_creditmemo_items.xml    |   0
 .../sales_email_order_invoice_items.xml       |   0
 .../layout/sales_email_order_items.xml        |   0
 .../layout/sales_guest_creditmemo.xml         |   0
 .../frontend/layout/sales_guest_invoice.xml   |   0
 .../frontend/layout/sales_guest_print.xml     |   0
 .../layout/sales_guest_printcreditmemo.xml    |   0
 .../layout/sales_guest_printinvoice.xml       |   0
 .../view/frontend/layout/sales_guest_view.xml |   0
 .../layout/sales_order_creditmemo.xml         |   0
 .../frontend/layout/sales_order_invoice.xml   |   0
 .../layout/sales_order_item_price.xml         |   0
 .../frontend/layout/sales_order_print.xml     |   0
 .../layout/sales_order_printcreditmemo.xml    |   0
 .../layout/sales_order_printinvoice.xml       |   0
 .../view/frontend/layout/sales_order_view.xml |   0
 .../Weee/view/frontend/requirejs-config.js    |   0
 .../checkout/cart/item/price/sidebar.phtml    |   0
 .../review/item/price/row_excl_tax.phtml      |   0
 .../review/item/price/row_incl_tax.phtml      |   0
 .../review/item/price/unit_excl_tax.phtml     |   0
 .../review/item/price/unit_incl_tax.phtml     |   0
 .../templates/email/items/price/row.phtml     |   0
 .../frontend/templates/item/price/row.phtml   |   0
 .../item/price/total_after_discount.phtml     |   0
 .../frontend/templates/item/price/unit.phtml  |   0
 .../ui_component/widget_recently_compared.xml |   0
 .../ui_component/widget_recently_viewed.xml   |   0
 .../frontend/web/js/view/cart/totals/weee.js  |   0
 .../summary/item/price/row_excl_tax.js        |   0
 .../summary/item/price/row_incl_tax.js        |   0
 .../view/checkout/summary/item/price/weee.js  |   0
 .../web/js/view/checkout/summary/weee.js      |   0
 .../Weee/view/frontend/web/tax-toggle.js      |   0
 .../summary/item/price/row_excl_tax.html      |   0
 .../summary/item/price/row_incl_tax.html      |   0
 .../web/template/checkout/summary/weee.html   |   0
 .../Magento/Widget/Block/Adminhtml/Widget.php |   0
 .../Widget/Catalog/Category/Chooser.php       |   0
 .../Widget/Block/Adminhtml/Widget/Chooser.php |   0
 .../Widget/Block/Adminhtml/Widget/Form.php    |   0
 .../Block/Adminhtml/Widget/Instance.php       |   0
 .../Block/Adminhtml/Widget/Instance/Edit.php  |   0
 .../Instance/Edit/Chooser/Container.php       |   0
 .../Edit/Chooser/DesignAbstraction.php        |   0
 .../Widget/Instance/Edit/Chooser/Layout.php   |   0
 .../Widget/Instance/Edit/Chooser/Template.php |   0
 .../Adminhtml/Widget/Instance/Edit/Form.php   |   0
 .../Widget/Instance/Edit/Tab/Main.php         |   0
 .../Widget/Instance/Edit/Tab/Main/Layout.php  |   0
 .../Widget/Instance/Edit/Tab/Properties.php   |   0
 .../Widget/Instance/Edit/Tab/Settings.php     |   0
 .../Adminhtml/Widget/Instance/Edit/Tabs.php   |   0
 .../Widget/Block/Adminhtml/Widget/Options.php |   0
 .../Magento/Widget/Block/BlockInterface.php   |   0
 .../Adminhtml/Widget/BuildWidget.php          |   0
 .../Controller/Adminhtml/Widget/Index.php     |   0
 .../Controller/Adminhtml/Widget/Instance.php  |   0
 .../Adminhtml/Widget/Instance/Blocks.php      |   0
 .../Adminhtml/Widget/Instance/Categories.php  |   0
 .../Adminhtml/Widget/Instance/Delete.php      |   0
 .../Adminhtml/Widget/Instance/Edit.php        |   0
 .../Adminhtml/Widget/Instance/Index.php       |   0
 .../Adminhtml/Widget/Instance/NewAction.php   |   0
 .../Adminhtml/Widget/Instance/Products.php    |   0
 .../Adminhtml/Widget/Instance/Save.php        |   0
 .../Adminhtml/Widget/Instance/Template.php    |   0
 .../Adminhtml/Widget/Instance/Validate.php    |   0
 .../Adminhtml/Widget/LoadOptions.php          |   0
 app/code/Magento/Widget/Helper/Conditions.php |   0
 app/code/Magento/Widget/LICENSE.txt           |   0
 app/code/Magento/Widget/LICENSE_AFL.txt       |   0
 .../Magento/Widget/Model/Config/Converter.php |   0
 app/code/Magento/Widget/Model/Config/Data.php |   0
 .../Widget/Model/Config/FileResolver.php      |   0
 .../Magento/Widget/Model/Config/Reader.php    |   0
 .../Widget/Model/Config/SchemaLocator.php     |   0
 app/code/Magento/Widget/Model/Layout/Link.php |   0
 .../Magento/Widget/Model/Layout/Update.php    |   0
 .../Widget/Model/NamespaceResolver.php        |   0
 .../Model/ResourceModel/Layout/Link.php       |   0
 .../ResourceModel/Layout/Link/Collection.php  |   0
 .../Model/ResourceModel/Layout/Plugin.php     |   0
 .../Model/ResourceModel/Layout/Update.php     |   0
 .../Layout/Update/Collection.php              |   0
 .../Widget/Model/ResourceModel/Widget.php     |   0
 .../Model/ResourceModel/Widget/Instance.php   |   0
 .../Widget/Instance/Collection.php            |   0
 .../Widget/Instance/Options/ThemeId.php       |   0
 .../Widget/Instance/Options/Themes.php        |   0
 .../Widget/Instance/Options/Types.php         |   0
 .../Magento/Widget/Model/Template/Filter.php  |   0
 .../Widget/Model/Template/FilterEmulate.php   |   0
 app/code/Magento/Widget/Model/Widget.php      |   0
 .../Magento/Widget/Model/Widget/Config.php    |   0
 .../Magento/Widget/Model/Widget/Instance.php  |   0
 .../Model/Widget/Instance/OptionsFactory.php  |   0
 app/code/Magento/Widget/README.md             |   0
 app/code/Magento/Widget/Setup/InstallData.php |   0
 .../Magento/Widget/Setup/InstallSchema.php    |   0
 .../Widget/Setup/LayoutUpdateConverter.php    |   0
 app/code/Magento/Widget/Setup/UpgradeData.php |   0
 .../Widget/Catalog/Category/ChooserTest.php   |   0
 .../Edit/Chooser/AbstractContainerTest.php    |   0
 .../Instance/Edit/Chooser/ContainerTest.php   |   0
 .../Instance/Edit/Tab/PropertiesTest.php      |   0
 .../Widget/Instance/CategoriesTest.php        |   0
 .../Adminhtml/Widget/LoadOptionsTest.php      |   0
 .../Test/Unit/Helper/ConditionsTest.php       |   0
 .../Test/Unit/Model/Config/ConverterTest.php  |   0
 .../Unit/Model/Config/FileResolverTest.php    |   0
 .../Test/Unit/Model/NamespaceResolverTest.php |   0
 .../ResourceModel/Layout/AbstractTestCase.php |   0
 .../Layout/Link/CollectionTest.php            |   0
 .../Layout/Update/CollectionTest.php          |   0
 .../Widget/Instance/Options/ThemesTest.php    |   0
 .../Unit/Model/Template/FilterEmulateTest.php |   0
 .../Test/Unit/Model/Template/FilterTest.php   |   0
 .../Test/Unit/Model/Widget/InstanceTest.php   |   0
 .../Widget/Test/Unit/Model/WidgetTest.php     |   0
 .../Unit/Model/_files/mappedConfigArray1.php  |   0
 .../Unit/Model/_files/mappedConfigArray2.php  |   0
 .../Model/_files/mappedConfigArrayAll.php     |   0
 .../Widget/Test/Unit/Model/_files/widget.xml  |   0
 .../Test/Unit/Model/_files/widget_config.php  |   0
 app/code/Magento/Widget/composer.json         |   0
 app/code/Magento/Widget/etc/acl.xml           |   0
 app/code/Magento/Widget/etc/adminhtml/di.xml  |   0
 .../Magento/Widget/etc/adminhtml/menu.xml     |   0
 .../Magento/Widget/etc/adminhtml/routes.xml   |   0
 app/code/Magento/Widget/etc/di.xml            |   0
 app/code/Magento/Widget/etc/module.xml        |   0
 app/code/Magento/Widget/etc/types.xsd         |   0
 app/code/Magento/Widget/etc/widget.xsd        |   0
 app/code/Magento/Widget/etc/widget_file.xsd   |   0
 app/code/Magento/Widget/i18n/en_US.csv        |   0
 app/code/Magento/Widget/registration.php      |   0
 .../layout/adminhtml_widget_index.xml         |   0
 .../adminhtml_widget_instance_block.xml       |   0
 .../layout/adminhtml_widget_instance_edit.xml |   0
 .../adminhtml_widget_instance_index.xml       |   0
 .../layout/adminhtml_widget_loadoptions.xml   |   0
 .../catalog/category/widget/tree.phtml        |   0
 .../templates/instance/edit/layout.phtml      |   0
 .../adminhtml/templates/instance/js.phtml     |   0
 .../Widget/view/adminhtml/web/placeholder.gif | Bin
 .../Widget/view/frontend/layout/default.xml   |   0
 .../Widget/view/frontend/layout/print.xml     |   0
 .../Magento/Wishlist/Block/AbstractBlock.php  |   0
 .../Magento/Wishlist/Block/AddToWishlist.php  |   0
 .../Widget/Grid/Column/Filter/Text.php        |   0
 .../Wishlist/Block/Adminhtml/WishlistTab.php  |   0
 .../Item/Renderer/Actions/MoveToWishlist.php  |   0
 .../ProductList/Item/AddTo/Wishlist.php       |   0
 .../Catalog/Product/View/AddTo/Wishlist.php   |   0
 .../Wishlist/Block/Customer/Sharing.php       |   0
 .../Wishlist/Block/Customer/Sidebar.php       |   0
 .../Wishlist/Block/Customer/Wishlist.php      |   0
 .../Block/Customer/Wishlist/Button.php        |   0
 .../Block/Customer/Wishlist/Item/Column.php   |   0
 .../Customer/Wishlist/Item/Column/Actions.php |   0
 .../Customer/Wishlist/Item/Column/Cart.php    |   0
 .../Customer/Wishlist/Item/Column/Comment.php |   0
 .../Customer/Wishlist/Item/Column/Edit.php    |   0
 .../Customer/Wishlist/Item/Column/Image.php   |   0
 .../Customer/Wishlist/Item/Column/Info.php    |   0
 .../Customer/Wishlist/Item/Column/Remove.php  |   0
 .../Block/Customer/Wishlist/Item/Options.php  |   0
 .../Block/Customer/Wishlist/Items.php         |   0
 .../Magento/Wishlist/Block/Item/Configure.php |   0
 app/code/Magento/Wishlist/Block/Link.php      |   0
 .../Magento/Wishlist/Block/Rss/EmailLink.php  |   0
 app/code/Magento/Wishlist/Block/Rss/Link.php  |   0
 .../Wishlist/Block/Share/Email/Items.php      |   0
 .../Magento/Wishlist/Block/Share/Wishlist.php |   0
 .../Wishlist/Controller/AbstractIndex.php     |   0
 .../Magento/Wishlist/Controller/Index/Add.php |   0
 .../Wishlist/Controller/Index/Allcart.php     |   0
 .../Wishlist/Controller/Index/Cart.php        |   0
 .../Wishlist/Controller/Index/Configure.php   |   0
 .../Controller/Index/DownloadCustomOption.php |   0
 .../Wishlist/Controller/Index/Fromcart.php    |   0
 .../Wishlist/Controller/Index/Index.php       |   0
 .../Wishlist/Controller/Index/Plugin.php      |   0
 .../Wishlist/Controller/Index/Remove.php      |   0
 .../Wishlist/Controller/Index/Send.php        |   0
 .../Wishlist/Controller/Index/Share.php       |   0
 .../Wishlist/Controller/Index/Update.php      |   0
 .../Controller/Index/UpdateItemOptions.php    |   0
 .../Wishlist/Controller/IndexInterface.php    |   0
 .../Wishlist/Controller/Shared/Allcart.php    |   0
 .../Wishlist/Controller/Shared/Cart.php       |   0
 .../Wishlist/Controller/Shared/Index.php      |   0
 .../Controller/Shared/WishlistProvider.php    |   0
 .../Wishlist/Controller/WishlistProvider.php  |   0
 .../Controller/WishlistProviderInterface.php  |   0
 .../Wishlist/CustomerData/Wishlist.php        |   0
 app/code/Magento/Wishlist/Helper/Data.php     |   0
 app/code/Magento/Wishlist/Helper/Rss.php      |   0
 app/code/Magento/Wishlist/LICENSE.txt         |   0
 app/code/Magento/Wishlist/LICENSE_AFL.txt     |   0
 .../Wishlist/Model/AuthenticationState.php    |   0
 .../Model/AuthenticationStateInterface.php    |   0
 app/code/Magento/Wishlist/Model/Config.php    |   0
 .../Wishlist/Model/Config/Source/Summary.php  |   0
 app/code/Magento/Wishlist/Model/Item.php      |   0
 .../Magento/Wishlist/Model/Item/Option.php    |   0
 .../Magento/Wishlist/Model/ItemCarrier.php    |   0
 .../Model/LocaleQuantityProcessor.php         |   0
 .../Wishlist/Model/ResourceModel/Item.php     |   0
 .../Model/ResourceModel/Item/Collection.php   |   0
 .../ResourceModel/Item/Collection/Grid.php    |   0
 .../Model/ResourceModel/Item/Option.php       |   0
 .../ResourceModel/Item/Option/Collection.php  |   0
 .../Wishlist/Model/ResourceModel/Wishlist.php |   0
 .../ResourceModel/Wishlist/Collection.php     |   0
 .../Magento/Wishlist/Model/Rss/Wishlist.php   |   0
 app/code/Magento/Wishlist/Model/Wishlist.php  |   0
 .../Magento/Wishlist/Observer/AddToCart.php   |   0
 .../Wishlist/Observer/CartUpdateBefore.php    |   0
 .../Wishlist/Observer/CustomerLogin.php       |   0
 .../Wishlist/Observer/CustomerLogout.php      |   0
 .../Ui/DataProvider/WishlistSettings.php      |   0
 .../ConfiguredPrice/ConfigurableProduct.php   |   0
 .../Pricing/ConfiguredPrice/Downloadable.php  |   0
 .../Pricing/Render/ConfiguredPriceBox.php     |   0
 app/code/Magento/Wishlist/README.md           |   0
 .../Magento/Wishlist/Setup/InstallSchema.php  |   0
 app/code/Magento/Wishlist/Setup/Recurring.php |   0
 .../Magento/Wishlist/Setup/UpgradeData.php    |   0
 .../Widget/Grid/Column/Filter/TextTest.php    |   0
 .../Renderer/Actions/MoveToWishlistTest.php   |   0
 .../Test/Unit/Block/Customer/SidebarTest.php  |   0
 .../Customer/Wishlist/Item/OptionsTest.php    |   0
 .../Test/Unit/Block/Item/ConfigureTest.php    |   0
 .../Test/Unit/Block/Rss/EmailLinkTest.php     |   0
 .../Wishlist/Test/Unit/Block/Rss/LinkTest.php |   0
 .../Unit/Controller/Index/AllcartTest.php     |   0
 .../Test/Unit/Controller/Index/CartTest.php   |   0
 .../Index/DownloadCustomOptionTest.php        |   0
 .../Unit/Controller/Index/FromcartTest.php    |   0
 .../Test/Unit/Controller/Index/IndexTest.php  |   0
 .../Test/Unit/Controller/Index/PluginTest.php |   0
 .../Test/Unit/Controller/Index/RemoveTest.php |   0
 .../Test/Unit/Controller/Index/SendTest.php   |   0
 .../Test/Unit/Controller/Index/ShareTest.php  |   0
 .../Index/UpdateItemOptionsTest.php           |   0
 .../Unit/Controller/Shared/AllcartTest.php    |   0
 .../Test/Unit/Controller/Shared/CartTest.php  |   0
 .../Unit/Controller/WishlistProviderTest.php  |   0
 .../Test/Unit/CustomerData/WishlistTest.php   |   0
 .../Product/Collector/ButtonTest.php          |   0
 .../Wishlist/Test/Unit/Helper/DataTest.php    |   0
 .../Wishlist/Test/Unit/Helper/RssTest.php     |   0
 .../Unit/Model/AuthenticationStateTest.php    |   0
 .../Wishlist/Test/Unit/Model/ConfigTest.php   |   0
 .../Test/Unit/Model/ItemCarrierTest.php       |   0
 .../Wishlist/Test/Unit/Model/ItemTest.php     |   0
 .../Model/LocaleQuantityProcessorTest.php     |   0
 .../ResourceModel/Item/CollectionTest.php     |   0
 .../Test/Unit/Model/Rss/WishlistTest.php      |   0
 .../Wishlist/Test/Unit/Model/WishlistTest.php |   0
 .../Test/Unit/Observer/AddToCartTest.php      |   0
 .../Unit/Observer/CartUpdateBeforeTest.php    |   0
 .../Test/Unit/Observer/CustomerLoginTest.php  |   0
 .../Test/Unit/Observer/CustomerLogoutTest.php |   0
 .../ConfigurableProductTest.php               |   0
 .../ConfiguredPrice/DownloadableTest.php      |   0
 .../Pricing/Render/ConfiguredPriceBoxTest.php |   0
 .../DataProvider/Product/Collector/Button.php |   0
 app/code/Magento/Wishlist/composer.json       |   0
 app/code/Magento/Wishlist/etc/acl.xml         |   0
 .../Magento/Wishlist/etc/adminhtml/di.xml     |   0
 .../Magento/Wishlist/etc/adminhtml/system.xml |   0
 .../Wishlist/etc/catalog_attributes.xml       |   0
 app/code/Magento/Wishlist/etc/config.xml      |   0
 app/code/Magento/Wishlist/etc/di.xml          |   0
 .../Magento/Wishlist/etc/email_templates.xml  |   0
 app/code/Magento/Wishlist/etc/events.xml      |   0
 .../Wishlist/etc/extension_attributes.xml     |   0
 app/code/Magento/Wishlist/etc/frontend/di.xml |   0
 .../Magento/Wishlist/etc/frontend/events.xml  |   0
 .../Wishlist/etc/frontend/page_types.xml      |   0
 .../Magento/Wishlist/etc/frontend/routes.xml  |   0
 .../Wishlist/etc/frontend/sections.xml        |   0
 app/code/Magento/Wishlist/etc/module.xml      |   0
 app/code/Magento/Wishlist/etc/view.xml        |   0
 app/code/Magento/Wishlist/i18n/en_US.csv      |   0
 app/code/Magento/Wishlist/registration.php    |   0
 .../layout/customer_index_wishlist.xml        |   0
 .../customer/edit/tab/wishlist.phtml          |   0
 .../base/layout/catalog_product_prices.xml    |   0
 .../view/base/ui_component/customer_form.xml  |   0
 .../frontend/email/share_notification.html    |   0
 .../frontend/layout/catalog_category_view.xml |   0
 .../frontend/layout/catalog_product_view.xml  |   0
 .../layout/catalogsearch_advanced_result.xml  |   0
 .../layout/catalogsearch_result_index.xml     |   0
 .../frontend/layout/checkout_cart_index.xml   |   0
 .../layout/checkout_cart_item_renderers.xml   |   0
 .../view/frontend/layout/customer_account.xml |   0
 .../Wishlist/view/frontend/layout/default.xml |   0
 .../frontend/layout/wishlist_email_items.xml  |   0
 .../frontend/layout/wishlist_email_rss.xml    |   0
 .../layout/wishlist_index_configure.xml       |   0
 .../wishlist_index_configure_type_bundle.xml  |   0
 ...list_index_configure_type_configurable.xml |   0
 ...list_index_configure_type_downloadable.xml |   0
 .../wishlist_index_configure_type_grouped.xml |   0
 .../wishlist_index_configure_type_simple.xml  |   0
 .../frontend/layout/wishlist_index_index.xml  |   0
 .../frontend/layout/wishlist_index_share.xml  |   0
 .../frontend/layout/wishlist_shared_index.xml |   0
 .../view/frontend/requirejs-config.js         |   0
 .../view/frontend/templates/addto.phtml       |   0
 .../frontend/templates/button/share.phtml     |   0
 .../frontend/templates/button/tocart.phtml    |   0
 .../frontend/templates/button/update.phtml    |   0
 .../renderer/actions/move_to_wishlist.phtml   |   0
 .../catalog/product/list/addto/wishlist.phtml |   0
 .../catalog/product/view/addto/wishlist.phtml |   0
 .../view/frontend/templates/email/items.phtml |   0
 .../templates/item/column/actions.phtml       |   0
 .../frontend/templates/item/column/cart.phtml |   0
 .../templates/item/column/comment.phtml       |   0
 .../frontend/templates/item/column/edit.phtml |   0
 .../templates/item/column/image.phtml         |   0
 .../frontend/templates/item/column/name.phtml |   0
 .../templates/item/column/price.phtml         |   0
 .../templates/item/column/remove.phtml        |   0
 .../templates/item/configure/addto.phtml      |   0
 .../item/configure/addto/wishlist.phtml       |   0
 .../view/frontend/templates/item/list.phtml   |   0
 .../frontend/templates/js/components.phtml    |   0
 .../view/frontend/templates/link.phtml        |   0
 .../messages/addProductSuccessMessage.phtml   |   0
 .../frontend/templates/options_list.phtml     |   0
 .../view/frontend/templates/rss/email.phtml   |   0
 .../frontend/templates/rss/wishlist.phtml     |   0
 .../view/frontend/templates/shared.phtml      |   0
 .../view/frontend/templates/sharing.phtml     |   0
 .../view/frontend/templates/sidebar.phtml     |   0
 .../view/frontend/templates/view.phtml        |   0
 .../ui_component/widget_recently_compared.xml |   0
 .../ui_component/widget_recently_viewed.xml   |   0
 .../view/frontend/web/js/add-to-wishlist.js   |   0
 .../web/js/product/addtowishlist-button.js    |   0
 .../Wishlist/view/frontend/web/js/search.js   |   0
 .../view/frontend/web/js/view/wishlist.js     |   0
 .../Wishlist/view/frontend/web/js/wishlist.js |   0
 .../product/addtowishlist-button.html         |   0
 .../Magento/WishlistAnalytics/LICENSE.txt     |   0
 .../Magento/WishlistAnalytics/LICENSE_AFL.txt |   0
 app/code/Magento/WishlistAnalytics/README.md  |   0
 .../Magento/WishlistAnalytics/composer.json   |   0
 .../WishlistAnalytics/etc/analytics.xml       |   0
 .../Magento/WishlistAnalytics/etc/module.xml  |   0
 .../Magento/WishlistAnalytics/etc/reports.xml |   0
 .../WishlistAnalytics/registration.php        |   0
 .../adminhtml/Magento/backend/LICENSE.txt     |   0
 .../adminhtml/Magento/backend/LICENSE_AFL.txt |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/_module.less               |   0
 .../web/images/analytics-icon.svg             |   0
 .../Magento_Backend/layout/default.xml        |   0
 .../backend/Magento_Backend/layout/styles.xml |   0
 .../web/css/source/_module-old.less           |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/module/_footer.less        |   0
 .../web/css/source/module/_header.less        |   0
 .../web/css/source/module/_main.less          |   0
 .../web/css/source/module/_menu.less          |   0
 .../source/module/header/_actions-group.less  |   0
 .../source/module/header/_headings-group.less |   0
 .../header/actions-group/_notifications.less  |   0
 .../module/header/actions-group/_search.less  |   0
 .../module/header/actions-group/_user.less    |   0
 .../header/headings-group/_breadcrumbs.less   |   0
 .../css/source/module/main/_actions-bar.less  |   0
 .../module/main/_collapsible-blocks.less      |   0
 .../web/css/source/module/main/_page-nav.less |   0
 .../css/source/module/main/_store-scope.less  |   0
 .../main/actions-bar/_store-switcher.less     |   0
 .../source/module/pages/_access-denied.less   |   0
 .../module/pages/_cache-management.less       |   0
 .../css/source/module/pages/_dashboard.less   |   0
 .../web/css/source/module/pages/_login.less   |   0
 .../web/images/logo-magento.png               | Bin
 .../web/css/source/_module.less               |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/_module-old.less           |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/_module-old.less           |   0
 .../web/css/source/_module.less               |   0
 .../_attributes_template_popup.less           |   0
 .../module/components/_currency-addon.less    |   0
 .../css/source/module/components/_grid.less   |   0
 .../module/components/_navigation-bar.less    |   0
 .../module/components/_steps-wizard.less      |   0
 .../components/navigation-bar/_buttons.less   |   0
 .../navigation-bar/_navigation-bar.less       |   0
 .../module/steps/_attribute-values.less       |   0
 .../css/source/module/steps/_bulk-images.less |   0
 .../module/steps/_select-attributes.less      |   0
 .../web/css/source/module/steps/_summary.less |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/_module-old.less           |   0
 .../web/css/source/_module.less               |   0
 .../Magento_Enterprise/layout/default.xml     |   0
 .../web/css/source/_module-old.less           |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/_module-old.less           |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/_module-old.less           |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/_module.less               |   0
 .../web/images/analytics-icon.svg             |   0
 .../web/images/email-marketing-icon.svg       |   0
 .../web/images/instant-purchase-icon.svg      |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/_module.less               |   0
 .../Magento_Rma/web/css/source/_module.less   |   0
 .../Magento_Sales/web/css/source/_module.less |   0
 .../web/css/source/module/_edit-order.less    |   0
 .../web/css/source/module/_order.less         |   0
 .../web/css/source/module/order/_address.less |   0
 .../css/source/module/order/_discounts.less   |   0
 .../source/module/order/_gift-options.less    |   0
 .../web/css/source/module/order/_items.less   |   0
 .../source/module/order/_order-account.less   |   0
 .../source/module/order/_order-comments.less  |   0
 .../module/order/_payment-shipping.less       |   0
 .../web/css/source/module/order/_sidebar.less |   0
 .../web/css/source/module/order/_sku.less     |   0
 .../web/css/source/module/order/_total.less   |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/module/_config.less        |   0
 .../web/css/source/module/_order.less         |   0
 .../web/css/source/_module.less               |   0
 .../module/_scheduled-changes-modal.less      |   0
 .../css/source/module/_scheduled-changes.less |   0
 .../source/module/_staging-data-tooltip.less  |   0
 .../css/source/module/_staging-preview.less   |   0
 .../web/css/source/_module-old.less           |   0
 .../Magento_Tax/web/css/source/_module.less   |   0
 .../web/css/source/_module-old.less           |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/_module-old.less           |   0
 .../Magento_Ui/web/css/source/_module.less    |   0
 .../web/css/source/module/_data-grid.less     |   0
 .../module/data-grid/_data-grid-header.less   |   0
 .../module/data-grid/_data-grid-static.less   |   0
 .../_data-grid-action-bookmarks.less          |   0
 .../_data-grid-action-columns.less            |   0
 .../_data-grid-action-export.less             |   0
 .../data-grid-header/_data-grid-filters.less  |   0
 .../data-grid-header/_data-grid-pager.less    |   0
 .../_data-grid-sticky-header.less             |   0
 .../Magento_Ui/web/images/choice_bkg.png      | Bin
 .../Magento_Vault/web/css/source/_module.less |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/_module.less               |   0
 .../adminhtml/Magento/backend/composer.json   |   0
 .../adminhtml/Magento/backend/etc/view.xml    |   0
 .../Magento/backend/registration.php          |   0
 .../adminhtml/Magento/backend/theme.xml       |   0
 .../web/app/setup/styles/less/_setup.less     |   0
 .../styles/less/components/_messages.less     |   0
 .../less/components/_navigation-bar.less      |   0
 .../less/components/_progress-bars.less       |   0
 .../styles/less/components/_tooltips.less     |   0
 .../tooltips/_password-strength.less          |   0
 .../less/components/tooltips/_tooltips.less   |   0
 .../app/setup/styles/less/lib/_buttons.less   |   0
 .../app/setup/styles/less/lib/_classes.less   |   0
 .../app/setup/styles/less/lib/_collector.less |   0
 .../app/setup/styles/less/lib/_extends.less   |   0
 .../web/app/setup/styles/less/lib/_forms.less |   0
 .../web/app/setup/styles/less/lib/_icons.less |   0
 .../web/app/setup/styles/less/lib/_lists.less |   0
 .../setup/styles/less/lib/_structures.less    |   0
 .../app/setup/styles/less/lib/_utilities.less |   0
 .../app/setup/styles/less/lib/_variables.less |   0
 .../less/lib/forms/_checkbox-radio.less       |   0
 .../setup/styles/less/lib/forms/_forms.less   |   0
 .../setup/styles/less/lib/forms/_legends.less |   0
 .../styles/less/lib/forms/_multiselects.less  |   0
 .../setup/styles/less/lib/forms/_selects.less |   0
 .../styles/less/lib/forms/_validation.less    |   0
 .../less/lib/utilities/_animations.less       |   0
 .../less/lib/utilities/_grid-framework.less   |   0
 .../styles/less/lib/utilities/_grid.less      |   0
 .../less/lib/utilities/_vendor-prefixes.less  |   0
 .../app/setup/styles/less/pages/_common.less  |   0
 .../less/pages/_customize-your-store.less     |   0
 .../app/setup/styles/less/pages/_install.less |   0
 .../app/setup/styles/less/pages/_landing.less |   0
 .../app/setup/styles/less/pages/_license.less |   0
 .../styles/less/pages/_readiness-check.less   |   0
 .../styles/less/pages/_web-configuration.less |   0
 .../styles/less/components/_data-grid.less    |   0
 .../styles/less/components/_header.less       |   0
 .../updater/styles/less/components/_menu.less |   0
 .../styles/less/components/_modals.less       |   0
 .../components/_navigation-bar_extend.less    |   0
 .../styles/less/components/_page-inner.less   |   0
 .../updater/styles/less/pages/_common.less    |   0
 .../styles/less/pages/_extension-manager.less |   0
 .../app/updater/styles/less/pages/_home.less  |   0
 .../app/updater/styles/less/pages/_login.less |   0
 .../updater/styles/less/source/_extends.less  |   0
 .../updater/styles/less/source/_forms.less    |   0
 .../updater/styles/less/source/_lists.less    |   0
 .../styles/less/source/_structure.less        |   0
 .../styles/less/source/_typography.less       |   0
 .../styles/less/source/_variables.less        |   0
 .../backend/web/css/source/_actions.less      |   0
 .../backend/web/css/source/_classes.less      |   0
 .../backend/web/css/source/_components.less   |   0
 .../backend/web/css/source/_extends.less      |   0
 .../backend/web/css/source/_forms.less        |   0
 .../Magento/backend/web/css/source/_grid.less |   0
 .../backend/web/css/source/_icons.less        |   0
 .../backend/web/css/source/_lists.less        |   0
 .../backend/web/css/source/_reset.less        |   0
 .../backend/web/css/source/_responsive.less   |   0
 .../backend/web/css/source/_sources.less      |   0
 .../backend/web/css/source/_structure.less    |   0
 .../backend/web/css/source/_tables.less       |   0
 .../Magento/backend/web/css/source/_tabs.less |   0
 .../backend/web/css/source/_theme.less        |   0
 .../backend/web/css/source/_typography.less   |   0
 .../backend/web/css/source/_utilities.less    |   0
 .../backend/web/css/source/_variables.less    |   0
 .../css/source/actions/_actions-dropdown.less |   0
 .../source/actions/_actions-multicheck.less   |   0
 .../source/actions/_actions-multiselect.less  |   0
 .../css/source/actions/_actions-select.less   |   0
 .../css/source/actions/_actions-split.less    |   0
 .../css/source/actions/_actions-switcher.less |   0
 .../css/source/components/_calendar-temp.less |   0
 .../css/source/components/_data-tooltip.less  |   0
 .../source/components/_file-insertion.less    |   0
 .../css/source/components/_file-uploader.less |   0
 .../css/source/components/_media-gallery.less |   0
 .../web/css/source/components/_messages.less  |   0
 .../css/source/components/_modals_extend.less |   0
 .../css/source/components/_popups-old.less    |   0
 .../web/css/source/components/_popups.less    |   0
 .../source/components/_resizable-block.less   |   0
 .../css/source/components/_rules-temp.less    |   0
 .../web/css/source/components/_slider.less    |   0
 .../web/css/source/components/_spinner.less   |   0
 .../web/css/source/components/_timeline.less  |   0
 .../web/css/source/forms/_controls.less       |   0
 .../web/css/source/forms/_extends.less        |   0
 .../backend/web/css/source/forms/_fields.less |   0
 .../web/css/source/forms/_form-wysiwyg.less   |   0
 .../backend/web/css/source/forms/_temp.less   |   0
 .../forms/controls/_checkbox-radio.less       |   0
 .../forms/fields/_control-collapsible.less    |   0
 .../source/forms/fields/_control-table.less   |   0
 .../css/source/forms/fields/_field-reset.less |   0
 .../source/forms/fields/_field-tooltips.less  |   0
 .../web/css/source/utilities/_actions.less    |   0
 .../web/css/source/utilities/_animations.less |   0
 .../css/source/utilities/_grid-framework.less |   0
 .../web/css/source/utilities/_grid.less       |   0
 .../web/css/source/utilities/_spinner.less    |   0
 .../web/css/source/variables/_actions.less    |   0
 .../web/css/source/variables/_animations.less |   0
 .../web/css/source/variables/_colors.less     |   0
 .../web/css/source/variables/_components.less |   0
 .../web/css/source/variables/_data-grid.less  |   0
 .../web/css/source/variables/_forms.less      |   0
 .../web/css/source/variables/_icons.less      |   0
 .../web/css/source/variables/_spinner.less    |   0
 .../web/css/source/variables/_structure.less  |   0
 .../web/css/source/variables/_typography.less |   0
 .../Magento/backend/web/css/styles-old.less   |   0
 .../Magento/backend/web/css/styles.less       |   0
 .../backend/web/images/ajax-loader-small.gif  | Bin
 .../backend/web/images/ajax-loader-tr.gif     | Bin
 .../backend/web/images/ajax-loader.gif        | Bin
 .../backend/web/images/arrows-bg-light.svg    |   0
 .../Magento/backend/web/images/arrows-bg.svg  |   0
 .../images/fam_application_form_delete.png    | Bin
 .../backend/web/images/fam_bullet_disk.gif    | Bin
 .../Magento/backend/web/images/fam_leaf.png   | Bin
 .../Magento/backend/web/images/fam_link.gif   | Bin
 .../web/images/grouped_to_order_icon.png      | Bin
 .../backend/web/images/magento-icon.svg       |   0
 .../backend/web/images/process_spinner.gif    | Bin
 .../Magento/backend/web/images/rating-bg.png  | Bin
 .../web/images/rule_chooser_trigger.gif       | Bin
 .../backend/web/images/rule_component_add.gif | Bin
 .../web/images/rule_component_apply.gif       | Bin
 .../web/images/rule_component_remove.gif      | Bin
 .../Magento/backend/web/images/select-bg.svg  |   0
 .../backend/web/images/subconfig-bg.png       | Bin
 .../Magento/backend/web/images/switcher.png   | Bin
 .../adminhtml/Magento/backend/web/js/theme.js |   0
 .../backend/web/mui/clearless/_all.less       |   0
 .../backend/web/mui/clearless/_arrows.less    |   0
 .../backend/web/mui/clearless/_helpers.less   |   0
 .../backend/web/mui/clearless/_icons.less     |   0
 .../backend/web/mui/clearless/_settings.less  |   0
 .../backend/web/mui/clearless/_sprites.less   |   0
 .../web/mui/images/ajax-loader-big.gif        | Bin
 .../web/mui/images/ajax-loader-small.gif      | Bin
 .../web/mui/images/ajax-loader-white.gif      | Bin
 .../backend/web/mui/images/ajax-loader.gif    | Bin
 .../backend/web/mui/images/ajax-loader.svg    |   0
 .../web/mui/images/pagination-arrows-bg.png   | Bin
 .../backend/web/mui/images/sorter-bg.png      | Bin
 .../backend/web/mui/images/view-mode-bg.png   | Bin
 .../backend/web/mui/styles/_abstract.less     |   0
 .../Magento/backend/web/mui/styles/_base.less |   0
 .../backend/web/mui/styles/_table.less        |   0
 .../Magento/backend/web/mui/styles/_vars.less |   0
 app/design/frontend/Magento/blank/LICENSE.txt |   0
 .../frontend/Magento/blank/LICENSE_AFL.txt    |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/_widgets.less              |   0
 .../web/css/source/_widgets.less              |   0
 .../web/css/source/_module.less               |   0
 .../Magento_Bundle/web/css/source/_email.less |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/_widgets.less              |   0
 .../web/css/source/module/_listings.less      |   0
 .../web/css/source/module/_toolbar.less       |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/_widgets.less              |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/module/_cart.less          |   0
 .../web/css/source/module/_checkout.less      |   0
 .../web/css/source/module/_minicart.less      |   0
 .../module/checkout/_authentication.less      |   0
 .../module/checkout/_checkout-agreements.less |   0
 .../css/source/module/checkout/_checkout.less |   0
 .../module/checkout/_estimated-total.less     |   0
 .../css/source/module/checkout/_fields.less   |   0
 .../css/source/module/checkout/_modals.less   |   0
 .../module/checkout/_order-summary.less       |   0
 .../module/checkout/_payment-options.less     |   0
 .../css/source/module/checkout/_payments.less |   0
 .../source/module/checkout/_progress-bar.less |   0
 .../module/checkout/_shipping-policy.less     |   0
 .../css/source/module/checkout/_shipping.less |   0
 .../_sidebar-shipping-information.less        |   0
 .../css/source/module/checkout/_sidebar.less  |   0
 .../css/source/module/checkout/_tooltip.less  |   0
 .../Magento_Cms/web/css/source/_widgets.less  |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/_widgets.less              |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/_module.less               |   0
 .../Magento_Msrp/web/css/source/_module.less  |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/_widgets.less              |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/module/_billing.less       |   0
 .../web/css/source/module/_paypal-button.less |   0
 .../web/css/source/module/_review.less        |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/_widgets.less              |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/_module.less               |   0
 .../Magento_Rma/web/css/source/_email.less    |   0
 .../Magento_Rma/web/css/source/_module.less   |   0
 .../Magento_Sales/web/css/source/_email.less  |   0
 .../Magento_Sales/web/css/source/_module.less |   0
 .../web/css/source/_widgets.less              |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/_module.less               |   0
 .../layout/default_head_blocks.xml            |   0
 .../blank/Magento_Theme/requirejs-config.js   |   0
 .../Magento_Theme/web/css/source/_module.less |   0
 .../blank/Magento_Theme/web/js/responsive.js  |   0
 .../blank/Magento_Theme/web/js/theme.js       |   0
 .../Magento_Vault/web/css/source/_module.less |   0
 .../web/css/source/_widgets.less              |   0
 .../Magento_Weee/web/css/source/_module.less  |   0
 .../web/css/source/_module.less               |   0
 .../frontend/Magento/blank/composer.json      |   0
 .../frontend/Magento/blank/etc/view.xml       |   0
 .../frontend/Magento/blank/i18n/en_US.csv     |   0
 .../frontend/Magento/blank/media/preview.jpg  | Bin
 .../frontend/Magento/blank/registration.php   |   0
 app/design/frontend/Magento/blank/theme.xml   |   0
 .../Magento/blank/web/css/_styles.less        |   0
 .../Magento/blank/web/css/email-fonts.less    |   0
 .../Magento/blank/web/css/email-inline.less   |   0
 .../frontend/Magento/blank/web/css/email.less |   0
 .../frontend/Magento/blank/web/css/print.less |   0
 .../web/css/source/_actions-toolbar.less      |   0
 .../blank/web/css/source/_breadcrumbs.less    |   0
 .../blank/web/css/source/_buttons.less        |   0
 .../blank/web/css/source/_components.less     |   0
 .../blank/web/css/source/_email-base.less     |   0
 .../blank/web/css/source/_email-extend.less   |   0
 .../web/css/source/_email-variables.less      |   0
 .../blank/web/css/source/_extends.less        |   0
 .../Magento/blank/web/css/source/_forms.less  |   0
 .../Magento/blank/web/css/source/_icons.less  |   0
 .../Magento/blank/web/css/source/_layout.less |   0
 .../blank/web/css/source/_loaders.less        |   0
 .../blank/web/css/source/_messages.less       |   0
 .../blank/web/css/source/_navigation.less     |   0
 .../Magento/blank/web/css/source/_pages.less  |   0
 .../Magento/blank/web/css/source/_popups.less |   0
 .../Magento/blank/web/css/source/_price.less  |   0
 .../Magento/blank/web/css/source/_reset.less  |   0
 .../blank/web/css/source/_sections.less       |   0
 .../blank/web/css/source/_sources.less        |   0
 .../Magento/blank/web/css/source/_tables.less |   0
 .../Magento/blank/web/css/source/_theme.less  |   0
 .../blank/web/css/source/_tooltips.less       |   0
 .../blank/web/css/source/_typography.less     |   0
 .../blank/web/css/source/_variables.less      |   0
 .../css/source/components/_modals_extend.less |   0
 .../Magento/blank/web/css/styles-l.less       |   0
 .../Magento/blank/web/css/styles-m.less       |   0
 .../Magento/blank/web/images/logo.svg         |   0
 .../Magento/blank/web/js/navigation-menu.js   |   0
 app/design/frontend/Magento/luma/LICENSE.txt  |   0
 .../frontend/Magento/luma/LICENSE_AFL.txt     |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/_widgets.less              |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/_module.less               |   0
 .../layout/catalog_product_view.xml           |   0
 .../luma/Magento_Catalog/layout/default.xml   |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/module/_listings.less      |   0
 .../web/css/source/module/_toolbar.less       |   0
 .../web/css/source/_module.less               |   0
 .../layout/checkout_cart_index.xml            |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/module/_cart.less          |   0
 .../web/css/source/module/_minicart.less      |   0
 .../css/source/module/checkout/_checkout.less |   0
 .../module/checkout/_estimated-total.less     |   0
 .../css/source/module/checkout/_fields.less   |   0
 .../css/source/module/checkout/_modals.less   |   0
 .../module/checkout/_order-summary.less       |   0
 .../module/checkout/_payment-options.less     |   0
 .../css/source/module/checkout/_payments.less |   0
 .../source/module/checkout/_progress-bar.less |   0
 .../css/source/module/checkout/_shipping.less |   0
 .../Magento_Customer/email/account_new.html   |   0
 .../layout/customer_account.xml               |   0
 .../luma/Magento_Customer/layout/default.xml  |   0
 .../web/css/source/_email.less                |   0
 .../web/css/source/_module.less               |   0
 .../web/images/icn_address.png                | Bin
 .../web/images/icn_checkout.png               | Bin
 .../web/images/icn_history.png                | Bin
 .../web/images/icn_status.png                 | Bin
 .../web/css/source/_module.less               |   0
 .../web/css/source/_module.less               |   0
 .../luma/Magento_Email/email/footer.html      |   0
 .../luma/Magento_Email/web/logo_email.png     | Bin
 .../web/css/source/_module.less               |   0
 .../layout/checkout_cart_index.xml            |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/_module.less               |   0
 .../templates/layer/state.phtml               |   0
 .../templates/layer/view.phtml                |   0
 .../web/css/source/_module.less               |   0
 .../Magento_Msrp/web/css/source/_module.less  |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/module/_billing.less       |   0
 .../web/css/source/module/_paypal-button.less |   0
 .../web/css/source/module/_review.less        |   0
 .../web/css/source/_module.less               |   0
 .../web/css/source/_module.less               |   0
 .../Magento_Rma/web/css/source/_module.less   |   0
 .../Magento_Sales/email/creditmemo_new.html   |   0
 .../email/creditmemo_new_guest.html           |   0
 .../email/creditmemo_update.html              |   0
 .../email/creditmemo_update_guest.html        |   0
 .../luma/Magento_Sales/email/invoice_new.html |   0
 .../email/invoice_new_guest.html              |   0
 .../Magento_Sales/email/invoice_update.html   |   0
 .../email/invoice_update_guest.html           |   0
 .../luma/Magento_Sales/email/order_new.html   |   0
 .../Magento_Sales/email/order_new_guest.html  |   0
 .../Magento_Sales/email/order_update.html     |   0
 .../email/order_update_guest.html             |   0
 .../Magento_Sales/email/shipment_new.html     |   0
 .../email/shipment_new_guest.html             |   0
 .../Magento_Sales/email/shipment_update.html  |   0
 .../email/shipment_update_guest.html          |   0
 .../Magento_Sales/web/css/source/_email.less  |   0
 .../Magento_Sales/web/css/source/_module.less |   0
 .../web/css/source/_module.less               |   0
 .../luma/Magento_Theme/layout/default.xml     |   0
 .../layout/default_head_blocks.xml            |   0
 .../Magento_Theme/web/css/source/_module.less |   0
 .../module/_collapsible_navigation.less       |   0
 .../Magento_Vault/web/css/source/_module.less |   0
 .../web/css/source/_module.less               |   0
 .../frontend/Magento/luma/composer.json       |   0
 app/design/frontend/Magento/luma/etc/view.xml |   0
 .../frontend/Magento/luma/i18n/en_US.csv      |   0
 .../frontend/Magento/luma/media/preview.jpg   | Bin
 .../frontend/Magento/luma/registration.php    |   0
 app/design/frontend/Magento/luma/theme.xml    |   0
 .../luma/web/css/source/_actions-toolbar.less |   0
 .../luma/web/css/source/_breadcrumbs.less     |   0
 .../Magento/luma/web/css/source/_buttons.less |   0
 .../luma/web/css/source/_email-extend.less    |   0
 .../luma/web/css/source/_email-variables.less |   0
 .../Magento/luma/web/css/source/_extends.less |   0
 .../Magento/luma/web/css/source/_forms.less   |   0
 .../Magento/luma/web/css/source/_pages.less   |   0
 .../Magento/luma/web/css/source/_popups.less  |   0
 .../luma/web/css/source/_sections.less        |   0
 .../Magento/luma/web/css/source/_tables.less  |   0
 .../Magento/luma/web/css/source/_theme.less   |   0
 .../luma/web/css/source/_variables.less       |   0
 .../css/source/components/_modals_extend.less |   0
 .../Magento/luma/web/fonts/Luma-Icons.eot     | Bin
 .../Magento/luma/web/fonts/Luma-Icons.svg     |   0
 .../Magento/luma/web/fonts/Luma-Icons.ttf     | Bin
 .../Magento/luma/web/fonts/Luma-Icons.woff    | Bin
 .../Magento/luma/web/fonts/Luma-Icons.woff2   | Bin
 .../Magento/luma/web/fonts/selection.json     |   0
 .../frontend/Magento/luma/web/images/logo.svg |   0
 .../Magento/luma/web/images/select-bg.svg     |   0
 app/etc/vendor_path.php                       |   0
 app/functions.php                             |   0
 app/i18n/Magento/de_DE/LICENSE.txt            |   0
 app/i18n/Magento/de_DE/LICENSE_AFL.txt        |   0
 app/i18n/Magento/de_DE/composer.json          |   0
 app/i18n/Magento/de_DE/language.xml           |   0
 app/i18n/Magento/de_DE/registration.php       |   0
 app/i18n/Magento/en_US/LICENSE.txt            |   0
 app/i18n/Magento/en_US/LICENSE_AFL.txt        |   0
 app/i18n/Magento/en_US/composer.json          |   0
 app/i18n/Magento/en_US/language.xml           |   0
 app/i18n/Magento/en_US/registration.php       |   0
 app/i18n/Magento/es_ES/LICENSE.txt            |   0
 app/i18n/Magento/es_ES/LICENSE_AFL.txt        |   0
 app/i18n/Magento/es_ES/composer.json          |   0
 app/i18n/Magento/es_ES/language.xml           |   0
 app/i18n/Magento/es_ES/registration.php       |   0
 app/i18n/Magento/fr_FR/LICENSE.txt            |   0
 app/i18n/Magento/fr_FR/LICENSE_AFL.txt        |   0
 app/i18n/Magento/fr_FR/composer.json          |   0
 app/i18n/Magento/fr_FR/language.xml           |   0
 app/i18n/Magento/fr_FR/registration.php       |   0
 app/i18n/Magento/nl_NL/LICENSE.txt            |   0
 app/i18n/Magento/nl_NL/LICENSE_AFL.txt        |   0
 app/i18n/Magento/nl_NL/composer.json          |   0
 app/i18n/Magento/nl_NL/language.xml           |   0
 app/i18n/Magento/nl_NL/registration.php       |   0
 app/i18n/Magento/pt_BR/LICENSE.txt            |   0
 app/i18n/Magento/pt_BR/LICENSE_AFL.txt        |   0
 app/i18n/Magento/pt_BR/composer.json          |   0
 app/i18n/Magento/pt_BR/language.xml           |   0
 app/i18n/Magento/pt_BR/registration.php       |   0
 app/i18n/Magento/zh_Hans_CN/LICENSE.txt       |   0
 app/i18n/Magento/zh_Hans_CN/LICENSE_AFL.txt   |   0
 app/i18n/Magento/zh_Hans_CN/composer.json     |   0
 app/i18n/Magento/zh_Hans_CN/language.xml      |   0
 app/i18n/Magento/zh_Hans_CN/registration.php  |   0
 auth.json.sample                              |   0
 bin/.htaccess                                 |   0
 composer.json                                 |   0
 composer.lock                                 |   0
 composer.phar                                 | Bin 0 -> 1857534 bytes
 dev/.htaccess                                 |   0
 dev/tests/acceptance/.env.example             |   0
 dev/tests/acceptance/LICENSE.txt              |   0
 dev/tests/acceptance/LICENSE_AFL.txt          |   0
 dev/tests/acceptance/RoboFile.php             |   0
 dev/tests/acceptance/codeception.dist.yml     |   0
 dev/tests/acceptance/pre-install.php          |   0
 dev/tests/acceptance/tests/_bootstrap.php     |   0
 dev/tests/acceptance/tests/_data/dump.sql     |   0
 .../acceptance/tests/_suite/sampleSuite.xml   |   0
 .../tests/functional.suite.dist.yml           |   0
 .../AdminNotification/LICENSE.txt             |   0
 .../AdminNotification/LICENSE_AFL.txt         |   0
 .../AdminNotification/README.md               |   0
 .../AdminNotification/composer.json           |   0
 .../AdvancedPricingImportExport/LICENSE.txt   |   0
 .../LICENSE_AFL.txt                           |   0
 .../AdvancedPricingImportExport/README.md     |   0
 .../AdvancedPricingImportExport/composer.json |   0
 .../FunctionalTest/Analytics/LICENSE.txt      |   0
 .../FunctionalTest/Analytics/LICENSE_AFL.txt  |   0
 .../FunctionalTest/Analytics/README.md        |   0
 .../FunctionalTest/Analytics/composer.json    |   0
 .../FunctionalTest/Authorization/LICENSE.txt  |   0
 .../Authorization/LICENSE_AFL.txt             |   0
 .../FunctionalTest/Authorization/README.md    |   0
 .../Authorization/composer.json               |   0
 .../FunctionalTest/Authorizenet/LICENSE.txt   |   0
 .../Authorizenet/LICENSE_AFL.txt              |   0
 .../FunctionalTest/Authorizenet/README.md     |   0
 .../FunctionalTest/Authorizenet/composer.json |   0
 .../Backend/Cest/AdminLoginCest.xml           |   0
 .../Backend/Data/BackenedData.xml             |   0
 .../FunctionalTest/Backend/LICENSE.txt        |   0
 .../FunctionalTest/Backend/LICENSE_AFL.txt    |   0
 .../Backend/Page/AdminLoginPage.xml           |   0
 .../Magento/FunctionalTest/Backend/README.md  |   0
 .../Backend/Section/AdminLoginFormSection.xml |   0
 .../Backend/Section/AdminMessagesSection.xml  |   0
 .../FunctionalTest/Backend/composer.json      |   0
 .../Magento/FunctionalTest/Backup/LICENSE.txt |   0
 .../FunctionalTest/Backup/LICENSE_AFL.txt     |   0
 .../Magento/FunctionalTest/Backup/README.md   |   0
 .../FunctionalTest/Backup/composer.json       |   0
 .../Braintree/Data/BraintreeData.xml          |   0
 .../FunctionalTest/Braintree/LICENSE.txt      |   0
 .../FunctionalTest/Braintree/LICENSE_AFL.txt  |   0
 .../Metadata/braintree_config-meta.xml        |   0
 .../FunctionalTest/Braintree/README.md        |   0
 .../FunctionalTest/Braintree/composer.json    |   0
 .../Magento/FunctionalTest/Bundle/LICENSE.txt |   0
 .../FunctionalTest/Bundle/LICENSE_AFL.txt     |   0
 .../Magento/FunctionalTest/Bundle/README.md   |   0
 .../FunctionalTest/Bundle/composer.json       |   0
 .../BundleImportExport/LICENSE.txt            |   0
 .../BundleImportExport/LICENSE_AFL.txt        |   0
 .../BundleImportExport/README.md              |   0
 .../BundleImportExport/composer.json          |   0
 .../CacheInvalidate/LICENSE.txt               |   0
 .../CacheInvalidate/LICENSE_AFL.txt           |   0
 .../FunctionalTest/CacheInvalidate/README.md  |   0
 .../CacheInvalidate/composer.json             |   0
 .../FunctionalTest/Captcha/LICENSE.txt        |   0
 .../FunctionalTest/Captcha/LICENSE_AFL.txt    |   0
 .../Magento/FunctionalTest/Captcha/README.md  |   0
 .../FunctionalTest/Captcha/composer.json      |   0
 .../Catalog/Cest/AdminCreateCategoryCest.xml  |   0
 .../Cest/AdminCreateSimpleProductCest.xml     |   0
 .../Catalog/Data/CategoryData.xml             |   0
 .../Catalog/Data/CustomAttributeData.xml      |   0
 .../Catalog/Data/FrontendLabelData.xml        |   0
 .../Catalog/Data/ProductAttributeData.xml     |   0
 .../Data/ProductAttributeOptionData.xml       |   0
 .../Catalog/Data/ProductAttributeSetData.xml  |   0
 .../Data/ProductConfigurableAttributeData.xml |   0
 .../Catalog/Data/ProductData.xml              |   0
 .../Data/ProductExtensionAttributeData.xml    |   0
 .../Catalog/Data/StockItemData.xml            |   0
 .../Catalog/Data/StoreLabelData.xml           |   0
 .../FunctionalTest/Catalog/LICENSE.txt        |   0
 .../FunctionalTest/Catalog/LICENSE_AFL.txt    |   0
 .../Catalog/Metadata/category-meta.xml        |   0
 .../Metadata/custom_attribute-meta.xml        |   0
 .../empty_extension_attribute-meta.xml        |   0
 .../Catalog/Metadata/frontend_label-meta.xml  |   0
 .../Catalog/Metadata/product-meta.xml         |   0
 .../Metadata/product_attribute-meta.xml       |   0
 .../product_attribute_option-meta.xml         |   0
 .../Metadata/product_attribute_set-meta.xml   |   0
 .../product_extension_attribute-meta.xml      |   0
 .../Catalog/Metadata/product_link-meta.xml    |   0
 .../product_link_extension_attribute-meta.xml |   0
 .../Catalog/Metadata/product_option-meta.xml  |   0
 .../Metadata/product_option_value-meta.xml    |   0
 .../Catalog/Metadata/stock_item-meta.xml      |   0
 .../Catalog/Metadata/store_label-meta.xml     |   0
 .../Catalog/Metadata/validation_rule-meta.xml |   0
 .../Catalog/Page/AdminCategoryPage.xml        |   0
 .../Catalog/Page/AdminProductEditPage.xml     |   0
 .../Catalog/Page/AdminProductIndexPage.xml    |   0
 .../Catalog/Page/AdminProductPage.xml         |   0
 .../Catalog/Page/StorefrontCategoryPage.xml   |   0
 .../Magento/FunctionalTest/Catalog/README.md  |   0
 .../AdminCategoryBasicFieldSection.xml        |   0
 .../AdminCategoryMainActionsSection.xml       |   0
 .../Section/AdminCategoryMessagesSection.xml  |   0
 .../Section/AdminCategorySEOSection.xml       |   0
 .../AdminCategorySidebarActionSection.xml     |   0
 .../AdminCategorySidebarTreeSection.xml       |   0
 .../Section/AdminProductFormActionSection.xml |   0
 .../Section/AdminProductFormSection.xml       |   0
 .../Section/AdminProductGridActionSection.xml |   0
 .../Section/AdminProductGridSection.xml       |   0
 .../Section/AdminProductMessagesSection.xml   |   0
 .../Section/AdminProductSEOSection.xml        |   0
 .../Section/StorefrontCategoryMainSection.xml |   0
 .../Section/StorefrontMessagesSection.xml     |   0
 .../Section/StorefrontMiniCartSection.xml     |   0
 .../StorefrontProductInfoDetailsSection.xml   |   0
 .../StorefrontProductInfoMainSection.xml      |   0
 .../FunctionalTest/Catalog/composer.json      |   0
 .../CatalogAnalytics/LICENSE.txt              |   0
 .../CatalogAnalytics/LICENSE_AFL.txt          |   0
 .../FunctionalTest/CatalogAnalytics/README.md |   0
 .../CatalogAnalytics/composer.json            |   0
 .../CatalogImportExport/LICENSE.txt           |   0
 .../CatalogImportExport/LICENSE_AFL.txt       |   0
 .../CatalogImportExport/README.md             |   0
 .../CatalogImportExport/composer.json         |   0
 .../CatalogInventory/LICENSE.txt              |   0
 .../CatalogInventory/LICENSE_AFL.txt          |   0
 .../FunctionalTest/CatalogInventory/README.md |   0
 .../CatalogInventory/composer.json            |   0
 .../FunctionalTest/CatalogRule/LICENSE.txt    |   0
 .../CatalogRule/LICENSE_AFL.txt               |   0
 .../FunctionalTest/CatalogRule/README.md      |   0
 .../FunctionalTest/CatalogRule/composer.json  |   0
 .../CatalogRuleConfigurable/LICENSE.txt       |   0
 .../CatalogRuleConfigurable/LICENSE_AFL.txt   |   0
 .../CatalogRuleConfigurable/README.md         |   0
 .../CatalogRuleConfigurable/composer.json     |   0
 .../FunctionalTest/CatalogSearch/LICENSE.txt  |   0
 .../CatalogSearch/LICENSE_AFL.txt             |   0
 .../FunctionalTest/CatalogSearch/README.md    |   0
 .../CatalogSearch/composer.json               |   0
 .../CatalogUrlRewrite/LICENSE.txt             |   0
 .../CatalogUrlRewrite/LICENSE_AFL.txt         |   0
 .../CatalogUrlRewrite/README.md               |   0
 .../CatalogUrlRewrite/composer.json           |   0
 .../FunctionalTest/CatalogWidget/LICENSE.txt  |   0
 .../CatalogWidget/LICENSE_AFL.txt             |   0
 .../FunctionalTest/CatalogWidget/README.md    |   0
 .../CatalogWidget/composer.json               |   0
 .../Cest/StorefrontCustomerCheckoutCest.xml   |   0
 .../Cest/StorefrontGuestCheckoutCest.xml      |   0
 .../Checkout/Data/CouponData.xml              |   0
 .../FunctionalTest/Checkout/LICENSE.txt       |   0
 .../FunctionalTest/Checkout/LICENSE_AFL.txt   |   0
 .../Checkout/Metadata/coupon-meta.xml         |   0
 .../Checkout/Page/CheckoutPage.xml            |   0
 .../Checkout/Page/CheckoutSuccessPage.xml     |   0
 .../Checkout/Page/GuestCheckoutPage.xml       |   0
 .../Magento/FunctionalTest/Checkout/README.md |   0
 .../Section/CheckoutOrderSummarySection.xml   |   0
 .../Section/CheckoutPaymentSection.xml        |   0
 .../CheckoutShippingGuestInfoSection.xml      |   0
 .../CheckoutShippingMethodsSection.xml        |   0
 .../Section/CheckoutShippingSection.xml       |   0
 .../Section/CheckoutSuccessMainSection.xml    |   0
 .../Section/GuestCheckoutPaymentSection.xml   |   0
 .../Section/GuestCheckoutShippingSection.xml  |   0
 .../FunctionalTest/Checkout/composer.json     |   0
 .../CheckoutAgreements/LICENSE.txt            |   0
 .../CheckoutAgreements/LICENSE_AFL.txt        |   0
 .../CheckoutAgreements/README.md              |   0
 .../CheckoutAgreements/composer.json          |   0
 .../Cms/Cest/AdminCreateCmsPageCest.xml       |   0
 .../FunctionalTest/Cms/Data/CmsPageData.xml   |   0
 .../Magento/FunctionalTest/Cms/LICENSE.txt    |   0
 .../FunctionalTest/Cms/LICENSE_AFL.txt        |   0
 .../Cms/Page/CmsNewPagePage.xml               |   0
 .../FunctionalTest/Cms/Page/CmsPagesPage.xml  |   0
 .../Magento/FunctionalTest/Cms/README.md      |   0
 .../Section/CmsNewPagePageActionsSection.xml  |   0
 .../CmsNewPagePageBasicFieldsSection.xml      |   0
 .../Section/CmsNewPagePageContentSection.xml  |   0
 .../Cms/Section/CmsNewPagePageSeoSection.xml  |   0
 .../Section/CmsPagesPageActionsSection.xml    |   0
 .../Magento/FunctionalTest/Cms/composer.json  |   0
 .../FunctionalTest/CmsUrlRewrite/LICENSE.txt  |   0
 .../CmsUrlRewrite/LICENSE_AFL.txt             |   0
 .../FunctionalTest/CmsUrlRewrite/README.md    |   0
 .../CmsUrlRewrite/composer.json               |   0
 .../Magento/FunctionalTest/Config/LICENSE.txt |   0
 .../FunctionalTest/Config/LICENSE_AFL.txt     |   0
 .../Magento/FunctionalTest/Config/README.md   |   0
 .../FunctionalTest/Config/composer.json       |   0
 .../ConfigurableImportExport/LICENSE.txt      |   0
 .../ConfigurableImportExport/LICENSE_AFL.txt  |   0
 .../ConfigurableImportExport/README.md        |   0
 .../ConfigurableImportExport/composer.json    |   0
 .../AdminCreateConfigurableProductCest.xml    |   0
 .../Data/ConfigurableProductData.xml          |   0
 .../Data/ConfigurableProductOptionData.xml    |   0
 .../Data/ValueIndexData.xml                   |   0
 .../ConfigurableProduct/LICENSE.txt           |   0
 .../ConfigurableProduct/LICENSE_AFL.txt       |   0
 .../configurable_product_add_child-meta.xml   |   0
 .../configurable_product_options-meta.xml     |   0
 ...bute_configurable_product_options-meta.xml |   0
 .../Metadata/valueIndex-meta.xml              |   0
 .../ConfigurableProduct/README.md             |   0
 .../ConfigurableProduct/composer.json         |   0
 .../ConfigurableProductSales/LICENSE.txt      |   0
 .../ConfigurableProductSales/LICENSE_AFL.txt  |   0
 .../ConfigurableProductSales/README.md        |   0
 .../ConfigurableProductSales/composer.json    |   0
 .../FunctionalTest/Contact/LICENSE.txt        |   0
 .../FunctionalTest/Contact/LICENSE_AFL.txt    |   0
 .../Magento/FunctionalTest/Contact/README.md  |   0
 .../FunctionalTest/Contact/composer.json      |   0
 .../Magento/FunctionalTest/Cookie/LICENSE.txt |   0
 .../FunctionalTest/Cookie/LICENSE_AFL.txt     |   0
 .../Magento/FunctionalTest/Cookie/README.md   |   0
 .../FunctionalTest/Cookie/composer.json       |   0
 .../Magento/FunctionalTest/Cron/LICENSE.txt   |   0
 .../FunctionalTest/Cron/LICENSE_AFL.txt       |   0
 .../Magento/FunctionalTest/Cron/README.md     |   0
 .../Magento/FunctionalTest/Cron/composer.json |   0
 .../FunctionalTest/CurrencySymbol/LICENSE.txt |   0
 .../CurrencySymbol/LICENSE_AFL.txt            |   0
 .../FunctionalTest/CurrencySymbol/README.md   |   0
 .../CurrencySymbol/composer.json              |   0
 .../Customer/Cest/AdminCreateCustomerCest.xml |   0
 .../Cest/StorefrontCreateCustomerCest.xml     |   0
 .../StorefrontPersistedCustomerLoginCest.xml  |   0
 .../Customer/Data/AddressData.xml             |   0
 .../Customer/Data/CustomerData.xml            |   0
 .../Data/ExtensionAttributeSimple.xml         |   0
 .../Customer/Data/RegionData.xml              |   0
 .../FunctionalTest/Customer/LICENSE.txt       |   0
 .../FunctionalTest/Customer/LICENSE_AFL.txt   |   0
 .../Customer/Metadata/address-meta.xml        |   0
 .../Customer/Metadata/customer-meta.xml       |   0
 .../customer_extension_attribute-meta.xml     |   0
 ...stomer_nested_extension_attribute-meta.xml |   0
 .../Customer/Metadata/region-meta.xml         |   0
 .../Customer/Page/AdminCustomerPage.xml       |   0
 .../Customer/Page/AdminEditCustomerPage.xml   |   0
 .../Customer/Page/AdminNewCustomerPage.xml    |   0
 .../Page/StorefrontCustomerCreatePage.xml     |   0
 .../Page/StorefrontCustomerDashboardPage.xml  |   0
 .../Page/StorefrontCustomerSignInPage.xml     |   0
 .../Customer/Page/StorefrontHomePage.xml      |   0
 .../Magento/FunctionalTest/Customer/README.md |   0
 .../Section/AdminCustomerFiltersSection.xml   |   0
 .../Section/AdminCustomerGridSection.xml      |   0
 .../AdminCustomerMainActionsSection.xml       |   0
 .../Section/AdminCustomerMessagesSection.xml  |   0
 .../AdminEditCustomerInformationSection.xml   |   0
 .../AdminEditCustomerOrdersSection.xml        |   0
 ...inNewCustomerAccountInformationSection.xml |   0
 .../AdminNewCustomerMainActionsSection.xml    |   0
 .../StorefrontCustomerCreateFormSection.xml   |   0
 ...omerDashboardAccountInformationSection.xml |   0
 .../StorefrontCustomerSignInFormSection.xml   |   0
 .../Section/StorefrontPanelHeaderSection.xml  |   0
 .../FunctionalTest/Customer/composer.json     |   0
 .../CustomerAnalytics/LICENSE.txt             |   0
 .../CustomerAnalytics/LICENSE_AFL.txt         |   0
 .../CustomerAnalytics/README.md               |   0
 .../CustomerAnalytics/composer.json           |   0
 .../CustomerImportExport/LICENSE.txt          |   0
 .../CustomerImportExport/LICENSE_AFL.txt      |   0
 .../CustomerImportExport/README.md            |   0
 .../CustomerImportExport/composer.json        |   0
 .../Magento/FunctionalTest/Deploy/LICENSE.txt |   0
 .../FunctionalTest/Deploy/LICENSE_AFL.txt     |   0
 .../Magento/FunctionalTest/Deploy/README.md   |   0
 .../FunctionalTest/Deploy/composer.json       |   0
 .../FunctionalTest/Developer/LICENSE.txt      |   0
 .../FunctionalTest/Developer/LICENSE_AFL.txt  |   0
 .../FunctionalTest/Developer/README.md        |   0
 .../FunctionalTest/Developer/composer.json    |   0
 .../Magento/FunctionalTest/Dhl/LICENSE.txt    |   0
 .../FunctionalTest/Dhl/LICENSE_AFL.txt        |   0
 .../Magento/FunctionalTest/Dhl/README.md      |   0
 .../Magento/FunctionalTest/Dhl/composer.json  |   0
 .../FunctionalTest/Directory/LICENSE.txt      |   0
 .../FunctionalTest/Directory/LICENSE_AFL.txt  |   0
 .../FunctionalTest/Directory/README.md        |   0
 .../FunctionalTest/Directory/composer.json    |   0
 .../FunctionalTest/Downloadable/LICENSE.txt   |   0
 .../Downloadable/LICENSE_AFL.txt              |   0
 .../FunctionalTest/Downloadable/README.md     |   0
 .../FunctionalTest/Downloadable/composer.json |   0
 .../DownloadableImportExport/LICENSE.txt      |   0
 .../DownloadableImportExport/LICENSE_AFL.txt  |   0
 .../DownloadableImportExport/README.md        |   0
 .../DownloadableImportExport/composer.json    |   0
 .../Magento/FunctionalTest/Eav/LICENSE.txt    |   0
 .../FunctionalTest/Eav/LICENSE_AFL.txt        |   0
 .../Magento/FunctionalTest/Eav/README.md      |   0
 .../Magento/FunctionalTest/Eav/composer.json  |   0
 .../Magento/FunctionalTest/Email/LICENSE.txt  |   0
 .../FunctionalTest/Email/LICENSE_AFL.txt      |   0
 .../Magento/FunctionalTest/Email/README.md    |   0
 .../FunctionalTest/Email/composer.json        |   0
 .../FunctionalTest/EncryptionKey/LICENSE.txt  |   0
 .../EncryptionKey/LICENSE_AFL.txt             |   0
 .../FunctionalTest/EncryptionKey/README.md    |   0
 .../EncryptionKey/composer.json               |   0
 .../Magento/FunctionalTest/Fedex/LICENSE.txt  |   0
 .../FunctionalTest/Fedex/LICENSE_AFL.txt      |   0
 .../Magento/FunctionalTest/Fedex/README.md    |   0
 .../FunctionalTest/Fedex/composer.json        |   0
 .../FunctionalTest/GiftMessage/LICENSE.txt    |   0
 .../GiftMessage/LICENSE_AFL.txt               |   0
 .../FunctionalTest/GiftMessage/README.md      |   0
 .../FunctionalTest/GiftMessage/composer.json  |   0
 .../FunctionalTest/GoogleAdwords/LICENSE.txt  |   0
 .../GoogleAdwords/LICENSE_AFL.txt             |   0
 .../FunctionalTest/GoogleAdwords/README.md    |   0
 .../GoogleAdwords/composer.json               |   0
 .../GoogleAnalytics/LICENSE.txt               |   0
 .../GoogleAnalytics/LICENSE_AFL.txt           |   0
 .../FunctionalTest/GoogleAnalytics/README.md  |   0
 .../GoogleAnalytics/composer.json             |   0
 .../GoogleOptimizer/LICENSE.txt               |   0
 .../GoogleOptimizer/LICENSE_AFL.txt           |   0
 .../FunctionalTest/GoogleOptimizer/README.md  |   0
 .../GoogleOptimizer/composer.json             |   0
 .../FunctionalTest/GraphQl/LICENSE.txt        |   0
 .../FunctionalTest/GraphQl/LICENSE_AFL.txt    |   0
 .../Magento/FunctionalTest/GraphQl/README.md  |   0
 .../FunctionalTest/GraphQl/composer.json      |   0
 .../GroupedImportExport/LICENSE.txt           |   0
 .../GroupedImportExport/LICENSE_AFL.txt       |   0
 .../GroupedImportExport/README.md             |   0
 .../GroupedImportExport/composer.json         |   0
 .../FunctionalTest/GroupedProduct/LICENSE.txt |   0
 .../GroupedProduct/LICENSE_AFL.txt            |   0
 .../FunctionalTest/GroupedProduct/README.md   |   0
 .../GroupedProduct/composer.json              |   0
 .../FunctionalTest/ImportExport/LICENSE.txt   |   0
 .../ImportExport/LICENSE_AFL.txt              |   0
 .../FunctionalTest/ImportExport/README.md     |   0
 .../FunctionalTest/ImportExport/composer.json |   0
 .../FunctionalTest/Indexer/LICENSE.txt        |   0
 .../FunctionalTest/Indexer/LICENSE_AFL.txt    |   0
 .../Magento/FunctionalTest/Indexer/README.md  |   0
 .../FunctionalTest/Indexer/composer.json      |   0
 .../InstantPurchase/LICENSE.txt               |   0
 .../InstantPurchase/LICENSE_AFL.txt           |   0
 .../FunctionalTest/InstantPurchase/README.md  |   0
 .../InstantPurchase/composer.json             |   0
 .../FunctionalTest/Integration/LICENSE.txt    |   0
 .../Integration/LICENSE_AFL.txt               |   0
 .../FunctionalTest/Integration/README.md      |   0
 .../FunctionalTest/Integration/composer.json  |   0
 .../LayeredNavigation/LICENSE.txt             |   0
 .../LayeredNavigation/LICENSE_AFL.txt         |   0
 .../LayeredNavigation/README.md               |   0
 .../LayeredNavigation/composer.json           |   0
 .../FunctionalTest/Marketplace/LICENSE.txt    |   0
 .../Marketplace/LICENSE_AFL.txt               |   0
 .../FunctionalTest/Marketplace/README.md      |   0
 .../FunctionalTest/Marketplace/composer.json  |   0
 .../FunctionalTest/MediaStorage/LICENSE.txt   |   0
 .../MediaStorage/LICENSE_AFL.txt              |   0
 .../FunctionalTest/MediaStorage/README.md     |   0
 .../FunctionalTest/MediaStorage/composer.json |   0
 .../Magento/FunctionalTest/Msrp/LICENSE.txt   |   0
 .../FunctionalTest/Msrp/LICENSE_AFL.txt       |   0
 .../Magento/FunctionalTest/Msrp/README.md     |   0
 .../Magento/FunctionalTest/Msrp/composer.json |   0
 .../FunctionalTest/Multishipping/LICENSE.txt  |   0
 .../Multishipping/LICENSE_AFL.txt             |   0
 .../FunctionalTest/Multishipping/README.md    |   0
 .../Multishipping/composer.json               |   0
 .../NewRelicReporting/LICENSE.txt             |   0
 .../NewRelicReporting/LICENSE_AFL.txt         |   0
 .../NewRelicReporting/README.md               |   0
 .../NewRelicReporting/composer.json           |   0
 .../FunctionalTest/Newsletter/LICENSE.txt     |   0
 .../FunctionalTest/Newsletter/LICENSE_AFL.txt |   0
 .../FunctionalTest/Newsletter/README.md       |   0
 .../FunctionalTest/Newsletter/composer.json   |   0
 .../OfflinePayments/LICENSE.txt               |   0
 .../OfflinePayments/LICENSE_AFL.txt           |   0
 .../FunctionalTest/OfflinePayments/README.md  |   0
 .../OfflinePayments/composer.json             |   0
 .../OfflineShipping/LICENSE.txt               |   0
 .../OfflineShipping/LICENSE_AFL.txt           |   0
 .../FunctionalTest/OfflineShipping/README.md  |   0
 .../OfflineShipping/composer.json             |   0
 .../FunctionalTest/PageCache/LICENSE.txt      |   0
 .../FunctionalTest/PageCache/LICENSE_AFL.txt  |   0
 .../FunctionalTest/PageCache/README.md        |   0
 .../FunctionalTest/PageCache/composer.json    |   0
 .../FunctionalTest/Payment/LICENSE.txt        |   0
 .../FunctionalTest/Payment/LICENSE_AFL.txt    |   0
 .../Magento/FunctionalTest/Payment/README.md  |   0
 .../FunctionalTest/Payment/composer.json      |   0
 .../FunctionalTest/Paypal/Data/PaypalData.xml |   0
 .../Magento/FunctionalTest/Paypal/LICENSE.txt |   0
 .../FunctionalTest/Paypal/LICENSE_AFL.txt     |   0
 .../Paypal/Metadata/paypal_config-meta.xml    |   0
 .../Magento/FunctionalTest/Paypal/README.md   |   0
 .../FunctionalTest/Paypal/composer.json       |   0
 .../FunctionalTest/Persistent/LICENSE.txt     |   0
 .../FunctionalTest/Persistent/LICENSE_AFL.txt |   0
 .../FunctionalTest/Persistent/README.md       |   0
 .../FunctionalTest/Persistent/composer.json   |   0
 .../FunctionalTest/ProductAlert/LICENSE.txt   |   0
 .../ProductAlert/LICENSE_AFL.txt              |   0
 .../FunctionalTest/ProductAlert/README.md     |   0
 .../FunctionalTest/ProductAlert/composer.json |   0
 .../FunctionalTest/ProductVideo/LICENSE.txt   |   0
 .../ProductVideo/LICENSE_AFL.txt              |   0
 .../FunctionalTest/ProductVideo/README.md     |   0
 .../FunctionalTest/ProductVideo/composer.json |   0
 .../Magento/FunctionalTest/Quote/LICENSE.txt  |   0
 .../FunctionalTest/Quote/LICENSE_AFL.txt      |   0
 .../Magento/FunctionalTest/Quote/README.md    |   0
 .../FunctionalTest/Quote/composer.json        |   0
 .../FunctionalTest/QuoteAnalytics/LICENSE.txt |   0
 .../QuoteAnalytics/LICENSE_AFL.txt            |   0
 .../FunctionalTest/QuoteAnalytics/README.md   |   0
 .../QuoteAnalytics/composer.json              |   0
 .../FunctionalTest/Reports/LICENSE.txt        |   0
 .../FunctionalTest/Reports/LICENSE_AFL.txt    |   0
 .../Magento/FunctionalTest/Reports/README.md  |   0
 .../FunctionalTest/Reports/composer.json      |   0
 .../FunctionalTest/RequireJs/LICENSE.txt      |   0
 .../FunctionalTest/RequireJs/LICENSE_AFL.txt  |   0
 .../FunctionalTest/RequireJs/README.md        |   0
 .../FunctionalTest/RequireJs/composer.json    |   0
 .../Magento/FunctionalTest/Review/LICENSE.txt |   0
 .../FunctionalTest/Review/LICENSE_AFL.txt     |   0
 .../Magento/FunctionalTest/Review/README.md   |   0
 .../FunctionalTest/Review/composer.json       |   0
 .../ReviewAnalytics/LICENSE.txt               |   0
 .../ReviewAnalytics/LICENSE_AFL.txt           |   0
 .../FunctionalTest/ReviewAnalytics/README.md  |   0
 .../ReviewAnalytics/composer.json             |   0
 .../Magento/FunctionalTest/Robots/LICENSE.txt |   0
 .../FunctionalTest/Robots/LICENSE_AFL.txt     |   0
 .../Magento/FunctionalTest/Robots/README.md   |   0
 .../FunctionalTest/Robots/composer.json       |   0
 .../Magento/FunctionalTest/Rss/LICENSE.txt    |   0
 .../FunctionalTest/Rss/LICENSE_AFL.txt        |   0
 .../Magento/FunctionalTest/Rss/README.md      |   0
 .../Magento/FunctionalTest/Rss/composer.json  |   0
 .../Magento/FunctionalTest/Rule/LICENSE.txt   |   0
 .../FunctionalTest/Rule/LICENSE_AFL.txt       |   0
 .../Magento/FunctionalTest/Rule/README.md     |   0
 .../Magento/FunctionalTest/Rule/composer.json |   0
 .../Sales/Cest/AdminCreateInvoiceCest.xml     |   0
 .../FunctionalTest/Sales/Data/SalesData.xml   |   0
 .../Magento/FunctionalTest/Sales/LICENSE.txt  |   0
 .../FunctionalTest/Sales/LICENSE_AFL.txt      |   0
 .../Sales/Page/InvoiceDetailsPage.xml         |   0
 .../Sales/Page/InvoiceNewPage.xml             |   0
 .../Sales/Page/InvoicesPage.xml               |   0
 .../Sales/Page/OrderDetailsPage.xml           |   0
 .../FunctionalTest/Sales/Page/OrdersPage.xml  |   0
 .../Magento/FunctionalTest/Sales/README.md    |   0
 .../InvoiceDetailsInformationSection.xml      |   0
 .../Sales/Section/InvoiceNewSection.xml       |   0
 .../Sales/Section/InvoicesFiltersSection.xml  |   0
 .../Sales/Section/InvoicesGridSection.xml     |   0
 .../OrderDetailsInformationSection.xml        |   0
 .../Section/OrderDetailsInvoicesSection.xml   |   0
 .../OrderDetailsMainActionsSection.xml        |   0
 .../Section/OrderDetailsMessagesSection.xml   |   0
 .../Section/OrderDetailsOrderViewSection.xml  |   0
 .../Sales/Section/OrdersGridSection.xml       |   0
 .../FunctionalTest/Sales/composer.json        |   0
 .../FunctionalTest/SalesAnalytics/LICENSE.txt |   0
 .../SalesAnalytics/LICENSE_AFL.txt            |   0
 .../FunctionalTest/SalesAnalytics/README.md   |   0
 .../SalesAnalytics/composer.json              |   0
 .../FunctionalTest/SalesInventory/LICENSE.txt |   0
 .../SalesInventory/LICENSE_AFL.txt            |   0
 .../FunctionalTest/SalesInventory/README.md   |   0
 .../SalesInventory/composer.json              |   0
 .../FunctionalTest/SalesRule/LICENSE.txt      |   0
 .../FunctionalTest/SalesRule/LICENSE_AFL.txt  |   0
 .../SalesRule/Metadata/sales_rule-meta.xml    |   0
 .../Metadata/sales_rule_store_label-meta.xml  |   0
 .../FunctionalTest/SalesRule/README.md        |   0
 .../FunctionalTest/SalesRule/composer.json    |   0
 .../FunctionalTest/SalesSequence/LICENSE.txt  |   0
 .../SalesSequence/LICENSE_AFL.txt             |   0
 .../FunctionalTest/SalesSequence/README.md    |   0
 .../SalesSequence/composer.json               |   0
 .../FunctionalTest/SampleData/LICENSE.txt     |   0
 .../FunctionalTest/SampleData/LICENSE_AFL.txt |   0
 .../FunctionalTest/SampleData/README.md       |   0
 .../FunctionalTest/SampleData/composer.json   |   0
 .../ActionGroup/TemplateActionGroupFile.xml   |   0
 .../SampleTemplates/Cest/TemplateCestFile.xml |   0
 .../SampleTemplates/Data/TemplateDataFile.xml |   0
 .../SampleTemplates/LICENSE.txt               |   0
 .../SampleTemplates/LICENSE_AFL.txt           |   0
 .../Metadata/TemplateMetaFile.xml             |   0
 .../SampleTemplates/Page/TemplatePageFile.xml |   0
 .../FunctionalTest/SampleTemplates/README.md  |   0
 .../Section/TemplateSectionFile.xml           |   0
 .../SampleTemplates/composer.json             |   0
 .../ActionGroup/SampleActionGroup.xml         |   0
 .../SampleTests/Cest/AdvancedSampleCest.xml   |   0
 .../SampleTests/Cest/AssertsCest.xml          |   0
 .../CreateConfigurableProductByApiCest.xml    |   0
 .../Cest/CreateSalesRuleByApiCest.xml         |   0
 .../SampleTests/Cest/MinimumTestCest.xml      |   0
 .../Cest/PersistMultipleEntitiesCest.xml      |   0
 .../SampleTests/Cest/SampleCest.xml           |   0
 .../Cest/SetPaymentConfigurationCest.xml      |   0
 .../Cest/UpdateSimpleProductByApiCest.xml     |   0
 .../SampleTests/Data/SampleData.xml           |   0
 .../FunctionalTest/SampleTests/LICENSE.txt    |   0
 .../SampleTests/LICENSE_AFL.txt               |   0
 .../SampleTests/Page/SamplePage.xml           |   0
 .../FunctionalTest/SampleTests/README.md      |   0
 .../SampleTests/Section/SampleSection.xml     |   0
 .../FunctionalTest/SampleTests/composer.json  |   0
 .../Magento/FunctionalTest/Search/LICENSE.txt |   0
 .../FunctionalTest/Search/LICENSE_AFL.txt     |   0
 .../Magento/FunctionalTest/Search/README.md   |   0
 .../FunctionalTest/Search/composer.json       |   0
 .../FunctionalTest/Security/LICENSE.txt       |   0
 .../FunctionalTest/Security/LICENSE_AFL.txt   |   0
 .../Magento/FunctionalTest/Security/README.md |   0
 .../FunctionalTest/Security/composer.json     |   0
 .../FunctionalTest/SendFriend/LICENSE.txt     |   0
 .../FunctionalTest/SendFriend/LICENSE_AFL.txt |   0
 .../FunctionalTest/SendFriend/README.md       |   0
 .../FunctionalTest/SendFriend/composer.json   |   0
 .../FunctionalTest/Shipping/LICENSE.txt       |   0
 .../FunctionalTest/Shipping/LICENSE_AFL.txt   |   0
 .../Magento/FunctionalTest/Shipping/README.md |   0
 .../FunctionalTest/Shipping/composer.json     |   0
 .../FunctionalTest/Sitemap/LICENSE.txt        |   0
 .../FunctionalTest/Sitemap/LICENSE_AFL.txt    |   0
 .../Magento/FunctionalTest/Sitemap/README.md  |   0
 .../FunctionalTest/Sitemap/composer.json      |   0
 .../Store/Cest/AdminCreateStoreGroupCest.xml  |   0
 .../FunctionalTest/Store/Data/StoreData.xml   |   0
 .../Store/Data/StoreGroupData.xml             |   0
 .../Magento/FunctionalTest/Store/LICENSE.txt  |   0
 .../FunctionalTest/Store/LICENSE_AFL.txt      |   0
 .../Store/Metadata/store-meta.xml             |   0
 .../Store/Metadata/store_group-meta.xml       |   0
 .../Store/Page/AdminSystemStorePage.xml       |   0
 .../Magento/FunctionalTest/Store/README.md    |   0
 .../Section/AdminNewStoreGroupSection.xml     |   0
 .../Store/Section/AdminNewStoreSection.xml    |   0
 .../Store/Section/AdminStoresGridSection.xml  |   0
 .../Section/AdminStoresMainActionsSection.xml |   0
 .../FunctionalTest/Store/composer.json        |   0
 .../FunctionalTest/Swagger/LICENSE.txt        |   0
 .../FunctionalTest/Swagger/LICENSE_AFL.txt    |   0
 .../Magento/FunctionalTest/Swagger/README.md  |   0
 .../FunctionalTest/Swagger/composer.json      |   0
 .../FunctionalTest/Swatches/LICENSE.txt       |   0
 .../FunctionalTest/Swatches/LICENSE_AFL.txt   |   0
 .../Magento/FunctionalTest/Swatches/README.md |   0
 .../FunctionalTest/Swatches/composer.json     |   0
 .../SwatchesLayeredNavigation/LICENSE.txt     |   0
 .../SwatchesLayeredNavigation/LICENSE_AFL.txt |   0
 .../SwatchesLayeredNavigation/README.md       |   0
 .../SwatchesLayeredNavigation/composer.json   |   0
 .../Magento/FunctionalTest/Tax/LICENSE.txt    |   0
 .../FunctionalTest/Tax/LICENSE_AFL.txt        |   0
 .../Magento/FunctionalTest/Tax/README.md      |   0
 .../Magento/FunctionalTest/Tax/composer.json  |   0
 .../TaxImportExport/LICENSE.txt               |   0
 .../TaxImportExport/LICENSE_AFL.txt           |   0
 .../FunctionalTest/TaxImportExport/README.md  |   0
 .../TaxImportExport/composer.json             |   0
 .../Magento/FunctionalTest/Theme/LICENSE.txt  |   0
 .../FunctionalTest/Theme/LICENSE_AFL.txt      |   0
 .../Magento/FunctionalTest/Theme/README.md    |   0
 .../FunctionalTest/Theme/composer.json        |   0
 .../FunctionalTest/Translation/LICENSE.txt    |   0
 .../Translation/LICENSE_AFL.txt               |   0
 .../FunctionalTest/Translation/README.md      |   0
 .../FunctionalTest/Translation/composer.json  |   0
 .../Magento/FunctionalTest/Ui/LICENSE.txt     |   0
 .../Magento/FunctionalTest/Ui/LICENSE_AFL.txt |   0
 .../Magento/FunctionalTest/Ui/README.md       |   0
 .../Magento/FunctionalTest/Ui/composer.json   |   0
 .../Magento/FunctionalTest/Ups/LICENSE.txt    |   0
 .../FunctionalTest/Ups/LICENSE_AFL.txt        |   0
 .../Magento/FunctionalTest/Ups/README.md      |   0
 .../Magento/FunctionalTest/Ups/composer.json  |   0
 .../FunctionalTest/UrlRewrite/LICENSE.txt     |   0
 .../FunctionalTest/UrlRewrite/LICENSE_AFL.txt |   0
 .../FunctionalTest/UrlRewrite/README.md       |   0
 .../FunctionalTest/UrlRewrite/composer.json   |   0
 .../FunctionalTest/User/Data/UserData.xml     |   0
 .../Magento/FunctionalTest/User/LICENSE.txt   |   0
 .../FunctionalTest/User/LICENSE_AFL.txt       |   0
 .../Magento/FunctionalTest/User/README.md     |   0
 .../Magento/FunctionalTest/User/composer.json |   0
 .../Magento/FunctionalTest/Usps/LICENSE.txt   |   0
 .../FunctionalTest/Usps/LICENSE_AFL.txt       |   0
 .../Magento/FunctionalTest/Usps/README.md     |   0
 .../Magento/FunctionalTest/Usps/composer.json |   0
 .../FunctionalTest/Variable/LICENSE.txt       |   0
 .../FunctionalTest/Variable/LICENSE_AFL.txt   |   0
 .../Magento/FunctionalTest/Variable/README.md |   0
 .../FunctionalTest/Variable/composer.json     |   0
 .../Magento/FunctionalTest/Vault/LICENSE.txt  |   0
 .../FunctionalTest/Vault/LICENSE_AFL.txt      |   0
 .../Magento/FunctionalTest/Vault/README.md    |   0
 .../FunctionalTest/Vault/composer.json        |   0
 .../FunctionalTest/Version/LICENSE.txt        |   0
 .../FunctionalTest/Version/LICENSE_AFL.txt    |   0
 .../Magento/FunctionalTest/Version/README.md  |   0
 .../FunctionalTest/Version/composer.json      |   0
 .../Magento/FunctionalTest/Webapi/LICENSE.txt |   0
 .../FunctionalTest/Webapi/LICENSE_AFL.txt     |   0
 .../Magento/FunctionalTest/Webapi/README.md   |   0
 .../FunctionalTest/Webapi/composer.json       |   0
 .../FunctionalTest/WebapiSecurity/LICENSE.txt |   0
 .../WebapiSecurity/LICENSE_AFL.txt            |   0
 .../FunctionalTest/WebapiSecurity/README.md   |   0
 .../WebapiSecurity/composer.json              |   0
 .../Magento/FunctionalTest/Weee/LICENSE.txt   |   0
 .../FunctionalTest/Weee/LICENSE_AFL.txt       |   0
 .../Magento/FunctionalTest/Weee/README.md     |   0
 .../Magento/FunctionalTest/Weee/composer.json |   0
 .../Magento/FunctionalTest/Widget/LICENSE.txt |   0
 .../FunctionalTest/Widget/LICENSE_AFL.txt     |   0
 .../Magento/FunctionalTest/Widget/README.md   |   0
 .../FunctionalTest/Widget/composer.json       |   0
 .../StorefrontDeletePersistedWishlistCest.xml |   0
 .../Wishlist/Data/WishlistData.xml            |   0
 .../FunctionalTest/Wishlist/LICENSE.txt       |   0
 .../FunctionalTest/Wishlist/LICENSE_AFL.txt   |   0
 .../Wishlist/Metadata/wishlist-meta.xml       |   0
 .../Page/StorefrontCustomerWishlistPage.xml   |   0
 .../Magento/FunctionalTest/Wishlist/README.md |   0
 .../StorefrontCustomerWishlistSection.xml     |   0
 .../FunctionalTest/Wishlist/composer.json     |   0
 .../WishlistAnalytics/LICENSE.txt             |   0
 .../WishlistAnalytics/LICENSE_AFL.txt         |   0
 .../WishlistAnalytics/README.md               |   0
 .../WishlistAnalytics/composer.json           |   0
 .../tests/functional/_bootstrap.php           |   0
 dev/tests/api-functional/.gitignore           |   0
 .../TestModule1/Controller/CookieTester.php   |   0
 .../Controller/CookieTester/DeleteCookie.php  |   0
 .../CookieTester/SetPublicCookie.php          |   0
 .../CookieTester/SetSensitiveCookie.php       |   0
 .../TestModule1/Service/V1/AllSoapAndRest.php |   0
 .../Service/V1/AllSoapAndRestInterface.php    |   0
 .../TestModule1/Service/V1/Entity/Item.php    |   0
 .../TestModule1/Service/V2/AllSoapAndRest.php |   0
 .../Service/V2/AllSoapAndRestInterface.php    |   0
 .../TestModule1/Service/V2/Entity/Item.php    |   0
 .../_files/Magento/TestModule1/etc/acl.xml    |   0
 .../_files/Magento/TestModule1/etc/di.xml     |   0
 .../TestModule1/etc/extension_attributes.xml  |   0
 .../TestModule1/etc/frontend/routes.xml       |   0
 .../_files/Magento/TestModule1/etc/module.xml |   0
 .../_files/Magento/TestModule1/etc/webapi.xml |   0
 .../Magento/TestModule1/registration.php      |   0
 .../TestModule2/Service/V1/Entity/Item.php    |   0
 .../TestModule2/Service/V1/NoWebApiXml.php    |   0
 .../Service/V1/NoWebApiXmlInterface.php       |   0
 .../TestModule2/Service/V1/SubsetRest.php     |   0
 .../Service/V1/SubsetRestInterface.php        |   0
 .../_files/Magento/TestModule2/etc/acl.xml    |   0
 .../_files/Magento/TestModule2/etc/di.xml     |   0
 .../_files/Magento/TestModule2/etc/module.xml |   0
 .../etc/schema/AllSoapNoRestV1.xsd            |   0
 .../TestModule2/etc/schema/NoWebApiXmlV1.xsd  |   0
 .../TestModule2/etc/schema/SubsetRestV1.xsd   |   0
 .../_files/Magento/TestModule2/etc/webapi.xml |   0
 .../Magento/TestModule2/registration.php      |   0
 .../Service/V1/Entity/Parameter.php           |   0
 .../V1/Entity/WrappedErrorParameter.php       |   0
 .../Magento/TestModule3/Service/V1/Error.php  |   0
 .../TestModule3/Service/V1/ErrorInterface.php |   0
 .../_files/Magento/TestModule3/etc/acl.xml    |   0
 .../_files/Magento/TestModule3/etc/di.xml     |   0
 .../_files/Magento/TestModule3/etc/module.xml |   0
 .../_files/Magento/TestModule3/etc/webapi.xml |   0
 .../Magento/TestModule3/registration.php      |   0
 .../TestModule4/Model/ResourceModel/Item.php  |   0
 .../Service/V1/DataObjectService.php          |   0
 .../Service/V1/DataObjectServiceInterface.php |   0
 .../Service/V1/Entity/DataObjectRequest.php   |   0
 .../Service/V1/Entity/DataObjectResponse.php  |   0
 .../Service/V1/Entity/ExtensibleRequest.php   |   0
 .../V1/Entity/ExtensibleRequestInterface.php  |   0
 .../V1/Entity/NestedDataObjectRequest.php     |   0
 .../_files/Magento/TestModule4/etc/acl.xml    |   0
 .../_files/Magento/TestModule4/etc/di.xml     |   0
 .../_files/Magento/TestModule4/etc/module.xml |   0
 .../_files/Magento/TestModule4/etc/webapi.xml |   0
 .../Magento/TestModule4/registration.php      |   0
 .../TestModule5/Service/V1/AllSoapAndRest.php |   0
 .../Service/V1/AllSoapAndRestInterface.php    |   0
 .../Service/V1/Entity/AllSoapAndRest.php      |   0
 .../Service/V1/OverrideService.php            |   0
 .../Service/V1/OverrideServiceInterface.php   |   0
 .../TestModule5/Service/V2/AllSoapAndRest.php |   0
 .../Service/V2/AllSoapAndRestInterface.php    |   0
 .../Service/V2/Entity/AllSoapAndRest.php      |   0
 .../_files/Magento/TestModule5/etc/acl.xml    |   0
 .../_files/Magento/TestModule5/etc/di.xml     |   0
 .../_files/Magento/TestModule5/etc/module.xml |   0
 .../_files/Magento/TestModule5/etc/webapi.xml |   0
 .../Magento/TestModule5/registration.php      |   0
 .../Api/CustomerPersistenceInterface.php      |   0
 .../Api/Data/ExtensionAttributeInterface.php  |   0
 .../Model/Address/Mapper.php                  |   0
 .../Model/CustomerPersistence.php             |   0
 .../Model/Data/ExtensionAttribute.php         |   0
 .../ResourceModel/Address/ReadHandler.php     |   0
 .../ResourceModel/Address/SaveHandler.php     |   0
 .../Model/ResourceModel/ReadHandler.php       |   0
 .../Model/ResourceModel/SaveHandler.php       |   0
 .../Setup/InstallSchema.php                   |   0
 .../TestModuleDefaultHydrator/etc/di.xml      |   0
 .../etc/extension_attributes.xml              |   0
 .../TestModuleDefaultHydrator/etc/module.xml  |   0
 .../TestModuleDefaultHydrator/etc/webapi.xml  |   0
 .../registration.php                          |   0
 .../composer.json                             |   0
 .../etc/integration.xml                       |   0
 .../etc/module.xml                            |   0
 .../registration.php                          |   0
 .../Api/TestRepositoryInterface.php           |   0
 .../Model/TestRepository.php                  |   0
 .../TestModuleJoinDirectives/composer.json    |   0
 .../TestModuleJoinDirectives/etc/acl.xml      |   0
 .../TestModuleJoinDirectives/etc/di.xml       |   0
 .../etc/extension_attributes.xml              |   0
 .../TestModuleJoinDirectives/etc/module.xml   |   0
 .../TestModuleJoinDirectives/etc/webapi.xml   |   0
 .../TestModuleJoinDirectives/registration.php |   0
 .../Api/AllSoapAndRestInterface.php           |   0
 .../CustomAttributeDataObjectInterface.php    |   0
 ...stomAttributeNestedDataObjectInterface.php |   0
 .../TestModuleMSC/Api/Data/ItemInterface.php  |   0
 .../TestModuleMSC/Model/AllSoapAndRest.php    |   0
 .../Model/Data/CustomAttributeDataObject.php  |   0
 .../Data/CustomAttributeNestedDataObject.php  |   0
 .../Model/Data/Eav/AttributeMetadata.php      |   0
 .../Magento/TestModuleMSC/Model/Data/Item.php |   0
 .../Model/ResourceModel/Item.php              |   0
 .../_files/Magento/TestModuleMSC/etc/acl.xml  |   0
 .../_files/Magento/TestModuleMSC/etc/di.xml   |   0
 .../etc/extension_attributes.xml              |   0
 .../Magento/TestModuleMSC/etc/module.xml      |   0
 .../Magento/TestModuleMSC/etc/webapi.xml      |   0
 .../Magento/TestModuleMSC/registration.php    |   0
 .../config/config-global.php.dist             |   0
 .../config/install-config-mysql.php.dist      |   0
 .../Annotation/ApiDataFixture.php             |   0
 .../Authentication/OauthHelper.php            |   0
 .../Authentication/Rest/CurlClient.php        |   0
 .../Authentication/Rest/OauthClient.php       |   0
 .../Rest/OauthClient/Signature.php            |   0
 .../Bootstrap/WebapiDocBlock.php              |   0
 .../Magento/TestFramework/Helper/Customer.php |   0
 .../TestCase/Webapi/Adapter/Rest.php          |   0
 .../Webapi/Adapter/Rest/CurlClient.php        |   0
 .../Adapter/Rest/DocumentationGenerator.php   |   0
 .../TestCase/Webapi/Adapter/Soap.php          |   0
 .../TestCase/Webapi/AdapterInterface.php      |   0
 .../TestFramework/TestCase/Webapi/Curl.php    |   0
 .../TestFramework/TestCase/WebapiAbstract.php |   0
 .../TestFramework/WebApiApplication.php       |   0
 .../api-functional/framework/autoload.php     |   0
 .../api-functional/framework/bootstrap.php    |   0
 dev/tests/api-functional/phpunit.xml.dist     |   0
 .../Analytics/Api/LinkProviderTest.php        |   0
 .../Bundle/Api/CartItemRepositoryTest.php     |   0
 .../Bundle/Api/OrderInvoiceCreateTest.php     |   0
 .../Bundle/Api/OrderItemRepositoryTest.php    |   0
 .../Bundle/Api/ProductLinkManagementTest.php  |   0
 .../Api/ProductOptionRepositoryTest.php       |   0
 .../Bundle/Api/ProductOptionTypeListTest.php  |   0
 .../Magento/Bundle/Api/ProductServiceTest.php |   0
 .../Api/AttributeSetManagementTest.php        |   0
 .../Api/AttributeSetRepositoryTest.php        |   0
 .../Catalog/Api/BasePriceStorageTest.php      |   0
 .../Catalog/Api/CartItemRepositoryTest.php    |   0
 ...AttributeOptionManagementInterfaceTest.php |   0
 .../Api/CategoryAttributeRepositoryTest.php   |   0
 .../Api/CategoryLinkManagementTest.php        |   0
 .../Api/CategoryLinkRepositoryTest.php        |   0
 .../Magento/Catalog/Api/CategoryListTest.php  |   0
 .../Catalog/Api/CategoryManagementTest.php    |   0
 .../Catalog/Api/CategoryRepositoryTest.php    |   0
 .../Magento/Catalog/Api/CostStorageTest.php   |   0
 .../Catalog/Api/OrderItemRepositoryTest.php   |   0
 .../ProductAttributeGroupRepositoryTest.php   |   0
 .../Api/ProductAttributeManagementTest.php    |   0
 ...uteMediaGalleryManagementInterfaceTest.php |   0
 ...AttributeOptionManagementInterfaceTest.php |   0
 .../Api/ProductAttributeRepositoryTest.php    |   0
 .../Api/ProductAttributeTypesListTest.php     |   0
 .../ProductCustomAttributeWrongTypeTest.php   |   0
 .../Api/ProductCustomOptionRepositoryTest.php |   0
 .../Api/ProductCustomOptionTypeListTest.php   |   0
 .../ProductLinkManagementInterfaceTest.php    |   0
 .../ProductLinkRepositoryInterfaceTest.php    |   0
 .../Catalog/Api/ProductLinkTypeListTest.php   |   0
 .../ProductMediaAttributeManagementTest.php   |   0
 .../Api/ProductRenderListInterfaceTest.php    |   0
 .../Api/ProductRepositoryInterfaceTest.php    |   0
 .../ProductRepositoryMultiCurrencyTest.php    |   0
 .../Api/ProductRepositoryMultiStoreTest.php   |   0
 ...AttributeOptionManagementInterfaceTest.php |   0
 .../Api/ProductTierPriceManagementTest.php    |   0
 .../Catalog/Api/ProductTypeListTest.php       |   0
 .../Catalog/Api/SpecialPriceStorageTest.php   |   0
 .../Catalog/Api/TierPriceStorageTest.php      |   0
 .../Catalog/Api/_files/product_options.php    |   0
 .../Api/_files/product_options_negative.php   |   0
 .../product_options_update_negative.php       |   0
 .../Magento/Catalog/Api/_files/test_image.jpg | Bin
 .../Api/LowStockItemsTest.php                 |   0
 .../Api/ProductRepositoryInterfaceTest.php    |   0
 .../CatalogInventory/Api/StockItemTest.php    |   0
 .../CatalogInventory/Api/StockStatusTest.php  |   0
 .../Api/CheckoutAgreementsRepositoryTest.php  |   0
 .../Magento/Cms/Api/BlockRepositoryTest.php   |   0
 .../Magento/Cms/Api/PageRepositoryTest.php    |   0
 .../Api/CartItemRepositoryTest.php            |   0
 .../Api/ConfigurableProductManagementTest.php |   0
 .../Api/LinkManagementTest.php                |   0
 .../Api/OptionRepositoryTest.php              |   0
 .../Api/OrderItemRepositoryTest.php           |   0
 .../Api/ProductRepositoryTest.php             |   0
 .../AccountManagementCustomAttributesTest.php |   0
 .../Customer/Api/AccountManagementMeTest.php  |   0
 .../Customer/Api/AccountManagementTest.php    |   0
 .../Customer/Api/AddressMetadataTest.php      |   0
 .../Customer/Api/AddressRepositoryTest.php    |   0
 .../Customer/Api/CustomerGroupConfigTest.php  |   0
 .../Customer/Api/CustomerMetadataTest.php     |   0
 .../Customer/Api/CustomerRepositoryTest.php   |   0
 .../Customer/Api/GroupManagementTest.php      |   0
 .../Customer/Api/GroupRepositoryTest.php      |   0
 .../Magento/Customer/Api/_files/buttons.png   | Bin
 .../Customer/Api/_files/test_image.jpg        | Bin
 .../Api/CountryInformationAcquirerTest.php    |   0
 .../Api/CurrencyInformationAcquirerTest.php   |   0
 .../Api/CartItemRepositoryTest.php            |   0
 .../Downloadable/Api/LinkRepositoryTest.php   |   0
 .../Api/OrderItemRepositoryTest.php           |   0
 .../Api/ProductRepositoryTest.php             |   0
 .../Downloadable/Api/SampleRepositoryTest.php |   0
 .../Downloadable/Api/_files/test_image.jpg    | Bin
 .../Eav/Api/AttributeSetManagementTest.php    |   0
 .../Eav/Api/AttributeSetRepositoryTest.php    |   0
 .../Framework/Api/Search/SearchTest.php       |   0
 .../Framework/Model/Entity/HydratorTest.php   |   0
 .../Framework/Stdlib/CookieManagerTest.php    |   0
 .../GiftMessage/Api/CartRepositoryTest.php    |   0
 .../Api/GuestCartRepositoryTest.php           |   0
 .../Api/GuestItemRepositoryTest.php           |   0
 .../GiftMessage/Api/ItemRepositoryTest.php    |   0
 .../Api/ProductLinkManagementTest.php         |   0
 .../Api/ProductLinkRepositoryTest.php         |   0
 .../Api/ProductLinkTypeListTest.php           |   0
 .../Api/ProductRepositoryInterfaceTest.php    |   0
 .../Model/AdminTokenServiceTest.php           |   0
 .../Model/CustomerTokenServiceTest.php        |   0
 .../Integration/Model/IntegrationTest.php     |   0
 .../Api/BillingAddressManagementTest.php      |   0
 .../Quote/Api/CartItemRepositoryTest.php      |   0
 .../Magento/Quote/Api/CartManagementTest.php  |   0
 .../Magento/Quote/Api/CartRepositoryTest.php  |   0
 .../Quote/Api/CartTotalRepositoryTest.php     |   0
 .../Quote/Api/CouponManagementTest.php        |   0
 .../Api/GuestBillingAddressManagementTest.php |   0
 .../Quote/Api/GuestCartItemRepositoryTest.php |   0
 .../Quote/Api/GuestCartManagementTest.php     |   0
 .../Quote/Api/GuestCartRepositoryTest.php     |   0
 .../Api/GuestCartTotalRepositoryTest.php      |   0
 .../Quote/Api/GuestCouponManagementTest.php   |   0
 .../Api/GuestPaymentMethodManagementTest.php  |   0
 .../Quote/Api/GuestShipmentEstimationTest.php |   0
 .../Api/GuestShippingMethodManagementTest.php |   0
 .../Quote/Api/PaymentMethodManagementTest.php |   0
 .../Api/ShippingMethodManagementTest.php      |   0
 .../Service/V1/CreditMemoCreateRefundTest.php |   0
 .../Service/V1/CreditmemoAddCommentTest.php   |   0
 .../Sales/Service/V1/CreditmemoCancelTest.php |   0
 .../Service/V1/CreditmemoCommentsListTest.php |   0
 .../Sales/Service/V1/CreditmemoCreateTest.php |   0
 .../Sales/Service/V1/CreditmemoEmailTest.php  |   0
 .../Sales/Service/V1/CreditmemoGetTest.php    |   0
 .../Sales/Service/V1/CreditmemoListTest.php   |   0
 .../Service/V1/InvoiceAddCommentTest.php      |   0
 .../Sales/Service/V1/InvoiceCaptureTest.php   |   0
 .../Service/V1/InvoiceCommentsListTest.php    |   0
 .../Sales/Service/V1/InvoiceCreateTest.php    |   0
 .../Sales/Service/V1/InvoiceEmailTest.php     |   0
 .../Sales/Service/V1/InvoiceGetTest.php       |   0
 .../Sales/Service/V1/InvoiceListTest.php      |   0
 .../Sales/Service/V1/InvoiceVoidTest.php      |   0
 .../Service/V1/OrderAddressUpdateTest.php     |   0
 .../Sales/Service/V1/OrderCancelTest.php      |   0
 .../Service/V1/OrderCommentsListTest.php      |   0
 .../Sales/Service/V1/OrderEmailTest.php       |   0
 .../Sales/Service/V1/OrderGetStatusTest.php   |   0
 .../Magento/Sales/Service/V1/OrderGetTest.php |   0
 .../Sales/Service/V1/OrderHoldTest.php        |   0
 .../Service/V1/OrderInvoiceCreateTest.php     |   0
 .../Sales/Service/V1/OrderItemGetListTest.php |   0
 .../Sales/Service/V1/OrderItemGetTest.php     |   0
 .../Sales/Service/V1/OrderListTest.php        |   0
 .../Service/V1/OrderStatusHistoryAddTest.php  |   0
 .../Sales/Service/V1/OrderUnHoldTest.php      |   0
 .../Sales/Service/V1/RefundOrderTest.php      |   0
 .../Sales/Service/V1/ShipOrderTest.php        |   0
 .../Service/V1/ShipmentAddCommentTest.php     |   0
 .../Sales/Service/V1/ShipmentAddTrackTest.php |   0
 .../Service/V1/ShipmentCommentsListTest.php   |   0
 .../Sales/Service/V1/ShipmentCreateTest.php   |   0
 .../Sales/Service/V1/ShipmentEmailTest.php    |   0
 .../Sales/Service/V1/ShipmentGetTest.php      |   0
 .../Sales/Service/V1/ShipmentLabelGetTest.php |   0
 .../Sales/Service/V1/ShipmentListTest.php     |   0
 .../Service/V1/ShipmentRemoveTrackTest.php    |   0
 .../Sales/Service/V1/TransactionTest.php      |   0
 .../V1/ReturnItemsAfterRefundOrderTest.php    |   0
 .../SalesRule/Api/CouponManagementTest.php    |   0
 .../SalesRule/Api/CouponRepositoryTest.php    |   0
 .../SalesRule/Api/RuleRepositoryTest.php      |   0
 .../Magento/Store/Api/GroupRepositoryTest.php |   0
 .../Store/Api/StoreConfigManagerTest.php      |   0
 .../Magento/Store/Api/StoreRepositoryTest.php |   0
 .../Store/Api/WebsiteRepositoryTest.php       |   0
 .../Tax/Api/TaxClassRepositoryTest.php        |   0
 .../Magento/Tax/Api/TaxRateRepositoryTest.php |   0
 .../Api/TaxRuleRepositoryInterfaceTest.php    |   0
 .../Webapi/Authentication/RestTest.php        |   0
 .../CustomAttributeTypeWsdlGenerationTest.php |   0
 .../ServiceSerializationTest.php              |   0
 .../Magento/Webapi/DeserializationTest.php    |   0
 .../Magento/Webapi/JoinDirectivesTest.php     |   0
 .../JsonGenerationFromDataObjectTest.php      |   0
 .../Magento/Webapi/PartialResponseTest.php    |   0
 .../Magento/Webapi/Routing/BaseService.php    |   0
 .../Webapi/Routing/CoreRoutingTest.php        |   0
 .../Magento/Webapi/Routing/GettersTest.php    |   0
 .../Webapi/Routing/NoWebApiXmlTest.php        |   0
 .../Webapi/Routing/RequestIdOverrideTest.php  |   0
 .../Webapi/Routing/RestErrorHandlingTest.php  |   0
 .../Webapi/Routing/ServiceVersionV1Test.php   |   0
 .../Webapi/Routing/ServiceVersionV2Test.php   |   0
 .../Webapi/Routing/SoapErrorHandlingTest.php  |   0
 .../Magento/Webapi/Routing/SubsetTest.php     |   0
 .../WsdlGenerationFromDataObjectTest.php      |   0
 dev/tests/functional/.gitignore               |   0
 dev/tests/functional/.htaccess.sample         |   0
 dev/tests/functional/bootstrap.php            |   0
 dev/tests/functional/composer.json            |   0
 dev/tests/functional/credentials.xml.dist     |   0
 dev/tests/functional/etc/config.xml.dist      |   0
 dev/tests/functional/etc/config.xsd           |   0
 dev/tests/functional/etc/di.xml               |   0
 dev/tests/functional/etc/events.xml           |   0
 dev/tests/functional/etc/events.xsd           |   0
 .../functional/etc/repository_replacer.xml    |   0
 .../etc/repository_replacer_payments.xml      |   0
 dev/tests/functional/isolation.php            |   0
 .../Magento/Mtf/App/State/AbstractState.php   |   0
 .../lib/Magento/Mtf/App/State/State1.php      |   0
 .../Mtf/App/State/StateHandlerInterface.php   |   0
 .../Mtf/Client/Element/ConditionsElement.php  |   0
 .../Mtf/Client/Element/DatepickerElement.php  |   0
 .../Element/DropdownmultiselectElement.php    |   0
 .../Client/Element/GlobalsearchElement.php    |   0
 .../Mtf/Client/Element/JquerytreeElement.php  |   0
 .../Client/Element/LiselectstoreElement.php   |   0
 .../Element/MultiselectgrouplistElement.php   |   0
 .../Client/Element/MultiselectlistElement.php |   0
 .../Client/Element/MultisuggestElement.php    |   0
 .../Client/Element/OptgroupselectElement.php  |   0
 .../Mtf/Client/Element/RadiobuttonElement.php |   0
 .../Mtf/Client/Element/SelectstoreElement.php |   0
 .../Element/SimplifiedselectElement.php       |   0
 .../Mtf/Client/Element/SuggestElement.php     |   0
 .../Mtf/Client/Element/SwitcherElement.php    |   0
 .../lib/Magento/Mtf/Client/Element/Tree.php   |   0
 .../Mtf/Client/Element/TreeElement.php        |   0
 .../Mtf/Config/FileResolver/ScopeConfig.php   |   0
 .../Mtf/Constraint/AbstractAssertForm.php     |   0
 .../lib/Magento/Mtf/EntryPoint/EntryPoint.php |   0
 .../lib/Magento/Mtf/Handler/Webapi.php        |   0
 .../lib/Magento/Mtf/Page/BackendPage.php      |   0
 .../System/Observer/AllureWebapiResponse.php  |   0
 .../Mtf/System/Observer/WebapiResponse.php    |   0
 .../Mtf/Troubleshooting/AdminAnalyzer.php     |   0
 .../Mtf/Troubleshooting/ConfigAnalyzer.php    |   0
 .../Mtf/Troubleshooting/Configuration.php     |   0
 .../Mtf/Troubleshooting/GlobalAnalyzer.php    |   0
 .../Troubleshooting/Helper/UrlAnalyzer.php    |   0
 .../Mtf/Troubleshooting/HtaccessAnalyzer.php  |   0
 .../Mtf/Troubleshooting/PhpUnitAnalyzer.php   |   0
 .../SeleniumSessionAnalyzer.php               |   0
 .../StaticClassesGenerator.php                |   0
 .../Troubleshooting/StorefrontAnalyzer.php    |   0
 .../lib/Magento/Mtf/Util/Command/Cli.php      |   0
 .../Magento/Mtf/Util/Command/Cli/Cache.php    |   0
 .../lib/Magento/Mtf/Util/Command/Cli/Cron.php |   0
 .../Mtf/Util/Command/Cli/DeployMode.php       |   0
 .../Magento/Mtf/Util/Command/Cli/Indexer.php  |   0
 .../Magento/Mtf/Util/Command/Cli/Queue.php    |   0
 .../Magento/Mtf/Util/Command/Cli/Setup.php    |   0
 .../Mtf/Util/Command/Cli/StaticContent.php    |   0
 .../Magento/Mtf/Util/Command/File/Export.php  |   0
 .../Mtf/Util/Command/File/Export/Data.php     |   0
 .../Mtf/Util/Command/File/Export/Reader.php   |   0
 .../Command/File/Export/ReaderInterface.php   |   0
 .../Mtf/Util/Command/File/ExportInterface.php |   0
 .../lib/Magento/Mtf/Util/Command/File/Log.php |   0
 .../Mtf/Util/Command/GeneratedCode.php        |   0
 .../lib/Magento/Mtf/Util/Command/Locales.php  |   0
 .../Magento/Mtf/Util/Command/PathChecker.php  |   0
 .../lib/Magento/Mtf/Util/Command/Website.php  |   0
 .../Mtf/Util/Filesystem/FileHelper.php        |   0
 .../lib/Magento/Mtf/Util/Generate/Factory.php |   0
 .../Util/Generate/Factory/AbstractFactory.php |   0
 .../Mtf/Util/Generate/Factory/Block.php       |   0
 .../Mtf/Util/Generate/Factory/Fixture.php     |   0
 .../Mtf/Util/Generate/Factory/Handler.php     |   0
 .../Mtf/Util/Generate/Factory/Page.php        |   0
 .../Mtf/Util/Generate/Factory/Repository.php  |   0
 .../Mtf/Util/Generate/File/Generator.php      |   0
 .../Util/Generate/File/TemplateInterface.php  |   0
 .../Util/Generate/Fixture/FieldsProvider.php  |   0
 .../Mtf/Util/Generate/Fixture/SchemaXml.php   |   0
 .../Mtf/Util/Generate/Fixture/template.xml    |   0
 .../Repository/RepositoryResource.php         |   0
 .../Generate/Repository/TableCollection.php   |   0
 .../Util/ModuleResolver/SequenceSorter.php    |   0
 .../CurlTransport/BackendDecorator.php        |   0
 .../CurlTransport/FrontendDecorator.php       |   0
 .../CurlTransport/WebapiDecorator.php         |   0
 dev/tests/functional/phpunit.xml.dist         |   0
 .../Test/Block/System/Messages.php            |   0
 .../Test/Block/System/Messages/System.php     |   0
 .../Test/TestCase/NavigateMenuTest.xml        |   0
 .../AssertExportAdvancedPricing.php           |   0
 .../AssertImportAdvancedPricing.php           |   0
 .../Test/Repository/ExportData.xml            |   0
 .../TestCase/ExportAdvancedPricingTest.php    |   0
 .../TestCase/ExportAdvancedPricingTest.xml    |   0
 .../Test/TestCase/ImportDataNegativeTest.xml  |   0
 .../Test/TestCase/ImportDataTest.xml          |   0
 .../template/pricing/advanced_incorrect.php   |   0
 .../pricing/advanced_price_variation_1.php    |   0
 .../pricing/advanced_price_variation_2.php    |   0
 .../pricing/advanced_price_variation_3.php    |   0
 .../pricing/advanced_price_variation_4.php    |   0
 .../Test/etc/di.xml                           |   0
 .../AdvancedReporting/ReportsSectionBlock.php |   0
 .../Block/System/Config/AnalyticsForm.php     |   0
 .../AssertAdvancedReportingPage.php           |   0
 ...ssertAdvancedReportingSectionInvisible.php |   0
 .../AssertAdvancedReportingSectionVisible.php |   0
 .../Constraint/AssertBIEssentialsLink.php     |   0
 .../AssertConfigAnalyticsDisabled.php         |   0
 .../AssertConfigAnalyticsEnabled.php          |   0
 .../AssertConfigAnalyticsIndustryScope.php    |   0
 ...ssertConfigAnalyticsSendingTimeAndZone.php |   0
 .../AssertEmptyIndustryCanNotBeSaved.php      |   0
 .../Test/Constraint/AssertIndustryIsSet.php   |   0
 .../Test/Page/Adminhtml/ConfigAnalytics.xml   |   0
 .../Test/Page/Adminhtml/Dashboard.xml         |   0
 .../Test/Repository/DefaultTimeZone.xml       |   0
 .../Analytics/Test/Repository/Integration.xml |   0
 .../Analytics/Test/Repository/Role.xml        |   0
 .../Analytics/Test/Repository/User.xml        |   0
 .../TestCase/AdvancedReportingButtonTest.php  |   0
 .../TestCase/AdvancedReportingButtonTest.xml  |   0
 .../Test/TestCase/CustomAclPermissionTest.xml |   0
 .../Test/TestCase/EnableDisableTest.php       |   0
 .../Test/TestCase/EnableDisableTest.xml       |   0
 .../Analytics/Test/TestCase/InstallTest.xml   |   0
 .../Test/TestCase/NavigateMenuTest.xml        |   0
 .../Test/TestCase/SetIndustryTest.php         |   0
 .../Test/TestCase/SetIndustryTest.xml         |   0
 .../Test/TestCase/SetTimeToSendDataTest.php   |   0
 .../Test/TestCase/SetTimeToSendDataTest.xml   |   0
 .../Test/TestStep/OpenAnalyticsConfigStep.php |   0
 .../app/Magento/Analytics/Test/etc/di.xml     |   0
 .../Test/Block/Form/AuthorizenetCc.php        |   0
 .../Test/Block/Form/AuthorizenetCc.xml        |   0
 .../Test/Block/Sandbox/AuthorizenetLogin.php  |   0
 .../Test/Block/Sandbox/AuthorizenetLogin.xml  |   0
 .../Test/Block/Sandbox/GetStartedModal.php    |   0
 .../Authorizenet/Test/Block/Sandbox/Menu.php  |   0
 .../Test/Block/Sandbox/SearchForm.php         |   0
 .../Test/Block/Sandbox/SearchForm.xml         |   0
 .../Test/Block/Sandbox/TransactionsGrid.php   |   0
 ...ssertCreditCardNumberOnOnePageCheckout.php |   0
 .../Fixture/AuthorizenetSandboxCustomer.xml   |   0
 .../Test/Fixture/TransactionSearch.xml        |   0
 .../Test/Page/CheckoutOnepage.xml             |   0
 .../Authorizenet/Test/Page/Sandbox/Main.xml   |   0
 .../AuthorizenetSandboxCustomer.xml           |   0
 .../Test/Repository/ConfigData.xml            |   0
 .../Test/Repository/TransactionSearch.xml     |   0
 .../AuthorizenetFraudCheckoutTest.php         |   0
 .../AuthorizenetFraudCheckoutTest.xml         |   0
 .../TestCase/OnePageCheckoutDeclinedTest.xml  |   0
 ...tMethodDataPersistenceWithDiscountTest.xml |   0
 .../Test/TestCase/OnePageCheckoutTest.xml     |   0
 .../Test/TestCase/ReorderOrderEntityTest.xml  |   0
 .../AcceptTransactionOnAuthorizenetStep.php   |   0
 .../Authorizenet/Test/etc/testcase.xml        |   0
 .../Backend/Test/Block/Admin/Login.php        |   0
 .../Backend/Test/Block/Admin/Login.xml        |   0
 .../Test/Block/Dashboard/StoreStats.php       |   0
 .../Test/Block/Dashboard/StoreStats.xml       |   0
 .../Test/Block/Dashboard/Tab/Products.php     |   0
 .../Block/Dashboard/Tab/Products/Ordered.php  |   0
 .../app/Magento/Backend/Test/Block/Denied.php |   0
 .../Backend/Test/Block/GridPageActions.php    |   0
 .../app/Magento/Backend/Test/Block/Menu.php   |   0
 .../Magento/Backend/Test/Block/Messages.php   |   0
 .../Magento/Backend/Test/Block/Page/Error.php |   0
 .../Backend/Test/Block/Page/Header.php        |   0
 .../Magento/Backend/Test/Block/Page/Main.php  |   0
 .../Backend/Test/Block/PageActions.php        |   0
 .../Backend/Test/Block/System/Config/Form.php |   0
 .../Test/Block/System/Config/Form/Group.php   |   0
 .../Test/Block/System/Config/PageActions.php  |   0
 .../Test/Block/System/Config/Payments.php     |   0
 .../Backend/Test/Block/System/Config/Tabs.php |   0
 .../Test/Block/System/Store/Delete/Form.php   |   0
 .../Test/Block/System/Store/Delete/Form.xml   |   0
 .../System/Store/Edit/Form/GroupForm.php      |   0
 .../System/Store/Edit/Form/GroupForm.xml      |   0
 .../System/Store/Edit/Form/StoreForm.php      |   0
 .../System/Store/Edit/Form/StoreForm.xml      |   0
 .../System/Store/Edit/Form/WebsiteForm.php    |   0
 .../System/Store/Edit/Form/WebsiteForm.xml    |   0
 .../Block/System/Store/FormPageActions.php    |   0
 .../Block/System/Store/GridPageActions.php    |   0
 .../Test/Block/System/Store/StoreGrid.php     |   0
 .../Magento/Backend/Test/Block/Template.php   |   0
 .../Magento/Backend/Test/Block/Version.php    |   0
 .../Backend/Test/Block/Widget/FormTabs.php    |   0
 .../Magento/Backend/Test/Block/Widget/Tab.php |   0
 .../AssertAdminLoginPageIsAvailable.php       |   0
 .../AssertBackendPageIsAvailable.php          |   0
 .../AssertBestsellersOnDashboard.php          |   0
 .../AssertDeveloperSectionVisibility.php      |   0
 .../AssertGlobalSearchCustomerName.php        |   0
 .../AssertGlobalSearchNoRecordsFound.php      |   0
 .../Constraint/AssertGlobalSearchOrderId.php  |   0
 .../Constraint/AssertGlobalSearchPreview.php  |   0
 .../AssertGlobalSearchProductName.php         |   0
 .../Constraint/AssertHttpUsedOnFrontend.php   |   0
 .../AssertHttpsHeaderOptionsAvailable.php     |   0
 .../AssertHttpsHeaderOptionsNotAvailable.php  |   0
 .../Constraint/AssertHttpsUsedOnBackend.php   |   0
 .../AssertInterfaceLocaleAvailableOptions.php |   0
 .../Constraint/AssertLocaleCodeVisibility.php |   0
 .../Constraint/AssertMenuItemNotVisible.php   |   0
 .../Constraint/AssertStoreCanBeLocalized.php  |   0
 .../Backend/Test/Fixture/Admin/SuperAdmin.php |   0
 .../Backend/Test/Fixture/GlobalSearch.xml     |   0
 .../Test/Fixture/GlobalSearch/Query.php       |   0
 .../Backend/Test/Fixture/Source/Date.php      |   0
 .../Backend/Test/Handler/Conditions.php       |   0
 .../Backend/Test/Handler/Extractor.php        |   0
 .../Backend/Test/Handler/Ui/LoginUser.php     |   0
 .../Backend/Test/Handler/Ui/LogoutUser.php    |   0
 .../Backend/Test/Page/AdminAuthLogin.php      |   0
 .../Backend/Test/Page/Adminhtml/Dashboard.xml |   0
 .../Test/Page/Adminhtml/DeleteGroup.xml       |   0
 .../Test/Page/Adminhtml/DeleteWebsite.xml     |   0
 .../Backend/Test/Page/Adminhtml/EditGroup.xml |   0
 .../Backend/Test/Page/Adminhtml/EditStore.xml |   0
 .../Test/Page/Adminhtml/EditWebsite.xml       |   0
 .../Test/Page/Adminhtml/NewGroupIndex.xml     |   0
 .../Test/Page/Adminhtml/NewWebsiteIndex.xml   |   0
 .../Test/Page/Adminhtml/StoreDelete.xml       |   0
 .../Test/Page/Adminhtml/StoreIndex.xml        |   0
 .../Backend/Test/Page/Adminhtml/StoreNew.xml  |   0
 .../Test/Page/Adminhtml/SystemAccount.xml     |   0
 .../Test/Page/Adminhtml/SystemConfig.xml      |   0
 .../Test/Page/Adminhtml/SystemConfigEdit.xml  |   0
 .../SystemConfigEditSectionPayment.xml        |   0
 .../Backend/Test/Repository/ConfigData.xml    |   0
 .../TestCase/ConfigPageVisibilityTest.php     |   0
 .../TestCase/ConfigPageVisibilityTest.xml     |   0
 .../Test/TestCase/ConfigureSecureUrlsTest.php |   0
 .../Test/TestCase/ConfigureSecureUrlsTest.xml |   0
 .../Test/TestCase/ExpireSessionTest.php       |   0
 .../Test/TestCase/ExpireSessionTest.xml       |   0
 .../Test/TestCase/GlobalSearchEntityTest.php  |   0
 .../Test/TestCase/GlobalSearchEntityTest.xml  |   0
 .../Test/TestCase/HttpsHeadersDisableTest.php |   0
 .../Test/TestCase/HttpsHeadersDisableTest.xml |   0
 .../Test/TestCase/HttpsHeadersEnableTest.php  |   0
 .../Test/TestCase/HttpsHeadersEnableTest.xml  |   0
 .../TestCase/LoginAfterJSMinificationTest.php |   0
 .../TestCase/LoginAfterJSMinificationTest.xml |   0
 .../Test/TestCase/NavigateMenuTest.php        |   0
 .../Test/TestCase/NavigateMenuTest.xml        |   0
 .../TestCase/VerifyInterfaceLocaleTest.php    |   0
 .../TestCase/VerifyInterfaceLocaleTest.xml    |   0
 .../Test/TestStep/GetDashboardOrderStep.php   |   0
 .../Test/TestStep/OpenDashboardStep.php       |   0
 .../tests/app/Magento/Backend/Test/etc/di.xml |   0
 .../Test/Block/Adminhtml/BackupGrid.php       |   0
 .../Test/Constraint/AssertBackupInGrid.php    |   0
 .../Test/Page/Adminhtml/BackupIndex.xml       |   0
 .../Backup/Test/TestCase/NavigateMenuTest.xml |   0
 .../Test/Block/Adminhtml/Report/Grid.php      |   0
 .../Braintree/Test/Block/Form/BraintreeCc.php |   0
 .../Braintree/Test/Block/Form/BraintreeCc.xml |   0
 .../Braintree/Test/Block/Form/Secure3d.php    |   0
 .../Braintree/Test/Block/Form/Secure3d.xml    |   0
 .../Test/Block/System/Config/Braintree.php    |   0
 .../Assert3dSecureInfoIsPresent.php           |   0
 ...editCardJsValidationMessagesArePresent.php |   0
 ...tDeviceDataIsPresentInBraintreeRequest.php |   0
 ...TransactionIsPresentInSettlementReport.php |   0
 .../Test/Fixture/BraintreeSandboxCustomer.xml |   0
 .../Test/Fixture/Secure3dBraintree.xml        |   0
 .../Adminhtml/BraintreeSettlementReport.xml   |   0
 .../SystemConfigEditSectionPayment.xml        |   0
 .../Test/Page/CatalogProductView.xml          |   0
 .../Braintree/Test/Page/CheckoutCart.xml      |   0
 .../Braintree/Test/Page/CheckoutOnepage.xml   |   0
 .../Repository/BraintreeSandboxCustomer.xml   |   0
 .../Braintree/Test/Repository/ConfigData.xml  |   0
 .../Braintree/Test/Repository/CreditCard.xml  |   0
 .../Braintree/Test/Repository/Secure3d.xml    |   0
 .../BraintreeSettlementReportTest.php         |   0
 .../BraintreeSettlementReportTest.xml         |   0
 .../CheckoutWithBraintreePaypalCartTest.php   |   0
 .../CheckoutWithBraintreePaypalCartTest.xml   |   0
 ...heckoutWithBraintreePaypalMinicartTest.php |   0
 ...heckoutWithBraintreePaypalMinicartTest.xml |   0
 ...ateOnlineCreditMemoBraintreePaypalTest.php |   0
 ...ateOnlineCreditMemoBraintreePaypalTest.xml |   0
 .../CreateOnlineCreditMemoBraintreeTest.php   |   0
 .../CreateOnlineCreditMemoBraintreeTest.xml   |   0
 .../CreateOnlineInvoiceEntityTest.xml         |   0
 .../Test/TestCase/CreateOrderBackendTest.xml  |   0
 ...derWithPayPalBraintreeVaultBackendTest.php |   0
 ...derWithPayPalBraintreeVaultBackendTest.xml |   0
 .../TestCase/CreateVaultOrderBackendTest.xml  |   0
 .../TestCase/InvoicePayPalBraintreeTest.php   |   0
 .../TestCase/InvoicePaypalBraintreeTest.xml   |   0
 .../OnePageCheckoutAcceptPaymentTest.php      |   0
 .../OnePageCheckoutAcceptPaymentTest.xml      |   0
 .../TestCase/OnePageCheckoutDeclinedTest.xml  |   0
 .../OnePageCheckoutDenyPaymentTest.php        |   0
 .../OnePageCheckoutDenyPaymentTest.xml        |   0
 ...nePageCheckoutFromMiniShoppingCartTest.xml |   0
 .../Test/TestCase/OnePageCheckoutTest.xml     |   0
 .../OnePageCheckoutWith3dSecureFailedTest.php |   0
 .../OnePageCheckoutWith3dSecureFailedTest.xml |   0
 .../OnePageCheckoutWith3dSecureTest.php       |   0
 .../OnePageCheckoutWith3dSecureTest.xml       |   0
 ...OnePageCheckoutWithBraintreePaypalTest.php |   0
 ...OnePageCheckoutWithBraintreePaypalTest.xml |   0
 .../OnePageCheckoutWithDiscountTest.xml       |   0
 .../Test/TestCase/ReorderUsingVaultTest.xml   |   0
 ...veUseDeleteVaultForPaypalBraintreeTest.php |   0
 ...veUseDeleteVaultForPaypalBraintreeTest.xml |   0
 .../Test/TestCase/UseVaultOnCheckoutTest.xml  |   0
 .../UseVaultWith3dSecureOnCheckoutTest.php    |   0
 .../UseVaultWith3dSecureOnCheckoutTest.xml    |   0
 .../VerifyPaymentMethodOnCheckoutTest.xml     |   0
 .../ChangeOrderStatusToPaymentReviewStep.php  |   0
 .../TestStep/CheckBraintreeConfigStep.php     |   0
 .../CheckoutWithPaypalFromCartStep.php        |   0
 .../CheckoutWithPaypalFromMinicartStep.php    |   0
 .../Test/TestStep/ContinueToPaypalStep.php    |   0
 .../PlaceOrderWith3dSecureFailedStep.php      |   0
 .../TestStep/PlaceOrderWith3dSecureStep.php   |   0
 .../TestStep/PlaceOrderWithPaypalStep.php     |   0
 .../Test/TestStep/SettleTransactionStep.php   |   0
 .../app/Magento/Braintree/Test/etc/di.xml     |   0
 .../Magento/Braintree/Test/etc/testcase.xml   |   0
 .../Catalog/Product/Edit/Section/Bundle.php   |   0
 .../Product/Edit/Section/Bundle/Option.php    |   0
 .../Product/Edit/Section/Bundle/Option.xml    |   0
 .../Section/Bundle/Option/Search/Grid.php     |   0
 .../Edit/Section/Bundle/Option/Selection.php  |   0
 .../Edit/Section/Bundle/Option/Selection.xml  |   0
 .../Adminhtml/Product/Composite/Configure.php |   0
 .../Adminhtml/Product/Composite/Configure.xml |   0
 .../Block/Adminhtml/Product/ProductForm.xml   |   0
 .../Test/Block/Catalog/Product/View.php       |   0
 .../Block/Catalog/Product/View/Summary.php    |   0
 .../Product/View/Summary/ConfiguredPrice.php  |   0
 .../Catalog/Product/View/Type/Bundle.php      |   0
 .../Catalog/Product/View/Type/Option.php      |   0
 .../Product/View/Type/Option/Checkbox.php     |   0
 .../Product/View/Type/Option/Checkbox.xml     |   0
 .../Product/View/Type/Option/Dropdown.php     |   0
 .../Product/View/Type/Option/Dropdown.xml     |   0
 .../Product/View/Type/Option/Element/Qty.php  |   0
 .../Product/View/Type/Option/Hidden.php       |   0
 .../Product/View/Type/Option/Hidden.xml       |   0
 .../Product/View/Type/Option/Multiple.php     |   0
 .../Product/View/Type/Option/Multiple.xml     |   0
 .../Product/View/Type/Option/Radiobuttons.php |   0
 .../Product/View/Type/Option/Radiobuttons.xml |   0
 .../Constraint/AssertBundleInCategory.php     |   0
 .../AssertBundleItemsOnProductPage.php        |   0
 .../AssertBundleItemsSummaryOnProductPage.php |   0
 .../AssertBundleOptionTitleOnStorefront.php   |   0
 .../Constraint/AssertBundleOptionsDeleted.php |   0
 ...sertBundlePriceCalculatedOnProductPage.php |   0
 .../Test/Constraint/AssertBundlePriceType.php |   0
 .../Test/Constraint/AssertBundlePriceView.php |   0
 .../Constraint/AssertBundleProductForm.php    |   0
 .../Constraint/AssertBundleProductInCart.php  |   0
 ...ProductInCustomerWishlistOnBackendGrid.php |   0
 ...AssertBundleProductOnConfigureCartPage.php |   0
 .../Constraint/AssertBundleProductPage.php    |   0
 ...roductCustomOptionsOnBundleProductPage.php |   0
 .../AssertTierPriceOnBundleProductPage.php    |   0
 .../Bundle/Test/Fixture/BundleProduct.xml     |   0
 .../BundleProduct/BundleSelections.php        |   0
 .../Magento/Bundle/Test/Fixture/Cart/Item.php |   0
 .../BundleProduct/BundleProductInterface.php  |   0
 .../Test/Handler/BundleProduct/Curl.php       |   0
 .../Test/Handler/BundleProduct/Webapi.php     |   0
 .../Test/Page/Adminhtml/CustomerIndexEdit.xml |   0
 .../Test/Page/Adminhtml/OrderCreateIndex.xml  |   0
 .../Test/Page/Product/CatalogProductView.xml  |   0
 .../Bundle/Test/Repository/BundleProduct.xml  |   0
 .../BundleProduct/BundleSelections.xml        |   0
 .../Repository/BundleProduct/CheckoutData.xml |   0
 .../Test/Repository/BundleProduct/Price.xml   |   0
 .../TestCase/BundleOptionsSummaryTest.php     |   0
 .../TestCase/BundleOptionsSummaryTest.xml     |   0
 .../CancelPartiallyInvoicedOrderTest.php      |   0
 .../CancelPartiallyInvoicedOrderTest.xml      |   0
 .../CreateBundleDynamicProductEntityTest.php  |   0
 .../CreateBundleDynamicProductEntityTest.xml  |   0
 .../CreateBundleProductEntityTest.php         |   0
 .../CreateBundleProductEntityTest.xml         |   0
 .../Test/TestCase/DeleteProductEntityTest.xml |   0
 .../DeleteProductFromMiniShoppingCartTest.xml |   0
 ...ecentlyComparedProductsOnOrderPageTest.xml |   0
 .../UpdateBundleOptionsShoppingCartTest.php   |   0
 .../UpdateBundleOptionsShoppingCartTest.xml   |   0
 .../Test/TestCase/UpdateBundleOptionsTest.php |   0
 .../Test/TestCase/UpdateBundleOptionsTest.xml |   0
 .../UpdateBundleProductEntityTest.php         |   0
 .../UpdateBundleProductEntityTest.xml         |   0
 .../ValidateOrderOfProductTypeTest.xml        |   0
 .../TestStep/CreatePartialInvoiceStep.php     |   0
 .../app/Magento/Bundle/Test/etc/curl/di.xml   |   0
 .../tests/app/Magento/Bundle/Test/etc/di.xml  |   0
 .../app/Magento/Bundle/Test/etc/testcase.xml  |   0
 .../app/Magento/Bundle/Test/etc/webapi/di.xml |   0
 .../AssertImportedBundleProducts.php          |   0
 .../Test/Fixture/Import/File.php              |   0
 .../Test/TestCase/ExportProductsTest.xml      |   0
 .../Test/TestCase/ImportProductsTest.xml      |   0
 .../Test/Block/Adminhtml/LoginWithCaptcha.php |   0
 .../Test/Block/Adminhtml/LoginWithCaptcha.xml |   0
 .../Captcha/Test/Block/Form/ContactUs.php     |   0
 .../Captcha/Test/Block/Form/ContactUs.xml     |   0
 .../Captcha/Test/Block/Form/CustomerForm.xml  |   0
 .../Test/Block/Form/LoginWithCaptcha.php      |   0
 .../Test/Block/Form/LoginWithCaptcha.xml      |   0
 .../Captcha/Test/Block/Form/Register.php      |   0
 .../Captcha/Test/Block/Form/Register.xml      |   0
 .../AssertCaptchaFieldOnBackend.php           |   0
 .../AssertCaptchaFieldOnContactUsForm.php     |   0
 .../AssertCaptchaFieldOnRegisterForm.php      |   0
 .../AssertCaptchaFieldOnStorefront.php        |   0
 .../Magento/Captcha/Test/Fixture/Comment.xml  |   0
 .../Magento/Captcha/Test/Fixture/Customer.xml |   0
 .../app/Magento/Captcha/Test/Fixture/User.xml |   0
 .../Adminhtml/AdminAuthLoginWithCaptcha.xml   |   0
 .../Captcha/Test/Page/ContactIndex.xml        |   0
 .../Test/Page/CustomerAccountCreate.xml       |   0
 .../Test/Page/CustomerAccountLogin.xml        |   0
 .../Captcha/Test/Repository/ConfigData.xml    |   0
 .../Test/TestCase/CaptchaEditCustomerTest.php |   0
 .../Test/TestCase/CaptchaEditCustomerTest.xml |   0
 .../TestCase/CaptchaLockoutCustomerTest.php   |   0
 .../TestCase/CaptchaLockoutCustomerTest.xml   |   0
 .../Test/TestCase/CaptchaOnAdminLoginTest.php |   0
 .../Test/TestCase/CaptchaOnAdminLoginTest.xml |   0
 .../Test/TestCase/CaptchaOnContactUsTest.php  |   0
 .../Test/TestCase/CaptchaOnContactUsTest.xml  |   0
 .../TestCase/CaptchaOnStoreFrontLoginTest.php |   0
 .../TestCase/CaptchaOnStoreFrontLoginTest.xml |   0
 .../CaptchaOnStoreFrontRegisterTest.php       |   0
 .../CaptchaOnStoreFrontRegisterTest.xml       |   0
 .../Test/Block/AbstractConfigureBlock.php     |   0
 .../Catalog/Test/Block/AbstractPriceBlock.php |   0
 .../Adminhtml/Category/Edit/CategoryForm.php  |   0
 .../Adminhtml/Category/Edit/CategoryForm.xml  |   0
 .../Adminhtml/Category/Edit/PageActions.php   |   0
 .../Category/Edit/Section/ProductGrid.php     |   0
 .../Category/Edit/Section/Products.php        |   0
 .../Test/Block/Adminhtml/Category/Tree.php    |   0
 .../Adminhtml/Category/Widget/Chooser.php     |   0
 .../Product/Attribute/AttributeForm.php       |   0
 .../Product/Attribute/AttributeForm.xml       |   0
 .../Product/Attribute/CustomAttribute.php     |   0
 .../Product/Attribute/Edit/AttributeForm.php  |   0
 .../Product/Attribute/Edit/AttributeForm.xml  |   0
 .../Product/Attribute/Edit/Options.php        |   0
 .../Product/Attribute/Edit/Tab/Advanced.php   |   0
 .../Product/Attribute/Edit/Tab/Options.php    |   0
 .../Attribute/Edit/Tab/Options/Option.php     |   0
 .../Attribute/Edit/Tab/Options/Option.xml     |   0
 .../Adminhtml/Product/Attribute/Grid.php      |   0
 .../Product/Attribute/Set/FormPageActions.php |   0
 .../Adminhtml/Product/Attribute/Set/Grid.php  |   0
 .../Product/Attribute/Set/GridPageActions.php |   0
 .../Adminhtml/Product/Attribute/Set/Main.php  |   0
 .../Attribute/Set/Main/AttributeSetForm.php   |   0
 .../Attribute/Set/Main/AttributeSetForm.xml   |   0
 .../Product/Attribute/Set/Main/EditForm.php   |   0
 .../Product/Attribute/Set/Main/EditForm.xml   |   0
 .../Adminhtml/Product/Composite/Configure.php |   0
 .../Adminhtml/Product/Composite/Configure.xml |   0
 .../Product/Edit/Action/FormPageActions.php   |   0
 .../Edit/Action/Tab/UpdateAttributeTab.php    |   0
 .../Edit/Action/UpdateAttributeForm.php       |   0
 .../Edit/Action/UpdateAttributeForm.xml       |   0
 .../Edit/Section/AdvancedInventory.php        |   0
 .../Product/Edit/Section/AdvancedPricing.php  |   0
 .../Section/AdvancedPricing/OptionTier.php    |   0
 .../Section/AdvancedPricing/OptionTier.xml    |   0
 .../Product/Edit/Section/Attributes.php       |   0
 .../Product/Edit/Section/Attributes/Grid.php  |   0
 .../Edit/Section/Attributes/Search.php        |   0
 .../Product/Edit/Section/BlockGallery.php     |   0
 .../Product/Edit/Section/Options.php          |   0
 .../Edit/Section/Options/AbstractOptions.php  |   0
 .../Product/Edit/Section/Options/Row.php      |   0
 .../Edit/Section/Options/Search/Grid.php      |   0
 .../Product/Edit/Section/Options/Type.php     |   0
 .../Edit/Section/Options/Type/Area.php        |   0
 .../Edit/Section/Options/Type/Area.xml        |   0
 .../Edit/Section/Options/Type/Checkbox.php    |   0
 .../Edit/Section/Options/Type/Checkbox.xml    |   0
 .../Edit/Section/Options/Type/Date.php        |   0
 .../Edit/Section/Options/Type/Date.xml        |   0
 .../Edit/Section/Options/Type/DateTime.php    |   0
 .../Edit/Section/Options/Type/DateTime.xml    |   0
 .../Edit/Section/Options/Type/DropDown.php    |   0
 .../Edit/Section/Options/Type/DropDown.xml    |   0
 .../Edit/Section/Options/Type/Field.php       |   0
 .../Edit/Section/Options/Type/Field.xml       |   0
 .../Edit/Section/Options/Type/File.php        |   0
 .../Edit/Section/Options/Type/File.xml        |   0
 .../Section/Options/Type/MultipleSelect.php   |   0
 .../Section/Options/Type/MultipleSelect.xml   |   0
 .../Section/Options/Type/RadioButtons.php     |   0
 .../Section/Options/Type/RadioButtons.xml     |   0
 .../Edit/Section/Options/Type/Time.php        |   0
 .../Edit/Section/Options/Type/Time.xml        |   0
 .../Product/Edit/Section/ProductDetails.php   |   0
 .../Section/ProductDetails/AttributeSet.php   |   0
 .../Section/ProductDetails/CategoryIds.php    |   0
 .../Section/ProductDetails/NewCategoryIds.php |   0
 .../Section/ProductDetails/NewCategoryIds.xml |   0
 .../Product/Edit/Section/Related.php          |   0
 .../Product/Edit/Section/Related/Grid.php     |   0
 .../Edit/Section/Websites/StoreTree.php       |   0
 .../Adminhtml/Product/FormPageActions.php     |   0
 .../Adminhtml/Product/GridPageAction.php      |   0
 .../Adminhtml/Product/Modal/AddAttribute.php  |   0
 .../Adminhtml/Product/Modal/NewAttribute.php  |   0
 .../Block/Adminhtml/Product/ProductForm.php   |   0
 .../Block/Adminhtml/Product/ProductForm.xml   |   0
 .../Adminhtml/Product/Widget/Chooser.php      |   0
 .../Test/Block/Category/ProductPagination.php |   0
 .../Catalog/Test/Block/Category/View.php      |   0
 .../Catalog/Test/Block/Links/CompareLink.php  |   0
 .../Catalog/Test/Block/Product/Additional.php |   0
 .../Block/Product/Compare/ListCompare.php     |   0
 .../Test/Block/Product/Compare/Sidebar.php    |   0
 .../Product/Grouped/AssociatedProducts.php    |   0
 .../ListAssociatedProducts.php                |   0
 .../ListAssociatedProducts/Product.php        |   0
 .../AssociatedProducts/Search/Grid.php        |   0
 .../Test/Block/Product/ListProduct.php        |   0
 .../Catalog/Test/Block/Product/Price.php      |   0
 .../Block/Product/ProductList/Crosssell.php   |   0
 .../Product/ProductList/PromotedSection.php   |   0
 .../Block/Product/ProductList/Related.php     |   0
 .../ProductList/Related/ProductItem.php       |   0
 .../Test/Block/Product/ProductList/Upsell.php |   0
 .../Catalog/Test/Block/Product/View.php       |   0
 .../Test/Block/Product/View/CustomOptions.php |   0
 .../Test/Block/Product/View/CustomOptions.xml |   0
 .../app/Magento/Catalog/Test/Block/Search.php |   0
 .../AssertAbsenceDeleteAttributeButton.php    |   0
 .../Constraint/AssertAddBeforeForPrice.php    |   0
 .../AssertAddToCartButtonAbsent.php           |   0
 .../AssertAddToCartButtonPresent.php          |   0
 ...sertAddedProductAttributeOnProductForm.php |   0
 ...AssertAdvancedPriceAbsentOnProductForm.php |   0
 .../Test/Constraint/AssertAttributeForm.php   |   0
 .../AssertAttributeOptionsOnProductForm.php   |   0
 .../Constraint/AssertAttributeSetForm.php     |   0
 .../AssertAttributeSetGroupOnProductForm.php  |   0
 .../Constraint/AssertAttributeSetInGrid.php   |   0
 .../AssertAttributeSetNotInGrid.php           |   0
 .../AssertAttributeSetOnProductForm.php       |   0
 ...AssertAttributeSetSuccessDeleteMessage.php |   0
 .../AssertAttributeSetSuccessSaveMessage.php  |   0
 .../Test/Constraint/AssertCanSaveProduct.php  |   0
 .../AssertCategoryAbsenceOnBackend.php        |   0
 .../AssertCategoryAbsenceOnFrontend.php       |   0
 .../Constraint/AssertCategoryBreadcrumbs.php  |   0
 .../AssertCategoryCannotBeDeleted.php         |   0
 .../AssertCategoryForAssignedProducts.php     |   0
 .../Test/Constraint/AssertCategoryForm.php    |   0
 .../AssertCategoryInNavigationMenu.php        |   0
 .../AssertCategoryIncludeInNavigationMenu.php |   0
 .../Constraint/AssertCategoryIsNotActive.php  |   0
 .../Constraint/AssertCategoryMovedMessage.php |   0
 .../AssertCategoryNavigationMenu.php          |   0
 .../AssertCategoryNotInNavigationMenu.php     |   0
 .../AssertCategoryOnCustomStore.php           |   0
 .../AssertCategoryOnCustomWebsite.php         |   0
 .../Test/Constraint/AssertCategoryPage.php    |   0
 .../Constraint/AssertCategoryRedirect.php     |   0
 .../Constraint/AssertCategorySaveMessage.php  |   0
 .../AssertCategorySuccessDeleteMessage.php    |   0
 ...ssertCategoryWithCustomStoreOnFrontend.php |   0
 .../AssertDateInvalidErrorMessage.php         |   0
 .../AssertImagesAreVisibleOnProductPage.php   |   0
 .../AssertMassProductUpdateSuccessMessage.php |   0
 .../AssertPaginationCorrectOnStoreFront.php   |   0
 .../AssertPriceOnProductPageInterface.php     |   0
 .../AssertProductAbsentCrossSells.php         |   0
 .../AssertProductAbsentRelatedProducts.php    |   0
 .../Constraint/AssertProductAbsentUpSells.php |   0
 .../AssertProductAttributeAbsenceInGrid.php   |   0
 ...tAttributeAbsenceInSearchOnProductForm.php |   0
 ...roductAttributeAbsenceInTemplateGroups.php |   0
 ...AttributeAbsenceInUnassignedAttributes.php |   0
 ...rtProductAttributeDisplayingOnFrontend.php |   0
 ...ProductAttributeDisplayingOnSearchForm.php |   0
 .../AssertProductAttributeInGrid.php          |   0
 .../AssertProductAttributeIsComparable.php    |   0
 .../AssertProductAttributeIsFilterable.php    |   0
 ...rtProductAttributeIsFilterableInSearch.php |   0
 .../AssertProductAttributeIsGlobal.php        |   0
 .../AssertProductAttributeIsHtmlAllowed.php   |   0
 .../AssertProductAttributeIsRequired.php      |   0
 .../AssertProductAttributeIsUnique.php        |   0
 ...ProductAttributeIsUsedInSortOnFrontend.php |   0
 .../AssertProductAttributeSaveMessage.php     |   0
 ...rtProductAttributeSuccessDeleteMessage.php |   0
 ...ProductAutoincrementedSkuNoticeMessage.php |   0
 .../AssertProductCompareBlockOnCmsPage.php    |   0
 .../AssertProductCompareItemsLink.php         |   0
 .../AssertProductCompareItemsLinkIsAbsent.php |   0
 .../Constraint/AssertProductComparePage.php   |   0
 ...ProductCompareRemoveLastProductMessage.php |   0
 .../AssertProductCompareSuccessAddMessage.php |   0
 ...CompareSuccessRemoveAllProductsMessage.php |   0
 ...sertProductCompareSuccessRemoveMessage.php |   0
 .../Constraint/AssertProductCrossSells.php    |   0
 .../AssertProductCustomOptionsErrors.php      |   0
 ...ssertProductCustomOptionsOnProductPage.php |   0
 .../Constraint/AssertProductDuplicateForm.php |   0
 ...ductDuplicateIsNotDisplayingOnFrontend.php |   0
 .../AssertProductDuplicateMessage.php         |   0
 .../AssertProductDuplicatedInGrid.php         |   0
 .../Test/Constraint/AssertProductForm.php     |   0
 .../AssertProductFormattingTierPrice.php      |   0
 .../AssertProductGridIsRendered.php           |   0
 .../AssertProductHasImageInGrid.php           |   0
 .../Test/Constraint/AssertProductInCart.php   |   0
 .../Constraint/AssertProductInCategory.php    |   0
 ...AssertProductInCategoryOnCustomWebsite.php |   0
 .../AssertProductInCustomStoreView.php        |   0
 .../Test/Constraint/AssertProductInGrid.php   |   0
 .../Test/Constraint/AssertProductInStock.php  |   0
 .../AssertProductInventoryMaxAllowedQty.php   |   0
 .../AssertProductInventoryMinAllowedQty.php   |   0
 .../AssertProductInventoryThreshold.php       |   0
 ...AssertProductIsNotDisplayingOnFrontend.php |   0
 ...ssertProductIsNotVisibleInCompareBlock.php |   0
 ...AssertProductIsNotVisibleInComparePage.php |   0
 ...AssertProductNameOnDifferentStoreViews.php |   0
 .../Constraint/AssertProductNotInGrid.php     |   0
 .../AssertProductNotSearchableBySku.php       |   0
 .../AssertProductNotVisibleInCategory.php     |   0
 .../AssertProductOnCustomWebsite.php          |   0
 .../Constraint/AssertProductOutOfStock.php    |   0
 .../Test/Constraint/AssertProductPage.php     |   0
 ...ssertProductPriceOnDifferentStoreViews.php |   0
 .../AssertProductRelatedProducts.php          |   0
 .../Constraint/AssertProductSaveMessage.php   |   0
 .../AssertProductSearchableBySku.php          |   0
 .../AssertProductSimpleDuplicateForm.php      |   0
 .../AssertProductSkuAutoGenerated.php         |   0
 ...AssertProductSpecialPriceOnProductPage.php |   0
 .../AssertProductSuccessDeleteMessage.php     |   0
 .../AssertProductTierPriceInCart.php          |   0
 .../AssertProductTierPriceOnProductPage.php   |   0
 ...ductTierPriceOnProductPageWithCustomer.php |   0
 .../AssertProductTypeOrderOnCreate.php        |   0
 .../Test/Constraint/AssertProductUpSells.php  |   0
 .../Test/Constraint/AssertProductView.php     |   0
 .../AssertProductVisibleInCategory.php        |   0
 .../Test/Constraint/AssertProductsInStock.php |   0
 .../Constraint/AssertProductsOutOfStock.php   |   0
 ...tProductsQtyAndStockStatusInAdminPanel.php |   0
 .../Constraint/AssertResetFilterMessage.php   |   0
 .../AssertSubCategoryNotInNavigationMenu.php  |   0
 .../AssertUpdatedProductStatusInGrid.php      |   0
 ...SuperAttributeImpossibleDeleteMessages.php |   0
 .../Catalog/Test/Fixture/Cart/Item.php        |   0
 .../Test/Fixture/CatalogAttributeSet.xml      |   0
 .../AssignedAttributes.php                    |   0
 .../CatalogAttributeSet/SkeletonSet.php       |   0
 .../Test/Fixture/CatalogProductAttribute.xml  |   0
 .../Test/Fixture/CatalogProductSimple.xml     |   0
 .../CatalogProductSimple/CustomAttribute.php  |   0
 .../Test/Fixture/CatalogProductVirtual.xml    |   0
 .../Magento/Catalog/Test/Fixture/Category.xml |   0
 .../Fixture/Category/CategoryProducts.php     |   0
 .../Test/Fixture/Category/LandingPage.php     |   0
 .../Test/Fixture/Category/ParentId.php        |   0
 .../Catalog/Test/Fixture/Category/StoreId.php |   0
 .../Test/Fixture/Product/AttributeSetId.php   |   0
 .../Test/Fixture/Product/CategoryIds.php      |   0
 .../Test/Fixture/Product/CustomOptions.php    |   0
 .../Catalog/Test/Fixture/Product/Image.php    |   0
 .../Catalog/Test/Fixture/Product/Price.php    |   0
 .../Test/Fixture/Product/RelatedProducts.php  |   0
 .../Catalog/Test/Fixture/Product/TaxClass.php |   0
 .../Test/Fixture/Product/TierPrice.php        |   0
 .../Test/Fixture/Product/WebsiteIds.php       |   0
 .../CatalogAttributeSetInterface.php          |   0
 .../Test/Handler/CatalogAttributeSet/Curl.php |   0
 .../CatalogProductAttributeInterface.php      |   0
 .../Handler/CatalogProductAttribute/Curl.php  |   0
 .../CatalogProductSimpleInterface.php         |   0
 .../Handler/CatalogProductSimple/Curl.php     |   0
 .../Test/Handler/CatalogProductSimple/Ui.php  |   0
 .../Handler/CatalogProductSimple/Webapi.php   |   0
 .../CatalogProductVirtualInterface.php        |   0
 .../Handler/CatalogProductVirtual/Curl.php    |   0
 .../Handler/CatalogProductVirtual/Webapi.php  |   0
 .../Handler/Category/CategoryInterface.php    |   0
 .../Catalog/Test/Handler/Category/Curl.php    |   0
 .../Catalog/Test/Handler/Category/Webapi.php  |   0
 .../Page/Adminhtml/CatalogCategoryEdit.xml    |   0
 .../Page/Adminhtml/CatalogCategoryIndex.xml   |   0
 .../CatalogProductActionAttributeEdit.xml     |   0
 .../CatalogProductAttributeIndex.xml          |   0
 .../Adminhtml/CatalogProductAttributeNew.xml  |   0
 .../Page/Adminhtml/CatalogProductEdit.xml     |   0
 .../Page/Adminhtml/CatalogProductIndex.xml    |   0
 .../Test/Page/Adminhtml/CatalogProductNew.xml |   0
 .../Page/Adminhtml/CatalogProductSetAdd.xml   |   0
 .../Page/Adminhtml/CatalogProductSetEdit.xml  |   0
 .../Page/Adminhtml/CatalogProductSetIndex.xml |   0
 .../Test/Page/Category/CatalogCategory.php    |   0
 .../Page/Category/CatalogCategoryEdit.php     |   0
 .../Page/Category/CatalogCategoryView.xml     |   0
 .../Magento/Catalog/Test/Page/CmsIndex.xml    |   0
 .../Page/Product/CatalogProductCompare.xml    |   0
 .../Test/Page/Product/CatalogProductView.xml  |   0
 .../Test/Repository/CatalogAttributeSet.xml   |   0
 .../Repository/CatalogProductAttribute.xml    |   0
 .../CatalogProductAttribute/Options.xml       |   0
 .../Test/Repository/CatalogProductSimple.xml  |   0
 .../CatalogProductSimple/CheckoutData.xml     |   0
 .../Repository/CatalogProductSimple/Price.xml |   0
 .../CatalogProductSimple/WebsiteData.xml      |   0
 .../Test/Repository/CatalogProductVirtual.xml |   0
 .../CatalogProductVirtual/CheckoutData.xml    |   0
 .../Catalog/Test/Repository/Category.xml      |   0
 .../Catalog/Test/Repository/ConfigData.xml    |   0
 .../Test/Repository/Product/CustomOptions.xml |   0
 .../Catalog/Test/Repository/Product/Fpt.xml   |   0
 .../Test/Repository/Product/TierPrice.xml     |   0
 .../AdvancedMoveCategoryEntityTest.php        |   0
 .../AdvancedMoveCategoryEntityTest.xml        |   0
 .../Category/CreateCategoryEntityTest.php     |   0
 .../Category/CreateCategoryEntityTest.xml     |   0
 .../Category/DeleteCategoryEntityTest.php     |   0
 .../Category/DeleteCategoryEntityTest.xml     |   0
 .../Category/MoveCategoryEntityTest.php       |   0
 .../Category/MoveCategoryEntityTest.xml       |   0
 ...categoryNotIncludeInNavigationMenuTest.php |   0
 ...categoryNotIncludeInNavigationMenuTest.xml |   0
 .../UpdateCategoryEntityFlatDataTest.php      |   0
 .../UpdateCategoryEntityFlatDataTest.xml      |   0
 .../Category/UpdateCategoryEntityTest.php     |   0
 .../Category/UpdateCategoryEntityTest.xml     |   0
 ...dateInactiveCategoryEntityFlatDataTest.php |   0
 ...dateInactiveCategoryEntityFlatDataTest.xml |   0
 .../Category/UpdateTopCategoryEntityTest.php  |   0
 .../Category/UpdateTopCategoryEntityTest.xml  |   0
 .../Test/TestCase/NavigateMenuTest.xml        |   0
 .../Product/AbstractCompareProductsTest.php   |   0
 .../AbstractProductPromotedProductsTest.php   |   0
 .../Product/AddCompareProductsTest.php        |   0
 .../Product/AddCompareProductsTest.xml        |   0
 .../Product/AddToCartCrossSellTest.php        |   0
 .../Product/AddToCartCrossSellTest.xml        |   0
 .../Product/ClearAllCompareProductsTest.php   |   0
 .../Product/ClearAllCompareProductsTest.xml   |   0
 .../Product/CreateFlatCatalogProduct.php      |   0
 .../Product/CreateFlatCatalogProduct.xml      |   0
 ...pleProductEntityByAttributeMaskSkuTest.php |   0
 ...pleProductEntityByAttributeMaskSkuTest.xml |   0
 .../CreateSimpleProductEntityPartOneTest.php  |   0
 .../CreateSimpleProductEntityPartOneTest.xml  |   0
 .../CreateSimpleProductEntityPartTwoTest.php  |   0
 .../CreateSimpleProductEntityPartTwoTest.xml  |   0
 .../Product/CreateSimpleProductEntityTest.php |   0
 .../Product/CreateSimpleProductEntityTest.xml |   0
 .../CreateVirtualProductEntityTest.php        |   0
 .../CreateVirtualProductEntityTest.xml        |   0
 .../Product/DeleteCompareProductsTest.php     |   0
 .../Product/DeleteCompareProductsTest.xml     |   0
 .../Product/DeleteProductEntityTest.php       |   0
 .../Product/DeleteProductEntityTest.xml       |   0
 .../Product/DuplicateProductEntityTest.php    |   0
 .../Product/DuplicateProductEntityTest.xml    |   0
 .../GridFilteringDeletedEntityTest.xml        |   0
 .../Product/ManageProductsStockTest.php       |   0
 .../Product/ManageProductsStockTest.xml       |   0
 .../Product/MassProductUpdateStatusTest.php   |   0
 .../Product/MassProductUpdateStatusTest.xml   |   0
 .../Product/MassProductUpdateTest.php         |   0
 .../Product/MassProductUpdateTest.xml         |   0
 .../Product/NavigateRelatedProductsTest.php   |   0
 .../Product/NavigateRelatedProductsTest.xml   |   0
 .../Product/NavigateUpSellProductsTest.php    |   0
 .../Product/NavigateUpSellProductsTest.xml    |   0
 .../ProductTypeSwitchingOnCreationTest.php    |   0
 .../ProductTypeSwitchingOnCreationTest.xml    |   0
 .../ProductTypeSwitchingOnUpdateTest.php      |   0
 .../ProductTypeSwitchingOnUpdateTest.xml      |   0
 .../ReSavingProductAfterInitialSaveTest.php   |   0
 .../ReSavingProductAfterInitialSaveTest.xml   |   0
 .../Product/UpdateSimpleProductEntityTest.php |   0
 .../Product/UpdateSimpleProductEntityTest.xml |   0
 .../UpdateVirtualProductEntityTest.php        |   0
 .../UpdateVirtualProductEntityTest.xml        |   0
 .../ValidateOrderOfProductTypeTest.php        |   0
 .../ValidateOrderOfProductTypeTest.xml        |   0
 .../CreateAttributeSetEntityTest.php          |   0
 .../CreateAttributeSetEntityTest.xml          |   0
 ...ductAttributeEntityFromProductPageTest.php |   0
 ...ductAttributeEntityFromProductPageTest.xml |   0
 .../CreateProductAttributeEntityTest.php      |   0
 .../CreateProductAttributeEntityTest.xml      |   0
 ...AssignedToTemplateProductAttributeTest.php |   0
 ...AssignedToTemplateProductAttributeTest.xml |   0
 .../DeleteAttributeSetTest.php                |   0
 .../DeleteAttributeSetTest.xml                |   0
 .../DeleteProductAttributeEntityTest.php      |   0
 .../DeleteProductAttributeEntityTest.xml      |   0
 .../DeleteSystemProductAttributeTest.php      |   0
 .../DeleteSystemProductAttributeTest.xml      |   0
 ...UsedInConfigurableProductAttributeTest.php |   0
 ...UsedInConfigurableProductAttributeTest.xml |   0
 .../UpdateAttributeSetTest.php                |   0
 .../UpdateAttributeSetTest.xml                |   0
 .../UpdateProductAttributeEntityTest.php      |   0
 .../UpdateProductAttributeEntityTest.xml      |   0
 .../AddAttributeToAttributeSetStep.php        |   0
 .../AddNewAttributeFromProductPageStep.php    |   0
 .../Test/TestStep/AddNewAttributeStep.php     |   0
 .../ConfigureProductOnProductPageStep.php     |   0
 .../Test/TestStep/CreateAttributeSetStep.php  |   0
 .../Test/TestStep/CreateProductStep.php       |   0
 .../CreateProductWithAttributeSetStep.php     |   0
 .../Test/TestStep/CreateProductsStep.php      |   0
 .../Test/TestStep/DeleteAttributeStep.php     |   0
 .../FillAttributeFormOnProductPageStep.php    |   0
 .../Test/TestStep/FillAttributeFormStep.php   |   0
 .../MergePreconditionProductsStep.php         |   0
 .../OpenProductAttributesPageStep.php         |   0
 .../TestStep/OpenProductOnBackendStep.php     |   0
 .../TestStep/OpenProductOnFrontendStep.php    |   0
 .../TestStep/OpenProductsOnFrontendStep.php   |   0
 .../SaveAttributeOnProductPageStep.php        |   0
 .../Test/TestStep/SaveAttributeSetStep.php    |   0
 .../Test/TestStep/SaveAttributeStep.php       |   0
 .../Catalog/Test/TestStep/SaveProductStep.php |   0
 .../TestStep/SetDefaultAttributeValueStep.php |   0
 .../app/Magento/Catalog/Test/_files/test1.png | Bin
 .../app/Magento/Catalog/Test/_files/test2.png | Bin
 .../app/Magento/Catalog/Test/_files/test3.png | Bin
 .../app/Magento/Catalog/Test/etc/curl/di.xml  |   0
 .../tests/app/Magento/Catalog/Test/etc/di.xml |   0
 .../app/Magento/Catalog/Test/etc/testcase.xml |   0
 .../app/Magento/Catalog/Test/etc/ui/di.xml    |   0
 .../Magento/Catalog/Test/etc/webapi/di.xml    |   0
 .../Test/Constraint/AssertExportProduct.php   |   0
 .../Constraint/AssertExportProductDate.php    |   0
 .../Constraint/AssertImportedProducts.php     |   0
 .../Test/Constraint/AssertProductsInGrid.php  |   0
 .../Constraint/AssertProductsOnStorefront.php |   0
 .../Test/TestCase/ExportProductsTest.php      |   0
 .../Test/TestCase/ExportProductsTest.xml      |   0
 .../Test/TestCase/ImportProductsTest.php      |   0
 .../Test/TestCase/ImportProductsTest.xml      |   0
 .../_files/template/products_variation_1.php  |   0
 .../_files/template/products_variation_2.php  |   0
 .../_files/template/products_variation_3.php  |   0
 .../CatalogImportExport/Test/etc/testcase.xml |   0
 .../Test/Repository/ConfigData.xml            |   0
 .../Test/Block/Adminhtml/FormPageActions.php  |   0
 .../Test/Block/Adminhtml/Promo/Catalog.php    |   0
 .../Promo/Catalog/Edit/PromoForm.php          |   0
 .../Promo/Catalog/Edit/PromoForm.xml          |   0
 .../Promo/Catalog/Edit/Section/Conditions.php |   0
 .../Catalog/Edit/Section/RuleInformation.php  |   0
 .../Block/Adminhtml/Promo/GridPageActions.php |   0
 .../CatalogRule/Test/Block/Conditions.php     |   0
 ...sertCatalogPriceRuleAppliedCatalogPage.php |   0
 ...sertCatalogPriceRuleAppliedProductPage.php |   0
 ...ertCatalogPriceRuleAppliedShoppingCart.php |   0
 .../Constraint/AssertCatalogPriceRuleForm.php |   0
 .../AssertCatalogPriceRuleInGrid.php          |   0
 ...tCatalogPriceRuleNotAppliedCatalogPage.php |   0
 ...tCatalogPriceRuleNotAppliedProductPage.php |   0
 ...CatalogPriceRuleNotAppliedShoppingCart.php |   0
 .../AssertCatalogPriceRuleNotInGrid.php       |   0
 .../AssertCatalogPriceRuleNoticeMessage.php   |   0
 ...ssertCatalogPriceRuleOnOnepageCheckout.php |   0
 ...rtCatalogPriceRuleSuccessDeleteMessage.php |   0
 ...sertCatalogPriceRuleSuccessSaveMessage.php |   0
 ...AssertProductAttributeIsUsedPromoRules.php |   0
 .../CatalogRule/Test/Fixture/CatalogRule.xml  |   0
 .../CatalogRule/CatalogRuleInterface.php      |   0
 .../Test/Handler/CatalogRule/Curl.php         |   0
 .../Test/Page/Adminhtml/CatalogRuleEdit.xml   |   0
 .../Test/Page/Adminhtml/CatalogRuleIndex.xml  |   0
 .../Test/Page/Adminhtml/CatalogRuleNew.xml    |   0
 .../Test/Repository/CatalogRule.xml           |   0
 .../AbstractCatalogRuleEntityTest.php         |   0
 .../TestCase/ApplyCatalogPriceRulesTest.php   |   0
 .../TestCase/ApplyCatalogPriceRulesTest.xml   |   0
 .../CreateCatalogPriceRuleEntityTest.php      |   0
 .../CreateCatalogPriceRuleEntityTest.xml      |   0
 .../DeleteCatalogPriceRuleEntityTest.php      |   0
 .../DeleteCatalogPriceRuleEntityTest.xml      |   0
 .../Test/TestCase/NavigateMenuTest.xml        |   0
 .../UpdateCatalogPriceRuleEntityTest.php      |   0
 .../UpdateCatalogPriceRuleEntityTest.xml      |   0
 .../Test/TestStep/CreateCatalogRuleStep.php   |   0
 .../TestStep/DeleteAllCatalogRulesStep.php    |   0
 .../Magento/CatalogRule/Test/etc/curl/di.xml  |   0
 .../app/Magento/CatalogRule/Test/etc/di.xml   |   0
 .../Magento/CatalogRule/Test/etc/ui/di.xml    |   0
 ...sertCatalogPriceRuleAppliedCatalogPage.php |   0
 ...nfigurableProductCatalogPriceRulesTest.php |   0
 ...nfigurableProductCatalogPriceRulesTest.xml |   0
 .../DeleteCatalogPriceRuleEntityTest.xml      |   0
 .../Block/Adminhtml/Edit/SearchTermForm.php   |   0
 .../Block/Adminhtml/Edit/SearchTermForm.xml   |   0
 .../Test/Block/Adminhtml/Grid.php             |   0
 .../Block/Advanced/CustomAttribute/Date.php   |   0
 .../Block/Advanced/CustomAttribute/Select.php |   0
 .../Block/Advanced/CustomAttribute/Text.php   |   0
 .../Test/Block/Advanced/Form.php              |   0
 .../Test/Block/Advanced/Form.xml              |   0
 .../Test/Block/Advanced/Result.php            |   0
 .../Block/Advanced/SearchResultsTitle.php     |   0
 .../AssertAdvancedSearchAttributeIsAbsent.php |   0
 .../AssertAdvancedSearchEmptyTerm.php         |   0
 .../AssertAdvancedSearchNoResult.php          |   0
 ...AssertAdvancedSearchProductByAttribute.php |   0
 .../AssertAdvancedSearchProductResult.php     |   0
 .../AssertAdvancedSearchProductsResult.php    |   0
 .../AssertAttributeSearchableByLabel.php      |   0
 .../AssertCatalogSearchNoResult.php           |   0
 .../AssertCatalogSearchNoResultMessage.php    |   0
 .../AssertCatalogSearchQueryLength.php        |   0
 .../Constraint/AssertCatalogSearchResult.php  |   0
 .../AssertCatalogSearchResultOrder.php        |   0
 ...ithDisabledOtpionCatalogSearchNoResult.php |   0
 ...ertProductAddedToCartFromSearchResults.php |   0
 ...sertProductCanBeOpenedFromSearchResult.php |   0
 .../Constraint/AssertSearchAttributeTest.php  |   0
 .../Test/Constraint/AssertSearchTermForm.php  |   0
 .../Constraint/AssertSearchTermInGrid.php     |   0
 ...ssertSearchTermMassActionNotOnFrontend.php |   0
 .../AssertSearchTermMassActionsNotInGrid.php  |   0
 .../Constraint/AssertSearchTermNotInGrid.php  |   0
 .../AssertSearchTermNotOnFrontend.php         |   0
 .../Constraint/AssertSearchTermOnFrontend.php |   0
 .../AssertSearchTermSuccessDeleteMessage.php  |   0
 ...sertSearchTermSuccessMassDeleteMessage.php |   0
 .../AssertSearchTermSuccessSaveMessage.php    |   0
 .../AssertSuggestSearchingResult.php          |   0
 .../Test/Fixture/CatalogSearchQuery.xml       |   0
 .../Fixture/CatalogSearchQuery/QueryText.php  |   0
 .../CatalogSearchQueryInterface.php           |   0
 .../Test/Handler/CatalogSearchQuery/Curl.php  |   0
 .../Test/Page/Adminhtml/CatalogSearchEdit.xml |   0
 .../Page/Adminhtml/CatalogSearchIndex.xml     |   0
 .../Test/Page/AdvancedResult.xml              |   0
 .../Test/Page/AdvancedSearch.xml              |   0
 .../Test/Page/CatalogsearchResult.xml         |   0
 .../Test/Repository/CatalogSearchQuery.xml    |   0
 .../TestCase/AdvancedSearchEntityTest.php     |   0
 .../TestCase/AdvancedSearchEntityTest.xml     |   0
 .../TestCase/CreateSearchTermEntityTest.php   |   0
 .../TestCase/CreateSearchTermEntityTest.xml   |   0
 .../TestCase/DeleteSearchTermEntityTest.php   |   0
 .../TestCase/DeleteSearchTermEntityTest.xml   |   0
 .../MassDeleteSearchTermEntityTest.php        |   0
 .../MassDeleteSearchTermEntityTest.xml        |   0
 .../Test/TestCase/NavigateMenuTest.xml        |   0
 .../Test/TestCase/SearchEntityResultsTest.php |   0
 .../Test/TestCase/SearchEntityResultsTest.xml |   0
 .../SuggestSearchingResultEntityTest.php      |   0
 .../SuggestSearchingResultEntityTest.xml      |   0
 .../TestCase/UpdateSearchTermEntityTest.php   |   0
 .../TestCase/UpdateSearchTermEntityTest.xml   |   0
 .../CatalogSearch/Test/etc/curl/di.xml        |   0
 .../app/Magento/CatalogSearch/Test/etc/di.xml |   0
 .../Adminhtml/Category/Edit/CategoryForm.xml  |   0
 ...AssertCategoryUrlDuplicateErrorMessage.php |   0
 .../AssertProductUrlDuplicateErrorMessage.php |   0
 .../Test/Fixture/Category.xml                 |   0
 .../CreateDuplicateUrlCategoryEntityTest.php  |   0
 .../CreateDuplicateUrlCategoryEntityTest.xml  |   0
 .../CreateDuplicateUrlProductEntity.php       |   0
 .../CreateDuplicateUrlProductEntity.xml       |   0
 .../Magento/CatalogUrlRewrite/Test/etc/di.xml |   0
 .../app/Magento/Checkout/Test/Block/Cart.php  |   0
 .../Test/Block/Cart/AbstractCartItem.php      |   0
 .../Checkout/Test/Block/Cart/CartEmpty.php    |   0
 .../Checkout/Test/Block/Cart/CartItem.php     |   0
 .../Test/Block/Cart/DiscountCodes.php         |   0
 .../Checkout/Test/Block/Cart/Pager.php        |   0
 .../Checkout/Test/Block/Cart/Shipping.php     |   0
 .../Checkout/Test/Block/Cart/Shipping.xml     |   0
 .../Checkout/Test/Block/Cart/Sidebar.php      |   0
 .../Checkout/Test/Block/Cart/Sidebar/Item.php |   0
 .../Checkout/Test/Block/Cart/Totals.php       |   0
 .../Test/Block/Onepage/AbstractReview.php     |   0
 .../Test/Block/Onepage/CustomAddress.php      |   0
 .../Checkout/Test/Block/Onepage/Link.php      |   0
 .../Checkout/Test/Block/Onepage/Login.php     |   0
 .../Checkout/Test/Block/Onepage/Login.xml     |   0
 .../Checkout/Test/Block/Onepage/Payment.php   |   0
 .../Block/Onepage/Payment/DiscountCodes.php   |   0
 .../Test/Block/Onepage/Payment/Method.php     |   0
 .../Block/Onepage/Payment/Method/Billing.php  |   0
 .../Block/Onepage/Payment/Method/Billing.xml  |   0
 .../Test/Block/Onepage/Registration.php       |   0
 .../Checkout/Test/Block/Onepage/Review.php    |   0
 .../Checkout/Test/Block/Onepage/Shipping.php  |   0
 .../Checkout/Test/Block/Onepage/Shipping.xml  |   0
 .../Block/Onepage/Shipping/AddressModal.php   |   0
 .../Block/Onepage/Shipping/AddressModal.xml   |   0
 .../Test/Block/Onepage/Shipping/Method.php    |   0
 .../Test/Block/Onepage/ShippingPopup.php      |   0
 .../Test/Block/Onepage/ShippingPopup.xml      |   0
 .../Checkout/Test/Block/Onepage/Success.php   |   0
 ...ertAddToCartButtonAbsentOnCategoryPage.php |   0
 ...sertAddToCartButtonAbsentOnProductPage.php |   0
 ...rtAddToCartButtonPresentOnCategoryPage.php |   0
 ...ertAddToCartButtonPresentOnProductPage.php |   0
 ...AssertAddedProductToCartSuccessMessage.php |   0
 .../AssertBillingAddressAbsentInPayment.php   |   0
 ...rtBillingAddressSameAsShippingCheckbox.php |   0
 ...sertCancelSuccessMessageInShoppingCart.php |   0
 .../AssertCartBundleOptionTitle.php           |   0
 .../Test/Constraint/AssertCartIsEmpty.php     |   0
 .../Constraint/AssertCartItemsOptions.php     |   0
 .../Test/Constraint/AssertCartPerCustomer.php |   0
 .../Constraint/AssertCheckoutErrorMessage.php |   0
 ...CustomerIsRedirectedToCheckoutFromCart.php |   0
 .../AssertDiscountInShoppingCart.php          |   0
 .../AssertEmailErrorValidationMessage.php     |   0
 .../Test/Constraint/AssertEmailToolTips.php   |   0
 .../AssertEstimateShippingAndTax.php          |   0
 .../AssertGrandTotalInShoppingCart.php        |   0
 .../AssertGrandTotalOrderReview.php           |   0
 .../AssertItemsCounterInMiniShoppingCart.php  |   0
 ...rtLinkGoToCartNotPresentInSummaryBlock.php |   0
 ...ssertLinkGoToCartPresentInSummaryBlock.php |   0
 .../Test/Constraint/AssertMinicartEmpty.php   |   0
 .../Constraint/AssertMinicartItemsQty.php     |   0
 .../Constraint/AssertMyCartLinkRedirect.php   |   0
 .../AssertOrderSuccessPlacedMessage.php       |   0
 .../AssertPagersNotPresentInShoppingCart.php  |   0
 .../AssertPagersPresentInShoppingCart.php     |   0
 .../Constraint/AssertPagersSummaryText.php    |   0
 ...sertPaymentMethodIsAbsentOnPaymentPage.php |   0
 .../AssertPaymentMethodPersistence.php        |   0
 .../Constraint/AssertPriceInShoppingCart.php  |   0
 .../AssertProceedToCheckoutButton.php         |   0
 .../AssertProductAbsentInMiniShoppingCart.php |   0
 .../AssertProductDataInMiniShoppingCart.php   |   0
 .../Constraint/AssertProductIsNotEditable.php |   0
 ...sertProductOptionsAbsentInShoppingCart.php |   0
 ...AssertProductPresentInMiniShoppingCart.php |   0
 .../AssertProductPresentInShoppingCart.php    |   0
 .../AssertProductQtyInShoppingCart.php        |   0
 .../AssertProductsAbsentInShoppingCart.php    |   0
 ...ingAddressJsValidationMessagesIsAbsent.php |   0
 .../AssertShippingInShoppingCart.php          |   0
 .../AssertShippingMethodAvailableInCart.php   |   0
 .../AssertShippingTotalOrderReview.php        |   0
 .../Constraint/AssertSubTotalOrderReview.php  |   0
 .../AssertSubtotalInMiniShoppingCart.php      |   0
 .../AssertSubtotalInShoppingCart.php          |   0
 .../Constraint/AssertTaxInShoppingCart.php    |   0
 .../Constraint/AssertTaxTotalOrderReview.php  |   0
 .../AssertTopDestinationsInSelect.php         |   0
 ...tVisibleItemsQtyInCheckoutSummaryBlock.php |   0
 ...ssertVisibleItemsQtyInMiniShoppingCart.php |   0
 ...sibleItemsQtyMessageInMiniShoppingCart.php |   0
 ...eItemsQtyMessageOnCheckoutSummaryBlock.php |   0
 .../Magento/Checkout/Test/Fixture/Cart.xml    |   0
 .../Checkout/Test/Fixture/Cart/Items.php      |   0
 .../Checkout/Test/Page/CheckoutCart.xml       |   0
 .../Checkout/Test/Page/CheckoutOnepage.xml    |   0
 .../Test/Page/CheckoutOnepageSuccess.xml      |   0
 .../Magento/Checkout/Test/Page/CmsIndex.xml   |   0
 .../Checkout/Test/Repository/ConfigData.xml   |   0
 .../AddProductsToShoppingCartEntityTest.php   |   0
 .../AddProductsToShoppingCartEntityTest.xml   |   0
 .../DeleteProductFromMiniShoppingCartTest.php |   0
 .../DeleteProductFromMiniShoppingCartTest.xml |   0
 .../DeleteProductsFromShoppingCartTest.php    |   0
 .../DeleteProductsFromShoppingCartTest.xml    |   0
 ...EditShippingAddressOnePageCheckoutTest.php |   0
 ...EditShippingAddressOnePageCheckoutTest.xml |   0
 .../TestCase/OnePageCheckoutDeclinedTest.php  |   0
 ...nePageCheckoutFromMiniShoppingCartTest.php |   0
 .../OnePageCheckoutJsValidationTest.php       |   0
 .../OnePageCheckoutJsValidationTest.xml       |   0
 ...ePageCheckoutOfflinePaymentMethodsTest.php |   0
 ...ePageCheckoutOfflinePaymentMethodsTest.xml |   0
 .../Test/TestCase/OnePageCheckoutTest.php     |   0
 .../Test/TestCase/OnePageCheckoutTest.xml     |   0
 .../Test/TestCase/ShoppingCartPagerTest.php   |   0
 .../Test/TestCase/ShoppingCartPagerTest.xml   |   0
 .../TestCase/ShoppingCartPerCustomerTest.php  |   0
 .../TestCase/ShoppingCartPerCustomerTest.xml  |   0
 ...eProductFromMiniShoppingCartEntityTest.php |   0
 ...eProductFromMiniShoppingCartEntityTest.xml |   0
 .../Test/TestCase/UpdateShoppingCartTest.php  |   0
 .../Test/TestCase/UpdateShoppingCartTest.xml  |   0
 .../TestCase/ValidateEmailOnCheckoutTest.php  |   0
 .../TestCase/ValidateEmailOnCheckoutTest.xml  |   0
 .../VerifyPaymentMethodOnCheckoutTest.php     |   0
 .../TestStep/AddNewShippingAddressStep.php    |   0
 .../TestStep/AddProductsToTheCartStep.php     |   0
 .../TestStep/ClickPlaceOrderButtonStep.php    |   0
 .../TestStep/ClickProceedToCheckoutStep.php   |   0
 .../TestStep/CreateCustomerAccountStep.php    |   0
 .../Test/TestStep/EditShippingAddressStep.php |   0
 .../TestStep/EstimateShippingAndTaxStep.php   |   0
 .../TestStep/FillBillingInformationStep.php   |   0
 .../Test/TestStep/FillShippingAddressStep.php |   0
 .../FillShippingMethodOnEstimateStep.php      |   0
 .../Test/TestStep/FillShippingMethodStep.php  |   0
 .../Test/TestStep/GetPlacedOrderIdStep.php    |   0
 .../Checkout/Test/TestStep/PlaceOrderStep.php |   0
 ...ceedToCheckoutFromMiniShoppingCartStep.php |   0
 .../Test/TestStep/ProceedToCheckoutStep.php   |   0
 .../Test/TestStep/RefreshPageStep.php         |   0
 .../RemoveProductsFromTheCartStep.php         |   0
 .../TestStep/SelectCheckoutMethodStep.php     |   0
 .../Test/TestStep/SelectPaymentMethodStep.php |   0
 .../app/Magento/Checkout/Test/etc/di.xml      |   0
 .../Magento/Checkout/Test/etc/testcase.xml    |   0
 .../Test/Block/Adminhtml/AgreementGrid.php    |   0
 .../Block/Agreement/Edit/AgreementsForm.php   |   0
 .../Block/Agreement/Edit/AgreementsForm.xml   |   0
 .../MultishippingAgreementReview.php          |   0
 .../Test/Block/Onepage/AgreementReview.php    |   0
 .../Constraint/AssertTermAbsentInGrid.php     |   0
 .../Constraint/AssertTermAbsentOnCheckout.php |   0
 .../Test/Constraint/AssertTermInGrid.php      |   0
 .../Test/Constraint/AssertTermOnCheckout.php  |   0
 ...mRequireMessageOnMultishippingCheckout.php |   0
 .../AssertTermSuccessDeleteMessage.php        |   0
 .../AssertTermSuccessSaveMessage.php          |   0
 .../Test/Fixture/CheckoutAgreement.xml        |   0
 .../Test/Fixture/CheckoutAgreement/Stores.php |   0
 .../CheckoutAgreementInterface.php            |   0
 .../Test/Handler/CheckoutAgreement/Curl.php   |   0
 .../Page/Adminhtml/CheckoutAgreementIndex.xml |   0
 .../Page/Adminhtml/CheckoutAgreementNew.xml   |   0
 .../Test/Page/CheckoutOnepage.xml             |   0
 .../Page/MultishippingCheckoutOverview.xml    |   0
 .../Test/Repository/CheckoutAgreement.xml     |   0
 .../Test/Repository/ConfigData.xml            |   0
 .../Test/TestCase/CreateTermEntityTest.php    |   0
 .../Test/TestCase/CreateTermEntityTest.xml    |   0
 .../Test/TestCase/DeleteTermEntityTest.php    |   0
 .../Test/TestCase/DeleteTermEntityTest.xml    |   0
 .../Test/TestCase/NavigateMenuTest.xml        |   0
 .../Test/TestCase/UpdateTermEntityTest.php    |   0
 .../Test/TestCase/UpdateTermEntityTest.xml    |   0
 .../TestStep/CheckTermOnMultishippingStep.php |   0
 .../Test/TestStep/CreateTermEntityStep.php    |   0
 .../TestStep/DeleteAllTermsEntityStep.php     |   0
 .../Test/TestStep/DeleteTermEntityStep.php    |   0
 .../Test/TestStep/SetupTermEntityStep.php     |   0
 .../Test/TestStep/UpdateTermEntityStep.php    |   0
 .../CheckoutAgreements/Test/etc/curl/di.xml   |   0
 .../CheckoutAgreements/Test/etc/di.xml        |   0
 .../CheckoutAgreements/Test/etc/testcase.xml  |   0
 .../Test/Block/Adminhtml/Block/CmsGrid.php    |   0
 .../Block/Adminhtml/Block/Edit/BlockForm.php  |   0
 .../Block/Adminhtml/Block/Edit/CmsForm.php    |   0
 .../Block/Adminhtml/Block/Edit/CmsForm.xml    |   0
 .../Block/Adminhtml/Page/Edit/PageForm.php    |   0
 .../Block/Adminhtml/Page/Edit/PageForm.xml    |   0
 .../Block/Adminhtml/Page/Edit/Tab/Content.php |   0
 .../Cms/Test/Block/Adminhtml/Page/Grid.php    |   0
 .../Block/Adminhtml/Page/Widget/Chooser.php   |   0
 .../Test/Block/Adminhtml/Wysiwyg/Config.php   |   0
 .../app/Magento/Cms/Test/Block/Messages.php   |   0
 .../tests/app/Magento/Cms/Test/Block/Page.php |   0
 ...AuthorizationLinkIsVisibleOnStoreFront.php |   0
 .../AssertCmsBlockDeleteMessage.php           |   0
 .../Test/Constraint/AssertCmsBlockInGrid.php  |   0
 .../Constraint/AssertCmsBlockNotInGrid.php    |   0
 .../AssertCmsBlockNotOnCategoryPage.php       |   0
 .../AssertCmsBlockOnCategoryPage.php          |   0
 .../AssertCmsBlockSuccessSaveMessage.php      |   0
 .../Constraint/AssertCmsPageDeleteMessage.php |   0
 .../AssertCmsPageDisabledOnFrontend.php       |   0
 .../AssertCmsPageDuplicateErrorMessage.php    |   0
 .../Cms/Test/Constraint/AssertCmsPageForm.php |   0
 .../AssertCmsPageFormSingleStoreMode.php      |   0
 .../Test/Constraint/AssertCmsPageInGrid.php   |   0
 .../Constraint/AssertCmsPageNotInGrid.php     |   0
 .../Constraint/AssertCmsPageOnFrontend.php    |   0
 .../Test/Constraint/AssertCmsPagePreview.php  |   0
 .../AssertCmsPageSuccessSaveMessage.php       |   0
 .../AssertCmsPagesDisabledOnFrontend.php      |   0
 .../Test/Constraint/AssertCmsPagesInGrid.php  |   0
 ...rtCmsPagesOnFrontendMultipleStoreViews.php |   0
 .../AssertUrlRewriteCmsPageRedirect.php       |   0
 .../app/Magento/Cms/Test/Fixture/CmsBlock.xml |   0
 .../Cms/Test/Fixture/CmsBlock/Stores.php      |   0
 .../app/Magento/Cms/Test/Fixture/CmsPage.xml  |   0
 .../Cms/Test/Fixture/CmsPage/Content.php      |   0
 .../Cms/Test/Fixture/CmsPage/StoreId.php      |   0
 .../Handler/CmsBlock/CmsBlockInterface.php    |   0
 .../Cms/Test/Handler/CmsBlock/Curl.php        |   0
 .../Test/Handler/CmsPage/CmsPageInterface.php |   0
 .../Magento/Cms/Test/Handler/CmsPage/Curl.php |   0
 .../Cms/Test/Page/Adminhtml/CmsBlockEdit.xml  |   0
 .../Cms/Test/Page/Adminhtml/CmsBlockIndex.xml |   0
 .../Cms/Test/Page/Adminhtml/CmsBlockNew.xml   |   0
 .../Cms/Test/Page/Adminhtml/CmsPageIndex.xml  |   0
 .../Cms/Test/Page/Adminhtml/CmsPageNew.xml    |   0
 .../app/Magento/Cms/Test/Page/CmsIndex.xml    |   0
 .../app/Magento/Cms/Test/Page/CmsPage.xml     |   0
 .../Magento/Cms/Test/Repository/CmsBlock.xml  |   0
 .../Magento/Cms/Test/Repository/CmsPage.xml   |   0
 .../Cms/Test/Repository/CmsPage/Content.xml   |   0
 .../Cms/Test/Repository/ConfigData.xml        |   0
 .../Cms/Test/Repository/UrlRewrite.xml        |   0
 .../TestCase/AbstractCmsBlockEntityTest.php   |   0
 .../Test/TestCase/CmsPageMassActionTest.php   |   0
 .../Test/TestCase/CmsPageMassActionTest.xml   |   0
 .../TestCase/CreateCmsBlockEntityTest.php     |   0
 .../TestCase/CreateCmsBlockEntityTest.xml     |   0
 ...ateCmsPageEntityMultipleStoreViewsTest.php |   0
 ...ateCmsPageEntityMultipleStoreViewsTest.xml |   0
 .../Test/TestCase/CreateCmsPageEntityTest.php |   0
 .../Test/TestCase/CreateCmsPageEntityTest.xml |   0
 .../CreateCmsPageRewriteEntityTest.php        |   0
 .../CreateCmsPageRewriteEntityTest.xml        |   0
 .../CreateCustomUrlRewriteEntityTest.xml      |   0
 .../CreateDuplicateUrlCmsPageEntityTest.php   |   0
 .../CreateDuplicateUrlCmsPageEntityTest.xml   |   0
 .../TestCase/DeleteCmsBlockEntityTest.php     |   0
 .../TestCase/DeleteCmsBlockEntityTest.xml     |   0
 .../Test/TestCase/DeleteCmsPageEntityTest.php |   0
 .../Test/TestCase/DeleteCmsPageEntityTest.xml |   0
 .../DeleteCmsPageUrlRewriteEntityTest.php     |   0
 .../DeleteCmsPageUrlRewriteEntityTest.xml     |   0
 .../Cms/Test/TestCase/GridFilteringTest.xml   |   0
 .../Test/TestCase/GridFullTextSearchTest.xml  |   0
 .../Cms/Test/TestCase/GridSortingTest.xml     |   0
 .../Cms/Test/TestCase/NavigateMenuTest.xml    |   0
 .../TestCase/UpdateCmsBlockEntityTest.php     |   0
 .../TestCase/UpdateCmsBlockEntityTest.xml     |   0
 .../Test/TestCase/UpdateCmsPageEntityTest.php |   0
 .../Test/TestCase/UpdateCmsPageEntityTest.xml |   0
 .../UpdateCmsPageRewriteEntityTest.php        |   0
 .../UpdateCmsPageRewriteEntityTest.xml        |   0
 .../app/Magento/Cms/Test/etc/curl/di.xml      |   0
 .../tests/app/Magento/Cms/Test/etc/di.xml     |   0
 .../Test/Block/System/Config/AdminForm.php    |   0
 .../Constraint/AssertAdminAccountSharing.php  |   0
 .../Config/Test/Fixture/ConfigData.xml        |   0
 .../Test/Fixture/ConfigData/Section.php       |   0
 .../ConfigData/ConfigDataInterface.php        |   0
 .../Config/Test/Handler/ConfigData/Curl.php   |   0
 .../Page/Adminhtml/AdminAccountSharing.xml    |   0
 .../VerifyAdminAccountSharingEntityTest.php   |   0
 .../VerifyAdminAccountSharingEntityTest.xml   |   0
 .../Test/TestStep/SetupConfigurationStep.php  |   0
 .../app/Magento/Config/Test/etc/curl/di.xml   |   0
 .../AssertImportedConfigurableProducts.php    |   0
 .../Test/Fixture/Import/File.php              |   0
 .../Test/TestCase/ExportProductsTest.xml      |   0
 .../Test/TestCase/ImportProductsTest.xml      |   0
 .../Product/AffectedAttributeSet.php          |   0
 .../Product/AffectedAttributeSet.xml          |   0
 .../Product/AssociatedProductGrid.php         |   0
 .../Adminhtml/Product/AttributesGrid.php      |   0
 .../Adminhtml/Product/Composite/Configure.php |   0
 .../Adminhtml/Product/Composite/Configure.xml |   0
 .../Edit/NewConfigurableAttributeForm.php     |   0
 .../Edit/NewConfigurableAttributeForm.xml     |   0
 .../Edit/Section/Variations/Config.php        |   0
 .../Section/Variations/Config/Attribute.php   |   0
 .../Section/Variations/Config/Attribute.xml   |   0
 .../Config/Attribute/AttributeSelector.php    |   0
 .../Config/Attribute/ToggleDropdown.php       |   0
 .../Edit/Section/Variations/Config/Matrix.php |   0
 .../Edit/Section/Variations/Config/Matrix.xml |   0
 .../Adminhtml/Product/FormPageActions.php     |   0
 .../Test/Block/Adminhtml/Product/Grid.php     |   0
 .../Block/Adminhtml/Product/ProductForm.php   |   0
 .../Block/Adminhtml/Product/ProductForm.xml   |   0
 .../Test/Block/Product/Price.php              |   0
 .../Test/Block/Product/View.php               |   0
 .../Product/View/ConfigurableOptions.php      |   0
 ...rtChildProductIsNotDisplayedSeparately.php |   0
 .../AssertChildProductsGeneratedSku.php       |   0
 .../Constraint/AssertChildProductsInGrid.php  |   0
 ...figurableAttributesAbsentOnProductPage.php |   0
 ...leAttributesBlockIsAbsentOnProductPage.php |   0
 ...ductAttributeOptionInLayeredNavigation.php |   0
 ...AssertConfigurableProductDuplicateForm.php |   0
 .../AssertConfigurableProductForm.php         |   0
 .../AssertConfigurableProductImages.php       |   0
 .../AssertConfigurableProductInCart.php       |   0
 .../AssertConfigurableProductInCategory.php   |   0
 ...ProductInCustomerWishlistOnBackendGrid.php |   0
 ...ssertConfigurableProductOutOfStockPage.php |   0
 .../AssertConfigurableProductPage.php         |   0
 ...ertConfigurableProductsQtyAfterReorder.php |   0
 ...AssertCurrencyRateAppliedOnProductPage.php |   0
 ...tOutOfStockOptionIsAbsentOnProductPage.php |   0
 ...ductAttributeAbsenceInVariationsSearch.php |   0
 .../AssertProductAttributeIsConfigurable.php  |   0
 ...sertProductQtyDecreasedAfterCreditmemo.php |   0
 .../AssertProductTierPriceOnProductPage.php   |   0
 .../Test/Fixture/Cart/Item.php                |   0
 .../Test/Fixture/ConfigurableProduct.xml      |   0
 .../ConfigurableAttributesData.php            |   0
 .../ConfigurableProductInterface.php          |   0
 .../Test/Handler/ConfigurableProduct/Curl.php |   0
 .../Handler/ConfigurableProduct/Webapi.php    |   0
 .../Page/Adminhtml/CatalogProductEdit.xml     |   0
 .../Test/Page/Adminhtml/CatalogProductNew.xml |   0
 .../Test/Page/Adminhtml/CustomerIndexEdit.xml |   0
 .../Test/Page/Adminhtml/OrderCreateIndex.xml  |   0
 .../Test/Page/Product/CatalogProductView.xml  |   0
 .../Test/Repository/ConfigData.xml            |   0
 .../Test/Repository/ConfigurableProduct.xml   |   0
 .../ConfigurableProduct/CheckoutData.xml      |   0
 .../ConfigurableAttributesData.xml            |   0
 .../Repository/ConfigurableProduct/Price.xml  |   0
 .../CreateConfigurableProductEntityTest.php   |   0
 .../CreateConfigurableProductEntityTest.xml   |   0
 .../TestCase/CreateCreditMemoEntityTest.xml   |   0
 .../Test/TestCase/CreateCurrencyRateTest.xml  |   0
 .../DeleteChildConfigurableProductTest.php    |   0
 .../DeleteChildConfigurableProductTest.xml    |   0
 .../Test/TestCase/DeleteProductEntityTest.xml |   0
 .../DeleteProductFromMiniShoppingCartTest.xml |   0
 .../TestCase/DuplicateProductEntityTest.xml   |   0
 .../Test/TestCase/MassProductUpdateTest.xml   |   0
 ...ecentlyComparedProductsOnOrderPageTest.xml |   0
 .../Test/TestCase/TaxCalculationTest.xml      |   0
 .../UpdateConfigurableProductEntityTest.php   |   0
 .../UpdateConfigurableProductEntityTest.xml   |   0
 .../ValidateOrderOfProductTypeTest.xml        |   0
 ...rifyConfigurableProductEntityPriceTest.php |   0
 ...rifyConfigurableProductEntityPriceTest.xml |   0
 ...nfigurableProductLayeredNavigationTest.php |   0
 ...nfigurableProductLayeredNavigationTest.xml |   0
 .../Test/TestStep/UpdateChildProductStep.php  |   0
 .../UpdateConfigurableProductStep.php         |   0
 .../ConfigurableProduct/Test/etc/curl/di.xml  |   0
 .../ConfigurableProduct/Test/etc/di.xml       |   0
 .../ConfigurableProduct/Test/etc/testcase.xml |   0
 .../Test/etc/webapi/di.xml                    |   0
 .../Contact/Test/Block/Form/ContactUs.php     |   0
 .../Contact/Test/Block/Form/ContactUs.xml     |   0
 .../Magento/Contact/Test/Block/Messages.php   |   0
 .../AssertContactUsSuccessMessage.php         |   0
 .../Magento/Contact/Test/Fixture/Comment.xml  |   0
 .../Contact/Test/Fixture/Comment/Customer.php |   0
 .../Contact/Test/Page/ContactIndex.xml        |   0
 .../System/Currency/Rate/CurrencyRateForm.php |   0
 .../System/Currency/Rate/CurrencyRateForm.xml |   0
 .../System/Currency/Rate/FormPageActions.php  |   0
 .../Adminhtml/System/CurrencySymbolForm.php   |   0
 .../Adminhtml/System/CurrencySymbolForm.xml   |   0
 .../Adminhtml/System/FormPageActions.php      |   0
 .../AssertCurrencySymbolOnCatalogPage.php     |   0
 .../AssertCurrencySymbolOnProductPage.php     |   0
 ...rrencySymbolOnProductPageCustomWebsite.php |   0
 ...CurrencySymbolOnProductPageMainWebsite.php |   0
 ...AssertCurrencySymbolSuccessSaveMessage.php |   0
 .../Test/Fixture/CurrencySymbolEntity.xml     |   0
 .../Handler/CurrencySymbolEntity/Curl.php     |   0
 .../CurrencySymbolEntityInterface.php         |   0
 .../Page/Adminhtml/ConfigCurrencySetUp.xml    |   0
 .../Page/Adminhtml/SystemCurrencyIndex.xml    |   0
 .../Adminhtml/SystemCurrencySymbolIndex.xml   |   0
 .../Test/Repository/ConfigData.xml            |   0
 .../Test/Repository/CurrencySymbolEntity.xml  |   0
 .../AbstractCurrencySymbolEntityTest.php      |   0
 .../EditCurrencyCustomWebsiteTest.php         |   0
 .../EditCurrencyCustomWebsiteTest.xml         |   0
 .../TestCase/EditCurrencySymbolEntityTest.php |   0
 .../TestCase/EditCurrencySymbolEntityTest.xml |   0
 .../Test/TestCase/NavigateMenuTest.xml        |   0
 .../ResetCurrencySymbolEntityTest.php         |   0
 .../ResetCurrencySymbolEntityTest.xml         |   0
 .../CurrencySymbol/Test/etc/curl/di.xml       |   0
 .../Block/Account/AddressesAdditional.php     |   0
 .../Test/Block/Account/AddressesDefault.php   |   0
 .../Block/Account/AuthenticationPopup.php     |   0
 .../Block/Account/AuthenticationPopup.xml     |   0
 .../Block/Account/AuthenticationWrapper.php   |   0
 .../Block/Account/AuthenticationWrapper.xml   |   0
 .../Test/Block/Account/Dashboard/Address.php  |   0
 .../Test/Block/Account/Dashboard/Info.php     |   0
 .../Customer/Test/Block/Account/Links.php     |   0
 .../Customer/Test/Block/Address/Edit.php      |   0
 .../Customer/Test/Block/Address/Edit.xml      |   0
 .../Customer/Test/Block/Address/Renderer.php  |   0
 .../Test/Block/Adminhtml/CustomerGrid.php     |   0
 .../Block/Adminhtml/Edit/CustomerForm.php     |   0
 .../Block/Adminhtml/Edit/CustomerForm.xml     |   0
 .../Block/Adminhtml/Edit/FormPageActions.php  |   0
 .../Block/Adminhtml/Edit/Tab/Addresses.php    |   0
 .../Block/Adminhtml/Edit/Tab/Addresses.xml    |   0
 .../Adminhtml/Group/CustomerGroupGrid.php     |   0
 .../Test/Block/Adminhtml/Group/Edit/Form.php  |   0
 .../Test/Block/Adminhtml/Group/Edit/Form.xml  |   0
 .../Customer/Test/Block/Form/CustomerForm.php |   0
 .../Customer/Test/Block/Form/CustomerForm.xml |   0
 .../Test/Block/Form/ForgotPassword.php        |   0
 .../Test/Block/Form/ForgotPassword.xml        |   0
 .../Customer/Test/Block/Form/Login.php        |   0
 .../Customer/Test/Block/Form/Login.xml        |   0
 .../Customer/Test/Block/Form/Register.php     |   0
 .../Customer/Test/Block/Form/Register.xml     |   0
 ...AssertAdditionalAddressCreatedFrontend.php |   0
 ...AssertAdditionalAddressDeletedFrontend.php |   0
 .../AssertAddressDeletedBackend.php           |   0
 .../AssertAddressDeletedFrontend.php          |   0
 .../AssertChangePasswordFailMessage.php       |   0
 .../AssertChangingWebsiteChangeCountries.php  |   0
 ...ssertCustomerAddressSuccessSaveMessage.php |   0
 .../AssertCustomerBackendBackButton.php       |   0
 ...rtCustomerBackendDuplicateErrorMessage.php |   0
 .../AssertCustomerBackendFormTitle.php        |   0
 .../AssertCustomerBackendRequiredFields.php   |   0
 ...tomerDefaultAddressFrontendAddressBook.php |   0
 .../AssertCustomerDefaultAddresses.php        |   0
 ...ertCustomerDoesNotHaveDefaultAddresses.php |   0
 .../AssertCustomerFailRegisterMessage.php     |   0
 ...rtCustomerForgotPasswordSuccessMessage.php |   0
 .../Test/Constraint/AssertCustomerForm.php    |   0
 .../AssertCustomerGroupAlreadyExists.php      |   0
 ...merGroupChangedToDefaultOnCustomerForm.php |   0
 .../AssertCustomerGroupFieldsDisabled.php     |   0
 .../Constraint/AssertCustomerGroupForm.php    |   0
 .../Constraint/AssertCustomerGroupInGrid.php  |   0
 .../AssertCustomerGroupNotInGrid.php          |   0
 ...ertCustomerGroupNotOnCartPriceRuleForm.php |   0
 ...CustomerGroupNotOnCatalogPriceRuleForm.php |   0
 .../AssertCustomerGroupNotOnProductForm.php   |   0
 ...AssertCustomerGroupOnCartPriceRuleForm.php |   0
 ...ertCustomerGroupOnCatalogPriceRuleForm.php |   0
 .../AssertCustomerGroupOnCustomerForm.php     |   0
 .../AssertCustomerGroupOnProductForm.php      |   0
 ...ssertCustomerGroupSuccessDeleteMessage.php |   0
 .../AssertCustomerGroupSuccessSaveMessage.php |   0
 .../Test/Constraint/AssertCustomerInGrid.php  |   0
 .../AssertCustomerInfoSuccessSavedMessage.php |   0
 .../Constraint/AssertCustomerInvalidEmail.php |   0
 .../AssertCustomerIsLockedOnBackend.php       |   0
 .../Test/Constraint/AssertCustomerLogin.php   |   0
 .../AssertCustomerLoginErrorMessage.php       |   0
 .../Test/Constraint/AssertCustomerLogout.php  |   0
 .../AssertCustomerMassDeleteInGrid.php        |   0
 .../AssertCustomerMassDeleteNotInGrid.php     |   0
 ...AssertCustomerMassDeleteSuccessMessage.php |   0
 .../Constraint/AssertCustomerNameFrontend.php |   0
 .../Constraint/AssertCustomerNotInGrid.php    |   0
 ...sswordAutocompleteOnAuthorizationPopup.php |   0
 ...rtCustomerPasswordAutocompleteOnSignIn.php |   0
 .../AssertCustomerPasswordChanged.php         |   0
 .../AssertCustomerRedirectToDashboard.php     |   0
 .../AssertCustomerSuccessDeleteMessage.php    |   0
 .../AssertCustomerSuccessRegisterMessage.php  |   0
 .../AssertCustomerSuccessSaveMessage.php      |   0
 .../AssertMassActionSuccessUpdateMessage.php  |   0
 .../AssertNoDeleteForSystemCustomerGroup.php  |   0
 .../AssertWrongPassConfirmationMessage.php    |   0
 .../Magento/Customer/Test/Fixture/Address.xml |   0
 .../Customer/Test/Fixture/Customer.xml        |   0
 .../Test/Fixture/Customer/Address.php         |   0
 .../Test/Fixture/Customer/GroupId.php         |   0
 .../Test/Fixture/Customer/WebsiteId.php       |   0
 .../Customer/Test/Fixture/CustomerGroup.xml   |   0
 .../Fixture/CustomerGroup/TaxClassIds.php     |   0
 .../Customer/Test/Handler/Customer/Curl.php   |   0
 .../Handler/Customer/CustomerInterface.php    |   0
 .../Customer/Test/Handler/Customer/Webapi.php |   0
 .../Test/Handler/CustomerGroup/Curl.php       |   0
 .../CustomerGroup/CustomerGroupInterface.php  |   0
 .../Test/Page/Address/DefaultAddress.php      |   0
 .../Test/Page/Adminhtml/CheckoutIndex.xml     |   0
 .../Test/Page/Adminhtml/CustomerGroupEdit.xml |   0
 .../Page/Adminhtml/CustomerGroupIndex.xml     |   0
 .../Test/Page/Adminhtml/CustomerGroupNew.xml  |   0
 .../Test/Page/Adminhtml/CustomerIndex.xml     |   0
 .../Test/Page/Adminhtml/CustomerIndexEdit.xml |   0
 .../Test/Page/Adminhtml/CustomerIndexNew.xml  |   0
 .../Test/Page/CustomerAccountAddress.xml      |   0
 .../Test/Page/CustomerAccountCreate.xml       |   0
 .../Test/Page/CustomerAccountEdit.xml         |   0
 .../Page/CustomerAccountForgotPassword.xml    |   0
 .../Test/Page/CustomerAccountIndex.xml        |   0
 .../Test/Page/CustomerAccountLogin.xml        |   0
 .../Test/Page/CustomerAccountLogout.php       |   0
 .../Test/Page/CustomerAddressEdit.xml         |   0
 .../Customer/Test/Repository/Address.php      |   0
 .../Customer/Test/Repository/Address.xml      |   0
 .../Customer/Test/Repository/ConfigData.xml   |   0
 .../Customer/Test/Repository/Customer.xml     |   0
 .../Test/Repository/CustomerGroup.xml         |   0
 .../Test/TestCase/AbstractApplyVatIdTest.php  |   0
 .../Customer/Test/TestCase/ApplyVatIdTest.php |   0
 .../Customer/Test/TestCase/ApplyVatIdTest.xml |   0
 .../TestCase/ChangeCustomerPasswordTest.php   |   0
 .../TestCase/ChangeCustomerPasswordTest.xml   |   0
 .../CreateCustomerBackendEntityTest.php       |   0
 .../CreateCustomerBackendEntityTest.xml       |   0
 .../CreateCustomerGroupEntityTest.php         |   0
 .../CreateCustomerGroupEntityTest.xml         |   0
 .../CreateExistingCustomerBackendEntity.php   |   0
 .../CreateExistingCustomerBackendEntity.xml   |   0
 .../CreateExistingCustomerFrontendEntity.php  |   0
 .../CreateExistingCustomerFrontendEntity.xml  |   0
 .../TestCase/DeleteCustomerAddressTest.php    |   0
 .../TestCase/DeleteCustomerAddressTest.xml    |   0
 .../DeleteCustomerBackendEntityTest.php       |   0
 .../DeleteCustomerBackendEntityTest.xml       |   0
 .../DeleteCustomerGroupEntityTest.php         |   0
 .../DeleteCustomerGroupEntityTest.xml         |   0
 .../DeleteSystemCustomerGroupTest.php         |   0
 .../DeleteSystemCustomerGroupTest.xml         |   0
 .../TestCase/ForgotPasswordOnFrontendTest.php |   0
 .../TestCase/ForgotPasswordOnFrontendTest.xml |   0
 .../Test/TestCase/GridFilteringTest.xml       |   0
 .../Test/TestCase/GridFullTextSearchTest.xml  |   0
 .../Test/TestCase/GridSortingTest.xml         |   0
 .../Test/TestCase/LoginOnFrontendFailTest.php |   0
 .../Test/TestCase/LoginOnFrontendFailTest.xml |   0
 .../TestCase/MassAssignCustomerGroupTest.php  |   0
 .../TestCase/MassAssignCustomerGroupTest.xml  |   0
 .../MassDeleteCustomerBackendEntityTest.php   |   0
 .../MassDeleteCustomerBackendEntityTest.xml   |   0
 .../Test/TestCase/NavigateMenuTest.xml        |   0
 .../TestCase/PasswordAutocompleteOffTest.php  |   0
 .../TestCase/PasswordAutocompleteOffTest.xml  |   0
 .../RegisterCustomerFrontendEntityTest.php    |   0
 .../RegisterCustomerFrontendEntityTest.xml    |   0
 .../UpdateCustomerBackendEntityTest.php       |   0
 .../UpdateCustomerBackendEntityTest.xml       |   0
 .../UpdateCustomerFrontendEntityTest.php      |   0
 .../UpdateCustomerFrontendEntityTest.xml      |   0
 .../UpdateCustomerGroupEntityTest.php         |   0
 .../UpdateCustomerGroupEntityTest.xml         |   0
 .../VerifyDisabledCustomerGroupFieldTest.php  |   0
 .../VerifyDisabledCustomerGroupFieldTest.xml  |   0
 .../Test/TestStep/CreateCustomerStep.php      |   0
 .../CreateOrderFromCustomerAccountStep.php    |   0
 .../Test/TestStep/DeleteCustomerStep.php      |   0
 .../TestStep/LoginCustomerOnFrontendStep.php  |   0
 .../TestStep/LogoutCustomerOnFrontendStep.php |   0
 .../TestStep/OpenCustomerOnBackendStep.php    |   0
 .../app/Magento/Customer/Test/etc/curl/di.xml |   0
 .../app/Magento/Customer/Test/etc/di.xml      |   0
 .../Magento/Customer/Test/etc/testcase.xml    |   0
 .../Magento/Customer/Test/etc/webapi/di.xml   |   0
 .../AssertExportCustomerAddresses.php         |   0
 .../AssertImportCustomerAddresses.php         |   0
 .../Test/Repository/ExportData.xml            |   0
 .../TestCase/ExportCustomerAddressesTest.php  |   0
 .../TestCase/ExportCustomerAddressesTest.xml  |   0
 .../TestCase/ImportCustomerAddressTest.php    |   0
 .../TestCase/ImportCustomerAddressTest.xml    |   0
 .../TestStep/FillCustomImportFormStep.php     |   0
 .../customer_addresses_variation_1.php        |   0
 .../customer_addresses_variation_2.php        |   0
 .../CustomerImportExport/Test/etc/di.xml      |   0
 .../Test/etc/testcase.xml                     |   0
 .../Dhl/Test/Repository/ConfigData.xml        |   0
 .../TestCase/CityBasedShippingRateTest.xml    |   0
 .../Dhl/Test/TestCase/OnePageCheckoutTest.xml |   0
 .../Test/Block/Currency/Switcher.php          |   0
 ...AssertCurrencyRateAppliedOnCatalogPage.php |   0
 ...AssertCurrencyRateAppliedOnProductPage.php |   0
 .../AssertCurrencyRateSuccessSaveMessage.php  |   0
 .../AssertShippingPriceWithCustomCurrency.php |   0
 .../Directory/Test/Fixture/CurrencyRate.xml   |   0
 .../Test/Handler/CurrencyRate/Curl.php        |   0
 .../CurrencyRate/CurrencyRateInterface.php    |   0
 .../Directory/Test/Repository/ConfigData.xml  |   0
 .../Test/Repository/CurrencyRate.xml          |   0
 .../Test/TestCase/CreateCurrencyRateTest.php  |   0
 .../Test/TestCase/CreateCurrencyRateTest.xml  |   0
 .../Magento/Directory/Test/etc/curl/di.xml    |   0
 .../app/Magento/Directory/Test/etc/di.xml     |   0
 .../Product/Edit/Section/Downloadable.php     |   0
 .../Edit/Section/Downloadable/LinkRow.php     |   0
 .../Edit/Section/Downloadable/LinkRow.xml     |   0
 .../Edit/Section/Downloadable/Links.php       |   0
 .../Edit/Section/Downloadable/Links.xml       |   0
 .../Edit/Section/Downloadable/SampleRow.php   |   0
 .../Edit/Section/Downloadable/SampleRow.xml   |   0
 .../Edit/Section/Downloadable/Samples.php     |   0
 .../Edit/Section/Downloadable/Samples.xml     |   0
 .../Adminhtml/Product/Composite/Configure.php |   0
 .../Adminhtml/Product/Composite/Configure.xml |   0
 .../Block/Adminhtml/Product/ProductForm.xml   |   0
 .../Test/Block/Catalog/Product/View.php       |   0
 .../Test/Block/Catalog/Product/View/Links.php |   0
 .../Block/Catalog/Product/View/Samples.php    |   0
 .../Block/Customer/Products/ListProducts.php  |   0
 ...axCalculationAfterCheckoutDownloadable.php |   0
 ...axRuleIsAppliedToAllPricesDownloadable.php |   0
 .../AssertDownloadableDuplicateForm.php       |   0
 .../AssertDownloadableLinksData.php           |   0
 .../AssertDownloadableProductForm.php         |   0
 ...ProductInCustomerWishlistOnBackendGrid.php |   0
 .../AssertDownloadableSamplesData.php         |   0
 ...ckoutDownloadableExcludingIncludingTax.php |   0
 ...nAfterCheckoutDownloadableExcludingTax.php |   0
 ...nAfterCheckoutDownloadableIncludingTax.php |   0
 ...ricesDownloadableExcludingIncludingTax.php |   0
 ...iedToAllPricesDownloadableExcludingTax.php |   0
 ...iedToAllPricesDownloadableIncludingTax.php |   0
 .../Downloadable/Test/Fixture/Cart/Item.php   |   0
 .../Test/Fixture/DownloadableProduct.xml      |   0
 .../Test/Handler/DownloadableProduct/Curl.php |   0
 .../DownloadableProductInterface.php          |   0
 .../Handler/DownloadableProduct/Webapi.php    |   0
 .../Test/Page/Adminhtml/CustomerIndexEdit.xml |   0
 .../Test/Page/Adminhtml/OrderCreateIndex.xml  |   0
 .../Page/DownloadableCustomerProducts.xml     |   0
 .../Test/Page/Product/CatalogProductView.xml  |   0
 .../Test/Repository/DownloadableProduct.xml   |   0
 .../DownloadableProduct/CheckoutData.xml      |   0
 .../Repository/DownloadableProduct/Links.xml  |   0
 .../DownloadableProduct/Samples.xml           |   0
 .../CreateDownloadableProductEntityTest.php   |   0
 .../CreateDownloadableProductEntityTest.xml   |   0
 .../Test/TestCase/DeleteProductEntityTest.xml |   0
 .../DeleteProductFromMiniShoppingCartTest.xml |   0
 .../TestCase/DuplicateProductEntityTest.xml   |   0
 .../Test/TestCase/TaxCalculationTest.xml      |   0
 .../UpdateDownloadableProductEntityTest.php   |   0
 .../UpdateDownloadableProductEntityTest.xml   |   0
 .../ValidateOrderOfProductTypeTest.xml        |   0
 .../Magento/Downloadable/Test/etc/curl/di.xml |   0
 .../app/Magento/Downloadable/Test/etc/di.xml  |   0
 .../Downloadable/Test/etc/webapi/di.xml       |   0
 .../Adminhtml/Template/Edit/TemplateForm.php  |   0
 .../Adminhtml/Template/Edit/TemplateForm.xml  |   0
 .../AssertEmailTemplateSuccessSaveMessage.php |   0
 .../Email/Test/Fixture/EmailTemplate.xml      |   0
 .../Page/Adminhtml/EmailTemplateIndex.xml     |   0
 .../Test/Page/Adminhtml/EmailTemplateNew.xml  |   0
 .../CreateEmailTemplateEntityTest.php         |   0
 .../CreateEmailTemplateEntityTest.xml         |   0
 .../Email/Test/TestCase/NavigateMenuTest.xml  |   0
 .../Fedex/Test/Repository/ConfigData.xml      |   0
 .../TestCase/CityBasedShippingRateTest.xml    |   0
 .../Test/TestCase/OnePageCheckoutTest.xml     |   0
 .../TrackingShipmentForPlacedOrderTest.xml    |   0
 .../Test/Block/Adminhtml/Order/Create.php     |   0
 .../Block/Adminhtml/Order/Create/Form.php     |   0
 .../Block/Adminhtml/Order/Create/Form.xml     |   0
 .../Adminhtml/Order/Create/GiftOptions.php    |   0
 .../Adminhtml/Order/Create/GiftOptions.xml    |   0
 .../Block/Adminhtml/Order/Create/Items.php    |   0
 .../Order/Create/Items/ItemProduct.php        |   0
 .../Test/Block/Adminhtml/Order/View/Form.php  |   0
 .../Test/Block/Adminhtml/Order/View/Form.xml  |   0
 .../Adminhtml/Order/View/GiftOptions.php      |   0
 .../Adminhtml/Order/View/GiftOptions.xml      |   0
 .../Test/Block/Adminhtml/Order/View/Items.php |   0
 .../Order/View/Items/ItemProduct.php          |   0
 .../Test/Block/Cart/GiftOptions.php           |   0
 .../Cart/GiftOptions/GiftMessageForm.php      |   0
 .../Cart/GiftOptions/GiftMessageForm.xml      |   0
 .../Test/Block/Cart/Item/GiftOptions.php      |   0
 .../Test/Block/Cart/Item/GiftOptions.xml      |   0
 .../Test/Block/Message/Order/Items/View.php   |   0
 .../Test/Block/Message/Order/View.php         |   0
 .../AssertGiftMessageInBackendOrder.php       |   0
 .../AssertGiftMessageInFrontendOrder.php      |   0
 .../AssertGiftMessageInFrontendOrderItems.php |   0
 .../GiftMessage/Test/Fixture/GiftMessage.xml  |   0
 .../Test/Fixture/GiftMessage/Items.php        |   0
 .../Test/Page/Adminhtml/OrderCreateIndex.xml  |   0
 .../Test/Page/Adminhtml/OrderView.xml         |   0
 .../GiftMessage/Test/Page/CheckoutCart.xml    |   0
 .../Test/Page/CustomerOrderView.xml           |   0
 .../Test/Repository/ConfigData.xml            |   0
 .../Test/Repository/GiftMessage.xml           |   0
 .../TestCase/CheckoutWithGiftMessagesTest.php |   0
 .../TestCase/CheckoutWithGiftMessagesTest.xml |   0
 .../CreateGiftMessageOnBackendTest.php        |   0
 .../CreateGiftMessageOnBackendTest.xml        |   0
 .../TestStep/AddGiftMessageBackendStep.php    |   0
 .../Test/TestStep/AddGiftMessageStep.php      |   0
 .../app/Magento/GiftMessage/Test/etc/di.xml   |   0
 .../Magento/GiftMessage/Test/etc/testcase.xml |   0
 .../AssertImportedGroupedProducts.php         |   0
 .../Test/Fixture/Import/File.php              |   0
 .../Test/TestCase/ExportProductsTest.xml      |   0
 .../Test/TestCase/ImportProductsTest.xml      |   0
 .../Adminhtml/Product/Composite/Configure.php |   0
 .../Adminhtml/Product/Composite/Configure.xml |   0
 .../Product/Grouped/AssociatedProducts.php    |   0
 .../ListAssociatedProducts.php                |   0
 .../ListAssociatedProducts/Product.php        |   0
 .../ListAssociatedProducts/Product.xml        |   0
 .../AssociatedProducts/Search/Grid.php        |   0
 .../Block/Adminhtml/Product/ProductForm.xml   |   0
 .../Test/Block/Cart/Sidebar.php               |   0
 .../Test/Block/Cart/Sidebar/Item.php          |   0
 .../Test/Block/Catalog/Product/View.php       |   0
 .../Catalog/Product/View/Type/Grouped.php     |   0
 .../Test/Block/Checkout/Cart.php              |   0
 .../Test/Block/Checkout/Cart/CartItem.php     |   0
 ...bstractAssertPriceOnGroupedProductPage.php |   0
 ...AppliedToAllPricesOnGroupedProductPage.php |   0
 .../Constraint/AssertGroupedProductForm.php   |   0
 ...ProductInCustomerWishlistOnBackendGrid.php |   0
 ...AssertGroupedProductInItemsOrderedGrid.php |   0
 .../AssertGroupedProductsDefaultQty.php       |   0
 .../AssertProductInItemsOrderedGrid.php       |   0
 ...AssertSpecialPriceOnGroupedProductPage.php |   0
 ...oAllPricesGroupedExcludingIncludingTax.php |   0
 .../AssertTierPriceOnGroupedProductPage.php   |   0
 .../GroupedProduct/Test/Fixture/Cart/Item.php |   0
 .../Test/Fixture/GroupedProduct.xml           |   0
 .../Fixture/GroupedProduct/Associated.php     |   0
 .../Test/Handler/GroupedProduct/Curl.php      |   0
 .../GroupedProductInterface.php               |   0
 .../Test/Handler/GroupedProduct/Webapi.php    |   0
 .../Test/Page/Adminhtml/CustomerIndexEdit.xml |   0
 .../Test/Page/Adminhtml/OrderCreateIndex.xml  |   0
 .../GroupedProduct/Test/Page/CheckoutCart.xml |   0
 .../GroupedProduct/Test/Page/CmsIndex.xml     |   0
 .../Test/Page/Product/CatalogProductView.xml  |   0
 .../Test/Repository/GroupedProduct.xml        |   0
 .../Repository/GroupedProduct/Associated.xml  |   0
 .../GroupedProduct/CheckoutData.xml           |   0
 .../Test/Repository/GroupedProduct/Price.xml  |   0
 .../CreateGroupedProductEntityTest.php        |   0
 .../CreateGroupedProductEntityTest.xml        |   0
 .../Test/TestCase/DeleteProductEntityTest.xml |   0
 .../DeleteProductFromMiniShoppingCartTest.xml |   0
 ...ecentlyComparedProductsOnOrderPageTest.xml |   0
 .../Test/TestCase/TaxCalculationTest.xml      |   0
 .../UpdateGroupedProductEntityTest.php        |   0
 .../UpdateGroupedProductEntityTest.xml        |   0
 .../ValidateOrderOfProductTypeTest.xml        |   0
 .../GroupedProduct/Test/etc/curl/di.xml       |   0
 .../Magento/GroupedProduct/Test/etc/di.xml    |   0
 .../GroupedProduct/Test/etc/webapi/di.xml     |   0
 .../Mtf/Util/Import/File/CsvTemplate.php      |   0
 .../Test/Block/Adminhtml/Export/Edit/Form.php |   0
 .../Test/Block/Adminhtml/Export/Edit/Form.xml |   0
 .../Test/Block/Adminhtml/Export/Filter.php    |   0
 .../Adminhtml/Import/Edit/CustomForm.php      |   0
 .../Adminhtml/Import/Edit/CustomForm.xml      |   0
 .../Test/Block/Adminhtml/Import/Edit/Form.php |   0
 .../Test/Block/Adminhtml/Import/Edit/Form.xml |   0
 .../Adminhtml/Import/FormPageActions.php      |   0
 .../Block/Adminhtml/Import/Frame/Result.php   |   0
 .../Test/Block/Adminhtml/Import/Messages.php  |   0
 .../AssertExportNoDataErrorMessage.php        |   0
 .../Test/Constraint/AssertImportCheckData.php |   0
 .../AssertImportCheckDataErrorMessage.php     |   0
 ...AssertImportCheckDataErrorMessagesList.php |   0
 .../Constraint/AssertImportSuccessMessage.php |   0
 ...AssertProductAttributeAbsenceForExport.php |   0
 .../ImportExport/Test/Fixture/ExportData.xml  |   0
 .../Test/Fixture/ExportData/DataExport.php    |   0
 .../ImportExport/Test/Fixture/Import/File.php |   0
 .../ImportExport/Test/Fixture/ImportData.xml  |   0
 .../Test/Page/Adminhtml/AdminExportIndex.xml  |   0
 .../Test/Page/Adminhtml/AdminImportIndex.xml  |   0
 .../Test/Repository/ExportData.xml            |   0
 .../Test/TestCase/ImportDataNegativeTest.php  |   0
 .../Test/TestCase/ImportDataTest.php          |   0
 .../Test/TestCase/NavigateMenuTest.xml        |   0
 .../ChangeCurrencyOnCustomWebsiteStep.php     |   0
 .../Test/TestStep/CheckResultMessageStep.php  |   0
 .../Test/TestStep/ClickCheckDataStep.php      |   0
 .../Test/TestStep/ClickImportDataStep.php     |   0
 .../Test/TestStep/FillImportFormStep.php      |   0
 .../Test/TestStep/OpenImportIndexStep.php     |   0
 .../app/Magento/ImportExport/Test/etc/di.xml  |   0
 .../ImportExport/Test/etc/testcase.xml        |   0
 .../Block/Adminhtml/IndexManagement/Grid.php  |   0
 .../Test/Constraint/AssertIndexerStatus.php   |   0
 ...sertUpdateByScheduleSuccessSaveMessage.php |   0
 .../Test/Page/Adminhtml/IndexManagement.xml   |   0
 .../CreateCatalogRulesIndexerTest.php         |   0
 .../CreateCatalogRulesIndexerTest.xml         |   0
 .../Test/TestCase/NavigateMenuTest.xml        |   0
 .../Indexer/Test/TestStep/ReindexStep.php     |   0
 .../Install/Test/Block/CreateAdmin.php        |   0
 .../Install/Test/Block/CreateAdmin.xml        |   0
 .../Install/Test/Block/CustomizeStore.php     |   0
 .../Install/Test/Block/CustomizeStore.xml     |   0
 .../Magento/Install/Test/Block/Database.php   |   0
 .../Magento/Install/Test/Block/Database.xml   |   0
 .../Magento/Install/Test/Block/Devdocs.php    |   0
 .../Magento/Install/Test/Block/Install.php    |   0
 .../Magento/Install/Test/Block/Landing.php    |   0
 .../Magento/Install/Test/Block/License.php    |   0
 .../Magento/Install/Test/Block/Readiness.php  |   0
 .../Install/Test/Block/WebConfiguration.php   |   0
 .../Install/Test/Block/WebConfiguration.xml   |   0
 .../AssertAdminUriAutogenerated.php           |   0
 .../Constraint/AssertAgreementTextPresent.php |   0
 .../Constraint/AssertCurrencySelected.php     |   0
 .../Test/Constraint/AssertDevdocsLink.php     |   0
 .../AssertGenerationFilePathCheck.php         |   0
 .../Test/Constraint/AssertKeyCreated.php      |   0
 .../Constraint/AssertLanguageSelected.php     |   0
 .../Test/Constraint/AssertRewritesEnabled.php |   0
 .../Constraint/AssertSecureUrlEnabled.php     |   0
 .../Test/Constraint/AssertSuccessInstall.php  |   0
 .../AssertSuccessfulReadinessCheck.php        |   0
 .../Magento/Install/Test/Fixture/Install.xml  |   0
 .../Install/Test/Page/DevdocsInstall.xml      |   0
 .../app/Magento/Install/Test/Page/Install.xml |   0
 .../Install/Test/TestCase/InstallTest.php     |   0
 .../Install/Test/TestCase/InstallTest.xml     |   0
 .../tests/app/Magento/Install/Test/etc/di.xml |   0
 .../Integration/Edit/IntegrationForm.php      |   0
 .../Integration/Edit/IntegrationForm.xml      |   0
 .../Edit/IntegrationFormPageActions.php       |   0
 .../Adminhtml/Integration/Edit/Tab/Api.php    |   0
 .../Adminhtml/Integration/IntegrationGrid.php |   0
 .../IntegrationGrid/DeleteDialog.php          |   0
 .../IntegrationGrid/ResourcesPopup.php        |   0
 .../IntegrationGrid/ResourcesPopup.xml        |   0
 .../IntegrationGrid/TokensPopup.php           |   0
 .../IntegrationGrid/TokensPopup.xml           |   0
 .../AssertEmailValidationErrorGenerated.php   |   0
 .../AssertIncorrectUserPassword.php           |   0
 .../Test/Constraint/AssertIntegrationForm.php |   0
 .../Constraint/AssertIntegrationInGrid.php    |   0
 ...IntegrationNameDuplicationErrorMessage.php |   0
 .../Constraint/AssertIntegrationNotInGrid.php |   0
 .../AssertIntegrationResourcesPopup.php       |   0
 ...ertIntegrationSuccessActivationMessage.php |   0
 .../AssertIntegrationSuccessDeleteMessage.php |   0
 ...rtIntegrationSuccessReauthorizeMessage.php |   0
 .../AssertIntegrationSuccessSaveMessage.php   |   0
 ...ntegrationSuccessSaveMessageNotPresent.php |   0
 ...ssertIntegrationTokensAfterReauthorize.php |   0
 .../AssertIntegrationTokensPopup.php          |   0
 .../Test/Constraint/AssertNoAlertPopup.php    |   0
 .../Integration/Test/Fixture/Integration.xml  |   0
 .../Test/Handler/Integration/Curl.php         |   0
 .../Integration/IntegrationInterface.php      |   0
 .../Test/Page/Adminhtml/IntegrationIndex.xml  |   0
 .../Test/Page/Adminhtml/IntegrationNew.xml    |   0
 .../Test/Repository/Integration.xml           |   0
 .../ActivateIntegrationEntityTest.php         |   0
 .../ActivateIntegrationEntityTest.xml         |   0
 .../TestCase/CreateIntegrationEntityTest.php  |   0
 .../TestCase/CreateIntegrationEntityTest.xml  |   0
 ...reateIntegrationWithDuplicatedNameTest.php |   0
 ...reateIntegrationWithDuplicatedNameTest.xml |   0
 .../TestCase/DeleteIntegrationEntityTest.php  |   0
 .../TestCase/DeleteIntegrationEntityTest.xml  |   0
 .../Test/TestCase/NavigateMenuTest.xml        |   0
 ...ReAuthorizeTokensIntegrationEntityTest.php |   0
 ...ReAuthorizeTokensIntegrationEntityTest.xml |   0
 .../TestCase/UpdateIntegrationEntityTest.php  |   0
 .../TestCase/UpdateIntegrationEntityTest.xml  |   0
 .../Magento/Integration/Test/etc/curl/di.xml  |   0
 .../app/Magento/Integration/Test/etc/di.xml   |   0
 .../Test/Block/Navigation.php                 |   0
 .../AssertCategoryLayeredNavigation.php       |   0
 ...rtCategorySortingOnFilteredProductList.php |   0
 .../Constraint/AssertFilterProductList.php    |   0
 .../Test/Constraint/AssertProductsCount.php   |   0
 .../Page/Category/CatalogCategoryView.xml     |   0
 .../Test/Repository/Category.xml              |   0
 .../Test/Repository/ConfigData.xml            |   0
 .../Test/TestCase/FilterProductListTest.php   |   0
 .../Test/TestCase/FilterProductListTest.xml   |   0
 .../ProductsCountInLayeredNavigationTest.php  |   0
 .../ProductsCountInLayeredNavigationTest.xml  |   0
 .../Msrp/Test/Block/Product/ListProduct.php   |   0
 .../Magento/Msrp/Test/Block/Product/Map.php   |   0
 .../Block/Product/ProductList/ProductItem.php |   0
 .../Magento/Msrp/Test/Block/Product/View.php  |   0
 .../Constraint/AssertMapOnCategoryPage.php    |   0
 .../Constraint/AssertMapOnProductView.php     |   0
 .../Constraint/AssertMsrpInShoppingCart.php   |   0
 .../Constraint/AssertMsrpOnCategoryPage.php   |   0
 .../Constraint/AssertMsrpOnProductView.php    |   0
 ...rtProductEditPageAdvancedPricingFields.php |   0
 .../Page/Category/CatalogCategoryView.xml     |   0
 .../Test/Page/Product/CatalogProductView.xml  |   0
 .../Test/Repository/CatalogProductSimple.xml  |   0
 .../Msrp/Test/Repository/ConfigData.xml       |   0
 .../Test/Repository/ConfigurableProduct.xml   |   0
 .../Msrp/Test/TestCase/ApplyMapTest.php       |   0
 .../Msrp/Test/TestCase/ApplyMapTest.xml       |   0
 .../Test/Block/Checkout/Addresses.php         |   0
 .../Test/Block/Checkout/Billing.php           |   0
 .../Test/Block/Checkout/Link.php              |   0
 .../Test/Block/Checkout/Overview.php          |   0
 .../Test/Block/Checkout/Shipping.php          |   0
 .../Test/Block/Checkout/Success.php           |   0
 ...MultishippingOrderSuccessPlacedMessage.php |   0
 .../Multishipping/Test/Page/CheckoutCart.xml  |   0
 ...ultishippingCheckoutAddressNewShipping.php |   0
 .../Page/MultishippingCheckoutAddresses.xml   |   0
 .../Page/MultishippingCheckoutBilling.xml     |   0
 .../Test/Page/MultishippingCheckoutCart.php   |   0
 .../Test/Page/MultishippingCheckoutLogin.php  |   0
 .../Page/MultishippingCheckoutOverview.xml    |   0
 .../Page/MultishippingCheckoutRegister.php    |   0
 .../Page/MultishippingCheckoutShipping.xml    |   0
 .../Page/MultishippingCheckoutSuccess.xml     |   0
 .../TestStep/FillCustomerAddressesStep.php    |   0
 .../TestStep/FillShippingInformationStep.php  |   0
 .../Test/TestStep/PlaceOrderStep.php          |   0
 .../ProceedToMultipleAddressCheckoutStep.php  |   0
 .../Test/TestStep/SelectPaymentMethodStep.php |   0
 .../app/Magento/Multishipping/Test/etc/di.xml |   0
 .../Block/Adminhtml/Queue/Edit/QueueForm.php  |   0
 .../Block/Adminhtml/Queue/Edit/QueueForm.xml  |   0
 .../Test/Block/Adminhtml/Queue/Grid.php       |   0
 .../Test/Block/Adminhtml/Subscriber/Grid.php  |   0
 .../Adminhtml/Template/FormPageActions.php    |   0
 .../Test/Block/Adminhtml/Template/Grid.php    |   0
 .../Adminhtml/Template/GridPageActions.php    |   0
 .../Test/Block/Adminhtml/Template/Preview.php |   0
 ...AssertCustomerIsSubscribedToNewsletter.php |   0
 .../Test/Constraint/AssertNewsletterForm.php  |   0
 .../Constraint/AssertNewsletterInGrid.php     |   0
 .../Constraint/AssertNewsletterPreview.php    |   0
 .../Test/Constraint/AssertNewsletterQueue.php |   0
 .../Constraint/AssertNewsletterQueueForm.php  |   0
 .../AssertNewsletterQueueInGrid.php           |   0
 .../AssertNewsletterQueueSaveMessage.php      |   0
 .../AssertNewsletterSuccessCreateMessage.php  |   0
 .../Magento/Newsletter/Test/Fixture/Queue.xml |   0
 .../Newsletter/Test/Fixture/Queue/Stores.php  |   0
 .../Newsletter/Test/Fixture/Template.xml      |   0
 .../Newsletter/Test/Handler/Template/Curl.php |   0
 .../Handler/Template/TemplateInterface.php    |   0
 .../Test/Page/Adminhtml/SubscriberIndex.xml   |   0
 .../Test/Page/Adminhtml/TemplateEdit.xml      |   0
 .../Test/Page/Adminhtml/TemplateIndex.xml     |   0
 .../Test/Page/Adminhtml/TemplateNewIndex.xml  |   0
 .../Test/Page/Adminhtml/TemplatePreview.xml   |   0
 .../Test/Page/Adminhtml/TemplateQueue.xml     |   0
 .../Page/Adminhtml/TemplateQueueIndex.xml     |   0
 .../Newsletter/Test/Repository/Customer.xml   |   0
 .../Newsletter/Test/Repository/Queue.xml      |   0
 .../Newsletter/Test/Repository/Template.xml   |   0
 .../ActionNewsletterTemplateEntityTest.php    |   0
 .../ActionNewsletterTemplateEntityTest.xml    |   0
 .../TestCase/CreateNewsletterQueueTest.php    |   0
 .../TestCase/CreateNewsletterQueueTest.xml    |   0
 .../CreateNewsletterTemplateEntityTest.php    |   0
 .../CreateNewsletterTemplateEntityTest.xml    |   0
 .../Test/TestCase/NavigateMenuTest.xml        |   0
 .../PreviewNewsletterTemplateEntityTest.php   |   0
 .../PreviewNewsletterTemplateEntityTest.xml   |   0
 .../TestCase/UpdateNewsletterTemplateTest.php |   0
 .../TestCase/UpdateNewsletterTemplateTest.xml |   0
 .../Magento/Newsletter/Test/etc/curl/di.xml   |   0
 .../Test/Repository/ConfigData.xml            |   0
 .../Test/Repository/ConfigData.xml            |   0
 .../Magento/PageCache/Test/Block/Cache.php    |   0
 .../PageCache/Test/Block/Cache/Additional.php |   0
 .../PageCache/Test/Block/Cache/Grid.php       |   0
 .../AssertCacheFlushSuccessMessage.php        |   0
 .../AssertCacheInvalidateNotice.php           |   0
 .../Constraint/AssertCacheInvalidatePopUp.php |   0
 ...AssertCacheIsRefreshableAndInvalidated.php |   0
 .../Test/Constraint/AssertCacheStatus.php     |   0
 .../Test/Constraint/AssertCategoryCaching.php |   0
 ...tFlushStaticFilesCacheButtonVisibility.php |   0
 .../Test/Page/Adminhtml/AdminCache.xml        |   0
 .../PageCache/Test/Repository/ConfigData.xml  |   0
 .../Test/TestCase/CacheInvalidationTest.php   |   0
 .../Test/TestCase/CacheInvalidationTest.xml   |   0
 .../CacheStatusOnScheduledIndexingTest.php    |   0
 .../CacheStatusOnScheduledIndexingTest.xml    |   0
 .../TestCase/FlushAdditionalCachesTest.php    |   0
 .../TestCase/FlushAdditionalCachesTest.xml    |   0
 ...shStaticFilesCacheButtonVisibilityTest.php |   0
 ...shStaticFilesCacheButtonVisibilityTest.xml |   0
 .../app/Magento/PageCache/Test/etc/di.xml     |   0
 .../Payment/Test/Block/Form/PaymentCc.php     |   0
 .../Payment/Test/Block/Form/PaymentCc.xml     |   0
 .../Constraint/AssertCardRequiredFields.php   |   0
 .../Test/Constraint/AssertFieldsAreActive.php |   0
 .../Constraint/AssertFieldsAreDisabled.php    |   0
 .../Constraint/AssertFieldsAreEnabled.php     |   0
 .../Constraint/AssertFieldsArePresent.php     |   0
 .../Payment/Test/Fixture/CreditCard.xml       |   0
 .../Payment/Test/Page/CheckoutOnepage.xml     |   0
 .../Payment/Test/Repository/CreditCard.xml    |   0
 .../Test/TestCase/ConflictResolutionTest.php  |   0
 .../Test/TestCase/ConflictResolutionTest.xml  |   0
 .../tests/app/Magento/Payment/Test/etc/di.xml |   0
 .../app/Magento/Payment/Test/etc/fixture.xml  |   0
 .../Paypal/Test/Block/Express/Review.php      |   0
 .../Review/ShippingoptgroupElement.php        |   0
 .../Paypal/Test/Block/Form/HostedPro/Cc.php   |   0
 .../Paypal/Test/Block/Form/HostedPro/Cc.xml   |   0
 .../Paypal/Test/Block/Form/PayflowLink/Cc.php |   0
 .../Paypal/Test/Block/Form/PayflowLink/Cc.xml |   0
 .../Test/Block/Form/PaymentsAdvanced/Cc.php   |   0
 .../Test/Block/Form/PaymentsAdvanced/Cc.xml   |   0
 .../Test/Block/Onepage/Payment/HostedPro.php  |   0
 .../Block/Onepage/Payment/PayflowLink.php     |   0
 .../Onepage/Payment/PaymentsAdvanced.php      |   0
 .../Block/Onepage/Payment/PaypalIframe.php    |   0
 .../Test/Block/Sandbox/ExpressLogin.php       |   0
 .../Test/Block/Sandbox/ExpressLogin.xml       |   0
 .../Test/Block/Sandbox/ExpressMainLogin.php   |   0
 .../Test/Block/Sandbox/ExpressMainReview.php  |   0
 .../Test/Block/Sandbox/ExpressOldLogin.php    |   0
 .../Test/Block/Sandbox/ExpressOldLogin.xml    |   0
 .../Test/Block/Sandbox/ExpressOldReview.php   |   0
 .../Test/Block/Sandbox/ExpressReview.php      |   0
 .../Test/Block/Sandbox/SignupAddCard.php      |   0
 .../Test/Block/Sandbox/SignupAddCard.xml      |   0
 .../Test/Block/Sandbox/SignupCreate.php       |   0
 .../Test/Block/Sandbox/SignupCreate.xml       |   0
 .../Block/Sandbox/SignupPersonalAccount.php   |   0
 .../Block/Sandbox/SignupPersonalAccount.xml   |   0
 .../Block/System/Config/ExpressCheckout.php   |   0
 .../Test/Block/System/Config/PayflowLink.php  |   0
 .../Test/Block/System/Config/PayflowPro.php   |   0
 .../Block/System/Config/PaymentsAdvanced.php  |   0
 .../Test/Block/System/Config/PaymentsPro.php  |   0
 .../AssertExpressCancelledMessage.php         |   0
 .../Sandbox/AssertTotalPaypalReview.php       |   0
 .../Paypal/Test/Fixture/SandboxCustomer.xml   |   0
 .../SystemConfigEditSectionPayment.xml        |   0
 .../Paypal/Test/Page/CheckoutOnepage.xml      |   0
 .../Paypal/Test/Page/OrderReviewExpress.xml   |   0
 .../Test/Page/Sandbox/AccountSignup.xml       |   0
 .../Test/Page/Sandbox/ExpressReview.xml       |   0
 .../Test/Page/Sandbox/SignupAddCard.xml       |   0
 .../Paypal/Test/Page/Sandbox/SignupCreate.xml |   0
 .../Paypal/Test/Repository/ConfigData.xml     |   0
 .../Paypal/Test/Repository/CreditCard.xml     |   0
 .../Test/Repository/SandboxCustomer.xml       |   0
 .../Paypal/Test/TestCase/CloseOrderTest.xml   |   0
 .../TestCase/CloseSalesWithHostedProTest.php  |   0
 .../TestCase/CloseSalesWithHostedProTest.xml  |   0
 .../CreateOnlineCreditMemoPayflowLinkTest.php |   0
 .../CreateOnlineCreditMemoPayflowLinkTest.xml |   0
 .../TestCase/CreateOnlineCreditMemoTest.xml   |   0
 .../CreatePayFlowOrderBackendNegativeTest.php |   0
 .../CreatePayFlowOrderBackendNegativeTest.xml |   0
 .../TestCase/CreateVaultOrderBackendTest.xml  |   0
 .../ExpressCheckoutFromProductPageTest.php    |   0
 .../ExpressCheckoutFromProductPageTest.xml    |   0
 .../ExpressCheckoutFromShoppingCartTest.php   |   0
 .../ExpressCheckoutFromShoppingCartTest.xml   |   0
 .../TestCase/ExpressCheckoutOnePageTest.php   |   0
 .../TestCase/ExpressCheckoutOnePageTest.xml   |   0
 ...extExpressCheckoutFromShoppingCartTest.php |   0
 ...extExpressCheckoutFromShoppingCartTest.xml |   0
 .../InContextExpressOnePageCheckoutTest.php   |   0
 .../InContextExpressOnePageCheckoutTest.xml   |   0
 .../Paypal/Test/TestCase/NavigateMenuTest.xml |   0
 .../TestCase/OnePageCheckoutDeclinedTest.xml  |   0
 .../TestCase/OnePageCheckoutHostedProTest.php |   0
 .../TestCase/OnePageCheckoutHostedProTest.xml |   0
 .../OnePageCheckoutPayflowLinkTest.php        |   0
 .../OnePageCheckoutPayflowLinkTest.xml        |   0
 .../OnePageCheckoutPaymentsAdvancedTest.php   |   0
 .../OnePageCheckoutPaymentsAdvancedTest.xml   |   0
 .../Test/TestCase/OnePageCheckoutTest.xml     |   0
 .../Test/TestCase/ReorderUsingVaultTest.xml   |   0
 .../Test/TestCase/UseVaultOnCheckoutTest.xml  |   0
 .../Test/TestStep/CheckExpressConfigStep.php  |   0
 .../TestStep/CheckPayflowLinkConfigStep.php   |   0
 .../TestStep/CheckPayflowProConfigStep.php    |   0
 .../CheckPaymentsAdvancedConfigStep.php       |   0
 .../TestStep/CheckPaymentsProConfigStep.php   |   0
 .../CheckoutWithPaypalFromProductPageStep.php |   0
 ...CheckoutWithPaypalFromShoppingCartStep.php |   0
 .../TestStep/ContinuePaypalCheckoutStep.php   |   0
 .../ContinueToPaypalInContextStep.php         |   0
 .../Test/TestStep/ContinueToPaypalStep.php    |   0
 .../TestStep/CreateSandboxCustomerStep.php    |   0
 .../ExpressCheckoutOrderPlaceStep.php         |   0
 ...CheckoutWithPaypalFromShoppingCartStep.php |   0
 .../TestStep/PlaceOrderWithHostedProStep.php  |   0
 .../PlaceOrderWithPayflowLinkStep.php         |   0
 .../PlaceOrderWithPaymentsAdvancedStep.php    |   0
 .../tests/app/Magento/Paypal/Test/etc/di.xml  |   0
 .../app/Magento/Paypal/Test/etc/testcase.xml  |   0
 .../AssertCustomerIsRedirectedToCheckout.php  |   0
 .../Persistent/Test/Repository/ConfigData.xml |   0
 ...CheckoutWithPersistentShoppingCartTest.php |   0
 ...CheckoutWithPersistentShoppingCartTest.xml |   0
 .../Test/TestCase/AddProductVideoTest.php     |   0
 .../Test/TestCase/AddProductVideoTest.xml     |   0
 .../TestCase/ConfigurableProductVideoTest.php |   0
 .../TestCase/ConfigurableProductVideoTest.xml |   0
 .../Test/TestCase/DeleteProductVideoTest.php  |   0
 .../Test/TestCase/DeleteProductVideoTest.xml  |   0
 .../Test/TestCase/UpdateProductVideoTest.php  |   0
 .../Test/TestCase/UpdateProductVideoTest.xml  |   0
 .../app/Magento/ProductVideo/Test/etc/di.xml  |   0
 .../ReleaseNotificationBlock.php              |   0
 ...lushCacheReleaseNotificationPopupExist.php |   0
 ...nAgainReleaseNotificationPopupNotExist.php |   0
 .../AssertReleaseNotificationPopupExist.php   |   0
 .../Test/Page/Adminhtml/Dashboard.xml         |   0
 .../Test/TestCase/NotificationTest.php        |   0
 .../Test/TestCase/NotificationTest.xml        |   0
 .../ReleaseNotification/Test/etc/testcase.xml |   0
 .../Test/Block/Adminhtml/AbstractFilter.php   |   0
 .../Block/Adminhtml/Customer/AccountsGrid.php |   0
 .../Adminhtml/Customer/Counts/Filter.php      |   0
 .../Adminhtml/Customer/Counts/Filter.xml      |   0
 .../Block/Adminhtml/Customer/Counts/Grid.php  |   0
 .../Adminhtml/Customer/Totals/Filter.php      |   0
 .../Adminhtml/Customer/Totals/Filter.xml      |   0
 .../Block/Adminhtml/Customer/Totals/Grid.php  |   0
 .../Adminhtml/Product/Downloads/Grid.php      |   0
 .../Block/Adminhtml/Product/Lowstock/Grid.php |   0
 .../Block/Adminhtml/Product/Sold/Grid.php     |   0
 .../Block/Adminhtml/Product/Viewed/Filter.php |   0
 .../Block/Adminhtml/Product/Viewed/Filter.xml |   0
 .../Adminhtml/Product/Viewed/ProductGrid.php  |   0
 .../Adminhtml/Refresh/Statistics/Grid.php     |   0
 .../Block/Adminhtml/Review/Customer/Grid.php  |   0
 .../Block/Adminhtml/Review/Products/Grid.php  |   0
 .../Review/Products/Viewed/Filter.php         |   0
 .../Review/Products/Viewed/Filter.xml         |   0
 .../Review/Products/Viewed/ProductGrid.php    |   0
 .../Block/Adminhtml/Sales/Coupons/Action.php  |   0
 .../Block/Adminhtml/Sales/Coupons/Filter.php  |   0
 .../Block/Adminhtml/Sales/Coupons/Filter.xml  |   0
 .../Block/Adminhtml/Sales/Coupons/Grid.php    |   0
 .../Block/Adminhtml/Sales/Invoiced/Grid.php   |   0
 .../Sales/Orders/Viewed/FilterGrid.php        |   0
 .../Adminhtml/Sales/Refunded/FilterGrid.php   |   0
 .../Block/Adminhtml/Sales/Shipping/Grid.php   |   0
 .../Block/Adminhtml/Sales/TaxRule/Action.php  |   0
 .../Block/Adminhtml/Sales/TaxRule/Filter.php  |   0
 .../Block/Adminhtml/Sales/TaxRule/Filter.xml  |   0
 .../Block/Adminhtml/Sales/TaxRule/Grid.php    |   0
 .../Test/Block/Adminhtml/SearchTermsGrid.php  |   0
 .../Adminhtml/Shopcart/Abandoned/Grid.php     |   0
 .../Block/Adminhtml/Shopcart/Product/Grid.php |   0
 .../Test/Block/Adminhtml/Viewed/Action.php    |   0
 ...bstractAssertCustomerOrderReportResult.php |   0
 .../AbstractAssertInvoiceReportResult.php     |   0
 .../AbstractAssertSalesReportResult.php       |   0
 .../AbstractAssertShippingReportResult.php    |   0
 .../AssertAbandonedCartCustomerInfoResult.php |   0
 .../AssertBestsellerReportResult.php          |   0
 .../Constraint/AssertCouponReportResult.php   |   0
 .../AssertCustomerOrderCountReportResult.php  |   0
 .../AssertCustomerOrderTotalReportResult.php  |   0
 .../AssertDownloadsReportResult.php           |   0
 .../AssertInvoiceReportIntervalResult.php     |   0
 .../AssertInvoiceReportTotalResult.php        |   0
 ...AssertLifetimeStatisticsUpdatedMessage.php |   0
 .../AssertLowStockProductInGrid.php           |   0
 .../AssertNewAccountsReportTotalResult.php    |   0
 ...redProductReportForConfigurableProduct.php |   0
 .../Constraint/AssertOrderedProductResult.php |   0
 .../Constraint/AssertProductInCartResult.php  |   0
 .../AssertProductReportByCustomerInGrid.php   |   0
 ...AssertProductReportByCustomerNotInGrid.php |   0
 ...sertProductReviewIsAvailableForProduct.php |   0
 ...sertProductReviewReportIsVisibleInGrid.php |   0
 .../AssertProductReviewsQtyByCustomer.php     |   0
 .../AssertProductViewsReportTotalResult.php   |   0
 .../AssertRecentStatisticsUpdatedMessage.php  |   0
 .../AssertRefundReportIntervalResult.php      |   0
 .../AssertReportStatisticsNoticeMessage.php   |   0
 .../AssertReportsUpdatedTimezone.php          |   0
 .../AssertSalesReportIntervalResult.php       |   0
 .../AssertSalesReportTotalResult.php          |   0
 .../Constraint/AssertSearchTermReportForm.php |   0
 .../Constraint/AssertSearchTermsInGrid.php    |   0
 .../AssertShippingReportIntervalResult.php    |   0
 .../AssertShippingReportTotalResult.php       |   0
 .../Test/Constraint/AssertTaxReportInGrid.php |   0
 .../Constraint/AssertTaxReportNotInGrid.php   |   0
 .../Test/Page/Adminhtml/AbandonedCarts.xml    |   0
 .../Test/Page/Adminhtml/Bestsellers.xml       |   0
 .../Test/Page/Adminhtml/CustomerAccounts.xml  |   0
 .../Page/Adminhtml/CustomerOrdersReport.xml   |   0
 .../Page/Adminhtml/CustomerReportReview.xml   |   0
 .../Page/Adminhtml/CustomerTotalsReport.xml   |   0
 .../Test/Page/Adminhtml/DownloadsReport.xml   |   0
 .../Page/Adminhtml/OrderedProductsReport.xml  |   0
 .../Test/Page/Adminhtml/ProductLowStock.xml   |   0
 .../Page/Adminhtml/ProductReportReview.xml    |   0
 .../Test/Page/Adminhtml/ProductReportView.xml |   0
 .../Test/Page/Adminhtml/RefundsReport.xml     |   0
 .../Page/Adminhtml/SalesCouponReportView.xml  |   0
 .../Page/Adminhtml/SalesInvoiceReport.xml     |   0
 .../Test/Page/Adminhtml/SalesReport.xml       |   0
 .../Page/Adminhtml/SalesShippingReport.xml    |   0
 .../Test/Page/Adminhtml/SalesTaxReport.xml    |   0
 .../Test/Page/Adminhtml/SearchIndex.xml       |   0
 .../Page/Adminhtml/ShopCartProductReport.xml  |   0
 .../Test/Page/Adminhtml/Statistics.xml        |   0
 .../Reports/Test/Repository/ConfigData.xml    |   0
 .../AbandonedCartsReportEntityTest.php        |   0
 .../AbandonedCartsReportEntityTest.xml        |   0
 .../BestsellerProductsReportEntityTest.php    |   0
 .../BestsellerProductsReportEntityTest.xml    |   0
 .../CustomersOrderCountReportEntityTest.php   |   0
 .../CustomersOrderCountReportEntityTest.xml   |   0
 .../CustomersOrderTotalReportEntityTest.php   |   0
 .../CustomersOrderTotalReportEntityTest.xml   |   0
 .../DownloadProductsReportEntityTest.php      |   0
 .../DownloadProductsReportEntityTest.xml      |   0
 .../LowStockProductsReportEntityTest.php      |   0
 .../LowStockProductsReportEntityTest.xml      |   0
 .../Test/TestCase/NavigateMenuTest.xml        |   0
 .../TestCase/NewAccountsReportEntityTest.php  |   0
 .../TestCase/NewAccountsReportEntityTest.xml  |   0
 .../OrderedProductsReportEntityTest.php       |   0
 .../OrderedProductsReportEntityTest.xml       |   0
 .../ProductsInCartReportEntityTest.php        |   0
 .../ProductsInCartReportEntityTest.xml        |   0
 .../TestCase/RefreshReportsStatisticsTest.php |   0
 .../TestCase/RefreshReportsStatisticsTest.xml |   0
 .../Test/TestCase/ReviewReportEntityTest.php  |   0
 .../Test/TestCase/ReviewReportEntityTest.xml  |   0
 .../TestCase/SalesCouponReportEntityTest.php  |   0
 .../TestCase/SalesCouponReportEntityTest.xml  |   0
 .../TestCase/SalesInvoiceReportEntityTest.php |   0
 .../TestCase/SalesInvoiceReportEntityTest.xml |   0
 .../TestCase/SalesOrderReportEntityTest.php   |   0
 .../TestCase/SalesOrderReportEntityTest.xml   |   0
 .../TestCase/SalesRefundsReportEntityTest.php |   0
 .../TestCase/SalesRefundsReportEntityTest.xml |   0
 .../TestCase/SalesTaxReportEntityTest.php     |   0
 .../TestCase/SalesTaxReportEntityTest.xml     |   0
 .../TestCase/SearchTermsReportEntityTest.php  |   0
 .../TestCase/SearchTermsReportEntityTest.xml  |   0
 .../ViewedProductsReportEntityTest.php        |   0
 .../ViewedProductsReportEntityTest.xml        |   0
 .../app/Magento/Reports/Test/etc/testcase.xml |   0
 .../Adminhtml/Customer/Edit/Tab/Reviews.php   |   0
 .../Block/Adminhtml/Edit/CustomerForm.xml     |   0
 .../Block/Adminhtml/Edit/Product/Grid.php     |   0
 .../Block/Adminhtml/Edit/RatingElement.php    |   0
 .../Test/Block/Adminhtml/FormPageActions.php  |   0
 .../Review/Test/Block/Adminhtml/Grid.php      |   0
 .../Product/Edit/Section/Reviews.php          |   0
 .../Test/Block/Adminhtml/Product/Grid.php     |   0
 .../Block/Adminhtml/Product/ProductForm.xml   |   0
 .../Adminhtml/Rating/Edit/RatingForm.php      |   0
 .../Adminhtml/Rating/Edit/RatingForm.xml      |   0
 .../Test/Block/Adminhtml/Rating/Grid.php      |   0
 .../Test/Block/Adminhtml/ReviewForm.php       |   0
 .../Test/Block/Adminhtml/ReviewForm.xml       |   0
 .../Review/Test/Block/Product/View.php        |   0
 .../Test/Block/Product/View/Summary.php       |   0
 .../Magento/Review/Test/Block/ReviewForm.php  |   0
 .../Magento/Review/Test/Block/ReviewForm.xml  |   0
 .../Constraint/AssertProductRatingInGrid.php  |   0
 .../AssertProductRatingInProductPage.php      |   0
 .../AssertProductRatingNotInGrid.php          |   0
 .../AssertProductRatingNotInProductPage.php   |   0
 .../AssertProductRatingOnReviewPage.php       |   0
 ...ssertProductRatingSuccessDeleteMessage.php |   0
 .../AssertProductRatingSuccessSaveMessage.php |   0
 ...ProductReviewBackendSuccessSaveMessage.php |   0
 .../Constraint/AssertProductReviewForm.php    |   0
 .../Constraint/AssertProductReviewInGrid.php  |   0
 ...ssertProductReviewInGridOnCustomerPage.php |   0
 ...sertProductReviewIsAbsentOnProductPage.php |   0
 ...ctReviewMassActionSuccessDeleteMessage.php |   0
 ...tProductReviewMassActionSuccessMessage.php |   0
 .../AssertProductReviewNotInGrid.php          |   0
 .../AssertProductReviewNotOnProductPage.php   |   0
 .../AssertProductReviewOnProductPage.php      |   0
 .../AssertReviewCreationSuccessMessage.php    |   0
 ...ssertReviewLinksIsPresentOnProductPage.php |   0
 .../AssertReviewSuccessSaveMessage.php        |   0
 .../AssertSetApprovedProductReview.php        |   0
 .../Magento/Review/Test/Fixture/Rating.xml    |   0
 .../Magento/Review/Test/Fixture/Review.xml    |   0
 .../Review/Test/Fixture/Review/EntityId.php   |   0
 .../Review/Test/Fixture/Review/Ratings.php    |   0
 .../Review/Test/Handler/Rating/Curl.php       |   0
 .../Test/Handler/Rating/RatingInterface.php   |   0
 .../Review/Test/Handler/Review/Curl.php       |   0
 .../Test/Handler/Review/ReviewInterface.php   |   0
 .../Review/Test/Page/Adminhtml/RatingEdit.xml |   0
 .../Test/Page/Adminhtml/RatingIndex.xml       |   0
 .../Review/Test/Page/Adminhtml/RatingNew.xml  |   0
 .../Review/Test/Page/Adminhtml/ReviewEdit.xml |   0
 .../Test/Page/Adminhtml/ReviewIndex.xml       |   0
 .../Test/Page/Product/CatalogProductView.xml  |   0
 .../Magento/Review/Test/Repository/Rating.xml |   0
 .../Magento/Review/Test/Repository/Review.xml |   0
 .../CreateProductRatingEntityTest.php         |   0
 .../CreateProductRatingEntityTest.xml         |   0
 .../CreateProductReviewBackendEntityTest.php  |   0
 .../CreateProductReviewBackendEntityTest.xml  |   0
 .../CreateProductReviewFrontendEntityTest.php |   0
 .../CreateProductReviewFrontendEntityTest.xml |   0
 .../DeleteProductRatingEntityTest.php         |   0
 .../DeleteProductRatingEntityTest.xml         |   0
 ...anageProductReviewFromCustomerPageTest.php |   0
 ...anageProductReviewFromCustomerPageTest.xml |   0
 .../MassActionsProductReviewEntityTest.php    |   0
 .../MassActionsProductReviewEntityTest.xml    |   0
 .../ModerateProductReviewEntityTest.php       |   0
 .../ModerateProductReviewEntityTest.xml       |   0
 .../Review/Test/TestCase/NavigateMenuTest.xml |   0
 ...teProductReviewEntityOnProductPageTest.php |   0
 ...teProductReviewEntityOnProductPageTest.xml |   0
 .../UpdateProductReviewEntityTest.php         |   0
 .../UpdateProductReviewEntityTest.xml         |   0
 .../app/Magento/Review/Test/etc/curl/di.xml   |   0
 .../tests/app/Magento/Review/Test/etc/di.xml  |   0
 .../Test/Block/Adminhtml/CreditMemo/Grid.php  |   0
 .../Test/Block/Adminhtml/Invoice/Grid.php     |   0
 .../Block/Adminhtml/Order/AbstractForm.php    |   0
 .../Adminhtml/Order/AbstractForm/Product.php  |   0
 .../Block/Adminhtml/Order/AbstractItems.php   |   0
 .../Adminhtml/Order/AbstractItemsNewBlock.php |   0
 .../Test/Block/Adminhtml/Order/Actions.php    |   0
 .../Test/Block/Adminhtml/Order/Create.php     |   0
 .../Order/Create/Billing/Address.php          |   0
 .../Order/Create/Billing/Address.xml          |   0
 .../Adminhtml/Order/Create/Billing/Method.php |   0
 .../Block/Adminhtml/Order/Create/Coupons.php  |   0
 .../Block/Adminhtml/Order/Create/Customer.php |   0
 .../Order/Create/CustomerActivities.php       |   0
 .../Create/CustomerActivities/Sidebar.php     |   0
 .../Sidebar/LastOrderedItems.php              |   0
 .../Sidebar/ProductsInComparison.php          |   0
 .../Sidebar/RecentlyComparedProducts.php      |   0
 .../Sidebar/RecentlyViewedItems.php           |   0
 .../Sidebar/RecentlyViewedProducts.php        |   0
 .../Sidebar/ShoppingCartItems.php             |   0
 .../CustomerActivities/Sidebar/Wishlist.php   |   0
 .../Adminhtml/Order/Create/Form/Account.php   |   0
 .../Adminhtml/Order/Create/Form/Account.xml   |   0
 .../Block/Adminhtml/Order/Create/Items.php    |   0
 .../Order/Create/Items/ItemProduct.php        |   0
 .../Order/Create/Items/ItemProduct.xml        |   0
 .../Adminhtml/Order/Create/Search/Grid.php    |   0
 .../Order/Create/Shipping/Address.php         |   0
 .../Order/Create/Shipping/Address.xml         |   0
 .../Order/Create/Shipping/Method.php          |   0
 .../Block/Adminhtml/Order/Create/Sidebar.php  |   0
 .../Block/Adminhtml/Order/Create/Store.php    |   0
 .../Block/Adminhtml/Order/Create/Totals.php   |   0
 .../Block/Adminhtml/Order/Creditmemo/Form.php |   0
 .../Block/Adminhtml/Order/Creditmemo/Form.xml |   0
 .../Adminhtml/Order/Creditmemo/Form/Items.php |   0
 .../Order/Creditmemo/Form/Items/Product.php   |   0
 .../Order/Creditmemo/Form/Items/Product.xml   |   0
 .../Block/Adminhtml/Order/Creditmemo/Grid.php |   0
 .../Adminhtml/Order/Creditmemo/Totals.php     |   0
 .../Adminhtml/Order/Creditmemo/View/Items.php |   0
 .../Sales/Test/Block/Adminhtml/Order/Grid.php |   0
 .../Block/Adminhtml/Order/Invoice/Form.php    |   0
 .../Block/Adminhtml/Order/Invoice/Form.xml    |   0
 .../Adminhtml/Order/Invoice/Form/Items.php    |   0
 .../Order/Invoice/Form/Items/Product.php      |   0
 .../Order/Invoice/Form/Items/Product.xml      |   0
 .../Block/Adminhtml/Order/Invoice/Grid.php    |   0
 .../Block/Adminhtml/Order/Invoice/Totals.php  |   0
 .../Adminhtml/Order/Invoice/View/Items.php    |   0
 .../Block/Adminhtml/Order/Shipment/Totals.php |   0
 .../Adminhtml/Order/Shipment/View/Items.php   |   0
 .../Order/Status/Assign/AssignForm.php        |   0
 .../Order/Status/Assign/AssignForm.xml        |   0
 .../Order/Status/GridPageActions.php          |   0
 .../Test/Block/Adminhtml/Order/StatusGrid.php |   0
 .../Test/Block/Adminhtml/Order/Totals.php     |   0
 .../Adminhtml/Order/Transactions/Grid.php     |   0
 .../Block/Adminhtml/Order/View/Addresses.php  |   0
 .../Test/Block/Adminhtml/Order/View/Info.php  |   0
 .../Test/Block/Adminhtml/Order/View/Items.php |   0
 .../Block/Adminhtml/Order/View/OrderForm.php  |   0
 .../Block/Adminhtml/Order/View/OrderForm.xml  |   0
 .../Adminhtml/Order/View/Tab/CreditMemos.php  |   0
 .../Order/View/Tab/CreditMemos/Grid.php       |   0
 .../Block/Adminhtml/Order/View/Tab/Info.php   |   0
 .../View/Tab/Info/CommentsHistoryBlock.php    |   0
 .../Order/View/Tab/Info/PaymentInfoBlock.php  |   0
 .../Order/View/Tab/Info/ShippingInfoBlock.php |   0
 .../Adminhtml/Order/View/Tab/Invoices.php     |   0
 .../Order/View/Tab/Invoices/Grid.php          |   0
 .../Adminhtml/Order/View/Tab/Shipments.php    |   0
 .../Order/View/Tab/Shipments/Grid.php         |   0
 .../Adminhtml/Order/View/Tab/Transactions.php |   0
 .../Order/View/Tab/Transactions/Grid.php      |   0
 .../Block/Adminhtml/Report/Filter/Form.php    |   0
 .../Block/Adminhtml/Report/Filter/Form.xml    |   0
 .../Sales/Test/Block/Order/History.php        |   0
 .../Magento/Sales/Test/Block/Order/Info.php   |   0
 .../Magento/Sales/Test/Block/Order/Items.php  |   0
 .../Magento/Sales/Test/Block/Order/View.php   |   0
 .../Sales/Test/Block/Widget/Guest/Form.php    |   0
 .../Sales/Test/Block/Widget/Guest/Form.xml    |   0
 .../Test/Constraint/AbstractAssertItems.php   |   0
 .../AbstractAssertOrderOnFrontend.php         |   0
 ...tAcceptPaymentMessageInCommentsHistory.php |   0
 ...sertAcceptPaymentSuccessMessagePresent.php |   0
 .../AssertAuthorizationInCommentsHistory.php  |   0
 .../AssertCancelInCommentsHistory.php         |   0
 .../AssertCaptureInCommentsHistory.php        |   0
 ...rtCartSectionIsEmptyOnBackendOrderPage.php |   0
 ...tSectionWithProductsOnBackendOrderPage.php |   0
 .../Constraint/AssertCreditMemoButton.php     |   0
 .../Test/Constraint/AssertCreditMemoItems.php |   0
 ...ertDenyPaymentMessageInCommentsHistory.php |   0
 ...AssertDenyPaymentSuccessMessagePresent.php |   0
 .../AssertInvoiceInInvoicesGrid.php           |   0
 .../Constraint/AssertInvoiceInInvoicesTab.php |   0
 .../Test/Constraint/AssertInvoiceItems.php    |   0
 .../AssertInvoiceNotInInvoicesGrid.php        |   0
 .../AssertInvoiceStatusInOrdersGrid.php       |   0
 .../AssertInvoiceSuccessCreateMessage.php     |   0
 ...ssertInvoiceWithShipmentSuccessMessage.php |   0
 .../AssertInvoicedAmountOnFrontend.php        |   0
 .../AssertInvoicedOrderOnDashboard.php        |   0
 ...ertItemsOrderedSectionContainsProducts.php |   0
 ...emsOrderedSectionOnBackendOrderIsEmpty.php |   0
 .../Constraint/AssertNoCreditMemoButton.php   |   0
 .../Test/Constraint/AssertNoInvoiceButton.php |   0
 .../AssertOnlineInvoiceCannotBeCreated.php    |   0
 .../Test/Constraint/AssertOrderAddresses.php  |   0
 ...illingAndShippingAddressesAreDifferent.php |   0
 .../AssertOrderButtonsAvailable.php           |   0
 .../AssertOrderButtonsUnavailable.php         |   0
 .../AssertOrderByDateInOrdersGrid.php         |   0
 ...AssertOrderCancelMassActionFailMessage.php |   0
 ...ertOrderCancelMassActionSuccessMessage.php |   0
 .../AssertOrderCancelSuccessMessage.php       |   0
 ...AssertOrderCommentsHistoryNotifyStatus.php |   0
 .../Test/Constraint/AssertOrderGrandTotal.php |   0
 .../AssertOrderGraphImageIsVisible.php        |   0
 .../Constraint/AssertOrderInOrdersGrid.php    |   0
 .../AssertOrderInOrdersGridOnFrontend.php     |   0
 ...sertOrderItemsPagerDisplayedOnFrontend.php |   0
 .../AssertOrderItemsPagerHiddenOnFrontend.php |   0
 .../AssertOrderMassOnHoldSuccessMessage.php   |   0
 .../Constraint/AssertOrderNotInOrdersGrid.php |   0
 .../AssertOrderNotVisibleOnMyAccount.php      |   0
 .../AssertOrderOnHoldFailMessage.php          |   0
 .../AssertOrderOnHoldSuccessMessage.php       |   0
 .../AssertOrderPaymentInformation.php         |   0
 .../AssertOrderReleaseFailMessage.php         |   0
 .../AssertOrderReleaseSuccessMessage.php      |   0
 .../AssertOrderStatusDuplicateStatus.php      |   0
 .../Constraint/AssertOrderStatusInGrid.php    |   0
 .../AssertOrderStatusIsCanceled.php           |   0
 .../Constraint/AssertOrderStatusIsCorrect.php |   0
 .../AssertOrderStatusNotAssigned.php          |   0
 .../AssertOrderStatusSuccessAssignMessage.php |   0
 .../AssertOrderStatusSuccessCreateMessage.php |   0
 ...ssertOrderStatusSuccessUnassignMessage.php |   0
 .../AssertOrderSuccessCreateMessage.php       |   0
 .../AssertOrderSuccessVoidedMessage.php       |   0
 .../Test/Constraint/AssertOrderTotalPaid.php  |   0
 .../Constraint/AssertOrdersInOrdersGrid.php   |   0
 ...uctInCustomerShoppingCartOnBackendGrid.php |   0
 .../AssertProductInItemsOrderedGrid.php       |   0
 .../Constraint/AssertProductQtyDecreased.php  |   0
 ...sertProductQtyDecreasedAfterCreditmemo.php |   0
 .../AssertProductsQtyAfterOrderCancel.php     |   0
 .../AssertRefundInCommentsHistory.php         |   0
 .../AssertRefundInCreditMemoTab.php           |   0
 .../Constraint/AssertRefundInRefundsGrid.php  |   0
 .../AssertRefundNotInRefundsGrid.php          |   0
 ...sertRefundOrderStatusInCommentsHistory.php |   0
 .../AssertRefundSuccessCreateMessage.php      |   0
 .../AssertRefundedGrandTotalOnFrontend.php    |   0
 ...ertReorderButtonIsNotVisibleOnFrontend.php |   0
 .../AssertReorderStatusIsCorrect.php          |   0
 .../AssertSalesPrintOrderBillingAddress.php   |   0
 .../AssertSalesPrintOrderGrandTotal.php       |   0
 .../AssertSalesPrintOrderPaymentMethod.php    |   0
 .../AssertSalesPrintOrderProducts.php         |   0
 .../Constraint/AssertTransactionStatus.php    |   0
 .../Test/Constraint/AssertUnholdButton.php    |   0
 .../AssertVoidInCommentsHistory.php           |   0
 .../Sales/Test/Fixture/OrderInjectable.xml    |   0
 .../OrderInjectable/BillingAddressId.php      |   0
 .../Fixture/OrderInjectable/CouponCode.php    |   0
 .../Fixture/OrderInjectable/CustomerId.php    |   0
 .../Test/Fixture/OrderInjectable/EntityId.php |   0
 .../Test/Fixture/OrderInjectable/StoreId.php  |   0
 .../Sales/Test/Fixture/OrderStatus.xml        |   0
 .../Test/Handler/OrderInjectable/Curl.php     |   0
 .../OrderInjectableInterface.php              |   0
 .../Test/Handler/OrderInjectable/Webapi.php   |   0
 .../Sales/Test/Handler/OrderStatus/Curl.php   |   0
 .../OrderStatus/OrderStatusInterface.php      |   0
 .../Test/Page/Adminhtml/CreditMemoIndex.xml   |   0
 .../Test/Page/Adminhtml/InvoiceIndex.xml      |   0
 .../Test/Page/Adminhtml/OrderCreateIndex.xml  |   0
 .../Page/Adminhtml/OrderCreditMemoNew.xml     |   0
 .../Sales/Test/Page/Adminhtml/OrderIndex.xml  |   0
 .../Test/Page/Adminhtml/OrderInvoiceNew.xml   |   0
 .../Test/Page/Adminhtml/OrderInvoiceView.xml  |   0
 .../Test/Page/Adminhtml/OrderStatusAssign.xml |   0
 .../Test/Page/Adminhtml/OrderStatusEdit.xml   |   0
 .../Test/Page/Adminhtml/OrderStatusIndex.xml  |   0
 .../Test/Page/Adminhtml/OrderStatusNew.xml    |   0
 .../Page/Adminhtml/SalesCreditMemoView.xml    |   0
 .../Test/Page/Adminhtml/SalesInvoiceView.xml  |   0
 .../Test/Page/Adminhtml/SalesOrderView.xml    |   0
 .../Sales/Test/Page/CreditMemoView.xml        |   0
 .../Sales/Test/Page/CustomerOrderView.xml     |   0
 .../Magento/Sales/Test/Page/InvoiceView.xml   |   0
 .../Magento/Sales/Test/Page/OrderHistory.xml  |   0
 .../Sales/Test/Page/SalesGuestForm.xml        |   0
 .../Sales/Test/Page/SalesGuestPrint.xml       |   0
 .../Sales/Test/Page/SalesGuestView.xml        |   0
 .../Sales/Test/Page/SalesOrderShipmentNew.php |   0
 .../Sales/Test/Repository/ConfigData.xml      |   0
 .../Sales/Test/Repository/OrderInjectable.xml |   0
 .../Repository/OrderInjectable/Invoice.xml    |   0
 .../Test/Repository/OrderInjectable/Price.xml |   0
 .../Sales/Test/Repository/OrderStatus.xml     |   0
 .../TestCase/AssignCustomOrderStatusTest.php  |   0
 .../TestCase/AssignCustomOrderStatusTest.xml  |   0
 .../Test/TestCase/CancelCreatedOrderTest.php  |   0
 .../Test/TestCase/CancelCreatedOrderTest.xml  |   0
 .../Sales/Test/TestCase/CloseOrderTest.php    |   0
 .../TestCase/CreateCreditMemoEntityTest.php   |   0
 .../TestCase/CreateCreditMemoEntityTest.xml   |   0
 .../CreateCustomOrderStatusEntityTest.php     |   0
 .../CreateCustomOrderStatusEntityTest.xml     |   0
 .../Test/TestCase/CreateInvoiceEntityTest.php |   0
 .../Test/TestCase/CreateInvoiceEntityTest.xml |   0
 .../TestCase/CreateOnlineCreditMemoTest.php   |   0
 .../CreateOnlineInvoiceEntityTest.php         |   0
 .../CreateOrderBackendPartOneTest.php         |   0
 .../CreateOrderBackendPartOneTest.xml         |   0
 .../Test/TestCase/CreateOrderBackendTest.php  |   0
 .../Test/TestCase/CreateOrderBackendTest.xml  |   0
 .../CreateOrderFromEditCustomerPageTest.php   |   0
 .../CreateOrderFromEditCustomerPageTest.xml   |   0
 .../Test/TestCase/FrontendOrderPagerTest.php  |   0
 .../Test/TestCase/FrontendOrderPagerTest.xml  |   0
 .../Sales/Test/TestCase/GridFilteringTest.xml |   0
 .../Test/TestCase/GridFullTextSearchTest.xml  |   0
 .../Sales/Test/TestCase/GridSortingTest.xml   |   0
 .../Test/TestCase/HoldCreatedOrderTest.php    |   0
 .../Test/TestCase/HoldCreatedOrderTest.xml    |   0
 .../Test/TestCase/MassOrdersUpdateTest.php    |   0
 .../Test/TestCase/MassOrdersUpdateTest.xml    |   0
 ...MoveLastOrderedProductsOnOrderPageTest.php |   0
 ...MoveLastOrderedProductsOnOrderPageTest.xml |   0
 .../MoveProductsInComparedOnOrderPageTest.php |   0
 .../MoveProductsInComparedOnOrderPageTest.xml |   0
 ...ecentlyComparedProductsOnOrderPageTest.php |   0
 ...ecentlyComparedProductsOnOrderPageTest.xml |   0
 ...eRecentlyViewedProductsOnOrderPageTest.php |   0
 ...eRecentlyViewedProductsOnOrderPageTest.xml |   0
 ...oveShoppingCartProductsOnOrderPageTest.php |   0
 ...oveShoppingCartProductsOnOrderPageTest.xml |   0
 .../Sales/Test/TestCase/NavigateMenuTest.xml  |   0
 .../TestCase/PrintOrderFrontendGuestTest.php  |   0
 .../TestCase/PrintOrderFrontendGuestTest.xml  |   0
 .../Test/TestCase/ReorderOrderEntityTest.php  |   0
 .../Test/TestCase/ReorderOrderEntityTest.xml  |   0
 .../UnassignCustomOrderStatusTest.php         |   0
 .../UnassignCustomOrderStatusTest.xml         |   0
 .../TestCase/UpdateCustomOrderStatusTest.php  |   0
 .../TestCase/UpdateCustomOrderStatusTest.xml  |   0
 .../Test/TestCase/VoidAuthorizationTest.php   |   0
 .../Sales/Test/TestStep/AcceptPaymentStep.php |   0
 .../Sales/Test/TestStep/AddProductsStep.php   |   0
 .../AddRecentlyViewedProductsToCartStep.php   |   0
 .../Sales/Test/TestStep/CancelOrderStep.php   |   0
 .../Test/TestStep/ConfigureProductsStep.php   |   0
 .../Test/TestStep/CreateCreditMemoStep.php    |   0
 .../Sales/Test/TestStep/CreateInvoiceStep.php |   0
 .../Test/TestStep/CreateNewOrderStep.php      |   0
 .../TestStep/CreateOnlineCreditMemoStep.php   |   0
 .../Sales/Test/TestStep/CreateOrderStep.php   |   0
 .../Test/TestStep/CreateShipmentStep.php      |   0
 .../Sales/Test/TestStep/DenyPaymentStep.php   |   0
 .../TestStep/FillAccountInformationStep.php   |   0
 .../Test/TestStep/FillBillingAddressStep.php  |   0
 .../Test/TestStep/FillShippingAddressStep.php |   0
 .../Test/TestStep/GetPaymentUpdateStep.php    |   0
 .../Sales/Test/TestStep/OnHoldStep.php        |   0
 .../Sales/Test/TestStep/OpenOrderStep.php     |   0
 .../OpenSalesOrderOnFrontendForGuestStep.php  |   0
 .../Test/TestStep/OpenSalesOrdersStep.php     |   0
 .../TestStep/PrintOrderOnFrontendStep.php     |   0
 .../Sales/Test/TestStep/ReorderStep.php       |   0
 .../Test/TestStep/SelectCustomerOrderStep.php |   0
 .../SelectPaymentMethodForOrderStep.php       |   0
 .../SelectShippingMethodForOrderStep.php      |   0
 .../Sales/Test/TestStep/SelectStoreStep.php   |   0
 .../Test/TestStep/SubmitOrderNegativeStep.php |   0
 .../Sales/Test/TestStep/SubmitOrderStep.php   |   0
 .../SubmitOrderWithoutAdditionalInfoStep.php  |   0
 .../Sales/Test/TestStep/UnholdOrderStep.php   |   0
 .../Test/TestStep/UpdateProductsDataStep.php  |   0
 .../Test/TestStep/Utils/CompareQtyTrait.php   |   0
 .../Test/TestStep/VoidAuthorizationStep.php   |   0
 .../app/Magento/Sales/Test/etc/curl/di.xml    |   0
 .../tests/app/Magento/Sales/Test/etc/di.xml   |   0
 .../app/Magento/Sales/Test/etc/testcase.xml   |   0
 .../app/Magento/Sales/Test/etc/webapi/di.xml  |   0
 .../Test/Block/Adminhtml/Promo/Grid.php       |   0
 .../Promo/Quote/Edit/PromoQuoteForm.php       |   0
 .../Promo/Quote/Edit/PromoQuoteForm.xml       |   0
 .../Promo/Quote/Edit/Section/Conditions.php   |   0
 .../Promo/Quote/Edit/Section/Labels.php       |   0
 .../Quote/Edit/Section/ManageCouponCode.php   |   0
 .../Quote/Edit/Section/RuleInformation.php    |   0
 .../SalesRule/Test/Block/Order/Items.php      |   0
 .../SalesRule/Test/Block/Order/View.php       |   0
 .../AssertCartPriceRuleApplying.php           |   0
 .../AssertCartPriceRuleConditionIsApplied.php |   0
 ...sertCartPriceRuleConditionIsNotApplied.php |   0
 .../Constraint/AssertCartPriceRuleForm.php    |   0
 ...sertCartPriceRuleFreeShippingIsApplied.php |   0
 ...ssertCartPriceRuleIsNotPresentedInGrid.php |   0
 ...ssertCartPriceRuleSuccessDeleteMessage.php |   0
 .../AssertCartPriceRuleSuccessSaveMessage.php |   0
 .../AssertSalesRuleOnPrintOrder.php           |   0
 .../SalesRule/Test/Fixture/SalesRule.xml      |   0
 .../SalesRule/ConditionsSerialized.php        |   0
 .../SalesRule/Test/Handler/SalesRule/Curl.php |   0
 .../Handler/SalesRule/SalesRuleInterface.php  |   0
 .../Test/Handler/SalesRule/Webapi.php         |   0
 .../Test/Page/Adminhtml/PromoQuoteEdit.xml    |   0
 .../Test/Page/Adminhtml/PromoQuoteIndex.xml   |   0
 .../Test/Page/Adminhtml/PromoQuoteNew.xml     |   0
 .../SalesRule/Test/Page/SalesGuestPrint.xml   |   0
 .../SalesRule/Test/Repository/ConfigData.xml  |   0
 .../SalesRule/Test/Repository/SalesRule.xml   |   0
 .../ApplySeveralSalesRuleEntityTest.php       |   0
 .../ApplySeveralSalesRuleEntityTest.xml       |   0
 .../CreateSalesRuleEntityPartOneTest.php      |   0
 .../CreateSalesRuleEntityPartOneTest.xml      |   0
 .../CreateSalesRuleEntityPartTwoTest.php      |   0
 .../CreateSalesRuleEntityPartTwoTest.xml      |   0
 .../TestCase/CreateSalesRuleEntityTest.php    |   0
 .../TestCase/CreateSalesRuleEntityTest.xml    |   0
 .../TestCase/DeleteSalesRuleEntityTest.php    |   0
 .../TestCase/DeleteSalesRuleEntityTest.xml    |   0
 .../Test/TestCase/NavigateMenuTest.xml        |   0
 ...tMethodDataPersistenceWithDiscountTest.php |   0
 .../OnePageCheckoutWithDiscountTest.php       |   0
 ...ingCartWithFreeShippingAndFlatRateTest.php |   0
 ...ingCartWithFreeShippingAndFlatRateTest.xml |   0
 .../ShoppingCartWithFreeShippingTest.php      |   0
 .../ShoppingCartWithFreeShippingTest.xml      |   0
 .../TestCase/UpdateSalesRuleEntityTest.php    |   0
 .../TestCase/UpdateSalesRuleEntityTest.xml    |   0
 .../TestStep/ApplySalesRuleOnBackendStep.php  |   0
 .../TestStep/ApplySalesRuleOnCheckoutStep.php |   0
 .../TestStep/ApplySalesRuleOnFrontendStep.php |   0
 .../Test/TestStep/CreateSalesRuleStep.php     |   0
 .../CreateSalesRuleThroughAdminStep.php       |   0
 .../Test/TestStep/DeleteAllSalesRuleStep.php  |   0
 .../Test/TestStep/DeleteSalesRulesStep.php    |   0
 .../Magento/SalesRule/Test/etc/curl/di.xml    |   0
 .../Magento/SalesRule/Test/etc/testcase.xml   |   0
 .../Magento/SalesRule/Test/etc/webapi/di.xml  |   0
 .../Adminhtml/Block/Edit/SynonymGroupForm.php |   0
 .../Adminhtml/Block/Edit/SynonymGroupForm.xml |   0
 .../Adminhtml/Block/SynonymGroupGrid.php      |   0
 .../AssertSynonymGroupDeleteMessage.php       |   0
 .../Constraint/AssertSynonymGroupInGrid.php   |   0
 .../AssertSynonymGroupSuccessSaveMessage.php  |   0
 .../Constraint/AssertSynonymGroupsSearch.php  |   0
 .../AssertSynonymMergeErrorMessage.php        |   0
 .../AssertSynonymRestrictedAccess.php         |   0
 .../Search/Test/Fixture/SynonymGroup.xml      |   0
 .../Test/Fixture/SynonymGroup/ScopeId.php     |   0
 .../Search/Test/Handler/SynonymGroup/Curl.php |   0
 .../SynonymGroup/SynonymGroupInterface.php    |   0
 .../Test/Page/Adminhtml/SynonymGroupIndex.xml |   0
 .../Test/Page/Adminhtml/SynonymGroupNew.xml   |   0
 .../Search/Test/Repository/SynonymGroup.xml   |   0
 .../AdvancedSearchWithAttributeTest.php       |   0
 .../AdvancedSearchWithAttributeTest.xml       |   0
 .../CreateMultipleSynonymGroupsTest.php       |   0
 .../CreateMultipleSynonymGroupsTest.xml       |   0
 .../TestCase/CreateSynonymGroupEntityTest.php |   0
 .../TestCase/CreateSynonymGroupEntityTest.xml |   0
 .../Test/TestCase/CustomAclPermissionTest.xml |   0
 .../TestCase/MergeSynonymGroupEntityTest.php  |   0
 .../TestCase/MergeSynonymGroupEntityTest.xml  |   0
 .../TestCase/UpdateSynonymGroupEntityTest.php |   0
 .../TestCase/UpdateSynonymGroupEntityTest.xml |   0
 .../TestStep/DeleteAllSynonymGroupsStep.php   |   0
 .../app/Magento/Search/Test/etc/curl/di.xml   |   0
 .../tests/app/Magento/Search/Test/etc/di.xml  |   0
 .../Test/Block/Form/ForgotPassword.php        |   0
 .../Test/Block/Form/ForgotPassword.xml        |   0
 .../Constraint/AssertCustomerEmailChanged.php |   0
 .../Constraint/AssertCustomerIsLocked.php     |   0
 .../AssertCustomerPasswordRequiredClasses.php |   0
 .../AssertCustomerResetPasswordFailed.php     |   0
 .../AssertDefaultAccountInformation.php       |   0
 ...AssertPasswordIsNotSecureEnoughMessage.php |   0
 .../AssertPasswordLengthErrorMessage.php      |   0
 .../Test/Constraint/AssertUserIsLocked.php    |   0
 .../AssertUserPasswordResetFailed.php         |   0
 .../Test/Page/UserAccountForgotPassword.php   |   0
 .../Security/Test/Repository/ConfigData.xml   |   0
 ...dminUserWhenCreatingNewIntegrationTest.php |   0
 ...dminUserWhenCreatingNewIntegrationTest.xml |   0
 .../LockAdminUserWhenCreatingNewRoleTest.php  |   0
 .../LockAdminUserWhenCreatingNewRoleTest.xml  |   0
 .../LockAdminUserWhenCreatingNewUserTest.php  |   0
 .../LockAdminUserWhenCreatingNewUserTest.xml  |   0
 ...ockAdminUserWhenEditingIntegrationTest.php |   0
 ...ockAdminUserWhenEditingIntegrationTest.xml |   0
 .../LockAdminUserWhenEditingRoleTest.php      |   0
 .../LockAdminUserWhenEditingRoleTest.xml      |   0
 .../LockAdminUserWhenEditingUserTest.php      |   0
 .../LockAdminUserWhenEditingUserTest.xml      |   0
 .../TestCase/LockCustomerOnEditPageTest.php   |   0
 .../TestCase/LockCustomerOnEditPageTest.xml   |   0
 .../TestCase/LockCustomerOnLoginPageTest.php  |   0
 .../TestCase/LockCustomerOnLoginPageTest.xml  |   0
 .../NewCustomerPasswordComplexityTest.php     |   0
 .../NewCustomerPasswordComplexityTest.xml     |   0
 ...EntityWithDifferentPasswordClassesTest.php |   0
 ...EntityWithDifferentPasswordClassesTest.xml |   0
 .../ResetCustomerPasswordFailedTest.php       |   0
 .../ResetCustomerPasswordFailedTest.xml       |   0
 .../TestCase/ResetUserPasswordFailedTest.php  |   0
 .../TestCase/ResetUserPasswordFailedTest.xml  |   0
 .../SecureChangingCustomerEmailTest.php       |   0
 .../SecureChangingCustomerEmailTest.xml       |   0
 .../SecureChangingCustomerPasswordTest.php    |   0
 .../SecureChangingCustomerPasswordTest.xml    |   0
 .../app/Magento/Security/Test/etc/di.xml      |   0
 .../Setup/Test/Block/Authentication.php       |   0
 .../Setup/Test/Block/Authentication.xml       |   0
 .../Magento/Setup/Test/Block/CreateBackup.php |   0
 .../Magento/Setup/Test/Block/CreateBackup.xml |   0
 .../Test/Block/Extension/AbstractGrid.php     |   0
 .../Setup/Test/Block/Extension/DataOption.php |   0
 .../Setup/Test/Block/Extension/Grid.php       |   0
 .../Test/Block/Extension/InstallGrid.php      |   0
 .../Setup/Test/Block/Extension/UpdateGrid.php |   0
 .../Setup/Test/Block/Extension/Updater.php    |   0
 .../app/Magento/Setup/Test/Block/Home.php     |   0
 .../Magento/Setup/Test/Block/Module/Grid.php  |   0
 .../Setup/Test/Block/Module/Status.php        |   0
 .../Magento/Setup/Test/Block/Readiness.php    |   0
 .../Setup/Test/Block/SelectVersion.php        |   0
 .../Setup/Test/Block/SelectVersion.xml        |   0
 .../SelectVersion/OtherComponentsGrid.php     |   0
 .../OtherComponentsGrid/Item.php              |   0
 .../Setup/Test/Block/SuccessMessage.php       |   0
 .../Magento/Setup/Test/Block/SystemConfig.php |   0
 .../Setup/Test/Block/SystemUpgrade.php        |   0
 .../Constraint/AssertApplicationVersion.php   |   0
 .../Test/Constraint/AssertSuccessMessage.php  |   0
 .../AssertSuccessfulReadinessCheck.php        |   0
 .../AssertVersionAndEditionCheck.php          |   0
 .../AssertExtensionAndVersionCheck.php        |   0
 .../Extension/AssertFindExtensionOnGrid.php   |   0
 ...AssertMultipleExtensionAndVersionCheck.php |   0
 .../AssertMultipleSuccessMessage.php          |   0
 .../AssertSelectSeveralExtensions.php         |   0
 .../Extension/AssertSuccessMessage.php        |   0
 .../Extension/AssertVersionOnGrid.php         |   0
 .../Constraint/Module/AssertModuleInGrid.php  |   0
 .../Module/AssertSuccessMessage.php           |   0
 .../Setup/Test/Fixture/BackupOptions.xml      |   0
 .../Magento/Setup/Test/Fixture/Extension.xml  |   0
 .../app/Magento/Setup/Test/Fixture/Module.xml |   0
 .../Setup/Test/Fixture/RepoCredentials.xml    |   0
 .../Magento/Setup/Test/Fixture/Upgrade.xml    |   0
 .../Setup/Test/Page/Adminhtml/SetupWizard.xml |   0
 .../Setup/Test/Repository/BackupOptions.xml   |   0
 .../Setup/Test/Repository/Extension.xml       |   0
 .../Setup/Test/Repository/RepoCredentials.xml |   0
 .../Test/TestCase/AbstractExtensionTest.php   |   0
 .../Test/TestCase/EnableDisableModuleTest.php |   0
 .../Test/TestCase/EnableDisableModuleTest.xml |   0
 .../Test/TestCase/ExtensionMultipleTest.php   |   0
 .../Test/TestCase/ExtensionMultipleTest.xml   |   0
 .../TestCase/ExtensionMultipleUpdateTest.php  |   0
 .../TestCase/ExtensionMultipleUpdateTest.xml  |   0
 .../Setup/Test/TestCase/ExtensionTest.php     |   0
 .../Setup/Test/TestCase/ExtensionTest.xml     |   0
 .../Setup/Test/TestCase/UpgradeSystemTest.php |   0
 .../Setup/Test/TestCase/UpgradeSystemTest.xml |   0
 .../Shipping/Test/Block/Adminhtml/Form.php    |   0
 .../Shipping/Test/Block/Adminhtml/Form.xml    |   0
 .../Test/Block/Adminhtml/Form/Items.php       |   0
 .../Block/Adminhtml/Form/Items/Product.php    |   0
 .../Block/Adminhtml/Form/Items/Product.xml    |   0
 .../Test/Block/Adminhtml/Order/Tracking.php   |   0
 .../Block/Adminhtml/Order/Tracking/Item.php   |   0
 .../Block/Adminhtml/Order/Tracking/Item.xml   |   0
 .../Adminhtml/Order/TrackingInfoTable.php     |   0
 .../Test/Block/Adminhtml/Shipment/Grid.php    |   0
 .../Test/Block/Adminhtml/View/Items.php       |   0
 .../Shipping/Test/Block/Order/Info.php        |   0
 .../Shipping/Test/Block/Order/Shipment.php    |   0
 .../Test/Block/Order/Shipment/Items.php       |   0
 .../AssertCityBasedShippingRateChanged.php    |   0
 .../Test/Constraint/AssertNoShipButton.php    |   0
 .../Constraint/AssertShipTotalQuantity.php    |   0
 .../AssertShipmentInShipmentsGrid.php         |   0
 .../AssertShipmentInShipmentsTab.php          |   0
 .../Test/Constraint/AssertShipmentItems.php   |   0
 .../AssertShipmentNotInShipmentsGrid.php      |   0
 .../AssertShipmentSuccessCreateMessage.php    |   0
 .../AssertShippingMethodOnPrintOrder.php      |   0
 .../AssertTrackingDetailsIsPresent.php        |   0
 .../Magento/Shipping/Test/Fixture/Method.php  |   0
 .../Test/Page/Adminhtml/OrderShipmentNew.xml  |   0
 .../Test/Page/Adminhtml/OrderShipmentView.xml |   0
 .../Test/Page/Adminhtml/SalesShipmentView.xml |   0
 .../Test/Page/Adminhtml/ShipmentIndex.xml     |   0
 .../Shipping/Test/Page/SalesGuestPrint.xml    |   0
 .../Shipping/Test/Page/ShipmentView.xml       |   0
 .../Shipping/Test/Repository/ConfigData.xml   |   0
 .../Shipping/Test/Repository/Method.php       |   0
 .../TestCase/CityBasedShippingRateTest.php    |   0
 .../TestCase/CreateShipmentEntityTest.php     |   0
 .../TestCase/CreateShipmentEntityTest.xml     |   0
 .../SalesShippingReportEntityTest.php         |   0
 .../SalesShippingReportEntityTest.xml         |   0
 .../TrackingShipmentForPlacedOrderTest.php    |   0
 .../TrackingShipmentForPlacedOrderTest.xml    |   0
 .../Test/TestStep/AddTrackingNumberStep.php   |   0
 .../TestStep/FillShippingAddressesStep.php    |   0
 .../app/Magento/Shipping/Test/etc/di.xml      |   0
 .../Magento/Shipping/Test/etc/testcase.xml    |   0
 .../Test/Block/Adminhtml/Order/Grid.php       |   0
 .../Adminhtml/Order/View/FraudProtection.php  |   0
 .../Test/Block/SignifydConsole/CaseInfo.php   |   0
 .../Test/Block/SignifydConsole/CaseSearch.php |   0
 .../Block/SignifydConsole/SignifydLogin.php   |   0
 .../Test/Block/SignifydConsole/Webhooks.php   |   0
 ...tingSignifydGuaranteeInCommentsHistory.php |   0
 .../Test/Constraint/AssertCaseInfoOnAdmin.php |   0
 .../AssertCaseInfoOnSignifydConsole.php       |   0
 .../AssertSignifydCaseInCommentsHistory.php   |   0
 .../AssertSignifydCaseInOrdersGrid.php        |   0
 ...gnifydGuaranteeCancelInCommentsHistory.php |   0
 .../Signifyd/Test/Fixture/SignifydAccount.xml |   0
 .../Signifyd/Test/Fixture/SignifydAddress.xml |   0
 .../Fixture/SignifydAddress/Firstname.php     |   0
 .../Signifyd/Test/Fixture/SignifydData.xml    |   0
 .../Test/Page/Adminhtml/OrdersGrid.xml        |   0
 .../Test/Page/Adminhtml/SalesOrderView.xml    |   0
 .../Page/SignifydConsole/SignifydCases.xml    |   0
 .../Page/SignifydConsole/SignifydLogin.xml    |   0
 .../SignifydConsole/SignifydNotifications.xml |   0
 .../Signifyd/Test/Repository/Address.xml      |   0
 .../Signifyd/Test/Repository/ConfigData.xml   |   0
 .../Signifyd/Test/Repository/Customer.xml     |   0
 .../Test/Repository/SignifydAccount.xml       |   0
 .../Signifyd/Test/Repository/SignifydData.xml |   0
 ...ymentWithSignifydGuaranteeDeclinedTest.php |   0
 ...ymentWithSignifydGuaranteeDeclinedTest.xml |   0
 ...ateSignifydGuaranteeAndCancelOrderTest.php |   0
 ...ateSignifydGuaranteeAndCancelOrderTest.xml |   0
 ...ymentWithSignifydGuaranteeDeclinedTest.php |   0
 ...ymentWithSignifydGuaranteeDeclinedTest.xml |   0
 .../Test/TestStep/OpenOrderGridStep.php       |   0
 .../Test/TestStep/SignifydCancelOrderStep.php |   0
 .../TestStep/SignifydCreateCustomerStep.php   |   0
 .../SignifydFillShippingAddressStep.php       |   0
 .../Test/TestStep/SignifydLoginStep.php       |   0
 .../Test/TestStep/SignifydObserveCaseStep.php |   0
 .../SignifydSetWebhookHandlersStep.php        |   0
 .../TestStep/UnholdAndCancelOrderStep.php     |   0
 .../app/Magento/Signifyd/Test/etc/di.xml      |   0
 .../Magento/Signifyd/Test/etc/testcase.xml    |   0
 .../Test/Block/Adminhtml/SitemapGrid.php      |   0
 .../Block/Adminhtml/SitemapPageActions.php    |   0
 .../Test/Constraint/AssertSitemapContent.php  |   0
 .../AssertSitemapFailFolderSaveMessage.php    |   0
 .../AssertSitemapFailPathSaveMessage.php      |   0
 .../Test/Constraint/AssertSitemapInGrid.php   |   0
 .../Constraint/AssertSitemapNotInGrid.php     |   0
 .../AssertSitemapSubmissionToRobotsTxt.php    |   0
 .../AssertSitemapSuccessDeleteMessage.php     |   0
 .../AssertSitemapSuccessGenerateMessage.php   |   0
 ...tSitemapSuccessSaveAndGenerateMessages.php |   0
 .../AssertSitemapSuccessSaveMessage.php       |   0
 .../Magento/Sitemap/Test/Fixture/Sitemap.xml  |   0
 .../Sitemap/Test/Handler/Sitemap/Curl.php     |   0
 .../Test/Handler/Sitemap/SitemapInterface.php |   0
 .../Test/Page/Adminhtml/SitemapEdit.xml       |   0
 .../Test/Page/Adminhtml/SitemapIndex.xml      |   0
 .../Test/Page/Adminhtml/SitemapNew.xml        |   0
 .../Sitemap/Test/Repository/ConfigData.xml    |   0
 .../Sitemap/Test/Repository/Sitemap.xml       |   0
 .../Test/TestCase/CreateSitemapEntityTest.php |   0
 .../Test/TestCase/CreateSitemapEntityTest.xml |   0
 .../Test/TestCase/DeleteSitemapEntityTest.php |   0
 .../Test/TestCase/DeleteSitemapEntityTest.xml |   0
 .../TestCase/GenerateSitemapEntityTest.php    |   0
 .../TestCase/GenerateSitemapEntityTest.xml    |   0
 .../Test/TestCase/NavigateMenuTest.xml        |   0
 .../Test/TestCase/UpdateSitemapEntityTest.php |   0
 .../Test/TestCase/UpdateSitemapEntityTest.xml |   0
 .../app/Magento/Sitemap/Test/etc/curl/di.xml  |   0
 .../tests/app/Magento/Sitemap/Test/etc/di.xml |   0
 .../app/Magento/Store/Test/Block/Switcher.php |   0
 .../Test/Constraint/AssertStoreBackend.php    |   0
 .../Test/Constraint/AssertStoreCodeInUrl.php  |   0
 .../AssertStoreDisabledErrorSaveMessage.php   |   0
 .../Store/Test/Constraint/AssertStoreForm.php |   0
 .../Test/Constraint/AssertStoreFrontend.php   |   0
 .../Test/Constraint/AssertStoreGroupForm.php  |   0
 .../Constraint/AssertStoreGroupInGrid.php     |   0
 .../AssertStoreGroupNoDeleteButton.php        |   0
 .../Constraint/AssertStoreGroupNotInGrid.php  |   0
 .../AssertStoreGroupOnStoreViewForm.php       |   0
 ...oreGroupSuccessDeleteAndBackupMessages.php |   0
 .../AssertStoreGroupSuccessDeleteMessage.php  |   0
 .../AssertStoreGroupSuccessSaveMessage.php    |   0
 .../Test/Constraint/AssertStoreInGrid.php     |   0
 .../Constraint/AssertStoreNoDeleteButton.php  |   0
 .../Test/Constraint/AssertStoreNotInGrid.php  |   0
 .../Constraint/AssertStoreNotOnFrontend.php   |   0
 ...ertStoreSuccessDeleteAndBackupMessages.php |   0
 .../AssertStoreSuccessDeleteMessage.php       |   0
 .../AssertStoreSuccessSaveMessage.php         |   0
 .../Test/Constraint/AssertWebsiteForm.php     |   0
 .../Test/Constraint/AssertWebsiteInGrid.php   |   0
 .../Constraint/AssertWebsiteNotInGrid.php     |   0
 .../Constraint/AssertWebsiteOnStoreForm.php   |   0
 ...tWebsiteSuccessDeleteAndBackupMessages.php |   0
 .../AssertWebsiteSuccessDeleteMessage.php     |   0
 .../AssertWebsiteSuccessSaveMessage.php       |   0
 .../app/Magento/Store/Test/Fixture/Store.xml  |   0
 .../Store/Test/Fixture/Store/GroupId.php      |   0
 .../Magento/Store/Test/Fixture/StoreGroup.xml |   0
 .../Test/Fixture/StoreGroup/CategoryId.php    |   0
 .../Test/Fixture/StoreGroup/WebsiteId.php     |   0
 .../Magento/Store/Test/Fixture/Website.xml    |   0
 .../Magento/Store/Test/Handler/Store/Curl.php |   0
 .../Test/Handler/Store/StoreInterface.php     |   0
 .../Store/Test/Handler/StoreGroup/Curl.php    |   0
 .../StoreGroup/StoreGroupInterface.php        |   0
 .../Store/Test/Handler/Website/Curl.php       |   0
 .../Test/Handler/Website/WebsiteInterface.php |   0
 .../Store/Test/Repository/ConfigData.xml      |   0
 .../Magento/Store/Test/Repository/Store.xml   |   0
 .../Store/Test/Repository/StoreGroup.xml      |   0
 .../Magento/Store/Test/Repository/Website.xml |   0
 .../AccessAdminWithStoreCodeInUrlTest.php     |   0
 .../AccessAdminWithStoreCodeInUrlTest.xml     |   0
 .../Test/TestCase/CreateStoreEntityTest.php   |   0
 .../Test/TestCase/CreateStoreEntityTest.xml   |   0
 .../TestCase/CreateStoreGroupEntityTest.php   |   0
 .../TestCase/CreateStoreGroupEntityTest.xml   |   0
 .../Test/TestCase/CreateWebsiteEntityTest.php |   0
 .../Test/TestCase/CreateWebsiteEntityTest.xml |   0
 .../Test/TestCase/DeleteStoreEntityTest.php   |   0
 .../Test/TestCase/DeleteStoreEntityTest.xml   |   0
 .../TestCase/DeleteStoreGroupEntityTest.php   |   0
 .../TestCase/DeleteStoreGroupEntityTest.xml   |   0
 .../Test/TestCase/DeleteWebsiteEntityTest.php |   0
 .../Test/TestCase/DeleteWebsiteEntityTest.xml |   0
 .../MoveStoreToOtherGroupSameWebsiteTest.php  |   0
 .../MoveStoreToOtherGroupSameWebsiteTest.xml  |   0
 .../Test/TestCase/UpdateStoreEntityTest.php   |   0
 .../Test/TestCase/UpdateStoreEntityTest.xml   |   0
 .../TestCase/UpdateStoreGroupEntityTest.php   |   0
 .../TestCase/UpdateStoreGroupEntityTest.xml   |   0
 .../Test/TestCase/UpdateWebsiteEntityTest.php |   0
 .../Test/TestCase/UpdateWebsiteEntityTest.xml |   0
 .../TestStep/DeleteWebsitesEntityStep.php     |   0
 .../TestStep/RestoreDefaultStoreViewStep.php  |   0
 .../app/Magento/Store/Test/etc/curl/di.xml    |   0
 .../tests/app/Magento/Store/Test/etc/di.xml   |   0
 .../Constraint/AssertApiInfoTitleOnPage.php   |   0
 .../AssertEndpointContentDisplay.php          |   0
 .../AssertServiceContentDisplay.php           |   0
 .../AssertSwaggerSectionLoadOnPage.php        |   0
 .../Swagger/Test/Page/SwaggerUiPage.php       |   0
 .../Test/TestCase/SwaggerUiForRestApiTest.php |   0
 .../Test/TestCase/SwaggerUiForRestApiTest.xml |   0
 .../Test/Block/Product/ListProduct.php        |   0
 .../Test/Block/Product/ViewWithSwatches.php   |   0
 ...tPriceWithSelectedSwatchOnCategoryPage.php |   0
 ...sertSelectedSwatchOptionsOnProductPage.php |   0
 .../AssertSwatchOptionsOnProductPage.php      |   0
 ...ertSwatchesAreNotVisibleOnCategoryPage.php |   0
 ...AssertSwatchesAreVisibleOnCategoryPage.php |   0
 .../Swatches/Test/Fixture/Cart/Item.php       |   0
 .../Test/Fixture/ConfigurableProduct.xml      |   0
 .../Test/Fixture/SwatchProductAttribute.xml   |   0
 .../Handler/SwatchProductAttribute/Curl.php   |   0
 .../SwatchProductAttributeInterface.php       |   0
 .../Page/Category/CatalogCategoryView.xml     |   0
 .../Test/Page/Product/CatalogProductView.xml  |   0
 .../Swatches/Test/Repository/ConfigData.xml   |   0
 .../Test/Repository/ConfigurableProduct.xml   |   0
 .../ConfigurableProduct/CheckoutData.xml      |   0
 .../ConfigurableAttributesData.xml            |   0
 .../Repository/SwatchProductAttribute.xml     |   0
 ...bleProductWithSwatchToShoppingCartTest.php |   0
 ...bleProductWithSwatchToShoppingCartTest.xml |   0
 ...wSwatchesInProductListOptionImpactTest.php |   0
 ...wSwatchesInProductListOptionImpactTest.xml |   0
 ...oductToCartFromCatalogCategoryPageStep.php |   0
 .../app/Magento/Swatches/Test/etc/curl/di.xml |   0
 .../Test/Block/Adminhtml/Rate/Edit/Form.php   |   0
 .../Test/Block/Adminhtml/Rate/Edit/Form.xml   |   0
 .../Adminhtml/Rate/Edit/FormPageActions.php   |   0
 .../Tax/Test/Block/Adminhtml/Rate/Grid.php    |   0
 .../Block/Adminhtml/Rate/GridPageActions.php  |   0
 .../Test/Block/Adminhtml/Rule/Edit/Form.php   |   0
 .../Test/Block/Adminhtml/Rule/Edit/Form.xml   |   0
 .../Block/Adminhtml/Rule/Edit/TaxRate.php     |   0
 .../Block/Adminhtml/Rule/Edit/TaxRate.xml     |   0
 .../Tax/Test/Block/Adminhtml/Rule/Grid.php    |   0
 ...tractAssertTaxCalculationAfterCheckout.php |   0
 ...tractAssertTaxRuleIsAppliedToAllPrices.php |   0
 ...stractAssertTaxWithCrossBorderApplying.php |   0
 ...OrderTaxOnBackendExcludingIncludingTax.php |   0
 .../AssertOrderTaxOnBackendExcludingTax.php   |   0
 .../AssertOrderTaxOnBackendIncludingTax.php   |   0
 ...tionAfterCheckoutExcludingIncludingTax.php |   0
 ...axCalculationAfterCheckoutExcludingTax.php |   0
 ...axCalculationAfterCheckoutIncludingTax.php |   0
 .../Tax/Test/Constraint/AssertTaxRateForm.php |   0
 .../Test/Constraint/AssertTaxRateInGrid.php   |   0
 .../Constraint/AssertTaxRateInTaxRule.php     |   0
 .../Constraint/AssertTaxRateNotInGrid.php     |   0
 .../Constraint/AssertTaxRateNotInTaxRule.php  |   0
 .../AssertTaxRateSuccessDeleteMessage.php     |   0
 .../AssertTaxRateSuccessSaveMessage.php       |   0
 .../Test/Constraint/AssertTaxRuleApplying.php |   0
 .../Tax/Test/Constraint/AssertTaxRuleForm.php |   0
 .../Test/Constraint/AssertTaxRuleInGrid.php   |   0
 .../Constraint/AssertTaxRuleIsApplied.php     |   0
 ...ppliedToAllPricesExcludingIncludingTax.php |   0
 ...axRuleIsAppliedToAllPricesExcludingTax.php |   0
 ...axRuleIsAppliedToAllPricesIncludingTax.php |   0
 .../Constraint/AssertTaxRuleIsNotApplied.php  |   0
 .../Constraint/AssertTaxRuleNotInGrid.php     |   0
 .../AssertTaxRuleSuccessDeleteMessage.php     |   0
 .../AssertTaxRuleSuccessSaveMessage.php       |   0
 .../AssertTaxWithCrossBorderApplied.php       |   0
 .../AssertTaxWithCrossBorderNotApplied.php    |   0
 .../app/Magento/Tax/Test/Fixture/TaxClass.xml |   0
 .../app/Magento/Tax/Test/Fixture/TaxRate.xml  |   0
 .../app/Magento/Tax/Test/Fixture/TaxRule.xml  |   0
 .../Tax/Test/Fixture/TaxRule/TaxClass.php     |   0
 .../Tax/Test/Fixture/TaxRule/TaxRate.php      |   0
 .../Tax/Test/Handler/Curl/RemoveTaxRule.php   |   0
 .../Tax/Test/Handler/TaxClass/Curl.php        |   0
 .../Handler/TaxClass/TaxClassInterface.php    |   0
 .../Tax/Test/Handler/TaxClass/Webapi.php      |   0
 .../Magento/Tax/Test/Handler/TaxRate/Curl.php |   0
 .../Test/Handler/TaxRate/TaxRateInterface.php |   0
 .../Tax/Test/Handler/TaxRate/Webapi.php       |   0
 .../Magento/Tax/Test/Handler/TaxRule/Curl.php |   0
 .../Test/Handler/TaxRule/TaxRuleInterface.php |   0
 .../Tax/Test/Handler/TaxRule/Webapi.php       |   0
 .../Tax/Test/Page/Adminhtml/TaxRateIndex.xml  |   0
 .../Tax/Test/Page/Adminhtml/TaxRateNew.xml    |   0
 .../Tax/Test/Page/Adminhtml/TaxRuleIndex.xml  |   0
 .../Tax/Test/Page/Adminhtml/TaxRuleNew.xml    |   0
 .../Tax/Test/Repository/ConfigData.xml        |   0
 .../Magento/Tax/Test/Repository/TaxClass.xml  |   0
 .../Magento/Tax/Test/Repository/TaxRate.xml   |   0
 .../Magento/Tax/Test/Repository/TaxRule.xml   |   0
 .../TestCase/ApplyTaxBasedOnVatIdTest.php     |   0
 .../TestCase/ApplyTaxBasedOnVatIdTest.xml     |   0
 .../Test/TestCase/CreateTaxRateEntityTest.php |   0
 .../Test/TestCase/CreateTaxRateEntityTest.xml |   0
 .../Test/TestCase/CreateTaxRuleEntityTest.php |   0
 .../Test/TestCase/CreateTaxRuleEntityTest.xml |   0
 .../Test/TestCase/DeleteTaxRateEntityTest.php |   0
 .../Test/TestCase/DeleteTaxRateEntityTest.xml |   0
 .../Test/TestCase/DeleteTaxRuleEntityTest.php |   0
 .../Test/TestCase/DeleteTaxRuleEntityTest.xml |   0
 .../Tax/Test/TestCase/NavigateMenuTest.xml    |   0
 .../Tax/Test/TestCase/TaxCalculationTest.php  |   0
 .../Tax/Test/TestCase/TaxCalculationTest.xml  |   0
 .../Test/TestCase/TaxWithCrossBorderTest.php  |   0
 .../Test/TestCase/TaxWithCrossBorderTest.xml  |   0
 .../Test/TestCase/UpdateTaxRateEntityTest.php |   0
 .../Test/TestCase/UpdateTaxRateEntityTest.xml |   0
 .../Test/TestCase/UpdateTaxRuleEntityTest.php |   0
 .../Test/TestCase/UpdateTaxRuleEntityTest.xml |   0
 .../Tax/Test/TestStep/CreateTaxRuleStep.php   |   0
 .../Test/TestStep/DeleteAllTaxRulesStep.php   |   0
 .../app/Magento/Tax/Test/etc/curl/di.xml      |   0
 .../tests/app/Magento/Tax/Test/etc/di.xml     |   0
 .../app/Magento/Tax/Test/etc/testcase.xml     |   0
 .../app/Magento/Tax/Test/etc/webapi/di.xml    |   0
 .../Theme/Test/Block/Html/Breadcrumbs.php     |   0
 .../Magento/Theme/Test/Block/Html/Footer.php  |   0
 .../Magento/Theme/Test/Block/Html/Logo.php    |   0
 .../Magento/Theme/Test/Block/Html/Title.php   |   0
 .../Magento/Theme/Test/Block/Html/Topmenu.php |   0
 .../app/Magento/Theme/Test/Block/Links.php    |   0
 .../Test/Page/CheckoutOnepageSuccess.xml      |   0
 .../Theme/Test/TestCase/NavigateMenuTest.xml  |   0
 .../Block/Adminhtml/AbstractContainer.php     |   0
 .../Adminhtml/AbstractFormContainers.php      |   0
 .../Ui/Test/Block/Adminhtml/DataGrid.php      |   0
 .../Ui/Test/Block/Adminhtml/FormSections.php  |   0
 .../Magento/Ui/Test/Block/Adminhtml/Modal.php |   0
 .../Ui/Test/Block/Adminhtml/Section.php       |   0
 .../app/Magento/Ui/Test/Block/Messages.php    |   0
 .../Test/Constraint/AssertGridFiltering.php   |   0
 .../Constraint/AssertGridFullTextSearch.php   |   0
 .../Ui/Test/Constraint/AssertGridSorting.php  |   0
 .../GridFilteringDeletedEntityTest.php        |   0
 .../Ui/Test/TestCase/GridFilteringTest.php    |   0
 .../Test/TestCase/GridFullTextSearchTest.php  |   0
 .../Ui/Test/TestCase/GridSortingTest.php      |   0
 .../tests/app/Magento/Ui/Test/etc/di.xml      |   0
 .../Ups/Test/Repository/ConfigData.xml        |   0
 .../Ups/Test/TestCase/OnePageCheckoutTest.xml |   0
 .../Block/Adminhtml/Catalog/Category/Grid.php |   0
 .../Block/Adminhtml/Catalog/Category/Tree.php |   0
 .../Adminhtml/Catalog/Edit/UrlRewriteForm.php |   0
 .../Adminhtml/Catalog/Edit/UrlRewriteForm.xml |   0
 .../Block/Adminhtml/Catalog/Product/Grid.php  |   0
 .../Test/Block/Adminhtml/Cms/Page/Grid.php    |   0
 .../Test/Block/Adminhtml/Selector.php         |   0
 .../AssertCategoryUrlWithCustomStoreView.php  |   0
 .../AssertPageByUrlRewriteIsNotFound.php      |   0
 .../AssertUrlRewriteAfterDeletingCategory.php |   0
 .../AssertUrlRewriteCategoryInGrid.php        |   0
 .../AssertUrlRewriteCategoryNotInGrid.php     |   0
 .../AssertUrlRewriteCategoryRedirect.php      |   0
 .../AssertUrlRewriteCustomRedirect.php        |   0
 .../AssertUrlRewriteCustomSearchRedirect.php  |   0
 .../AssertUrlRewriteDeletedMessage.php        |   0
 .../Constraint/AssertUrlRewriteInGrid.php     |   0
 .../Constraint/AssertUrlRewriteNotInGrid.php  |   0
 .../AssertUrlRewriteProductInGrid.php         |   0
 .../AssertUrlRewriteProductNotInGrid.php      |   0
 .../AssertUrlRewriteProductRedirect.php       |   0
 .../AssertUrlRewriteRedirectInGrid.php        |   0
 .../AssertUrlRewriteSaveMessage.php           |   0
 ...AssertUrlRewriteSuccessOutsideRedirect.php |   0
 .../AssertUrlRewriteUpdatedProductInGrid.php  |   0
 .../AssertUrlRewritesCategoriesInGrid.php     |   0
 .../AssertUrlRewritesRedirectInGrid.php       |   0
 .../UrlRewrite/Test/Fixture/UrlRewrite.xml    |   0
 .../Test/Fixture/UrlRewrite/StoreId.php       |   0
 .../Test/Fixture/UrlRewrite/TargetPath.php    |   0
 .../Test/Handler/UrlRewrite/Curl.php          |   0
 .../UrlRewrite/UrlRewriteInterface.php        |   0
 .../Test/Page/Adminhtml/UrlRewriteEdit.xml    |   0
 .../Test/Page/Adminhtml/UrlRewriteIndex.xml   |   0
 .../UrlRewrite/Test/Repository/UrlRewrite.xml |   0
 .../Test/TestCase/CategoryUrlRewriteTest.php  |   0
 .../Test/TestCase/CategoryUrlRewriteTest.xml  |   0
 .../CreateCategoryRewriteEntityTest.php       |   0
 .../CreateCategoryRewriteEntityTest.xml       |   0
 .../CreateCustomUrlRewriteEntityTest.php      |   0
 .../CreateCustomUrlRewriteEntityTest.xml      |   0
 .../CreateProductUrlRewriteEntityTest.php     |   0
 .../CreateProductUrlRewriteEntityTest.xml     |   0
 ...oductWithSeveralWebsitesUrlRewriteTest.php |   0
 ...oductWithSeveralWebsitesUrlRewriteTest.xml |   0
 .../DeleteCategoryUrlRewriteEntityTest.php    |   0
 .../DeleteCategoryUrlRewriteEntityTest.xml    |   0
 .../DeleteCustomUrlRewriteEntityTest.php      |   0
 .../DeleteCustomUrlRewriteEntityTest.xml      |   0
 .../DeleteProductUrlRewriteEntityTest.php     |   0
 .../DeleteProductUrlRewriteEntityTest.xml     |   0
 .../Test/TestCase/NavigateMenuTest.xml        |   0
 .../UpdateCategoryUrlRewriteEntityTest.php    |   0
 .../UpdateCategoryUrlRewriteEntityTest.xml    |   0
 .../UpdateCustomUrlRewriteEntityTest.php      |   0
 .../UpdateCustomUrlRewriteEntityTest.xml      |   0
 .../UpdateProductUrlRewriteEntityTest.php     |   0
 .../UpdateProductUrlRewriteEntityTest.xml     |   0
 .../Magento/UrlRewrite/Test/etc/curl/di.xml   |   0
 .../Test/Block/Adminhtml/LockedUsersGrid.php  |   0
 .../Test/Block/Adminhtml/Role/PageActions.php |   0
 .../Test/Block/Adminhtml/Role/RoleForm.php    |   0
 .../Test/Block/Adminhtml/Role/RoleForm.xml    |   0
 .../Test/Block/Adminhtml/Role/Tab/Role.php    |   0
 .../Block/Adminhtml/Role/Tab/User/Grid.php    |   0
 .../User/Test/Block/Adminhtml/RoleGrid.php    |   0
 .../Test/Block/Adminhtml/User/Edit/Form.php   |   0
 .../Block/Adminhtml/User/Edit/PageActions.php |   0
 .../Block/Adminhtml/User/Edit/Tab/Roles.php   |   0
 .../Test/Block/Adminhtml/User/Tab/Role.php    |   0
 .../Block/Adminhtml/User/Tab/Role/Grid.php    |   0
 .../Test/Block/Adminhtml/User/UserForm.php    |   0
 .../Test/Block/Adminhtml/User/UserForm.xml    |   0
 .../User/Test/Block/Adminhtml/UserGrid.php    |   0
 .../AssertAccessTokensErrorRevokeMessage.php  |   0
 .../AssertImpossibleDeleteYourOwnAccount.php  |   0
 .../AssertImpossibleDeleteYourOwnRole.php     |   0
 .../AssertIncorrectUserPassword.php           |   0
 .../User/Test/Constraint/AssertRoleInGrid.php |   0
 .../Test/Constraint/AssertRoleNotInGrid.php   |   0
 .../AssertRoleSuccessDeleteMessage.php        |   0
 .../AssertRoleSuccessSaveMessage.php          |   0
 .../Constraint/AssertUserDuplicateMessage.php |   0
 ...sertUserFailedLoginByPermissionMessage.php |   0
 .../AssertUserFailedLoginMessage.php          |   0
 .../User/Test/Constraint/AssertUserInGrid.php |   0
 .../AssertUserInvalidEmailHostnameMessage.php |   0
 .../AssertUserInvalidEmailMessage.php         |   0
 .../Test/Constraint/AssertUserNotInGrid.php   |   0
 .../AssertUserPasswordChangedSuccessfully.php |   0
 ...rPermissionsOnlyConfigurationIndexPage.php |   0
 .../AssertUserRoleRestrictedAccess.php        |   0
 .../AssertUserSuccessDeleteMessage.php        |   0
 .../Constraint/AssertUserSuccessLogOut.php    |   0
 .../Constraint/AssertUserSuccessLogin.php     |   0
 .../AssertUserSuccessSaveMessage.php          |   0
 .../app/Magento/User/Test/Fixture/Role.xml    |   0
 .../User/Test/Fixture/Role/InRoleUsers.php    |   0
 .../app/Magento/User/Test/Fixture/User.xml    |   0
 .../Test/Fixture/User/CurrentPassword.php     |   0
 .../Magento/User/Test/Fixture/User/RoleId.php |   0
 .../Magento/User/Test/Handler/Role/Curl.php   |   0
 .../User/Test/Handler/Role/RoleInterface.php  |   0
 .../Magento/User/Test/Handler/User/Curl.php   |   0
 .../User/Test/Handler/User/UserInterface.php  |   0
 .../User/Test/Page/Adminhtml/UserEdit.xml     |   0
 .../User/Test/Page/Adminhtml/UserIndex.xml    |   0
 .../User/Test/Page/Adminhtml/UserLocks.xml    |   0
 .../Test/Page/Adminhtml/UserRoleEditRole.xml  |   0
 .../Test/Page/Adminhtml/UserRoleIndex.xml     |   0
 .../User/Test/Repository/ConfigData.xml       |   0
 .../app/Magento/User/Test/Repository/Role.xml |   0
 .../app/Magento/User/Test/Repository/User.xml |   0
 .../TestCase/CreateAdminUserEntityTest.php    |   0
 .../TestCase/CreateAdminUserEntityTest.xml    |   0
 .../CreateAdminUserRoleEntityTest.php         |   0
 .../CreateAdminUserRoleEntityTest.xml         |   0
 .../Test/TestCase/CustomAclPermissionTest.php |   0
 .../TestCase/DeleteAdminUserEntityTest.php    |   0
 .../TestCase/DeleteAdminUserEntityTest.xml    |   0
 .../TestCase/DeleteUserRoleEntityTest.php     |   0
 .../TestCase/DeleteUserRoleEntityTest.xml     |   0
 .../Test/TestCase/LockAdminUserEntityTest.php |   0
 .../Test/TestCase/LockAdminUserEntityTest.xml |   0
 .../User/Test/TestCase/NavigateMenuTest.xml   |   0
 ...lAccessTokensForAdminWithoutTokensTest.php |   0
 ...lAccessTokensForAdminWithoutTokensTest.xml |   0
 .../Test/TestCase/UnlockAdminUserTest.php     |   0
 .../Test/TestCase/UnlockAdminUserTest.xml     |   0
 .../TestCase/UpdateAdminUserEntityTest.php    |   0
 .../TestCase/UpdateAdminUserEntityTest.xml    |   0
 .../UpdateAdminUserRoleEntityTest.php         |   0
 .../UpdateAdminUserRoleEntityTest.xml         |   0
 ...ePasswordUserEntityPciRequirementsTest.php |   0
 ...ePasswordUserEntityPciRequirementsTest.xml |   0
 .../UserLoginAfterChangingPermissionsTest.php |   0
 .../UserLoginAfterChangingPermissionsTest.xml |   0
 .../User/Test/TestStep/CreateUserStep.php     |   0
 .../Test/TestStep/LoginUserOnBackendStep.php  |   0
 .../Test/TestStep/LogoutUserOnBackendStep.php |   0
 .../app/Magento/User/Test/etc/curl/di.xml     |   0
 .../Usps/Test/Repository/ConfigData.xml       |   0
 .../Test/TestCase/OnePageCheckoutTest.xml     |   0
 .../System/Variable/Edit/VariableForm.php     |   0
 .../System/Variable/Edit/VariableForm.xml     |   0
 .../System/Variable/FormPageActions.php       |   0
 .../Block/Adminhtml/System/Variable/Grid.php  |   0
 .../Constraint/AssertCustomVariableForm.php   |   0
 .../Constraint/AssertCustomVariableInGrid.php |   0
 .../Constraint/AssertCustomVariableInPage.php |   0
 .../AssertCustomVariableNotInCmsPageForm.php  |   0
 .../AssertCustomVariableNotInGrid.php         |   0
 .../AssertCustomVariableRestrictedAccess.php  |   0
 ...sertCustomVariableSuccessDeleteMessage.php |   0
 ...AssertCustomVariableSuccessSaveMessage.php |   0
 .../Variable/Test/Fixture/SystemVariable.xml  |   0
 .../Test/Handler/SystemVariable/Curl.php      |   0
 .../SystemVariableInterface.php               |   0
 .../Page/Adminhtml/SystemVariableIndex.xml    |   0
 .../Test/Page/Adminhtml/SystemVariableNew.xml |   0
 .../Test/Repository/SystemVariable.xml        |   0
 .../CreateCustomVariableEntityTest.php        |   0
 .../CreateCustomVariableEntityTest.xml        |   0
 .../Test/TestCase/CustomAclPermissionTest.xml |   0
 .../DeleteCustomVariableEntityTest.php        |   0
 .../DeleteCustomVariableEntityTest.xml        |   0
 .../Test/TestCase/NavigateMenuTest.xml        |   0
 .../UpdateCustomVariableEntityTest.php        |   0
 .../UpdateCustomVariableEntityTest.xml        |   0
 .../app/Magento/Variable/Test/etc/curl/di.xml |   0
 .../Block/Onepage/Payment/Method/Vault.php    |   0
 .../Vault/Test/Block/StoredPayments.php       |   0
 .../AssertCreditCardNotPresentOnCheckout.php  |   0
 .../AssertSaveCreditCardOptionNotPresent.php  |   0
 .../AssertStoredPaymentDeletedMessage.php     |   0
 .../Vault/Test/Page/CheckoutOnepage.xml       |   0
 .../Vault/Test/Page/StoredPaymentMethods.xml  |   0
 .../TestCase/CreateVaultOrderBackendTest.php  |   0
 .../TestCase/DeleteSavedCreditCardTest.php    |   0
 .../TestCase/DeleteSavedCreditCardTest.xml    |   0
 .../Test/TestCase/ReorderUsingVaultTest.php   |   0
 .../Test/TestCase/UseVaultOnCheckoutTest.php  |   0
 .../CheckSaveCreditCardOptionStep.php         |   0
 .../DeleteCreditCardFromMyAccountStep.php     |   0
 .../Test/TestStep/DeleteStoredPaymentStep.php |   0
 .../TestStep/SaveCreditCardOnBackendStep.php  |   0
 .../Test/TestStep/SaveCreditCardStep.php      |   0
 .../TestStep/SubmitOrderWithVaultStep.php     |   0
 .../TestStep/UseSavedPaymentMethodStep.php    |   0
 .../TestStep/UseVaultPaymentTokenStep.php     |   0
 .../tests/app/Magento/Vault/Test/etc/di.xml   |   0
 .../app/Magento/Vault/Test/etc/testcase.xml   |   0
 .../Edit/Section/ProductDetails/Fpt.php       |   0
 .../app/Magento/Weee/Test/Block/Cart.php      |   0
 .../Magento/Weee/Test/Block/Cart/CartItem.php |   0
 .../Weee/Test/Block/Cart/CartItem/Fpt.php     |   0
 .../Magento/Weee/Test/Block/Cart/Totals.php   |   0
 .../Weee/Test/Block/Cart/Totals/Fpt.php       |   0
 .../Weee/Test/Block/Product/ListProduct.php   |   0
 .../Magento/Weee/Test/Block/Product/Price.php |   0
 .../Block/Product/ProductList/ProductItem.php |   0
 .../Magento/Weee/Test/Block/Product/View.php  |   0
 .../Weee/Test/Constraint/AssertFptApplied.php |   0
 .../Page/Category/CatalogCategoryView.xml     |   0
 .../Magento/Weee/Test/Page/CheckoutCart.xml   |   0
 .../Test/Page/Product/CatalogProductView.xml  |   0
 .../Weee/Test/Repository/ConfigData.xml       |   0
 .../Test/TestCase/CreateTaxWithFptTest.php    |   0
 .../Test/TestCase/CreateTaxWithFptTest.xml    |   0
 .../tests/app/Magento/Weee/Test/etc/di.xml    |   0
 .../Block/Adminhtml/Widget/ChosenOption.php   |   0
 .../Widget/Instance/Edit/Tab/Parameters.php   |   0
 .../ParametersType/CatalogCategoryLink.php    |   0
 .../ParametersType/CatalogCategoryLink.xml    |   0
 .../CatalogCategoryLink/Form.php              |   0
 .../CatalogCategoryLink/Form.xml              |   0
 .../ParametersType/CatalogNewProductsList.php |   0
 .../ParametersType/CatalogNewProductsList.xml |   0
 .../Tab/ParametersType/CatalogProductLink.php |   0
 .../Tab/ParametersType/CatalogProductLink.xml |   0
 .../CatalogProductLink/Grid.php               |   0
 .../Edit/Tab/ParametersType/CmsPageLink.php   |   0
 .../Edit/Tab/ParametersType/CmsPageLink.xml   |   0
 .../Tab/ParametersType/CmsPageLink/Grid.php   |   0
 .../Tab/ParametersType/CmsStaticBlock.php     |   0
 .../Tab/ParametersType/CmsStaticBlock.xml     |   0
 .../ParametersType/CmsStaticBlock/Grid.php    |   0
 .../Tab/ParametersType/ParametersForm.php     |   0
 .../RecentlyComparedProducts.php              |   0
 .../RecentlyComparedProducts.xml              |   0
 .../ParametersType/RecentlyViewedProducts.php |   0
 .../ParametersType/RecentlyViewedProducts.xml |   0
 .../Widget/Instance/Edit/Tab/Settings.php     |   0
 .../Instance/Edit/Tab/WidgetInstance.php      |   0
 .../Tab/WidgetInstanceType/Categories.php     |   0
 .../Tab/WidgetInstanceType/Categories.xml     |   0
 .../Tab/WidgetInstanceType/GenericPages.php   |   0
 .../Tab/WidgetInstanceType/GenericPages.xml   |   0
 .../Tab/WidgetInstanceType/Product/Grid.php   |   0
 .../Edit/Tab/WidgetInstanceType/Products.php  |   0
 .../Edit/Tab/WidgetInstanceType/Products.xml  |   0
 .../WidgetInstanceType/WidgetInstanceForm.php |   0
 .../Widget/Instance/Edit/WidgetForm.php       |   0
 .../Widget/Instance/Edit/WidgetForm.xml       |   0
 .../Block/Adminhtml/Widget/WidgetGrid.php     |   0
 .../Test/Block/Adminhtml/WidgetForm.php       |   0
 .../Test/Block/Adminhtml/WidgetForm.xml       |   0
 .../Magento/Widget/Test/Block/WidgetView.php  |   0
 .../AssertProductInCatalogNewProductsList.php |   0
 .../AssertThemeFilterValuesOnWidgetGrid.php   |   0
 .../AssertWidgetAbsentOnFrontendHome.php      |   0
 .../AssertWidgetCatalogCategoryLink.php       |   0
 .../AssertWidgetCatalogNewProductsList.php    |   0
 .../Constraint/AssertWidgetCmsPageLink.php    |   0
 .../Test/Constraint/AssertWidgetInGrid.php    |   0
 .../AssertWidgetOnFrontendInCatalog.php       |   0
 .../Constraint/AssertWidgetOnProductPage.php  |   0
 .../Constraint/AssertWidgetProductLink.php    |   0
 .../AssertWidgetRecentlyComparedProducts.php  |   0
 .../AssertWidgetRecentlyViewedProducts.php    |   0
 .../AssertWidgetSuccessDeleteMessage.php      |   0
 .../AssertWidgetSuccessSaveMessage.php        |   0
 .../Test/Constraint/AssertWidgetsInGrid.php   |   0
 .../Magento/Widget/Test/Fixture/Widget.xml    |   0
 .../Widget/Test/Fixture/Widget/Parameters.php |   0
 .../Widget/Test/Fixture/Widget/StoreIds.php   |   0
 .../Test/Fixture/Widget/WidgetInstance.php    |   0
 .../Widget/Test/Handler/Widget/Curl.php       |   0
 .../Test/Handler/Widget/WidgetInterface.php   |   0
 .../Page/Adminhtml/WidgetInstanceEdit.xml     |   0
 .../Page/Adminhtml/WidgetInstanceIndex.xml    |   0
 .../Test/Page/Adminhtml/WidgetInstanceNew.xml |   0
 .../Magento/Widget/Test/Repository/Widget.xml |   0
 .../Test/Repository/Widget/Parameters.xml     |   0
 .../Test/Repository/Widget/WidgetInstance.xml |   0
 .../AbstractCreateWidgetEntityTest.php        |   0
 .../Test/TestCase/CreateWidgetEntityTest.php  |   0
 .../Test/TestCase/CreateWidgetEntityTest.xml  |   0
 .../Test/TestCase/CreateWidgetsEntityTest.php |   0
 .../Test/TestCase/CreateWidgetsEntityTest.xml |   0
 .../Test/TestCase/DeleteWidgetEntityTest.php  |   0
 .../Test/TestCase/DeleteWidgetEntityTest.xml  |   0
 .../Widget/Test/TestCase/NavigateMenuTest.xml |   0
 .../Test/TestStep/DeleteAllWidgetsStep.php    |   0
 .../app/Magento/Widget/Test/etc/curl/di.xml   |   0
 .../tests/app/Magento/Widget/Test/etc/di.xml  |   0
 .../Adminhtml/Customer/Edit/Tab/Wishlist.php  |   0
 .../Customer/Edit/Tab/Wishlist/Grid.php       |   0
 .../Block/Adminhtml/Edit/CustomerForm.xml     |   0
 .../Wishlist/Test/Block/Customer/Sharing.php  |   0
 .../Wishlist/Test/Block/Customer/Sharing.xml  |   0
 .../Wishlist/Test/Block/Customer/Wishlist.php |   0
 .../Test/Block/Customer/Wishlist/Items.php    |   0
 .../Block/Customer/Wishlist/Items/Product.php |   0
 .../Block/Customer/Wishlist/Items/Product.xml |   0
 .../AbstractAssertWishlistProductDetails.php  |   0
 ...sertAddProductToWishlistSuccessMessage.php |   0
 ...AssertCustomerWishlistOnBackendIsEmpty.php |   0
 ...ertMoveProductToWishlistSuccessMessage.php |   0
 .../AssertProductDetailsInWishlist.php        |   0
 ...ProductInCustomerWishlistOnBackendGrid.php |   0
 ...ductIsPresentInCustomerBackendWishlist.php |   0
 .../AssertProductIsPresentInWishlist.php      |   0
 .../AssertProductPriceIsNotZero.php           |   0
 .../AssertProductsIsAbsentInWishlist.php      |   0
 ...uctsIsPresentInCustomerBackendWishlist.php |   0
 .../Test/Constraint/AssertWishlistIsEmpty.php |   0
 .../Constraint/AssertWishlistShareMessage.php |   0
 .../Wishlist/Test/Page/WishlistIndex.xml      |   0
 .../Wishlist/Test/Page/WishlistShare.xml      |   0
 .../Test/TestCase/AbstractWishlistTest.php    |   0
 .../AddProductToWishlistEntityTest.php        |   0
 .../AddProductToWishlistEntityTest.xml        |   0
 ...CartFromCustomerWishlistOnFrontendTest.php |   0
 ...CartFromCustomerWishlistOnFrontendTest.xml |   0
 ...ProductInCustomerWishlistOnBackendTest.php |   0
 ...ProductInCustomerWishlistOnBackendTest.xml |   0
 ...roductInCustomerWishlistOnFrontendTest.php |   0
 ...roductInCustomerWishlistOnFrontendTest.xml |   0
 ...oductFromCustomerWishlistOnBackendTest.php |   0
 ...oductFromCustomerWishlistOnBackendTest.xml |   0
 ...leteProductsFromWishlistOnFrontendTest.php |   0
 ...leteProductsFromWishlistOnFrontendTest.xml |   0
 ...eProductFromShoppingCartToWishlistTest.php |   0
 ...eProductFromShoppingCartToWishlistTest.xml |   0
 .../Test/TestCase/ShareWishlistEntityTest.php |   0
 .../Test/TestCase/ShareWishlistEntityTest.xml |   0
 ...ProductInCustomerWishlistOnBackendTest.php |   0
 ...ProductInCustomerWishlistOnBackendTest.xml |   0
 .../TestStep/AddProductsToWishlistStep.php    |   0
 .../Magento/Mtf/TestSuite/InjectableTests.php |   0
 .../TestSuite/InjectableTests/3rd_party.xml   |   0
 .../InjectableTests/3rd_party_single_flow.xml |   0
 .../TestSuite/InjectableTests/acceptance.xml  |   0
 .../InjectableTests/acceptance_unstable.xml   |   0
 .../Mtf/TestSuite/InjectableTests/basic.xml   |   0
 .../TestSuite/InjectableTests/basic_green.xml |   0
 .../TestSuite/InjectableTests/category.xml    |   0
 .../InjectableTests/extended_acceptance.xml   |   0
 .../InjectableTests/installation.xml          |   0
 .../Mtf/TestSuite/InjectableTests/mvp.xml     |   0
 .../Mtf/TestSuite/InjectableTests/setup.xml   |   0
 .../InjectableTests/travis_acceptance.xml     |   0
 .../Mtf/TestSuite/InjectableTests/upgrade.xml |   0
 dev/tests/functional/utils/bootstrap.php      |   0
 dev/tests/functional/utils/command.php        |   0
 .../utils/deleteMagentoGeneratedCode.php      |   0
 dev/tests/functional/utils/export.php         |   0
 dev/tests/functional/utils/generate.php       |   0
 .../functional/utils/generate/factory.php     |   0
 .../functional/utils/generate/fixture.php     |   0
 .../functional/utils/generate/handler.php     |   0
 dev/tests/functional/utils/generate/page.php  |   0
 .../functional/utils/generate/repository.php  |   0
 .../functional/utils/generateAllureReport.php |   0
 .../functional/utils/generateFixtureXml.php   |   0
 dev/tests/functional/utils/locales.php        |   0
 dev/tests/functional/utils/log.php            |   0
 dev/tests/functional/utils/mtf                |   0
 dev/tests/functional/utils/pathChecker.php    |   0
 dev/tests/functional/utils/website.php        |   0
 dev/tests/integration/.gitignore              |   0
 .../etc/module.xml                            |   0
 .../etc/zip_codes.xml                         |   0
 .../registration.php                          |   0
 .../Gateway/Command/DoNothingCommand.php      |   0
 .../etc/config.xml                            |   0
 .../TestModuleFakePaymentMethod/etc/di.xml    |   0
 .../etc/module.xml                            |   0
 .../registration.php                          |   0
 .../Magento/TestModuleSample/composer.json    |   0
 .../Magento/TestModuleSample/etc/module.xml   |   0
 .../Magento/TestModuleSample/registration.php |   0
 .../integration/etc/config-global.php.dist    |   0
 .../integration/etc/di/preferences/ce.php     |   0
 .../etc/install-config-mysql.php.dist         |   0
 .../etc/install-config-mysql.travis.php.dist  |   0
 .../Annotation/AdminConfigFixture.php         |   0
 .../TestFramework/Annotation/AppArea.php      |   0
 .../TestFramework/Annotation/AppIsolation.php |   0
 .../TestFramework/Annotation/Cache.php        |   0
 .../Annotation/ComponentRegistrarFixture.php  |   0
 .../Annotation/ConfigFixture.php              |   0
 .../TestFramework/Annotation/DataFixture.php  |   0
 .../DataFixtureBeforeTransaction.php          |   0
 .../TestFramework/Annotation/DbIsolation.php  |   0
 .../Api/Config/Reader/FileResolver.php        |   0
 .../Magento/TestFramework/App/Config.php      |   0
 .../TestFramework/App/EnvironmentFactory.php  |   0
 .../Magento/TestFramework/App/Filesystem.php  |   0
 .../TestFramework/App/MutableScopeConfig.php  |   0
 .../ObjectManager/Environment/Developer.php   |   0
 .../TestFramework/App/ReinitableConfig.php    |   0
 .../Magento/TestFramework/App/State.php       |   0
 .../Magento/TestFramework/Application.php     |   0
 .../TestFramework/Backend/App/Config.php      |   0
 .../Magento/TestFramework/Bootstrap.php       |   0
 .../TestFramework/Bootstrap/DocBlock.php      |   0
 .../TestFramework/Bootstrap/Environment.php   |   0
 .../TestFramework/Bootstrap/Memory.php        |   0
 .../TestFramework/Bootstrap/MemoryFactory.php |   0
 .../TestFramework/Bootstrap/Profiler.php      |   0
 .../TestFramework/Bootstrap/Settings.php      |   0
 .../Magento/TestFramework/Config.php          |   0
 .../Magento/TestFramework/CookieManager.php   |   0
 .../Magento/TestFramework/Db/AbstractDb.php   |   0
 .../TestFramework/Db/Adapter/Mysql.php        |   0
 .../Db/Adapter/TransactionInterface.php       |   0
 .../TestFramework/Db/ConnectionAdapter.php    |   0
 .../Magento/TestFramework/Db/Mysql.php        |   0
 .../Magento/TestFramework/Db/Sequence.php     |   0
 .../TestFramework/Db/Sequence/Builder.php     |   0
 .../Magento/TestFramework/Entity.php          |   0
 .../TestFramework/ErrorLog/Listener.php       |   0
 .../Magento/TestFramework/ErrorLog/Logger.php |   0
 .../Magento/TestFramework/Event/Magento.php   |   0
 .../TestFramework/Event/Param/Transaction.php |   0
 .../Magento/TestFramework/Event/PhpUnit.php   |   0
 .../TestFramework/Event/Transaction.php       |   0
 .../Magento/TestFramework/EventManager.php    |   0
 .../Magento/TestFramework/Helper/Api.php      |   0
 .../TestFramework/Helper/Bootstrap.php        |   0
 .../TestFramework/Helper/CacheCleaner.php     |   0
 .../Magento/TestFramework/Helper/Config.php   |   0
 .../Magento/TestFramework/Helper/Eav.php      |   0
 .../Magento/TestFramework/Helper/Factory.php  |   0
 .../Magento/TestFramework/Helper/Memory.php   |   0
 .../Magento/TestFramework/Helper/Xpath.php    |   0
 .../TestFramework/Indexer/TestCase.php        |   0
 .../TestFramework/Interception/PluginList.php |   0
 .../TestFramework/Isolation/AppConfig.php     |   0
 .../Isolation/DeploymentConfig.php            |   0
 .../Isolation/WorkingDirectory.php            |   0
 .../TestFramework/Listener/ExtededTestdox.php |   0
 .../Mail/Template/TransportBuilderMock.php    |   0
 .../Mail/TransportInterfaceMock.php           |   0
 .../Magento/TestFramework/MemoryLimit.php     |   0
 .../Magento/TestFramework/ObjectManager.php   |   0
 .../TestFramework/ObjectManager/Config.php    |   0
 .../ObjectManager/Configurator.php            |   0
 .../TestFramework/ObjectManagerFactory.php    |   0
 .../TestFramework/Profiler/OutputBamboo.php   |   0
 .../Magento/TestFramework/Request.php         |   0
 .../Magento/TestFramework/Response.php        |   0
 .../TestFramework/Store/StoreManager.php      |   0
 .../TestCase/AbstractBackendController.php    |   0
 .../TestCase/AbstractConfigFiles.php          |   0
 .../TestCase/AbstractController.php           |   0
 .../TestCase/AbstractIntegrity.php            |   0
 .../Magento/TestFramework/View/Layout.php     |   0
 .../Workaround/Cleanup/StaticProperties.php   |   0
 .../Workaround/Cleanup/TestCaseProperties.php |   0
 .../TestFramework/Workaround/Segfault.php     |   0
 dev/tests/integration/framework/autoload.php  |   0
 dev/tests/integration/framework/bootstrap.php |   0
 .../framework/deployTestModules.php           |   0
 .../tests/unit/framework/bootstrap.php        |   0
 .../framework/tests/unit/phpunit.xml.dist     |   0
 .../Annotation/AdminConfigFixtureTest.php     |   0
 .../Magento/Test/Annotation/AppAreaTest.php   |   0
 .../Test/Annotation/AppIsolationTest.php      |   0
 .../ComponentRegistrarFixtureTest.php         |   0
 .../Test/Annotation/ConfigFixtureTest.php     |   0
 .../Test/Annotation/DataFixtureTest.php       |   0
 .../Test/Annotation/DbIsolationTest.php       |   0
 .../components/a/aa/aaa/registration.php      |   0
 .../_files/components/a/aa/registration.php   |   0
 .../_files/components/b/registration.php      |   0
 .../_files/components/registration.php        |   0
 .../_files/sample_fixture_two_rollback.php    |   0
 .../testsuite/Magento/Test/App/ConfigTest.php |   0
 .../Magento/Test/ApplicationTest.php          |   0
 .../Magento/Test/Bootstrap/DocBlockTest.php   |   0
 .../Test/Bootstrap/EnvironmentTest.php        |   0
 .../Magento/Test/Bootstrap/MemoryTest.php     |   0
 .../Magento/Test/Bootstrap/ProfilerTest.php   |   0
 .../Magento/Test/Bootstrap/SettingsTest.php   |   0
 .../testsuite/Magento/Test/Bootstrap/_files/0 |   0
 .../Magento/Test/Bootstrap/_files/1.xml       |   0
 .../Magento/Test/Bootstrap/_files/1.xml.dist  |   0
 .../Magento/Test/Bootstrap/_files/2.xml       |   0
 .../Magento/Test/Bootstrap/_files/3.xml.dist  |   0
 .../Magento/Test/Bootstrap/_files/4.php       |   0
 .../Magento/Test/Bootstrap/_files/metrics.php |   0
 .../testsuite/Magento/Test/BootstrapTest.php  |   0
 .../Db/Adapter/TransactionInterfaceTest.php   |   0
 .../testsuite/Magento/Test/EntityTest.php     |   0
 .../Magento/Test/Event/MagentoTest.php        |   0
 .../Test/Event/Param/TransactionTest.php      |   0
 .../Magento/Test/Event/PhpUnitTest.php        |   0
 .../Magento/Test/Event/TransactionTest.php    |   0
 .../Magento/Test/EventManagerTest.php         |   0
 .../Magento/Test/Helper/BootstrapTest.php     |   0
 .../Magento/Test/Helper/FactoryTest.php       |   0
 .../Magento/Test/Helper/MemoryTest.php        |   0
 .../Magento/Test/Isolation/AppConfigTest.php  |   0
 .../Test/Isolation/WorkingDirectoryTest.php   |   0
 .../Magento/Test/MemoryLimitTest.php          |   0
 .../Magento/Test/ObjectManagerTest.php        |   0
 .../Test/Profiler/OutputBambooTest.php        |   0
 .../Test/Profiler/OutputBambooTestFilter.php  |   0
 .../testsuite/Magento/Test/RequestTest.php    |   0
 .../Test/TestCase/ControllerAbstractTest.php  |   0
 .../Cleanup/TestCasePropertiesTest.php        |   0
 .../TestCasePropertiesTest/DummyTestCase.php  |   0
 dev/tests/integration/phpunit.xml.dist        |   0
 .../Adminhtml/Notification/MarkAsReadTest.php |   0
 .../Notification/MassMarkAsReadTest.php       |   0
 .../Adminhtml/Notification/MassRemoveTest.php |   0
 .../Adminhtml/Notification/RemoveTest.php     |   0
 .../Inbox/Collection/CriticalTest.php         |   0
 .../_files/notifications.php                  |   0
 .../Model/Export/AdvancedPricingTest.php      |   0
 .../Model/Import/AdvancedPricingTest.php      |   0
 .../Import/_files/import_advanced_pricing.csv |   0
 .../_files/create_products.php                |   0
 .../_files/product_with_second_website.php    |   0
 .../Http/ReSignUpResponseResolverTest.php     |   0
 .../Model/Plugin/BaseUrlConfigPluginTest.php  |   0
 .../Analytics/Model/ReportUrlProviderTest.php |   0
 .../Magento/Analytics/_files/create_link.php  |   0
 ...nabled_subscription_with_invalid_token.php |   0
 ...bscription_with_invalid_token_rollback.php |   0
 .../ResourceModel/Role/CollectionTest.php     |   0
 .../Role/Grid/CollectionTest.php              |   0
 .../Model/ResourceModel/RoleTest.php          |   0
 .../ResourceModel/Rules/CollectionTest.php    |   0
 .../Magento/Authorization/Model/RoleTest.php  |   0
 .../Magento/Authorization/Model/RulesTest.php |   0
 .../Directpost/Payment/PlaceTest.php          |   0
 .../Directpost/Payment/PlaceTesting.php       |   0
 .../Payment/BackendResponseTest.php           |   0
 .../Directpost/Payment/ResponseTest.php       |   0
 .../Controller/Directpost/PaymentTest.php     |   0
 .../Model/Directpost/RequestTest.php          |   0
 .../Authorizenet/Model/DirectpostTest.php     |   0
 .../Magento/Authorizenet/_files/order.php     |   0
 .../_files/transaction_details.xml            |   0
 .../Backend/App/AbstractActionTest.php        |   0
 .../Magento/Backend/App/RouterTest.php        |   0
 .../Backend/Block/Dashboard/GraphTest.php     |   0
 .../Block/Dashboard/Orders/GridTest.php       |   0
 .../Dashboard/Tab/Products/ViewedTest.php     |   0
 .../Magento/Backend/Block/MenuTest.php        |   0
 .../Magento/Backend/Block/Page/FooterTest.php |   0
 .../Magento/Backend/Block/Page/HeaderTest.php |   0
 .../Block/System/Account/Edit/FormTest.php    |   0
 .../System/Design/Edit/Tab/GeneralTest.php    |   0
 .../Backend/Block/System/Store/DeleteTest.php |   0
 .../System/Store/Edit/Form/GroupTest.php      |   0
 .../System/Store/Edit/Form/StoreTest.php      |   0
 .../System/Store/Edit/Form/WebsiteTest.php    |   0
 .../Backend/Block/System/Store/EditTest.php   |   0
 .../Magento/Backend/Block/TemplateTest.php    |   0
 .../Backend/Block/Widget/ContainerTest.php    |   0
 .../Block/Widget/Form/ContainerTest.php       |   0
 .../Magento/Backend/Block/Widget/FormTest.php |   0
 .../Widget/Grid/Column/Renderer/TextTest.php  |   0
 .../Block/Widget/Grid/ColumnSetTest.php       |   0
 .../Block/Widget/Grid/ContainerTest.php       |   0
 .../Block/Widget/Grid/ExtendedTest.php        |   0
 .../Backend/Block/Widget/Grid/ItemTest.php    |   0
 .../Widget/Grid/Massaction/AdditionalTest.php |   0
 .../Block/Widget/Grid/MassactionTest.php      |   0
 .../Magento/Backend/Block/Widget/GridTest.php |   0
 .../Magento/Backend/Block/Widget/TabsTest.php |   0
 .../Magento/Backend/Block/WidgetTest.php      |   0
 .../layout/layout_test_grid_handle.xml        |   0
 .../Magento/test_default/registration.php     |   0
 .../adminhtml/Magento/test_default/theme.xml  |   0
 .../test_default/web/images/grid_sort_asc.gif | Bin
 .../web/images/grid_sort_desc.gif             | Bin
 .../test_default/web/images/grid_th_bg.gif    | Bin
 .../web/images/grid_th_onclick_bg.gif         | Bin
 .../web/images/pager_arrow_left.gif           | Bin
 .../web/images/pager_arrow_left_off.gif       | Bin
 .../web/images/pager_arrow_right.gif          | Bin
 .../web/images/pager_arrow_right_off.gif      | Bin
 .../Block/_files/form_key_disabled.php        |   0
 .../_files/form_key_disabled_rollback.php     |   0
 .../Magento/Backend/etc/adminhtml/menu.xml    |   0
 .../Backend/Controller/Adminhtml/AuthTest.php |   0
 .../Adminhtml/Cache/CleanStaticFilesTest.php  |   0
 .../Adminhtml/Cache/MassActionTest.php        |   0
 .../Controller/Adminhtml/CacheTest.php        |   0
 .../Dashboard/ProductsViewedTest.php          |   0
 .../Controller/Adminhtml/DashboardTest.php    |   0
 .../Controller/Adminhtml/IndexTest.php        |   0
 .../Adminhtml/System/AccountTest.php          |   0
 .../Adminhtml/System/DesignTest.php           |   0
 .../Controller/Adminhtml/System/StoreTest.php |   0
 .../Controller/Adminhtml/UrlRewriteTest.php   |   0
 .../Magento/Backend/Helper/DataTest.php       |   0
 .../Backend/Model/Auth/SessionTest.php        |   0
 .../Magento/Backend/Model/AuthTest.php        |   0
 .../Backend/Model/Locale/ResolverTest.php     |   0
 .../Magento/Backend/Model/MenuTest.php        |   0
 .../Backend/Model/Search/CustomerTest.php     |   0
 .../Backend/Model/Search/OrderTest.php        |   0
 .../Backend/Model/Session/AdminConfigTest.php |   0
 .../Backend/Model/Session/QuoteTest.php       |   0
 .../Magento/Backend/Model/SessionTest.php     |   0
 .../Backend/Model/Translate/InlineTest.php    |   0
 .../Magento/Backend/Model/UrlTest.php         |   0
 .../_files/cache/all_types_invalidated.php    |   0
 .../cache/all_types_invalidated_rollback.php  |   0
 .../_files/cache/application_cache.php        |   0
 .../cache/application_cache_rollback.php      |   0
 .../_files/cache/empty_storage.php            |   0
 .../_files/cache/non_application_cache.php    |   0
 .../cache/non_application_cache_rollback.php  |   0
 .../Braintree/Block/Form/ContainerTest.php    |   0
 .../Block/VaultTokenRendererTest.php          |   0
 .../Adminhtml/Order/PaymentReviewTest.php     |   0
 .../Adminhtml/Payment/GetClientTokenTest.php  |   0
 .../Controller/Cards/DeleteActionTest.php     |   0
 .../Braintree/Gateway/Config/ConfigTest.php   |   0
 .../System/Config/CountryCreditCardTest.php   |   0
 .../Braintree/Model/PaymentMethodListTest.php |   0
 .../PayPal/TokenUiComponentProviderTest.php   |   0
 .../Model/Ui/TokensConfigProviderTest.php     |   0
 .../Magento/Braintree/_files/fraud_order.php  |   0
 .../_files/payment_configuration.php          |   0
 .../_files/payment_configuration_rollback.php |   0
 .../Magento/Braintree/_files/payments.php     |   0
 .../Magento/Braintree/_files/paypal_quote.php |   0
 .../Braintree/_files/paypal_vault_token.php   |   0
 .../Tab/Bundle/Option/Search/GridTest.php     |   0
 .../Edit/Tab/Bundle/Option/SearchTest.php     |   0
 .../Controller/Adminhtml/ProductTest.php      |   0
 .../Magento/Bundle/Controller/ProductTest.php |   0
 .../Model/Category/ProductIndexerTest.php     |   0
 .../Model/Product/BundlePriceAbstract.php     |   0
 .../DynamicBundlePriceCalculatorTest.php      |   0
 ...ndleWithCatalogPriceRuleCalculatorTest.php |   0
 ...icBundleWithSpecialPriceCalculatorTest.php |   0
 ...namicBundleWithTierPriceCalculatorTest.php |   0
 .../FixedBundlePriceCalculatorTest.php        |   0
 ...ndleWithCatalogPriceRuleCalculatorTest.php |   0
 ...edBundleWithSpecialPriceCalculatorTest.php |   0
 ...FixedBundleWithTierPriceCalculatorTest.php |   0
 .../Bundle/Model/Product/IsSaleableTest.php   |   0
 .../Bundle/Model/Product/OptionListTest.php   |   0
 .../Bundle/Model/Product/PriceTest.php        |   0
 .../Magento/Bundle/Model/Product/TypeTest.php |   0
 .../Magento/Bundle/Model/ProductTest.php      |   0
 .../Model/ResourceModel/Indexer/StockTest.php |   0
 .../dynamic_bundle_product.php                |   0
 .../dynamic_bundle_product_rollback.php       |   0
 ...namic_bundle_product_with_catalog_rule.php |   0
 ...dle_product_with_catalog_rule_rollback.php |   0
 ...amic_bundle_product_with_special_price.php |   0
 ...le_product_with_special_price_rollback.php |   0
 .../PriceCalculator/fixed_bundle_product.php  |   0
 .../fixed_bundle_product_rollback.php         |   0
 ...fixed_bundle_product_with_catalog_rule.php |   0
 ...dle_product_with_catalog_rule_rollback.php |   0
 ...ixed_bundle_product_with_special_price.php |   0
 ...le_product_with_special_price_rollback.php |   0
 .../Bundle/_files/issaleable_product.php      |   0
 .../_files/issaleable_product_rollback.php    |   0
 .../Bundle/_files/multiple_products.php       |   0
 .../_files/multiple_products_rollback.php     |   0
 .../order_item_with_bundle_and_options.php    |   0
 ..._item_with_bundle_and_options_rollback.php |   0
 .../_files/order_items_simple_and_bundle.php  |   0
 ...order_items_simple_and_bundle_rollback.php |   0
 .../order_with_bundle_shipped_separately.php  |   0
 ...ith_bundle_shipped_separately_rollback.php |   0
 .../Magento/Bundle/_files/product.php         |   0
 .../Bundle/_files/product_in_category.php     |   0
 .../_files/product_in_category_rollback.php   |   0
 .../Bundle/_files/product_rollback.php        |   0
 .../_files/product_with_multiple_options.php  |   0
 ...product_with_multiple_options_rollback.php |   0
 .../_files/product_with_tier_pricing.php      |   0
 .../BundleImportExport/Model/BundleTest.php   |   0
 .../Model/Export/RowCustomizerTest.php        |   0
 .../Model/Import/Product/Type/BundleTest.php  |   0
 .../Model/Import/_files/import_bundle.csv     |   0
 .../import_bundle_multiple_store_views.csv    |   0
 .../Adminhtml/Captcha/DefaultCaptchaTest.php  |   0
 .../Captcha/Block/Captcha/DefaultTest.php     |   0
 ...tionWithInvalidCaptchaReturnsErrorTest.php |   0
 ...IsRequiredAfterFailedLoginAttemptsTest.php |   0
 ...successfulMessageWhenCaptchaFailedTest.php |   0
 ...otPasswordBackendWhenCaptchaFailedTest.php |   0
 .../Magento/Captcha/_files/dummy_user.php     |   0
 .../Category/Checkboxes/TreeTest.php          |   0
 .../Block/Adminhtml/Category/TreeTest.php     |   0
 .../Product/Attribute/Edit/Tab/FrontTest.php  |   0
 .../Product/Attribute/Set/Toolbar/AddTest.php |   0
 .../Block/Adminhtml/Product/Edit/JsTest.php   |   0
 .../Product/Edit/Tab/Options/OptionTest.php   |   0
 .../Edit/Tab/Options/Type/SelectTest.php      |   0
 .../Product/Helper/Form/CategoryTest.php      |   0
 .../Helper/Form/Gallery/ContentTest.php       |   0
 .../Product/Helper/Form/WeightTest.php        |   0
 .../Adminhtml/Product/Options/AjaxTest.php    |   0
 .../Catalog/Block/Product/AbstractTest.php    |   0
 .../Catalog/Block/Product/ListTest.php        |   0
 .../Magento/Catalog/Block/Product/NewTest.php |   0
 .../Product/ProductList/CrosssellTest.php     |   0
 .../Block/Product/ProductList/RelatedTest.php |   0
 .../Block/Product/ProductList/ToolbarTest.php |   0
 .../Block/Product/ProductList/UpsellTest.php  |   0
 .../Block/Product/View/AdditionalTest.php     |   0
 .../Block/Product/View/OptionsTest.php        |   0
 .../Catalog/Block/Product/ViewTest.php        |   0
 .../Command/ProductAttributesCleanUpTest.php  |   0
 .../Controller/Adminhtml/CategoryTest.php     |   0
 .../Product/Action/AttributeTest.php          |   0
 .../Adminhtml/Product/AttributeTest.php       |   0
 .../Adminhtml/Product/ReviewTest.php          |   0
 .../Adminhtml/Product/Set/DeleteTest.php      |   0
 .../Adminhtml/Product/Set/SaveTest.php        |   0
 .../Controller/Adminhtml/ProductTest.php      |   0
 .../Catalog/Controller/CategoryTest.php       |   0
 .../Magento/Catalog/Controller/IndexTest.php  |   0
 .../Controller/Product/CompareTest.php        |   0
 .../Catalog/Controller/Product/ViewTest.php   |   0
 .../Catalog/Controller/ProductTest.php        |   0
 .../Cron/DeleteOutdatedPriceValuesTest.php    |   0
 .../Magento/Catalog/Helper/CategoryTest.php   |   0
 .../Magento/Catalog/Helper/DataTest.php       |   0
 .../Magento/Catalog/Helper/OutputTest.php     |   0
 .../Catalog/Helper/Product/CompareTest.php    |   0
 .../Catalog/Helper/Product/CompositeTest.php  |   0
 .../Catalog/Helper/Product/FlatTest.php       |   0
 .../Product/Stub/ProductControllerStub.php    |   0
 .../Catalog/Helper/Product/ViewTest.php       |   0
 .../Magento/Catalog/Helper/ProductTest.php    |   0
 .../Catalog/Model/AbstractModel/Stub.php      |   0
 .../Magento/Catalog/Model/AbstractTest.php    |   0
 .../Model/Category/DataProviderTest.php       |   0
 .../_files/category_without_image.php         |   0
 .../_files/service_category_create.php        |   0
 .../service_category_create_rollback.php      |   0
 .../Magento/Catalog/Model/CategoryTest.php    |   0
 .../Catalog/Model/CategoryTreeTest.php        |   0
 .../Magento/Catalog/Model/ConfigTest.php      |   0
 .../Magento/Catalog/Model/DesignTest.php      |   0
 .../Model/Indexer/Category/ProductTest.php    |   0
 .../Catalog/Model/Indexer/FlatTest.php        |   0
 .../Model/Indexer/Product/CategoryTest.php    |   0
 .../Indexer/Product/Eav/Action/FullTest.php   |   0
 .../Indexer/Product/Eav/Action/RowTest.php    |   0
 .../Indexer/Product/Eav/Action/RowsTest.php   |   0
 .../Indexer/Product/Flat/Action/FullTest.php  |   0
 .../Indexer/Product/Flat/Action/RowTest.php   |   0
 .../Indexer/Product/Flat/Action/RowsTest.php  |   0
 .../Indexer/Product/Flat/ProcessorTest.php    |   0
 .../Indexer/Product/Price/Action/FullTest.php |   0
 .../Indexer/Product/Price/Action/RowTest.php  |   0
 .../Indexer/Product/Price/Action/RowsTest.php |   0
 .../Price/SimpleWithOptionsTierPriceTest.php  |   0
 .../Catalog/Model/Layer/CategoryTest.php      |   0
 .../Model/Layer/Filter/AttributeTest.php      |   0
 .../Model/Layer/Filter/CategoryTest.php       |   0
 .../Layer/Filter/DataProvider/PriceTest.php   |   0
 .../Model/Layer/Filter/DecimalTest.php        |   0
 .../Filter/Price/AlgorithmAdvancedTest.php    |   0
 .../Layer/Filter/Price/AlgorithmBaseTest.php  |   0
 .../Price/_files/_algorithm_base_data.php     |   0
 .../Filter/Price/_files/products_advanced.php |   0
 .../_files/products_advanced_rollback.php     |   0
 .../Filter/Price/_files/products_base.php     |   0
 .../Price/_files/products_base_rollback.php   |   0
 .../Catalog/Model/Layer/Filter/PriceTest.php  |   0
 .../_files/attribute_weight_filterable.php    |   0
 .../Filter/_files/attribute_with_option.php   |   0
 .../_files/attribute_with_option_rollback.php |   0
 .../Catalog/Model/Product/ActionTest.php      |   0
 .../Product/Attribute/Backend/PriceTest.php   |   0
 .../Product/Attribute/Backend/SkuTest.php     |   0
 .../Attribute/Backend/TierpriceTest.php       |   0
 .../Source/CountryofmanufactureTest.php       |   0
 .../_files/create_attribute_service.php       |   0
 .../create_attribute_service_rollback.php     |   0
 .../Attribute/_files/select_attribute.php     |   0
 .../_files/select_attribute_rollback.php      |   0
 .../Model/Product/Compare/ListCompareTest.php |   0
 .../Catalog/Model/Product/CopierTest.php      |   0
 .../Product/Gallery/CreateHandlerTest.php     |   0
 .../Model/Product/Gallery/ProcessorTest.php   |   0
 .../Model/Product/Gallery/ReadHandlerTest.php |   0
 .../Catalog/Model/Product/ImageTest.php       |   0
 .../Model/Product/Option/Type/DateTest.php    |   0
 .../Option/Type/File/ValidatorFileTest.php    |   0
 .../Option/Type/File/ValidatorInfoTest.php    |   0
 .../Model/Product/Type/AbstractTypeTest.php   |   0
 .../Catalog/Model/Product/Type/PriceTest.php  |   0
 .../Model/Product/Type/VirtualTest.php        |   0
 .../Catalog/Model/Product/TypeTest.php        |   0
 .../Magento/Catalog/Model/Product/UrlTest.php |   0
 .../Product/_files/service_product_create.php |   0
 .../service_product_create_rollback.php       |   0
 .../Catalog/Model/ProductExternalTest.php     |   0
 .../Catalog/Model/ProductGettersTest.php      |   0
 .../Catalog/Model/ProductPriceTest.php        |   0
 .../Catalog/Model/ProductRepositoryTest.php   |   0
 .../Magento/Catalog/Model/ProductTest.php     |   0
 .../WebsiteAttributesSynchronizerTest.php     |   0
 .../Model/ResourceModel/Eav/AttributeTest.php |   0
 .../ResourceModel/Product/CollectionTest.php  |   0
 .../Product/Indexer/Eav/SourceTest.php        |   0
 .../Product/Link/Product/CollectionTest.php   |   0
 .../ResourceModel/_files/product_simple.php   |   0
 .../ResourceModel/_files/url_rewrites.php     |   0
 .../_files/website_attribute_sync.php         |   0
 .../_files/website_attribute_sync_flag.php    |   0
 .../website_attribute_sync_flag_rollback.php  |   0
 .../website_attribute_sync_rollback.php       |   0
 .../Option/Type/File/ProcessorTest.php        |   0
 ...hPriceAttributeScopeOnConfigChangeTest.php |   0
 .../RemoveProductsTest.php                    |   0
 .../RenderingBasedOnIsProductListFlagTest.php |   0
 .../Pricing/Render/FinalPriceBoxTest.php      |   0
 .../Product/Attributes/ListingTest.php        |   0
 .../Product/Form/Modifier/CategoriesTest.php  |   0
 .../Product/Form/Modifier/EavTest.php         |   0
 .../_files/eav_expected_data_output.php       |   0
 .../_files/eav_expected_meta_output.php       |   0
 .../eav_expected_meta_output_w_default.php    |   0
 .../Modifier/_files/expected_categories.php   |   0
 .../_files/input_meta_for_categories.php      |   0
 .../testsuite/Magento/Catalog/WidgetTest.php  |   0
 .../attribute_set_with_image_attribute.php    |   0
 ...bute_set_with_image_attribute_rollback.php |   0
 .../_files/attribute_set_with_product.php     |   0
 .../attribute_set_with_product_rollback.php   |   0
 .../attribute_set_with_renamed_group.php      |   0
 .../catalog_category_with_apostrophe.php      |   0
 ...alog_category_with_apostrophe_rollback.php |   0
 .../Magento/Catalog/_files/categories.php     |   0
 .../Catalog/_files/categories_no_products.php |   0
 .../categories_no_products_rollback.php       |   0
 .../Catalog/_files/categories_rollback.php    |   0
 .../Magento/Catalog/_files/category.php       |   0
 .../Catalog/_files/category_attribute.php     |   0
 .../_files/category_attribute_rollback.php    |   0
 .../Catalog/_files/category_backend.php       |   0
 .../_files/category_backend_rollback.php      |   0
 .../Catalog/_files/category_duplicates.php    |   0
 .../Catalog/_files/category_product.php       |   0
 .../_files/category_product_rollback.php      |   0
 .../Catalog/_files/category_rollback.php      |   0
 .../Magento/Catalog/_files/category_tree.php  |   0
 .../Catalog/_files/category_tree_rollback.php |   0
 .../Catalog/_files/category_with_position.php |   0
 .../category_with_position_rollback.php       |   0
 .../_files/category_with_two_stores.php       |   0
 .../category_with_two_stores_rollback.php     |   0
 .../Catalog/_files/dropdown_attribute.php     |   0
 .../Catalog/_files/empty_attribute_group.php  |   0
 .../_files/empty_attribute_group_rollback.php |   0
 .../_files/enable_price_index_schedule.php    |   0
 .../enable_price_index_schedule_rollback.php  |   0
 .../_files/enable_reindex_schedule.php        |   0
 .../enable_reindex_schedule_rollback.php      |   0
 .../_files/etc/extension_attributes.xml       |   0
 .../Catalog/_files/filterable_attributes.php  |   0
 .../_files/indexer_catalog_category.php       |   0
 .../indexer_catalog_category_rollback.php     |   0
 .../indexer_catalog_product_categories.php    |   0
 ...er_catalog_product_categories_rollback.php |   0
 .../_files/indexer_catalog_products.php       |   0
 .../indexer_catalog_products_rollback.php     |   0
 .../Magento/Catalog/_files/magento_empty.jpg  |   0
 .../Magento/Catalog/_files/magento_image.jpg  | Bin
 .../Catalog/_files/magento_small_image.jpg    | Bin
 .../Catalog/_files/magento_thumbnail.jpg      | Bin
 .../Catalog/_files/multiple_products.php      |   0
 .../_files/multiple_products_rollback.php     |   0
 ...ple_products_with_non_saleable_product.php |   0
 ...cts_with_non_saleable_product_rollback.php |   0
 .../Catalog/_files/multiselect_attribute.php  |   0
 .../_files/multiselect_attribute_rollback.php |   0
 ...select_attribute_with_incorrect_values.php |   0
 ...r_item_with_product_and_custom_options.php |   0
 ...th_product_and_custom_options_rollback.php |   0
 .../Catalog/_files/price_row_fixture.php      |   0
 .../_files/price_row_fixture_rollback.php     |   0
 .../Catalog/_files/product_associated.php     |   0
 .../_files/product_associated_rollback.php    |   0
 .../Catalog/_files/product_attribute.php      |   0
 .../_files/product_attribute_rollback.php     |   0
 ...roduct_attribute_with_invalid_apply_to.php |   0
 .../_files/product_different_store_prices.php |   0
 ...roduct_different_store_prices_rollback.php |   0
 .../_files/product_group_prices_rollback.php  |   0
 .../product_has_tier_price_show_as_low_as.php |   0
 ...has_tier_price_show_as_low_as_rollback.php |   0
 .../Magento/Catalog/_files/product_image.php  |   0
 .../Catalog/_files/product_image_rollback.php |   0
 .../Magento/Catalog/_files/product_simple.php |   0
 .../_files/product_simple_duplicated.php      |   0
 .../product_simple_duplicated_rollback.php    |   0
 .../_files/product_simple_multistore.php      |   0
 .../product_simple_multistore_rollback.php    |   0
 .../_files/product_simple_out_of_stock.php    |   0
 .../product_simple_out_of_stock_rollback.php  |   0
 .../_files/product_simple_rollback.php        |   0
 .../_files/product_simple_sku_with_slash.php  |   0
 ...product_simple_sku_with_slash_rollback.php |   0
 .../product_simple_with_admin_store.php       |   0
 .../product_simple_with_custom_options.php    |   0
 ...ct_simple_with_custom_options_rollback.php |   0
 .../product_simple_with_decimal_qty.php       |   0
 ...oduct_simple_with_decimal_qty_rollback.php |   0
 .../_files/product_simple_with_url_key.php    |   0
 .../Catalog/_files/product_simple_xss.php     |   0
 .../Catalog/_files/product_special_price.php  |   0
 .../_files/product_special_price_rollback.php |   0
 .../Catalog/_files/product_text_attribute.php |   0
 .../Catalog/_files/product_virtual.php        |   0
 .../_files/product_virtual_in_stock.php       |   0
 .../product_virtual_in_stock_rollback.php     |   0
 .../_files/product_virtual_rollback.php       |   0
 .../_files/product_with_dropdown_option.php   |   0
 .../product_with_dropdown_option_rollback.php |   0
 .../Catalog/_files/product_with_image.php     |   0
 .../_files/product_with_image_rollback.php    |   0
 .../Catalog/_files/product_with_options.php   |   0
 .../_files/product_with_options_rollback.php  |   0
 .../_files/product_with_two_websites.php      |   0
 .../product_with_two_websites_rollback.php    |   0
 .../_files/product_without_options.php        |   0
 .../product_without_options_rollback.php      |   0
 .../Magento/Catalog/_files/products.php       |   0
 .../Catalog/_files/products_crosssell.php     |   0
 .../_files/products_crosssell_rollback.php    |   0
 .../Catalog/_files/products_for_search.php    |   0
 .../_files/products_for_search_rollback.php   |   0
 .../Catalog/_files/products_in_category.php   |   0
 .../_files/products_in_category_rollback.php  |   0
 .../Magento/Catalog/_files/products_new.php   |   0
 .../Catalog/_files/products_new_rollback.php  |   0
 .../Catalog/_files/products_related.php       |   0
 .../_files/products_related_multiple.php      |   0
 .../products_related_multiple_rollback.php    |   0
 .../_files/products_related_rollback.php      |   0
 .../Catalog/_files/products_rollback.php      |   0
 .../Catalog/_files/products_upsell.php        |   0
 .../_files/products_upsell_rollback.php       |   0
 .../products_with_multiselect_attribute.php   |   0
 ...ts_with_multiselect_attribute_rollback.php |   0
 .../products_with_unique_input_attribute.php  |   0
 .../products_with_websites_and_stores.php     |   0
 ...ucts_with_websites_and_stores_rollback.php |   0
 .../quote_with_product_and_custom_options.php |   0
 ...th_product_and_custom_options_rollback.php |   0
 .../Magento/Catalog/_files/row_fixture.php    |   0
 .../Catalog/_files/row_fixture_rollback.php   |   0
 .../Catalog/_files/second_product_simple.php  |   0
 .../_files/second_product_simple_rollback.php |   0
 .../Magento/Catalog/_files/second_website.php |   0
 .../_files/second_website_rollback.php        |   0
 .../_files/text_attribute_rollback.php        |   0
 .../Catalog/_files/unique_input_attribute.php |   0
 .../Magento/Catalog/_files/url_rewrites.php   |   0
 .../Catalog/_files/url_rewrites_invalid.php   |   0
 .../Catalog/_files/url_rewrites_rollback.php  |   0
 .../Magento/Catalog/_files/validate_image.php |   0
 .../Catalog/_files/validate_image_info.php    |   0
 .../_files/validate_image_info_rollback.php   |   0
 .../_files/validate_image_rollback.php        |   0
 .../Magento/Catalog/_files/watermark.jpg      | Bin
 .../controllers/_files/attribute_system.php   |   0
 .../_files/attribute_system_popup.php         |   0
 .../attribute_system_with_applyto_data.php    |   0
 .../_files/attribute_user_defined.php         |   0
 .../controllers/_files/product_image.png      | Bin
 .../Catalog/controllers/_files/products.php   |   0
 .../controllers/_files/products_rollback.php  |   0
 .../AbstractProductExportImportTestCase.php   |   0
 .../Model/Export/ProductTest.php              |   0
 .../Import/Product/Type/AbstractTest.php      |   0
 .../Model/Import/ProductTest.php              |   0
 .../Model/Import/_files/custom_attributes.php |   0
 .../_files/custom_attributes_rollback.php     |   0
 .../Model/Import/_files/import_media.csv      |   0
 .../_files/import_media_existing_images.csv   |   0
 .../Import/_files/import_media_two_stores.csv |   0
 ...import_new_categories_custom_separator.csv |   0
 ...mport_new_categories_default_separator.csv |   0
 .../_files/import_with_filesystem_images.php  |   0
 ...import_with_filesystem_images_rollback.php |   0
 .../_files/magento_additional_image_error.jpg |   0
 .../_files/magento_additional_image_one.jpg   | Bin
 .../_files/magento_additional_image_two.jpg   | Bin
 .../Import/_files/media_import_image.php      |   0
 .../_files/media_import_image_rollback.php    |   0
 .../product_to_import_invalid_weight.csv      |   0
 .../_files/product_with_custom_options.csv    |   0
 ...ustom_options_and_multiple_store_views.csv |   0
 .../product_with_custom_options_new.csv       |   0
 .../_files/products_duplicate_category.csv    |   0
 .../_files/products_multiple_stores.csv       |   0
 .../products_to_check_duplicated_names.csv    |   0
 .../products_to_check_duplicated_url_keys.csv |   0
 .../products_to_check_valid_url_keys.csv      |   0
 ...o_check_valid_url_keys_multiple_stores.csv |   0
 .../Import/_files/products_to_import.csv      |   0
 ...oducts_to_import_invalid_attribute_set.csv |   0
 ...s_to_import_with_additional_attributes.csv |   0
 ...oducts_to_import_with_changed_sku_case.csv |   0
 .../products_to_import_with_datetime.csv      |   0
 ...products_to_import_with_multiple_store.csv |   0
 ...ducts_to_import_with_new_attribute_set.csv |   0
 .../products_to_import_with_product_links.csv |   0
 .../_files/products_to_import_with_qty.csv    |   0
 .../products_to_import_with_two_stores.csv    |   0
 ...cts_to_import_with_use_config_settings.csv |   0
 ...products_to_import_with_valid_url_keys.csv |   0
 .../products_to_import_without_url_keys.csv   |   0
 ...oducts_with_invalid_multiselect_values.csv |   0
 .../CatalogImportExport/Model/ProductTest.php |   0
 .../_files/product_export_data.php            |   0
 .../_files/product_export_data_rollback.php   |   0
 .../product_export_data_special_chars.php     |   0
 ...uct_export_data_special_chars_rollback.php |   0
 .../_files/product_export_with_categories.php |   0
 .../_files/product_export_with_images.php     |   0
 .../product_export_with_images_rollback.php   |   0
 ...product_export_with_product_links_data.php |   0
 ...xport_with_product_links_data_rollback.php |   0
 .../Api/StockItemSaveTest.php                 |   0
 .../Form/Field/CustomergroupTest.php          |   0
 .../Model/Indexer/Stock/Action/FullTest.php   |   0
 .../Model/Indexer/Stock/Action/RowTest.php    |   0
 .../Model/Indexer/Stock/Action/RowsTest.php   |   0
 .../Quote/Item/QuantityValidatorTest.php      |   0
 .../Indexer/Stock/DefaultStockTest.php        |   0
 .../CatalogInventory/Model/Stock/ItemTest.php |   0
 .../ByStockItemRepositoryTest.php             |   0
 .../ByQuantityAndStockStatusTest.php          |   0
 .../ByProductModel/ByStockDataTest.php        |   0
 .../ByProductModel/ByStockItemTest.php        |   0
 .../ByQuantityAndStockStatusTest.php          |   0
 .../ByProductRepository/ByStockDataTest.php   |   0
 .../ByProductRepository/ByStockItemTest.php   |   0
 .../ByQuantityAndStockStatusTest.php          |   0
 .../ByProductModel/ByStockDataTest.php        |   0
 .../ByProductModel/ByStockItemTest.php        |   0
 .../ByQuantityAndStockStatusTest.php          |   0
 .../ByProductRepository/ByStockDataTest.php   |   0
 .../ByProductRepository/ByStockItemTest.php   |   0
 .../StockItemSave/StockItemDataChecker.php    |   0
 .../System/Config/Backend/MinsaleqtyTest.php  |   0
 .../Observer/AddStockItemsObserverTest.php    |   0
 .../Model/Indexer/BatchIndexTest.php          |   0
 .../Model/Indexer/IndexerBuilderTest.php      |   0
 .../Model/Indexer/ProductRuleTest.php         |   0
 .../Model/Indexer/RuleProductTest.php         |   0
 .../ResourceModel/Rule/CollectionTest.php     |   0
 .../Magento/CatalogRule/Model/RuleTest.php    |   0
 .../Magento/CatalogRule/_files/attribute.php  |   0
 .../CatalogRule/_files/attribute_rollback.php |   0
 .../_files/catalog_rule_10_off_not_logged.php |   0
 ...atalog_rule_10_off_not_logged_rollback.php |   0
 .../CatalogRule/_files/rule_by_attribute.php  |   0
 .../_files/rule_by_attribute_rollback.php     |   0
 .../_files/rule_by_category_ids.php           |   0
 .../Magento/CatalogRule/_files/two_rules.php  |   0
 .../CatalogRule/_files/two_rules_rollback.php |   0
 .../Block/Advanced/ResultTest.php             |   0
 .../CatalogSearch/Block/ResultTest.php        |   0
 .../Magento/CatalogSearch/Block/TermTest.php  |   0
 .../CatalogSearch/Controller/AjaxTest.php     |   0
 .../CatalogSearch/Controller/ResultTest.php   |   0
 .../Magento/CatalogSearch/Helper/DataTest.php |   0
 ...BaseSelectAttributesSearchStrategyTest.php |   0
 .../BaseSelectFullTextSearchStrategyTest.php  |   0
 .../Fulltext/Action/DataProviderTest.php      |   0
 .../Indexer/Fulltext/Action/FullTest.php      |   0
 .../Model/Indexer/FulltextTest.php            |   0
 .../Model/Indexer/IndexSwitcherMock.php       |   0
 .../Indexer/SwitcherUsedInFulltextTest.php    |   0
 .../Model/Layer/Filter/AttributeTest.php      |   0
 .../Model/Layer/Filter/CategoryTest.php       |   0
 .../Model/Layer/Filter/DecimalTest.php        |   0
 .../Model/Layer/Filter/PriceTest.php          |   0
 .../ResourceModel/Advanced/CollectionTest.php |   0
 .../ResourceModel/Fulltext/CollectionTest.php |   0
 .../CustomAttributeFilterTest.php             |   0
 .../FilterMapper/StockStatusFilterTest.php    |   0
 .../FilterMapper/VisibilityFilterTest.php     |   0
 .../Model/Search/RequestGeneratorTest.php     |   0
 .../CatalogSearch/_files/full_reindex.php     |   0
 .../CatalogSearch/_files/indexer_fulltext.php |   0
 .../_files/indexer_fulltext_rollback.php      |   0
 .../product_configurable_not_available.php    |   0
 ...ct_configurable_not_available_rollback.php |   0
 ...product_configurable_with_single_child.php |   0
 ...onfigurable_with_single_child_rollback.php |   0
 .../_files/product_for_search.php             |   0
 .../_files/product_for_search_rollback.php    |   0
 .../_files/products_for_index.php             |   0
 .../_files/products_for_index_rollback.php    |   0
 .../Magento/CatalogSearch/_files/query.php    |   0
 .../CatalogSearch/_files/query_redirect.php   |   0
 .../_files/search_attributes.php              |   0
 .../_files/search_attributes_rollback.php     |   0
 .../_files/searchable_attribute.php           |   0
 .../Model/CategoryUrlRewriteGeneratorTest.php |   0
 .../Model/ProductUrlRewriteGeneratorTest.php  |   0
 ...oryProcessUrlRewriteSavingObserverTest.php |   0
 .../Adminhtml/Category/Tab/AttributesTest.php |   0
 .../CatalogUrlRewrite/_files/categories.php   |   0
 .../_files/categories_rollback.php            |   0
 .../_files/categories_with_product_ids.php    |   0
 .../_files/categories_with_products.php       |   0
 .../categories_with_products_rollback.php     |   0
 .../_files/product_simple.php                 |   0
 .../_files/product_with_category.php          |   0
 .../_files/product_with_category_rollback.php |   0
 .../Block/Product/ProductListTest.php         |   0
 .../Block/Product/Widget/ConditionsTest.php   |   0
 .../Model/Rule/Condition/ProductTest.php      |   0
 .../Api/PaymentInformationManagementTest.php  |   0
 .../Checkout/Block/Cart/AbstractCartTest.php  |   0
 .../Magento/Checkout/Block/Cart/GridTest.php  |   0
 .../Magento/Checkout/Block/CartTest.php       |   0
 .../Controller/Cart/Index/CouponPostTest.php  |   0
 .../Magento/Checkout/Controller/CartTest.php  |   0
 .../Magento/Checkout/Model/CartTest.php       |   0
 .../Magento/Checkout/Model/SessionTest.php    |   0
 .../Checkout/_files/ValidatorFileMock.php     |   0
 .../Magento/Checkout/_files/active_quote.php  |   0
 .../Checkout/_files/active_quote_rollback.php |   0
 .../Magento/Checkout/_files/cart.php          |   0
 .../Magento/Checkout/_files/customers.php     |   0
 .../Checkout/_files/discount_10percent.php    |   0
 .../discount_10percent_generalusers.php       |   0
 ...scount_10percent_generalusers_rollback.php |   0
 .../_files/discount_10percent_rollback.php    |   0
 .../Magento/Checkout/_files/order_items.php   |   0
 .../Magento/Checkout/_files/orders.php        |   0
 .../Checkout/_files/product_bundle.php        |   0
 .../_files/product_with_custom_option.php     |   0
 .../Magento/Checkout/_files/products.php      |   0
 .../Magento/Checkout/_files/quote.php         |   0
 .../Checkout/_files/quote_with_address.php    |   0
 .../_files/quote_with_address_rollback.php    |   0
 .../_files/quote_with_address_saved.php       |   0
 .../quote_with_address_saved_rollback.php     |   0
 .../_files/quote_with_bundle_and_options.php  |   0
 ...quote_with_bundle_and_options_rollback.php |   0
 .../_files/quote_with_bundle_product.php      |   0
 .../_files/quote_with_check_payment.php       |   0
 .../quote_with_check_payment_rollback.php     |   0
 .../_files/quote_with_coupon_saved.php        |   0
 .../quote_with_coupon_saved_rollback.php      |   0
 .../quote_with_downloadable_product.php       |   0
 ...te_with_items_and_custom_options_saved.php |   0
 ...tems_and_custom_options_saved_rollback.php |   0
 .../_files/quote_with_items_saved.php         |   0
 .../quote_with_items_saved_rollback.php       |   0
 .../_files/quote_with_payment_saved.php       |   0
 .../quote_with_payment_saved_rollback.php     |   0
 .../_files/quote_with_product_and_payment.php |   0
 .../_files/quote_with_shipping_method.php     |   0
 ...h_shipping_method_and_items_categories.php |   0
 .../quote_with_shipping_method_rollback.php   |   0
 .../_files/quote_with_simple_product.php      |   0
 ..._with_simple_product_and_custom_option.php |   0
 .../quote_with_simple_product_and_image.php   |   0
 ...with_simple_product_and_image_rollback.php |   0
 .../quote_with_simple_product_saved.php       |   0
 ...ote_with_simple_product_saved_rollback.php |   0
 ...quote_with_virtual_product_and_address.php |   0
 ...h_virtual_product_and_address_rollback.php |   0
 .../quote_with_virtual_product_saved.php      |   0
 ...te_with_virtual_product_saved_rollback.php |   0
 .../Checkout/_files/rollback_quote.php        |   0
 .../_files/set_product_min_in_cart.php        |   0
 .../Checkout/_files/simple_product.php        |   0
 .../Checkout/Plugin/GuestValidationTest.php   |   0
 .../agreement_active_with_html_content.php    |   0
 ...ment_active_with_html_content_rollback.php |   0
 .../agreement_inactive_with_text_content.php  |   0
 ...nt_inactive_with_text_content_rollback.php |   0
 .../multi_agreements_active_with_text.php     |   0
 ...i_agreements_active_with_text_rollback.php |   0
 .../testsuite/Magento/Cms/Block/BlockTest.php |   0
 .../testsuite/Magento/Cms/Block/PageTest.php  |   0
 .../Magento/Cms/Block/Widget/BlockTest.php    |   0
 .../Adminhtml/Wysiwyg/Images/IndexTest.php    |   0
 .../Adminhtml/Wysiwyg/Images/OnInsertTest.php |   0
 .../Cms/Controller/Noroute/IndexTest.php      |   0
 .../Magento/Cms/Controller/PageTest.php       |   0
 .../Magento/Cms/Controller/RouterTest.php     |   0
 .../testsuite/Magento/Cms/Helper/PageTest.php |   0
 .../Magento/Cms/Helper/Wysiwyg/ImagesTest.php |   0
 .../testsuite/Magento/Cms/Model/BlockTest.php |   0
 .../testsuite/Magento/Cms/Model/PageTest.php  |   0
 .../Magento/Cms/Model/Wysiwyg/ConfigTest.php  |   0
 .../Cms/Model/Wysiwyg/Images/StorageTest.php  |   0
 .../Cms/Setup/ContentConverterTest.php        |   0
 .../testsuite/Magento/Cms/_files/block.php    |   0
 .../testsuite/Magento/Cms/_files/noroute.php  |   0
 .../testsuite/Magento/Cms/_files/pages.php    |   0
 .../Config/App/Config/Type/SystemTest.php     |   0
 .../Config/Block/System/Config/FieldArray.php |   0
 .../Config/Block/System/Config/FormStub.php   |   0
 .../Config/Block/System/Config/FormTest.php   |   0
 .../System/Config/_files/test_config.xml      |   0
 .../System/Config/_files/test_system.xml      |   0
 .../Console/Command/ConfigSetCommandTest.php  |   0
 .../Console/Command/ConfigShowCommandTest.php |   0
 .../Adminhtml/System/ConfigTest.php           |   0
 .../Model/Config/Backend/Admin/RobotsTest.php |   0
 .../Model/Config/Backend/BaseurlTest.php      |   0
 .../Model/Config/Backend/EncryptedTest.php    |   0
 .../Config/Model/Config/Backend/FileTest.php  |   0
 .../Config/Backend/Image/AdapterTest.php      |   0
 .../Processor/EnvironmentPlaceholderTest.php  |   0
 .../Magento/Config/Model/ConfigTest.php       |   0
 .../Config/Model/ResourceModel/ConfigTest.php |   0
 .../Config/Model/_files/config_groups.php     |   0
 .../Config/Model/_files/config_section.php    |   0
 .../Config/Model/_files/no_robots_txt.php     |   0
 .../Magento/Config/Model/_files/robots.txt    |   0
 .../Config/Model/_files/robots_txt.php        |   0
 .../Magento/Config/_files/config.php          |   0
 .../Magento/Config/_files/config_data.php     |   0
 .../testsuite/Magento/Config/_files/env.php   |   0
 .../Model/ConfigurableTest.php                |   0
 .../Model/Export/RowCustomizerTest.php        |   0
 .../Import/Product/Type/ConfigurableTest.php  |   0
 .../Import/_files/import_configurable.csv     |   0
 .../_files/import_configurable_12345.csv      |   0
 .../Edit/Tab/Variations/Config/MatrixTest.php |   0
 .../Product/View/Type/ConfigurableTest.php    |   0
 .../Controller/Adminhtml/ProductTest.php      |   0
 .../Controller/CartTest.php                   |   0
 .../Model/Category/ProductIndexerTest.php     |   0
 .../Model/OptionRepositoryTest.php            |   0
 .../Type/Configurable/AttributeTest.php       |   0
 .../Product/Type/Configurable/PriceTest.php   |   0
 .../Model/Product/Type/ConfigurableTest.php   |   0
 .../Model/Product/VariationHandlerTest.php    |   0
 .../Indexer/Price/ConfigurableTest.php        |   0
 .../Indexer/Stock/ConfigurableTest.php        |   0
 .../Price/LowestPriceOptionProviderTest.php   |   0
 .../Pricing/Price/SpecialPriceIndexerTest.php |   0
 .../Pricing/Price/SpecialPriceTest.php        |   0
 .../RenderingBasedOnIsProductListFlagTest.php |   0
 .../Modifier/Data/AssociatedProductsTest.php  |   0
 .../_files/associated_products.php            |   0
 .../_files/configurable_attribute.php         |   0
 .../configurable_attribute_rollback.php       |   0
 .../_files/configurable_products.php          |   0
 .../_files/configurable_products_rollback.php |   0
 .../_files/delete_association.php             |   0
 ...der_item_with_configurable_and_options.php |   0
 ...with_configurable_and_options_rollback.php |   0
 .../_files/product_configurable.php           |   0
 .../_files/product_configurable_12345.php     |   0
 .../product_configurable_12345_rollback.php   |   0
 .../_files/product_configurable_rollback.php  |   0
 .../_files/product_configurable_sku.php       |   0
 .../product_configurable_sku_rollback.php     |   0
 .../_files/product_simple_77.php              |   0
 .../quote_with_configurable_product.php       |   0
 ...th_configurable_product_last_variation.php |   0
 ...urable_product_last_variation_rollback.php |   0
 ...ote_with_configurable_product_rollback.php |   0
 .../ConfigurableProduct/_files/tax_rule.php   |   0
 .../etc/extension_attributes.xml              |   0
 .../Magento/Contact/Controller/IndexTest.php  |   0
 .../Magento/Contact/Helper/DataTest.php       |   0
 .../Magento/Contact/Model/ConfigTest.php      |   0
 .../Model/Config/Backend/DomainTest.php       |   0
 .../Model/Config/Backend/LifetimeTest.php     |   0
 .../Cookie/Model/Config/Backend/PathTest.php  |   0
 .../Magento/Cron/Model/ScheduleTest.php       |   0
 .../Observer/ProcessCronQueueObserverTest.php |   0
 .../System/Currency/FetchRatesTest.php        |   0
 .../Adminhtml/System/Currency/IndexTest.php   |   0
 .../System/Currency/SaveRatesTest.php         |   0
 .../System/Currencysymbol/IndexTest.php       |   0
 .../System/Currencysymbol/SaveTest.php        |   0
 .../Model/System/CurrencysymbolTest.php       |   0
 .../Customer/Api/AddressRepositoryTest.php    |   0
 .../Block/Account/Dashboard/AddressTest.php   |   0
 .../Block/Account/Dashboard/InfoTest.php      |   0
 .../Customer/Block/Account/DashboardTest.php  |   0
 .../Customer/Block/Address/BookTest.php       |   0
 .../Customer/Block/Address/EditTest.php       |   0
 .../Address/Renderer/DefaultRendererTest.php  |   0
 .../Block/Adminhtml/Edit/Tab/CartTest.php     |   0
 .../Block/Adminhtml/Edit/Tab/CartsTest.php    |   0
 .../Adminhtml/Edit/Tab/NewsletterTest.php     |   0
 .../Block/Adminhtml/Edit/Tab/OrdersTest.php   |   0
 .../Adminhtml/Edit/Tab/View/CartTest.php      |   0
 .../Edit/Tab/View/PersonalInfoTest.php        |   0
 .../Adminhtml/Edit/Tab/View/SalesTest.php     |   0
 .../Block/Adminhtml/Edit/Tab/ViewTest.php     |   0
 .../Customer/Block/Adminhtml/EditTest.php     |   0
 .../Block/Adminhtml/Group/Edit/FormTest.php   |   0
 .../Block/Adminhtml/Group/EditTest.php        |   0
 .../Customer/Block/Form/RegisterTest.php      |   0
 .../Customer/Block/Widget/CompanyTest.php     |   0
 .../Magento/Customer/Block/Widget/DobTest.php |   0
 .../Magento/Customer/Block/Widget/FaxTest.php |   0
 .../Customer/Block/Widget/GenderTest.php      |   0
 .../Customer/Block/Widget/NameTest.php        |   0
 .../Customer/Block/Widget/TaxvatTest.php      |   0
 .../Customer/Block/Widget/TelephoneTest.php   |   0
 .../Customer/Controller/AccountTest.php       |   0
 .../Customer/Controller/AddressTest.php       |   0
 .../Cart/Product/Composite/CartTest.php       |   0
 .../Controller/Adminhtml/GroupTest.php        |   0
 .../Adminhtml/Index/MassAssignGroupTest.php   |   0
 .../Adminhtml/Index/MassDeleteTest.php        |   0
 .../Adminhtml/Index/MassSubscribeTest.php     |   0
 .../Adminhtml/Index/ResetPasswordTest.php     |   0
 .../Controller/Adminhtml/IndexTest.php        |   0
 .../Customer/Controller/AjaxLoginTest.php     |   0
 .../Customer/Controller/Section/LoadTest.php  |   0
 .../Magento/Customer/Helper/AddressTest.php   |   0
 .../Magento/Customer/Helper/ViewTest.php      |   0
 .../Customer/Model/AccountManagementTest.php  |   0
 .../Customer/Model/AddressMetadataTest.php    |   0
 .../Customer/Model/AddressRegistryTest.php    |   0
 .../Magento/Customer/Model/AddressTest.php    |   0
 .../Customer/Model/Config/ShareTest.php       |   0
 .../Config/Source/Group/MultiselectTest.php   |   0
 .../Model/Config/Source/GroupTest.php         |   0
 .../Customer/Model/CustomerMetadataTest.php   |   0
 .../Customer/Model/CustomerRegistryTest.php   |   0
 .../Magento/Customer/Model/CustomerTest.php   |   0
 .../Customer/Model/FileResolverStub.php       |   0
 .../Magento/Customer/Model/FormTest.php       |   0
 .../Customer/Model/GroupManagementTest.php    |   0
 .../Customer/Model/GroupRegistryTest.php      |   0
 .../Magento/Customer/Model/GroupTest.php      |   0
 .../Model/Metadata/FormFactoryTest.php        |   0
 .../Customer/Model/Metadata/FormTest.php      |   0
 .../ResourceModel/Address/CollectionTest.php  |   0
 .../ResourceModel/AddressRepositoryTest.php   |   0
 .../ResourceModel/Customer/CollectionTest.php |   0
 .../ResourceModel/CustomerRepositoryTest.php  |   0
 .../ResourceModel/Grid/CollectionTest.php     |   0
 .../Group/Grid/ServiceCollectionTest.php      |   0
 .../ResourceModel/GroupRepositoryTest.php     |   0
 .../Magento/Customer/Model/SessionTest.php    |   0
 .../Magento/Customer/Model/VisitorTest.php    |   0
 .../_files/attribute_user_defined_address.php |   0
 ..._user_defined_address_custom_attribute.php |   0
 ...ined_address_custom_attribute_rollback.php |   0
 ...ttribute_user_defined_address_rollback.php |   0
 ...ttribute_user_defined_custom_attribute.php |   0
 ...user_defined_custom_attribute_rollback.php |   0
 .../attribute_user_defined_customer.php       |   0
 ...tribute_user_defined_customer_rollback.php |   0
 .../_files/attribute_user_fullname.php        |   0
 .../Magento/Customer/_files/customer.php      |   0
 .../Customer/_files/customer_address.php      |   0
 .../_files/customer_address_rollback.php      |   0
 .../_files/customer_from_repository.php       |   0
 ...rid_indexer_enabled_update_on_schedule.php |   0
 ...er_enabled_update_on_schedule_rollback.php |   0
 .../Customer/_files/customer_group.php        |   0
 .../Customer/_files/customer_no_address.php   |   0
 .../customer_non_default_website_id.php       |   0
 ...stomer_non_default_website_id_rollback.php |   0
 .../_files/customer_primary_addresses.php     |   0
 .../Customer/_files/customer_rollback.php     |   0
 .../Customer/_files/customer_rp_token.php     |   0
 .../Customer/_files/customer_sample.php       |   0
 .../_files/customer_two_addresses.php         |   0
 .../Customer/_files/customer_with_website.php |   0
 .../_files/etc/extension_attributes.xml       |   0
 .../_files/import_export/customer.php         |   0
 .../import_export/customer_with_addresses.php |   0
 .../_files/import_export/customers.php        |   0
 .../customers_for_address_import.php          |   0
 .../Customer/_files/inactive_customer.php     |   0
 .../Magento/Customer/_files/quote.php         |   0
 .../Magento/Customer/_files/sales_order.php   |   0
 .../Customer/_files/three_customers.php       |   0
 .../Customer/_files/twenty_one_customers.php  |   0
 .../Magento/Customer/_files/two_customers.php |   0
 .../Customer/etc/extension_attributes.xml     |   0
 .../Model/Export/AddressTest.php              |   0
 .../Model/Export/CustomerTest.php             |   0
 .../Model/Import/AddressTest.php              |   0
 .../Model/Import/CustomerCompositeTest.php    |   0
 .../Model/Import/CustomerTest.php             |   0
 .../Import/_files/address_import_delete.csv   |   0
 .../Import/_files/address_import_update.csv   |   0
 .../_files/customer_composite_delete.csv      |   0
 .../_files/customer_composite_update.csv      |   0
 ...r_to_import_with_one_additional_column.csv |   0
 .../Import/_files/customers_to_delete.csv     |   0
 .../Import/_files/customers_to_import.csv     |   0
 .../App/ApplicationDumpCommandTest.php        |   0
 .../IntegrationTestImporter.php               |   0
 .../IntegrationTestSecondImporter.php         |   0
 .../Command/App/ConfigImportCommandTest.php   |   0
 .../App/SensitiveConfigSetCommandTest.php     |   0
 .../testsuite/Magento/Deploy/DeployTest.php   |   0
 .../Magento/Deploy/_files/_config.local.php   |   0
 .../Magento/Deploy/_files/config.php          |   0
 .../Magento/Deploy/_files/config_data.php     |   0
 .../Magento/Deploy/_files/lib/web/test.js     |   0
 .../testsuite/Magento/Deploy/_files/map.php   |   0
 .../Magento/Deploy/_files/requirejs-map.js    |   0
 .../scopes/config_with_changed_stores.php     |   0
 .../scopes/config_with_removed_stores.php     |   0
 .../_files/scopes/config_with_stores.php      |   0
 .../testsuite/Magento/Deploy/_files/theme.php |   0
 .../Magento/Deploy/_files/theme_rollback.php  |   0
 .../Magento/Deploy/_files/zoom1/LICENSE.txt   |   0
 .../Deploy/_files/zoom1/LICENSE_AFL.txt       |   0
 .../Magento/Deploy/_files/zoom1/composer.json |   0
 .../Magento/Deploy/_files/zoom1/etc/view.xml  |   0
 .../Deploy/_files/zoom1/registration.php      |   0
 .../Magento/Deploy/_files/zoom1/theme.xml     |   0
 .../Deploy/_files/zoom1/web/css/root.less     |   0
 .../zoom1/web/images/logo-magento-1.png       | Bin
 .../zoom1/web/images/logo-magento-2.png       | Bin
 .../zoom1/web/images/logo-magento-3.png       | Bin
 .../Deploy/_files/zoom1/web/js/file1.js       |   0
 .../Deploy/_files/zoom1/web/js/file2.js       |   0
 .../Deploy/_files/zoom1/web/js/file3.js       |   0
 .../Deploy/_files/zoom1/web/js/file4.js       |   0
 .../Magento/Deploy/_files/zoom2/LICENSE.txt   |   0
 .../Deploy/_files/zoom2/LICENSE_AFL.txt       |   0
 .../Magento/Deploy/_files/zoom2/composer.json |   0
 .../Magento/Deploy/_files/zoom2/etc/view.xml  |   0
 .../Deploy/_files/zoom2/registration.php      |   0
 .../Magento/Deploy/_files/zoom2/theme.xml     |   0
 .../Deploy/_files/zoom2/web/css/_testA.less   |   0
 .../Deploy/_files/zoom2/web/css/_testB.less   |   0
 .../Deploy/_files/zoom2/web/css/root.less     |   0
 .../zoom2/web/images/logo-magento-2.png       | Bin
 .../Deploy/_files/zoom2/web/js/file2.js       |   0
 .../Magento/Deploy/_files/zoom3/LICENSE.txt   |   0
 .../Magento/Deploy/_files/zoom3/composer.json |   0
 .../Magento/Deploy/_files/zoom3/etc/view.xml  |   0
 .../Deploy/_files/zoom3/registration.php      |   0
 .../Magento/Deploy/_files/zoom3/theme.xml     |   0
 .../Deploy/_files/zoom3/web/css/_testA.less   |   0
 .../Deploy/_files/zoom3/web/css/local.css     |   0
 .../zoom3/web/images/logo-magento-3.png       | Bin
 .../Deploy/_files/zoom3/web/js/file3.js       |   0
 .../Command/SourceThemeDeployCommandTest.php  |   0
 .../Magento/Developer/Helper/DataTest.php     |   0
 .../Model/Config/Backend/AllowedIpsTest.php   |   0
 .../Model/Logger/Handler/DebugTest.php        |   0
 .../Dhl/Block/Adminhtml/UnitofmeasureTest.php |   0
 .../Magento/Directory/Block/DataTest.php      |   0
 .../Magento/Directory/Helper/DataTest.php     |   0
 .../Country/Postcode/Config/ReaderTest.php    |   0
 .../Model/Country/Postcode/ValidatorTest.php  |   0
 .../Directory/Model/CurrencyConfigTest.php    |   0
 .../Magento/Directory/Model/ObserverTest.php  |   0
 .../Directory/Model/PriceCurrencyTest.php     |   0
 .../Edit/Tab/Downloadable/LinksTest.php       |   0
 .../Edit/Tab/Downloadable/SamplesTest.php     |   0
 .../Controller/Adminhtml/_files/sample.txt    |   0
 .../Downloadable/Controller/ProductTest.php   |   0
 .../Observer/SetLinkStatusObserverTest.php    |   0
 .../Downloadable/Model/Product/TypeTest.php   |   0
 .../Model/ResourceModel/Indexer/PriceTest.php |   0
 ...der_item_with_downloadable_and_options.php |   0
 ...with_downloadable_and_options_rollback.php |   0
 .../order_with_downloadable_product.php       |   0
 ...adable_product_with_additional_options.php |   0
 .../_files/product_downloadable.php           |   0
 .../_files/product_downloadable_rollback.php  |   0
 .../product_downloadable_with_files.php       |   0
 ...oduct_downloadable_with_files_rollback.php |   0
 .../quote_with_downloadable_product.php       |   0
 ...ote_with_downloadable_product_rollback.php |   0
 .../Downloadable/_files/test_image.jpg        | Bin
 .../Downloadable/etc/extension_attributes.xml |   0
 .../Model/DownloadableTest.php                |   0
 .../Import/Product/Type/DownloadableTest.php  |   0
 .../Import/_files/import_downloadable.csv     |   0
 .../Attribute/Edit/Main/AbstractMainTest.php  |   0
 .../Model/Attribute/GroupRepositoryTest.php   |   0
 .../Eav/Model/AttributeManagementTest.php     |   0
 .../Eav/Model/AttributeRepositoryTest.php     |   0
 .../Magento/Eav/Model/ConfigTest.php          |   0
 .../Frontend/DefaultFrontendTest.php          |   0
 .../Eav/Model/Entity/AttributeLoaderTest.php  |   0
 .../ResourceModel/AttributeLoaderTest.php     |   0
 .../Entity/Attribute/CollectionTest.php       |   0
 .../Model/ResourceModel/UpdateHandlerTest.php |   0
 .../Model/Validator/Attribute/BackendTest.php |   0
 .../Magento/Eav/Setup/EavSetupTest.php        |   0
 .../Eav/_files/attribute_for_search.php       |   0
 .../Eav/_files/attribute_group_for_search.php |   0
 .../Eav/_files/attribute_set_for_search.php   |   0
 .../attribute_set_for_search_rollback.php     |   0
 .../Eav/_files/empty_attribute_set.php        |   0
 .../_files/empty_attribute_set_rollback.php   |   0
 .../Adminhtml/Template/Edit/FormTest.php      |   0
 .../Adminhtml/Email/TemplateTest.php          |   0
 .../Email/Model/Template/FilterTest.php       |   0
 .../Magento/Email/Model/TemplateTest.php      |   0
 .../code/Magento/Email/view/email/footer.html |   0
 .../code/Magento/Email/view/email/header.html |   0
 .../layout/email_template_test_handle.xml     |   0
 .../templates/sample_email_content.phtml      |   0
 .../email/cron_error.html                     |   0
 .../Magento/default/registration.php          |   0
 .../adminhtml/Magento/default/theme.xml       |   0
 .../Vendor/custom_theme/registration.php      |   0
 .../adminhtml/Vendor/custom_theme/theme.xml   |   0
 .../adminhtml/Vendor/default/registration.php |   0
 .../design/adminhtml/Vendor/default/theme.xml |   0
 .../email/account_new_confirmed.html          |   0
 .../layout/email_template_test_handle.xml     |   0
 .../templates/sample_email_content.phtml      |   0
 .../sample_email_content_custom.phtml         |   0
 .../frontend/Magento/default/registration.php |   0
 .../design/frontend/Magento/default/theme.xml |   0
 .../Magento/default/web/css/email-3.less      |   0
 .../default/web/css/email-inline-3.less       |   0
 .../default/web/css/file-with-error.less      |   0
 .../Magento_Customer/email/account_new.html   |   0
 .../Vendor/custom_theme/registration.php      |   0
 .../frontend/Vendor/custom_theme/theme.xml    |   0
 .../Vendor/custom_theme/web/css/email-1.less  |   0
 .../custom_theme/web/css/email-inline-1.less  |   0
 .../email/account_new_confirmation.html       |   0
 .../frontend/Vendor/default/registration.php  |   0
 .../design/frontend/Vendor/default/theme.xml  |   0
 .../Vendor/default/web/css/email-2.less       |   0
 .../default/web/css/email-inline-2.less       |   0
 .../Email/Model/_files/email_template.php     |   0
 .../Email/Model/_files/template_fixture.html  |   0
 .../Block/Adminhtml/Crypt/Key/EditTest.php    |   0
 .../Block/Adminhtml/Crypt/Key/FormTest.php    |   0
 .../Adminhtml/Crypt/Key/IndexTest.php         |   0
 .../Adminhtml/Crypt/Key/SaveTest.php          |   0
 .../Model/ResourceModel/Key/ChangeTest.php    |   0
 .../EncryptionKey/_files/payment_info.php     |   0
 .../Magento/Fedex/Model/CarrierTest.php       |   0
 .../Fedex/Model/Source/UnitofmeasureTest.php  |   0
 .../Api/AbstractExtensibleObjectTest.php      |   0
 .../ExtensionAttribute/Config/ReaderTest.php  |   0
 .../Config/_files/config_one.xml              |   0
 .../Config/_files/config_two.xml              |   0
 .../ExtensionAttribute/JoinProcessorTest.php  |   0
 .../Api/ExtensionAttributesFactoryTest.php    |   0
 .../Api/Data/FakeAddressInterface.php         |   0
 .../Api/Data/FakeExtensibleOneInterface.php   |   0
 .../Api/Data/FakeExtensibleTwoInterface.php   |   0
 .../Api/Data/FakeRegionInterface.php          |   0
 .../Wonderland/Model/Data/FakeAddress.php     |   0
 .../Model/Data/FakeExtensibleOne.php          |   0
 .../Model/Data/FakeExtensibleTwo.php          |   0
 .../Wonderland/Model/Data/FakeRegion.php      |   0
 .../Magento/Wonderland/Model/FakeAddress.php  |   0
 .../Magento/Wonderland/Model/FakeRegion.php   |   0
 .../Api/_files/extension_attributes.xml       |   0
 .../Api/etc/extension_attributes.xml          |   0
 .../Magento/Framework/App/AreaTest.php        |   0
 .../Magento/Framework/App/Config/BaseTest.php |   0
 .../Magento/Framework/App/Config/DataTest.php |   0
 .../Framework/App/Config/InitialTest.php      |   0
 .../Framework/App/FrontControllerTest.php     |   0
 .../Framework/App/Language/DictionaryTest.php |   0
 .../App/Language/_files/bar/en_gb/1.csv       |   0
 .../Language/_files/bar/en_gb/language.xml    |   0
 .../_files/bar/en_gb/registration.php         |   0
 .../App/Language/_files/bar/en_us/a.csv       |   0
 .../App/Language/_files/bar/en_us/b.csv       |   0
 .../Language/_files/bar/en_us/language.xml    |   0
 .../_files/bar/en_us/registration.php         |   0
 .../App/Language/_files/baz/en_gb/1.csv       |   0
 .../Language/_files/baz/en_gb/language.xml    |   0
 .../_files/baz/en_gb/registration.php         |   0
 .../App/Language/_files/first/en_us/1.csv     |   0
 .../Language/_files/first/en_us/language.xml  |   0
 .../_files/first/en_us/registration.php       |   0
 .../App/Language/_files/foo/en_au/1.csv       |   0
 .../App/Language/_files/foo/en_au/2.csv       |   0
 .../Language/_files/foo/en_au/language.xml    |   0
 .../_files/foo/en_au/registration.php         |   0
 .../App/Language/_files/my/ru_ru/1.csv        |   0
 .../App/Language/_files/my/ru_ru/language.xml |   0
 .../Language/_files/my/ru_ru/registration.php |   0
 .../App/Language/_files/second/en_gb/1.csv    |   0
 .../Language/_files/second/en_gb/language.xml |   0
 .../_files/second/en_gb/registration.php      |   0
 .../App/Language/_files/theirs/ru_ru/1.csv    |   0
 .../Language/_files/theirs/ru_ru/language.xml |   0
 .../_files/theirs/ru_ru/registration.php      |   0
 .../App/ObjectManager/ConfigLoaderTest.php    |   0
 .../ConnectionFactoryTest.php                 |   0
 .../HeaderProvider/AbstractHeaderTestCase.php |   0
 .../App/Response/HeaderProvider/HstsTest.php  |   0
 .../HeaderProvider/UpgradeInsecureTest.php    |   0
 .../HeaderProvider/XFrameOptionsTest.php      |   0
 .../Framework/App/Route/ConfigTest.php        |   0
 .../Magento/Framework/App/Router/BaseTest.php |   0
 .../Framework/App/Utility/FilesTest.php       |   0
 .../Utility/_files/fixtures/language/One.php  |   0
 .../Utility/_files/fixtures/language/one.csv  |   0
 .../_files/fixtures/language/registration.php |   0
 .../Utility/_files/fixtures/library/One.php   |   0
 .../_files/fixtures/library/registration.php  |   0
 .../Utility/_files/fixtures/module/One.php    |   0
 .../_files/fixtures/module/registration.php   |   0
 .../App/Utility/_files/fixtures/theme/One.php |   0
 .../_files/fixtures/theme/registration.php    |   0
 .../App/Utility/_files/patterns/paths_one.txt |   0
 .../App/Utility/_files/patterns/paths_two.txt |   0
 .../App/View/Deployment/VersionTest.php       |   0
 .../Framework/Backup/FilesystemTest.php       |   0
 .../backups/1474538269_filesystem_code.tgz    | Bin
 .../Framework/Cache/Backend/MongoDbTest.php   |   0
 .../Magento/Framework/Cache/CoreTest.php      |   0
 .../Magento/Framework/Code/GeneratorTest.php  |   0
 .../ParentClassWithNamespace.php              |   0
 .../SourceClassWithNamespace.php              |   0
 .../SourceClassWithNamespaceExtension.php     |   0
 .../Code/Reader/SourceArgumentsReaderTest.php |   0
 .../SourceArgumentsReaderTest.php.sample      |   0
 ...espaceExtensionInterfaceFactory.php.sample |   0
 ...SourceClassWithNamespaceFactory.php.sample |   0
 ...ceClassWithNamespaceInterceptor.php.sample |   0
 .../SourceClassWithNamespaceProxy.php.sample  |   0
 .../Framework/Code/_files/ClassToFind.php     |   0
 .../Framework/Communication/ConfigTest.php    |   0
 ...nication_incorrect_request_schema_type.php |   0
 .../communication_invalid_topic_name.php      |   0
 ...nication_is_synchronous_is_not_boolean.php |   0
 .../_files/communication_missing_handler.xml  |   0
 .../_files/communication_missing_request.xml  |   0
 ...ion_multiple_handlers_synchronous_mode.php |   0
 ...ion_multiple_handlers_synchronous_mode.xml |   0
 .../_files/communication_no_attributes.xml    |   0
 ...munication_not_existing_handler_method.php |   0
 ...munication_not_existing_handler_method.xml |   0
 .../communication_not_existing_service.xml    |   0
 ...munication_not_existing_service_method.xml |   0
 ...unication_request_not_existing_service.php |   0
 ...unication_request_not_existing_service.xml |   0
 ...nication_response_not_existing_service.php |   0
 ...nication_response_not_existing_service.xml |   0
 ...ommunication_topic_with_excessive_keys.php |   0
 .../communication_topic_with_missed_keys.php  |   0
 .../communication_topic_without_data.php      |   0
 .../communication_with_disabled_handler.php   |   0
 .../communication_with_non_matched_name.php   |   0
 .../_files/invalid_communication_numeric.xml  |   0
 .../_files/valid_communication.xml            |   0
 .../_files/valid_communication_expected.php   |   0
 .../_files/valid_communication_input.php      |   0
 .../_files/valid_communication_numeric.xml    |   0
 .../Composer/ComposerInformationTest.php      |   0
 .../Magento/Framework/Composer/RemoveTest.php |   0
 .../Composer/_files/testFromClone/.htaccess   |   0
 .../_files/testFromClone/cache/.htaccess      |   0
 .../_files/testFromClone/composer.json        |   0
 .../_files/testFromClone/composer.lock        |   0
 .../_files/testFromClone/vendor/README        |   0
 .../_files/testFromCreateProject/.htaccess    |   0
 .../testFromCreateProject/cache/.htaccess     |   0
 .../testFromCreateProject/composer.json       |   0
 .../testFromCreateProject/composer.lock       |   0
 .../testFromCreateProject/vendor/README       |   0
 .../Composer/_files/testSkeleton/.htaccess    |   0
 .../_files/testSkeleton/cache/.htaccess       |   0
 .../_files/testSkeleton/composer.json         |   0
 .../_files/testSkeleton/composer.lock         |   0
 .../_files/testSkeleton/vendor/README         |   0
 .../Framework/Composer/_files/vendor_path.php |   0
 .../Framework/Config/ConverterTest.php        |   0
 .../PreProcessor/Adapter/CssInlinerTest.php   |   0
 .../File/Collector/AggregatedTest.php         |   0
 .../code/Magento/Other/registration.php       |   0
 .../Magento/Other/view/frontend/web/3.less    |   0
 .../code/Magento/Third/registration.php       |   0
 .../Magento/Third/view/frontend/web/3.less    |   0
 .../MagentoFrameworkCssTest_Module/web/1.file |   0
 .../MagentoFrameworkCssTest_Third/web/3.less  |   0
 .../frontend/Test/default/registration.php    |   0
 .../design/frontend/Test/default/theme.xml    |   0
 .../design/frontend/Test/default/web/1.file   |   0
 .../MagentoFrameworkCssTest_Module/web/1.file |   0
 .../MagentoFrameworkCssTest_Second/web/1.file |   0
 .../frontend/Test/parent/registration.php     |   0
 .../design/frontend/Test/parent/theme.xml     |   0
 .../Css/PreProcessor/_files/lib/web/1.file    |   0
 .../Css/PreProcessor/_files/lib/web/2.file    |   0
 .../Css/PreProcessor/_files/lib/web/3.less    |   0
 .../import_dir/import_in_magento_import.less  |   0
 .../lib/web/some_dir/magento_import.less      |   0
 .../Css/_files/css/test-css-no-spaces.css     |   0
 .../Css/_files/css/test-css-with-spaces.css   |   0
 .../Framework/Css/_files/css/test-input.html  |   0
 .../Framework/DB/Adapter/InterfaceTest.php    |   0
 .../Framework/DB/Adapter/Pdo/MysqlTest.php    |   0
 .../DB/DataConverter/DataConverterTest.php    |   0
 .../Magento/Framework/DB/HelperTest.php       |   0
 .../Magento/Framework/DB/TransactionTest.php  |   0
 .../Interpreter/BaseStringUtilsTest.php       |   0
 .../Argument/Interpreter/StringUtilsTest.php  |   0
 .../Framework/Data/Form/Element/DateTest.php  |   0
 .../Data/Form/Element/FieldsetTest.php        |   0
 .../Framework/Data/Form/Element/ImageTest.php |   0
 .../Framework/Data/Wysiwyg/NormalizerTest.php |   0
 .../DataObject/Copy/Config/ReaderTest.php     |   0
 .../Copy/Config/_files/expectedArray.php      |   0
 .../Copy/Config/_files/fieldset.xml           |   0
 .../Config/_files/partialFieldsetFirst.xml    |   0
 .../Config/_files/partialFieldsetSecond.xml   |   0
 .../Magento/Framework/DataObject/CopyTest.php |   0
 .../Data/FakeAttributeMetadataInterface.php   |   0
 .../Api/Data/FakeCustomerInterface.php        |   0
 .../Model/Data/FakeAttributeMetadata.php      |   0
 .../Wonderland/Model/Data/FakeCustomer.php    |   0
 .../Model/FakeAttributeMetadata.php           |   0
 .../Magento/Wonderland/Model/FakeCustomer.php |   0
 .../Framework/Encryption/EncryptorTest.php    |   0
 .../Framework/Encryption/ModelTest.php        |   0
 .../Magento/Framework/Error/ProcessorTest.php |   0
 .../Exception/NoSuchEntityExceptionTest.php   |   0
 .../Magento/Framework/File/SizeTest.php       |   0
 .../Filesystem/Directory/ReadTest.php         |   0
 .../Filesystem/Directory/WriteTest.php        |   0
 .../Framework/Filesystem/Driver/FileTest.php  |   0
 .../Framework/Filesystem/File/ReadTest.php    |   0
 .../Framework/Filesystem/File/WriteTest.php   |   0
 .../Framework/Filesystem/FileResolverTest.php |   0
 .../Framework/Filesystem/FilesystemTest.php   |   0
 .../Filesystem/_files/ClassToFind.php         |   0
 .../Framework/Filesystem/_files/data.csv      |   0
 .../_files/foo/bar/baz/file_one.txt           |   0
 .../Filesystem/_files/foo/bar/file_two.txt    |   0
 .../Filesystem/_files/foo/file_three.txt      |   0
 .../Framework/Filesystem/_files/popup.csv     |   0
 .../Template/Tokenizer/ParameterTest.php      |   0
 .../Magento/Framework/HTTP/HeaderTest.php     |   0
 .../HTTP/PhpEnvironment/RemoteAddressTest.php |   0
 .../HTTP/PhpEnvironment/ServerAddressTest.php |   0
 .../Framework/Image/Adapter/ConfigTest.php    |   0
 .../Framework/Image/Adapter/InterfaceTest.php |   0
 .../Image/_files/image_adapters_test.png      | Bin
 .../Image/_files/magento_thumbnail.jpg        | Bin
 .../Framework/Image/_files/watermark.gif      | Bin
 .../Framework/Image/_files/watermark.jpg      | Bin
 .../Framework/Image/_files/watermark.png      | Bin
 .../Framework/Interception/AbstractPlugin.php |   0
 .../Interception/Fixture/Intercepted.php      |   0
 .../Fixture/Intercepted/FirstPlugin.php       |   0
 .../Fixture/Intercepted/InterfacePlugin.php   |   0
 .../Fixture/Intercepted/Plugin.php            |   0
 .../Fixture/InterceptedInterface.php          |   0
 .../Fixture/InterceptedParent.php             |   0
 .../Fixture/InterceptedParentInterface.php    |   0
 .../Framework/Interception/GeneralTest.php    |   0
 .../Framework/Interception/TwoPluginTest.php  |   0
 .../Framework/Json/Helper/DataTest.php        |   0
 .../Magento/Framework/Mail/MessageTest.php    |   0
 .../Message/CollectionFactoryTest.php         |   0
 .../Magento/Framework/Message/FactoryTest.php |   0
 .../Magento/Framework/Message/ManagerTest.php |   0
 .../Framework/Model/Entity/HydratorTest.php   |   0
 .../Model/ResourceModel/Db/AbstractTest.php   |   0
 .../Db/Collection/AbstractTest.php            |   0
 .../Model/ResourceModel/Db/ProfilerTest.php   |   0
 .../Model/ResourceModel/Entity/TableTest.php  |   0
 .../Model/ResourceModel/IteratorTest.php      |   0
 .../Type/Db/ConnectionFactoryTest.php         |   0
 .../ResourceModel/Type/Db/Pdo/MysqlTest.php   |   0
 .../Magento/Framework/Model/ResourceTest.php  |   0
 .../Module/Plugin/DbStatusValidatorTest.php   |   0
 .../Framework/Mview/View/ChangelogTest.php    |   0
 .../ObjectManager/Config/Reader/DomTest.php   |   0
 ...ractFactoryRuntimeDefinitionsTestCases.php |   0
 .../ObjectManager/Factory/CompiledTest.php    |   0
 .../Factory/Dynamic/DeveloperTest.php         |   0
 .../ObjectManager/ObjectManagerTest.php       |   0
 .../ObjectManager/TestAsset/Basic.php         |   0
 .../TestAsset/BasicInjection.php              |   0
 .../TestAsset/ComplexDependencies.php         |   0
 .../TestAsset/ConstructorEightArguments.php   |   0
 .../TestAsset/ConstructorFiveArguments.php    |   0
 .../TestAsset/ConstructorFourArguments.php    |   0
 .../TestAsset/ConstructorNineArguments.php    |   0
 .../TestAsset/ConstructorNoArguments.php      |   0
 .../TestAsset/ConstructorOneArgument.php      |   0
 .../TestAsset/ConstructorSevenArguments.php   |   0
 .../TestAsset/ConstructorSixArguments.php     |   0
 .../TestAsset/ConstructorTenArguments.php     |   0
 .../TestAsset/ConstructorThreeArguments.php   |   0
 .../TestAsset/ConstructorTwoArguments.php     |   0
 .../TestAsset/DependsOnAlias.php              |   0
 .../TestAsset/DependsOnInterface.php          |   0
 .../TestAsset/HasOptionalParameters.php       |   0
 .../TestAsset/InterfaceImplementation.php     |   0
 .../TestAsset/InterfaceInjection.php          |   0
 .../TestAsset/TestAssetInterface.php          |   0
 .../ObjectManager/_files/config_merged.xml    |   0
 .../ObjectManager/_files/config_one.xml       |   0
 .../ObjectManager/_files/config_two.xml       |   0
 .../Framework/Pricing/Helper/DataTest.php     |   0
 .../Driver/Standard/Output/CsvfileTest.php    |   0
 .../Driver/Standard/Output/HtmlTest.php       |   0
 .../Driver/Standard/Output/_files/output.html |   0
 .../Standard/Output/_files/output_custom.csv  |   0
 .../Standard/Output/_files/output_default.csv |   0
 .../Driver/Standard/Output/_files/timers.php  |   0
 .../Magento/Framework/ProfilerTest.php        |   0
 .../Framework/Reflection/MethodsMapTest.php   |   0
 .../Search/Adapter/Mysql/AdapterTest.php      |   0
 .../Adapter/Mysql/Builder/Query/MatchTest.php |   0
 .../Search/Request/Config/ConverterTest.php   |   0
 .../Request/Config/FileResolverStub.php       |   0
 .../Request/Config/FileSystemReaderTest.php   |   0
 .../Framework/Search/Request/MapperTest.php   |   0
 .../Search/_files/configurable_attribute.php  |   0
 .../configurable_attribute_rollback.php       |   0
 .../Search/_files/date_attribute.php          |   0
 .../Search/_files/date_attribute_rollback.php |   0
 .../Search/_files/etc/search_request_1.xml    |   0
 .../Search/_files/etc/search_request_2.xml    |   0
 .../Search/_files/filterable_attribute.php    |   0
 .../_files/filterable_attribute_rollback.php  |   0
 .../Search/_files/filterable_attributes.php   |   0
 .../_files/filterable_attributes_rollback.php |   0
 .../Search/_files/product_configurable.php    |   0
 .../_files/product_configurable_rollback.php  |   0
 ...oduct_configurable_with_disabled_child.php |   0
 ...figurable_with_disabled_child_rollback.php |   0
 .../Framework/Search/_files/products.php      |   0
 .../Search/_files/products_multi_option.php   |   0
 .../_files/products_multi_option_rollback.php |   0
 .../Search/_files/products_rollback.php       |   0
 .../products_with_the_same_search_score.php   |   0
 ...ts_with_the_same_search_score_rollback.php |   0
 .../Framework/Search/_files/requests.xml      |   0
 .../Search/_files/search_request.xml          |   0
 .../Search/_files/search_request_config.php   |   0
 .../Search/_files/search_request_merged.php   |   0
 .../Search/_files/search_weight_products.php  |   0
 .../search_weight_products_rollback.php       |   0
 .../Validator/CookieDomainValidatorTest.php   |   0
 .../Validator/CookieLifetimeValidatorTest.php |   0
 .../Validator/CookiePathValidatorTest.php     |   0
 .../Magento/Framework/Session/ConfigTest.php  |   0
 .../Session/SaveHandler/DbTableTest.php       |   0
 .../Framework/Session/SaveHandlerTest.php     |   0
 .../Framework/Session/SessionManagerTest.php  |   0
 .../Framework/Session/SidResolverTest.php     |   0
 .../Stdlib/Cookie/CookieScopeTest.php         |   0
 .../Stdlib/Cookie/PhpCookieManagerTest.php    |   0
 .../Stdlib/Cookie/PhpCookieReaderTest.php     |   0
 .../Stdlib/DateTime/Filter/DateTest.php       |   0
 .../Stdlib/DateTime/Filter/DateTimeTest.php   |   0
 .../Framework/Translate/InlineTest.php        |   0
 .../_files/_inline_page_expected.html         |   0
 .../_files/_inline_page_original.html         |   0
 .../Translate/_files/_translation_data.php    |   0
 .../Framework/TranslateCachingTest.php        |   0
 .../Magento/Framework/TranslateTest.php       |   0
 .../Magento/Framework/Url/Helper/DataTest.php |   0
 .../testsuite/Magento/Framework/UrlTest.php   |   0
 .../Framework/Validator/FactoryTest.php       |   0
 .../Framework/ValidatorFactoryTest.php        |   0
 .../Framework/View/Asset/MinifierTest.php     |   0
 .../View/Design/Fallback/RulePoolTest.php     |   0
 .../Design/FileResolution/FallbackTest.php    |   0
 .../Framework/View/Design/Theme/LabelTest.php |   0
 .../View/Design/Theme/ValidatorTest.php       |   0
 .../View/Element/AbstractBlockTest.php        |   0
 .../Framework/View/Element/TemplateTest.php   |   0
 .../Framework/View/Element/Text/ListTest.php  |   0
 .../Framework/View/Element/TextTest.php       |   0
 .../Config/Provider/TemplateTest.php          |   0
 .../frontend/Magento/plushe/css/wrong.css     |   0
 .../Magento/Framework/View/FileSystemTest.php |   0
 .../View/Fixture/Block/BrokenAction.php       |   0
 .../View/Fixture/Block/BrokenConstructor.php  |   0
 .../View/Fixture/Block/BrokenLayout.php       |   0
 .../Framework/View/Layout/ElementTest.php     |   0
 .../Framework/View/Layout/MergeTest.php       |   0
 .../Reader/_files/_layout_update_block.xml    |   0
 .../_files/_layout_update_reference.xml       |   0
 .../layout/catalog_category_default.xml       |   0
 .../layout/catalog_category_layered.xml       |   0
 .../layout/catalog_product_view.xml           |   0
 ...catalog_product_view_type_configurable.xml |   0
 .../catalog_product_view_type_simple.xml      |   0
 .../layout/checkout_index_index.xml           |   0
 .../_mergeFiles/layout/customer_account.xml   |   0
 .../Layout/_mergeFiles/layout/default.xml     |   0
 .../Layout/_mergeFiles/layout/file_wrong.xml  |   0
 .../_mergeFiles/layout/fixture_handle_one.xml |   0
 .../layout/fixture_handle_page_layout.xml     |   0
 .../_mergeFiles/layout/fixture_handle_two.xml |   0
 .../fixture_handle_with_page_layout.xml       |   0
 .../_mergeFiles/layout/not_a_page_type.xml    |   0
 .../Layout/_mergeFiles/layout/page_empty.xml  |   0
 .../View/Layout/_mergeFiles/layout/print.xml  |   0
 .../_mergeFiles/layout/sales_guest_print.xml  |   0
 .../_mergeFiles/layout/sales_order_print.xml  |   0
 .../View/Layout/_mergeFiles/merged.xml        |   0
 .../View/LayoutArgumentObjectUpdater.php      |   0
 .../View/LayoutArgumentSimpleUpdater.php      |   0
 .../Magento/Framework/View/LayoutTest.php     |   0
 .../View/LayoutTestWithExceptions.php         |   0
 .../Framework/View/Model/Layout/MergeTest.php |   0
 .../_files/layout/fixture_handle_one.xml      |   0
 .../_files/layout/fixture_handle_two.xml      |   0
 .../View/Page/Config/Reader/HtmlTest.php      |   0
 .../Config/Reader/_files/_layout_update.xml   |   0
 .../Magento/Framework/View/Utility/Layout.php |   0
 .../Framework/View/Utility/LayoutTest.php     |   0
 .../View/Utility/_files/layout/handle_one.xml |   0
 .../Utility/_files/layout/handle_three.xml    |   0
 .../View/Utility/_files/layout/handle_two.xml |   0
 .../_files/layout_merged/multiple_handles.xml |   0
 .../_files/layout_merged/single_handle.xml    |   0
 .../_files/Fixture_Module/registration.php    |   0
 .../view/adminhtml/product/product.css        |   0
 .../images/gallery-image-base-label.png       | Bin
 .../view/adminhtml/images/allinone.png        | Bin
 .../ModuleC/view/adminhtml/images/logo.png    | Bin
 .../Magento/ModuleC/view/adminhtml/styles.css |   0
 .../_files/UiComponent/expected/config.xml    |   0
 .../Magento_Catalog/ui_component/test.xml     |   0
 .../Magento_Customer/ui_component/test.xml    |   0
 .../_files/UiComponent/theme/registration.php |   0
 .../View/_files/UiComponent/theme/theme.xml   |   0
 .../app/code/ViewTest_Module/registration.php |   0
 .../templates/fixture_template_two.phtml      |   0
 .../ViewTest_Module/web/fixture_script_two.js |   0
 .../Vendor/custom_theme/i18n/en_US.csv        |   0
 .../Vendor/custom_theme/registration.php      |   0
 .../templates/fixture_template_two.phtml      |   0
 .../frontend/Vendor/custom_theme/theme.xml    |   0
 .../custom_theme/web/fixture_script_two.js    |   0
 .../Vendor/custom_theme/web/mage/script.js    |   0
 .../Vendor/custom_theme2/registration.php     |   0
 .../frontend/Vendor/custom_theme2/theme.xml   |   0
 .../templates/fixture_template.phtml          |   0
 .../ViewTest_Module/web/fixture_script.js     |   0
 .../web/i18n/ru_RU/fixture_script.js          |   0
 .../frontend/Vendor/default/i18n/en_US.csv    |   0
 .../frontend/Vendor/default/registration.php  |   0
 .../default/templates/fixture_template.phtml  |   0
 .../design/frontend/Vendor/default/theme.xml  |   0
 .../Vendor/default/web/fixture_script.js      |   0
 .../default/web/i18n/ru_RU/fixture_script.js  |   0
 .../Vendor/standalone_theme/registration.php  |   0
 .../Vendor/standalone_theme/theme.xml         |   0
 .../_files/fallback/lib/web/mage/script.js    |   0
 .../View/_files/layout/cacheable.xml          |   0
 .../_files/layout/container_attributes.xml    |   0
 .../View/_files/layout/non_cacheable.xml      |   0
 .../action_for_anonymous_parent_block.xml     |   0
 .../layout_directives_test/arguments.xml      |   0
 .../arguments_complex_values.xml              |   0
 .../arguments_object_type.xml                 |   0
 .../arguments_object_type_updaters.xml        |   0
 .../arguments_url_type.xml                    |   0
 .../layout_directives_test/get_block.xml      |   0
 .../_files/layout_directives_test/group.xml   |   0
 .../layout_directives_test/ifconfig.xml       |   0
 .../_files/layout_directives_test/move.xml    |   0
 .../move_alias_broken.xml                     |   0
 .../layout_directives_test/move_broken.xml    |   0
 .../layout_directives_test/move_new_alias.xml |   0
 .../move_the_same_alias.xml                   |   0
 .../remove_cancellation.xml                   |   0
 .../_files/layout_directives_test/render.xml  |   0
 .../sort_after_after.xml                      |   0
 .../sort_after_previous.xml                   |   0
 .../sort_before_after.xml                     |   0
 .../sort_before_before.xml                    |   0
 .../_files/layout_with_exceptions/layout.xml  |   0
 .../static/expected/styles.magento.min.css    |   0
 .../View/_files/static/expected/test.min.js   |   0
 .../View/_files/static/theme/registration.php |   0
 .../View/_files/static/theme/theme.xml        |   0
 .../theme/web/css/preminified-styles.min.css  |   0
 .../_files/static/theme/web/css/styles.css    |   0
 .../View/_files/static/theme/web/js/test.js   |   0
 .../Model/OrderItemRepositoryTest.php         |   0
 .../GiftMessage/Model/OrderRepositoryTest.php |   0
 .../GiftMessage/_files/empty_order.php        |   0
 .../GiftMessage/_files/order_with_message.php |   0
 .../quote_with_customer_and_message.php       |   0
 ...ote_with_customer_and_message_rollback.php |   0
 .../_files/quote_with_item_message.php        |   0
 .../quote_with_item_message_rollback.php      |   0
 .../GiftMessage/_files/quote_with_message.php |   0
 .../_files/quote_with_message_rollback.php    |   0
 .../GiftMessage/_files/virtual_order.php      |   0
 .../Model/Validator/FactoryTest.php           |   0
 .../GroupedImportExport/Model/GroupedTest.php |   0
 .../Model/Import/Product/Type/GroupedTest.php |   0
 .../Model/Import/_files/grouped_product.csv   |   0
 .../Model/Product/Type/GroupedTest.php        |   0
 .../Product/Indexer/Price/GroupedTest.php     |   0
 .../Product/Indexer/Stock/GroupedTest.php     |   0
 .../AssociatedProductsCollectionTest.php      |   0
 .../Pricing/Price/FinalPriceTest.php          |   0
 .../GroupedProduct/_files/product_grouped.php |   0
 .../_files/product_grouped_rollback.php       |   0
 .../_files/product_grouped_with_simple.php    |   0
 .../product_grouped_with_simple_rollback.php  |   0
 .../Block/Adminhtml/Export/Edit/FormTest.php  |   0
 .../Block/Adminhtml/Export/FilterTest.php     |   0
 .../Adminhtml/Import/Edit/BeforeTest.php      |   0
 .../Block/Adminhtml/Import/Edit/FormTest.php  |   0
 .../Controller/Adminhtml/ExportTest.php       |   0
 .../Adminhtml/Import/HttpFactoryMock.php      |   0
 .../Adminhtml/Import/ValidateTest.php         |   0
 .../Import/_files/catalog_product.csv         |   0
 .../incorrect_catalog_product_comma.csv       |   0
 .../incorrect_catalog_product_semicolon.csv   |   0
 .../Adminhtml/Import/_files/test.txt          |   0
 .../Controller/Adminhtml/ImportTest.php       |   0
 .../_files/products_duplicate_category.csv    |   0
 .../Model/Export/AbstractStubEntity.php       |   0
 .../Model/Export/Entity/AbstractEavTest.php   |   0
 .../Model/Export/EntityAbstractTest.php       |   0
 .../Magento/ImportExport/Model/ExportTest.php |   0
 .../Model/Import/Entity/EavAbstractTest.php   |   0
 .../_files/customers_for_validation_test.csv  |   0
 .../Model/Import/EntityAbstractTest.php       |   0
 .../Magento/ImportExport/Model/ImportTest.php |   0
 .../Model/ResourceModel/Import/DataTest.php   |   0
 .../Model/Source/Import/EntityTest.php        |   0
 .../ImportExport/_files/import_data.php       |   0
 .../Magento/ImportExport/_files/product.php   |   0
 .../Controller/Adminhtml/IndexerTest.php      |   0
 .../Indexer/Model/Config/ConverterTest.php    |   0
 .../dependency_on_not_existing_indexer.xml    |   0
 .../Indexer/Model/Config/_files/indexer.xml   |   0
 .../indexer_with_circular_dependency.xml      |   0
 .../Indexer/Model/Config/_files/result.php    |   0
 .../CustomerData/InstantPurchaseTest.php      |   0
 .../StubPaymentTokenFormatter.php             |   0
 .../Model/InstantPurchaseTest.php             |   0
 .../InstantPurchase/Model/PlaceOrderTest.php  |   0
 .../_files/fake_payment_token.php             |   0
 .../Activate/Permissions/Tab/WebapiTest.php   |   0
 .../Adminhtml/Integration/Edit/FormTest.php   |   0
 .../Integration/Edit/Tab/InfoTest.php         |   0
 .../Block/Adminhtml/Integration/EditTest.php  |   0
 .../Block/Adminhtml/Integration/GridTest.php  |   0
 .../Adminhtml/Integration/TokensTest.php      |   0
 .../Column/Renderer/Button/DeleteTest.php     |   0
 .../Grid/Column/Renderer/Button/EditTest.php  |   0
 .../Column/Renderer/Link/ActivateTest.php     |   0
 .../Controller/Adminhtml/IntegrationTest.php  |   0
 .../Model/AdminTokenServiceTest.php           |   0
 .../Model/AuthorizationServiceTest.php        |   0
 .../Model/Config/Consolidated/ReaderTest.php  |   0
 .../Consolidated/_files/integration.php       |   0
 .../Consolidated/_files/integrationA.xml      |   0
 .../Consolidated/_files/integrationB.xml      |   0
 .../Model/Config/Integration/ReaderTest.php   |   0
 .../Model/Config/Integration/_files/api.php   |   0
 .../Model/Config/Integration/_files/apiA.xml  |   0
 .../Model/Config/Integration/_files/apiB.xml  |   0
 .../Integration/Model/Config/ReaderTest.php   |   0
 .../Model/Config/_files/configA.xml           |   0
 .../Model/Config/_files/configB.xml           |   0
 .../Model/Config/_files/integration.php       |   0
 .../Model/CustomerTokenServiceTest.php        |   0
 .../Model/ResourceModel/IntegrationTest.php   |   0
 .../Model/ResourceModel/Oauth/TokenTest.php   |   0
 .../_files/integration_all_permissions.php    |   0
 .../integration_all_permissions_rollback.php  |   0
 .../MediaStorage/Model/File/StorageTest.php   |   0
 .../testsuite/Magento/MemoryUsageTest.php     |   0
 .../Block/Checkout/Address/SelectTest.php     |   0
 .../Block/Checkout/AddressesTest.php          |   0
 .../Block/Checkout/OverviewTest.php           |   0
 .../Multishipping/Controller/CheckoutTest.php |   0
 .../Model/Checkout/Type/MultishippingTest.php |   0
 .../Block/Adminhtml/Queue/Edit/FormTest.php   |   0
 .../Block/Adminhtml/SubscriberTest.php        |   0
 .../Adminhtml/NewsletterQueueTest.php         |   0
 .../Adminhtml/NewsletterTemplateTest.php      |   0
 .../Newsletter/Controller/ManageTest.php      |   0
 .../Newsletter/Controller/SubscriberTest.php  |   0
 .../Magento/Newsletter/Helper/DataTest.php    |   0
 .../Newsletter/Model/Plugin/PluginTest.php    |   0
 .../Magento/Newsletter/Model/QueueTest.php    |   0
 .../ResourceModel/Problem/CollectionTest.php  |   0
 .../Subscriber/CollectionTest.php             |   0
 .../Model/ResourceModel/SubscriberTest.php    |   0
 .../Newsletter/Model/SubscriberTest.php       |   0
 .../Magento/Newsletter/Model/TemplateTest.php |   0
 .../Newsletter/_files/newsletter_sample.php   |   0
 .../Magento/Newsletter/_files/problems.php    |   0
 .../Magento/Newsletter/_files/queue.php       |   0
 .../Magento/Newsletter/_files/subscribers.php |   0
 .../_files/subscribers_rollback.php           |   0
 .../Magento/Newsletter/_files/template.php    |   0
 .../OfflineShipping/_files/tablerates.php     |   0
 .../_files/tablerates_rollback.php            |   0
 .../PageCache/Block/JavascriptTest.php        |   0
 .../System/Config/Form/Field/ExportTest.php   |   0
 .../Magento/PageCache/Model/ConfigTest.php    |   0
 .../PageCache/Model/Layout/MergeTest.php      |   0
 .../Model/System/Config/Backend/TtlTest.php   |   0
 .../System/Config/Backend/VarnishTest.php     |   0
 .../Magento/PageCache/Model/_files/result.vcl |   0
 .../Magento/PageCache/Model/_files/test.vcl   |   0
 .../Magento/Payment/Block/InfoTest.php        |   0
 .../Payment/Block/Transparent/IframeTest.php  |   0
 .../Magento/Payment/Helper/DataTest.php       |   0
 .../Payment/Model/Config/ReaderTest.php       |   0
 .../Magento/Payment/Model/ConfigTest.php      |   0
 .../Magento/Payment/Model/_files/payment.xml  |   0
 .../Magento/Payment/Model/_files/payment2.xml |   0
 ...derStatusForPaymentMethodsObserverTest.php |   0
 .../Magento/Payment/_files/order_status.php   |   0
 .../Paypal/Adminhtml/Paypal/ReportsTest.php   |   0
 .../Billing/Agreement/View/Tab/InfoTest.php   |   0
 .../Block/Billing/Agreement/ViewTest.php      |   0
 .../Magento/Paypal/Block/Bml/BannersTest.php  |   0
 .../Block/Express/Review/BillingTest.php      |   0
 .../Paypal/Block/Express/ReviewTest.php       |   0
 .../Payment/Form/Billing/AgreementTest.php    |   0
 .../Billing/Agreement/CancelTest.php          |   0
 .../Billing/Agreement/DeleteTest.php          |   0
 .../Adminhtml/Billing/Agreement/GridTest.php  |   0
 .../Adminhtml/Billing/Agreement/IndexTest.php |   0
 .../Adminhtml/Billing/Agreement/ViewTest.php  |   0
 .../Adminhtml/Billing/AgreementTest.php       |   0
 .../Adminhtml/Paypal/Reports/DetailsTest.php  |   0
 .../Adminhtml/Paypal/Reports/FetchTest.php    |   0
 .../Adminhtml/Paypal/Reports/IndexTest.php    |   0
 .../Controller/Billing/AgreementTest.php      |   0
 .../Magento/Paypal/Controller/ExpressTest.php |   0
 .../Paypal/Controller/HostedproTest.php       |   0
 .../Controller/Payflow/SilentPostTest.php     |   0
 .../Magento/Paypal/Controller/PayflowTest.php |   0
 .../Paypal/Controller/PayflowadvancedTest.php |   0
 .../Magento/Paypal/Helper/DataTest.php        |   0
 .../Magento/Paypal/Model/Api/NvpTest.php      |   0
 .../Paypal/Model/Api/PayflowNvpTest.php       |   0
 .../Config/Structure/Reader/ConverterStub.php |   0
 .../Config/Structure/Reader/ReaderStub.php    |   0
 .../Config/Structure/Reader/ReaderTest.php    |   0
 .../Structure/Reader/_files/actual/config.xml |   0
 .../Reader/_files/expected/config.xml         |   0
 .../Paypal/Model/Express/CheckoutTest.php     |   0
 .../Paypal/Model/Hostedpro/RequestTest.php    |   0
 .../Magento/Paypal/Model/HostedproTest.php    |   0
 .../Magento/Paypal/Model/IpnTest.php          |   0
 .../Magento/Paypal/Model/PayflowproTest.php   |   0
 .../Method/Billing/AbstractAgreementTest.php  |   0
 .../Paypal/Model/Report/SettlementTest.php    |   0
 .../Billing/Agreement/CollectionTest.php      |   0
 .../Magento/Paypal/Model/VoidTest.php         |   0
 .../Magento/Paypal/_files/address_data.php    |   0
 .../Paypal/_files/billing_agreement.php       |   0
 .../Paypal/_files/configurable_attribute.php  |   0
 .../Magento/Paypal/_files/fixed_discount.php  |   0
 .../testsuite/Magento/Paypal/_files/ipn.php   |   0
 .../Magento/Paypal/_files/ipn_refund.php      |   0
 .../Magento/Paypal/_files/order_express.php   |   0
 ...er_express_with_invoice_and_creditmemo.php |   0
 ...rder_express_with_invoice_and_shipping.php |   0
 .../Paypal/_files/order_express_with_tax.php  |   0
 .../Magento/Paypal/_files/order_hostedpro.php |   0
 .../Paypal/_files/order_payflow_link.php      |   0
 .../Paypal/_files/order_payflowpro.php        |   0
 .../Paypal/_files/product_configurable.php    |   0
 .../Magento/Paypal/_files/quote_express.php   |   0
 .../_files/quote_express_configurable.php     |   0
 .../_files/quote_express_with_customer.php    |   0
 .../Paypal/_files/quote_payflowpro.php        |   0
 .../Magento/Paypal/_files/quote_payment.php   |   0
 .../Paypal/_files/quote_payment_express.php   |   0
 .../quote_payment_express_with_customer.php   |   0
 .../Paypal/_files/quote_payment_payflow.php   |   0
 .../Magento/Paypal/_files/quote_with_fpt.php  |   0
 .../Block/Header/AdditionalTest.php           |   0
 ...PaymentInformationManagementPluginTest.php |   0
 .../Magento/Persistent/Model/ObserverTest.php |   0
 .../Model/Persistent/ConfigTest.php           |   0
 .../Model/Persistent/_files/expectedArray.php |   0
 .../Persistent/_files/expectedBlocksArray.php |   0
 .../Model/Persistent/_files/persistent.xml    |   0
 .../Magento/Persistent/Model/SessionTest.php  |   0
 .../Observer/EmulateCustomerObserverTest.php  |   0
 .../Observer/EmulateQuoteObserverTest.php     |   0
 ...nchronizePersistentOnLoginObserverTest.php |   0
 ...chronizePersistentOnLogoutObserverTest.php |   0
 .../Magento/Persistent/_files/persistent.php  |   0
 .../Magento/ProductAlert/Model/EmailTest.php  |   0
 .../ProductAlert/Model/ObserverTest.php       |   0
 .../ProductAlert/_files/product_alert.php     |   0
 .../Model/Quote/Address/ConverterTest.php     |   0
 .../Magento/Quote/Model/Quote/AddressTest.php |   0
 .../Quote/Model/Quote/Item/RepositoryTest.php |   0
 .../Quote/Model/QuoteManagementTest.php       |   0
 .../Quote/Model/QuoteRepositoryTest.php       |   0
 .../Magento/Quote/Model/QuoteTest.php         |   0
 .../Model/ShippingMethodManagementTest.php    |   0
 .../Address/CollectTotalsObserverTest.php     |   0
 .../Magento/Quote/_files/empty_quote.php      |   0
 .../Quote/_files/empty_quote_rollback.php     |   0
 .../Quote/_files/is_not_salable_product.php   |   0
 .../Quote/_files/is_salable_product.php       |   0
 .../Quote/etc/extension_attributes.xml        |   0
 .../Model/ResourceModel/Viewer/LoggerTest.php |   0
 .../Block/Adminhtml/Filter/FormTest.php       |   0
 .../Reports/Block/Adminhtml/GridTest.php      |   0
 .../Adminhtml/Sales/Bestsellers/GridTest.php  |   0
 .../Adminhtml/Sales/Coupons/GridTest.php      |   0
 .../Adminhtml/Sales/Invoiced/GridTest.php     |   0
 .../Adminhtml/Sales/Refunded/GridTest.php     |   0
 .../Block/Adminhtml/Sales/Sales/GridTest.php  |   0
 .../Adminhtml/Sales/Shipping/GridTest.php     |   0
 .../Block/Adminhtml/Sales/Tax/GridTest.php    |   0
 .../Adminhtml/Shopcart/Abandoned/GridTest.php |   0
 .../Adminhtml/Shopcart/GridTestAbstract.php   |   0
 .../Adminhtml/Shopcart/Product/GridTest.php   |   0
 .../Adminhtml/Report/Product/SoldTest.php     |   0
 .../Adminhtml/Report/Product/ViewedTest.php   |   0
 .../Product/Lowstock/CollectionTest.php       |   0
 .../Report/Product/Viewed/CollectionTest.php  |   0
 .../Report/Sold/CollectionTest.php            |   0
 .../Review/Customer/CollectionTest.php        |   0
 .../Review/Product/CollectionTest.php         |   0
 .../Magento/Reports/_files/orders.php         |   0
 .../Reports/_files/viewed_products.php        |   0
 .../Review/Block/Adminhtml/Edit/FormTest.php  |   0
 .../Block/Adminhtml/Edit/Tab/FormTest.php     |   0
 .../Review/Block/Adminhtml/MainTest.php       |   0
 .../Magento/Review/Block/FormTest.php         |   0
 .../Block/Product/ReviewRendererTest.php      |   0
 .../Magento/Review/Controller/ProductTest.php |   0
 .../ResourceModel/Rating/CollectionTest.php   |   0
 .../Review/Model/ResourceModel/RatingTest.php |   0
 .../Review/Product/CollectionTest.php         |   0
 .../Model/ResourceModel/Review/ReviewTest.php |   0
 .../Magento/Review/_files/config.php          |   0
 .../Magento/Review/_files/customer_review.php |   0
 .../_files/customer_review_with_rating.php    |   0
 .../Review/_files/different_reviews.php       |   0
 .../Magento/Review/_files/review_xss.php      |   0
 .../Magento/Review/_files/reviews.php         |   0
 .../Rule/Model/Condition/AbstractTest.php     |   0
 .../Condition/Product/AbstractProductTest.php |   0
 .../Rule/Model/Condition/Sql/BuilderTest.php  |   0
 .../_files/dropdown_attribute_with_html.php   |   0
 .../dropdown_attribute_with_html_rollback.php |   0
 ...editmemoCommentRepositoryInterfaceTest.php |   0
 .../CreditmemoItemRepositoryInterfaceTest.php |   0
 .../InvoiceCommentRepositoryInterfaceTest.php |   0
 .../InvoiceItemRepositoryInterfaceTest.php    |   0
 ...erStatusHistoryRepositoryInterfaceTest.php |   0
 ...ShipmentCommentRepositoryInterfaceTest.php |   0
 .../ShipmentItemRepositoryInterfaceTest.php   |   0
 .../ShipmentTrackRepositoryInterfaceTest.php  |   0
 .../Block/Adminhtml/Items/AbstractTest.php    |   0
 .../Order/Create/Billing/Method/FormTest.php  |   0
 .../Order/Create/Form/AbstractTest.php        |   0
 .../Order/Create/Form/AccountTest.php         |   0
 .../Order/Create/Form/AddressTest.php         |   0
 .../Block/Adminhtml/Order/Create/FormTest.php |   0
 .../Order/Create/Giftmessage/FormTest.php     |   0
 .../Adminhtml/Order/Create/HeaderTest.php     |   0
 .../Block/Adminhtml/Order/View/InfoTest.php   |   0
 .../Report/Filter/Form/CouponTest.php         |   0
 .../Sales/Block/Order/CommentsTest.php        |   0
 .../Block/Order/Creditmemo/ItemsTest.php      |   0
 .../Sales/Block/Order/Invoice/ItemsTest.php   |   0
 .../Magento/Sales/Block/Order/ItemsTest.php   |   0
 .../Block/Order/PrintOrder/CreditmemoTest.php |   0
 .../Block/Order/PrintOrder/InvoiceTest.php    |   0
 .../Magento/Sales/Block/Order/TotalsTest.php  |   0
 .../Adminhtml/Order/AddCommentTest.php        |   0
 .../Adminhtml/Order/AddressSaveTest.php       |   0
 .../Adminhtml/Order/AddressTest.php           |   0
 .../Adminhtml/Order/AuthorizationMock.php     |   0
 .../Controller/Adminhtml/Order/CancelTest.php |   0
 .../Adminhtml/Order/Create/SaveTest.php       |   0
 .../Controller/Adminhtml/Order/CreateTest.php |   0
 .../Adminhtml/Order/CreditmemoTest.php        |   0
 .../Controller/Adminhtml/Order/EmailTest.php  |   0
 .../Controller/Adminhtml/Order/HoldTest.php   |   0
 .../Adminhtml/Order/ReviewPaymentTest.php     |   0
 .../Adminhtml/Order/Stub/OrderCreateStub.php  |   0
 .../Controller/Adminhtml/Order/UnholdTest.php |   0
 .../Controller/Adminhtml/Order/ViewTest.php   |   0
 .../Adminhtml/Transactions/FetchTest.php      |   0
 .../Model/AbstractCollectorPositionsTest.php  |   0
 .../Sales/Model/AdminOrder/CreateTest.php     |   0
 .../Magento/Sales/Model/Convert/OrderTest.php |   0
 .../Model/CronJob/CleanExpiredOrdersTest.php  |   0
 .../Sales/Model/GridAsyncInsertTest.php       |   0
 .../Model/Order/Address/RendererTest.php      |   0
 .../Model/Order/AddressRepositoryTest.php     |   0
 .../Magento/Sales/Model/Order/AddressTest.php |   0
 .../Model/Order/CreditmemoFactoryTest.php     |   0
 .../Email/Sender/CreditmemoSenderTest.php     |   0
 .../Order/Email/Sender/InvoiceSenderTest.php  |   0
 .../Order/Email/Sender/OrderSenderTest.php    |   0
 .../Order/Email/Sender/ShipmentSenderTest.php |   0
 .../Magento/Sales/Model/Order/InvoiceTest.php |   0
 .../Magento/Sales/Model/Order/ItemTest.php    |   0
 .../Model/Order/Payment/RepositoryTest.php    |   0
 .../Model/Order/Payment/TransactionTest.php   |   0
 .../Sales/Model/Order/Pdf/AbstractPdfTest.php |   0
 .../UnavailableProductsProviderTest.php       |   0
 .../Sales/Model/Order/ShipmentTest.php        |   0
 .../Magento/Sales/Model/Order/StatusTest.php  |   0
 .../Model/OrderIncrementIdCheckerTest.php     |   0
 .../Model/ResourceModel/Order/StatusTest.php  |   0
 .../Sales/Model/ResourceModel/OrderTest.php   |   0
 .../Report/Bestsellers/CollectionTest.php     |   0
 .../Invoiced/Collection/InvoicedTest.php      |   0
 .../Report/Invoiced/Collection/OrderTest.php  |   0
 .../Report/Refunded/Collection/OrderTest.php  |   0
 .../Refunded/Collection/RefundedTest.php      |   0
 .../Report/Shipping/Collection/OrderTest.php  |   0
 .../Shipping/Collection/ShipmentTest.php      |   0
 .../ResourceModel/Sale/CollectionTest.php     |   0
 .../Observer/Backend/CustomerQuoteTest.php    |   0
 .../Magento/Sales/_files/address.php          |   0
 .../Magento/Sales/_files/address_data.php     |   0
 .../Magento/Sales/_files/address_list.php     |   0
 .../Sales/_files/address_list_rollback.php    |   0
 .../Sales/_files/assign_status_to_state.php   |   0
 .../_files/creditmemo_comments_for_search.php |   0
 .../Sales/_files/creditmemo_for_get.php       |   0
 .../_files/creditmemo_for_get_rollback.php    |   0
 .../_files/creditmemo_items_for_search.php    |   0
 .../Magento/Sales/_files/creditmemo_list.php  |   0
 .../Sales/_files/creditmemo_list_rollback.php |   0
 .../Sales/_files/creditmemo_with_list.php     |   0
 .../_files/creditmemo_with_list_rollback.php  |   0
 .../Magento/Sales/_files/default_rollback.php |   0
 .../Magento/Sales/_files/invoice.php          |   0
 .../_files/invoice_comments_for_search.php    |   0
 .../_files/invoice_fixture_store_order.php    |   0
 .../Sales/_files/invoice_items_for_search.php |   0
 .../Magento/Sales/_files/invoice_list.php     |   0
 .../Sales/_files/invoice_list_rollback.php    |   0
 .../Sales/_files/invoice_payflowpro.php       |   0
 .../Magento/Sales/_files/invoice_rollback.php |   0
 .../testsuite/Magento/Sales/_files/order.php  |   0
 .../Sales/_files/order_alphanumeric_id.php    |   0
 .../_files/order_configurable_product.php     |   0
 .../order_configurable_product_rollback.php   |   0
 .../Sales/_files/order_fixture_store.php      |   0
 .../_files/order_fixture_store_rollback.php   |   0
 .../Magento/Sales/_files/order_from_past.php  |   0
 .../Magento/Sales/_files/order_info.php       |   0
 .../Magento/Sales/_files/order_item_list.php  |   0
 ...der_item_with_configurable_for_reorder.php |   0
 ...with_configurable_for_reorder_rollback.php |   0
 .../Magento/Sales/_files/order_list.php       |   0
 .../Sales/_files/order_list_rollback.php      |   0
 .../Magento/Sales/_files/order_new.php        |   0
 .../Sales/_files/order_new_rollback.php       |   0
 .../_files/order_paid_with_payflowpro.php     |   0
 .../Sales/_files/order_payment_list.php       |   0
 .../Sales/_files/order_pending_payment.php    |   0
 .../Magento/Sales/_files/order_rollback.php   |   0
 .../Magento/Sales/_files/order_shipping.php   |   0
 ..._shipping_address_different_to_billing.php |   0
 ...order_shipping_address_same_as_billing.php |   0
 .../Magento/Sales/_files/order_status.php     |   0
 .../order_status_history_for_search.php       |   0
 .../Sales/_files/order_with_customer.php      |   0
 .../order_with_dummy_item_and_invoiced.php    |   0
 .../order_with_shipping_and_invoice.php       |   0
 ...der_with_shipping_and_invoice_rollback.php |   0
 .../testsuite/Magento/Sales/_files/quote.php  |   0
 .../Magento/Sales/_files/quote_rollback.php   |   0
 .../Sales/_files/quote_with_bundle.php        |   0
 .../_files/quote_with_bundle_rollback.php     |   0
 .../Sales/_files/quote_with_customer.php      |   0
 .../_files/quote_with_customer_rollback.php   |   0
 .../Sales/_files/quote_with_new_customer.php  |   0
 .../Sales/_files/report_bestsellers.php       |   0
 .../Magento/Sales/_files/report_invoiced.php  |   0
 .../Magento/Sales/_files/report_refunded.php  |   0
 .../Magento/Sales/_files/report_shipping.php  |   0
 .../Magento/Sales/_files/shipment.php         |   0
 .../_files/shipment_comments_for_search.php   |   0
 .../_files/shipment_items_for_search.php      |   0
 .../Magento/Sales/_files/shipment_list.php    |   0
 .../Sales/_files/shipment_list_rollback.php   |   0
 .../Sales/_files/shipment_rollback.php        |   0
 .../_files/shipment_tracks_for_search.php     |   0
 .../Magento/Sales/_files/transactions.php     |   0
 .../Sales/_files/transactions_detailed.php    |   0
 .../Sales/_files/transactions_list.php        |   0
 .../_files/transactions_list_rollback.php     |   0
 .../two_orders_for_one_of_two_customers.php   |   0
 .../two_orders_for_two_diff_customers.php     |   0
 .../Promo/Quote/Edit/Tab/LabelsTest.php       |   0
 .../Quote/Address/Total/ShippingTest.php      |   0
 .../Report/Rule/CreatedatTest.php             |   0
 .../ResourceModel/Rule/CollectionTest.php     |   0
 .../Model/ResourceModel/RuleTest.php          |   0
 .../Model/Rule/Condition/ProductTest.php      |   0
 .../_files/cart_rule_40_percent_off.php       |   0
 .../_files/cart_rule_50_percent_off.php       |   0
 .../_files/cart_rule_free_shipping.php        |   0
 .../cart_rule_free_shipping_by_cart.php       |   0
 .../cart_rule_free_shipping_rollback.php      |   0
 .../Magento/SalesRule/_files/coupons.php      |   0
 .../SalesRule/_files/coupons_advanced.php     |   0
 .../SalesRule/_files/order_with_coupon.php    |   0
 .../SalesRule/_files/report_coupons.php       |   0
 .../_files/rule_custom_product_attribute.php  |   0
 .../rule_free_shipping_by_product_weight.php  |   0
 .../SalesRule/_files/rule_specific_date.php   |   0
 .../Magento/SalesRule/_files/rules.php        |   0
 .../SalesRule/_files/rules_advanced.php       |   0
 .../SalesRule/_files/rules_autogeneration.php |   0
 .../_files/rules_autogeneration_rollback.php  |   0
 .../SalesRule/_files/rules_categories.php     |   0
 .../_files/rules_categories_rollback.php      |   0
 .../SalesRule/_files/rules_category.php       |   0
 .../_files/rules_category_rollback.php        |   0
 .../_files/rules_group_all_categories.php     |   0
 ...es_group_all_categories_price_attr_set.php |   0
 .../_files/rules_group_any_categories.php     |   0
 ...les_group_any_categories_price_address.php |   0
 ...es_group_any_categories_price_attr_set.php |   0
 ...roup_any_categories_price_attr_set_any.php |   0
 ...roup_categories_price_sku_attr_set_any.php |   0
 .../rules_group_not_categories_sku_attr.php   |   0
 .../SalesRule/_files/rules_rollback.php       |   0
 .../SampleData/Model/DependencyTest.php       |   0
 .../_files/Modules/FirstModule/composer.json  |   0
 .../_files/Modules/SecondModule/composer.json |   0
 .../_files/Modules/ThirdModule/composer.json  |   0
 .../Magento/Search/Block/TermTest.php         |   0
 .../System/Config/Source/EngineTest.php       |   0
 .../Model/ResourceModel/SynonymGroupTest.php  |   0
 .../Search/Model/SearchEngine/ConfigTest.php  |   0
 .../Search/Model/SynonymAnalyzerTest.php      |   0
 .../Model/SynonymGroupRepositoryTest.php      |   0
 .../Search/Model/SynonymReaderTest.php        |   0
 .../testsuite/Magento/Search/_files/query.php |   0
 .../Magento/Search/_files/query_rollback.php  |   0
 .../Magento/Search/_files/search_engine.xml   |   0
 .../Magento/Search/_files/synonym_reader.php  |   0
 .../Search/_files/synonym_reader_rollback.php |   0
 .../Adminhtml/Session/LogoutAllTest.php       |   0
 .../Model/AdminSessionsManagerTest.php        |   0
 .../Security/Model/Plugin/AuthSessionTest.php |   0
 .../AdminSessionInfo/CollectionTest.php       |   0
 .../ResourceModel/AdminSessionInfoTest.php    |   0
 .../CollectionTest.php                        |   0
 .../PasswordResetRequestEventTest.php         |   0
 .../Security/Model/SecurityManagerTest.php    |   0
 .../Magento/Security/_files/adminsession.php  |   0
 .../_files/password_reset_request_events.php  |   0
 .../Magento/SendFriend/Block/SendTest.php     |   0
 .../DependenciesShowFrameworkCommandTest.php  |   0
 ...ndenciesShowModulesCircularCommandTest.php |   0
 .../DependenciesShowModulesCommandTest.php    |   0
 .../DeployStaticContentCommandTest.php        |   0
 .../Command/I18nCollectPhrasesCommandTest.php |   0
 .../Console/Command/I18nPackCommandTest.php   |   0
 .../Command/_files/config/dump_config.php     |   0
 .../Command/_files/expectedPhrases.csv        |   0
 .../Setup/Console/Command/_files/i18n.csv     |   0
 .../Console/Command/_files/output/.gitignore  |   0
 .../Command/_files/phrases/TestPhrases.php    |   0
 .../Command/_files/phrases/test_di.xml        |   0
 .../root/app/code/Magento/A/Model/Foo.php     |   0
 .../root/app/code/Magento/A/composer.json     |   0
 .../root/app/code/Magento/A/etc/module.xml    |   0
 .../root/app/code/Magento/A/registration.php  |   0
 .../root/app/code/Magento/B/Model/Foo.php     |   0
 .../root/app/code/Magento/B/composer.json     |   0
 .../root/app/code/Magento/B/etc/module.xml    |   0
 .../root/app/code/Magento/B/registration.php  |   0
 .../root/app/code/Magento/C/registration.php  |   0
 .../root/app/code/Magento/D/registration.php  |   0
 .../View/Element/UiComponentFactoryTest.php   |   0
 .../Magento/Setup/Controller/UrlCheckTest.php |   0
 .../Setup/Fixtures/FixtureModelTest.php       |   0
 .../FixturesAsserts/BundleProductsAssert.php  |   0
 .../ConfigurableProductsAssert.php            |   0
 .../Fixtures/FixturesAsserts/ImagesAssert.php |   0
 .../FixturesAsserts/ProductAssert.php         |   0
 .../FixturesAsserts/SimpleProductsAssert.php  |   0
 .../Setup/Fixtures/_files/attributeSets.xml   |   0
 .../Magento/Setup/Fixtures/_files/small.xml   |   0
 .../Setup/Fixtures/_files/tax_rates.csv       |   0
 .../Model/ConfigOptionsListCollectorTest.php  |   0
 .../Model/Cron/MultipleStreamOutputTest.php   |   0
 .../Magento/Setup/Model/Cron/_files/a.txt     |   0
 .../Magento/Setup/Model/Cron/_files/b.txt     |   0
 .../FixtureGenerator/ProductGeneratorTest.php |   0
 .../Setup/Model/ObjectManagerProviderTest.php |   0
 .../Model/_files/testSkeleton/composer.json   |   0
 .../Model/_files/testSkeleton/composer.lock   |   0
 .../Magento/Setup/Module/DataSetupTest.php    |   0
 .../Setup/Module/Dependency/CircularTest.php  |   0
 .../Dependency/Parser/Composer/JsonTest.php   |   0
 .../Dependency/Parser/Config/XmlTest.php      |   0
 .../Module/Dependency/Report/CircularTest.php |   0
 .../Dependency/Report/DependencyTest.php      |   0
 .../Dependency/Report/FrameworkTest.php       |   0
 .../Magento/FirstModule/Helper/Helper.php     |   0
 .../code/Magento/FirstModule/Model/Model.php  |   0
 .../FirstModule/Model/WithoutDependencies.php |   0
 .../code/Magento/FirstModule/etc/module.xml   |   0
 .../FirstModule/view/frontend/template.phtml  |   0
 .../Module/Dependency/_files/composer1.json   |   0
 .../Module/Dependency/_files/composer2.json   |   0
 .../Module/Dependency/_files/composer3.json   |   0
 .../Module/Dependency/_files/composer4.json   |   0
 .../Module/Dependency/_files/composer5.json   |   0
 .../_files/expected/circular-dependencies.csv |   0
 .../_files/expected/dependencies.csv          |   0
 .../expected/framework-dependencies.csv       |   0
 .../without-circular-dependencies.csv         |   0
 .../_files/expected/without-dependencies.csv  |   0
 .../without-framework-dependencies.csv        |   0
 .../Module/Dependency/_files/module1.xml      |   0
 .../Module/Dependency/_files/module2.xml      |   0
 .../Module/I18n/Dictionary/GeneratorTest.php  |   0
 .../_files/expected/with_context.csv          |   0
 .../_files/expected/without_context.csv       |   0
 .../Magento/FirstModule/Helper/Helper.php     |   0
 .../code/Magento/FirstModule/Model/Model.php  |   0
 .../FirstModule/view/frontend/default.xml     |   0
 .../Magento/FirstModule/view/frontend/file.js |   0
 .../FirstModule/view/frontend/template.phtml  |   0
 .../code/Magento/SecondModule/Model/Model.php |   0
 .../adminhtml/default/backend/default.xml     |   0
 .../adminhtml/default/backend/template.phtml  |   0
 .../_files/source/lib/web/mage/file.js        |   0
 .../_files/source/lib/web/varien/file.js      |   0
 .../_files/source/not_magento_dir/Model.php   |   0
 .../_files/source/not_magento_dir/file.js     |   0
 .../source/not_magento_dir/template.phtml     |   0
 .../Setup/Module/I18n/Pack/GeneratorTest.php  |   0
 .../code/Magento/FirstModule/i18n/de_DE.csv   |   0
 .../code/Magento/SecondModule/i18n/de_DE.csv  |   0
 .../design/adminhtml/default/i18n/de_DE.csv   |   0
 .../_files/expected/lib/web/i18n/de_DE.csv    |   0
 .../Setup/Module/I18n/Pack/_files/source.csv  |   0
 .../Module/I18n/Parser/Adapter/JsTest.php     |   0
 .../Php/Tokenizer/PhraseCollectorTest.php     |   0
 .../Translate/MethodCollectorTest.php         |   0
 .../Php/Tokenizer/_files/methodsCode.php.txt  |   0
 .../Php/Tokenizer/_files/objectsCode.php.txt  |   0
 .../Module/I18n/Parser/Adapter/XmlTest.php    |   0
 .../Parser/Adapter/_files/jsPhrasesForTest.js |   0
 .../Adapter/_files/xmlPhrasesForTest.xml      |   0
 .../Magento/Shipping/Block/ItemsTest.php      |   0
 .../Magento/Shipping/Helper/DataTest.php      |   0
 .../Magento/Shipping/Model/ShippingTest.php   |   0
 .../Signifyd/Block/Adminhtml/CaseInfoTest.php |   0
 .../Signifyd/Block/FingerprintTest.php        |   0
 .../Controller/Webhooks/HandlerTest.php       |   0
 .../Signifyd/Model/CaseManagementTest.php     |   0
 .../Signifyd/Model/CaseRepositoryTest.php     |   0
 .../CaseServices/CreationServiceTest.php      |   0
 .../CaseServices/UpdatingServiceTest.php      |   0
 .../Model/Guarantee/CancelingServiceTest.php  |   0
 .../Model/Guarantee/CreationServiceTest.php   |   0
 .../Request/CreateCaseBuilderTest.php         |   0
 .../Signifyd/Observer/PlaceOrderTest.php      |   0
 .../Signifyd/Plugin/CancelOrderTest.php       |   0
 .../Signifyd/Plugin/DenyPaymentTest.php       |   0
 .../Magento/Signifyd/_files/approved_case.php |   0
 .../Magento/Signifyd/_files/case.php          |   0
 .../Magento/Signifyd/_files/customer.php      |   0
 .../Magento/Signifyd/_files/declined_case.php |   0
 .../Signifyd/_files/multiple_cases.php        |   0
 ..._with_customer_and_two_simple_products.php |   0
 .../order_with_guest_and_virtual_product.php  |   0
 .../Magento/Signifyd/_files/store.php         |   0
 .../Magento/Signifyd/_files/webhook_body.json |   0
 .../Magento/Sitemap/Helper/DataTest.php       |   0
 .../ResourceModel/Catalog/ProductTest.php     |   0
 .../Sitemap/_files/magento_image_sitemap.png  | Bin
 .../Magento/Sitemap/_files/second_image.png   | Bin
 .../Sitemap/_files/sitemap_products.php       |   0
 .../_files/sitemap_products_rollback.php      |   0
 .../Plugin/RequestPreprocessorTest.php        |   0
 .../App/Request/PathInfoProcessorTest.php     |   0
 .../Magento/Store/Block/SwitcherTest.php      |   0
 .../Controller/Store/SwitchActionTest.php     |   0
 .../Magento/Store/Model/App/EmulationTest.php |   0
 .../Magento/Store/Model/DataSource.php        |   0
 .../Magento/Store/Model/GroupTest.php         |   0
 .../ResourceModel/Store/CollectionTest.php    |   0
 .../Store/Model/ResourceModel/StoreTest.php   |   0
 .../Store/Model/ResourceModel/WebsiteTest.php |   0
 .../Store/Model/StoreCookieManagerTest.php    |   0
 .../Magento/Store/Model/StoreManagerTest.php  |   0
 .../Magento/Store/Model/StoreResolverTest.php |   0
 .../Magento/Store/Model/StoreTest.php         |   0
 .../Magento/Store/Model/WebsiteTest.php       |   0
 .../Store/_files/core_fixturestore.php        |   0
 .../_files/core_fixturestore_rollback.php     |   0
 .../_files/core_second_third_fixturestore.php |   0
 ...fixture_store_with_catalogsearch_index.php |   0
 ...tore_with_catalogsearch_index_rollback.php |   0
 .../Store/_files/scope.config.fixture.php     |   0
 .../Magento/Store/_files/second_store.php     |   0
 .../Store/_files/second_store_rollback.php    |   0
 .../second_website_with_second_currency.php   |   0
 ..._website_with_second_currency_rollback.php |   0
 .../_files/second_website_with_two_stores.php |   0
 ...econd_website_with_two_stores_rollback.php |   0
 .../testsuite/Magento/Store/_files/store.php  |   0
 .../Magento/Store/_files/store_rollback.php   |   0
 .../Magento/Store/_files/website.php          |   0
 .../Magento/Store/_files/website_rollback.php |   0
 .../Controller/Adminhtml/Iframe/ShowTest.php  |   0
 .../Swatches/Model/AttributeCreateTest.php    |   0
 .../Model/SwatchAttributeCodesTest.php        |   0
 .../Model/SwatchAttributeOptionAddTest.php    |   0
 .../Swatches/_files/swatch_attribute.php      |   0
 .../_files/swatch_attribute_rollback.php      |   0
 .../Tax/Block/Adminhtml/Rate/TitleTest.php    |   0
 .../Tax/Controller/Adminhtml/RateTest.php     |   0
 .../Tax/Controller/Adminhtml/RuleTest.php     |   0
 .../Tax/Controller/Adminhtml/TaxTest.php      |   0
 .../testsuite/Magento/Tax/Helper/DataTest.php |   0
 .../Model/Calculation/RateRepositoryTest.php  |   0
 .../Magento/Tax/Model/CalculationTest.php     |   0
 .../testsuite/Magento/Tax/Model/ClassTest.php |   0
 .../Magento/Tax/Model/ConfigTest.php          |   0
 .../Magento/Tax/Model/Rate/ProviderTest.php   |   0
 .../Magento/Tax/Model/Rate/SourceTest.php     |   0
 .../Calculation/Rule/CollectionTest.php       |   0
 .../Model/ResourceModel/CalculationTest.php   |   0
 .../ResourceModel/Report/CollectionTest.php   |   0
 .../Tax/Model/Sales/Total/Quote/SetupUtil.php |   0
 .../Model/Sales/Total/Quote/SubtotalTest.php  |   0
 .../Tax/Model/Sales/Total/Quote/TaxTest.php   |   0
 .../Magento/Tax/Model/TaxCalculationTest.php  |   0
 .../Tax/Model/TaxClass/ManagementTest.php     |   0
 .../Tax/Model/TaxClass/RepositoryTest.php     |   0
 .../Model/TaxClass/Source/CustomerTest.php    |   0
 .../Tax/Model/TaxClass/Source/ProductTest.php |   0
 .../Tax/Model/TaxClass/Type/CustomerTest.php  |   0
 .../Tax/Model/TaxRateCollectionTest.php       |   0
 .../Tax/Model/TaxRateManagementTest.php       |   0
 .../Tax/Model/TaxRuleCollectionTest.php       |   0
 .../Tax/Model/TaxRuleFixtureFactory.php       |   0
 .../Tax/Model/TaxRuleRepositoryTest.php       |   0
 .../Magento/Tax/Pricing/AdjustmentTest.php    |   0
 .../Magento/Tax/_files/order_with_tax.php     |   0
 .../Magento/Tax/_files/report_tax.php         |   0
 ...excluding_tax_apply_tax_after_discount.php |   0
 ..._apply_tax_after_discount_discount_tax.php |   0
 ...xcluding_tax_apply_tax_before_discount.php |   0
 .../excluding_tax_multi_item_row.php          |   0
 .../excluding_tax_multi_item_total.php        |   0
 .../excluding_tax_multi_item_unit.php         |   0
 .../_files/scenarios/excluding_tax_row.php    |   0
 .../_files/scenarios/excluding_tax_total.php  |   0
 .../_files/scenarios/excluding_tax_unit.php   |   0
 ...luding_tax_cross_border_trade_disabled.php |   0
 ...cluding_tax_cross_border_trade_enabled.php |   0
 .../_files/scenarios/including_tax_row.php    |   0
 .../_files/scenarios/including_tax_total.php  |   0
 .../_files/scenarios/including_tax_unit.php   |   0
 ...i_tax_rule_total_calculate_subtotal_no.php |   0
 ..._tax_rule_total_calculate_subtotal_yes.php |   0
 ...ule_two_row_calculate_subtotal_yes_row.php |   0
 ...e_two_row_calculate_subtotal_yes_total.php |   0
 ...ti_tax_rule_unit_calculate_subtotal_no.php |   0
 ...i_tax_rule_unit_calculate_subtotal_yes.php |   0
 .../tax_calculation_data_aggregated.php       |   0
 .../Magento/Tax/_files/tax_classes.php        |   0
 .../Block/Adminhtml/Rate/ImportExportTest.php |   0
 .../Adminhtml/Rate/ExportPostTest.php         |   0
 .../Adminhtml/Rate/ImportExportTest.php       |   0
 .../Adminhtml/Rate/ImportPostTest.php         |   0
 .../Model/Rate/CsvImportHandlerTest.php       |   0
 .../Rate/_files/correct_rates_import_file.csv |   0
 .../rates_import_file_incorrect_country.csv   |   0
 .../Magento/Test/Integrity/DatabaseTest.php   |   0
 .../Magento/Test/Integrity/LayoutTest.php     |   0
 .../Integrity/Magento/Payment/MethodsTest.php |   0
 .../Magento/Widget/SkinFilesTest.php          |   0
 .../Magento/Widget/TemplateFilesTest.php      |   0
 .../Modular/AbstractMergedConfigTest.php      |   0
 .../Integrity/Modular/AclConfigFilesTest.php  |   0
 .../Modular/BlockInstantiationTest.php        |   0
 .../Test/Integrity/Modular/CacheFilesTest.php |   0
 .../Modular/CarrierConfigFilesTest.php        |   0
 .../Modular/CrontabConfigFilesTest.php        |   0
 .../Integrity/Modular/DiConfigFilesTest.php   |   0
 .../Modular/EavAttributesConfigFilesTest.php  |   0
 .../Modular/EventConfigFilesTest.php          |   0
 .../Modular/ExportConfigFilesTest.php         |   0
 .../Modular/FieldsetConfigFilesTest.php       |   0
 .../Modular/ImportConfigFilesTest.php         |   0
 .../Modular/IndexerConfigFilesTest.php        |   0
 .../Integrity/Modular/LayoutFilesTest.php     |   0
 .../Catalog/AttributeConfigFilesTest.php      |   0
 .../Customer/AddressFormatsFilesTest.php      |   0
 .../Email/EmailTemplateConfigFilesTest.php    |   0
 .../Magento/Sales/PdfConfigFilesTest.php      |   0
 .../Integrity/Modular/MenuConfigFilesTest.php |   0
 .../Modular/MviewConfigFilesTest.php          |   0
 .../Modular/PaymentConfigFilesTest.php        |   0
 .../Modular/ProductOptionsConfigFilesTest.php |   0
 .../Modular/ProductTypesConfigFilesTest.php   |   0
 .../Modular/ResourcesConfigFilesTest.php      |   0
 .../Modular/RouteConfigFilesTest.php          |   0
 .../Modular/SalesConfigFilesTest.php          |   0
 .../Modular/SystemConfigFilesTest.php         |   0
 .../Integrity/Modular/TemplateFilesTest.php   |   0
 .../Modular/ThemeConfigFilesTest.php          |   0
 .../Integrity/Modular/ViewConfigFilesTest.php |   0
 .../Modular/WidgetConfigFilesTest.php         |   0
 .../Modular/_files/skip_blocks_ce.php         |   0
 .../_files/skip_template_blocks_ce.php        |   0
 .../Test/Integrity/StaticFilesTest.php        |   0
 .../Integrity/Theme/TemplateFilesTest.php     |   0
 .../Test/Integrity/Theme/XmlFilesTest.php     |   0
 .../Test/Integrity/ViewFileReferenceTest.php  |   0
 .../Controller/Adminhtml/Noroute.php          |   0
 .../ModuleInstallationTest.php                |   0
 .../Design/Theme/Edit/Tab/GeneralTest.php     |   0
 .../Theme/Block/Html/BreadcrumbsTest.php      |   0
 .../Magento/Theme/Block/Html/FooterTest.php   |   0
 .../System/Design/Config/SaveTest.php         |   0
 .../System/Design/ThemeControllerTest.php     |   0
 .../System/Design/_files/simple-js-file.js    |   0
 .../Config/Processor/DesignThemeTest.php      |   0
 .../Theme/Model/Config/ValidatorTest.php      |   0
 .../Model/Design/Backend/ExceptionsTest.php   |   0
 .../Magento/Theme/Model/Design/ConfigTest.php |   0
 .../Magento/Theme/Model/DesignTest.php        |   0
 .../Theme/Model/Layout/Config/ReaderTest.php  |   0
 .../Magento/Theme/Model/Layout/ConfigTest.php |   0
 .../Model/Layout/_files/page_layouts.xml      |   0
 .../Model/Layout/_files/page_layouts2.xml     |   0
 .../ResourceModel/Theme/CollectionTest.php    |   0
 .../Theme/Model/Theme/CollectionTest.php      |   0
 .../Theme/Model/Theme/Domain/VirtualTest.php  |   0
 .../Magento/Theme/Model/Theme/FileTest.php    |   0
 .../Theme/Model/Theme/RegistrationTest.php    |   0
 .../Theme/Model/Theme/Source/ThemeTest.php    |   0
 .../_files/design/frontend/a_d/theme.xml      |   0
 .../_files/design/frontend/b_e/theme.xml      |   0
 .../design/frontend/magento_default/theme.xml |   0
 .../design/frontend/magento_g/theme.xml       |   0
 .../Theme/Model/Theme/ThemeProviderTest.php   |   0
 .../Magento/Theme/Model/ThemeTest.php         |   0
 .../Magento/Theme/Model/View/DesignTest.php   |   0
 .../adminhtml/Vendor/test/registration.php    |   0
 .../design/adminhtml/Vendor/test/theme.xml    |   0
 .../Vendor/theme_one/registration.php         |   0
 .../area_two/Vendor/theme_one/theme.xml       |   0
 .../design/area_two/Vendor/theme_one/web/file |   0
 .../Vendor/theme_one/registration.php         |   0
 .../design_area/Vendor/theme_one/theme.xml    |   0
 .../design_area/Vendor/theme_one/web/file     |   0
 .../frontend/Magento/default/registration.php |   0
 .../design/frontend/Magento/default/theme.xml |   0
 .../default_iphone/images/preview_image.jpg   | Bin
 .../Magento/default_iphone/registration.php   |   0
 .../frontend/Magento/default_iphone/theme.xml |   0
 .../Test/cache_test_theme/registration.php    |   0
 .../frontend/Test/cache_test_theme/theme.xml  |   0
 .../Magento_Catalog/catalog_category_view.xml |   0
 .../catalog_category_view_type_default.xml    |   0
 .../Magento_Catalog/catalog_product_view.xml  |   0
 .../catalog_product_view_type_simple.xml      |   0
 .../templates/theme_template.phtml            |   0
 .../default/Magento_Catalog/theme_file.txt    |   0
 .../theme_file_with_2_dots..txt               |   0
 .../Magento_Cms/layout_test_handle_extra.xml  |   0
 .../layout_test_handle_sample.xml             |   0
 .../default/Namespace_Module/web/favicon.ico  |   0
 .../design/frontend/Test/default/etc/view.xml |   0
 .../frontend/Test/default/i18n/en_US.csv      |   0
 .../frontend/Test/default/registration.php    |   0
 .../design/frontend/Test/default/theme.xml    |   0
 .../frontend/Test/default/web/css/styles.css  |   0
 .../Test/default/web/i18n/fr_FR/logo.gif      |   0
 .../frontend/Test/default/web/images/logo.gif |   0
 .../Test/default/web/images/logo_email.gif    |   0
 .../frontend/Test/default/web/js/tabs.js      |   0
 .../Test/default/web/result_source.css        |   0
 .../Test/default/web/result_source_dev.css    |   0
 .../frontend/Test/default/web/source.less     |   0
 .../Test/publication/registration.php         |   0
 .../frontend/Test/publication/theme.xml       |   0
 .../frontend/Test/test_theme/registration.php |   0
 .../design/frontend/Test/test_theme/theme.xml |   0
 .../Fixture_Module/web/fixture_script.js      |   0
 .../Vendor/custom_theme/registration.php      |   0
 .../frontend/Vendor/custom_theme/theme.xml    |   0
 .../web/absolute_valid_module.gif             | Bin
 .../Vendor/default/access_violation.php       |   0
 .../frontend/Vendor/default/registration.php  |   0
 .../design/frontend/Vendor/default/theme.xml  |   0
 .../frontend/Vendor/default/web/css/1.gif     | Bin
 .../Vendor/default/web/css/base64.css         |   0
 .../frontend/Vendor/default/web/css/body.gif  | Bin
 .../Vendor/default/web/css/deep/recursive.css |   0
 .../Vendor/default/web/css/exception.css      |   0
 .../frontend/Vendor/default/web/css/file.css  |   0
 .../design/frontend/Vendor/default/web/h1.gif | Bin
 .../frontend/Vendor/default/web/images/h2.gif | Bin
 .../frontend/Vendor/default/web/recursive.css |   0
 .../frontend/Vendor/default/web/recursive.gif | Bin
 .../Vendor/default/web/recursive2.gif         | Bin
 .../frontend/Vendor/default/web/scripts.js    |   0
 .../design/frontend/access_violation.php      |   0
 .../Magento/Theme/_files/config_data.php      |   0
 .../Theme/_files/config_data_rollback.php     |   0
 .../Magento/Theme/_files/design_change.php    |   0
 .../Theme/_files/design_change_rollback.php   |   0
 .../Theme/_files/design_change_timezone.php   |   0
 .../design_change_timezone_rollback.php       |   0
 .../Translation/Controller/AjaxTest.php       |   0
 .../Translation/Model/InlineParserTest.php    |   0
 .../Magento/Translation/Model/StringTest.php  |   0
 .../_files/Magento/Catalog/i18n/en_US.csv     |   0
 .../Model/_files/Magento/Store/i18n/en_AU.csv |   0
 .../Model/_files/Magento/Store/i18n/en_UK.csv |   0
 .../Model/_files/Magento/Store/i18n/en_US.csv |   0
 .../design/Magento/theme/i18n/en_US.csv       |   0
 .../local_config/custom/local.xml             |   0
 .../custom/prohibited.filename.xml            |   0
 .../local_config/local_config/local.xml       |   0
 .../_files/local_config/local_config/z.xml    |   0
 .../_files/local_config/no_local_config/a.xml |   0
 .../_files/local_config/no_local_config/b.xml |   0
 .../no_local_config/custom/local.xml          |   0
 .../Model/_files/locale/en_AU/config.xml      |   0
 .../Model/_files/media/some_file.txt          |   0
 .../Translation/_files/db_translate.php       |   0
 .../_files/db_translate_admin_store.php       |   0
 .../Magento/Ui/Api/BookmarkRepositoryTest.php |   0
 .../Ui/Component/ConfigurationTest.php        |   0
 .../Magento/Ui/Config/ConverterTest.php       |   0
 .../Magento/Ui/Config/FileResolverStub.php    |   0
 .../Magento/Ui/Config/Reader/DomTest.php      |   0
 .../Magento/Ui/Config/ReaderTest.php          |   0
 .../testsuite/Magento/Ui/_files/bookmarks.php |   0
 .../_files/expected_result_configuration.php  |   0
 .../ui_component/etc/test_definition.xml      |   0
 .../ui_component/parent_component.xml         |   0
 .../ui_component/test_component.xml           |   0
 .../ui_component/etc/test_definition.xml      |   0
 .../ui_component/parent_component.xml         |   0
 .../ui_component/test_component.xml           |   0
 .../view/ui_component/arbitrary/action.xml    |   0
 .../ui_component/arbitrary/actionDelete.xml   |   0
 .../view/ui_component/arbitrary/actions.xml   |   0
 .../ui_component/arbitrary/actionsColumn.xml  |   0
 .../view/ui_component/arbitrary/bookmark.xml  |   0
 .../view/ui_component/arbitrary/boolean.xml   |   0
 .../view/ui_component/arbitrary/button.xml    |   0
 .../view/ui_component/arbitrary/checkbox.xml  |   0
 .../ui_component/arbitrary/checkboxset.xml    |   0
 .../view/ui_component/arbitrary/column.xml    |   0
 .../view/ui_component/arbitrary/columns.xml   |   0
 .../arbitrary/columnsControls.xml             |   0
 .../view/ui_component/arbitrary/component.xml |   0
 .../ui_component/arbitrary/dataSource.xml     |   0
 .../view/ui_component/arbitrary/date.xml      |   0
 .../ui_component/arbitrary/dynamicRows.xml    |   0
 .../view/ui_component/arbitrary/email.xml     |   0
 .../ui_component/arbitrary/exportButton.xml   |   0
 .../view/ui_component/arbitrary/field.xml     |   0
 .../view/ui_component/arbitrary/fieldset.xml  |   0
 .../view/ui_component/arbitrary/file.xml      |   0
 .../ui_component/arbitrary/fileUploader.xml   |   0
 .../ui_component/arbitrary/filterDate.xml     |   0
 .../ui_component/arbitrary/filterInput.xml    |   0
 .../ui_component/arbitrary/filterRange.xml    |   0
 .../view/ui_component/arbitrary/filters.xml   |   0
 .../view/ui_component/arbitrary/form.xml      |   0
 .../view/ui_component/arbitrary/hidden.xml    |   0
 .../ui_component/arbitrary/htmlContent.xml    |   0
 .../view/ui_component/arbitrary/input.xml     |   0
 .../ui_component/arbitrary/insertForm.xml     |   0
 .../ui_component/arbitrary/insertListing.xml  |   0
 .../view/ui_component/arbitrary/listing.xml   |   0
 .../ui_component/arbitrary/listingToolbar.xml |   0
 .../ui_component/arbitrary/massaction.xml     |   0
 .../view/ui_component/arbitrary/modal.xml     |   0
 .../view/ui_component/arbitrary/multiline.xml |   0
 .../ui_component/arbitrary/multiselect.xml    |   0
 .../view/ui_component/arbitrary/paging.xml    |   0
 .../view/ui_component/arbitrary/radioset.xml  |   0
 .../view/ui_component/arbitrary/range.xml     |   0
 .../view/ui_component/arbitrary/select.xml    |   0
 .../arbitrary/selectionsColumn.xml            |   0
 .../view/ui_component/arbitrary/tab.xml       |   0
 .../view/ui_component/arbitrary/text.xml      |   0
 .../view/ui_component/arbitrary/textarea.xml  |   0
 .../view/ui_component/arbitrary/wysiwyg.xml   |   0
 .../etc/test_definition_merged.xml            |   0
 .../view/ui_component/expected/action.php     |   0
 .../ui_component/expected/actionDelete.php    |   0
 .../view/ui_component/expected/actions.php    |   0
 .../ui_component/expected/actionsColumn.php   |   0
 .../view/ui_component/expected/bookmark.php   |   0
 .../view/ui_component/expected/boolean.php    |   0
 .../view/ui_component/expected/button.php     |   0
 .../view/ui_component/expected/checkbox.php   |   0
 .../ui_component/expected/checkboxset.php     |   0
 .../view/ui_component/expected/column.php     |   0
 .../view/ui_component/expected/columns.php    |   0
 .../ui_component/expected/columnsControls.php |   0
 .../view/ui_component/expected/component.php  |   0
 .../view/ui_component/expected/dataSource.php |   0
 .../view/ui_component/expected/date.php       |   0
 .../ui_component/expected/dynamicRows.php     |   0
 .../view/ui_component/expected/email.php      |   0
 .../ui_component/expected/exportButton.php    |   0
 .../view/ui_component/expected/field.php      |   0
 .../view/ui_component/expected/fieldset.php   |   0
 .../view/ui_component/expected/file.php       |   0
 .../ui_component/expected/fileUploader.php    |   0
 .../view/ui_component/expected/filterDate.php |   0
 .../ui_component/expected/filterInput.php     |   0
 .../ui_component/expected/filterRange.php     |   0
 .../view/ui_component/expected/filters.php    |   0
 .../view/ui_component/expected/form.php       |   0
 .../view/ui_component/expected/hidden.php     |   0
 .../ui_component/expected/htmlContent.php     |   0
 .../view/ui_component/expected/input.php      |   0
 .../view/ui_component/expected/insertForm.php |   0
 .../ui_component/expected/insertListing.php   |   0
 .../view/ui_component/expected/listing.php    |   0
 .../view/ui_component/expected/massaction.php |   0
 .../view/ui_component/expected/modal.php      |   0
 .../view/ui_component/expected/multiline.php  |   0
 .../ui_component/expected/multiselect.php     |   0
 .../view/ui_component/expected/paging.php     |   0
 .../view/ui_component/expected/radioset.php   |   0
 .../view/ui_component/expected/range.php      |   0
 .../view/ui_component/expected/select.php     |   0
 .../expected/selectionsColumn.php             |   0
 .../_files/view/ui_component/expected/tab.php |   0
 .../view/ui_component/expected/text.php       |   0
 .../view/ui_component/expected/textarea.php   |   0
 .../view/ui_component/expected/wysiwyg.php    |   0
 .../_files/view/ui_component/mixed/action.xml |   0
 .../view/ui_component/mixed/actionDelete.xml  |   0
 .../view/ui_component/mixed/actions.xml       |   0
 .../view/ui_component/mixed/actionsColumn.xml |   0
 .../view/ui_component/mixed/bookmark.xml      |   0
 .../view/ui_component/mixed/boolean.xml       |   0
 .../_files/view/ui_component/mixed/button.xml |   0
 .../view/ui_component/mixed/checkbox.xml      |   0
 .../view/ui_component/mixed/checkboxset.xml   |   0
 .../_files/view/ui_component/mixed/column.xml |   0
 .../view/ui_component/mixed/columns.xml       |   0
 .../ui_component/mixed/columnsControls.xml    |   0
 .../view/ui_component/mixed/component.xml     |   0
 .../view/ui_component/mixed/container.xml     |   0
 .../view/ui_component/mixed/dataProvider.xml  |   0
 .../view/ui_component/mixed/dataSource.xml    |   0
 .../_files/view/ui_component/mixed/date.xml   |   0
 .../view/ui_component/mixed/dynamicRows.xml   |   0
 .../_files/view/ui_component/mixed/email.xml  |   0
 .../view/ui_component/mixed/exportButton.xml  |   0
 .../_files/view/ui_component/mixed/field.xml  |   0
 .../view/ui_component/mixed/fieldset.xml      |   0
 .../_files/view/ui_component/mixed/file.xml   |   0
 .../view/ui_component/mixed/fileUploader.xml  |   0
 .../view/ui_component/mixed/filterDate.xml    |   0
 .../view/ui_component/mixed/filterInput.xml   |   0
 .../view/ui_component/mixed/filterRange.xml   |   0
 .../view/ui_component/mixed/filters.xml       |   0
 .../_files/view/ui_component/mixed/form.xml   |   0
 .../_files/view/ui_component/mixed/hidden.xml |   0
 .../view/ui_component/mixed/htmlContent.xml   |   0
 .../_files/view/ui_component/mixed/input.xml  |   0
 .../view/ui_component/mixed/insertForm.xml    |   0
 .../view/ui_component/mixed/insertListing.xml |   0
 .../view/ui_component/mixed/listing.xml       |   0
 .../ui_component/mixed/listingToolbar.xml     |   0
 .../view/ui_component/mixed/massaction.xml    |   0
 .../_files/view/ui_component/mixed/modal.xml  |   0
 .../view/ui_component/mixed/multiline.xml     |   0
 .../view/ui_component/mixed/multiselect.xml   |   0
 .../Ui/_files/view/ui_component/mixed/nav.xml |   0
 .../_files/view/ui_component/mixed/number.xml |   0
 .../_files/view/ui_component/mixed/paging.xml |   0
 .../_files/view/ui_component/mixed/price.xml  |   0
 .../view/ui_component/mixed/radioset.xml      |   0
 .../_files/view/ui_component/mixed/range.xml  |   0
 .../_files/view/ui_component/mixed/select.xml |   0
 .../ui_component/mixed/selectionsColumn.xml   |   0
 .../Ui/_files/view/ui_component/mixed/tab.xml |   0
 .../_files/view/ui_component/mixed/text.xml   |   0
 .../view/ui_component/mixed/textarea.xml      |   0
 .../view/ui_component/mixed/wysiwyg.xml       |   0
 .../view/ui_component/semantic/action.xml     |   0
 .../ui_component/semantic/actionDelete.xml    |   0
 .../view/ui_component/semantic/actions.xml    |   0
 .../ui_component/semantic/actionsColumn.xml   |   0
 .../view/ui_component/semantic/bookmark.xml   |   0
 .../view/ui_component/semantic/boolean.xml    |   0
 .../view/ui_component/semantic/button.xml     |   0
 .../view/ui_component/semantic/checkbox.xml   |   0
 .../ui_component/semantic/checkboxset.xml     |   0
 .../view/ui_component/semantic/column.xml     |   0
 .../view/ui_component/semantic/columns.xml    |   0
 .../ui_component/semantic/columnsControls.xml |   0
 .../view/ui_component/semantic/component.xml  |   0
 .../view/ui_component/semantic/container.xml  |   0
 .../ui_component/semantic/dataProvider.xml    |   0
 .../view/ui_component/semantic/dataSource.xml |   0
 .../view/ui_component/semantic/date.xml       |   0
 .../ui_component/semantic/dynamicRows.xml     |   0
 .../view/ui_component/semantic/email.xml      |   0
 .../ui_component/semantic/exportButton.xml    |   0
 .../view/ui_component/semantic/field.xml      |   0
 .../view/ui_component/semantic/fieldset.xml   |   0
 .../view/ui_component/semantic/file.xml       |   0
 .../ui_component/semantic/fileUploader.xml    |   0
 .../view/ui_component/semantic/filterDate.xml |   0
 .../ui_component/semantic/filterInput.xml     |   0
 .../ui_component/semantic/filterRange.xml     |   0
 .../view/ui_component/semantic/filters.xml    |   0
 .../view/ui_component/semantic/form.xml       |   0
 .../view/ui_component/semantic/hidden.xml     |   0
 .../ui_component/semantic/htmlContent.xml     |   0
 .../view/ui_component/semantic/input.xml      |   0
 .../view/ui_component/semantic/insertForm.xml |   0
 .../ui_component/semantic/insertListing.xml   |   0
 .../view/ui_component/semantic/listing.xml    |   0
 .../ui_component/semantic/listingToolbar.xml  |   0
 .../view/ui_component/semantic/massaction.xml |   0
 .../view/ui_component/semantic/modal.xml      |   0
 .../view/ui_component/semantic/multiline.xml  |   0
 .../ui_component/semantic/multiselect.xml     |   0
 .../_files/view/ui_component/semantic/nav.xml |   0
 .../view/ui_component/semantic/number.xml     |   0
 .../view/ui_component/semantic/paging.xml     |   0
 .../view/ui_component/semantic/price.xml      |   0
 .../view/ui_component/semantic/radioset.xml   |   0
 .../view/ui_component/semantic/range.xml      |   0
 .../view/ui_component/semantic/select.xml     |   0
 .../semantic/selectionsColumn.xml             |   0
 .../_files/view/ui_component/semantic/tab.xml |   0
 .../view/ui_component/semantic/text.xml       |   0
 .../view/ui_component/semantic/textarea.xml   |   0
 .../view/ui_component/semantic/wysiwyg.xml    |   0
 .../ui_component/test_component_merged.xml    |   0
 .../Magento/Ups/Model/CarrierTest.php         |   0
 .../Block/Catalog/Category/EditTest.php       |   0
 .../Block/Catalog/Category/TreeTest.php       |   0
 .../Block/Catalog/Edit/FormTest.php           |   0
 .../Block/Catalog/Product/EditTest.php        |   0
 .../Block/Catalog/Product/GridTest.php        |   0
 .../Block/Cms/Page/Edit/FormTest.php          |   0
 .../UrlRewrite/Block/Cms/Page/EditTest.php    |   0
 .../UrlRewrite/Block/Cms/Page/GridTest.php    |   0
 .../UrlRewrite/Block/Edit/FormTest.php        |   0
 .../Magento/UrlRewrite/Block/EditTest.php     |   0
 .../Magento/UrlRewrite/Block/SelectorTest.php |   0
 .../UrlRewrite/Controller/UrlRewriteTest.php  |   0
 .../Magento/UrlRewrite/_files/url_rewrite.php |   0
 .../Magento/User/Block/Role/Grid/UserTest.php |   0
 .../Magento/User/Block/Role/Tab/EditTest.php  |   0
 .../User/Block/User/Edit/Tab/MainTest.php     |   0
 .../User/Controller/Adminhtml/AuthTest.php    |   0
 .../Controller/Adminhtml/Locks/GridTest.php   |   0
 .../Controller/Adminhtml/Locks/IndexTest.php  |   0
 .../Adminhtml/Locks/MassUnlockTest.php        |   0
 .../Controller/Adminhtml/User/DeleteTest.php  |   0
 .../Adminhtml/User/InvalidateTokenTest.php    |   0
 .../Controller/Adminhtml/User/RoleTest.php    |   0
 .../User/Controller/Adminhtml/UserTest.php    |   0
 .../Magento/User/Helper/DataTest.php          |   0
 .../Role/User/CollectionTest.php              |   0
 .../User/Model/ResourceModel/UserTest.php     |   0
 .../testsuite/Magento/User/Model/UserTest.php |   0
 .../Magento/User/_files/dummy_user.php        |   0
 .../Magento/User/_files/locked_users.php      |   0
 .../Magento/User/_files/user_with_role.php    |   0
 .../Block/System/Variable/EditTest.php        |   0
 .../Adminhtml/System/VariableTest.php         |   0
 .../Magento/Variable/Model/VariableTest.php   |   0
 .../Magento/Variable/_files/variable.php      |   0
 .../Model/PaymentTokenRepositoryTest.php      |   0
 .../Model/ResourceModel/PaymentTokenTest.php  |   0
 .../Magento/Vault/_files/customer.php         |   0
 .../Magento/Vault/_files/payment_tokens.php   |   0
 .../testsuite/Magento/Vault/_files/token.php  |   0
 .../Version/Controller/Index/IndexTest.php    |   0
 .../Webapi/Controller/PathProcessorTest.php   |   0
 .../Magento/Webapi/Controller/SoapTest.php    |   0
 .../Webapi/Model/Config/ReaderTest.php        |   0
 .../Webapi/Model/Config/_files/webapi.php     |   0
 .../Webapi/Model/Config/_files/webapiA.xml    |   0
 .../Webapi/Model/Config/_files/webapiB.xml    |   0
 .../Webapi/Model/ServiceMetadataTest.php      |   0
 .../Magento/Webapi/Model/Soap/ConfigTest.php  |   0
 .../Webapi/Service/Entity/TestService.php     |   0
 .../Webapi/ServiceNameCollisionTest.php       |   0
 .../Magento/Webapi/_files/webapi_user.php     |   0
 .../Webapi/_files/webapi_user_rollback.php    |   0
 .../testsuite/Magento/Weee/Model/TaxTest.php  |   0
 .../Magento/Weee/_files/product_with_fpt.php  |   0
 .../Weee/_files/product_with_fpt_rollback.php |   0
 .../Instance/Edit/Chooser/ContainerTest.php   |   0
 .../Edit/Chooser/DesignAbstractionTest.php    |   0
 .../Instance/Edit/Chooser/LayoutTest.php      |   0
 .../_files/design-abstraction_select.html     |   0
 .../child_page_with_inherited_containers.xml  |   0
 ...age_with_inherited_imported_containers.xml |   0
 .../layout/child_page_with_own_containers.xml |   0
 .../layout/child_page_without_containers.xml  |   0
 .../_files/layout/customer_account.xml        |   0
 .../non_page_handle_with_own_containers.xml   |   0
 .../Edit/Chooser/_files/layout/page_empty.xml |   0
 .../root_page_with_imported_containers.xml    |   0
 .../layout/root_page_with_own_containers.xml  |   0
 .../layout/root_page_without_containers.xml   |   0
 .../root_page_without_own_containers.xml      |   0
 .../Chooser/_files/page_types_select.html     |   0
 .../Instance/Edit/Tab/Main/LayoutTest.php     |   0
 .../Widget/Instance/Edit/Tab/MainTest.php     |   0
 .../Adminhtml/Widget/Instance/EditTest.php    |   0
 .../Adminhtml/Widget/InstanceTest.php         |   0
 .../Controller/Adminhtml/WidgetTest.php       |   0
 .../Magento/Widget/Model/Config/DataTest.php  |   0
 .../Widget/Model/Config/ReaderTest.php        |   0
 .../_files/catalog_new_products_list.xml      |   0
 .../Config/_files/expectedGlobalArray.php     |   0
 .../_files/expectedGlobalDesignArray.php      |   0
 .../Config/_files/expectedMergedArray.php     |   0
 .../Config/_files/orders_and_returns.xml      |   0
 .../_files/orders_and_returns_customized.xml  |   0
 .../Widget/Model/Layout/UpdateTest.php        |   0
 .../Model/ResourceModel/Layout/UpdateTest.php |   0
 .../Widget/Model/Template/FilterTest.php      |   0
 .../Widget/Model/Widget/ConfigTest.php        |   0
 .../Widget/Model/Widget/InstanceTest.php      |   0
 .../Magento/Widget/Model/WidgetTest.php       |   0
 .../Setup/LayoutUpdateConverterTest.php       |   0
 .../web/images/product_widget_new.png         | Bin
 .../adminhtml/magento_basic/composer.json     |   0
 .../design/adminhtml/magento_basic/theme.xml  |   0
 .../Magento/Widget/_files/layout_cache.php    |   0
 .../Magento/Widget/_files/layout_update.php   |   0
 .../Magento/Widget/_files/new_widget.php      |   0
 .../Customer/Wishlist/Item/ColumnTest.php     |   0
 .../Customer/Wishlist/Item/OptionsTest.php    |   0
 .../Block/Customer/Wishlist/ItemsTest.php     |   0
 .../Wishlist/Block/Share/WishlistTest.php     |   0
 .../Magento/Wishlist/Controller/IndexTest.php |   0
 .../Wishlist/Controller/SharedTest.php        |   0
 .../Wishlist/Controller/UpdateTest.php        |   0
 .../Magento/Wishlist/Helper/DataTest.php      |   0
 .../Magento/Wishlist/Model/ItemTest.php       |   0
 .../ResourceModel/Item/CollectionTest.php     |   0
 .../Magento/Wishlist/Model/WishlistTest.php   |   0
 .../Magento/Wishlist/_files/wishlist.php      |   0
 .../Wishlist/_files/wishlist_shared.php       |   0
 .../wishlist_with_product_qty_increments.php  |   0
 dev/tests/integration/tmp/.gitignore          |   0
 dev/tests/js/JsTestDriver/.gitignore          |   0
 .../framework/qunit/qunit-1.14.0.css          |   0
 .../framework/qunit/qunit-1.14.0.js           |   0
 .../JsTestDriver/framework/requirejs-util.js  |   0
 dev/tests/js/JsTestDriver/framework/stub.js   |   0
 .../js/JsTestDriver/jsTestDriver.php.dist     |   0
 .../js/JsTestDriver/jsTestDriverOrder.php     |   0
 dev/tests/js/JsTestDriver/run_js_tests.php    |   0
 .../testsuite/lib/ko/datepicker/datepicker.js |   0
 .../testsuite/lib/ko/datepicker/index.html    |   0
 .../testsuite/lib/storage/index.html          |   0
 .../testsuite/lib/storage/test-storage.js     |   0
 .../testsuite/mage/_demo/index.html           |   0
 .../JsTestDriver/testsuite/mage/_demo/test.js |   0
 .../testsuite/mage/button/button-test.js      |   0
 .../mage/edit_trigger/edit-trigger-test.js    |   0
 .../testsuite/mage/list/index.html            |   0
 .../testsuite/mage/list/jquery-list-test.js   |   0
 .../JsTestDriver/testsuite/mage/mage-test.js  |   0
 .../mage/search/regular-search-test.js        |   0
 .../translate-inline-vde-dialog-test.js       |   0
 .../translate-inline-vde-test.js              |   0
 .../testsuite/mage/webapi-test.js             |   0
 .../testsuite/mage/zoom/zoom-test.js          |   0
 .../js/jasmine/assets/apply/components/fn.js  |   0
 dev/tests/js/jasmine/assets/apply/config.json |   0
 dev/tests/js/jasmine/assets/apply/index.js    |   0
 .../jasmine/assets/apply/templates/node.html  |   0
 .../js/jasmine/assets/gallery/config.json     |   0
 dev/tests/js/jasmine/assets/jsbuild/config.js |   0
 .../js/jasmine/assets/jsbuild/external.js     |   0
 dev/tests/js/jasmine/assets/jsbuild/local.js  |   0
 .../js/jasmine/assets/lib/web/mage/menu.html  |   0
 .../js/jasmine/assets/lib/web/mage/tabs.html  |   0
 .../assets/lib/web/mage/translate-inline.html |   0
 .../js/jasmine/assets/script/config.json      |   0
 dev/tests/js/jasmine/assets/script/index.js   |   0
 .../assets/script/templates/selector.html     |   0
 .../assets/script/templates/virtual.html      |   0
 dev/tests/js/jasmine/assets/text/config.js    |   0
 .../js/jasmine/assets/text/external.html      |   0
 dev/tests/js/jasmine/assets/text/local.html   |   0
 dev/tests/js/jasmine/assets/tools.js          |   0
 dev/tests/js/jasmine/require.conf.js          |   0
 dev/tests/js/jasmine/spec_runner/index.js     |   0
 .../js/jasmine/spec_runner/settings.json      |   0
 .../js/jasmine/spec_runner/tasks/connect.js   |   0
 .../js/jasmine/spec_runner/tasks/jasmine.js   |   0
 .../js/jasmine/spec_runner/template.html      |   0
 .../adminhtml/web/js/validate-store.test.js   |   0
 .../frontend/js/paypal/button.test.js         |   0
 .../payment/method-renderer/cc-form.test.js   |   0
 .../payment/method-renderer/paypal.test.js    |   0
 .../js/components/bundle-checkbox.test.js     |   0
 ...dynamic-rows-import-custom-options.test.js |   0
 .../js/disable-on-option/yesno.test.js        |   0
 .../utils/percentage-price-calculator.test.js |   0
 .../product/list/columns/final-price.test.js  |   0
 .../js/product/list/columns/image.test.js     |   0
 .../js/product/storage/data-storage.test.js   |   0
 .../storage/ids-storage-compare.test.js       |   0
 .../js/product/storage/ids-storage.test.js    |   0
 .../product/storage/storage-service.test.js   |   0
 .../frontend/js/storage-manager.test.js       |   0
 .../model/default-post-code-resolver.test.js  |   0
 .../js/action/redirect-on-success.test.js     |   0
 .../frontend/js/model/cart/cache.test.js      |   0
 .../js/model/cart/estimate-service.test.js    |   0
 .../cart/totals-processor/default.test.js     |   0
 .../js/model/new-customer-address.test.js     |   0
 .../js/view/cart/shipping-estimation.test.js  |   0
 .../frontend/js/view/minicart.test.js         |   0
 .../frontend/js/view/shipping.test.js         |   0
 .../js/view/summary/cart-items.test.js        |   0
 .../js/model/agreement-validator.test.js      |   0
 .../js/model/place-order-mixin.test.js        |   0
 .../set-payment-information-mixin.test.js     |   0
 .../js/invalidation-processor.test.js         |   0
 .../js/model/customer/address.test.js         |   0
 .../js/view/authentication-popup.test.js      |   0
 .../web/js/view/instant-purchase.test.js      |   0
 .../Magento/Msrp/frontend/js/msrp.test.js     |   0
 .../PageCache/frontend/js/page-cache.test.js  |   0
 .../credit-card-validation/validator.test.js  |   0
 .../js/in-context/express-checkout.test.js    |   0
 .../in-context/checkout-express.test.js       |   0
 .../paypal-express-abstract.test.js           |   0
 .../view/base/web/js/product/summary.js       |   0
 .../base/web/template/product/summary.html    |   0
 .../web/template/product/summary_short.html   |   0
 .../frontend/web/js/process-review.test.js    |   0
 .../Signifyd/frontend/js/Fingerprint.test.js  |   0
 .../view/checkout/summary/grand-total.test.js |   0
 .../Magento/Ui/base/js/core/layout.test.js    |   0
 .../base/js/dynamic-rows/dynamic-rows.test.js |   0
 .../Ui/base/js/dynamic-rows/record.test.js    |   0
 .../Magento/Ui/base/js/form/adapter.test.js   |   0
 .../Magento/Ui/base/js/form/client.test.js    |   0
 .../Ui/base/js/form/components/area.test.js   |   0
 .../Ui/base/js/form/components/button.test.js |   0
 .../js/form/components/collection.test.js     |   0
 .../form/components/collection/item.test.js   |   0
 .../Ui/base/js/form/components/group.test.js  |   0
 .../Ui/base/js/form/components/html.test.js   |   0
 .../Ui/base/js/form/components/tab.test.js    |   0
 .../base/js/form/components/tab_group.test.js |   0
 .../Ui/base/js/form/element/abstract.test.js  |   0
 .../Ui/base/js/form/element/boolean.test.js   |   0
 .../Ui/base/js/form/element/date-time.test.js |   0
 .../Ui/base/js/form/element/date.test.js      |   0
 .../js/form/element/file-uploader.test.js     |   0
 .../base/js/form/element/multiselect.test.js  |   0
 .../Ui/base/js/form/element/post-code.test.js |   0
 .../Ui/base/js/form/element/region.test.js    |   0
 .../Ui/base/js/form/element/select.test.js    |   0
 .../Ui/base/js/form/element/textarea.test.js  |   0
 .../code/Magento/Ui/base/js/form/form.test.js |   0
 .../Magento/Ui/base/js/form/provider.test.js  |   0
 .../Magento/Ui/base/js/form/ui-select.test.js |   0
 .../Ui/base/js/grid/columns/actions.test.js   |   0
 .../Ui/base/js/grid/columns/column.test.js    |   0
 .../Ui/base/js/grid/columns/date.test.js      |   0
 .../base/js/grid/columns/expandable.test.js   |   0
 .../base/js/grid/columns/multiselect.test.js  |   0
 .../Ui/base/js/grid/columns/select.test.js    |   0
 .../grid/controls/bookmarks/storage.test.js   |   0
 .../Ui/base/js/grid/controls/columns.test.js  |   0
 .../Ui/base/js/grid/data-storage.test.js      |   0
 .../Ui/base/js/grid/editing/bulk.test.js      |   0
 .../Ui/base/js/grid/filters/filters.test.js   |   0
 .../Ui/base/js/grid/filters/range.test.js     |   0
 .../Ui/base/js/grid/paging/paging.test.js     |   0
 .../Magento/Ui/base/js/grid/resize.test.js    |   0
 .../Ui/base/js/grid/search/search.test.js     |   0
 .../Ui/base/js/grid/sticky/sticky.test.js     |   0
 .../Ui/base/js/grid/tree-massactions.test.js  |   0
 .../Ui/base/js/lib/component/links.test.js    |   0
 .../Magento/Ui/base/js/lib/events.test.js     |   0
 .../Ui/base/js/lib/ko/bind/datepicker.test.js |   0
 .../Ui/base/js/lib/ko/bind/i18n.test.js       |   0
 .../base/js/lib/logger/console-logger.test.js |   0
 .../lib/logger/console-output-handler.test.js |   0
 .../Ui/base/js/lib/logger/entry.test.js       |   0
 .../Ui/base/js/lib/logger/formatter.test.js   |   0
 .../Ui/base/js/lib/logger/logger.test.js      |   0
 .../Ui/base/js/lib/registry/registry.test.js  |   0
 .../Ui/base/js/lib/validation/rules.test.js   |   0
 .../Magento/Ui/base/js/modal/alert.test.js    |   0
 .../Magento/Ui/base/js/modal/confirm.test.js  |   0
 .../Magento/Ui/base/js/modal/modal.test.js    |   0
 .../Magento/Ui/base/js/modal/prompt.test.js   |   0
 .../Ui/base/js/timeline/timeline.test.js      |   0
 .../frontend/web/js/add-to-wishlist.test.js   |   0
 .../jasmine/tests/lib/mage/accordion.test.js  |   0
 .../js/jasmine/tests/lib/mage/apply.test.js   |   0
 .../tests/lib/mage/backend/bootstrap.test.js  |   0
 .../tests/lib/mage/backend/suggest.test.js    |   0
 .../lib/mage/backend/tree-suggest.test.js     |   0
 .../jasmine/tests/lib/mage/calendar.test.js   |   0
 .../tests/lib/mage/collapsible.test.js        |   0
 .../jasmine/tests/lib/mage/decorate.test.js   |   0
 .../jasmine/tests/lib/mage/dropdown.test.js   |   0
 .../js/jasmine/tests/lib/mage/form.test.js    |   0
 .../js/jasmine/tests/lib/mage/loader.test.js  |   0
 .../js/jasmine/tests/lib/mage/menu.test.js    |   0
 .../js/jasmine/tests/lib/mage/misc.test.js    |   0
 .../tests/lib/mage/multiselect.test.js        |   0
 .../lib/mage/requirejs/static-jsbuild.test.js |   0
 .../lib/mage/requirejs/static-text.test.js    |   0
 .../lib/mage/requirejs/statistician.test.js   |   0
 .../js/jasmine/tests/lib/mage/scripts.test.js |   0
 .../js/jasmine/tests/lib/mage/tabs.test.js    |   0
 .../jasmine/tests/lib/mage/template.test.js   |   0
 .../tests/lib/mage/translate-inline.test.js   |   0
 .../jasmine/tests/lib/mage/translate.test.js  |   0
 .../jasmine/tests/lib/mage/validation.test.js |   0
 dev/tests/static/.gitignore                   |   0
 .../Rule/Design/FinalImplementation.php       |   0
 .../Rule/Design/FinalImplementationTest.php   |   0
 .../resources/rulesets/design.xml             |   0
 .../Sniffs/Arrays/ShortArraySyntaxSniff.php   |   0
 .../Sniffs/EchoTags/ShortEchoSyntaxSniff.php  |   0
 .../Magento/Sniffs/Files/LineLengthSniff.php  |   0
 .../Magento/Sniffs/Less/AvoidIdSniff.php      |   0
 .../Sniffs/Less/BracesFormattingSniff.php     |   0
 .../Magento/Sniffs/Less/ClassNamingSniff.php  |   0
 .../Magento/Sniffs/Less/ColonSpacingSniff.php |   0
 .../Sniffs/Less/ColourDefinitionSniff.php     |   0
 .../Less/CombinatorIndentationSniff.php       |   0
 .../Sniffs/Less/CommentLevelsSniff.php        |   0
 .../Sniffs/Less/ImportantPropertySniff.php    |   0
 .../Magento/Sniffs/Less/IndentationSniff.php  |   0
 .../Sniffs/Less/PropertiesLineBreakSniff.php  |   0
 .../Sniffs/Less/PropertiesSortingSniff.php    |   0
 .../Magento/Sniffs/Less/QuotesSniff.php       |   0
 .../Sniffs/Less/SelectorDelimiterSniff.php    |   0
 .../Sniffs/Less/SemicolonSpacingSniff.php     |   0
 .../Sniffs/Less/TokenizerSymbolsInterface.php |   0
 .../Less/TypeSelectorConcatenationSniff.php   |   0
 .../Sniffs/Less/TypeSelectorsSniff.php        |   0
 .../Magento/Sniffs/Less/VariablesSniff.php    |   0
 .../Magento/Sniffs/Less/ZeroUnitsSniff.php    |   0
 .../LiteralNamespacesSniff.php                |   0
 .../Sniffs/MicroOptimizations/IsNullSniff.php |   0
 .../NamingConventions/InterfaceNameSniff.php  |   0
 .../NamingConventions/ReservedWordsSniff.php  |   0
 .../Sniffs/Translation/ConstantUsageSniff.php |   0
 .../Whitespace/EmptyLineMissedSniff.php       |   0
 .../Whitespace/MultipleEmptyLinesSniff.php    |   0
 .../Tool/BlacklistInterface.php               |   0
 .../CodingStandard/Tool/CodeMessDetector.php  |   0
 .../CodingStandard/Tool/CodeSniffer.php       |   0
 .../Tool/CodeSniffer/LessWrapper.php          |   0
 .../Tool/CodeSniffer/Wrapper.php              |   0
 .../CodingStandard/Tool/CopyPasteDetector.php |   0
 .../Tool/ExtensionInterface.php               |   0
 .../CodingStandard/ToolInterface.php          |   0
 .../TestFramework/Dependency/DbRule.php       |   0
 .../TestFramework/Dependency/DiRule.php       |   0
 .../TestFramework/Dependency/LayoutRule.php   |   0
 .../TestFramework/Dependency/PhpRule.php      |   0
 .../Dependency/ReportsConfigRule.php          |   0
 .../Dependency/RuleInterface.php              |   0
 .../VirtualType/VirtualTypeMapper.php         |   0
 .../Inspection/AbstractCommand.php            |   0
 .../TestFramework/Inspection/Exception.php    |   0
 .../TestFramework/Inspection/WordsFinder.php  |   0
 .../Integrity/AbstractConfig.php              |   0
 .../Integrity/Library/Injectable.php          |   0
 .../DependenciesCollectorInterface.php        |   0
 .../Library/PhpParser/ParserFactory.php       |   0
 .../Library/PhpParser/ParserInterface.php     |   0
 .../Library/PhpParser/StaticCalls.php         |   0
 .../Integrity/Library/PhpParser/Throws.php    |   0
 .../Integrity/Library/PhpParser/Tokens.php    |   0
 .../Integrity/Library/PhpParser/Uses.php      |   0
 .../Integrity/PluginValidator.php             |   0
 ...togeneratedClassNotInConstructorFinder.php |   0
 .../TestFramework/Utility/ChangedFiles.php    |   0
 .../Utility/ClassNameExtractor.php            |   0
 .../TestFramework/Utility/CodeCheck.php       |   0
 .../Utility/File/RegexIteratorFactory.php     |   0
 .../Utility/FunctionDetector.php              |   0
 .../Utility/XssOutputValidator.php            |   0
 .../static/framework/Magento/ruleset.xml      |   0
 dev/tests/static/framework/autoload.php       |   0
 dev/tests/static/framework/bootstrap.php      |   0
 .../framework/tests/unit/phpunit.xml.dist     |   0
 .../EchoTags/ShortEchoSyntaxSniffTest.php     |   0
 .../EchoTags/_files/correct_echotag.txt       |   0
 .../Sniffs/EchoTags/_files/correct_noecho.txt |   0
 .../EchoTags/_files/incorrect_echotag.txt     |   0
 .../Translation/ConstantUsageSniffTest.php    |   0
 .../Translation/_files/correct_arguments.txt  |   0
 .../_files/incorrect_arguments.txt            |   0
 .../Test/Integrity/Library/InjectableTest.php |   0
 .../Library/PhpParser/ParserFactoryTest.php   |   0
 .../Library/PhpParser/StaticCallsTest.php     |   0
 .../Library/PhpParser/ThrowsTest.php          |   0
 .../Library/PhpParser/TokensTest.php          |   0
 .../Integrity/Library/PhpParser/UsesTest.php  |   0
 .../Test/Utility/File/CodeCheckTest.php       |   0
 ...ss_name_in_namespace_and_variable_name.txt |   0
 .../File/_files/create_new_instance.txt       |   0
 .../File/_files/create_new_instance2.txt      |   0
 .../File/_files/create_new_instance3.txt      |   0
 .../Test/Utility/File/_files/extends.txt      |   0
 .../Test/Utility/File/_files/extends2.txt     |   0
 .../Test/Utility/File/_files/implements.txt   |   0
 .../Test/Utility/File/_files/implements2.txt  |   0
 .../Magento/Test/Utility/File/_files/use.txt  |   0
 .../Magento/Test/Utility/File/_files/use2.txt |   0
 .../Tool/CodeMessDetectorTest.php             |   0
 .../Tool/CodeSniffer/WrapperTest.php          |   0
 .../CodingStandard/Tool/CodeSnifferTest.php   |   0
 .../TestFramework/Dependency/DbRuleTest.php   |   0
 .../TestFramework/Dependency/DiRuleTest.php   |   0
 .../Dependency/LayoutRuleTest.php             |   0
 .../TestFramework/Dependency/PhpRuleTest.php  |   0
 .../VirtualType/VirtualTypeMapperTest.php     |   0
 .../VirtualType/_files/etc/adminhtml/di.xml   |   0
 .../Dependency/VirtualType/_files/etc/di.xml  |   0
 .../_files/di_external_dependency.xml         |   0
 .../_files/di_in_module_dependency.xml        |   0
 .../Dependency/_files/di_no_dependency.xml    |   0
 .../_files/di_virtual_dependency.xml          |   0
 .../Dependency/_files/layout_handle.xml       |   0
 .../_files/layout_handle_parent.xml           |   0
 .../_files/layout_handle_update.xml           |   0
 .../Dependency/_files/layout_reference.xml    |   0
 .../Inspection/WordsFinderTest.php            |   0
 .../Inspection/_files/broken_config.xml       |   0
 .../Inspection/_files/config.xml              |   0
 .../Inspection/_files/config_additional.xml   |   0
 .../_files/empty_whitelist_path.xml           |   0
 .../Inspection/_files/empty_words_config.xml  |   0
 .../Inspection/_files/words_finder/buffy.php  |   0
 .../Inspection/_files/words_finder/buffy.zip  |   0
 .../interview_with_the_vampire.php            |   0
 .../interview_with_the_vampire.zip            |   0
 .../words_finder/self_tested_config.xml       |   0
 .../_files/words_finder/twilight/eclipse.php  |   0
 .../_files/words_finder/twilight/newmoon.php  |   0
 ...neratedClassNotInConstructorFinderTest.php |   0
 .../Magento/TestFramework/Utility/Bar.php     |   0
 .../Utility/ClassNameExtractorTest.php        |   0
 .../Magento/TestFramework/Utility/Foo.php     |   0
 .../Utility/FunctionDetectorTest.php          |   0
 .../Utility/PartialNamespace/Bar.php          |   0
 .../Utility/XssOutputValidatorTest.php        |   0
 .../_files/class_implements_interface.txt     |   0
 .../Utility/_files/class_with_comment.txt     |   0
 .../Utility/_files/class_with_namespace.txt   |   0
 .../_files/class_without_namespace.txt        |   0
 .../Utility/_files/extra_whitespaces.txt      |   0
 .../implements_keyword_on_different_line.txt  |   0
 .../Utility/_files/missing_class_keyword.txt  |   0
 .../TestFramework/Utility/_files/test.txt     |   0
 .../Utility/_files/xss_safe.phtml             |   0
 .../Utility/_files/xss_unsafe.phtml           |   0
 dev/tests/static/get_github_changes.php       |   0
 dev/tests/static/phpunit-all.xml.dist         |   0
 dev/tests/static/phpunit.xml.dist             |   0
 .../App/Language/CircularDependencyTest.php   |   0
 .../Integrity/App/Language/ConfigTest.php     |   0
 .../App/Language/TranslationFiles.php         |   0
 .../App/Language/TranslationFilesTest.php     |   0
 .../App/Language/_files/known_invalid.xml     |   0
 .../App/Language/_files/known_valid.xml       |   0
 .../Test/Integrity/CircularDependencyTest.php |   0
 .../Magento/Test/Integrity/ClassesTest.php    |   0
 .../Test/Integrity/ComposerLockTest.php       |   0
 .../Magento/Test/Integrity/ComposerTest.php   |   0
 .../Magento/Test/Integrity/ConfigTest.php     |   0
 .../Magento/Test/Integrity/DependencyTest.php |   0
 .../Test/Integrity/Di/CompilerTest.php        |   0
 .../Test/Integrity/ExceptionHierarchyTest.php |   0
 .../Test/Integrity/HhvmCompatibilityTest.php  |   0
 .../Test/Integrity/Layout/BlockNamesTest.php  |   0
 .../Test/Integrity/Layout/BlocksTest.php      |   0
 .../Test/Integrity/Layout/HandlesTest.php     |   0
 .../Test/Integrity/Layout/TemplatesTest.php   |   0
 .../Integrity/Layout/ThemeHandlesTest.php     |   0
 .../Test/Integrity/Library/DependencyTest.php |   0
 .../Integrity/Library/_files/blacklist.txt    |   0
 .../Magento/Backend/ControllerAclTest.php     |   0
 .../Magento/Backend/SystemConfigTest.php      |   0
 .../controller_acl_test_whitelist_ce.txt      |   0
 .../Model/Fieldset/FieldsetConfigTest.php     |   0
 .../Core/Model/Fieldset/_files/fieldset.xml   |   0
 .../Model/Fieldset/_files/fieldset_file.xml   |   0
 .../Fieldset/_files/invalid_fieldset.xml      |   0
 .../Api/ExtensibleInterfacesTest.php          |   0
 .../ExtensibleInterfacesTest/blacklist_ce.txt |   0
 .../Framework/Search/RequestConfigTest.php    |   0
 .../Search/SearchEngineConfigTest.php         |   0
 .../Search/_files/request/invalid.xml         |   0
 .../Search/_files/request/invalid_partial.xml |   0
 .../Framework/Search/_files/request/valid.xml |   0
 .../Search/_files/request/valid_partial.xml   |   0
 .../Search/_files/search_engine/invalid.xml   |   0
 .../Search/_files/search_engine/valid.xml     |   0
 .../Integrity/Magento/Indexer/ConfigTest.php  |   0
 .../Magento/Indexer/_files/invalid.xml        |   0
 .../Magento/Indexer/_files/valid.xml          |   0
 .../Magento/Indexer/_files/valid_partial.xml  |   0
 .../Payment/Config/ReferentialTest.php        |   0
 .../Magento/Payment/Model/ConfigTest.php      |   0
 .../Payment/Model/_files/invalid_payment.xml  |   0
 .../Model/_files/invalid_payment_partial.xml  |   0
 .../Magento/Payment/Model/_files/payment.xml  |   0
 .../Payment/Model/_files/payment_partial.xml  |   0
 .../Magento/Persistent/ConfigTest.php         |   0
 .../Persistent/_files/invalid_persistent.xml  |   0
 .../Persistent/_files/valid_persistent.xml    |   0
 .../Magento/Webapi/Model/ConfigTest.php       |   0
 .../Webapi/Model/_files/invalid_webapi.xml    |   0
 .../Magento/Webapi/Model/_files/webapi.xml    |   0
 .../Magento/Widget/WidgetConfigTest.php       |   0
 .../Magento/Widget/_files/invalid_widget.xml  |   0
 .../Magento/Widget/_files/widget.xml          |   0
 .../Magento/Widget/_files/widget_file.xml     |   0
 .../Integrity/ObserverImplementationTest.php  |   0
 .../Integrity/Phrase/AbstractTestCase.php     |   0
 .../Test/Integrity/Phrase/ArgumentsTest.php   |   0
 .../Integrity/Phrase/Legacy/SignatureTest.php |   0
 .../Magento/Test/Integrity/PublicCodeTest.php |   0
 .../Test/Integrity/Readme/ReadmeTest.php      |   0
 .../Integrity/Readme/_files/blacklist/ce.txt  |   0
 .../Integrity/Readme/_files/scan_list.txt     |   0
 .../Test/Integrity/TestPlacementTest.php      |   0
 .../Magento/Test/Integrity/Xml/SchemaTest.php |   0
 .../_files/blacklist/exception_hierarchy.txt  |   0
 .../Integrity/_files/blacklist/observers.txt  |   0
 .../Integrity/_files/blacklist/reference.txt  |   0
 .../_files/dependency_test/tables_ce.php      |   0
 .../Test/Js/_files/blacklist/magento.txt      |   0
 .../Magento/Test/Js/_files/eslint/.eslintrc   |   0
 .../Test/Js/_files/eslint/.eslintrc-magento   |   0
 .../Test/Js/_files/eslint/.eslintrc-reset     |   0
 .../Magento/Test/Js/_files/jscs/.jscsrc       |   0
 .../Test/Js/_files/whitelist/magento.txt      |   0
 ...AutogeneratedClassNotInConstructorTest.php |   0
 .../Magento/Test/Legacy/ClassesTest.php       |   0
 .../Magento/Test/Legacy/ConfigTest.php        |   0
 .../Magento/Test/Legacy/CopyrightTest.php     |   0
 .../Magento/Test/Legacy/EmailTemplateTest.php |   0
 .../Magento/Test/Legacy/FilesystemTest.php    |   0
 .../Test/Legacy/InstallUpgradeTest.php        |   0
 .../Magento/Test/Legacy/LayoutTest.php        |   0
 .../Test/Legacy/LibraryLocationTest.php       |   0
 .../Magento/Test/Legacy/LicenseTest.php       |   0
 .../Magento/Core/Block/AbstractBlockTest.php  |   0
 .../Framework/Module/ModuleXMLTest.php        |   0
 .../Framework/ObjectManager/DiConfigTest.php  |   0
 .../Test/Legacy/Magento/Widget/XmlTest.php    |   0
 .../Test/Legacy/ModuleDBChangeTest.php        |   0
 .../Magento/Test/Legacy/ObsoleteAclTest.php   |   0
 .../Magento/Test/Legacy/ObsoleteCodeTest.php  |   0
 .../Test/Legacy/ObsoleteConnectionTest.php    |   0
 .../Magento/Test/Legacy/ObsoleteMenuTest.php  |   0
 .../Test/Legacy/ObsoleteResponseTest.php      |   0
 .../ObsoleteSystemConfigurationTest.php       |   0
 .../Test/Legacy/ObsoleteThemeLocalXmlTest.php |   0
 .../Magento/Test/Legacy/PhtmlTemplateTest.php |   0
 .../Test/Legacy/RestrictedCodeTest.php        |   0
 .../Magento/Test/Legacy/TableTest.php         |   0
 .../Legacy/UnsecureFunctionsUsageTest.php     |   0
 .../Magento/Test/Legacy/WordsTest.php         |   0
 ...ted_class_not_in_constructor_whitelist.php |   0
 .../Legacy/_files/blacklist/obsolete_mage.php |   0
 .../connection/blacklist/files_list.php       |   0
 .../whitelist/refactored_modules.php          |   0
 .../Legacy/_files/copyright/blacklist.php     |   0
 .../Legacy/_files/obsolete_config_nodes.php   |   0
 .../Test/Legacy/_files/obsolete_constants.php |   0
 .../Test/Legacy/_files/obsolete_methods.php   |   0
 .../Legacy/_files/obsolete_namespaces.php     |   0
 .../Test/Legacy/_files/obsolete_paths.php     |   0
 .../Legacy/_files/obsolete_properties.php     |   0
 .../_files/response/blacklist/files_list.php  |   0
 .../response/obsolete_response_methods.php    |   0
 .../response/whitelist/refactored_modules.php |   0
 .../Test/Legacy/_files/restricted_classes.php |   0
 .../security/unsecure_php_functions.php       |   0
 .../Test/Legacy/_files/security/whitelist.txt |   0
 .../Magento/Test/Legacy/_files/words_ce.xml   |   0
 .../Magento/Test/Less/LiveCodeTest.php        |   0
 .../Test/Less/_files/blacklist/old.txt        |   0
 .../Test/Less/_files/lesscs/ruleset.xml       |   0
 .../Test/Less/_files/whitelist/common.txt     |   0
 .../Magento/Test/Php/LiveCodeTest.php         |   0
 .../Magento/Test/Php/XssPhtmlTemplateTest.php |   0
 .../Php/_files/phpcpd/blacklist/common.txt    |   0
 .../Magento/Test/Php/_files/phpmd/ruleset.xml |   0
 .../Test/Php/_files/whitelist/common.txt      |   0
 .../_files/whitelist/exempt_modules/ce.php    |   0
 .../Composer/RootComposerMappingTest.php      |   0
 .../testsuite/Magento/Test/_files/.gitignore  |   0
 dev/tests/unit/.gitignore                     |   0
 dev/tests/unit/framework/autoload.php         |   0
 dev/tests/unit/framework/bootstrap.php        |   0
 dev/tests/unit/phpunit.xml.dist               |   0
 dev/tests/unit/tmp/.gitignore                 |   0
 .../Layout/processors/addItemRenderer.xsl     |   0
 .../Layout/processors/addToParentGroup.xsl    |   0
 .../Tools/Layout/processors/headBlocks.xsl    |   0
 .../Layout/processors/layoutArguments.xsl     |   0
 .../Layout/processors/layoutGridContainer.xsl |   0
 .../Tools/Layout/processors/layoutHandles.xsl |   0
 .../Tools/Layout/processors/layoutLabels.xsl  |   0
 .../Layout/processors/layoutReferences.xsl    |   0
 .../Layout/processors/layoutTranslate.xsl     |   0
 .../Tools/StaticReview/PhpCsFixerReview.php   |   0
 dev/tools/bootstrap.php                       |   0
 dev/tools/dynamicReturnTypeMeta.json          |   0
 dev/tools/grunt/assets/legacy-build/shim.js   |   0
 dev/tools/grunt/configs/autoprefixer.json     |   0
 dev/tools/grunt/configs/clean.js              |   0
 dev/tools/grunt/configs/combo.js              |   0
 dev/tools/grunt/configs/concat.json           |   0
 dev/tools/grunt/configs/cssmin.json           |   0
 dev/tools/grunt/configs/eslint.json           |   0
 dev/tools/grunt/configs/exec.js               |   0
 dev/tools/grunt/configs/imagemin.js           |   0
 dev/tools/grunt/configs/jscs.json             |   0
 dev/tools/grunt/configs/less.js               |   0
 dev/tools/grunt/configs/mage-minify.json      |   0
 dev/tools/grunt/configs/path.js               |   0
 dev/tools/grunt/configs/replace.js            |   0
 dev/tools/grunt/configs/styledocco.json       |   0
 dev/tools/grunt/configs/themes.js             |   0
 dev/tools/grunt/configs/usebanner.js          |   0
 dev/tools/grunt/configs/watch.js              |   0
 dev/tools/grunt/tasks/black-list-generator.js |   0
 dev/tools/grunt/tasks/clean-black-list.js     |   0
 dev/tools/grunt/tasks/deploy.js               |   0
 dev/tools/grunt/tasks/mage-minify.js          |   0
 dev/tools/grunt/tasks/static.js               |   0
 .../grunt/tools/collect-validation-files.js   |   0
 dev/tools/grunt/tools/files-router.js         |   0
 dev/tools/grunt/tools/fs-tools.js             |   0
 dev/travis/config/apache_virtual_host         |   0
 dev/travis/config/www.conf                    |   0
 generated/.htaccess                           |   0
 grunt-config.json.sample                      |   0
 index.php                                     |   0
 lib/.htaccess                                 |   0
 lib/internal/LinLibertineFont/Bugs            |   0
 lib/internal/LinLibertineFont/ChangeLog.txt   |   0
 lib/internal/LinLibertineFont/GPL.txt         |   0
 lib/internal/LinLibertineFont/LICENCE.txt     |   0
 .../LinLibertineC_Re-2.8.0.ttf                | Bin
 .../LinLibertine_Bd-2.8.1.ttf                 | Bin
 .../LinLibertine_It-2.8.2.ttf                 | Bin
 .../LinLibertine_Re-4.4.1.ttf                 | Bin
 lib/internal/LinLibertineFont/OFL.txt         |   0
 lib/internal/LinLibertineFont/Readme          |   0
 lib/internal/LinLibertineFont/Readme-TEX.txt  |   0
 lib/internal/Magento/Framework/Acl.php        |   0
 .../Magento/Framework/Acl/AclResource.php     |   0
 .../Acl/AclResource/Config/Converter/Dom.php  |   0
 .../AclResource/Config/Reader/Filesystem.php  |   0
 .../Acl/AclResource/Config/SchemaLocator.php  |   0
 .../Framework/Acl/AclResource/Provider.php    |   0
 .../Acl/AclResource/ProviderInterface.php     |   0
 .../Framework/Acl/AclResource/TreeBuilder.php |   0
 .../Framework/Acl/AclResourceFactory.php      |   0
 .../Magento/Framework/Acl/Builder.php         |   0
 .../Magento/Framework/Acl/Data/Cache.php      |   0
 .../Framework/Acl/Data/CacheInterface.php     |   0
 .../Framework/Acl/Loader/DefaultLoader.php    |   0
 .../Framework/Acl/Loader/ResourceLoader.php   |   0
 .../Magento/Framework/Acl/LoaderInterface.php |   0
 .../Magento/Framework/Acl/Role/Registry.php   |   0
 .../Magento/Framework/Acl/RootResource.php    |   0
 .../AclResource/Config/Converter/DomTest.php  |   0
 .../Converter/_files/converted_valid_acl.php  |   0
 .../Config/Converter/_files/valid_acl.xml     |   0
 .../Unit/AclResource/Config/MergedXsdTest.php |   0
 .../AclResource/Config/SchemaLocatorTest.php  |   0
 .../Test/Unit/AclResource/Config/XsdTest.php  |   0
 .../Config/_files/invalidAclXmlArray.php      |   0
 .../_files/invalidMergedAclXmlArray.php       |   0
 .../AclResource/Config/_files/valid_acl.xml   |   0
 .../Config/_files/valid_merged_acl.xml        |   0
 .../Test/Unit/AclResource/ProviderTest.php    |   0
 .../Test/Unit/AclResource/TreeBuilderTest.php |   0
 .../Framework/Acl/Test/Unit/BuilderTest.php   |   0
 .../Acl/Test/Unit/Loader/DefaultTest.php      |   0
 .../Test/Unit/Loader/ResourceLoaderTest.php   |   0
 .../Acl/Test/Unit/ResourceFactoryTest.php     |   0
 .../Acl/Test/Unit/Role/RegistryTest.php       |   0
 .../Acl/Test/Unit/_files/resourceList.php     |   0
 .../Framework/Acl/Test/Unit/_files/result.php |   0
 .../Magento/Framework/Acl/etc/acl.xsd         |   0
 .../Magento/Framework/Acl/etc/acl_merged.xsd  |   0
 lib/internal/Magento/Framework/AclFactory.php |   0
 .../Api/AbstractExtensibleObject.php          |   0
 .../Api/AbstractServiceCollection.php         |   0
 .../Framework/Api/AbstractSimpleObject.php    |   0
 .../Api/AbstractSimpleObjectBuilder.php       |   0
 .../Framework/Api/ArrayObjectSearch.php       |   0
 .../Framework/Api/AttributeInterface.php      |   0
 .../Framework/Api/AttributeMetadata.php       |   0
 .../Api/AttributeTypeResolverInterface.php    |   0
 .../Magento/Framework/Api/AttributeValue.php  |   0
 .../Framework/Api/AttributeValueFactory.php   |   0
 .../ExtensionAttributesGenerator.php          |   0
 ...ionAttributesInterfaceFactoryGenerator.php |   0
 .../ExtensionAttributesInterfaceGenerator.php |   0
 .../Framework/Api/Code/Generator/Mapper.php   |   0
 .../Api/Code/Generator/SearchResults.php      |   0
 .../Framework/Api/CriteriaInterface.php       |   0
 .../Api/CustomAttributesDataInterface.php     |   0
 .../Api/Data/ImageContentInterface.php        |   0
 .../Api/Data/VideoContentInterface.php        |   0
 .../Framework/Api/DataObjectHelper.php        |   0
 .../Framework/Api/DefaultMetadataService.php  |   0
 .../Framework/Api/ExtensibleDataInterface.php |   0
 .../Api/ExtensibleDataObjectConverter.php     |   0
 .../Api/ExtensionAttribute/Config.php         |   0
 .../ExtensionAttribute/Config/Converter.php   |   0
 .../Api/ExtensionAttribute/Config/Reader.php  |   0
 .../Config/SchemaLocator.php                  |   0
 .../Api/ExtensionAttribute/JoinData.php       |   0
 .../ExtensionAttribute/JoinDataInterface.php  |   0
 .../JoinDataInterfaceFactory.php              |   0
 .../Api/ExtensionAttribute/JoinProcessor.php  |   0
 .../JoinProcessorHelper.php                   |   0
 .../JoinProcessorInterface.php                |   0
 .../Api/ExtensionAttributesFactory.php        |   0
 .../Api/ExtensionAttributesInterface.php      |   0
 lib/internal/Magento/Framework/Api/Filter.php |   0
 .../Magento/Framework/Api/FilterBuilder.php   |   0
 .../Magento/Framework/Api/ImageContent.php    |   0
 .../Framework/Api/ImageContentValidator.php   |   0
 .../Api/ImageContentValidatorInterface.php    |   0
 .../Magento/Framework/Api/ImageProcessor.php  |   0
 .../Framework/Api/ImageProcessorInterface.php |   0
 .../Framework/Api/MetadataObjectInterface.php |   0
 .../Api/MetadataServiceInterface.php          |   0
 .../Magento/Framework/Api/ObjectFactory.php   |   0
 .../Api/Search/AggregationInterface.php       |   0
 .../Api/Search/AggregationValueInterface.php  |   0
 .../Framework/Api/Search/BucketInterface.php  |   0
 .../Magento/Framework/Api/Search/Document.php |   0
 .../Framework/Api/Search/DocumentFactory.php  |   0
 .../Api/Search/DocumentInterface.php          |   0
 .../Framework/Api/Search/FilterGroup.php      |   0
 .../Api/Search/FilterGroupBuilder.php         |   0
 .../Api/Search/ReportingInterface.php         |   0
 .../Framework/Api/Search/SearchCriteria.php   |   0
 .../Api/Search/SearchCriteriaBuilder.php      |   0
 .../Api/Search/SearchCriteriaFactory.php      |   0
 .../Api/Search/SearchCriteriaInterface.php    |   0
 .../Framework/Api/Search/SearchInterface.php  |   0
 .../Framework/Api/Search/SearchResult.php     |   0
 .../Api/Search/SearchResultFactory.php        |   0
 .../Api/Search/SearchResultInterface.php      |   0
 .../Magento/Framework/Api/SearchCriteria.php  |   0
 .../SearchCriteria/CollectionProcessor.php    |   0
 .../CollectionProcessor/FilterProcessor.php   |   0
 .../FilterProcessor/CustomFilterInterface.php |   0
 .../CollectionProcessor/JoinProcessor.php     |   0
 .../JoinProcessor/CustomJoinInterface.php     |   0
 .../PaginationProcessor.php                   |   0
 .../CollectionProcessor/SortingProcessor.php  |   0
 .../CollectionProcessorInterface.php          |   0
 .../Framework/Api/SearchCriteriaBuilder.php   |   0
 .../Framework/Api/SearchCriteriaInterface.php |   0
 .../Magento/Framework/Api/SearchResults.php   |   0
 .../Framework/Api/SearchResultsInterface.php  |   0
 .../Framework/Api/SimpleBuilderInterface.php  |   0
 .../Api/SimpleDataObjectConverter.php         |   0
 .../Magento/Framework/Api/SortOrder.php       |   0
 .../Framework/Api/SortOrderBuilder.php        |   0
 .../Unit/Api/ImageContentValidatorTest.php    |   0
 .../Api/Test/Unit/Api/ImageProcessorTest.php  |   0
 .../Api/Test/Unit/Api/_files/image.jpg        | Bin
 .../Generator/EntityChildTestAbstract.php     |   0
 .../Unit/Code/Generator/ExtensibleSample.php  |   0
 .../Generator/ExtensibleSampleInterface.php   |   0
 .../ExtensionAttributesGeneratorTest.php      |   0
 ...ensionAttributesInterfaceGeneratorTest.php |   0
 .../Code/Generator/GenerateMapperTest.php     |   0
 .../Generator/GenerateSearchResultsTest.php   |   0
 .../Api/Test/Unit/Code/Generator/Sample.php   |   0
 .../Generator/_files/SampleEmptyExtension.txt |   0
 .../Code/Generator/_files/SampleExtension.txt |   0
 .../_files/SampleExtensionInterface.txt       |   0
 .../Code/Generator/_files/SampleMapper.txt    |   0
 .../Generator/_files/SampleSearchResults.txt  |   0
 .../Api/Test/Unit/Data/AttributeValueTest.php |   0
 .../Api/Test/Unit/DataObjectHelperTest.php    |   0
 .../ExtensibleDataObjectConverterTest.php     |   0
 .../Config/ConverterTest.php                  |   0
 .../ExtensionAttribute/Config/ReaderTest.php  |   0
 .../Config/SchemaLocatorTest.php              |   0
 .../ExtensionAttribute/Config/XsdTest.php     |   0
 .../Config/_files/extension_attributes.xml    |   0
 ...ension_attributes_with_join_directives.xml |   0
 .../Api/Test/Unit/Search/SearchResultTest.php |   0
 .../FilterProcessorTest.php                   |   0
 .../CollectionProcessor/JoinProcessorTest.php |   0
 .../PaginationProcessorTest.php               |   0
 .../SortingProcessorTest.php                  |   0
 .../CollectionProcessorTest.php               |   0
 .../Framework/Api/Test/Unit/SortOrderTest.php |   0
 .../Test/Unit/StubAbstractSimpleObject.php    |   0
 .../Magento/Framework/Api/Uploader.php        |   0
 .../Api/etc/extension_attributes.xsd          |   0
 .../Framework/App/Action/AbstractAction.php   |   0
 .../Magento/Framework/App/Action/Action.php   |   0
 .../Magento/Framework/App/Action/Context.php  |   0
 .../Magento/Framework/App/Action/Forward.php  |   0
 .../Framework/App/Action/Plugin/Design.php    |   0
 .../Magento/Framework/App/Action/Redirect.php |   0
 .../Magento/Framework/App/ActionFactory.php   |   0
 .../Magento/Framework/App/ActionFlag.php      |   0
 .../Magento/Framework/App/ActionInterface.php |   0
 lib/internal/Magento/Framework/App/Area.php   |   0
 .../App/Area/FrontNameResolverFactory.php     |   0
 .../App/Area/FrontNameResolverInterface.php   |   0
 .../Magento/Framework/App/AreaInterface.php   |   0
 .../Magento/Framework/App/AreaList.php        |   0
 .../Magento/Framework/App/AreaList/Proxy.php  |   0
 .../App/Arguments/ArgumentInterpreter.php     |   0
 .../App/Arguments/FileResolver/Primary.php    |   0
 .../App/Arguments/ValidationState.php         |   0
 .../Magento/Framework/App/Bootstrap.php       |   0
 lib/internal/Magento/Framework/App/Cache.php  |   0
 .../Framework/App/Cache/FlushCacheByTags.php  |   0
 .../Framework/App/Cache/Frontend/Factory.php  |   0
 .../Framework/App/Cache/Frontend/Pool.php     |   0
 .../Framework/App/Cache/InstanceFactory.php   |   0
 .../Magento/Framework/App/Cache/Manager.php   |   0
 .../Magento/Framework/App/Cache/Proxy.php     |   0
 .../Magento/Framework/App/Cache/README.md     |   0
 .../Magento/Framework/App/Cache/State.php     |   0
 .../Framework/App/Cache/StateInterface.php    |   0
 .../Framework/App/Cache/Tag/Resolver.php      |   0
 .../App/Cache/Tag/Strategy/Dummy.php          |   0
 .../App/Cache/Tag/Strategy/Factory.php        |   0
 .../App/Cache/Tag/Strategy/Identifier.php     |   0
 .../App/Cache/Tag/StrategyInterface.php       |   0
 .../Framework/App/Cache/Type/AccessProxy.php  |   0
 .../Framework/App/Cache/Type/Block.php        |   0
 .../Framework/App/Cache/Type/Collection.php   |   0
 .../Framework/App/Cache/Type/Config.php       |   0
 .../Framework/App/Cache/Type/Dummy.php        |   0
 .../Framework/App/Cache/Type/FrontendPool.php |   0
 .../Framework/App/Cache/Type/Layout.php       |   0
 .../Framework/App/Cache/Type/Reflection.php   |   0
 .../Framework/App/Cache/Type/Translate.php    |   0
 .../Magento/Framework/App/Cache/TypeList.php  |   0
 .../Framework/App/Cache/TypeListInterface.php |   0
 .../Magento/Framework/App/CacheInterface.php  |   0
 lib/internal/Magento/Framework/App/Config.php |   0
 .../Magento/Framework/App/Config/Base.php     |   0
 .../Framework/App/Config/BaseFactory.php      |   0
 .../Framework/App/Config/CommentInterface.php |   0
 .../App/Config/CommentParserInterface.php     |   0
 .../App/Config/ConfigPathResolver.php         |   0
 .../Config/ConfigResource/ConfigInterface.php |   0
 .../App/Config/ConfigSourceAggregated.php     |   0
 .../App/Config/ConfigSourceInterface.php      |   0
 .../App/Config/ConfigTypeInterface.php        |   0
 .../Magento/Framework/App/Config/Data.php     |   0
 .../App/Config/Data/ProcessorFactory.php      |   0
 .../App/Config/Data/ProcessorInterface.php    |   0
 .../Framework/App/Config/DataFactory.php      |   0
 .../Framework/App/Config/DataInterface.php    |   0
 .../Magento/Framework/App/Config/Element.php  |   0
 .../Framework/App/Config/FileResolver.php     |   0
 .../Magento/Framework/App/Config/Initial.php  |   0
 .../App/Config/Initial/Converter.php          |   0
 .../Framework/App/Config/Initial/Reader.php   |   0
 .../App/Config/Initial/SchemaLocator.php      |   0
 .../App/Config/InitialConfigSource.php        |   0
 .../Config/MetadataConfigTypeProcessor.php    |   0
 .../App/Config/MetadataProcessor.php          |   0
 .../Config/MutableScopeConfigInterface.php    |   0
 .../App/Config/PostProcessorComposite.php     |   0
 .../App/Config/PreProcessorComposite.php      |   0
 .../Config/Reader/Source/SourceInterface.php  |   0
 .../App/Config/ReinitableConfigInterface.php  |   0
 .../Framework/App/Config/Scope/Converter.php  |   0
 .../App/Config/Scope/ReaderInterface.php      |   0
 .../Framework/App/Config/Scope/Validator.php  |   0
 .../App/Config/ScopeCodeResolver.php          |   0
 .../App/Config/ScopeConfigInterface.php       |   0
 .../App/Config/Spi/PostProcessorInterface.php |   0
 .../App/Config/Spi/PreProcessorInterface.php  |   0
 .../Framework/App/Config/Storage/Writer.php   |   0
 .../App/Config/Storage/WriterInterface.php    |   0
 .../Magento/Framework/App/Config/Value.php    |   0
 .../Framework/App/Config/ValueFactory.php     |   0
 .../Framework/App/Config/ValueInterface.php   |   0
 .../App/Console/MaintenanceModeEnabler.php    |   0
 .../Magento/Framework/App/Console/Request.php |   0
 .../Framework/App/Console/Response.php        |   0
 lib/internal/Magento/Framework/App/Cron.php   |   0
 .../Framework/App/DefaultPath/DefaultPath.php |   0
 .../Framework/App/DefaultPathInterface.php    |   0
 .../Framework/App/DeploymentConfig.php        |   0
 .../App/DeploymentConfig/CommentParser.php    |   0
 .../App/DeploymentConfig/FileReader.php       |   0
 .../DeploymentConfig/ImporterInterface.php    |   0
 .../Framework/App/DeploymentConfig/Reader.php |   0
 .../DeploymentConfig/ValidatorInterface.php   |   0
 .../Framework/App/DeploymentConfig/Writer.php |   0
 .../Writer/FormatterInterface.php             |   0
 .../DeploymentConfig/Writer/PhpFormatter.php  |   0
 .../Magento/Framework/App/DesignInterface.php |   0
 .../Magento/Framework/App/DocRootLocator.php  |   0
 .../Framework/App/EnvironmentFactory.php      |   0
 .../Framework/App/EnvironmentInterface.php    |   0
 .../Magento/Framework/App/ErrorHandler.php    |   0
 .../App/Filesystem/DirectoryList.php          |   0
 .../Framework/App/Filesystem/README.md        |   0
 .../Magento/Framework/App/FrontController.php |   0
 .../App/FrontControllerInterface.php          |   0
 .../Framework/App/Helper/AbstractHelper.php   |   0
 .../Magento/Framework/App/Helper/Context.php  |   0
 lib/internal/Magento/Framework/App/Http.php   |   0
 .../Magento/Framework/App/Http/Context.php    |   0
 .../App/Interception/Cache/CompiledConfig.php |   0
 .../Magento/Framework/App/Language/Config.php |   0
 .../Framework/App/Language/ConfigFactory.php  |   0
 .../Framework/App/Language/Dictionary.php     |   0
 .../Framework/App/Language/package.xsd        |   0
 .../Magento/Framework/App/MaintenanceMode.php |   0
 .../Framework/App/MutableScopeConfig.php      |   0
 .../Magento/Framework/App/ObjectManager.php   |   0
 .../App/ObjectManager/ConfigCache.php         |   0
 .../App/ObjectManager/ConfigLoader.php        |   0
 .../ObjectManager/ConfigLoader/Compiled.php   |   0
 .../Environment/AbstractEnvironment.php       |   0
 .../ObjectManager/Environment/Compiled.php    |   0
 .../ObjectManager/Environment/Developer.php   |   0
 .../Framework/App/ObjectManagerFactory.php    |   0
 .../Magento/Framework/App/PageCache/Cache.php |   0
 .../Framework/App/PageCache/FormKey.php       |   0
 .../Framework/App/PageCache/Identifier.php    |   0
 .../Framework/App/PageCache/Kernel.php        |   0
 .../App/PageCache/NotCacheableInterface.php   |   0
 .../Magento/Framework/App/PageCache/README.md |   0
 .../Framework/App/PageCache/Version.php       |   0
 .../App/PlainTextRequestInterface.php         |   0
 .../Magento/Framework/App/ProductMetadata.php |   0
 .../App/ProductMetadataInterface.php          |   0
 lib/internal/Magento/Framework/App/README.md  |   0
 .../Framework/App/ReinitableConfig.php        |   0
 .../Framework/App/Request/DataPersistor.php   |   0
 .../App/Request/DataPersistorInterface.php    |   0
 .../Magento/Framework/App/Request/Http.php    |   0
 .../Request/PathInfoProcessorInterface.php    |   0
 .../Framework/App/RequestContentInterface.php |   0
 .../Magento/Framework/App/RequestFactory.php  |   0
 .../Framework/App/RequestInterface.php        |   0
 .../Framework/App/RequestSafetyInterface.php  |   0
 .../Framework/App/ResourceConnection.php      |   0
 .../App/ResourceConnection/Config.php         |   0
 .../ResourceConnection/Config/Converter.php   |   0
 .../App/ResourceConnection/Config/Reader.php  |   0
 .../Config/SchemaLocator.php                  |   0
 .../ResourceConnection/ConfigInterface.php    |   0
 .../ConnectionAdapterInterface.php            |   0
 .../ResourceConnection/ConnectionFactory.php  |   0
 .../App/ResourceConnection/SourceFactory.php  |   0
 .../SourceProviderInterface.php               |   0
 .../Framework/App/Response/FileInterface.php  |   0
 .../Framework/App/Response/HeaderManager.php  |   0
 .../HeaderProvider/AbstractHeaderProvider.php |   0
 .../HeaderProviderInterface.php               |   0
 .../HeaderProvider/XContentTypeOptions.php    |   0
 .../Response/HeaderProvider/XFrameOptions.php |   0
 .../Response/HeaderProvider/XssProtection.php |   0
 .../Magento/Framework/App/Response/Http.php   |   0
 .../App/Response/Http/FileFactory.php         |   0
 .../Framework/App/Response/HttpInterface.php  |   0
 .../App/Response/RedirectInterface.php        |   0
 .../Magento/Framework/App/ResponseFactory.php |   0
 .../Framework/App/ResponseInterface.php       |   0
 .../Magento/Framework/App/Route/Config.php    |   0
 .../Framework/App/Route/Config/Converter.php  |   0
 .../Framework/App/Route/Config/Reader.php     |   0
 .../App/Route/Config/SchemaLocator.php        |   0
 .../Framework/App/Route/ConfigInterface.php   |   0
 .../App/Route/ConfigInterface/Proxy.php       |   0
 .../Framework/App/Router/ActionList.php       |   0
 .../Magento/Framework/App/Router/Base.php     |   0
 .../Framework/App/Router/DefaultRouter.php    |   0
 .../Framework/App/Router/NoRouteHandler.php   |   0
 .../App/Router/NoRouteHandlerInterface.php    |   0
 .../App/Router/NoRouteHandlerList.php         |   0
 .../App/Router/PathConfigInterface.php        |   0
 .../Magento/Framework/App/RouterInterface.php |   0
 .../Magento/Framework/App/RouterList.php      |   0
 .../Framework/App/RouterListInterface.php     |   0
 .../App/Rss/DataProviderInterface.php         |   0
 .../Framework/App/Rss/RssManagerInterface.php |   0
 .../Magento/Framework/App/Rss/UrlBuilder.php  |   0
 .../Framework/App/Rss/UrlBuilderInterface.php |   0
 .../Magento/Framework/App/Scope/Source.php    |   0
 .../Magento/Framework/App/Scope/Validator.php |   0
 .../App/Scope/ValidatorInterface.php          |   0
 .../Magento/Framework/App/ScopeDefault.php    |   0
 .../App/ScopeFallbackResolverInterface.php    |   0
 .../Magento/Framework/App/ScopeInterface.php  |   0
 .../Magento/Framework/App/ScopeResolver.php   |   0
 .../Framework/App/ScopeResolverInterface.php  |   0
 .../Framework/App/ScopeResolverPool.php       |   0
 .../App/ScopeTreeProviderInterface.php        |   0
 .../Framework/App/ScopeValidatorInterface.php |   0
 .../Magento/Framework/App/SetupInfo.php       |   0
 lib/internal/Magento/Framework/App/Shell.php  |   0
 lib/internal/Magento/Framework/App/State.php  |   0
 .../Framework/App/State/CleanupFiles.php      |   0
 .../Magento/Framework/App/StaticResource.php  |   0
 .../Framework/App/TemplateTypesInterface.php  |   0
 .../App/Test/Unit/AclResourceTest.php         |   0
 .../Test/Unit/Action/AbstractActionTest.php   |   0
 .../App/Test/Unit/Action/ActionFake.php       |   0
 .../App/Test/Unit/Action/ActionTest.php       |   0
 .../App/Test/Unit/Action/ForwardTest.php      |   0
 .../Test/Unit/Action/Plugin/DesignTest.php    |   0
 .../App/Test/Unit/Action/Stub/ActionStub.php  |   0
 .../App/Test/Unit/ActionFlagTest.php          |   0
 .../Framework/App/Test/Unit/AreaListTest.php  |   0
 .../Framework/App/Test/Unit/AreaTest.php      |   0
 .../Arguments/ArgumentInterpreterTest.php     |   0
 .../Arguments/FileResolver/PrimaryTest.php    |   0
 .../FileResolver/_files/app/etc/config.xml    |   0
 .../_files/app/etc/custom/config.xml          |   0
 .../_files/primary/app/etc/di.xml             |   0
 .../_files/primary/app/etc/some_config/di.xml |   0
 .../Framework/App/Test/Unit/BootstrapTest.php |   0
 .../Test/Unit/Cache/FlushCacheByTagsTest.php  |   0
 .../Test/Unit/Cache/Frontend/FactoryTest.php  |   0
 .../FactoryTest/CacheDecoratorDummy.php       |   0
 .../App/Test/Unit/Cache/Frontend/PoolTest.php |   0
 .../App/Test/Unit/Cache/ManagerTest.php       |   0
 .../App/Test/Unit/Cache/StateTest.php         |   0
 .../App/Test/Unit/Cache/Tag/ResolverTest.php  |   0
 .../Unit/Cache/Tag/Strategy/DummyTest.php     |   0
 .../Unit/Cache/Tag/Strategy/FactoryTest.php   |   0
 .../Cache/Tag/Strategy/IdentifierTest.php     |   0
 .../Test/Unit/Cache/Type/AccessProxyTest.php  |   0
 .../App/Test/Unit/Cache/Type/ConfigTest.php   |   0
 .../Test/Unit/Cache/Type/FrontendPoolTest.php |   0
 .../App/Test/Unit/Cache/Type/GenericTest.php  |   0
 .../App/Test/Unit/Cache/TypeListTest.php      |   0
 .../Framework/App/Test/Unit/CacheTest.php     |   0
 .../App/Test/Unit/Config/BaseFactoryTest.php  |   0
 .../Unit/Config/ConfigPathResolverTest.php    |   0
 .../Config/ConfigSourceAggregatedTest.php     |   0
 .../Unit/Config/Data/ProcessorFactoryTest.php |   0
 .../App/Test/Unit/Config/DataFactoryTest.php  |   0
 .../App/Test/Unit/Config/DataTest.php         |   0
 .../App/Test/Unit/Config/ElementTest.php      |   0
 .../App/Test/Unit/Config/FileResolverTest.php |   0
 .../Unit/Config/Initial/ConverterTest.php     |   0
 .../Test/Unit/Config/Initial/ReaderTest.php   |   0
 .../Unit/Config/Initial/SchemaLocatorTest.php |   0
 .../App/Test/Unit/Config/Initial/XsdTest.php  |   0
 .../Unit/Config/Initial/_files/config.xml     |   0
 .../Unit/Config/Initial/_files/config.xsd     |   0
 .../Initial/_files/converted_config.php       |   0
 .../Config/Initial/_files/initial_config1.xml |   0
 .../Config/Initial/_files/initial_config2.xml |   0
 .../Initial/_files/initial_config_merged.php  |   0
 .../Initial/_files/invalidConfigXmlArray.php  |   0
 .../Config/Initial/_files/invalid_config.xml  |   0
 .../Config/Initial/_files/valid_config.xml    |   0
 .../Unit/Config/InitialConfigSourceTest.php   |   0
 .../App/Test/Unit/Config/InitialTest.php      |   0
 .../MetadataConfigTypeProcessorTest.php       |   0
 .../Unit/Config/MetadataProcessorTest.php     |   0
 .../Unit/Config/PreProcessorCompositeTest.php |   0
 .../Test/Unit/Config/Scope/ConverterTest.php  |   0
 .../Test/Unit/Config/Scope/ValidatorTest.php  |   0
 .../Unit/Config/ScopeCodeResolverTest.php     |   0
 .../Test/Unit/Config/Storage/WriterTest.php   |   0
 .../App/Test/Unit/Config/ValueFactoryTest.php |   0
 .../App/Test/Unit/Config/ValueTest.php        |   0
 .../App/Test/Unit/Config/XsdTest.php          |   0
 .../App/Test/Unit/Config/_files/element.xml   |   0
 .../Config/_files/invalidRoutesXmlArray.php   |   0
 .../Test/Unit/Config/_files/valid_routes.xml  |   0
 .../Framework/App/Test/Unit/ConfigTest.php    |   0
 .../App/Test/Unit/Console/CommandListTest.php |   0
 .../Console/MaintenanceModeEnablerTest.php    |   0
 .../App/Test/Unit/Console/ResponseTest.php    |   0
 .../Framework/App/Test/Unit/CronTest.php      |   0
 .../Framework/App/Test/Unit/DefaultClass.php  |   0
 .../Test/Unit/DefaultPath/DefaultPathTest.php |   0
 .../DeploymentConfig/CommentParserTest.php    |   0
 .../Unit/DeploymentConfig/FileReaderTest.php  |   0
 .../Test/Unit/DeploymentConfig/ReaderTest.php |   0
 .../Writer/PhpFormatterTest.php               |   0
 .../Test/Unit/DeploymentConfig/WriterTest.php |   0
 .../Unit/DeploymentConfig/_files/config.php   |   0
 .../Unit/DeploymentConfig/_files/custom.php   |   0
 .../_files/duplicateConfig.php                |   0
 .../Test/Unit/DeploymentConfig/_files/env.php |   0
 .../Unit/DeploymentConfig/_files/mergeOne.php |   0
 .../Unit/DeploymentConfig/_files/mergeTwo.php |   0
 .../App/Test/Unit/DeploymentConfigTest.php    |   0
 .../App/Test/Unit/DocRootLocatorTest.php      |   0
 .../App/Test/Unit/ErrorHandlerTest.php        |   0
 .../Unit/Filesystem/DirectoryListTest.php     |   0
 .../Framework/App/Test/Unit/FrontClass.php    |   0
 .../App/Test/Unit/FrontControllerTest.php     |   0
 .../App/Test/Unit/Http/ContextTest.php        |   0
 .../Framework/App/Test/Unit/HttpTest.php      |   0
 .../App/Test/Unit/Language/ConfigTest.php     |   0
 .../App/Test/Unit/Language/DictionaryTest.php |   0
 .../Test/Unit/Language/_files/language.xml    |   0
 .../App/Test/Unit/MaintenanceModeTest.php     |   0
 .../Unit/ObjectManager/ConfigCacheTest.php    |   0
 .../Unit/ObjectManager/ConfigLoaderTest.php   |   0
 .../Environment/CompiledTest.php              |   0
 .../Environment/CompiledTesting.php           |   0
 .../Environment/ConfigTesting.php             |   0
 .../Environment/DeveloperTest.php             |   0
 .../Test/Unit/ObjectManager/FactoryStub.php   |   0
 .../Test/Unit/ObjectManagerFactoryTest.php    |   0
 .../App/Test/Unit/PageCache/FormKeyTest.php   |   0
 .../Test/Unit/PageCache/IdentifierTest.php    |   0
 .../App/Test/Unit/PageCache/KernelTest.php    |   0
 .../App/Test/Unit/PageCache/PageCacheTest.php |   0
 .../App/Test/Unit/PageCache/VersionTest.php   |   0
 .../App/Test/Unit/ProductMetadataTest.php     |   0
 .../App/Test/Unit/Request/HttpTest.php        |   0
 .../App/Test/Unit/RequestFactoryTest.php      |   0
 .../Config/ConverterTest.php                  |   0
 .../ResourceConnection/Config/ReaderTest.php  |   0
 .../Config/SchemaLocatorTest.php              |   0
 .../ResourceConnection/Config/XsdTest.php     |   0
 .../_files/invalidResourcesXmlArray.php       |   0
 .../Config/_files/resources.php               |   0
 .../Config/_files/resources.xml               |   0
 .../Config/_files/valid_resources.xml         |   0
 .../Unit/ResourceConnection/ConfigTest.php    |   0
 .../ConnectionFactoryTest.php                 |   0
 .../HeaderProvider/XFrameOptionsTest.php      |   0
 .../HeaderProvider/XssProtectionTest.php      |   0
 .../Unit/Response/Http/FileFactoryTest.php    |   0
 .../App/Test/Unit/Response/HttpTest.php       |   0
 .../App/Test/Unit/ResponseFactoryTest.php     |   0
 .../Test/Unit/Route/Config/ConverterTest.php  |   0
 .../Unit/Route/Config/SchemaLocatorTest.php   |   0
 .../Test/Unit/Route/Config/_files/routes.php  |   0
 .../Test/Unit/Route/Config/_files/routes.xml  |   0
 .../Unit/Route/ConfigInterface/ProxyTest.php  |   0
 .../App/Test/Unit/Route/ConfigTest.php        |   0
 .../App/Test/Unit/Router/ActionListTest.php   |   0
 .../App/Test/Unit/Router/BaseTest.php         |   0
 .../Test/Unit/Router/DefaultRouterTest.php    |   0
 .../Unit/Router/NoRouteHandlerListTest.php    |   0
 .../Test/Unit/Router/NoRouteHandlerTest.php   |   0
 .../App/Test/Unit/RouterListTest.php          |   0
 .../App/Test/Unit/Scope/ValidatorTest.php     |   0
 .../App/Test/Unit/ScopeResolverPoolTest.php   |   0
 .../Framework/App/Test/Unit/SetupInfoTest.php |   0
 .../Framework/App/Test/Unit/ShellTest.php     |   0
 .../App/Test/Unit/State/CleanupFilesTest.php  |   0
 .../Framework/App/Test/Unit/StateTest.php     |   0
 .../App/Test/Unit/StaticResourceTest.php      |   0
 .../Unit/Utility/AggregateInvokerTest.php     |   0
 .../App/Test/Unit/Utility/FilesTest.php       |   0
 .../Test/Unit/Utility/_files/foo/bar/one.txt  |   0
 .../Utility/_files/foo/bar/recursive/one.txt  |   0
 .../Utility/_files/foo/bar/recursive/two.txt  |   0
 .../Test/Unit/Utility/_files/foo/bar/two.txt  |   0
 .../Test/Unit/Utility/_files/foo/baz/one.txt  |   0
 .../Test/Unit/Utility/_files/foo/baz/two.txt  |   0
 .../App/Test/Unit/Utility/_files/foo/one.txt  |   0
 .../App/Test/Unit/Utility/_files/foo/two.txt  |   0
 .../Utility/_files/list_corrupted_dir.txt     |   0
 .../Utility/_files/list_corrupted_file.txt    |   0
 .../Test/Unit/Utility/_files/list_good.txt    |   0
 .../MaterializationStrategy/CopyTest.php      |   0
 .../MaterializationStrategy/FactoryTest.php   |   0
 .../MaterializationStrategy/SymlinkTest.php   |   0
 .../Test/Unit/View/Asset/PublisherTest.php    |   0
 .../Deployment/Version/Storage/FileTest.php   |   0
 .../Test/Unit/View/Deployment/VersionTest.php |   0
 .../Framework/App/Test/Unit/ViewTest.php      |   0
 .../App/Test/Unit/_files/app/etc/di.xml       |   0
 .../Framework/App/Test/Unit/_files/config.php |   0
 .../Unit/_files/other/local_developer.php     |   0
 .../_files/other/local_developer_merged.php   |   0
 .../App/Test/Unit/_files/pub/index.php        |   0
 .../App/Test/Unit/_files/setup/index.php      |   0
 .../App/Test/Unit/_files/test.composer.json   |   0
 .../App/Utility/AggregateInvoker.php          |   0
 .../Magento/Framework/App/Utility/Classes.php |   0
 .../Magento/Framework/App/Utility/Files.php   |   0
 .../App/Utility/RegexIteratorFactory.php      |   0
 lib/internal/Magento/Framework/App/View.php   |   0
 .../Asset/MaterializationStrategy/Copy.php    |   0
 .../Asset/MaterializationStrategy/Factory.php |   0
 .../StrategyInterface.php                     |   0
 .../Asset/MaterializationStrategy/Symlink.php |   0
 .../Framework/App/View/Asset/Publisher.php    |   0
 .../Framework/App/View/Deployment/Version.php |   0
 .../View/Deployment/Version/Storage/File.php  |   0
 .../Deployment/Version/StorageInterface.php   |   0
 .../Magento/Framework/App/ViewInterface.php   |   0
 .../Magento/Framework/App/etc/resources.xsd   |   0
 .../Magento/Framework/App/etc/routes.xsd      |   0
 .../Framework/App/etc/routes_merged.xsd       |   0
 .../Magento/Framework/AppInterface.php        |   0
 lib/internal/Magento/Framework/Archive.php    |   0
 .../Framework/Archive/AbstractArchive.php     |   0
 .../Framework/Archive/ArchiveInterface.php    |   0
 lib/internal/Magento/Framework/Archive/Bz.php |   0
 lib/internal/Magento/Framework/Archive/Gz.php |   0
 .../Magento/Framework/Archive/Helper/File.php |   0
 .../Framework/Archive/Helper/File/Bz.php      |   0
 .../Framework/Archive/Helper/File/Gz.php      |   0
 .../Magento/Framework/Archive/README.md       |   0
 .../Magento/Framework/Archive/Tar.php         |   0
 .../Framework/Archive/Test/Unit/ZipTest.php   |   0
 .../Magento/Framework/Archive/Zip.php         |   0
 .../Magento/Framework/Authorization.php       |   0
 .../Framework/Authorization/Factory.php       |   0
 .../Framework/Authorization/Policy/Acl.php    |   0
 .../Authorization/Policy/DefaultPolicy.php    |   0
 .../Authorization/PolicyInterface.php         |   0
 .../RoleLocator/DefaultRoleLocator.php        |   0
 .../Authorization/RoleLocatorInterface.php    |   0
 .../Test/Unit/Policy/AclTest.php              |   0
 .../Test/Unit/Policy/DefaultTest.php          |   0
 .../Framework/AuthorizationInterface.php      |   0
 .../Autoload/AutoloaderInterface.php          |   0
 .../Framework/Autoload/AutoloaderRegistry.php |   0
 .../Framework/Autoload/ClassLoaderWrapper.php |   0
 .../Magento/Framework/Autoload/ClassMap.php   |   0
 .../Magento/Framework/Autoload/Populator.php  |   0
 .../Magento/Framework/Autoload/README.md      |   0
 .../Test/Unit/ClassLoaderWrapperTest.php      |   0
 .../Autoload/Test/Unit/PopulatorTest.php      |   0
 .../Framework/Backup/AbstractBackup.php       |   0
 .../Magento/Framework/Backup/Archive/Tar.php  |   0
 .../Framework/Backup/BackupException.php      |   0
 .../Framework/Backup/BackupInterface.php      |   0
 lib/internal/Magento/Framework/Backup/Db.php  |   0
 .../Framework/Backup/Db/BackupDbInterface.php |   0
 .../Framework/Backup/Db/BackupFactory.php     |   0
 .../Framework/Backup/Db/BackupInterface.php   |   0
 .../Backup/Exception/CantLoadSnapshot.php     |   0
 .../Backup/Exception/FtpConnectionFailed.php  |   0
 .../Backup/Exception/FtpValidationFailed.php  |   0
 .../Backup/Exception/NotEnoughFreeSpace.php   |   0
 .../Backup/Exception/NotEnoughPermissions.php |   0
 .../Magento/Framework/Backup/Factory.php      |   0
 .../Magento/Framework/Backup/Filesystem.php   |   0
 .../Framework/Backup/Filesystem/Helper.php    |   0
 .../Backup/Filesystem/Iterator/File.php       |   0
 .../Backup/Filesystem/Iterator/Filter.php     |   0
 .../Filesystem/Rollback/AbstractRollback.php  |   0
 .../Backup/Filesystem/Rollback/Fs.php         |   0
 .../Backup/Filesystem/Rollback/Ftp.php        |   0
 .../Magento/Framework/Backup/Media.php        |   0
 .../Magento/Framework/Backup/Nomedia.php      |   0
 .../Magento/Framework/Backup/README.md        |   0
 .../Magento/Framework/Backup/Snapshot.php     |   0
 .../Backup/Test/Unit/FactoryTest.php          |   0
 .../Backup/Test/Unit/Filesystem/Helper.php    |   0
 .../Test/Unit/Filesystem/Rollback/Fs.php      |   0
 .../Test/Unit/Filesystem/Rollback/FsTest.php  |   0
 .../Test/Unit/Filesystem/Rollback/Ftp.php     |   0
 .../Filesystem/Rollback/_files/ioMock.php     |   0
 .../Backup/Test/Unit/FilesystemTest.php       |   0
 .../Framework/Backup/Test/Unit/MediaTest.php  |   0
 .../Backup/Test/Unit/NomediaTest.php          |   0
 .../Backup/Test/Unit/SnapshotTest.php         |   0
 .../Backup/Test/Unit/_files/app_dirs.php      |   0
 .../Test/Unit/_files/app_dirs_rollback.php    |   0
 .../Framework/Backup/Test/Unit/_files/io.php  |   0
 .../Framework/Cache/Backend/Database.php      |   0
 .../Backend/Decorator/AbstractDecorator.php   |   0
 .../Cache/Backend/Decorator/Compression.php   |   0
 .../Framework/Cache/Backend/Eaccelerator.php  |   0
 .../Framework/Cache/Backend/Memcached.php     |   0
 .../Framework/Cache/Backend/MongoDb.php       |   0
 .../Magento/Framework/Cache/Config.php        |   0
 .../Framework/Cache/Config/Converter.php      |   0
 .../Magento/Framework/Cache/Config/Data.php   |   0
 .../Magento/Framework/Cache/Config/Reader.php |   0
 .../Framework/Cache/Config/SchemaLocator.php  |   0
 .../Framework/Cache/ConfigInterface.php       |   0
 lib/internal/Magento/Framework/Cache/Core.php |   0
 .../Framework/Cache/Frontend/Adapter/Zend.php |   0
 .../Cache/Frontend/Decorator/Bare.php         |   0
 .../Cache/Frontend/Decorator/Logger.php       |   0
 .../Cache/Frontend/Decorator/Profiler.php     |   0
 .../Cache/Frontend/Decorator/TagScope.php     |   0
 .../Framework/Cache/FrontendInterface.php     |   0
 .../Framework/Cache/InvalidateLogger.php      |   0
 .../Cache/Test/Unit/Backend/DatabaseTest.php  |   0
 .../Backend/Decorator/CompressionTest.php     |   0
 .../Decorator/DecoratorAbstractTest.php       |   0
 .../Cache/Test/Unit/Backend/MongoDbTest.php   |   0
 .../Test/Unit/Backend/_files/MongoBinData.txt |   0
 .../Cache/Test/Unit/Config/ConverterTest.php  |   0
 .../Test/Unit/Config/SchemaLocatorTest.php    |   0
 .../Test/Unit/Config/_files/cache_config.php  |   0
 .../Test/Unit/Config/_files/cache_config.xml  |   0
 .../Framework/Cache/Test/Unit/ConfigTest.php  |   0
 .../Framework/Cache/Test/Unit/CoreTest.php    |   0
 .../Cache/Test/Unit/CoreTestMock.php          |   0
 .../Test/Unit/Frontend/Adapter/ZendTest.php   |   0
 .../Test/Unit/Frontend/Decorator/BareTest.php |   0
 .../Unit/Frontend/Decorator/ProfilerTest.php  |   0
 .../Unit/Frontend/Decorator/TagScopeTest.php  |   0
 .../Cache/Test/Unit/InvalidateLoggerTest.php  |   0
 .../Magento/Framework/Cache/etc/cache.xsd     |   0
 .../Magento/Framework/Code/GeneratedFiles.php |   0
 .../Magento/Framework/Code/Generator.php      |   0
 .../Framework/Code/Generator/Autoloader.php   |   0
 .../Code/Generator/ClassGenerator.php         |   0
 .../Code/Generator/CodeGeneratorInterface.php |   0
 .../Code/Generator/DefinedClasses.php         |   0
 .../Code/Generator/EntityAbstract.php         |   0
 .../Code/Generator/InterfaceGenerator.php     |   0
 .../Generator/InterfaceMethodGenerator.php    |   0
 .../Magento/Framework/Code/Generator/Io.php   |   0
 .../Code/Minifier/Adapter/Css/CSSmin.php      |   0
 .../Code/Minifier/Adapter/Js/JShrink.php      |   0
 .../Code/Minifier/AdapterInterface.php        |   0
 .../Magento/Framework/Code/NameBuilder.php    |   0
 lib/internal/Magento/Framework/Code/README.md |   0
 .../Framework/Code/Reader/ArgumentsReader.php |   0
 .../Framework/Code/Reader/ClassReader.php     |   0
 .../Code/Reader/ClassReaderInterface.php      |   0
 .../Code/Reader/NamespaceResolver.php         |   0
 .../Code/Reader/ScalarTypesProvider.php       |   0
 .../Code/Reader/SourceArgumentsReader.php     |   0
 .../Code/Test/Unit/GeneratedFilesTest.php     |   0
 .../Unit/Generator/ClassGeneratorTest.php     |   0
 .../Unit/Generator/DefinedClassesTest.php     |   0
 .../Unit/Generator/EntityAbstractTest.php     |   0
 .../Unit/Generator/InterfaceGeneratorTest.php |   0
 .../Code/Test/Unit/Generator/IoTest.php       |   0
 .../Unit/Generator/TestAsset/ParentClass.php  |   0
 .../Unit/Generator/TestAsset/SourceClass.php  |   0
 .../TestAsset/TestGenerationClass.php         |   0
 .../Code/Test/Unit/GeneratorTest.php          |   0
 .../Unit/Minifier/Adapter/Css/CssMinTest.php  |   0
 .../Unit/Minifier/Adapter/Js/JShrinkTest.php  |   0
 .../Test/Unit/Minifier/_files/js/original.js  |   0
 .../Validator/NotProtectedExtensionTest.php   |   0
 .../Code/Test/Unit/NameBuilderTest.php        |   0
 .../Test/Unit/Reader/ArgumentsReaderTest.php  |   0
 .../_files/ClassesForArgumentsReader.php      |   0
 .../Unit/Validator/ArgumentSequenceTest.php   |   0
 .../ConstructorArgumentTypesTest.php          |   0
 .../Validator/ConstructorIntegrityTest.php    |   0
 .../Unit/Validator/TypeDuplicationTest.php    |   0
 .../_files/ClassesForArgumentSequence.php     |   0
 .../_files/ClassesForConstructorIntegrity.php |   0
 .../_files/ClassesForTypeDuplication.php      |   0
 .../Code/Test/Unit/ValidatorTest.php          |   0
 .../SomeModule/Model/ElementFactory.php       |   0
 .../Magento/SomeModule/Model/Five/Test.php    |   0
 .../Magento/SomeModule/Model/Four/Test.php    |   0
 .../Magento/SomeModule/Model/One/Test.php     |   0
 .../code/Magento/SomeModule/Model/Proxy.php   |   0
 .../SomeModule/Model/SevenInterface.php       |   0
 .../Magento/SomeModule/Model/Six/Test.php     |   0
 .../Magento/SomeModule/Model/Three/Test.php   |   0
 .../Magento/SomeModule/Model/Two/Test.php     |   0
 .../Magento/Framework/Code/Validator.php      |   0
 .../Code/Validator/ArgumentSequence.php       |   0
 .../Validator/ConstructorArgumentTypes.php    |   0
 .../Code/Validator/ConstructorIntegrity.php   |   0
 .../Code/Validator/TypeDuplication.php        |   0
 .../Framework/Code/ValidatorInterface.php     |   0
 .../Framework/Communication/Config.php        |   0
 .../Communication/Config/CompositeReader.php  |   0
 .../Communication/Config/ConfigParser.php     |   0
 .../Framework/Communication/Config/Data.php   |   0
 .../Communication/Config/Reader/EnvReader.php |   0
 .../Config/Reader/EnvReader/Validator.php     |   0
 .../Communication/Config/Reader/XmlReader.php |   0
 .../Config/Reader/XmlReader/Converter.php     |   0
 .../Config/Reader/XmlReader/SchemaLocator.php |   0
 .../Config/Reader/XmlReader/Validator.php     |   0
 .../Config/ReflectionGenerator.php            |   0
 .../Communication/Config/Validator.php        |   0
 .../Communication/ConfigInterface.php         |   0
 .../Magento/Framework/Communication/README.md |   0
 .../Communication/etc/communication.xsd       |   0
 .../Framework/Component/ComponentFile.php     |   0
 .../Component/ComponentRegistrar.php          |   0
 .../Component/ComponentRegistrarInterface.php |   0
 .../Magento/Framework/Component/DirSearch.php |   0
 .../Magento/Framework/Component/README.md     |   0
 .../Component/Test/Unit/ComponentFileTest.php |   0
 .../Test/Unit/ComponentRegistrarTest.php      |   0
 .../Component/Test/Unit/DirSearchTest.php     |   0
 .../Framework/Composer/BufferIoFactory.php    |   0
 .../Framework/Composer/ComposerFactory.php    |   0
 .../Framework/Composer/ComposerJsonFinder.php |   0
 .../Framework/Composer/DependencyChecker.php  |   0
 .../MagentoComposerApplicationFactory.php     |   0
 .../Magento/Framework/Composer/README.md      |   0
 .../Magento/Framework/Composer/Remove.php     |   0
 .../Test/Unit/ComposerFactoryTest.php         |   0
 .../Test/Unit/ComposerInformationTest.php     |   0
 .../Test/Unit/DependencyCheckerTest.php       |   0
 .../Composer/Test/Unit/_files/composer.json   |   0
 .../Magento/Framework/Config/AbstractXml.php  |   0
 .../Framework/Config/CacheInterface.php       |   0
 .../Framework/Config/Composer/Package.php     |   0
 .../Config/ConfigOptionsListConstants.php     |   0
 .../Magento/Framework/Config/Converter.php    |   0
 .../Framework/Config/Converter/Dom.php        |   0
 .../Framework/Config/Converter/Dom/Flat.php   |   0
 .../Framework/Config/ConverterInterface.php   |   0
 .../Magento/Framework/Config/Data.php         |   0
 .../Framework/Config/Data/ConfigData.php      |   0
 .../Config/Data/ConfigDataFactory.php         |   0
 .../Magento/Framework/Config/Data/Scoped.php  |   0
 .../Framework/Config/DataInterface.php        |   0
 .../Config/DesignResolverInterface.php        |   0
 lib/internal/Magento/Framework/Config/Dom.php |   0
 .../Framework/Config/Dom/ArrayNodeConfig.php  |   0
 .../Config/Dom/NodeMergingConfig.php          |   0
 .../Framework/Config/Dom/NodePathMatcher.php  |   0
 .../Framework/Config/Dom/UrnResolver.php      |   0
 .../Config/Dom/ValidationException.php        |   0
 .../Config/Dom/ValidationSchemaException.php  |   0
 .../Magento/Framework/Config/DomFactory.php   |   0
 .../Framework/Config/File/ConfigFilePool.php  |   0
 .../Magento/Framework/Config/FileIterator.php |   0
 .../Framework/Config/FileIteratorFactory.php  |   0
 .../Magento/Framework/Config/FileResolver.php |   0
 .../Config/FileResolverInterface.php          |   0
 .../Framework/Config/GenericSchemaLocator.php |   0
 .../Magento/Framework/Config/Reader.php       |   0
 .../Framework/Config/Reader/Filesystem.php    |   0
 .../Framework/Config/ReaderInterface.php      |   0
 .../Framework/Config/SchemaLocator.php        |   0
 .../Config/SchemaLocatorInterface.php         |   0
 .../Magento/Framework/Config/Scope.php        |   0
 .../Framework/Config/ScopeInterface.php       |   0
 .../Framework/Config/ScopeListInterface.php   |   0
 .../Config/Test/Unit/Composer/PackageTest.php |   0
 .../Test/Unit/Converter/Dom/FlatTest.php      |   0
 .../Config/Test/Unit/Converter/DomTest.php    |   0
 .../Config/Test/Unit/Data/ConfigDataTest.php  |   0
 .../Config/Test/Unit/Data/ScopedTest.php      |   0
 .../Framework/Config/Test/Unit/DataTest.php   |   0
 .../Test/Unit/Dom/ArrayNodeConfigTest.php     |   0
 .../Test/Unit/Dom/NodeMergingConfigTest.php   |   0
 .../Test/Unit/Dom/NodePathMatcherTest.php     |   0
 .../Config/Test/Unit/Dom/UrnResolverTest.php  |   0
 .../Framework/Config/Test/Unit/DomTest.php    |   0
 .../Test/Unit/File/ConfigFilePoolTest.php     |   0
 .../Config/Test/Unit/FileIteratorTest.php     |   0
 .../Test/Unit/GenericSchemaLocatorTest.php    |   0
 .../Test/Unit/Reader/FilesystemTest.php       |   0
 .../Framework/Config/Test/Unit/ReaderTest.php |   0
 .../Framework/Config/Test/Unit/ScopeTest.php  |   0
 .../Framework/Config/Test/Unit/ThemeTest.php  |   0
 .../Config/Test/Unit/ValidationStateTest.php  |   0
 .../Config/Test/Unit/ViewFactoryTest.php      |   0
 .../Framework/Config/Test/Unit/XsdTest.php    |   0
 .../_files/area/default_default/theme.xml     |   0
 .../Unit/_files/area/default_test/theme.xml   |   0
 .../Unit/_files/area/default_test2/theme.xml  |   0
 .../Unit/_files/area/test_default/theme.xml   |   0
 .../theme.xml                                 |   0
 .../Unit/_files/converter/dom/attributes.php  |   0
 .../Unit/_files/converter/dom/attributes.xml  |   0
 .../Test/Unit/_files/converter/dom/cdata.php  |   0
 .../Test/Unit/_files/converter/dom/cdata.xml  |   0
 .../Unit/_files/converter/dom/flat/result.php |   0
 .../Unit/_files/converter/dom/flat/source.xml |   0
 .../converter/dom/flat/source_notuniq.xml     |   0
 .../converter/dom/flat/source_wrongarray.xml  |   0
 .../Test/Unit/_files/dom/ambiguous_merged.xml |   0
 .../Unit/_files/dom/ambiguous_new_one.xml     |   0
 .../Unit/_files/dom/ambiguous_new_two.xml     |   0
 .../Test/Unit/_files/dom/ambiguous_one.xml    |   0
 .../Test/Unit/_files/dom/ambiguous_two.xml    |   0
 .../Test/Unit/_files/dom/attributes.xml       |   0
 .../Unit/_files/dom/attributes_merged.xml     |   0
 .../Test/Unit/_files/dom/attributes_new.xml   |   0
 .../Test/Unit/_files/dom/converter/cdata.php  |   0
 .../Test/Unit/_files/dom/converter/cdata.xml  |   0
 .../_files/dom/converter/no_attributes.php    |   0
 .../_files/dom/converter/no_attributes.xml    |   0
 .../_files/dom/converter/with_attributes.php  |   0
 .../_files/dom/converter/with_attributes.xml  |   0
 .../Config/Test/Unit/_files/dom/ids.xml       |   0
 .../Test/Unit/_files/dom/ids_merged.xml       |   0
 .../Config/Test/Unit/_files/dom/ids_new.xml   |   0
 .../Test/Unit/_files/dom/namespaced.xml       |   0
 .../Unit/_files/dom/namespaced_merged.xml     |   0
 .../Test/Unit/_files/dom/namespaced_new.xml   |   0
 .../Config/Test/Unit/_files/dom/no_ids.xml    |   0
 .../Test/Unit/_files/dom/no_ids_merged.xml    |   0
 .../Test/Unit/_files/dom/no_ids_new.xml       |   0
 .../Test/Unit/_files/dom/override_node.xml    |   0
 .../Unit/_files/dom/override_node_merged.xml  |   0
 .../Unit/_files/dom/override_node_new.xml     |   0
 .../Config/Test/Unit/_files/dom/recursive.xml |   0
 .../Test/Unit/_files/dom/recursive_deep.xml   |   0
 .../Unit/_files/dom/recursive_deep_merged.xml |   0
 .../Unit/_files/dom/recursive_deep_new.xml    |   0
 .../Test/Unit/_files/dom/recursive_merged.xml |   0
 .../Test/Unit/_files/dom/recursive_new.xml    |   0
 .../Config/Test/Unit/_files/dom/text_node.xml |   0
 .../Test/Unit/_files/dom/text_node_merged.xml |   0
 .../Test/Unit/_files/dom/text_node_new.xml    |   0
 .../Config/Test/Unit/_files/dom/types.xml     |   0
 .../Test/Unit/_files/dom/types_merged.xml     |   0
 .../Config/Test/Unit/_files/dom/types_new.xml |   0
 .../Config/Test/Unit/_files/reader/config.xml |   0
 .../Config/Test/Unit/_files/reader/schema.xsd |   0
 .../Config/Test/Unit/_files/sample.xsd        |   0
 .../Config/Test/Unit/_files/theme_invalid.xml |   0
 .../Config/Test/Unit/_files/view_invalid.xml  |   0
 .../Config/Test/Unit/_files/view_one.xml      |   0
 .../Config/Test/Unit/_files/view_two.xml      |   0
 .../Magento/Framework/Config/Theme.php        |   0
 .../Config/ValidationStateInterface.php       |   0
 .../Magento/Framework/Config/View.php         |   0
 .../Magento/Framework/Config/ViewFactory.php  |   0
 .../Magento/Framework/Config/etc/theme.xsd    |   0
 .../Magento/Framework/Config/etc/view.xsd     |   0
 .../Magento/Framework/Console/Cli.php         |   0
 .../Magento/Framework/Console/CommandList.php |   0
 .../Console/CommandListInterface.php          |   0
 .../Framework/Console/CommandLocator.php      |   0
 .../GenerationDirectoryAccessException.php    |   0
 .../Console/GenerationDirectoryAccess.php     |   0
 .../Console/QuestionPerformer/YesNo.php       |   0
 .../Magento/Framework/Console/README.md       |   0
 ...GenerationDirectoryAccessExceptionTest.php |   0
 .../Test/Unit/QuestionPerformer/YesNoTest.php |   0
 .../Framework/Controller/AbstractResult.php   |   0
 .../Framework/Controller/Index/Index.php      |   0
 .../Framework/Controller/Noroute/Index.php    |   0
 .../Magento/Framework/Controller/README.md    |   0
 .../Framework/Controller/Result/Forward.php   |   0
 .../Framework/Controller/Result/Json.php      |   0
 .../Controller/Result/JsonFactory.php         |   0
 .../Framework/Controller/Result/Raw.php       |   0
 .../Framework/Controller/Result/Redirect.php  |   0
 .../Controller/Result/RedirectFactory.php     |   0
 .../Framework/Controller/ResultFactory.php    |   0
 .../Framework/Controller/ResultInterface.php  |   0
 .../Controller/Router/Route/Factory.php       |   0
 .../Test/Unit/Controller/Index/IndexTest.php  |   0
 .../Test/Unit/Controller/NorouteTest.php      |   0
 .../Test/Unit/Result/ForwardTest.php          |   0
 .../Controller/Test/Unit/Result/JsonTest.php  |   0
 .../Controller/Test/Unit/Result/RawTest.php   |   0
 .../Test/Unit/Result/RedirectFactoryTest.php  |   0
 .../Test/Unit/Result/RedirectTest.php         |   0
 .../Test/Unit/Router/Route/FactoryTest.php    |   0
 .../Framework/Convert/ConvertArray.php        |   0
 .../Magento/Framework/Convert/DataObject.php  |   0
 .../Magento/Framework/Convert/DataSize.php    |   0
 .../Magento/Framework/Convert/Excel.php       |   0
 .../Framework/Convert/ExcelFactory.php        |   0
 .../Magento/Framework/Convert/README.md       |   0
 .../Convert/Test/Unit/ConvertArrayTest.php    |   0
 .../Convert/Test/Unit/DataSizeTest.php        |   0
 .../Convert/Test/Unit/ExcelFactoryTest.php    |   0
 .../Framework/Convert/Test/Unit/ExcelTest.php |   0
 .../Convert/Test/Unit/ObjectTest.php          |   0
 .../Framework/Convert/Test/Unit/XmlTest.php   |   0
 .../Convert/Test/Unit/_files/sample.xml       |   0
 .../Magento/Framework/Convert/Xml.php         |   0
 .../Framework/Crontab/CrontabManager.php      |   0
 .../Crontab/CrontabManagerInterface.php       |   0
 .../Magento/Framework/Crontab/README.md       |   0
 .../Framework/Crontab/TasksProvider.php       |   0
 .../Crontab/TasksProviderInterface.php        |   0
 .../Crontab/Test/Unit/CrontabManagerTest.php  |   0
 .../Crontab/Test/Unit/TasksProviderTest.php   |   0
 .../Css/PreProcessor/Adapter/CssInliner.php   |   0
 .../PreProcessor/Adapter/Less/Processor.php   |   0
 .../Framework/Css/PreProcessor/Config.php     |   0
 .../Css/PreProcessor/ErrorHandler.php         |   0
 .../PreProcessor/ErrorHandlerInterface.php    |   0
 .../File/Collector/Aggregated.php             |   0
 .../PreProcessor/File/Collector/Library.php   |   0
 .../PreProcessor/File/FileList/Collator.php   |   0
 .../Css/PreProcessor/File/Temporary.php       |   0
 .../FileGenerator/RelatedGenerator.php        |   0
 .../Css/PreProcessor/Instruction/Import.php   |   0
 .../Instruction/MagentoImport.php             |   0
 lib/internal/Magento/Framework/Css/README.md  |   0
 .../Adapter/Less/ProcessorTest.php            |   0
 .../PreProcessor/Adapter/Less/_file/test.css  |   0
 .../PreProcessor/Adapter/Less/_file/test.less |   0
 .../File/Collector/AggregatedTest.php         |   0
 .../File/Collector/LibraryTest.php            |   0
 .../File/FileList/CollatorTest.php            |   0
 .../PreProcessor/Instruction/ImportTest.php   |   0
 .../Instruction/MagentoImportTest.php         |   0
 .../Unit/PreProcessor/_files/invalid.less     |   0
 .../Test/Unit/PreProcessor/_files/valid.less  |   0
 lib/internal/Magento/Framework/Currency.php   |   0
 .../Magento/Framework/CurrencyFactory.php     |   0
 .../Magento/Framework/CurrencyInterface.php   |   0
 .../Magento/Framework/DB/AbstractMapper.php   |   0
 .../Framework/DB/Adapter/AdapterInterface.php |   0
 .../DB/Adapter/ConnectionException.php        |   0
 .../Magento/Framework/DB/Adapter/DdlCache.php |   0
 .../DB/Adapter/DeadlockException.php          |   0
 .../DB/Adapter/DuplicateException.php         |   0
 .../DB/Adapter/LockWaitException.php          |   0
 .../Framework/DB/Adapter/Pdo/Mysql.php        |   0
 .../Framework/DB/Adapter/Pdo/MysqlFactory.php |   0
 .../DB/AggregatedFieldDataConverter.php       |   0
 .../DataConverter/DataConversionException.php |   0
 .../DataConverter/DataConverterInterface.php  |   0
 .../DB/DataConverter/SerializedToJson.php     |   0
 .../Magento/Framework/DB/Ddl/Sequence.php     |   0
 .../Magento/Framework/DB/Ddl/Table.php        |   0
 .../Magento/Framework/DB/Ddl/Trigger.php      |   0
 .../Framework/DB/Ddl/TriggerFactory.php       |   0
 .../Framework/DB/ExpressionConverter.php      |   0
 .../DB/FieldDataConversionException.php       |   0
 .../Framework/DB/FieldDataConverter.php       |   0
 .../DB/FieldDataConverterFactory.php          |   0
 .../Magento/Framework/DB/FieldToConvert.php   |   0
 .../Magento/Framework/DB/GenericMapper.php    |   0
 lib/internal/Magento/Framework/DB/Helper.php  |   0
 .../Framework/DB/Helper/AbstractHelper.php    |   0
 .../Framework/DB/Helper/Mysql/Fulltext.php    |   0
 .../Magento/Framework/DB/Logger/File.php      |   0
 .../Framework/DB/Logger/LoggerAbstract.php    |   0
 .../Framework/DB/Logger/LoggerProxy.php       |   0
 .../Magento/Framework/DB/Logger/Quiet.php     |   0
 .../Magento/Framework/DB/LoggerInterface.php  |   0
 .../Magento/Framework/DB/MapperFactory.php    |   0
 .../Magento/Framework/DB/MapperInterface.php  |   0
 .../Magento/Framework/DB/Platform/Quote.php   |   0
 .../Magento/Framework/DB/Profiler.php         |   0
 lib/internal/Magento/Framework/DB/Query.php   |   0
 .../Framework/DB/Query/BatchIterator.php      |   0
 .../DB/Query/BatchIteratorFactory.php         |   0
 .../DB/Query/BatchIteratorInterface.php       |   0
 .../Framework/DB/Query/BatchRangeIterator.php |   0
 .../Magento/Framework/DB/Query/Generator.php  |   0
 .../Magento/Framework/DB/QueryBuilder.php     |   0
 .../Magento/Framework/DB/QueryFactory.php     |   0
 .../Magento/Framework/DB/QueryInterface.php   |   0
 lib/internal/Magento/Framework/DB/Select.php  |   0
 .../Framework/DB/Select/ColumnsRenderer.php   |   0
 .../DB/Select/CompositeQueryModifier.php      |   0
 .../Framework/DB/Select/DistinctRenderer.php  |   0
 .../Framework/DB/Select/ForUpdateRenderer.php |   0
 .../Framework/DB/Select/FromRenderer.php      |   0
 .../Framework/DB/Select/GroupRenderer.php     |   0
 .../Framework/DB/Select/HavingRenderer.php    |   0
 .../Framework/DB/Select/InQueryModifier.php   |   0
 .../Framework/DB/Select/LikeQueryModifier.php |   0
 .../Framework/DB/Select/LimitRenderer.php     |   0
 .../Framework/DB/Select/OrderRenderer.php     |   0
 .../DB/Select/QueryModifierFactory.php        |   0
 .../DB/Select/QueryModifierInterface.php      |   0
 .../Framework/DB/Select/RendererInterface.php |   0
 .../Framework/DB/Select/RendererProxy.php     |   0
 .../Framework/DB/Select/SelectRenderer.php    |   0
 .../Framework/DB/Select/UnionRenderer.php     |   0
 .../Framework/DB/Select/WhereRenderer.php     |   0
 .../Magento/Framework/DB/SelectFactory.php    |   0
 .../DB/Sequence/SequenceInterface.php         |   0
 .../DB/Sql/ColumnValueExpression.php          |   0
 .../Framework/DB/Sql/ConcatExpression.php     |   0
 .../Magento/Framework/DB/Sql/Expression.php   |   0
 .../Framework/DB/Sql/ExpressionInterface.php  |   0
 .../Framework/DB/Sql/LimitExpression.php      |   0
 .../Framework/DB/Sql/LookupExpression.php     |   0
 .../Framework/DB/Sql/UnionExpression.php      |   0
 .../Framework/DB/Statement/Parameter.php      |   0
 .../Framework/DB/Statement/Pdo/Mysql.php      |   0
 .../Magento/Framework/DB/SubSelect.php        |   0
 .../Framework/DB/TemporaryTableService.php    |   0
 .../DB/Test/Unit/AbstractMapperTest.php       |   0
 .../Unit/Adapter/Pdo/MysqlFactoryTest.php     |   0
 .../DB/Test/Unit/Adapter/Pdo/MysqlTest.php    |   0
 .../Test/Unit/DB/Logger/LoggerProxyTest.php   |   0
 .../DataConverter/SerializedToJsonTest.php    |   0
 .../DB/Test/Unit/Ddl/SequenceTest.php         |   0
 .../DB/Test/Unit/Ddl/TriggerTest.php          |   0
 .../DB/Test/Unit/ExpressionConverterTest.php  |   0
 .../Unit/FieldDataConverterFactoryTest.php    |   0
 .../DB/Test/Unit/FieldDataConverterTest.php   |   0
 .../DB/Test/Unit/GenericMapperTest.php        |   0
 .../Test/Unit/Helper/AbstractHelperTest.php   |   0
 .../Test/Unit/Helper/Mysql/FulltextTest.php   |   0
 .../DB/Test/Unit/Logger/FileTest.php          |   0
 .../DB/Test/Unit/Platform/QuoteTest.php       |   0
 .../Framework/DB/Test/Unit/ProfilerTest.php   |   0
 .../Framework/DB/Test/Unit/QueryTest.php      |   0
 .../Test/Unit/Select/ColumnsRendererTest.php  |   0
 .../Select/CompositeQueryModifierTest.php     |   0
 .../Test/Unit/Select/DistinctRendererTest.php |   0
 .../Unit/Select/ForUpdateRendererTest.php     |   0
 .../DB/Test/Unit/Select/FromRendererTest.php  |   0
 .../DB/Test/Unit/Select/GroupRendererTest.php |   0
 .../Test/Unit/Select/HavingRendererTest.php   |   0
 .../Unit/Select/LikeQueryModifierTest.php     |   0
 .../DB/Test/Unit/Select/LimitRendererTest.php |   0
 .../DB/Test/Unit/Select/OrderRendererTest.php |   0
 .../Unit/Select/QueryModifierFactoryTest.php  |   0
 .../DB/Test/Unit/Select/RendererProxyTest.php |   0
 .../Test/Unit/Select/SelectRendererTest.php   |   0
 .../DB/Test/Unit/Select/UnionRendererTest.php |   0
 .../DB/Test/Unit/Select/WhereRendererTest.php |   0
 .../DB/Test/Unit/SelectFactoryTest.php        |   0
 .../Framework/DB/Test/Unit/SelectTest.php     |   0
 .../DB/Test/Unit/Sql/LimitExpressionTest.php  |   0
 .../DB/Test/Unit/Sql/UnionExpressionTest.php  |   0
 .../Test/Unit/TemporaryTableServiceTest.php   |   0
 .../Framework/DB/Test/Unit/Tree/NodeTest.php  |   0
 .../Magento/Framework/DB/Transaction.php      |   0
 lib/internal/Magento/Framework/DB/Tree.php    |   0
 .../Magento/Framework/DB/Tree/Node.php        |   0
 .../Magento/Framework/DB/Tree/NodeSet.php     |   0
 .../Framework/Data/AbstractCriteria.php       |   0
 .../Framework/Data/AbstractDataObject.php     |   0
 .../Data/AbstractSearchCriteriaBuilder.php    |   0
 .../Framework/Data/AbstractSearchResult.php   |   0
 .../Data/Argument/Interpreter/ArrayType.php   |   0
 .../Argument/Interpreter/BaseStringUtils.php  |   0
 .../Data/Argument/Interpreter/Boolean.php     |   0
 .../Data/Argument/Interpreter/Composite.php   |   0
 .../Data/Argument/Interpreter/Constant.php    |   0
 .../Data/Argument/Interpreter/DataObject.php  |   0
 .../Data/Argument/Interpreter/NullType.php    |   0
 .../Data/Argument/Interpreter/Number.php      |   0
 .../Data/Argument/Interpreter/StringUtils.php |   0
 .../Data/Argument/InterpreterInterface.php    |   0
 .../Magento/Framework/Data/Collection.php     |   0
 .../Framework/Data/Collection/AbstractDb.php  |   0
 .../Collection/Db/FetchStrategy/Cache.php     |   0
 .../Collection/Db/FetchStrategy/Query.php     |   0
 .../Collection/Db/FetchStrategyInterface.php  |   0
 .../Data/Collection/EntityFactory.php         |   0
 .../Collection/EntityFactoryInterface.php     |   0
 .../Framework/Data/Collection/Filesystem.php  |   0
 .../Data/Collection/ModelFactory.php          |   0
 .../Data/CollectionDataSourceInterface.php    |   0
 .../Framework/Data/CollectionModifier.php     |   0
 .../Data/CollectionModifierInterface.php      |   0
 .../Magento/Framework/Data/DataArray.php      |   0
 lib/internal/Magento/Framework/Data/Form.php  |   0
 .../Framework/Data/Form/AbstractForm.php      |   0
 .../Data/Form/Element/AbstractElement.php     |   0
 .../Framework/Data/Form/Element/Button.php    |   0
 .../Framework/Data/Form/Element/Checkbox.php  |   0
 .../Data/Form/Element/Checkboxes.php          |   0
 .../Data/Form/Element/Collection.php          |   0
 .../Data/Form/Element/CollectionFactory.php   |   0
 .../Framework/Data/Form/Element/Column.php    |   0
 .../Framework/Data/Form/Element/Date.php      |   0
 .../Data/Form/Element/Editablemultiselect.php |   0
 .../Framework/Data/Form/Element/Editor.php    |   0
 .../Framework/Data/Form/Element/Factory.php   |   0
 .../Framework/Data/Form/Element/Fieldset.php  |   0
 .../Framework/Data/Form/Element/File.php      |   0
 .../Framework/Data/Form/Element/Gallery.php   |   0
 .../Framework/Data/Form/Element/Hidden.php    |   0
 .../Framework/Data/Form/Element/Image.php     |   0
 .../Framework/Data/Form/Element/Imagefile.php |   0
 .../Framework/Data/Form/Element/Label.php     |   0
 .../Framework/Data/Form/Element/Link.php      |   0
 .../Framework/Data/Form/Element/Multiline.php |   0
 .../Data/Form/Element/Multiselect.php         |   0
 .../Framework/Data/Form/Element/Note.php      |   0
 .../Framework/Data/Form/Element/Obscure.php   |   0
 .../Framework/Data/Form/Element/Password.php  |   0
 .../Framework/Data/Form/Element/Radio.php     |   0
 .../Framework/Data/Form/Element/Radios.php    |   0
 .../Element/Renderer/RendererInterface.php    |   0
 .../Framework/Data/Form/Element/Reset.php     |   0
 .../Framework/Data/Form/Element/Select.php    |   0
 .../Framework/Data/Form/Element/Submit.php    |   0
 .../Framework/Data/Form/Element/Text.php      |   0
 .../Framework/Data/Form/Element/Textarea.php  |   0
 .../Framework/Data/Form/Element/Time.php      |   0
 .../Framework/Data/Form/ElementFactory.php    |   0
 .../Framework/Data/Form/Filter/Date.php       |   0
 .../Framework/Data/Form/Filter/Escapehtml.php |   0
 .../Data/Form/Filter/FilterInterface.php      |   0
 .../Framework/Data/Form/Filter/Striptags.php  |   0
 .../Framework/Data/Form/Filter/Trim.php       |   0
 .../Framework/Data/Form/FilterFactory.php     |   0
 .../Magento/Framework/Data/Form/FormKey.php   |   0
 .../Framework/Data/Form/FormKey/Validator.php |   0
 .../Magento/Framework/Data/FormFactory.php    |   0
 lib/internal/Magento/Framework/Data/Graph.php |   0
 .../Framework/Data/Helper/PostHelper.php      |   0
 .../Magento/Framework/Data/ObjectFactory.php  |   0
 .../Framework/Data/OptionSourceInterface.php  |   0
 lib/internal/Magento/Framework/Data/README.md |   0
 .../Magento/Framework/Data/Schema.php         |   0
 .../Framework/Data/SearchResultInterface.php  |   0
 .../Framework/Data/SearchResultIterator.php   |   0
 .../Data/SearchResultIteratorFactory.php      |   0
 .../Framework/Data/SearchResultProcessor.php  |   0
 .../Data/SearchResultProcessorFactory.php     |   0
 .../Data/SearchResultProcessorInterface.php   |   0
 .../Magento/Framework/Data/Structure.php      |   0
 .../Data/Test/Unit/AbstractCriteriaTest.php   |   0
 .../Data/Test/Unit/AbstractDataObjectTest.php |   0
 .../Test/Unit/AbstractSearchResultTest.php    |   0
 .../Argument/Interpreter/ArrayTypeTest.php    |   0
 .../Unit/Argument/Interpreter/BooleanTest.php |   0
 .../Argument/Interpreter/CompositeTest.php    |   0
 .../Argument/Interpreter/ConstantTest.php     |   0
 .../Argument/Interpreter/NullTypeTest.php     |   0
 .../Unit/Argument/Interpreter/NumberTest.php  |   0
 .../Data/Test/Unit/Argument/XsdTest.php       |   0
 .../Argument/_files/typesInvalidArray.php     |   0
 .../Unit/Argument/_files/types_schema.xsd     |   0
 .../Test/Unit/Argument/_files/types_valid.xml |   0
 .../Collection/Db/FetchStrategy/CacheTest.php |   0
 .../Collection/Db/FetchStrategy/QueryTest.php |   0
 .../Test/Unit/Collection/DbCollection.php     |   0
 .../Data/Test/Unit/Collection/DbTest.php      |   0
 .../Test/Unit/Collection/FilesystemTest.php   |   0
 .../Data/Test/Unit/CollectionTest.php         |   0
 .../Data/Test/Unit/Criteria/Sample.php        |   0
 .../Data/Test/Unit/Form/AbstractFormTest.php  |   0
 .../Unit/Form/Element/AbstractElementTest.php |   0
 .../Test/Unit/Form/Element/ButtonTest.php     |   0
 .../Test/Unit/Form/Element/CheckboxTest.php   |   0
 .../Form/Element/CollectionFactoryTest.php    |   0
 .../Test/Unit/Form/Element/ColumnTest.php     |   0
 .../Data/Test/Unit/Form/Element/DateTest.php  |   0
 .../Form/Element/EditablemultiselectTest.php  |   0
 .../Test/Unit/Form/Element/EditorTest.php     |   0
 .../Test/Unit/Form/Element/FactoryTest.php    |   0
 .../Data/Test/Unit/Form/Element/FileTest.php  |   0
 .../Test/Unit/Form/Element/HiddenTest.php     |   0
 .../Data/Test/Unit/Form/Element/ImageTest.php |   0
 .../Test/Unit/Form/Element/ImagefileTest.php  |   0
 .../Data/Test/Unit/Form/Element/LabelTest.php |   0
 .../Data/Test/Unit/Form/Element/LinkTest.php  |   0
 .../Test/Unit/Form/Element/MultilineTest.php  |   0
 .../Unit/Form/Element/MultiselectTest.php     |   0
 .../Data/Test/Unit/Form/Element/NoteTest.php  |   0
 .../Test/Unit/Form/Element/ObscureTest.php    |   0
 .../Test/Unit/Form/Element/PasswordTest.php   |   0
 .../Data/Test/Unit/Form/Element/RadioTest.php |   0
 .../Data/Test/Unit/Form/Element/ResetTest.php |   0
 .../Test/Unit/Form/Element/SubmitTest.php     |   0
 .../Data/Test/Unit/Form/Element/TextTest.php  |   0
 .../Test/Unit/Form/Element/TextareaTest.php   |   0
 .../Data/Test/Unit/Form/FilterFactoryTest.php |   0
 .../Test/Unit/Form/FormKey/ValidatorTest.php  |   0
 .../Data/Test/Unit/Form/FormKeyTest.php       |   0
 .../Data/Test/Unit/FormFactoryTest.php        |   0
 .../Framework/Data/Test/Unit/FormTest.php     |   0
 .../Framework/Data/Test/Unit/GraphTest.php    |   0
 .../Data/Test/Unit/Helper/PostHelperTest.php  |   0
 .../Test/Unit/SearchCriteriaBuilderTest.php   |   0
 .../Test/Unit/SearchResultProcessorTest.php   |   0
 .../Data/Test/Unit/StructureTest.php          |   0
 .../Data/Test/Unit/Stub/DataObject.php        |   0
 .../Test/Unit/Stub/SearchCriteriaBuilder.php  |   0
 .../Data/Test/Unit/Stub/SearchResult.php      |   0
 .../Test/Unit/Tree/Node/CollectionTest.php    |   0
 .../Framework/Data/Test/Unit/TreeTest.php     |   0
 lib/internal/Magento/Framework/Data/Tree.php  |   0
 .../Magento/Framework/Data/Tree/Db.php        |   0
 .../Magento/Framework/Data/Tree/Dbp.php       |   0
 .../Magento/Framework/Data/Tree/Node.php      |   0
 .../Framework/Data/Tree/Node/Collection.php   |   0
 .../Framework/Data/Tree/NodeFactory.php       |   0
 .../Magento/Framework/Data/TreeFactory.php    |   0
 .../Framework/Data/ValueSourceInterface.php   |   0
 .../Framework/Data/Wysiwyg/Normalizer.php     |   0
 .../Framework/Data/etc/argument/types.xsd     |   0
 lib/internal/Magento/Framework/DataObject.php |   0
 .../Magento/Framework/DataObject/Cache.php    |   0
 .../Magento/Framework/DataObject/Copy.php     |   0
 .../Framework/DataObject/Copy/Config.php      |   0
 .../DataObject/Copy/Config/Converter.php      |   0
 .../Framework/DataObject/Copy/Config/Data.php |   0
 .../DataObject/Copy/Config/Data/Proxy.php     |   0
 .../DataObject/Copy/Config/Reader.php         |   0
 .../DataObject/Copy/Config/SchemaLocator.php  |   0
 .../Magento/Framework/DataObject/Factory.php  |   0
 .../DataObject/IdentityGeneratorInterface.php |   0
 .../DataObject/IdentityInterface.php          |   0
 .../Framework/DataObject/IdentityService.php  |   0
 .../DataObject/KeyValueObjectInterface.php    |   0
 .../Magento/Framework/DataObject/Mapper.php   |   0
 .../Magento/Framework/DataObject/README.md    |   0
 .../DataObject/Test/Unit/CacheTest.php        |   0
 .../Test/Unit/Copy/Config/ConverterTest.php   |   0
 .../Unit/Copy/Config/SchemaLocatorTest.php    |   0
 .../Test/Unit/Copy/Config/_files/fieldset.xml |   0
 .../Copy/Config/_files/fieldset_config.php    |   0
 .../DataObject/Test/Unit/Copy/ConfigTest.php  |   0
 .../DataObject/Test/Unit/CopyTest.php         |   0
 .../DataObject/Test/Unit/MapperTest.php       |   0
 .../Framework/DataObject/etc/fieldset.xsd     |   0
 .../DataObject/etc/fieldset_file.xsd          |   0
 lib/internal/Magento/Framework/Debug.php      |   0
 .../DomDocument/DomDocumentFactory.php        |   0
 .../Magento/Framework/Encryption/Crypt.php    |   0
 .../Framework/Encryption/Encryptor.php        |   0
 .../Encryption/EncryptorInterface.php         |   0
 .../Framework/Encryption/Helper/Security.php  |   0
 .../Magento/Framework/Encryption/README.md    |   0
 .../Test/Unit/Crypt/_files/_cipher_info.php   |   0
 .../Unit/Crypt/_files/_crypt_fixtures.php     |   0
 .../Encryption/Test/Unit/CryptTest.php        |   0
 .../Encryption/Test/Unit/EncryptorTest.php    |   0
 .../Test/Unit/Helper/SecurityTest.php         |   0
 .../Encryption/Test/Unit/UrlCoderTest.php     |   0
 .../Magento/Framework/Encryption/UrlCoder.php |   0
 .../EntityManager/AbstractModelHydrator.php   |   0
 .../EntityManager/CallbackHandler.php         |   0
 .../EntityManager/CompositeMapper.php         |   0
 .../Framework/EntityManager/Db/CreateRow.php  |   0
 .../Framework/EntityManager/Db/DeleteRow.php  |   0
 .../Framework/EntityManager/Db/ReadRow.php    |   0
 .../Framework/EntityManager/Db/UpdateRow.php  |   0
 .../Framework/EntityManager/EntityManager.php |   0
 .../EntityManager/EntityMetadata.php          |   0
 .../EntityManager/EntityMetadataInterface.php |   0
 .../Framework/EntityManager/EventManager.php  |   0
 .../Framework/EntityManager/Hydrator.php      |   0
 .../EntityManager/HydratorInterface.php       |   0
 .../Framework/EntityManager/HydratorPool.php  |   0
 .../Framework/EntityManager/Mapper.php        |   0
 .../EntityManager/MapperInterface.php         |   0
 .../Framework/EntityManager/MapperPool.php    |   0
 .../Framework/EntityManager/MetadataPool.php  |   0
 .../Observer/AfterEntityDelete.php            |   0
 .../Observer/AfterEntityLoad.php              |   0
 .../Observer/AfterEntitySave.php              |   0
 .../Observer/BeforeEntityDelete.php           |   0
 .../Observer/BeforeEntityLoad.php             |   0
 .../Observer/BeforeEntitySave.php             |   0
 .../Operation/AttributeInterface.php          |   0
 .../EntityManager/Operation/AttributePool.php |   0
 .../EntityManager/Operation/CheckIfExists.php |   0
 .../Operation/CheckIfExistsInterface.php      |   0
 .../EntityManager/Operation/Create.php        |   0
 .../Operation/Create/CreateAttributes.php     |   0
 .../Operation/Create/CreateExtensions.php     |   0
 .../Operation/Create/CreateMain.php           |   0
 .../Operation/CreateInterface.php             |   0
 .../EntityManager/Operation/Delete.php        |   0
 .../Operation/Delete/DeleteAttributes.php     |   0
 .../Operation/Delete/DeleteExtensions.php     |   0
 .../Operation/Delete/DeleteMain.php           |   0
 .../Operation/DeleteInterface.php             |   0
 .../Operation/ExtensionInterface.php          |   0
 .../EntityManager/Operation/ExtensionPool.php |   0
 .../EntityManager/Operation/Read.php          |   0
 .../Operation/Read/ReadAttributes.php         |   0
 .../Operation/Read/ReadExtensions.php         |   0
 .../EntityManager/Operation/Read/ReadMain.php |   0
 .../EntityManager/Operation/ReadInterface.php |   0
 .../EntityManager/Operation/Update.php        |   0
 .../Operation/Update/UpdateAttributes.php     |   0
 .../Operation/Update/UpdateExtensions.php     |   0
 .../Operation/Update/UpdateMain.php           |   0
 .../Operation/UpdateInterface.php             |   0
 .../EntityManager/Operation/ValidatorPool.php |   0
 .../EntityManager/OperationInterface.php      |   0
 .../Framework/EntityManager/OperationPool.php |   0
 .../Magento/Framework/EntityManager/README.md |   0
 .../EntityManager/Sequence/Sequence.php       |   0
 .../Sequence/SequenceApplier.php              |   0
 .../Sequence/SequenceFactory.php              |   0
 .../Sequence/SequenceManager.php              |   0
 .../Sequence/SequenceRegistry.php             |   0
 .../Test/Unit/Db/UpdateRowTest.php            |   0
 .../EntityManager/Test/Unit/MapperTest.php    |   0
 .../Test/Unit/Operation/CreateTest.php        |   0
 .../Test/Unit/Operation/UpdateTest.php        |   0
 .../Test/Unit/OperationPoolTest.php           |   0
 .../Unit/Sequence/SequenceApplierTest.php     |   0
 .../Test/Unit/TypeResolverTest.php            |   0
 .../Framework/EntityManager/TypeResolver.php  |   0
 lib/internal/Magento/Framework/Escaper.php    |   0
 lib/internal/Magento/Framework/Event.php      |   0
 .../Magento/Framework/Event/Collection.php    |   0
 .../Magento/Framework/Event/Config.php        |   0
 .../Framework/Event/Config/Converter.php      |   0
 .../Magento/Framework/Event/Config/Data.php   |   0
 .../Magento/Framework/Event/Config/Reader.php |   0
 .../Framework/Event/Config/SchemaLocator.php  |   0
 .../Framework/Event/ConfigInterface.php       |   0
 .../Event/Invoker/InvokerDefault.php          |   0
 .../Framework/Event/InvokerInterface.php      |   0
 .../Magento/Framework/Event/Manager.php       |   0
 .../Framework/Event/ManagerInterface.php      |   0
 .../Magento/Framework/Event/Observer.php      |   0
 .../Framework/Event/Observer/Collection.php   |   0
 .../Magento/Framework/Event/Observer/Cron.php |   0
 .../Framework/Event/Observer/Regex.php        |   0
 .../Framework/Event/ObserverFactory.php       |   0
 .../Framework/Event/ObserverInterface.php     |   0
 .../Magento/Framework/Event/README.md         |   0
 .../Event/Test/Unit/CollectionTest.php        |   0
 .../Event/Test/Unit/Config/ConverterTest.php  |   0
 .../Test/Unit/Config/SchemaLocatorTest.php    |   0
 .../Event/Test/Unit/Config/XsdTest.php        |   0
 .../Test/Unit/Config/_files/event_config.php  |   0
 .../Test/Unit/Config/_files/event_config.xml  |   0
 .../Config/_files/event_invalid_config.xml    |   0
 .../Config/_files/invalidEventsXmlArray.php   |   0
 .../Test/Unit/Config/_files/valid_events.xml  |   0
 .../Framework/Event/Test/Unit/ConfigTest.php  |   0
 .../Test/Unit/Invoker/InvokerDefaultTest.php  |   0
 .../Test/Unit/Invoker/ObserverExample.php     |   0
 .../Framework/Event/Test/Unit/ManagerStub.php |   0
 .../Framework/Event/Test/Unit/ManagerTest.php |   0
 .../Test/Unit/Observer/CollectionTest.php     |   0
 .../Event/Test/Unit/Observer/CronTest.php     |   0
 .../Event/Test/Unit/Observer/RegexTest.php    |   0
 .../Event/Test/Unit/ObserverFactoryTest.php   |   0
 .../Event/Test/Unit/ObserverTest.php          |   0
 .../Event/Test/Unit/WrapperFactoryTest.php    |   0
 .../Framework/Event/WrapperFactory.php        |   0
 .../Magento/Framework/Event/etc/events.xsd    |   0
 .../Magento/Framework/EventFactory.php        |   0
 .../Exception/AbstractAggregateException.php  |   0
 .../Exception/AlreadyExistsException.php      |   0
 .../Exception/AuthenticationException.php     |   0
 .../Exception/AuthorizationException.php      |   0
 .../ConfigurationMismatchException.php        |   0
 .../Exception/CouldNotDeleteException.php     |   0
 .../Exception/CouldNotSaveException.php       |   0
 .../Framework/Exception/CronException.php     |   0
 .../Exception/EmailNotConfirmedException.php  |   0
 .../Exception/FileSystemException.php         |   0
 .../Framework/Exception/InputException.php    |   0
 .../Exception/IntegrationException.php        |   0
 .../InvalidEmailOrPasswordException.php       |   0
 .../Exception/LocalizedException.php          |   0
 .../Framework/Exception/MailException.php     |   0
 .../Exception/NoSuchEntityException.php       |   0
 .../Framework/Exception/NotFoundException.php |   0
 .../Framework/Exception/PaymentException.php  |   0
 .../Plugin/AuthenticationException.php        |   0
 .../Magento/Framework/Exception/README.md     |   0
 .../RemoteServiceUnavailableException.php     |   0
 .../Framework/Exception/RuntimeException.php  |   0
 .../Exception/SecurityViolationException.php  |   0
 .../Exception/SerializationException.php      |   0
 .../Framework/Exception/SessionException.php  |   0
 .../Exception/State/ExpiredException.php      |   0
 .../Exception/State/InitException.php         |   0
 .../State/InputMismatchException.php          |   0
 .../State/InvalidTransitionException.php      |   0
 .../Exception/State/UserLockedException.php   |   0
 .../Framework/Exception/StateException.php    |   0
 .../TemporaryState/CouldNotSaveException.php  |   0
 .../TemporaryStateExceptionInterface.php      |   0
 .../Test/Unit/AuthenticationExceptionTest.php |   0
 .../Test/Unit/AuthorizationExceptionTest.php  |   0
 .../Unit/EmailNotConfirmedExceptionTest.php   |   0
 .../Test/Unit/InputExceptionTest.php          |   0
 .../Test/Unit/LocalizedExceptionTest.php      |   0
 .../Test/Unit/NoSuchEntityExceptionTest.php   |   0
 .../Test/Unit/State/ExpiredExceptionTest.php  |   0
 .../Unit/State/InputMismatchExceptionTest.php |   0
 .../State/InvalidTransitionExceptionTest.php  |   0
 .../Test/Unit/StateExceptionTest.php          |   0
 .../Exception/ValidatorException.php          |   0
 lib/internal/Magento/Framework/File/Csv.php   |   0
 .../Magento/Framework/File/CsvMulty.php       |   0
 lib/internal/Magento/Framework/File/Mime.php  |   0
 lib/internal/Magento/Framework/File/README.md |   0
 lib/internal/Magento/Framework/File/Size.php  |   0
 .../Framework/File/Test/Unit/CsvTest.php      |   0
 .../Framework/File/Test/Unit/MimeTest.php     |   0
 .../Test/Unit/Transfer/Adapter/HttpTest.php   |   0
 .../File/Test/Unit/_files/UPPERCASE.WEIRD     |   0
 .../File/Test/Unit/_files/file.weird          |   0
 .../File/Test/Unit/_files/javascript.js       |   0
 .../Framework/File/Transfer/Adapter/Http.php  |   0
 .../Magento/Framework/File/Uploader.php       |   0
 .../Framework/File/UploaderFactory.php        |   0
 lib/internal/Magento/Framework/Filesystem.php |   0
 .../Framework/Filesystem/Directory/Read.php   |   0
 .../Filesystem/Directory/ReadFactory.php      |   0
 .../Filesystem/Directory/ReadInterface.php    |   0
 .../Framework/Filesystem/Directory/Write.php  |   0
 .../Filesystem/Directory/WriteFactory.php     |   0
 .../Filesystem/Directory/WriteInterface.php   |   0
 .../Framework/Filesystem/DirectoryList.php    |   0
 .../Framework/Filesystem/Driver/File.php      |   0
 .../Framework/Filesystem/Driver/Http.php      |   0
 .../Framework/Filesystem/Driver/Https.php     |   0
 .../Framework/Filesystem/Driver/Zlib.php      |   0
 .../Framework/Filesystem/DriverInterface.php  |   0
 .../Framework/Filesystem/DriverPool.php       |   0
 .../Framework/Filesystem/File/Read.php        |   0
 .../Framework/Filesystem/File/ReadFactory.php |   0
 .../Filesystem/File/ReadInterface.php         |   0
 .../Framework/Filesystem/File/Write.php       |   0
 .../Filesystem/File/WriteFactory.php          |   0
 .../Filesystem/File/WriteInterface.php        |   0
 .../Framework/Filesystem/FileResolver.php     |   0
 .../Filesystem/Filter/ExcludeFilter.php       |   0
 .../Magento/Framework/Filesystem/Glob.php     |   0
 .../Framework/Filesystem/Io/AbstractIo.php    |   0
 .../Magento/Framework/Filesystem/Io/File.php  |   0
 .../Magento/Framework/Filesystem/Io/Ftp.php   |   0
 .../Framework/Filesystem/Io/IoInterface.php   |   0
 .../Magento/Framework/Filesystem/Io/Sftp.php  |   0
 .../Magento/Framework/Filesystem/README.md    |   0
 .../Test/Unit/Directory/ReadTest.php          |   0
 .../Test/Unit/Directory/WriteTest.php         |   0
 .../Test/Unit/DirectoryListTest.php           |   0
 .../Filesystem/Test/Unit/Driver/FileTest.php  |   0
 .../Filesystem/Test/Unit/Driver/HttpTest.php  |   0
 .../Filesystem/Test/Unit/Driver/HttpsTest.php |   0
 .../Filesystem/Test/Unit/DriverPoolTest.php   |   0
 .../Test/Unit/File/ExcludeFilterTest.php      |   0
 .../Test/Unit/File/ReadFactoryTest.php        |   0
 .../Filesystem/Test/Unit/File/ReadTest.php    |   0
 .../Test/Unit/File/WriteFactoryTest.php       |   0
 .../Filesystem/Test/Unit/File/WriteTest.php   |   0
 .../Filesystem/Test/Unit/FileResolverTest.php |   0
 .../Filesystem/Test/Unit/_files/http_mock.php |   0
 .../Framework/Filter/AbstractFactory.php      |   0
 .../Magento/Framework/Filter/ArrayFilter.php  |   0
 .../Magento/Framework/Filter/DataObject.php   |   0
 .../Framework/Filter/DataObject/Grid.php      |   0
 .../Magento/Framework/Filter/Decrypt.php      |   0
 .../Magento/Framework/Filter/Email.php        |   0
 .../Magento/Framework/Filter/Encrypt.php      |   0
 .../Filter/Encrypt/AdapterInterface.php       |   0
 .../Framework/Filter/Encrypt/Basic.php        |   0
 .../Magento/Framework/Filter/Factory.php      |   0
 .../Framework/Filter/FactoryInterface.php     |   0
 .../Framework/Filter/FilterManager.php        |   0
 .../Framework/Filter/FilterManager/Config.php |   0
 .../Filter/FilterManager/ConfigInterface.php  |   0
 .../Magento/Framework/Filter/Input.php        |   0
 .../Framework/Filter/Input/MaliciousCode.php  |   0
 .../Filter/LocalizedToNormalized.php          |   0
 .../Magento/Framework/Filter/Money.php        |   0
 .../Framework/Filter/RemoveAccents.php        |   0
 .../Magento/Framework/Filter/RemoveTags.php   |   0
 .../Magento/Framework/Filter/SplitWords.php   |   0
 .../Magento/Framework/Filter/Sprintf.php      |   0
 .../Magento/Framework/Filter/StripTags.php    |   0
 .../Magento/Framework/Filter/Template.php     |   0
 .../Framework/Filter/Template/Simple.php      |   0
 .../Template/Tokenizer/AbstractTokenizer.php  |   0
 .../Filter/Template/Tokenizer/Parameter.php   |   0
 .../Filter/Template/Tokenizer/Variable.php    |   0
 .../Filter/Test/Unit/AbstractFactoryTest.php  |   0
 .../Filter/Test/Unit/ArrayFilterTest.php      |   0
 .../Filter/Test/Unit/DataObject/GridTest.php  |   0
 .../Test/Unit/FilterManager/ConfigTest.php    |   0
 .../Filter/Test/Unit/FilterManagerTest.php    |   0
 .../Test/Unit/Input/MaliciousCodeTest.php     |   0
 .../Framework/Filter/Test/Unit/InputTest.php  |   0
 .../Filter/Test/Unit/RemoveAccentsTest.php    |   0
 .../Filter/Test/Unit/RemoveTagsTest.php       |   0
 .../Filter/Test/Unit/SplitWordsTest.php       |   0
 .../Filter/Test/Unit/SprintfTest.php          |   0
 .../Filter/Test/Unit/StripTagsTest.php        |   0
 .../Filter/Test/Unit/Template/SimpleTest.php  |   0
 .../Unit/Template/Tokenizer/ParameterTest.php |   0
 .../Unit/Template/Tokenizer/VariableTest.php  |   0
 .../Filter/Test/Unit/TemplateTest.php         |   0
 .../Filter/Test/Unit/TranslitTest.php         |   0
 .../Filter/Test/Unit/TranslitUrlTest.php      |   0
 .../Filter/Test/Unit/TruncateTest.php         |   0
 .../Magento/Framework/Filter/Translit.php     |   0
 .../Magento/Framework/Filter/TranslitUrl.php  |   0
 .../Magento/Framework/Filter/Truncate.php     |   0
 .../Magento/Framework/Filter/ZendFactory.php  |   0
 lib/internal/Magento/Framework/Flag.php       |   0
 .../Magento/Framework/Flag/FlagResource.php   |   0
 lib/internal/Magento/Framework/Flag/README.md |   0
 .../Magento/Framework/FlagFactory.php         |   0
 .../Magento/Framework/FlagManager.php         |   0
 .../Magento/Framework/HTTP/Adapter/Curl.php   |   0
 .../HTTP/Adapter/FileTransferFactory.php      |   0
 .../Magento/Framework/HTTP/Authentication.php |   0
 .../Magento/Framework/HTTP/Client/Curl.php    |   0
 .../Magento/Framework/HTTP/Client/Socket.php  |   0
 .../Magento/Framework/HTTP/ClientFactory.php  |   0
 .../Framework/HTTP/ClientInterface.php        |   0
 .../Magento/Framework/HTTP/Header.php         |   0
 .../HTTP/PhpEnvironment/RemoteAddress.php     |   0
 .../Framework/HTTP/PhpEnvironment/Request.php |   0
 .../HTTP/PhpEnvironment/Response.php          |   0
 .../HTTP/PhpEnvironment/ServerAddress.php     |   0
 .../HTTP/Test/Unit/Adapter/CurlTest.php       |   0
 .../Unit/Adapter/_files/curl_exec_mock.php    |   0
 .../Unit/Adapter/_files/curl_response1.txt    |   0
 .../Unit/Adapter/_files/curl_response2.txt    |   0
 .../Adapter/_files/curl_response_expected.txt |   0
 .../HTTP/Test/Unit/AuthenticationTest.php     |   0
 .../Framework/HTTP/Test/Unit/HeaderTest.php   |   0
 .../Unit/PhpEnvironment/RemoteAddressTest.php |   0
 .../Test/Unit/PhpEnvironment/RequestTest.php  |   0
 .../Test/Unit/PhpEnvironment/ResponseTest.php |   0
 .../Unit/PhpEnvironment/ServerAddressTest.php |   0
 .../Magento/Framework/HTTP/ZendClient.php     |   0
 lib/internal/Magento/Framework/Image.php      |   0
 .../Image/Adapter/AbstractAdapter.php         |   0
 .../Image/Adapter/AdapterInterface.php        |   0
 .../Framework/Image/Adapter/Config.php        |   0
 .../Image/Adapter/ConfigInterface.php         |   0
 .../Magento/Framework/Image/Adapter/Gd2.php   |   0
 .../Framework/Image/Adapter/ImageMagick.php   |   0
 .../Framework/Image/AdapterFactory.php        |   0
 .../Magento/Framework/Image/Factory.php       |   0
 .../Magento/Framework/Image/README.md         |   0
 .../Image/Test/Unit/Adapter/AbstractTest.php  |   0
 .../Image/Test/Unit/Adapter/Gd2Test.php       |   0
 .../Test/Unit/Adapter/ImageMagickTest.php     |   0
 .../Unit/Adapter/_files/global_php_mock.php   |   0
 .../Unit/Adapter/_files/invalid_image.jpg     |   0
 .../Image/Test/Unit/AdapterFactoryTest.php    |   0
 .../Framework/Indexer/AbstractProcessor.php   |   0
 .../Magento/Framework/Indexer/Action/Base.php |   0
 .../Framework/Indexer/Action/Dummy.php        |   0
 .../Framework/Indexer/Action/Entity.php       |   0
 .../Framework/Indexer/ActionFactory.php       |   0
 .../Framework/Indexer/ActionInterface.php     |   0
 .../Framework/Indexer/BatchProvider.php       |   0
 .../Indexer/BatchProviderInterface.php        |   0
 .../Framework/Indexer/BatchSizeManagement.php |   0
 .../Indexer/BatchSizeManagementInterface.php  |   0
 .../Framework/Indexer/CacheContext.php        |   0
 .../Framework/Indexer/Config/Converter.php    |   0
 .../Indexer/Config/DependencyInfoProvider.php |   0
 .../DependencyInfoProviderInterface.php       |   0
 .../Framework/Indexer/Config/Reader.php       |   0
 .../Indexer/Config/SchemaLocator.php          |   0
 .../Framework/Indexer/ConfigInterface.php     |   0
 .../Framework/Indexer/FieldsetInterface.php   |   0
 .../Framework/Indexer/FieldsetPool.php        |   0
 .../Framework/Indexer/GridStructure.php       |   0
 .../Indexer/Handler/AttributeHandler.php      |   0
 .../Indexer/Handler/ConcatHandler.php         |   0
 .../Indexer/Handler/DefaultHandler.php        |   0
 .../Framework/Indexer/HandlerInterface.php    |   0
 .../Magento/Framework/Indexer/HandlerPool.php |   0
 .../Framework/Indexer/IndexStructure.php      |   0
 .../Indexer/IndexStructureInterface.php       |   0
 .../Indexer/IndexTableRowSizeEstimator.php    |   0
 .../IndexTableRowSizeEstimatorInterface.php   |   0
 .../Framework/Indexer/IndexerInterface.php    |   0
 .../Framework/Indexer/IndexerRegistry.php     |   0
 .../Magento/Framework/Indexer/README.md       |   0
 .../Framework/Indexer/SaveHandler/Batch.php   |   0
 .../Framework/Indexer/SaveHandler/Grid.php    |   0
 .../Indexer/SaveHandler/IndexerHandler.php    |   0
 .../Indexer/SaveHandler/IndexerInterface.php  |   0
 .../Framework/Indexer/SaveHandlerFactory.php  |   0
 .../ScopeResolver/FlatScopeResolver.php       |   0
 .../ScopeResolver/IndexScopeResolver.php      |   0
 .../Framework/Indexer/StateInterface.php      |   0
 .../Framework/Indexer/StructureFactory.php    |   0
 .../Framework/Indexer/Table/Strategy.php      |   0
 .../Indexer/Table/StrategyInterface.php       |   0
 .../Indexer/Test/Unit/ActionFactoryTest.php   |   0
 .../Indexer/Test/Unit/BatchProviderTest.php   |   0
 .../Test/Unit/BatchSizeManagementTest.php     |   0
 .../Framework/Indexer/Test/Unit/BatchTest.php |   0
 .../Test/Unit/Config/ConverterTest.php        |   0
 .../Config/DependencyInfoProviderTest.php     |   0
 .../Indexer/Test/Unit/Config/ReaderTest.php   |   0
 .../Test/Unit/Config/SchemaLocatorTest.php    |   0
 .../Indexer/Test/Unit/GridStructureTest.php   |   0
 .../Unit/Handler/AttributeHandlerTest.php     |   0
 .../Indexer/Test/Unit/IndexStructureTest.php  |   0
 .../Unit/IndexTableRowSizeEstimatorTest.php   |   0
 .../Indexer/Test/Unit/IndexerRegistryTest.php |   0
 .../ScopeResolver/IndexScopeResolverTest.php  |   0
 .../Indexer/Test/Unit/StrategyTest.php        |   0
 .../Framework/Indexer/Test/Unit/XsdTest.php   |   0
 .../Test/Unit/_files/indexer_config.php       |   0
 .../Test/Unit/_files/indexer_merged_one.xml   |   0
 .../Test/Unit/_files/indexer_merged_two.xml   |   0
 .../Indexer/Test/Unit/_files/indexer_one.xml  |   0
 .../Test/Unit/_files/indexer_three.xml        |   0
 .../Indexer/Test/Unit/_files/indexer_two.xml  |   0
 .../Unit/_files/invalidIndexerXmlArray.php    |   0
 .../Test/Unit/_files/valid_indexer.xml        |   0
 .../Magento/Framework/Indexer/etc/indexer.xsd |   0
 .../Framework/Indexer/etc/indexer_merged.xsd  |   0
 .../Code/Generator/Interceptor.php            |   0
 .../Interception/Code/InterfaceValidator.php  |   0
 .../Framework/Interception/Config/Config.php  |   0
 .../Interception/ConfigInterface.php          |   0
 .../Interception/Definition/Runtime.php       |   0
 .../Interception/DefinitionInterface.php      |   0
 .../Framework/Interception/Interceptor.php    |   0
 .../Interception/InterceptorInterface.php     |   0
 .../ObjectManager/Config/Compiled.php         |   0
 .../ObjectManager/Config/Developer.php        |   0
 .../ObjectManager/ConfigInterface.php         |   0
 .../Interception/PluginList/PluginList.php    |   0
 .../Interception/PluginListInterface.php      |   0
 .../Unit/Code/Generator/InterceptorTest.php   |   0
 .../Code/Generator/_files/Interceptor.txt     |   0
 .../Unit/Code/Generator/_files/Sample.php     |   0
 .../Code/Generator/_files/TInterceptor.txt    |   0
 .../Unit/Code/Generator/_files/TSample.php    |   0
 .../Test/Unit/Code/InterfaceValidatorTest.php |   0
 .../Test/Unit/Config/ConfigTest.php           |   0
 .../Module/Model/InterfaceValidator/Item.php  |   0
 .../ItemPlugin/ExtraParameters.php            |   0
 .../ItemPlugin/IncompatibleArgumentsCount.php |   0
 .../ItemPlugin/IncompatibleArgumentsType.php  |   0
 .../ItemPlugin/IncompatibleInterface.php      |   0
 .../ItemPlugin/IncorrectSubject.php           |   0
 .../ItemPlugin/InvalidProceed.php             |   0
 .../ItemPlugin/ValidPlugin.php                |   0
 .../InterfaceValidator/ItemWithArguments.php  |   0
 .../Test/Unit/Custom/Module/Model/Item.php    |   0
 .../Custom/Module/Model/Item/Enhanced.php     |   0
 .../Custom/Module/Model/ItemContainer.php     |   0
 .../Module/Model/ItemContainer/Enhanced.php   |   0
 .../Model/ItemContainerPlugin/Simple.php      |   0
 .../Module/Model/ItemPlugin/Advanced.php      |   0
 .../Custom/Module/Model/ItemPlugin/Simple.php |   0
 .../Custom/Module/Model/StartingBackslash.php |   0
 .../Module/Model/StartingBackslash/Plugin.php |   0
 .../ObjectManager/Config/DeveloperTest.php    |   0
 .../Test/Unit/PluginList/PluginListTest.php   |   0
 .../Test/Unit/_files/reader_mock_map.php      |   0
 .../Framework/Intl/DateTimeFactory.php        |   0
 lib/internal/Magento/Framework/Intl/README.md |   0
 .../Magento/Framework/Json/Decoder.php        |   0
 .../Framework/Json/DecoderInterface.php       |   0
 .../Magento/Framework/Json/Encoder.php        |   0
 .../Framework/Json/EncoderInterface.php       |   0
 .../Magento/Framework/Json/Helper/Data.php    |   0
 .../Json/Test/Unit/Helper/DataTest.php        |   0
 lib/internal/Magento/Framework/LICENSE.txt    |   0
 .../Magento/Framework/LICENSE_AFL.txt         |   0
 .../Locale/AvailableLocalesInterface.php      |   0
 .../Locale/Bundle/CurrencyBundle.php          |   0
 .../Framework/Locale/Bundle/DataBundle.php    |   0
 .../Locale/Bundle/LanguageBundle.php          |   0
 .../Framework/Locale/Bundle/RegionBundle.php  |   0
 .../Locale/Bundle/TimezoneBundle.php          |   0
 .../Magento/Framework/Locale/Config.php       |   0
 .../Framework/Locale/ConfigInterface.php      |   0
 .../Magento/Framework/Locale/Currency.php     |   0
 .../Framework/Locale/CurrencyInterface.php    |   0
 .../Framework/Locale/Deployed/Codes.php       |   0
 .../Framework/Locale/Deployed/Options.php     |   0
 .../Magento/Framework/Locale/Format.php       |   0
 .../Framework/Locale/FormatInterface.php      |   0
 .../Framework/Locale/ListsInterface.php       |   0
 .../Framework/Locale/OptionInterface.php      |   0
 .../Magento/Framework/Locale/README.md        |   0
 .../Magento/Framework/Locale/Resolver.php     |   0
 .../Framework/Locale/ResolverInterface.php    |   0
 .../Framework/Locale/Test/Unit/ConfigTest.php |   0
 .../Locale/Test/Unit/CurrencyTest.php         |   0
 .../Locale/Test/Unit/Deployed/CodesTest.php   |   0
 .../Locale/Test/Unit/Deployed/OptionsTest.php |   0
 .../Framework/Locale/Test/Unit/FormatTest.php |   0
 .../Locale/Test/Unit/TranslatedListsTest.php  |   0
 .../Framework/Locale/TranslatedLists.php      |   0
 .../Magento/Framework/Logger/Handler/Base.php |   0
 .../Framework/Logger/Handler/Debug.php        |   0
 .../Framework/Logger/Handler/Exception.php    |   0
 .../Framework/Logger/Handler/System.php       |   0
 .../Magento/Framework/Logger/Monolog.php      |   0
 .../Magento/Framework/Logger/README.md        |   0
 .../Logger/Test/Unit/Handler/BaseTest.php     |   0
 .../Logger/Test/Unit/Handler/SystemTest.php   |   0
 .../Logger/Test/Unit/MonologTest.php          |   0
 .../Magento/Framework/Mail/Message.php        |   0
 .../Framework/Mail/MessageInterface.php       |   0
 .../Mail/Template/ConfigInterface.php         |   0
 .../Framework/Mail/Template/Factory.php       |   0
 .../Mail/Template/FactoryInterface.php        |   0
 .../Mail/Template/SenderResolverInterface.php |   0
 .../Mail/Template/TransportBuilder.php        |   0
 .../Mail/Template/TransportBuilderByStore.php |   0
 .../Framework/Mail/TemplateInterface.php      |   0
 .../Framework/Mail/Test/Unit/MessageTest.php  |   0
 .../Mail/Test/Unit/Template/FactoryTest.php   |   0
 .../Template/TransportBuilderByStoreTest.php  |   0
 .../Unit/Template/TransportBuilderTest.php    |   0
 .../Mail/Test/Unit/TransportTest.php          |   0
 .../Magento/Framework/Mail/Transport.php      |   0
 .../Framework/Mail/TransportInterface.php     |   0
 .../Mail/TransportInterfaceFactory.php        |   0
 .../Magento/Framework/Math/Calculator.php     |   0
 .../Magento/Framework/Math/Division.php       |   0
 lib/internal/Magento/Framework/Math/README.md |   0
 .../Magento/Framework/Math/Random.php         |   0
 .../Math/Test/Unit/CalculatorTest.php         |   0
 .../Framework/Math/Test/Unit/DivisionTest.php |   0
 .../Framework/Math/Test/Unit/RandomTest.php   |   0
 .../Framework/Message/AbstractMessage.php     |   0
 .../Magento/Framework/Message/Collection.php  |   0
 .../Framework/Message/CollectionFactory.php   |   0
 .../Magento/Framework/Message/Error.php       |   0
 .../Message/ExceptionMessageFactory.php       |   0
 .../ExceptionMessageFactoryInterface.php      |   0
 .../Message/ExceptionMessageFactoryPool.php   |   0
 .../Message/ExceptionMessageLookupFactory.php |   0
 .../Magento/Framework/Message/Factory.php     |   0
 .../Magento/Framework/Message/Manager.php     |   0
 .../Framework/Message/ManagerInterface.php    |   0
 .../Framework/Message/MessageInterface.php    |   0
 .../Magento/Framework/Message/Notice.php      |   0
 .../Framework/Message/PhraseFactory.php       |   0
 .../Magento/Framework/Message/README.md       |   0
 .../Magento/Framework/Message/Session.php     |   0
 .../Magento/Framework/Message/Success.php     |   0
 .../Message/Test/Unit/AbstractMessageTest.php |   0
 .../Message/Test/Unit/CollectionTest.php      |   0
 .../Framework/Message/Test/Unit/ErrorTest.php |   0
 .../Unit/ExceptionMessageFactoryPoolTest.php  |   0
 .../Test/Unit/ExceptionMessageFactoryTest.php |   0
 .../ExceptionMessageLookupFactoryTest.php     |   0
 .../Message/Test/Unit/FactoryTest.php         |   0
 .../Message/Test/Unit/ManagerTest.php         |   0
 .../Message/Test/Unit/NoticeTest.php          |   0
 .../Message/Test/Unit/SuccessTest.php         |   0
 .../Message/Test/Unit/TestingMessage.php      |   0
 .../Message/Test/Unit/WarningTest.php         |   0
 .../Magento/Framework/Message/Warning.php     |   0
 .../Model/AbstractExtensibleModel.php         |   0
 .../Magento/Framework/Model/AbstractModel.php |   0
 .../Model/ActionValidator/RemoveAction.php    |   0
 .../ActionValidator/RemoveAction/Allowed.php  |   0
 .../Magento/Framework/Model/CallbackPool.php  |   0
 .../Magento/Framework/Model/Context.php       |   0
 .../Model/Entity/RepositoryFactory.php        |   0
 .../Magento/Framework/Model/Entity/Scope.php  |   0
 .../Framework/Model/Entity/ScopeFactory.php   |   0
 .../Framework/Model/Entity/ScopeInterface.php |   0
 .../Model/Entity/ScopeProviderInterface.php   |   0
 .../Framework/Model/Entity/ScopeResolver.php  |   0
 .../Framework/Model/EntityRegistry.php        |   0
 .../Framework/Model/EntitySnapshot.php        |   0
 .../EntitySnapshot/AttributeProvider.php      |   0
 .../AttributeProviderInterface.php            |   0
 .../Model/Operation/ReadInterface.php         |   0
 .../Model/Operation/WriteInterface.php        |   0
 .../Magento/Framework/Model/README.md         |   0
 .../Model/ResourceModel/AbstractResource.php  |   0
 .../Model/ResourceModel/Db/AbstractDb.php     |   0
 .../Db/Collection/AbstractCollection.php      |   0
 .../Model/ResourceModel/Db/Context.php        |   0
 .../Db/ObjectRelationProcessor.php            |   0
 .../Model/ResourceModel/Db/Profiler.php       |   0
 .../Model/ResourceModel/Db/ReadEntityRow.php  |   0
 .../ResourceModel/Db/Relation/ActionPool.php  |   0
 .../ResourceModel/Db/TransactionManager.php   |   0
 .../Db/TransactionManagerInterface.php        |   0
 .../Db/ValidateDataIntegrity.php              |   0
 .../Db/VersionControl/AbstractDb.php          |   0
 .../Db/VersionControl/Collection.php          |   0
 .../Db/VersionControl/Metadata.php            |   0
 .../Db/VersionControl/RelationComposite.php   |   0
 .../Db/VersionControl/RelationInterface.php   |   0
 .../Db/VersionControl/Snapshot.php            |   0
 .../ResourceModel/Entity/AbstractEntity.php   |   0
 .../Model/ResourceModel/Entity/Table.php      |   0
 .../Model/ResourceModel/Iterator.php          |   0
 .../Model/ResourceModel/Type/AbstractType.php |   0
 .../Framework/Model/ResourceModel/Type/Db.php |   0
 .../Type/Db/ConnectionFactory.php             |   0
 .../Type/Db/ConnectionFactoryInterface.php    |   0
 .../Model/ResourceModel/Type/Db/Pdo/Mysql.php |   0
 .../Test/Unit/AbstractExtensibleModelTest.php |   0
 .../Model/Test/Unit/AbstractModelTest.php     |   0
 .../Unit/ActionValidator/RemoveActionTest.php |   0
 .../EntitySnapshot/AttributeProviderTest.php  |   0
 .../ResourceModel/AbstractResourceStub.php    |   0
 .../ResourceModel/AbstractResourceTest.php    |   0
 .../Unit/ResourceModel/Db/AbstractDbTest.php  |   0
 .../Db/Collection/AbstractCollectionTest.php  |   0
 .../Unit/ResourceModel/Db/Collection/Uut.php  |   0
 .../ResourceModel/Db/CreateEntityRowTest.php  |   0
 .../ResourceModel/Db/DeleteEntityRowTest.php  |   0
 .../ResourceModel/Db/ReadEntityRowTest.php    |   0
 .../Db/Relation/ActionPoolTest.php            |   0
 .../ResourceModel/Db/UpdateEntityRowTest.php  |   0
 .../Db/VersionControl/MetadataTest.php        |   0
 .../VersionControl/RelationCompositeTest.php  |   0
 .../Db/VersionControl/SnapshotTest.php        |   0
 .../Type/Db/ConnectionFactoryTest.php         |   0
 .../ResourceModel/Type/Db/Pdo/MysqlTest.php   |   0
 .../Framework/Module/ConflictChecker.php      |   0
 .../Framework/Module/DbVersionInfo.php        |   0
 .../Module/Declaration/Converter/Dom.php      |   0
 .../Framework/Module/DependencyChecker.php    |   0
 lib/internal/Magento/Framework/Module/Dir.php |   0
 .../Magento/Framework/Module/Dir/Reader.php   |   0
 .../Framework/Module/Dir/ReverseResolver.php  |   0
 .../Framework/Module/FullModuleList.php       |   0
 .../Magento/Framework/Module/Manager.php      |   0
 .../Magento/Framework/Module/ModuleList.php   |   0
 .../Framework/Module/ModuleList/Loader.php    |   0
 .../Framework/Module/ModuleListInterface.php  |   0
 .../Framework/Module/ModuleResource.php       |   0
 .../Framework/Module/Output/Config.php        |   0
 .../Module/Output/ConfigInterface.php         |   0
 .../Magento/Framework/Module/PackageInfo.php  |   0
 .../Framework/Module/PackageInfoFactory.php   |   0
 .../Module/Plugin/DbStatusValidator.php       |   0
 .../Magento/Framework/Module/README.md        |   0
 .../Framework/Module/ResourceInterface.php    |   0
 .../Magento/Framework/Module/Setup.php        |   0
 .../Framework/Module/Setup/Context.php        |   0
 .../Framework/Module/Setup/Migration.php      |   0
 .../Framework/Module/Setup/MigrationData.php  |   0
 .../Module/Setup/MigrationFactory.php         |   0
 .../Magento/Framework/Module/Status.php       |   0
 .../Module/Test/Unit/ConflictCheckerTest.php  |   0
 .../Module/Test/Unit/DbVersionInfoTest.php    |   0
 .../Unit/Declaration/Converter/DomTest.php    |   0
 .../_files/converted_valid_module.php         |   0
 .../Converter/_files/valid_module.xml         |   0
 .../Test/Unit/DependencyCheckerTest.php       |   0
 .../Module/Test/Unit/Dir/ReaderTest.php       |   0
 .../Test/Unit/Dir/ReverseResolverTest.php     |   0
 .../Framework/Module/Test/Unit/DirTest.php    |   0
 .../Module/Test/Unit/FullModuleListTest.php   |   0
 .../Module/Test/Unit/ManagerTest.php          |   0
 .../Test/Unit/ModuleList/LoaderTest.php       |   0
 .../Module/Test/Unit/ModuleListTest.php       |   0
 .../Test/Unit/PackageInfoFactoryTest.php      |   0
 .../Module/Test/Unit/PackageInfoTest.php      |   0
 .../Unit/Plugin/DbStatusValidatorTest.php     |   0
 .../Module/Test/Unit/Setup/MigrationTest.php  |   0
 .../Setup/_files/data_content_plain_model.php |   0
 .../_files/data_content_plain_pk_fields.php   |   0
 .../_files/data_content_plain_resource.php    |   0
 .../Setup/_files/data_content_serialized.php  |   0
 .../Unit/Setup/_files/data_content_wiki.php   |   0
 .../Unit/Setup/_files/data_content_xml.php    |   0
 .../Framework/Module/Test/Unit/SetupTest.php  |   0
 .../Framework/Module/Test/Unit/StatusTest.php |   0
 .../Module/data/module_first_setup/.gitignore |   0
 .../data/module_second_setup/.gitignore       |   0
 .../Module/sql/module_first_setup/.gitignore  |   0
 .../Magento/Framework/Module/etc/module.xsd   |   0
 .../Magento/Framework/Mview/ActionFactory.php |   0
 .../Framework/Mview/ActionInterface.php       |   0
 .../Magento/Framework/Mview/Config.php        |   0
 .../Framework/Mview/Config/Converter.php      |   0
 .../Magento/Framework/Mview/Config/Data.php   |   0
 .../Framework/Mview/Config/Data/Proxy.php     |   0
 .../Magento/Framework/Mview/Config/Reader.php |   0
 .../Framework/Mview/Config/SchemaLocator.php  |   0
 .../Framework/Mview/ConfigInterface.php       |   0
 .../Magento/Framework/Mview/Processor.php     |   0
 .../Framework/Mview/ProcessorInterface.php    |   0
 .../Mview/Test/Unit/ActionFactoryTest.php     |   0
 .../Mview/Test/Unit/Config/ConverterTest.php  |   0
 .../Mview/Test/Unit/Config/Data/ProxyTest.php |   0
 .../Mview/Test/Unit/Config/DataTest.php       |   0
 .../Mview/Test/Unit/Config/ReaderTest.php     |   0
 .../Framework/Mview/Test/Unit/ConfigTest.php  |   0
 .../Mview/Test/Unit/ProcessorTest.php         |   0
 .../Mview/Test/Unit/View/ChangelogTest.php    |   0
 .../Mview/Test/Unit/View/CollectionTest.php   |   0
 .../Unit/View/SubscriptionFactoryTest.php     |   0
 .../Mview/Test/Unit/View/SubscriptionTest.php |   0
 .../Framework/Mview/Test/Unit/ViewTest.php    |   0
 .../Framework/Mview/Test/Unit/XsdTest.php     |   0
 .../Test/Unit/_files/invalidMviewXmlArray.php |   0
 .../Mview/Test/Unit/_files/mview_config.php   |   0
 .../Test/Unit/_files/mview_merged_one.xml     |   0
 .../Test/Unit/_files/mview_merged_two.xml     |   0
 .../Mview/Test/Unit/_files/mview_one.xml      |   0
 .../Mview/Test/Unit/_files/mview_three.xml    |   0
 .../Mview/Test/Unit/_files/mview_two.xml      |   0
 .../Mview/Test/Unit/_files/valid_mview.xml    |   0
 lib/internal/Magento/Framework/Mview/View.php |   0
 .../Framework/Mview/View/AbstractFactory.php  |   0
 .../Framework/Mview/View/Changelog.php        |   0
 .../Mview/View/ChangelogInterface.php         |   0
 .../View/ChangelogTableNotExistsException.php |   0
 .../Framework/Mview/View/Collection.php       |   0
 .../Mview/View/CollectionFactory.php          |   0
 .../Mview/View/CollectionInterface.php        |   0
 .../Mview/View/State/CollectionFactory.php    |   0
 .../Mview/View/State/CollectionInterface.php  |   0
 .../Framework/Mview/View/StateInterface.php   |   0
 .../Framework/Mview/View/Subscription.php     |   0
 .../Mview/View/SubscriptionFactory.php        |   0
 .../Mview/View/SubscriptionInterface.php      |   0
 .../Magento/Framework/Mview/ViewInterface.php |   0
 .../Magento/Framework/Mview/etc/mview.xsd     |   0
 .../Notification/MessageInterface.php         |   0
 .../Framework/Notification/MessageList.php    |   0
 .../Notification/NotifierInterface.php        |   0
 .../Framework/Notification/NotifierList.php   |   0
 .../Framework/Notification/NotifierPool.php   |   0
 .../Test/Unit/NotifierListTest.php            |   0
 .../Test/Unit/NotifierPoolTest.php            |   0
 .../Framework/Oauth/ConsumerInterface.php     |   0
 .../Magento/Framework/Oauth/Exception.php     |   0
 .../Magento/Framework/Oauth/Helper/Oauth.php  |   0
 .../Framework/Oauth/Helper/Request.php        |   0
 .../Oauth/NonceGeneratorInterface.php         |   0
 .../Magento/Framework/Oauth/Oauth.php         |   0
 .../Framework/Oauth/OauthInputException.php   |   0
 .../Framework/Oauth/OauthInterface.php        |   0
 .../Oauth/Test/Unit/Helper/RequestTest.php    |   0
 .../Test/Unit/OauthInputExceptionTest.php     |   0
 .../Oauth/TokenProviderInterface.php          |   0
 .../Code/Generator/Converter.php              |   0
 .../ObjectManager/Code/Generator/Factory.php  |   0
 .../Code/Generator/Persistor.php              |   0
 .../ObjectManager/Code/Generator/Proxy.php    |   0
 .../Code/Generator/Repository.php             |   0
 .../ObjectManager/Config/Compiled.php         |   0
 .../Framework/ObjectManager/Config/Config.php |   0
 .../Config/Mapper/ArgumentParser.php          |   0
 .../ObjectManager/Config/Mapper/Dom.php       |   0
 .../ObjectManager/Config/Reader/Dom.php       |   0
 .../Config/Reader/DomFactory.php              |   0
 .../ObjectManager/Config/SchemaLocator.php    |   0
 .../ObjectManager/ConfigCacheInterface.php    |   0
 .../ObjectManager/ConfigInterface.php         |   0
 .../ObjectManager/ConfigLoaderInterface.php   |   0
 .../ObjectManager/ContextInterface.php        |   0
 .../ObjectManager/Definition/Runtime.php      |   0
 .../ObjectManager/DefinitionFactory.php       |   0
 .../ObjectManager/DefinitionInterface.php     |   0
 .../ObjectManager/DynamicConfigInterface.php  |   0
 .../ObjectManager/Factory/AbstractFactory.php |   0
 .../ObjectManager/Factory/Compiled.php        |   0
 .../Factory/Dynamic/Developer.php             |   0
 .../Factory/Dynamic/Production.php            |   0
 .../ObjectManager/FactoryInterface.php        |   0
 .../ObjectManager/Helper/Composite.php        |   0
 .../ObjectManager/InterceptableValidator.php  |   0
 .../NoninterceptableInterface.php             |   0
 .../Framework/ObjectManager/ObjectManager.php |   0
 .../Profiler/Code/Generator/Logger.php        |   0
 .../Profiler/FactoryDecorator.php             |   0
 .../Framework/ObjectManager/Profiler/Log.php  |   0
 .../ObjectManager/Profiler/Tree/Item.php      |   0
 .../Magento/Framework/ObjectManager/README.md |   0
 .../ObjectManager/Relations/Runtime.php       |   0
 .../ObjectManager/RelationsInterface.php      |   0
 .../Magento/Framework/ObjectManager/TMap.php  |   0
 .../Framework/ObjectManager/TMapFactory.php   |   0
 .../Unit/Code/Generator/ConverterTest.php     |   0
 .../Test/Unit/Code/Generator/FactoryTest.php  |   0
 .../Code/Generator/GenerateRepositoryTest.php |   0
 .../Test/Unit/Code/Generator/ProxyTest.php    |   0
 .../Unit/Code/Generator/RepositoryTest.php    |   0
 .../Unit/Code/Generator/_files/Sample.php     |   0
 .../Code/Generator/_files/SampleFactory.txt   |   0
 .../Code/Generator/_files/SampleProxy.txt     |   0
 .../Generator/_files/SampleRepository.txt     |   0
 .../_files/SampleRepositoryInterface.php      |   0
 .../Generator/_files/TSampleInterface.php     |   0
 .../Generator/_files/TSampleRepository.txt    |   0
 .../_files/TSampleRepositoryInterface.php     |   0
 .../Test/Unit/Config/CompiledTest.php         |   0
 .../Test/Unit/Config/ConfigTest.php           |   0
 .../Unit/Config/Mapper/ArgumentParserTest.php |   0
 .../Test/Unit/Config/Mapper/DomTest.php       |   0
 .../Config/Mapper/_files/argument_parser.xml  |   0
 .../Mapper/_files/mapped_simple_di_config.php |   0
 .../Config/Mapper/_files/simple_di_config.xml |   0
 .../Unit/Config/Reader/DomFactoryTest.php     |   0
 .../Test/Unit/Config/Reader/DomTest.php       |   0
 .../Config/Reader/_files/ConfigDomMock.php    |   0
 .../Test/Unit/Config/SchemaLocatorTest.php    |   0
 .../Test/Unit/Config/XsdTest.php              |   0
 .../Config/_files/invalidConfigXmlArray.php   |   0
 .../Test/Unit/Config/_files/valid_config.xml  |   0
 .../Test/Unit/DefinitionFactoryTest.php       |   0
 .../Test/Unit/Factory/CompiledTest.php        |   0
 .../Test/Unit/Factory/FactoryTest.php         |   0
 .../Test/Unit/Factory/Fixture/CircularOne.php |   0
 .../Unit/Factory/Fixture/CircularThree.php    |   0
 .../Test/Unit/Factory/Fixture/CircularTwo.php |   0
 .../Compiled/DependencySharedTesting.php      |   0
 .../Fixture/Compiled/DependencyTesting.php    |   0
 .../Fixture/Compiled/SimpleClassTesting.php   |   0
 .../Test/Unit/Factory/Fixture/OneScalar.php   |   0
 .../Unit/Factory/Fixture/Polymorphous.php     |   0
 .../Test/Unit/Factory/Fixture/Two.php         |   0
 .../Test/Unit/Helper/CompositeTest.php        |   0
 .../Test/Unit/InterceptableValidatorTest.php  |   0
 .../Test/Unit/ObjectManagerTest.php           |   0
 .../Unit/Profiler/FactoryDecoratorTest.php    |   0
 .../Test/Unit/Relations/RuntimeTest.php       |   0
 .../ObjectManager/Test/Unit/TMapTest.php      |   0
 .../_files/Aggregate/AggregateInterface.php   |   0
 .../Unit/_files/Aggregate/AggregateParent.php |   0
 .../Test/Unit/_files/Aggregate/Child.php      |   0
 .../Unit/_files/Aggregate/WithOptional.php    |   0
 .../ObjectManager/Test/Unit/_files/Child.php  |   0
 .../Test/Unit/_files/Child/A.php              |   0
 .../Test/Unit/_files/Child/Circular.php       |   0
 .../Test/Unit/_files/Child/Interceptor.php    |   0
 .../Test/Unit/_files/Child/Interceptor/A.php  |   0
 .../Test/Unit/_files/Child/Interceptor/B.php  |   0
 .../Test/Unit/_files/ChildInterface.php       |   0
 .../Test/Unit/_files/DiInterface.php          |   0
 .../Test/Unit/_files/DiParent.php             |   0
 .../ObjectManager/Test/Unit/_files/Proxy.php  |   0
 .../Test/Unit/_files/TMap/TClass.php          |   0
 .../Test/Unit/_files/TMap/TInterface.php      |   0
 .../Test/Unit/_files/logger_classes.php       |   0
 .../Framework/ObjectManager/etc/config.xsd    |   0
 .../Framework/ObjectManagerInterface.php      |   0
 .../Framework/Option/ArrayInterface.php       |   0
 .../Magento/Framework/Option/ArrayPool.php    |   0
 .../Magento/Framework/Option/README.md        |   0
 lib/internal/Magento/Framework/OsInfo.php     |   0
 lib/internal/Magento/Framework/Parse/Zip.php  |   0
 lib/internal/Magento/Framework/Phrase.php     |   0
 .../Magento/Framework/Phrase/README.md        |   0
 .../Framework/Phrase/Renderer/Composite.php   |   0
 .../Framework/Phrase/Renderer/Inline.php      |   0
 .../Framework/Phrase/Renderer/Placeholder.php |   0
 .../Framework/Phrase/Renderer/Translate.php   |   0
 .../Framework/Phrase/RendererInterface.php    |   0
 .../Test/Unit/Renderer/CompositeTest.php      |   0
 .../Phrase/Test/Unit/Renderer/InlineTest.php  |   0
 .../Test/Unit/Renderer/PlaceholderTest.php    |   0
 .../Test/Unit/Renderer/TranslateTest.php      |   0
 .../Adjustment/AdjustmentInterface.php        |   0
 .../Pricing/Adjustment/Calculator.php         |   0
 .../Adjustment/CalculatorInterface.php        |   0
 .../Pricing/Adjustment/Collection.php         |   0
 .../Framework/Pricing/Adjustment/Factory.php  |   0
 .../Framework/Pricing/Adjustment/Pool.php     |   0
 .../Pricing/Amount/AmountFactory.php          |   0
 .../Pricing/Amount/AmountInterface.php        |   0
 .../Magento/Framework/Pricing/Amount/Base.php |   0
 .../Magento/Framework/Pricing/Helper/Data.php |   0
 .../Framework/Pricing/Price/AbstractPrice.php |   0
 .../Price/BasePriceProviderInterface.php      |   0
 .../Framework/Pricing/Price/Collection.php    |   0
 .../Framework/Pricing/Price/Factory.php       |   0
 .../Magento/Framework/Pricing/Price/Pool.php  |   0
 .../Pricing/Price/PriceInterface.php          |   0
 .../Framework/Pricing/PriceComposite.php      |   0
 .../Pricing/PriceCurrencyInterface.php        |   0
 .../Framework/Pricing/PriceInfo/Base.php      |   0
 .../Framework/Pricing/PriceInfo/Factory.php   |   0
 .../Framework/Pricing/PriceInfoInterface.php  |   0
 .../Magento/Framework/Pricing/Render.php      |   0
 .../Pricing/Render/AbstractAdjustment.php     |   0
 .../Render/AdjustmentRenderInterface.php      |   0
 .../Framework/Pricing/Render/Amount.php       |   0
 .../Pricing/Render/AmountRenderInterface.php  |   0
 .../Framework/Pricing/Render/Layout.php       |   0
 .../Framework/Pricing/Render/PriceBox.php     |   0
 .../Render/PriceBoxRenderInterface.php        |   0
 .../Framework/Pricing/Render/RendererPool.php |   0
 .../Framework/Pricing/SaleableInterface.php   |   0
 .../Test/Unit/Adjustment/CalculatorTest.php   |   0
 .../Test/Unit/Adjustment/CollectionTest.php   |   0
 .../Test/Unit/Adjustment/FactoryTest.php      |   0
 .../Pricing/Test/Unit/Adjustment/PoolTest.php |   0
 .../Test/Unit/Amount/AmountFactoryTest.php    |   0
 .../Pricing/Test/Unit/Amount/BaseTest.php     |   0
 .../Pricing/Test/Unit/Helper/DataTest.php     |   0
 .../Test/Unit/Price/AbstractPriceTest.php     |   0
 .../Test/Unit/Price/CollectionTest.php        |   0
 .../Pricing/Test/Unit/Price/FactoryTest.php   |   0
 .../Pricing/Test/Unit/Price/PoolTest.php      |   0
 .../Pricing/Test/Unit/Price/Stub.php          |   0
 .../Pricing/Test/Unit/PriceInfo/BaseTest.php  |   0
 .../Test/Unit/PriceInfo/FactoryTest.php       |   0
 .../Unit/Render/AbstractAdjustmentTest.php    |   0
 .../Pricing/Test/Unit/Render/AmountTest.php   |   0
 .../Pricing/Test/Unit/Render/LayoutTest.php   |   0
 .../Pricing/Test/Unit/Render/PriceBoxTest.php |   0
 .../Test/Unit/Render/RendererPoolTest.php     |   0
 .../Pricing/Test/Unit/RenderTest.php          |   0
 .../Process/PhpExecutableFinderFactory.php    |   0
 .../Magento/Framework/Process/README.md       |   0
 lib/internal/Magento/Framework/Profiler.php   |   0
 .../Framework/Profiler/Driver/Factory.php     |   0
 .../Framework/Profiler/Driver/Standard.php    |   0
 .../Driver/Standard/AbstractOutput.php        |   0
 .../Driver/Standard/Output/Csvfile.php        |   0
 .../Driver/Standard/Output/Factory.php        |   0
 .../Profiler/Driver/Standard/Output/Html.php  |   0
 .../Driver/Standard/OutputInterface.php       |   0
 .../Profiler/Driver/Standard/Stat.php         |   0
 .../Framework/Profiler/DriverInterface.php    |   0
 .../Magento/Framework/Profiler/README.md      |   0
 .../Profiler/Test/Unit/Driver/FactoryTest.php |   0
 .../Driver/Standard/Output/CsvfileTest.php    |   0
 .../Driver/Standard/Output/FactoryTest.php    |   0
 .../Driver/Standard/OutputAbstractTest.php    |   0
 .../Test/Unit/Driver/Standard/StatTest.php    |   0
 .../Test/Unit/Driver/StandardTest.php         |   0
 .../Reflection/AttributeTypeResolver.php      |   0
 .../Reflection/CustomAttributesProcessor.php  |   0
 .../Reflection/DataObjectProcessor.php        |   0
 .../ExtensionAttributesProcessor.php          |   0
 .../Framework/Reflection/FieldNamer.php       |   0
 .../Framework/Reflection/MethodsMap.php       |   0
 .../Framework/Reflection/NameFinder.php       |   0
 .../Test/Unit/AttributeTypeResolverTest.php   |   0
 .../Reflection/Test/Unit/DataObject.php       |   0
 .../Test/Unit/DataObjectProcessorTest.php     |   0
 .../Test/Unit/ExtensionAttributesObject.php   |   0
 .../Unit/ExtensionAttributesProcessorTest.php |   0
 .../Reflection/Test/Unit/FieldNamerTest.php   |   0
 .../Reflection/Test/Unit/Fixture/TSample.php  |   0
 .../Test/Unit/Fixture/TSampleInterface.php    |   0
 .../Reflection/Test/Unit/MethodsMapTest.php   |   0
 .../Reflection/Test/Unit/NameFinderTest.php   |   0
 .../Test/Unit/TestDataInterface.php           |   0
 .../Reflection/Test/Unit/TestDataObject.php   |   0
 .../Reflection/Test/Unit/TypeCasterTest.php   |   0
 .../Test/Unit/TypeProcessorTest.php           |   0
 .../Framework/Reflection/TypeCaster.php       |   0
 .../Framework/Reflection/TypeProcessor.php    |   0
 lib/internal/Magento/Framework/Registry.php   |   0
 .../Magento/Framework/RequireJs/Config.php    |   0
 .../Config/File/Collector/Aggregated.php      |   0
 .../RequireJs/Test/Unit/ConfigTest.php        |   0
 .../Framework/Search/AbstractKeyValuePair.php |   0
 .../Aggregation/AggregationResolver.php       |   0
 .../AggregationResolverInterface.php          |   0
 .../Search/Adapter/Mysql/Adapter.php          |   0
 .../Adapter/Mysql/Aggregation/Builder.php     |   0
 .../Aggregation/Builder/BucketInterface.php   |   0
 .../Mysql/Aggregation/Builder/Container.php   |   0
 .../Mysql/Aggregation/Builder/Dynamic.php     |   0
 .../Mysql/Aggregation/Builder/Metrics.php     |   0
 .../Mysql/Aggregation/Builder/Range.php       |   0
 .../Mysql/Aggregation/Builder/Term.php        |   0
 .../Aggregation/DataProviderContainer.php     |   0
 .../Aggregation/DataProviderInterface.php     |   0
 .../Adapter/Mysql/Aggregation/Interval.php    |   0
 .../Adapter/Mysql/AggregationFactory.php      |   0
 .../Search/Adapter/Mysql/ConditionManager.php |   0
 .../Search/Adapter/Mysql/DocumentFactory.php  |   0
 .../Search/Adapter/Mysql/Field/Field.php      |   0
 .../Adapter/Mysql/Field/FieldFactory.php      |   0
 .../Adapter/Mysql/Field/FieldInterface.php    |   0
 .../Search/Adapter/Mysql/Field/Resolver.php   |   0
 .../Adapter/Mysql/Field/ResolverInterface.php |   0
 .../Search/Adapter/Mysql/Filter/Builder.php   |   0
 .../Mysql/Filter/Builder/FilterInterface.php  |   0
 .../Adapter/Mysql/Filter/Builder/Range.php    |   0
 .../Adapter/Mysql/Filter/Builder/Term.php     |   0
 .../Adapter/Mysql/Filter/Builder/Wildcard.php |   0
 .../Adapter/Mysql/Filter/BuilderInterface.php |   0
 .../Adapter/Mysql/Filter/Preprocessor.php     |   0
 .../Mysql/Filter/PreprocessorInterface.php    |   0
 .../Adapter/Mysql/IndexBuilderInterface.php   |   0
 .../Framework/Search/Adapter/Mysql/Mapper.php |   0
 .../Adapter/Mysql/Query/Builder/Match.php     |   0
 .../Mysql/Query/Builder/QueryInterface.php    |   0
 .../Adapter/Mysql/Query/MatchContainer.php    |   0
 .../Mysql/Query/MatchContainerFactory.php     |   0
 .../Adapter/Mysql/Query/QueryContainer.php    |   0
 .../Mysql/Query/QueryContainerFactory.php     |   0
 .../Search/Adapter/Mysql/ResponseFactory.php  |   0
 .../Search/Adapter/Mysql/ScoreBuilder.php     |   0
 .../Adapter/Mysql/ScoreBuilderFactory.php     |   0
 .../Search/Adapter/Mysql/TemporaryStorage.php |   0
 .../Adapter/Mysql/TemporaryStorageFactory.php |   0
 .../Search/Adapter/OptionsInterface.php       |   0
 .../Preprocessor/PreprocessorInterface.php    |   0
 .../Framework/Search/AdapterInterface.php     |   0
 .../Framework/Search/Dynamic/Algorithm.php    |   0
 .../Dynamic/Algorithm/AlgorithmInterface.php  |   0
 .../Search/Dynamic/Algorithm/Auto.php         |   0
 .../Search/Dynamic/Algorithm/Improved.php     |   0
 .../Search/Dynamic/Algorithm/Manual.php       |   0
 .../Search/Dynamic/Algorithm/Repository.php   |   0
 .../Search/Dynamic/DataProviderFactory.php    |   0
 .../Search/Dynamic/DataProviderInterface.php  |   0
 .../Search/Dynamic/EntityStorage.php          |   0
 .../Search/Dynamic/EntityStorageFactory.php   |   0
 .../Search/Dynamic/IntervalFactory.php        |   0
 .../Search/Dynamic/IntervalInterface.php      |   0
 .../Framework/Search/EntityMetadata.php       |   0
 .../Magento/Framework/Search/Request.php      |   0
 .../Request/Aggregation/DynamicBucket.php     |   0
 .../Search/Request/Aggregation/Metric.php     |   0
 .../Search/Request/Aggregation/Range.php      |   0
 .../Request/Aggregation/RangeBucket.php       |   0
 .../Search/Request/Aggregation/Status.php     |   0
 .../Request/Aggregation/StatusInterface.php   |   0
 .../Search/Request/Aggregation/TermBucket.php |   0
 .../Framework/Search/Request/Binder.php       |   0
 .../Search/Request/BucketInterface.php        |   0
 .../Framework/Search/Request/Builder.php      |   0
 .../Framework/Search/Request/Cleaner.php      |   0
 .../Framework/Search/Request/Config.php       |   0
 .../Search/Request/Config/Converter.php       |   0
 .../Request/Config/FilesystemReader.php       |   0
 .../Search/Request/Config/SchemaLocator.php   |   0
 .../Framework/Search/Request/Dimension.php    |   0
 .../Request/EmptyRequestDataException.php     |   0
 .../Search/Request/Filter/BoolExpression.php  |   0
 .../Framework/Search/Request/Filter/Range.php |   0
 .../Framework/Search/Request/Filter/Term.php  |   0
 .../Search/Request/Filter/Wildcard.php        |   0
 .../Search/Request/FilterInterface.php        |   0
 .../Request/IndexScopeResolverInterface.php   |   0
 .../Framework/Search/Request/Mapper.php       |   0
 .../NonExistingRequestNameException.php       |   0
 .../Search/Request/Query/BoolExpression.php   |   0
 .../Framework/Search/Request/Query/Filter.php |   0
 .../Framework/Search/Request/Query/Match.php  |   0
 .../Search/Request/QueryInterface.php         |   0
 .../Framework/Search/RequestInterface.php     |   0
 .../Framework/Search/Response/Aggregation.php |   0
 .../Search/Response/Aggregation/Value.php     |   0
 .../Framework/Search/Response/Bucket.php      |   0
 .../Search/Response/QueryResponse.php         |   0
 .../Framework/Search/ResponseInterface.php    |   0
 .../Magento/Framework/Search/Search.php       |   0
 .../Search/SearchEngine/Config/Converter.php  |   0
 .../Search/SearchEngine/Config/Reader.php     |   0
 .../SearchEngine/Config/SchemaLocator.php     |   0
 .../Search/SearchEngine/ConfigInterface.php   |   0
 .../Search/SearchEngineInterface.php          |   0
 .../Search/SearchResponseBuilder.php          |   0
 .../Aggregation/AggregationResolverTest.php   |   0
 .../Test/Unit/Adapter/Mysql/AdapterTest.php   |   0
 .../Aggregation/Builder/ContainerTest.php     |   0
 .../Mysql/Aggregation/Builder/MetricsTest.php |   0
 .../Mysql/Aggregation/Builder/RangeTest.php   |   0
 .../Mysql/Aggregation/Builder/TermTest.php    |   0
 .../Adapter/Mysql/Aggregation/BuilderTest.php |   0
 .../Aggregation/DataProviderContainerTest.php |   0
 .../Adapter/Mysql/ConditionManagerTest.php    |   0
 .../Mysql/Filter/Builder/RangeTest.php        |   0
 .../Adapter/Mysql/Filter/Builder/TermTest.php |   0
 .../Mysql/Filter/Builder/WildcardTest.php     |   0
 .../Unit/Adapter/Mysql/Filter/BuilderTest.php |   0
 .../Test/Unit/Adapter/Mysql/MapperTest.php    |   0
 .../Adapter/Mysql/Query/Builder/MatchTest.php |   0
 .../Mysql/Query/QueryContainerTest.php        |   0
 .../Adapter/Mysql/ResponseFactoryTest.php     |   0
 .../Unit/Adapter/Mysql/ScoreBuilderTest.php   |   0
 .../Adapter/Mysql/TemporaryStorageTest.php    |   0
 .../Test/Unit/Dynamic/IntervalFactoryTest.php |   0
 .../Unit/Request/Aggregation/StatusTest.php   |   0
 .../Search/Test/Unit/Request/BinderTest.php   |   0
 .../Search/Test/Unit/Request/BuilderTest.php  |   0
 .../Search/Test/Unit/Request/CleanerTest.php  |   0
 .../Unit/Request/Config/SchemaLocatorTest.php |   0
 .../Search/Test/Unit/Request/MapperTest.php   |   0
 .../Test/Unit/Response/AggregationTest.php    |   0
 .../Test/Unit/Response/QueryResponseTest.php  |   0
 .../SearchEngine/Config/ConverterTest.php     |   0
 .../SearchEngine/Config/SchemaLocatorTest.php |   0
 .../Test/Unit/SearchResponseBuilderTest.php   |   0
 .../Framework/Search/Test/Unit/SearchTest.php |   0
 .../Search/Test/Unit/_files/search_engine.xml |   0
 .../Magento/Framework/Search/etc/requests.xsd |   0
 .../Framework/Search/etc/search_engine.xsd    |   0
 .../Framework/Search/etc/search_request.xsd   |   0
 .../Search/etc/search_request_merged.xsd      |   0
 .../Framework/Serialize/JsonConverter.php     |   0
 .../Framework/Serialize/JsonValidator.php     |   0
 .../Magento/Framework/Serialize/README.md     |   0
 .../Serialize/Serializer/Base64Json.php       |   0
 .../Framework/Serialize/Serializer/Json.php   |   0
 .../Serialize/Serializer/Serialize.php        |   0
 .../Serialize/SerializerInterface.php         |   0
 .../Serialize/Test/Unit/JsonValidatorTest.php |   0
 .../Test/Unit/Serializer/Base64JsonTest.php   |   0
 .../Unit/Serializer/JsonConverterTest.php     |   0
 .../Test/Unit/Serializer/JsonTest.php         |   0
 .../Test/Unit/Serializer/SerializeTest.php    |   0
 .../Magento/Framework/Session/Config.php      |   0
 .../Session/Config/ConfigInterface.php        |   0
 .../Validator/CookieDomainValidator.php       |   0
 .../Validator/CookieLifetimeValidator.php     |   0
 .../Config/Validator/CookiePathValidator.php  |   0
 .../Magento/Framework/Session/Generic.php     |   0
 .../Magento/Framework/Session/README.md       |   0
 .../Magento/Framework/Session/SaveHandler.php |   0
 .../Framework/Session/SaveHandler/DbTable.php |   0
 .../Framework/Session/SaveHandler/Native.php  |   0
 .../Framework/Session/SaveHandler/Redis.php   |   0
 .../Session/SaveHandler/Redis/Config.php      |   0
 .../Session/SaveHandler/Redis/Logger.php      |   0
 .../Framework/Session/SaveHandlerFactory.php  |   0
 .../Session/SaveHandlerInterface.php          |   0
 .../Framework/Session/SessionManager.php      |   0
 .../Session/SessionManagerInterface.php       |   0
 .../Magento/Framework/Session/SidResolver.php |   0
 .../Session/SidResolverInterface.php          |   0
 .../Magento/Framework/Session/Storage.php     |   0
 .../Framework/Session/StorageInterface.php    |   0
 .../Session/Test/Unit/ConfigTest.php          |   0
 .../Test/Unit/SaveHandler/DbTableTest.php     |   0
 .../Unit/SaveHandler/Redis/ConfigTest.php     |   0
 .../Unit/SaveHandler/Redis/LoggerTest.php     |   0
 .../Test/Unit/SaveHandlerFactoryTest.php      |   0
 .../Session/Test/Unit/SessionManagerTest.php  |   0
 .../Session/Test/Unit/_files/mock_ini_set.php |   0
 .../_files/mock_session_regenerate_id.php     |   0
 .../Magento/Framework/Session/Validator.php   |   0
 .../Framework/Session/ValidatorInterface.php  |   0
 .../Setup/BackendFrontnameGenerator.php       |   0
 .../Framework/Setup/BackupRollback.php        |   0
 .../Framework/Setup/BackupRollbackFactory.php |   0
 .../Setup/ConfigOptionsListInterface.php      |   0
 .../Magento/Framework/Setup/ConsoleLogger.php |   0
 .../Framework/Setup/DataCacheInterface.php    |   0
 .../Framework/Setup/ExternalFKSetup.php       |   0
 .../Framework/Setup/FilePermissions.php       |   0
 .../Framework/Setup/InstallDataInterface.php  |   0
 .../Setup/InstallSchemaInterface.php          |   0
 .../Magento/Framework/Setup/Lists.php         |   0
 .../Framework/Setup/LoggerInterface.php       |   0
 .../Setup/ModuleContextInterface.php          |   0
 .../Setup/ModuleDataSetupInterface.php        |   0
 .../Setup/Option/AbstractConfigOption.php     |   0
 .../Setup/Option/FlagConfigOption.php         |   0
 .../Setup/Option/MultiSelectConfigOption.php  |   0
 .../Setup/Option/SelectConfigOption.php       |   0
 .../Setup/Option/TextConfigOption.php         |   0
 .../Magento/Framework/Setup/README.md         |   0
 .../Framework/Setup/SampleData/Context.php    |   0
 .../Framework/Setup/SampleData/Executor.php   |   0
 .../Setup/SampleData/FixtureManager.php       |   0
 .../Setup/SampleData/InstallerInterface.php   |   0
 .../Framework/Setup/SampleData/State.php      |   0
 .../Setup/SampleData/StateInterface.php       |   0
 .../Framework/Setup/SchemaSetupInterface.php  |   0
 .../Framework/Setup/SetupInterface.php        |   0
 .../Unit/BackendFrontnameGeneratorTest.php    |   0
 .../Test/Unit/BackupRollbackFactoryTest.php   |   0
 .../Setup/Test/Unit/BackupRollbackTest.php    |   0
 .../Setup/Test/Unit/ConsoleLoggerTest.php     |   0
 .../Setup/Test/Unit/FilePermissionsTest.php   |   0
 .../Framework/Setup/Test/Unit/ListsTest.php   |   0
 .../Test/Unit/Option/FlagConfigOptionTest.php |   0
 .../Option/MultiSelectConfigOptionTest.php    |   0
 .../Unit/Option/SelectConfigOptionTest.php    |   0
 .../Test/Unit/Option/TextConfigOptionTest.php |   0
 .../Setup/Test/Unit/SampleData/StateTest.php  |   0
 .../Framework/Setup/UninstallInterface.php    |   0
 .../Framework/Setup/UpgradeDataInterface.php  |   0
 .../Setup/UpgradeSchemaInterface.php          |   0
 lib/internal/Magento/Framework/Shell.php      |   0
 .../Framework/Shell/CommandRenderer.php       |   0
 .../Shell/CommandRendererBackground.php       |   0
 .../Shell/CommandRendererInterface.php        |   0
 .../Framework/Shell/ComplexParameter.php      |   0
 .../Magento/Framework/Shell/Driver.php        |   0
 .../Magento/Framework/Shell/README.md         |   0
 .../Magento/Framework/Shell/Response.php      |   0
 .../Unit/CommandRendererBackgroundTest.php    |   0
 .../Shell/Test/Unit/CommandRendererTest.php   |   0
 .../Shell/Test/Unit/ComplexParameterTest.php  |   0
 .../Magento/Framework/ShellInterface.php      |   0
 .../Magento/Framework/Simplexml/Config.php    |   0
 .../Magento/Framework/Simplexml/Element.php   |   0
 .../Simplexml/Test/Unit/ConfigTest.php        |   0
 .../Simplexml/Test/Unit/ElementTest.php       |   0
 .../Simplexml/Test/Unit/_files/data.xml       |   0
 .../Test/Unit/_files/extend_data.xml          |   0
 .../Simplexml/Test/Unit/_files/mixed_data.xml |   0
 .../Magento/Framework/Stdlib/ArrayManager.php |   0
 .../Magento/Framework/Stdlib/ArrayUtils.php   |   0
 .../Magento/Framework/Stdlib/BooleanUtils.php |   0
 .../Stdlib/Cookie/CookieMetadata.php          |   0
 .../Stdlib/Cookie/CookieMetadataFactory.php   |   0
 .../Stdlib/Cookie/CookieReaderInterface.php   |   0
 .../Framework/Stdlib/Cookie/CookieScope.php   |   0
 .../Stdlib/Cookie/CookieScopeInterface.php    |   0
 .../CookieSizeLimitReachedException.php       |   0
 .../Stdlib/Cookie/FailureToSendException.php  |   0
 .../Stdlib/Cookie/PhpCookieManager.php        |   0
 .../Stdlib/Cookie/PhpCookieReader.php         |   0
 .../Stdlib/Cookie/PublicCookieMetadata.php    |   0
 .../Stdlib/Cookie/SensitiveCookieMetadata.php |   0
 .../Stdlib/CookieManagerInterface.php         |   0
 .../Magento/Framework/Stdlib/DateTime.php     |   0
 .../Framework/Stdlib/DateTime/DateTime.php    |   0
 .../Stdlib/DateTime/DateTimeFormatter.php     |   0
 .../DateTime/DateTimeFormatterInterface.php   |   0
 .../Framework/Stdlib/DateTime/Filter/Date.php |   0
 .../Stdlib/DateTime/Filter/DateTime.php       |   0
 .../Framework/Stdlib/DateTime/Timezone.php    |   0
 .../Stdlib/DateTime/Timezone/Validator.php    |   0
 .../Stdlib/DateTime/TimezoneInterface.php     |   0
 .../Magento/Framework/Stdlib/README.md        |   0
 .../Magento/Framework/Stdlib/StringUtils.php  |   0
 .../Stdlib/Test/Unit/ArrayManagerTest.php     |   0
 .../Stdlib/Test/Unit/ArrayUtilsTest.php       |   0
 .../Stdlib/Test/Unit/BooleanUtilsTest.php     |   0
 .../Test/Unit/Cookie/CookieScopeTest.php      |   0
 .../Test/Unit/Cookie/PhpCookieManagerTest.php |   0
 .../Unit/Cookie/PublicCookieMetadataTest.php  |   0
 .../Cookie/SensitiveCookieMetadataTest.php    |   0
 .../Unit/Cookie/_files/setcookie_mock.php     |   0
 .../Unit/DateTime/DateTimeFormatterTest.php   |   0
 .../Test/Unit/DateTime/DateTimeTest.php       |   0
 .../Test/Unit/DateTime/Filter/DateTest.php    |   0
 .../Unit/DateTime/Timezone/ValidatorTest.php  |   0
 .../Test/Unit/DateTime/TimezoneTest.php       |   0
 .../Stdlib/Test/Unit/StringUtilsTest.php      |   0
 .../Stdlib/Test/Unit/_files/gmdate_mock.php   |   0
 .../Magento/Framework/System/Dirs.php         |   0
 lib/internal/Magento/Framework/System/Ftp.php |   0
 .../Test/Unit/App/ResourceConnectionTest.php  |   0
 .../Test/Unit/App/Scope/SourceTest.php        |   0
 .../Framework/Test/Unit/ArchiveTest.php       |   0
 .../Framework/Test/Unit/AuthorizationTest.php |   0
 .../Framework/Test/Unit/CurrencyTest.php      |   0
 .../DB/AggregatedFieldDataConverterTest.php   |   0
 .../Test/Unit/DB/Query/BatchIteratorTest.php  |   0
 .../Unit/DB/Query/BatchRangeIteratorTest.php  |   0
 .../Test/Unit/DB/Query/GeneratorTest.php      |   0
 .../Test/Unit/Data/CollectionTest.php         |   0
 .../Framework/Test/Unit/DataObjectTest.php    |   0
 .../DomDocument/DomDocumentFactoryTest.php    |   0
 .../Framework/Test/Unit/EscaperTest.php       |   0
 .../Framework/Test/Unit/EventFactoryTest.php  |   0
 .../Magento/Framework/Test/Unit/EventTest.php |   0
 .../Framework/Test/Unit/FilesystemTest.php    |   0
 .../Framework/Test/Unit/FlagManagerTest.php   |   0
 .../Magento/Framework/Test/Unit/FlagTest.php  |   0
 .../Unit/Interception/InterceptorTest.php     |   0
 .../Test/Unit/Interception/Sample/Entity.php  |   0
 .../Unit/Interception/Sample/Interceptor.php  |   0
 .../Test/Unit/Interception/Sample/Plugin1.php |   0
 .../Test/Unit/Interception/Sample/Plugin2.php |   0
 .../Test/Unit/Interception/Sample/Plugin3.php |   0
 .../Test/Unit/Interception/Sample/Plugin4.php |   0
 .../Test/Unit/Message/PhraseFactoryTest.php   |   0
 .../Module/Plugin/DbStatusValidatorTest.php   |   0
 .../Framework/Test/Unit/PhraseTest.php        |   0
 .../Framework/Test/Unit/ProfilerTest.php      |   0
 .../Framework/Test/Unit/RegistryTest.php      |   0
 .../Magento/Framework/Test/Unit/ShellTest.php |   0
 .../Test/Unit/Translate/Js/ConfigTest.php     |   0
 .../Framework/Test/Unit/TranslateTest.php     |   0
 .../Magento/Framework/Test/Unit/UrlTest.php   |   0
 .../Magento/Framework/Test/Unit/UtilTest.php  |   0
 .../Test/Unit/ValidatorFactoryTest.php        |   0
 .../Framework/Test/Unit/ValidatorTest.php     |   0
 .../View/Design/Theme/Label/OptionsTest.php   |   0
 .../Test/Unit/_files/archives/.gitignore      |   0
 .../Framework/Test/Unit/_files/source.txt     |   0
 .../Magento/Framework/TestFramework/README.md |   0
 .../ExtensionAttributesGeneratorTest.php      |   0
 ...ensionAttributesInterfaceGeneratorTest.php |   0
 .../Unit/Autoloader/FactoryGeneratorTest.php  |   0
 .../Unit/Unit/Helper/ProxyTestingTest.php     |   0
 .../Unit/Matcher/MethodInvokedAtIndexTest.php |   0
 .../Unit/Unit/Utility/XsdValidatorTest.php    |   0
 .../Test/Unit/Unit/Utility/_files/invalid.xml |   0
 .../Test/Unit/Unit/Utility/_files/valid.xml   |   0
 .../Test/Unit/Unit/Utility/_files/valid.xsd   |   0
 .../Unit/AbstractFactoryTestCase.php          |   0
 .../ExtensionAttributesGenerator.php          |   0
 .../ExtensionAttributesInterfaceGenerator.php |   0
 .../Unit/Autoloader/FactoryGenerator.php      |   0
 .../Autoloader/GeneratedClassesAutoloader.php |   0
 .../Unit/Autoloader/GeneratorInterface.php    |   0
 .../TestFramework/Unit/BaseTestCase.php       |   0
 .../TestFramework/Unit/Block/Adminhtml.php    |   0
 .../Unit/Helper/ObjectManager.php             |   0
 .../Unit/Helper/ProxyTesting.php              |   0
 .../Unit/Helper/SelectRendererTrait.php       |   0
 .../Unit/Listener/GarbageCleanup.php          |   0
 .../Unit/Listener/ReplaceObjectManager.php    |   0
 .../Unit/Matcher/MethodInvokedAtIndex.php     |   0
 .../TestFramework/Unit/Module/Config.php      |   0
 .../Unit/Utility/XsdValidator.php             |   0
 lib/internal/Magento/Framework/Translate.php  |   0
 .../Framework/Translate/AbstractAdapter.php   |   0
 .../Magento/Framework/Translate/Adapter.php   |   0
 .../Framework/Translate/AdapterInterface.php  |   0
 .../Magento/Framework/Translate/Inline.php    |   0
 .../Translate/Inline/ConfigInterface.php      |   0
 .../Translate/Inline/ParserFactory.php        |   0
 .../Translate/Inline/ParserInterface.php      |   0
 .../Framework/Translate/Inline/Provider.php   |   0
 .../Translate/Inline/ProviderInterface.php    |   0
 .../Framework/Translate/Inline/Proxy.php      |   0
 .../Framework/Translate/Inline/State.php      |   0
 .../Translate/Inline/StateInterface.php       |   0
 .../Framework/Translate/InlineInterface.php   |   0
 .../Magento/Framework/Translate/Js/Config.php |   0
 .../Translate/Locale/Resolver/Plugin.php      |   0
 .../Magento/Framework/Translate/README.md     |   0
 .../Framework/Translate/ResourceInterface.php |   0
 .../Test/Unit/AdapterAbstractTest.php         |   0
 .../Translate/Test/Unit/AdapterTest.php       |   0
 .../Translate/Test/Unit/Inline/ProxyTest.php  |   0
 .../Translate/Test/Unit/Inline/StateTest.php  |   0
 .../Translate/Test/Unit/InlineTest.php        |   0
 .../Magento/Framework/TranslateInterface.php  |   0
 .../Magento/Framework/Unserialize/README.md   |   0
 .../Unserialize/Test/Unit/UnserializeTest.php |   0
 .../Framework/Unserialize/Unserialize.php     |   0
 lib/internal/Magento/Framework/Url.php        |   0
 .../Magento/Framework/Url/Decoder.php         |   0
 .../Framework/Url/DecoderInterface.php        |   0
 .../Magento/Framework/Url/Encoder.php         |   0
 .../Framework/Url/EncoderInterface.php        |   0
 .../Magento/Framework/Url/Helper/Data.php     |   0
 .../Magento/Framework/Url/HostChecker.php     |   0
 .../Framework/Url/ModifierComposite.php       |   0
 .../Framework/Url/ModifierInterface.php       |   0
 .../Framework/Url/QueryParamsResolver.php     |   0
 .../Url/QueryParamsResolverInterface.php      |   0
 .../Url/RouteParamsPreprocessorComposite.php  |   0
 .../Url/RouteParamsPreprocessorInterface.php  |   0
 .../Framework/Url/RouteParamsResolver.php     |   0
 .../Url/RouteParamsResolverFactory.php        |   0
 .../Url/RouteParamsResolverInterface.php      |   0
 .../Magento/Framework/Url/ScopeInterface.php  |   0
 .../Magento/Framework/Url/ScopeResolver.php   |   0
 .../Framework/Url/ScopeResolverInterface.php  |   0
 .../Magento/Framework/Url/SecurityInfo.php    |   0
 .../Framework/Url/SecurityInfoInterface.php   |   0
 .../Framework/Url/Test/Unit/DecoderTest.php   |   0
 .../Url/Test/Unit/Helper/DataTest.php         |   0
 .../Url/Test/Unit/HostCheckerTest.php         |   0
 .../Url/Test/Unit/QueryParamsResolverTest.php |   0
 .../Unit/RouteParamsResolverFactoryTest.php   |   0
 .../Url/Test/Unit/ScopeResolverTest.php       |   0
 .../Url/Test/Unit/SecurityInfoTest.php        |   0
 .../Framework/Url/Test/Unit/ValidatorTest.php |   0
 .../Magento/Framework/Url/Validator.php       |   0
 lib/internal/Magento/Framework/UrlFactory.php |   0
 .../Magento/Framework/UrlInterface.php        |   0
 lib/internal/Magento/Framework/Util.php       |   0
 lib/internal/Magento/Framework/Validator.php  |   0
 .../Framework/Validator/AbstractValidator.php |   0
 .../Framework/Validator/AllowedProtocols.php  |   0
 .../Magento/Framework/Validator/Alnum.php     |   0
 .../Magento/Framework/Validator/Builder.php   |   0
 .../Magento/Framework/Validator/Config.php    |   0
 .../Framework/Validator/Constraint.php        |   0
 .../Framework/Validator/Constraint/Option.php |   0
 .../Validator/Constraint/Option/Callback.php  |   0
 .../Validator/Constraint/OptionInterface.php  |   0
 .../Validator/Constraint/Property.php         |   0
 .../Framework/Validator/ConstraintFactory.php |   0
 .../Magento/Framework/Validator/Currency.php  |   0
 .../Framework/Validator/DataObject.php        |   0
 .../Framework/Validator/EmailAddress.php      |   0
 .../Framework/Validator/Entity/Properties.php |   0
 .../Magento/Framework/Validator/Exception.php |   0
 .../Magento/Framework/Validator/Factory.php   |   0
 .../Framework/Validator/File/Extension.php    |   0
 .../Framework/Validator/File/ImageSize.php    |   0
 .../Framework/Validator/File/IsImage.php      |   0
 .../Magento/Framework/Validator/File/Size.php |   0
 .../Framework/Validator/FloatUtils.php        |   0
 .../Magento/Framework/Validator/IntUtils.php  |   0
 .../Magento/Framework/Validator/Ip.php        |   0
 .../Magento/Framework/Validator/Locale.php    |   0
 .../Magento/Framework/Validator/NotEmpty.php  |   0
 .../Magento/Framework/Validator/README.md     |   0
 .../Magento/Framework/Validator/Regex.php     |   0
 .../Framework/Validator/StringLength.php      |   0
 .../Validator/Test/Unit/BuilderTest.php       |   0
 .../Validator/Test/Unit/ConfigTest.php        |   0
 .../Unit/Constraint/Option/CallbackTest.php   |   0
 .../Test/Unit/Constraint/OptionTest.php       |   0
 .../Test/Unit/Constraint/PropertyTest.php     |   0
 .../Validator/Test/Unit/ConstraintTest.php    |   0
 .../Validator/Test/Unit/CurrencyTest.php      |   0
 .../Validator/Test/Unit/EmailAddressTest.php  |   0
 .../Test/Unit/Entity/PropertiesTest.php       |   0
 .../Validator/Test/Unit/ExceptionTest.php     |   0
 .../Validator/Test/Unit/FactoryTest.php       |   0
 .../Validator/Test/Unit/LocaleTest.php        |   0
 .../Validator/Test/Unit/ObjectTest.php        |   0
 .../Validator/Test/Unit/StringLengthTest.php  |   0
 .../Validator/Test/Unit/Test/Alnum.php        |   0
 .../Validator/Test/Unit/Test/Callback.php     |   0
 .../Validator/Test/Unit/Test/IsInt.php        |   0
 .../Validator/Test/Unit/Test/IsTrue.php       |   0
 .../Validator/Test/Unit/Test/NotEmpty.php     |   0
 .../Validator/Test/Unit/Test/StringLength.php |   0
 .../Validator/Test/Unit/TimezoneTest.php      |   0
 .../Framework/Validator/Test/Unit/UrlTest.php |   0
 .../Test/Unit/ValidatorAbstractTest.php       |   0
 .../negative/invalid_builder_class.xml        |   0
 .../negative/invalid_builder_instance.xml     |   0
 .../negative/invalid_child_for_option.xml     |   0
 .../negative/invalid_constraint.xml           |   0
 .../negative/invalid_content_for_callback.xml |   0
 .../negative/invalid_entity_callback.xml      |   0
 .../validation/negative/invalid_method.xml    |   0
 .../negative/invalid_method_callback.xml      |   0
 .../multiple_callback_in_argument.xml         |   0
 .../negative/no_class_for_constraint.xml      |   0
 .../validation/negative/no_constraint.xml     |   0
 .../negative/no_name_for_entity.xml           |   0
 .../validation/negative/no_name_for_group.xml |   0
 .../validation/negative/no_name_for_rule.xml  |   0
 .../negative/no_rule_for_reference.xml        |   0
 .../validation/negative/not_unique_use.xml    |   0
 .../positive/builder/validation.xml           |   0
 .../positive/module_a/validation.xml          |   0
 .../positive/module_b/validation.xml          |   0
 .../Magento/Framework/Validator/Timezone.php  |   0
 .../Framework/Validator/UniversalFactory.php  |   0
 .../Magento/Framework/Validator/Url.php       |   0
 .../Validator/ValidatorInterface.php          |   0
 .../Framework/Validator/etc/validation.xsd    |   0
 .../Magento/Framework/ValidatorFactory.php    |   0
 lib/internal/Magento/Framework/View/Asset.php |   0
 .../Framework/View/Asset/AssetInterface.php   |   0
 .../Magento/Framework/View/Asset/Bundle.php   |   0
 .../Framework/View/Asset/Bundle/Config.php    |   0
 .../View/Asset/Bundle/ConfigInterface.php     |   0
 .../Framework/View/Asset/Bundle/Manager.php   |   0
 .../Framework/View/Asset/Collection.php       |   0
 .../Magento/Framework/View/Asset/Config.php   |   0
 .../Framework/View/Asset/ConfigInterface.php  |   0
 .../View/Asset/ContentProcessorException.php  |   0
 .../View/Asset/ContentProcessorInterface.php  |   0
 .../Framework/View/Asset/ContextInterface.php |   0
 .../Magento/Framework/View/Asset/File.php     |   0
 .../Framework/View/Asset/File/Context.php     |   0
 .../View/Asset/File/ContextFactory.php        |   0
 .../View/Asset/File/FallbackContext.php       |   0
 .../Asset/File/FallbackContextFactory.php     |   0
 .../View/Asset/File/NotFoundException.php     |   0
 .../Framework/View/Asset/FileFactory.php      |   0
 .../View/Asset/GroupedCollection.php          |   0
 .../Framework/View/Asset/LocalInterface.php   |   0
 .../Framework/View/Asset/LockerProcess.php    |   0
 .../View/Asset/LockerProcessInterface.php     |   0
 .../Framework/View/Asset/MergeService.php     |   0
 .../View/Asset/MergeStrategy/Checksum.php     |   0
 .../View/Asset/MergeStrategy/Direct.php       |   0
 .../View/Asset/MergeStrategy/FileExists.php   |   0
 .../View/Asset/MergeStrategyInterface.php     |   0
 .../View/Asset/MergeableInterface.php         |   0
 .../Magento/Framework/View/Asset/Merged.php   |   0
 .../Framework/View/Asset/Minification.php     |   0
 .../View/Asset/NotationResolver/Module.php    |   0
 .../View/Asset/NotationResolver/Variable.php  |   0
 .../Asset/PreProcessor/AlternativeSource.php  |   0
 .../AlternativeSource/AssetBuilder.php        |   0
 .../AlternativeSourceInterface.php            |   0
 .../View/Asset/PreProcessor/Chain.php         |   0
 .../View/Asset/PreProcessor/ChainFactory.php  |   0
 .../PreProcessor/ChainFactoryInterface.php    |   0
 .../Asset/PreProcessor/FileNameResolver.php   |   0
 .../FilenameResolverInterface.php             |   0
 .../View/Asset/PreProcessor/Helper/Sort.php   |   0
 .../PreProcessor/Helper/SortInterface.php     |   0
 .../MinificationFilenameResolver.php          |   0
 .../View/Asset/PreProcessor/Minify.php        |   0
 .../Asset/PreProcessor/ModuleNotation.php     |   0
 .../View/Asset/PreProcessor/Passthrough.php   |   0
 .../View/Asset/PreProcessor/Pool.php          |   0
 .../Asset/PreProcessor/VariableNotation.php   |   0
 .../View/Asset/PreProcessorInterface.php      |   0
 .../Framework/View/Asset/PropertyGroup.php    |   0
 .../View/Asset/PropertyGroupFactory.php       |   0
 .../Magento/Framework/View/Asset/Remote.php   |   0
 .../Framework/View/Asset/RemoteFactory.php    |   0
 .../Framework/View/Asset/Repository.php       |   0
 .../Framework/View/Asset/RepositoryMap.php    |   0
 .../Magento/Framework/View/Asset/Source.php   |   0
 .../Asset/SourceFileGeneratorInterface.php    |   0
 .../View/Asset/SourceFileGeneratorPool.php    |   0
 .../Magento/Framework/View/BlockPool.php      |   0
 .../Magento/Framework/View/Config.php         |   0
 .../Framework/View/ConfigInterface.php        |   0
 .../Magento/Framework/View/Context.php        |   0
 .../Magento/Framework/View/DataSourcePool.php |   0
 .../View/Design/Fallback/Rule/Composite.php   |   0
 .../Design/Fallback/Rule/ModularSwitch.php    |   0
 .../Fallback/Rule/ModularSwitchFactory.php    |   0
 .../View/Design/Fallback/Rule/Module.php      |   0
 .../Design/Fallback/Rule/ModuleFactory.php    |   0
 .../Design/Fallback/Rule/RuleInterface.php    |   0
 .../View/Design/Fallback/Rule/Simple.php      |   0
 .../Design/Fallback/Rule/SimpleFactory.php    |   0
 .../View/Design/Fallback/Rule/Theme.php       |   0
 .../Design/Fallback/Rule/ThemeFactory.php     |   0
 .../View/Design/Fallback/RulePool.php         |   0
 .../Fallback/EmailTemplateFile.php            |   0
 .../Design/FileResolution/Fallback/File.php   |   0
 .../FileResolution/Fallback/LocaleFile.php    |   0
 .../Fallback/Resolver/Alternative.php         |   0
 .../Fallback/Resolver/Minification.php        |   0
 .../Fallback/Resolver/Simple.php              |   0
 .../Fallback/ResolverInterface.php            |   0
 .../FileResolution/Fallback/StaticFile.php    |   0
 .../FileResolution/Fallback/TemplateFile.php  |   0
 .../View/Design/Theme/Customization.php       |   0
 .../Theme/Customization/AbstractFile.php      |   0
 .../Theme/Customization/ConfigInterface.php   |   0
 .../Design/Theme/Customization/File/Css.php   |   0
 .../Design/Theme/Customization/File/Js.php    |   0
 .../Customization/FileAssetInterface.php      |   0
 .../Theme/Customization/FileInterface.php     |   0
 .../Customization/FileServiceFactory.php      |   0
 .../View/Design/Theme/Customization/Path.php  |   0
 .../Design/Theme/CustomizationInterface.php   |   0
 .../View/Design/Theme/Domain/Factory.php      |   0
 .../Design/Theme/Domain/PhysicalInterface.php |   0
 .../Design/Theme/Domain/StagingInterface.php  |   0
 .../Design/Theme/Domain/VirtualInterface.php  |   0
 .../Design/Theme/File/CollectionInterface.php |   0
 .../View/Design/Theme/FileFactory.php         |   0
 .../View/Design/Theme/FileInterface.php       |   0
 .../Design/Theme/FileProviderInterface.php    |   0
 .../View/Design/Theme/FlyweightFactory.php    |   0
 .../Framework/View/Design/Theme/Image.php     |   0
 .../View/Design/Theme/Image/PathInterface.php |   0
 .../View/Design/Theme/Image/Uploader.php      |   0
 .../View/Design/Theme/ImageFactory.php        |   0
 .../Framework/View/Design/Theme/Label.php     |   0
 .../View/Design/Theme/Label/ListInterface.php |   0
 .../View/Design/Theme/Label/Options.php       |   0
 .../View/Design/Theme/LabelFactory.php        |   0
 .../View/Design/Theme/ListInterface.php       |   0
 .../View/Design/Theme/ResolverInterface.php   |   0
 .../Framework/View/Design/Theme/ThemeList.php |   0
 .../View/Design/Theme/ThemePackage.php        |   0
 .../View/Design/Theme/ThemePackageFactory.php |   0
 .../View/Design/Theme/ThemePackageList.php    |   0
 .../View/Design/Theme/ThemeProvider.php       |   0
 .../Design/Theme/ThemeProviderInterface.php   |   0
 .../Framework/View/Design/Theme/Validator.php |   0
 .../Framework/View/Design/ThemeFactory.php    |   0
 .../Framework/View/Design/ThemeInterface.php  |   0
 .../Framework/View/DesignExceptions.php       |   0
 .../Framework/View/DesignInterface.php        |   0
 .../Magento/Framework/View/DesignLoader.php   |   0
 .../Framework/View/Element/AbstractBlock.php  |   0
 .../View/Element/Block/ArgumentInterface.php  |   0
 .../Framework/View/Element/BlockFactory.php   |   0
 .../Framework/View/Element/BlockInterface.php |   0
 .../Framework/View/Element/Context.php        |   0
 .../View/Element/ExceptionHandlerBlock.php    |   0
 .../Element/ExceptionHandlerBlockFactory.php  |   0
 .../Framework/View/Element/FormKey.php        |   0
 .../Framework/View/Element/Html/Calendar.php  |   0
 .../Framework/View/Element/Html/Date.php      |   0
 .../Framework/View/Element/Html/Link.php      |   0
 .../View/Element/Html/Link/Current.php        |   0
 .../Framework/View/Element/Html/Links.php     |   0
 .../Framework/View/Element/Html/Select.php    |   0
 .../Framework/View/Element/Js/Components.php  |   0
 .../Framework/View/Element/Js/Cookie.php      |   0
 .../Message/InterpretationMediator.php        |   0
 .../Message/InterpretationStrategy.php        |   0
 .../InterpretationStrategyInterface.php       |   0
 .../Message/MessageConfigurationsPool.php     |   0
 .../Message/Renderer/BlockRenderer.php        |   0
 .../Renderer/BlockRenderer/Template.php       |   0
 .../Message/Renderer/EscapeRenderer.php       |   0
 .../Message/Renderer/PoolInterface.php        |   0
 .../Message/Renderer/RendererInterface.php    |   0
 .../Message/Renderer/RenderersPool.php        |   0
 .../Framework/View/Element/Messages.php       |   0
 .../Framework/View/Element/Redirect.php       |   0
 .../View/Element/RendererInterface.php        |   0
 .../Framework/View/Element/RendererList.php   |   0
 .../Framework/View/Element/Template.php       |   0
 .../View/Element/Template/Context.php         |   0
 .../View/Element/Template/File/Resolver.php   |   0
 .../View/Element/Template/File/Validator.php  |   0
 .../Magento/Framework/View/Element/Text.php   |   0
 .../Framework/View/Element/Text/ListText.php  |   0
 .../View/Element/Text/TextList/Item.php       |   0
 .../View/Element/Text/TextList/Link.php       |   0
 .../Interpreter/ConfigurableObject.php        |   0
 .../UiComponent/ArrayObjectFactory.php        |   0
 .../UiComponent/BlockWrapperInterface.php     |   0
 .../Element/UiComponent/Config/Converter.php  |   0
 .../Element/UiComponent/Config/DomMerger.php  |   0
 .../UiComponent/Config/DomMergerInterface.php |   0
 .../FileCollector/AggregatedFileCollector.php |   0
 .../AggregatedFileCollectorFactory.php        |   0
 .../Config/FileCollectorInterface.php         |   0
 .../UiComponent/Config/ManagerInterface.php   |   0
 .../Config/Provider/Component/Definition.php  |   0
 .../UiComponent/Config/Provider/Template.php  |   0
 .../Element/UiComponent/Config/Reader.php     |   0
 .../UiComponent/Config/ReaderFactory.php      |   0
 .../UiComponent/Config/UiReaderInterface.php  |   0
 .../UiComponent/ContainerInterface.php        |   0
 .../ContentType/AbstractContentType.php       |   0
 .../ContentType/ContentTypeFactory.php        |   0
 .../ContentType/ContentTypeInterface.php      |   0
 .../Element/UiComponent/ContentType/Html.php  |   0
 .../Element/UiComponent/ContentType/Json.php  |   0
 .../Element/UiComponent/ContentType/Xml.php   |   0
 .../View/Element/UiComponent/Context.php      |   0
 .../Element/UiComponent/ContextFactory.php    |   0
 .../Element/UiComponent/ContextInterface.php  |   0
 .../UiComponent/Control/ActionPoolFactory.php |   0
 .../Control/ActionPoolInterface.php           |   0
 .../Control/ButtonProviderFactory.php         |   0
 .../Control/ButtonProviderInterface.php       |   0
 .../UiComponent/Control/ControlInterface.php  |   0
 .../UiComponent/Control/DummyButton.php       |   0
 .../DataProvider/CollectionFactory.php        |   0
 .../UiComponent/DataProvider/DataProvider.php |   0
 .../DataProvider/DataProviderInterface.php    |   0
 .../UiComponent/DataProvider/Document.php     |   0
 .../DataProvider/FilterApplierInterface.php   |   0
 .../UiComponent/DataProvider/FilterPool.php   |   0
 .../DataProvider/FulltextFilter.php           |   0
 .../DataProvider/RegularFilter.php            |   0
 .../UiComponent/DataProvider/Reporting.php    |   0
 .../UiComponent/DataProvider/SearchResult.php |   0
 .../UiComponent/DataSourceInterface.php       |   0
 .../Factory/ComponentFactoryInterface.php     |   0
 .../Factory/HtmlContentFactory.php            |   0
 .../Element/UiComponent/JsConfigInterface.php |   0
 .../Element/UiComponent/LayoutInterface.php   |   0
 .../Element/UiComponent/ObserverInterface.php |   0
 .../Element/UiComponent/PoolInterface.php     |   0
 .../View/Element/UiComponent/Processor.php    |   0
 .../Element/UiComponent/SubjectInterface.php  |   0
 .../View/Element/UiComponentInterface.php     |   0
 .../View/EntitySpecificHandlesList.php        |   0
 lib/internal/Magento/Framework/View/File.php  |   0
 .../Framework/View/File/Collector/Base.php    |   0
 .../Collector/Decorator/ModuleDependency.php  |   0
 .../File/Collector/Decorator/ModuleOutput.php |   0
 .../View/File/Collector/Override/Base.php     |   0
 .../File/Collector/Override/ThemeModular.php  |   0
 .../Framework/View/File/Collector/Theme.php   |   0
 .../View/File/Collector/ThemeModular.php      |   0
 .../View/File/CollectorInterface.php          |   0
 .../Magento/Framework/View/File/Factory.php   |   0
 .../Magento/Framework/View/File/FileList.php  |   0
 .../View/File/FileList/CollateInterface.php   |   0
 .../Framework/View/File/FileList/Collator.php |   0
 .../Framework/View/File/FileList/Factory.php  |   0
 .../Magento/Framework/View/FileSystem.php     |   0
 .../Magento/Framework/View/Helper/Js.php      |   0
 .../Framework/View/Helper/PathPattern.php     |   0
 .../Framework/View/Layout/AclCondition.php    |   0
 .../Argument/Interpreter/DataObject.php       |   0
 .../Interpreter/Decorator/Updater.php         |   0
 .../Argument/Interpreter/HelperMethod.php     |   0
 .../Argument/Interpreter/NamedParams.php      |   0
 .../Layout/Argument/Interpreter/Options.php   |   0
 .../Argument/Interpreter/Passthrough.php      |   0
 .../View/Layout/Argument/Interpreter/Url.php  |   0
 .../Framework/View/Layout/Argument/Parser.php |   0
 .../View/Layout/Argument/UpdaterInterface.php |   0
 .../Magento/Framework/View/Layout/Builder.php |   0
 .../Framework/View/Layout/BuilderFactory.php  |   0
 .../View/Layout/BuilderInterface.php          |   0
 .../View/Layout/Condition/Condition.php       |   0
 .../Layout/Condition/ConditionFactory.php     |   0
 .../VisibilityConditionInterface.php          |   0
 .../Framework/View/Layout/ConfigCondition.php |   0
 .../Framework/View/Layout/Data/Structure.php  |   0
 .../Magento/Framework/View/Layout/Element.php |   0
 .../View/Layout/File/Collector/Aggregated.php |   0
 .../View/Layout/Generator/Container.php       |   0
 .../View/Layout/Generator/Context.php         |   0
 .../View/Layout/Generator/ContextFactory.php  |   0
 .../View/Layout/Generator/Structure.php       |   0
 .../View/Layout/Generator/UiComponent.php     |   0
 .../View/Layout/GeneratorInterface.php        |   0
 .../Framework/View/Layout/GeneratorPool.php   |   0
 .../Magento/Framework/View/Layout/Generic.php |   0
 .../Framework/View/Layout/PageType/Config.php |   0
 .../View/Layout/PageType/Config/Converter.php |   0
 .../View/Layout/PageType/Config/Reader.php    |   0
 .../Layout/PageType/Config/SchemaLocator.php  |   0
 .../Magento/Framework/View/Layout/Pool.php    |   0
 .../View/Layout/ProcessorFactory.php          |   0
 .../View/Layout/ProcessorInterface.php        |   0
 .../Magento/Framework/View/Layout/Proxy.php   |   0
 .../Framework/View/Layout/Reader/Context.php  |   0
 .../View/Layout/Reader/ContextFactory.php     |   0
 .../Framework/View/Layout/Reader/Move.php     |   0
 .../View/Layout/Reader/UiComponent.php        |   0
 .../Layout/Reader/Visibility/Condition.php    |   0
 .../Framework/View/Layout/ReaderFactory.php   |   0
 .../Framework/View/Layout/ReaderInterface.php |   0
 .../Framework/View/Layout/ReaderPool.php      |   0
 .../View/Layout/ScheduledStructure.php        |   0
 .../View/Layout/ScheduledStructure/Helper.php |   0
 .../Framework/View/Layout/etc/head.xsd        |   0
 .../Framework/View/Layout/etc/html.xsd        |   0
 .../View/Layout/etc/layout_merged.xsd         |   0
 .../View/Layout/etc/page_configuration.xsd    |   0
 .../Framework/View/Layout/etc/page_types.xsd  |   0
 .../Magento/Framework/View/LayoutFactory.php  |   0
 .../Framework/View/LayoutInterface.php        |   0
 .../Framework/View/Model/Layout/Merge.php     |   0
 .../View/Model/Layout/Translator.php          |   0
 .../View/Model/Layout/Update/Validator.php    |   0
 .../PageLayout/Config/BuilderInterface.php    |   0
 .../Magento/Framework/View/Page/Builder.php   |   0
 .../Magento/Framework/View/Page/Config.php    |   0
 .../View/Page/Config/Generator/Body.php       |   0
 .../View/Page/Config/Generator/Head.php       |   0
 .../View/Page/Config/Reader/Body.php          |   0
 .../View/Page/Config/Reader/Head.php          |   0
 .../View/Page/Config/Reader/Html.php          |   0
 .../Framework/View/Page/Config/Renderer.php   |   0
 .../View/Page/Config/RendererFactory.php      |   0
 .../View/Page/Config/RendererInterface.php    |   0
 .../Framework/View/Page/Config/Structure.php  |   0
 .../Framework/View/Page/ConfigFactory.php     |   0
 .../Framework/View/Page/FaviconInterface.php  |   0
 .../Framework/View/Page/Layout/Reader.php     |   0
 .../Magento/Framework/View/Page/Title.php     |   0
 .../Framework/View/PageLayout/Config.php      |   0
 .../PageLayout/File/Collector/Aggregated.php  |   0
 .../Framework/View/PageLayout/etc/layouts.xsd |   0
 lib/internal/Magento/Framework/View/README.md |   0
 .../Framework/View/Render/RenderFactory.php   |   0
 .../Framework/View/RenderInterface.php        |   0
 .../Magento/Framework/View/Result/Layout.php  |   0
 .../Framework/View/Result/LayoutFactory.php   |   0
 .../Magento/Framework/View/Result/Page.php    |   0
 .../Framework/View/Result/PageFactory.php     |   0
 .../Framework/View/Template/Html/Minifier.php |   0
 .../View/Template/Html/MinifierInterface.php  |   0
 .../Framework/View/TemplateEngine/Php.php     |   0
 .../Framework/View/TemplateEngine/Xhtml.php   |   0
 .../View/TemplateEngine/Xhtml/Compiler.php    |   0
 .../Xhtml/Compiler/Attribute.php              |   0
 .../Xhtml/Compiler/AttributeInterface.php     |   0
 .../TemplateEngine/Xhtml/Compiler/Cdata.php   |   0
 .../Xhtml/Compiler/CdataInterface.php         |   0
 .../TemplateEngine/Xhtml/Compiler/Comment.php |   0
 .../Xhtml/Compiler/CommentInterface.php       |   0
 .../Compiler/Directive/CallableMethod.php     |   0
 .../Compiler/Directive/DirectiveInterface.php |   0
 .../Xhtml/Compiler/Directive/Variable.php     |   0
 .../Compiler/Element/ElementInterface.php     |   0
 .../TemplateEngine/Xhtml/Compiler/Text.php    |   0
 .../Xhtml/Compiler/TextInterface.php          |   0
 .../TemplateEngine/Xhtml/CompilerFactory.php  |   0
 .../Xhtml/CompilerInterface.php               |   0
 .../TemplateEngine/Xhtml/ResultFactory.php    |   0
 .../TemplateEngine/Xhtml/ResultInterface.php  |   0
 .../View/TemplateEngine/Xhtml/Template.php    |   0
 .../TemplateEngine/Xhtml/TemplateFactory.php  |   0
 .../Framework/View/TemplateEngineFactory.php  |   0
 .../View/TemplateEngineInterface.php          |   0
 .../Framework/View/TemplateEnginePool.php     |   0
 .../Test/Unit/Asset/Bundle/ManagerTest.php    |   0
 .../View/Test/Unit/Asset/BundleTest.php       |   0
 .../View/Test/Unit/Asset/CollectionTest.php   |   0
 .../View/Test/Unit/Asset/ConfigTest.php       |   0
 .../Unit/Asset/File/FallbackContextTest.php   |   0
 .../View/Test/Unit/Asset/FileTest.php         |   0
 .../Test/Unit/Asset/GroupedCollectionTest.php |   0
 .../Test/Unit/Asset/LockerProcessTest.php     |   0
 .../View/Test/Unit/Asset/MergeServiceTest.php |   0
 .../Unit/Asset/MergeStrategy/ChecksumTest.php |   0
 .../Unit/Asset/MergeStrategy/DirectTest.php   |   0
 .../Asset/MergeStrategy/FileExistsTest.php    |   0
 .../View/Test/Unit/Asset/MergedTest.php       |   0
 .../View/Test/Unit/Asset/MinificationTest.php |   0
 .../Asset/NotationResolver/ModuleTest.php     |   0
 .../Asset/NotationResolver/VariableTest.php   |   0
 .../PreProcessor/AlternativeSourceTest.php    |   0
 .../Unit/Asset/PreProcessor/ChainTest.php     |   0
 .../Asset/PreProcessor/Helper/SortTest.php    |   0
 .../MinificationFilenameResolverTest.php      |   0
 .../Unit/Asset/PreProcessor/MinifyTest.php    |   0
 .../Test/Unit/Asset/PreProcessor/PoolTest.php |   0
 .../Test/Unit/Asset/PropertyGroupTest.php     |   0
 .../View/Test/Unit/Asset/RemoteTest.php       |   0
 .../View/Test/Unit/Asset/RepositoryTest.php   |   0
 .../View/Test/Unit/Asset/SourceTest.php       |   0
 .../View/Test/Unit/BlockPoolTest.php          |   0
 .../View/Test/Unit/BlockPoolTestBlock.php     |   0
 .../Framework/View/Test/Unit/ConfigTest.php   |   0
 .../Framework/View/Test/Unit/ContextTest.php  |   0
 .../View/Test/Unit/DataSourcePoolTest.php     |   0
 .../Test/Unit/DataSourcePoolTestBlock.php     |   0
 .../Design/Fallback/Rule/CompositeTest.php    |   0
 .../Fallback/Rule/ModularSwitchTest.php       |   0
 .../Unit/Design/Fallback/Rule/ModuleTest.php  |   0
 .../Unit/Design/Fallback/Rule/SimpleTest.php  |   0
 .../Unit/Design/Fallback/Rule/ThemeTest.php   |   0
 .../Unit/Design/Fallback/RulePoolTest.php     |   0
 .../FileResolution/Fallback/FileTest.php      |   0
 .../Fallback/LocaleFileTest.php               |   0
 .../Fallback/Resolver/AlternativeTest.php     |   0
 .../Fallback/Resolver/MinificationTest.php    |   0
 .../Fallback/Resolver/SimpleTest.php          |   0
 .../Fallback/StaticFileTest.php               |   0
 .../Fallback/TemplateFileTest.php             |   0
 .../Theme/Customization/AbstractFileTest.php  |   0
 .../Design/Theme/Customization/PathTest.php   |   0
 .../Unit/Design/Theme/CustomizationTest.php   |   0
 .../Unit/Design/Theme/Domain/FactoryTest.php  |   0
 .../Design/Theme/FlyweightFactoryTest.php     |   0
 .../Unit/Design/Theme/Image/UploaderTest.php  |   0
 .../View/Test/Unit/Design/Theme/ImageTest.php |   0
 .../View/Test/Unit/Design/Theme/LabelTest.php |   0
 .../Design/Theme/ThemePackageListTest.php     |   0
 .../Unit/Design/Theme/ThemePackageTest.php    |   0
 .../View/Test/Unit/DesignExceptionsTest.php   |   0
 .../View/Test/Unit/DesignLoaderTest.php       |   0
 .../Test/Unit/Element/AbstractBlockTest.php   |   0
 .../Test/Unit/Element/BlockFactoryTest.php    |   0
 .../View/Test/Unit/Element/FormKeyTest.php    |   0
 .../Test/Unit/Element/Html/CalendarTest.php   |   0
 .../Unit/Element/Html/Link/CurrentTest.php    |   0
 .../View/Test/Unit/Element/Html/LinkTest.php  |   0
 .../View/Test/Unit/Element/Html/LinksTest.php |   0
 .../Test/Unit/Element/Html/SelectTest.php     |   0
 .../View/Test/Unit/Element/Js/CookieTest.php  |   0
 .../Message/InterpretationMediatorTest.php    |   0
 .../Message/InterpretationStrategyTest.php    |   0
 .../Message/MessageConfigurationsPoolTest.php |   0
 .../Renderer/BlockRenderer/TemplateTest.php   |   0
 .../Message/Renderer/BlockRendererTest.php    |   0
 .../Message/Renderer/EscapeRendererTest.php   |   0
 .../Message/Renderer/RenderersPoolTest.php    |   0
 .../View/Test/Unit/Element/MessagesTest.php   |   0
 .../Test/Unit/Element/RendererListTest.php    |   0
 .../Element/Template/File/ResolverTest.php    |   0
 .../Element/Template/File/ValidatorTest.php   |   0
 .../View/Test/Unit/Element/TemplateTest.php   |   0
 .../Unit/Element/Text/TextList/ItemTest.php   |   0
 .../Unit/Element/Text/TextList/LinkTest.php   |   0
 .../View/Test/Unit/Element/TextTest.php       |   0
 .../Unit/Element/UiComponent/ContextTest.php  |   0
 .../UiComponent/Control/DummyButtonTest.php   |   0
 .../DataProvider/FulltextFilterTest.php       |   0
 .../Element/UiComponent/ProcessorTest.php     |   0
 .../Unit/EntitySpecificHandlesListTest.php    |   0
 .../Test/Unit/File/Collector/BaseTest.php     |   0
 .../Decorator/ModuleDependencyTest.php        |   0
 .../Collector/Decorator/ModuleOutputTest.php  |   0
 .../Unit/File/Collector/Override/BaseTest.php |   0
 .../Collector/Override/ThemeModularTest.php   |   0
 .../Unit/File/Collector/ThemeModularTest.php  |   0
 .../Test/Unit/File/Collector/ThemeTest.php    |   0
 .../View/Test/Unit/File/FactoryTest.php       |   0
 .../Test/Unit/File/FileList/CollatorTest.php  |   0
 .../Test/Unit/File/FileList/FactoryTest.php   |   0
 .../View/Test/Unit/File/FileListTest.php      |   0
 .../View/Test/Unit/FileSystemTest.php         |   0
 .../Framework/View/Test/Unit/FileTest.php     |   0
 .../View/Test/Unit/Helper/JsTest.php          |   0
 .../View/Test/Unit/Helper/PathPatternTest.php |   0
 .../Interpreter/Decorator/UpdaterTest.php     |   0
 .../Argument/Interpreter/HelperMethodTest.php |   0
 .../Argument/Interpreter/NamedParamsTest.php  |   0
 .../Argument/Interpreter/ObjectTest.php       |   0
 .../Argument/Interpreter/OptionsTest.php      |   0
 .../Argument/Interpreter/PassthroughTest.php  |   0
 .../Layout/Argument/Interpreter/UrlTest.php   |   0
 .../Test/Unit/Layout/Argument/ParserTest.php  |   0
 .../Unit/Layout/Argument/_files/arguments.xml |   0
 .../Test/Unit/Layout/BuilderFactoryTest.php   |   0
 .../View/Test/Unit/Layout/BuilderTest.php     |   0
 .../Layout/Condition/AclConditionTest.php     |   0
 .../Test/Unit/Layout/Data/StructureTest.php   |   0
 .../View/Test/Unit/Layout/ElementTest.php     |   0
 .../Layout/File/Collector/AggregateTest.php   |   0
 .../Test/Unit/Layout/Generator/BlockTest.php  |   0
 .../Unit/Layout/Generator/ContainerTest.php   |   0
 .../Unit/Layout/Generator/UiComponentTest.php |   0
 .../Test/Unit/Layout/GeneratorPoolTest.php    |   0
 .../Test/Unit/Layout/Reader/FactoryTest.php   |   0
 .../View/Test/Unit/Layout/Reader/MoveTest.php |   0
 .../Unit/Layout/Reader/UiComponentTest.php    |   0
 .../Layout/ScheduledStructure/HelperTest.php  |   0
 .../Unit/Layout/ScheduledStructureTest.php    |   0
 .../View/Test/Unit/Layout/XsdTest.php         |   0
 .../View/Test/Unit/Layout/_files/action.xml   |   0
 .../Test/Unit/Layout/_files/arguments.xml     |   0
 .../_files/invalidLayoutArgumentsXmlArray.php |   0
 .../View/Test/Unit/LayoutFactoryTest.php      |   0
 .../View/Test/Unit/Model/Layout/MergeTest.php |   0
 .../Test/Unit/Model/Layout/TranslatorTest.php |   0
 .../Model/Layout/Update/ValidatorTest.php     |   0
 .../View/Test/Unit/Page/BuilderTest.php       |   0
 .../Unit/Page/Config/Generator/BodyTest.php   |   0
 .../Unit/Page/Config/Generator/HeadTest.php   |   0
 .../Test/Unit/Page/Config/Reader/HeadTest.php |   0
 .../Test/Unit/Page/Config/RendererTest.php    |   0
 .../Test/Unit/Page/Config/StructureTest.php   |   0
 .../Unit/Page/Config/_files/template_body.xml |   0
 .../Unit/Page/Config/_files/template_head.xml |   0
 .../Unit/Page/Config/_files/template_html.xml |   0
 .../View/Test/Unit/Page/ConfigTest.php        |   0
 .../View/Test/Unit/Page/Layout/ReaderTest.php |   0
 .../View/Test/Unit/Page/TitleTest.php         |   0
 .../View/Test/Unit/PageLayout/ConfigTest.php  |   0
 .../Unit/PageLayout/_files/layouts_one.xml    |   0
 .../Unit/PageLayout/_files/layouts_two.xml    |   0
 .../Test/Unit/Render/RenderFactoryTest.php    |   0
 .../View/Test/Unit/Result/LayoutTest.php      |   0
 .../View/Test/Unit/Result/PageFactoryTest.php |   0
 .../View/Test/Unit/Result/PageTest.php        |   0
 .../Test/Unit/Template/Html/MinifierTest.php  |   0
 .../View/Test/Unit/TemplateEngine/PhpTest.php |   0
 .../Unit/TemplateEngine/_files/simple.phtml   |   0
 .../Test/Unit/TemplateEngineFactoryTest.php   |   0
 .../View/Test/Unit/TemplateEnginePoolTest.php |   0
 .../Factory/HtmlContentFactoryTest.php        |   0
 .../View/Test/Unit/Url/ConfigTest.php         |   0
 .../View/Test/Unit/Url/CssResolverTest.php    |   0
 .../View/Test/Unit/Url/_files/result.css      |   0
 .../Test/Unit/Url/_files/resultImport.css     |   0
 .../Test/Unit/Url/_files/resultNormalized.css |   0
 .../View/Test/Unit/Url/_files/source.css      |   0
 .../Test/Unit/Url/_files/sourceImport.css     |   0
 .../Magento/Framework/View/Url/Config.php     |   0
 .../Framework/View/Url/ConfigInterface.php    |   0
 .../Framework/View/Url/CssResolver.php        |   0
 .../Xsd/Media/TypeDataExtractorInterface.php  |   0
 .../View/Xsd/Media/TypeDataExtractorPool.php  |   0
 .../Framework/Webapi/Authorization.php        |   0
 .../CustomAttributeTypeLocatorInterface.php   |   0
 .../Framework/Webapi/ErrorProcessor.php       |   0
 .../Magento/Framework/Webapi/Exception.php    |   0
 .../Magento/Framework/Webapi/README.md        |   0
 .../Magento/Framework/Webapi/Request.php      |   0
 .../Magento/Framework/Webapi/Response.php     |   0
 .../Magento/Framework/Webapi/Rest/Request.php |   0
 .../Webapi/Rest/Request/Deserializer/Json.php |   0
 .../Webapi/Rest/Request/Deserializer/Xml.php  |   0
 .../Rest/Request/DeserializerFactory.php      |   0
 .../Rest/Request/DeserializerInterface.php    |   0
 .../Rest/Request/ParamOverriderInterface.php  |   0
 .../Framework/Webapi/Rest/Response.php        |   0
 .../Webapi/Rest/Response/FieldsFilter.php     |   0
 .../Webapi/Rest/Response/Renderer/Json.php    |   0
 .../Webapi/Rest/Response/Renderer/Xml.php     |   0
 .../Webapi/Rest/Response/RendererFactory.php  |   0
 .../Rest/Response/RendererInterface.php       |   0
 .../Webapi/ServiceInputProcessor.php          |   0
 .../Webapi/ServiceOutputProcessor.php         |   0
 .../ServicePayloadConverterInterface.php      |   0
 .../Framework/Webapi/Soap/ClientFactory.php   |   0
 .../Webapi/Test/Unit/ErrorProcessorTest.php   |   0
 .../Webapi/Test/Unit/RequestTest.php          |   0
 .../Webapi/Test/Unit/ResponseTest.php         |   0
 .../Rest/Request/Deserializer/JsonTest.php    |   0
 .../Rest/Request/Deserializer/XmlTest.php     |   0
 .../Rest/Request/DeserializerFactoryTest.php  |   0
 .../Webapi/Test/Unit/Rest/RequestTest.php     |   0
 .../Unit/Rest/Response/FieldsFilterTest.php   |   0
 .../Unit/Rest/Response/Renderer/JsonTest.php  |   0
 .../Unit/Rest/Response/Renderer/XmlTest.php   |   0
 .../Rest/Response/RendererFactoryTest.php     |   0
 .../Webapi/Test/Unit/Rest/ResponseTest.php    |   0
 .../AssociativeArray.php                      |   0
 .../Unit/ServiceInputProcessor/DataArray.php  |   0
 .../Unit/ServiceInputProcessor/Nested.php     |   0
 .../ObjectWithCustomAttributes.php            |   0
 .../Unit/ServiceInputProcessor/Simple.php     |   0
 .../ServiceInputProcessor/SimpleArray.php     |   0
 .../ServiceInputProcessor/TestService.php     |   0
 .../Test/Unit/ServiceInputProcessorTest.php   |   0
 .../Magento/Framework/Xml/Generator.php       |   0
 lib/internal/Magento/Framework/Xml/Parser.php |   0
 .../Magento/Framework/Xml/Security.php        |   0
 .../Framework/Xml/Test/Unit/ParserTest.php    |   0
 .../Framework/Xml/Test/Unit/SecurityTest.php  |   0
 .../Framework/Xml/Test/Unit/_files/data.xml   |   0
 .../XsltProcessor/XsltProcessorFactory.php    |   0
 .../Magento/Framework/ZendEscaper.php         |   0
 lib/internal/Magento/Framework/composer.json  |   0
 .../Magento/Framework/registration.php        |   0
 lib/web/FormData.js                           |   0
 lib/web/MutationObserver.js                   |   0
 lib/web/blank.html                            |   0
 lib/web/css/docs/actions-toolbar.html         |   0
 lib/web/css/docs/breadcrumbs.html             |   0
 lib/web/css/docs/buttons.html                 |   0
 lib/web/css/docs/components.html              |   0
 lib/web/css/docs/docs.css                     |   0
 lib/web/css/docs/docs.html                    |   0
 lib/web/css/docs/dropdowns.html               |   0
 lib/web/css/docs/forms.html                   |   0
 lib/web/css/docs/icons.html                   |   0
 lib/web/css/docs/index.html                   |   0
 lib/web/css/docs/layout.html                  |   0
 lib/web/css/docs/lib.html                     |   0
 lib/web/css/docs/loaders.html                 |   0
 lib/web/css/docs/messages.html                |   0
 lib/web/css/docs/pages.html                   |   0
 lib/web/css/docs/popups.html                  |   0
 lib/web/css/docs/rating.html                  |   0
 lib/web/css/docs/resets.html                  |   0
 lib/web/css/docs/responsive.html              |   0
 lib/web/css/docs/sections.html                |   0
 lib/web/css/docs/source/README.md             |   0
 lib/web/css/docs/source/_actions-toolbar.less |   0
 lib/web/css/docs/source/_breadcrumbs.less     |   0
 lib/web/css/docs/source/_buttons.less         |   0
 lib/web/css/docs/source/_components.less      |   0
 lib/web/css/docs/source/_dropdowns.less       |   0
 lib/web/css/docs/source/_forms.less           |   0
 lib/web/css/docs/source/_icons.less           |   0
 lib/web/css/docs/source/_layout.less          |   0
 lib/web/css/docs/source/_lib.less             |   0
 lib/web/css/docs/source/_loaders.less         |   0
 lib/web/css/docs/source/_messages.less        |   0
 lib/web/css/docs/source/_pages.less           |   0
 lib/web/css/docs/source/_popups.less          |   0
 lib/web/css/docs/source/_rating.less          |   0
 lib/web/css/docs/source/_resets.less          |   0
 lib/web/css/docs/source/_responsive.less      |   0
 lib/web/css/docs/source/_sections.less        |   0
 lib/web/css/docs/source/_tables.less          |   0
 lib/web/css/docs/source/_tooltips.less        |   0
 lib/web/css/docs/source/_typography.less      |   0
 lib/web/css/docs/source/_utilities.less       |   0
 lib/web/css/docs/source/_variables.less       |   0
 lib/web/css/docs/source/docs.less             |   0
 lib/web/css/docs/source/js/dropdown.js        |   0
 lib/web/css/docs/tables.html                  |   0
 lib/web/css/docs/tooltips.html                |   0
 lib/web/css/docs/typography.html              |   0
 lib/web/css/docs/utilities.html               |   0
 lib/web/css/docs/variables.html               |   0
 lib/web/css/source/_email-variables.less      |   0
 lib/web/css/source/_extend.less               |   0
 lib/web/css/source/_theme.less                |   0
 lib/web/css/source/_variables.less            |   0
 lib/web/css/source/_widgets.less              |   0
 lib/web/css/source/components/_modals.less    |   0
 lib/web/css/source/lib/_actions-toolbar.less  |   0
 lib/web/css/source/lib/_breadcrumbs.less      |   0
 lib/web/css/source/lib/_buttons.less          |   0
 lib/web/css/source/lib/_dropdowns.less        |   0
 lib/web/css/source/lib/_forms.less            |   0
 lib/web/css/source/lib/_grids.less            |   0
 lib/web/css/source/lib/_icons.less            |   0
 lib/web/css/source/lib/_layout.less           |   0
 lib/web/css/source/lib/_lib.less              |   0
 lib/web/css/source/lib/_loaders.less          |   0
 lib/web/css/source/lib/_messages.less         |   0
 lib/web/css/source/lib/_navigation.less       |   0
 lib/web/css/source/lib/_pages.less            |   0
 lib/web/css/source/lib/_popups.less           |   0
 lib/web/css/source/lib/_rating.less           |   0
 lib/web/css/source/lib/_resets.less           |   0
 lib/web/css/source/lib/_responsive.less       |   0
 lib/web/css/source/lib/_sections.less         |   0
 lib/web/css/source/lib/_tables.less           |   0
 lib/web/css/source/lib/_tooltips.less         |   0
 lib/web/css/source/lib/_typography.less       |   0
 lib/web/css/source/lib/_utilities.less        |   0
 lib/web/css/source/lib/_variables.less        |   0
 .../lib/variables/_actions-toolbar.less       |   0
 .../source/lib/variables/_breadcrumbs.less    |   0
 .../css/source/lib/variables/_buttons.less    |   0
 lib/web/css/source/lib/variables/_colors.less |   0
 .../css/source/lib/variables/_components.less |   0
 .../css/source/lib/variables/_dropdowns.less  |   0
 lib/web/css/source/lib/variables/_email.less  |   0
 lib/web/css/source/lib/variables/_forms.less  |   0
 lib/web/css/source/lib/variables/_icons.less  |   0
 lib/web/css/source/lib/variables/_layout.less |   0
 .../css/source/lib/variables/_loaders.less    |   0
 .../css/source/lib/variables/_messages.less   |   0
 .../css/source/lib/variables/_navigation.less |   0
 lib/web/css/source/lib/variables/_pages.less  |   0
 lib/web/css/source/lib/variables/_popups.less |   0
 lib/web/css/source/lib/variables/_rating.less |   0
 .../css/source/lib/variables/_responsive.less |   0
 .../css/source/lib/variables/_sections.less   |   0
 .../css/source/lib/variables/_structure.less  |   0
 lib/web/css/source/lib/variables/_tables.less |   0
 .../css/source/lib/variables/_tooltips.less   |   0
 .../css/source/lib/variables/_typography.less |   0
 lib/web/es6-collections.js                    |   0
 lib/web/extjs/defaults.js                     |   0
 lib/web/extjs/ext-tree-checkbox.js            |   0
 lib/web/extjs/ext-tree.js                     |   0
 lib/web/extjs/resources/css/README.txt        |   0
 lib/web/extjs/resources/css/ext-all.css       |   0
 .../extjs/resources/css/ytheme-magento.css    |   0
 .../aero/basic-dialog/aero-close-over.gif     | Bin
 .../images/aero/basic-dialog/aero-close.gif   | Bin
 .../images/aero/basic-dialog/bg-center.gif    | Bin
 .../images/aero/basic-dialog/bg-left.gif      | Bin
 .../images/aero/basic-dialog/bg-right.gif     | Bin
 .../images/aero/basic-dialog/close.gif        | Bin
 .../aero/basic-dialog/collapse-over.gif       | Bin
 .../images/aero/basic-dialog/collapse.gif     | Bin
 .../images/aero/basic-dialog/e-handle.gif     | Bin
 .../images/aero/basic-dialog/expand-over.gif  | Bin
 .../images/aero/basic-dialog/expand.gif       | Bin
 .../images/aero/basic-dialog/hd-sprite.gif    | Bin
 .../images/aero/basic-dialog/s-handle.gif     | Bin
 .../images/aero/basic-dialog/se-handle.gif    | Bin
 .../images/aero/basic-dialog/w-handle.gif     | Bin
 .../resources/images/aero/gradient-bg.gif     | Bin
 .../images/aero/grid/grid-blue-split.gif      | Bin
 .../resources/images/aero/grid/grid-hrow.gif  | Bin
 .../resources/images/aero/grid/grid-split.gif | Bin
 .../images/aero/grid/grid-vista-hd.gif        | Bin
 .../resources/images/aero/grid/pspbrwse.jbf   | Bin
 .../images/aero/grid/sort-col-bg.gif          | Bin
 .../resources/images/aero/grid/sort_asc.gif   | Bin
 .../resources/images/aero/grid/sort_desc.gif  | Bin
 .../resources/images/aero/layout/collapse.gif | Bin
 .../resources/images/aero/layout/expand.gif   | Bin
 .../images/aero/layout/gradient-bg.gif        | Bin
 .../images/aero/layout/ns-collapse.gif        | Bin
 .../images/aero/layout/ns-expand.gif          | Bin
 .../images/aero/layout/panel-close.gif        | Bin
 .../images/aero/layout/panel-title-bg.gif     | Bin
 .../aero/layout/panel-title-light-bg.gif      | Bin
 .../images/aero/layout/tab-close-on.gif       | Bin
 .../images/aero/layout/tab-close.gif          | Bin
 .../resources/images/aero/menu/checked.gif    | Bin
 .../resources/images/aero/menu/item-over.gif  | Bin
 .../extjs/resources/images/aero/menu/menu.gif | Bin
 .../resources/images/aero/menu/unchecked.gif  | Bin
 .../extjs/resources/images/aero/qtip/bg.gif   | Bin
 lib/web/extjs/resources/images/aero/s.gif     | Bin
 .../images/aero/sizer/e-handle-dark.gif       | Bin
 .../resources/images/aero/sizer/e-handle.gif  | Bin
 .../images/aero/sizer/ne-handle-dark.gif      | Bin
 .../resources/images/aero/sizer/ne-handle.gif | Bin
 .../images/aero/sizer/nw-handle-dark.gif      | Bin
 .../resources/images/aero/sizer/nw-handle.gif | Bin
 .../images/aero/sizer/s-handle-dark.gif       | Bin
 .../resources/images/aero/sizer/s-handle.gif  | Bin
 .../images/aero/sizer/se-handle-dark.gif      | Bin
 .../resources/images/aero/sizer/se-handle.gif | Bin
 .../images/aero/sizer/sw-handle-dark.gif      | Bin
 .../resources/images/aero/sizer/sw-handle.gif | Bin
 .../aero/tabs/tab-btm-inactive-left-bg.gif    | Bin
 .../aero/tabs/tab-btm-inactive-right-bg.gif   | Bin
 .../images/aero/tabs/tab-btm-left-bg.gif      | Bin
 .../images/aero/tabs/tab-btm-right-bg.gif     | Bin
 .../resources/images/aero/tabs/tab-sprite.gif | Bin
 .../images/aero/tabs/tab-strip-bg.gif         | Bin
 .../images/aero/tabs/tab-strip-bg.png         | Bin
 .../images/aero/tabs/tab-strip-btm-bg.gif     | Bin
 .../resources/images/aero/toolbar/bg.gif      | Bin
 .../images/aero/toolbar/tb-btn-sprite.gif     | Bin
 .../images/default/basic-dialog/btn-arrow.gif | Bin
 .../default/basic-dialog/btn-sprite.gif       | Bin
 .../images/default/basic-dialog/close.gif     | Bin
 .../images/default/basic-dialog/collapse.gif  | Bin
 .../images/default/basic-dialog/e-handle.gif  | Bin
 .../images/default/basic-dialog/expand.gif    | Bin
 .../images/default/basic-dialog/hd-sprite.gif | Bin
 .../images/default/basic-dialog/progress.gif  | Bin
 .../images/default/basic-dialog/progress2.gif | Bin
 .../images/default/basic-dialog/s-handle.gif  | Bin
 .../images/default/basic-dialog/se-handle.gif | Bin
 .../images/default/box/corners-blue.gif       | Bin
 .../resources/images/default/box/corners.gif  | Bin
 .../resources/images/default/box/l-blue.gif   | Bin
 .../extjs/resources/images/default/box/l.gif  | Bin
 .../resources/images/default/box/r-blue.gif   | Bin
 .../extjs/resources/images/default/box/r.gif  | Bin
 .../resources/images/default/box/tb-blue.gif  | Bin
 .../extjs/resources/images/default/box/tb.gif | Bin
 .../resources/images/default/dd/drop-add.gif  | Bin
 .../resources/images/default/dd/drop-no.gif   | Bin
 .../resources/images/default/dd/drop-yes.gif  | Bin
 .../images/default/editor/tb-sprite.gif       | Bin
 .../images/default/form/clear-trigger.gif     | Bin
 .../images/default/form/date-trigger.gif      | Bin
 .../images/default/form/error-tip-corners.gif | Bin
 .../images/default/form/exclamation.gif       | Bin
 .../images/default/form/search-trigger.gif    | Bin
 .../resources/images/default/form/text-bg.gif | Bin
 .../images/default/form/trigger-tpl.gif       | Bin
 .../resources/images/default/form/trigger.gif | Bin
 .../resources/images/default/gradient-bg.gif  | Bin
 .../images/default/grid/arrow-left-white.gif  | Bin
 .../images/default/grid/arrow-right-white.gif | Bin
 .../images/default/grid/col-move-bottom.gif   | Bin
 .../images/default/grid/col-move-top.gif      | Bin
 .../resources/images/default/grid/dirty.gif   | Bin
 .../resources/images/default/grid/done.gif    | Bin
 .../resources/images/default/grid/drop-no.gif | Bin
 .../images/default/grid/drop-yes.gif          | Bin
 .../images/default/grid/footer-bg.gif         | Bin
 .../images/default/grid/grid-blue-hd.gif      | Bin
 .../images/default/grid/grid-blue-split.gif   | Bin
 .../images/default/grid/grid-hrow.gif         | Bin
 .../images/default/grid/grid-loading.gif      | Bin
 .../images/default/grid/grid-split.gif        | Bin
 .../images/default/grid/grid-vista-hd.gif     | Bin
 .../images/default/grid/grid3-hd-btn.gif      | Bin
 .../images/default/grid/grid3-hrow-over.gif   | Bin
 .../images/default/grid/grid3-hrow.gif        | Bin
 .../default/grid/grid3-special-col-bg.gif     | Bin
 .../default/grid/grid3-special-col-sel-bg.gif | Bin
 .../resources/images/default/grid/hd-pop.gif  | Bin
 .../images/default/grid/hmenu-asc.gif         | Bin
 .../images/default/grid/hmenu-desc.gif        | Bin
 .../images/default/grid/hmenu-lock.gif        | Bin
 .../images/default/grid/hmenu-lock.png        | Bin
 .../images/default/grid/hmenu-unlock.gif      | Bin
 .../images/default/grid/hmenu-unlock.png      | Bin
 .../images/default/grid/invalid_line.gif      | Bin
 .../resources/images/default/grid/loading.gif | Bin
 .../resources/images/default/grid/mso-hd.gif  | Bin
 .../resources/images/default/grid/nowait.gif  | Bin
 .../default/grid/page-first-disabled.gif      | Bin
 .../images/default/grid/page-first.gif        | Bin
 .../default/grid/page-last-disabled.gif       | Bin
 .../images/default/grid/page-last.gif         | Bin
 .../default/grid/page-next-disabled.gif       | Bin
 .../images/default/grid/page-next.gif         | Bin
 .../default/grid/page-prev-disabled.gif       | Bin
 .../images/default/grid/page-prev.gif         | Bin
 .../images/default/grid/pick-button.gif       | Bin
 .../resources/images/default/grid/refresh.gif | Bin
 .../images/default/grid/row-check-sprite.gif  | Bin
 .../images/default/grid/row-expand-sprite.gif | Bin
 .../images/default/grid/row-over.gif          | Bin
 .../resources/images/default/grid/row-sel.gif | Bin
 .../images/default/grid/sort_asc.gif          | Bin
 .../images/default/grid/sort_desc.gif         | Bin
 .../resources/images/default/grid/wait.gif    | Bin
 .../images/default/layout/collapse.gif        | Bin
 .../images/default/layout/expand.gif          | Bin
 .../images/default/layout/gradient-bg.gif     | Bin
 .../images/default/layout/ns-collapse.gif     | Bin
 .../images/default/layout/ns-expand.gif       | Bin
 .../images/default/layout/panel-close.gif     | Bin
 .../images/default/layout/panel-title-bg.gif  | Bin
 .../default/layout/panel-title-light-bg.gif   | Bin
 .../resources/images/default/layout/stick.gif | Bin
 .../resources/images/default/layout/stuck.gif | Bin
 .../images/default/layout/tab-close-on.gif    | Bin
 .../images/default/layout/tab-close.gif       | Bin
 .../resources/images/default/menu/checked.gif | Bin
 .../images/default/menu/group-checked.gif     | Bin
 .../images/default/menu/menu-parent.gif       | Bin
 .../resources/images/default/menu/menu.gif    | Bin
 .../images/default/menu/unchecked.gif         | Bin
 .../images/default/panel/corners-sprite.gif   | Bin
 .../images/default/panel/left-right.gif       | Bin
 .../images/default/panel/tool-sprite-tpl.gif  | Bin
 .../images/default/panel/tool-sprites.gif     | Bin
 .../images/default/panel/top-bottom.gif       | Bin
 .../default/panel/white-corners-sprite.gif    | Bin
 .../images/default/panel/white-left-right.gif | Bin
 .../images/default/panel/white-top-bottom.gif | Bin
 .../resources/images/default/qtip/bg.gif      | Bin
 .../resources/images/default/qtip/close.gif   | Bin
 .../images/default/qtip/tip-sprite.gif        | Bin
 lib/web/extjs/resources/images/default/s.gif  | Bin
 .../resources/images/default/shadow-c.png     | Bin
 .../resources/images/default/shadow-lr.png    | Bin
 .../extjs/resources/images/default/shadow.png | Bin
 .../images/default/shared/calendar.gif        | Bin
 .../images/default/shared/glass-bg.gif        | Bin
 .../images/default/shared/left-btn.gif        | Bin
 .../images/default/shared/right-btn.gif       | Bin
 .../images/default/shared/warning.gif         | Bin
 .../images/default/sizer/e-handle-dark.gif    | Bin
 .../images/default/sizer/e-handle.gif         | Bin
 .../images/default/sizer/ne-handle-dark.gif   | Bin
 .../images/default/sizer/ne-handle.gif        | Bin
 .../images/default/sizer/nw-handle-dark.gif   | Bin
 .../images/default/sizer/nw-handle.gif        | Bin
 .../images/default/sizer/s-handle-dark.gif    | Bin
 .../images/default/sizer/s-handle.gif         | Bin
 .../images/default/sizer/se-handle-dark.gif   | Bin
 .../images/default/sizer/se-handle.gif        | Bin
 .../resources/images/default/sizer/square.gif | Bin
 .../images/default/sizer/sw-handle-dark.gif   | Bin
 .../images/default/sizer/sw-handle.gif        | Bin
 .../default/tabs/tab-btm-inactive-left-bg.gif | Bin
 .../tabs/tab-btm-inactive-right-bg.gif        | Bin
 .../images/default/tabs/tab-btm-left-bg.gif   | Bin
 .../images/default/tabs/tab-btm-right-bg.gif  | Bin
 .../images/default/tabs/tab-sprite.gif        | Bin
 .../default/toolbar/btn-arrow-light.gif       | Bin
 .../images/default/toolbar/btn-arrow.gif      | Bin
 .../images/default/toolbar/btn-over-bg.gif    | Bin
 .../images/default/toolbar/gray-bg.gif        | Bin
 .../images/default/toolbar/tb-bg.gif          | Bin
 .../images/default/toolbar/tb-btn-sprite.gif  | Bin
 .../images/default/tree/drop-add.gif          | Bin
 .../images/default/tree/drop-between.gif      | Bin
 .../resources/images/default/tree/drop-no.gif | Bin
 .../images/default/tree/drop-over.gif         | Bin
 .../images/default/tree/drop-under.gif        | Bin
 .../images/default/tree/drop-yes.gif          | Bin
 .../default/tree/elbow-end-minus-nl.gif       | Bin
 .../images/default/tree/elbow-end-minus.gif   | Bin
 .../images/default/tree/elbow-end-plus-nl.gif | Bin
 .../images/default/tree/elbow-end-plus.gif    | Bin
 .../images/default/tree/elbow-end.gif         | Bin
 .../images/default/tree/elbow-line.gif        | Bin
 .../images/default/tree/elbow-minus-nl.gif    | Bin
 .../images/default/tree/elbow-minus.gif       | Bin
 .../images/default/tree/elbow-plus-nl.gif     | Bin
 .../images/default/tree/elbow-plus.gif        | Bin
 .../resources/images/default/tree/elbow.gif   | Bin
 .../images/default/tree/folder-open.gif       | Bin
 .../resources/images/default/tree/folder.gif  | Bin
 .../resources/images/default/tree/leaf.gif    | Bin
 .../resources/images/default/tree/loading.gif | Bin
 .../extjs/resources/images/default/tree/s.gif | Bin
 .../images/default/window/corners-sprite.gif  | Bin
 .../images/default/window/left-right.gif      | Bin
 .../images/default/window/top-bottom.gif      | Bin
 .../galdaka/basic-dialog/close-over.gif       | Bin
 .../images/galdaka/basic-dialog/close.gif     | Bin
 .../galdaka/basic-dialog/collapse-over.gif    | Bin
 .../images/galdaka/basic-dialog/collapse.gif  | Bin
 .../images/galdaka/basic-dialog/e-handle.gif  | Bin
 .../galdaka/basic-dialog/expand-over.gif      | Bin
 .../images/galdaka/basic-dialog/expand.gif    | Bin
 .../galdaka/basic-dialog/gradient-bg.gif      | Bin
 .../images/galdaka/basic-dialog/hd-sprite.gif | Bin
 .../images/galdaka/basic-dialog/s-handle.gif  | Bin
 .../images/galdaka/basic-dialog/se-handle.gif | Bin
 .../images/galdaka/basic-dialog/sw-handle.gif | Bin
 .../images/galdaka/form/choose-trigger.gif    | Bin
 .../images/galdaka/form/date-trigger.gif      | Bin
 .../resources/images/galdaka/form/trigger.gif | Bin
 .../images/galdaka/grid/col-move-bottom.gif   | Bin
 .../images/galdaka/grid/col-move-top.gif      | Bin
 .../resources/images/galdaka/grid/done.gif    | Bin
 .../galdaka/grid/fondoCabeceraHover.gif       | Bin
 .../images/galdaka/grid/grid-hrow.gif         | Bin
 .../resources/images/galdaka/grid/loading.gif | Bin
 .../images/galdaka/grid/page-first.gif        | Bin
 .../images/galdaka/grid/page-last.gif         | Bin
 .../images/galdaka/grid/page-next.gif         | Bin
 .../images/galdaka/grid/page-prev.gif         | Bin
 .../images/galdaka/layout/collapse.gif        | Bin
 .../images/galdaka/layout/e-handle.gif        | Bin
 .../images/galdaka/layout/expand.gif          | Bin
 .../images/galdaka/layout/gradient-bg.gif     | Bin
 .../images/galdaka/layout/ns-collapse.gif     | Bin
 .../images/galdaka/layout/ns-expand.gif       | Bin
 .../images/galdaka/layout/panel-close.gif     | Bin
 .../galdaka/layout/panel-title-light-bg.gif   | Bin
 .../images/galdaka/layout/s-handle.gif        | Bin
 .../resources/images/galdaka/layout/stick.gif | Bin
 .../images/galdaka/layout/tab-close-on.gif    | Bin
 .../images/galdaka/layout/tab-close.gif       | Bin
 .../resources/images/galdaka/menu/checked.gif | Bin
 .../images/galdaka/menu/group-checked.gif     | Bin
 .../images/galdaka/menu/menu-parent.gif       | Bin
 .../resources/images/galdaka/menu/menu.gif    | Bin
 .../images/galdaka/menu/unchecked.gif         | Bin
 .../images/galdaka/qtip/tip-sprite.gif        | Bin
 .../images/galdaka/shared/left-btn.gif        | Bin
 .../images/galdaka/shared/right-btn.gif       | Bin
 .../images/galdaka/sizer/ne-handle.gif        | Bin
 .../images/galdaka/sizer/nw-handle.gif        | Bin
 .../images/galdaka/sizer/s-handle.gif         | Bin
 .../images/galdaka/sizer/se-handle.gif        | Bin
 .../images/galdaka/sizer/sw-handle.gif        | Bin
 .../galdaka/tabs/tab-btm-inactive-left-bg.gif | Bin
 .../tabs/tab-btm-inactive-right-bg.gif        | Bin
 .../images/galdaka/tabs/tab-btm-left-bg.gif   | Bin
 .../images/galdaka/tabs/tab-btm-right-bg.gif  | Bin
 .../images/galdaka/tabs/tab-sprite.gif        | Bin
 .../images/galdaka/toolbar/btn-arrow.gif      | Bin
 .../images/galdaka/toolbar/btn-over-bg.gif    | Bin
 .../images/galdaka/toolbar/fondoToolbar.gif   | Bin
 .../images/galdaka/toolbar/tb-btn-sprite.gif  | Bin
 .../images/gray/basic-dialog/close.gif        | Bin
 .../images/gray/basic-dialog/collapse.gif     | Bin
 .../images/gray/basic-dialog/dlg-bg.gif       | Bin
 .../images/gray/basic-dialog/e-handle.gif     | Bin
 .../images/gray/basic-dialog/expand.gif       | Bin
 .../images/gray/basic-dialog/hd-sprite.gif    | Bin
 .../images/gray/basic-dialog/s-handle.gif     | Bin
 .../images/gray/basic-dialog/se-handle.gif    | Bin
 .../resources/images/gray/gradient-bg.gif     | Bin
 .../resources/images/gray/grid/grid-hrow.gif  | Bin
 .../resources/images/gray/layout/collapse.gif | Bin
 .../resources/images/gray/layout/expand.gif   | Bin
 .../images/gray/layout/gradient-bg.gif        | Bin
 .../images/gray/layout/ns-collapse.gif        | Bin
 .../images/gray/layout/ns-expand.gif          | Bin
 .../images/gray/layout/panel-close.gif        | Bin
 .../images/gray/layout/panel-title-bg.gif     | Bin
 .../gray/layout/panel-title-light-bg.gif      | Bin
 .../resources/images/gray/layout/stick.gif    | Bin
 .../images/gray/layout/tab-close-on.gif       | Bin
 .../images/gray/layout/tab-close.gif          | Bin
 .../resources/images/gray/menu/checked.gif    | Bin
 .../images/gray/menu/group-checked.gif        | Bin
 .../images/gray/menu/menu-parent.gif          | Bin
 .../extjs/resources/images/gray/menu/menu.gif | Bin
 .../resources/images/gray/menu/unchecked.gif  | Bin
 .../extjs/resources/images/gray/qtip/bg.gif   | Bin
 .../resources/images/gray/qtip/tip-sprite.gif | Bin
 lib/web/extjs/resources/images/gray/s.gif     | Bin
 .../images/gray/sizer/e-handle-dark.gif       | Bin
 .../resources/images/gray/sizer/e-handle.gif  | Bin
 .../images/gray/sizer/ne-handle-dark.gif      | Bin
 .../resources/images/gray/sizer/ne-handle.gif | Bin
 .../images/gray/sizer/nw-handle-dark.gif      | Bin
 .../resources/images/gray/sizer/nw-handle.gif | Bin
 .../images/gray/sizer/s-handle-dark.gif       | Bin
 .../resources/images/gray/sizer/s-handle.gif  | Bin
 .../images/gray/sizer/se-handle-dark.gif      | Bin
 .../resources/images/gray/sizer/se-handle.gif | Bin
 .../images/gray/sizer/sw-handle-dark.gif      | Bin
 .../resources/images/gray/sizer/sw-handle.gif | Bin
 .../gray/tabs/tab-btm-inactive-left-bg.gif    | Bin
 .../gray/tabs/tab-btm-inactive-right-bg.gif   | Bin
 .../images/gray/tabs/tab-btm-left-bg.gif      | Bin
 .../images/gray/tabs/tab-btm-right-bg.gif     | Bin
 .../resources/images/gray/tabs/tab-sprite.gif | Bin
 .../resources/images/gray/toolbar/gray-bg.gif | Bin
 .../images/gray/toolbar/tb-btn-sprite.gif     | Bin
 .../magento/basic-dialog/collapse-on.gif      | Bin
 .../images/magento/basic-dialog/collapse.gif  | Bin
 .../images/magento/basic-dialog/expand-on.gif | Bin
 .../images/magento/basic-dialog/expand.gif    | Bin
 .../images/magento/basic-dialog/hd-sprite.gif | Bin
 .../magento/basic-dialog/ns-collapse-on.gif   | Bin
 .../magento/basic-dialog/ns-collapse.gif      | Bin
 .../magento/basic-dialog/ns-expand-on.gif     | Bin
 .../images/magento/basic-dialog/ns-expand.gif | Bin
 .../magento/basic-dialog/panel_close.gif      | Bin
 .../images/magento/basic-dialog/pop_close.gif | Bin
 .../magento/basic-dialog/pop_collapse.gif     | Bin
 .../images/magento/grid/grid-body-bg.gif      | Bin
 .../images/magento/grid/grid-split.gif        | Bin
 .../images/magento/layout/checkered-bg.gif    | Bin
 .../images/magento/layout/icon-catalog.gif    | Bin
 .../images/magento/layout/icon-category.gif   | Bin
 .../images/magento/layout/icon-my-tasks.gif   | Bin
 .../images/magento/layout/icon-product.gif    | Bin
 .../resources/images/magento/loading_bg.gif   | Bin
 .../images/magento/tabs/tab-sprite.gif        | Bin
 .../images/magento/toolbar/btn-arrow.gif      | Bin
 .../images/magento/toolbar/header_bg.gif      | Bin
 .../images/magento/toolbar/toolbar-bg.gif     | Bin
 .../magento/tree/elbow-end-minus-nl.gif       | Bin
 .../images/magento/tree/elbow-end-minus.gif   | Bin
 .../images/magento/tree/elbow-end-plus-nl.gif | Bin
 .../images/magento/tree/elbow-end-plus.gif    | Bin
 .../images/magento/tree/elbow-end.gif         | Bin
 .../images/magento/tree/elbow-line.gif        | Bin
 .../images/magento/tree/elbow-minus-nl.gif    | Bin
 .../images/magento/tree/elbow-minus.gif       | Bin
 .../images/magento/tree/elbow-plus-nl.gif     | Bin
 .../images/magento/tree/elbow-plus.gif        | Bin
 .../resources/images/magento/tree/elbow.gif   | Bin
 .../images/magento/tree/folder-open.gif       | Bin
 .../resources/images/magento/tree/folder.gif  | Bin
 .../resources/images/magento/tree/leaf.gif    | Bin
 .../extjs/resources/images/magento/tree/s.gif | Bin
 .../images/vista/basic-dialog/bg-center.gif   | Bin
 .../images/vista/basic-dialog/bg-left.gif     | Bin
 .../images/vista/basic-dialog/bg-right.gif    | Bin
 .../images/vista/basic-dialog/close.gif       | Bin
 .../images/vista/basic-dialog/collapse.gif    | Bin
 .../images/vista/basic-dialog/dlg-bg.gif      | Bin
 .../images/vista/basic-dialog/e-handle.gif    | Bin
 .../images/vista/basic-dialog/expand.gif      | Bin
 .../images/vista/basic-dialog/hd-sprite.gif   | Bin
 .../images/vista/basic-dialog/s-handle.gif    | Bin
 .../images/vista/basic-dialog/se-handle.gif   | Bin
 .../images/vista/basic-dialog/w-handle.gif    | Bin
 .../resources/images/vista/gradient-bg.gif    | Bin
 .../images/vista/grid/grid-split.gif          | Bin
 .../images/vista/grid/grid-vista-hd.gif       | Bin
 .../images/vista/layout/collapse.gif          | Bin
 .../resources/images/vista/layout/expand.gif  | Bin
 .../images/vista/layout/gradient-bg.gif       | Bin
 .../images/vista/layout/ns-collapse.gif       | Bin
 .../images/vista/layout/ns-expand.gif         | Bin
 .../images/vista/layout/panel-close.gif       | Bin
 .../images/vista/layout/panel-title-bg.gif    | Bin
 .../vista/layout/panel-title-light-bg.gif     | Bin
 .../resources/images/vista/layout/stick.gif   | Bin
 .../images/vista/layout/tab-close-on.gif      | Bin
 .../images/vista/layout/tab-close.gif         | Bin
 .../extjs/resources/images/vista/qtip/bg.gif  | Bin
 .../images/vista/qtip/tip-sprite.gif          | Bin
 lib/web/extjs/resources/images/vista/s.gif    | Bin
 .../images/vista/sizer/e-handle-dark.gif      | Bin
 .../resources/images/vista/sizer/e-handle.gif | Bin
 .../images/vista/sizer/ne-handle-dark.gif     | Bin
 .../images/vista/sizer/ne-handle.gif          | Bin
 .../images/vista/sizer/nw-handle-dark.gif     | Bin
 .../images/vista/sizer/nw-handle.gif          | Bin
 .../images/vista/sizer/s-handle-dark.gif      | Bin
 .../resources/images/vista/sizer/s-handle.gif | Bin
 .../images/vista/sizer/se-handle-dark.gif     | Bin
 .../images/vista/sizer/se-handle.gif          | Bin
 .../images/vista/sizer/sw-handle-dark.gif     | Bin
 .../images/vista/sizer/sw-handle.gif          | Bin
 .../vista/tabs/tab-btm-inactive-left-bg.gif   | Bin
 .../vista/tabs/tab-btm-inactive-right-bg.gif  | Bin
 .../images/vista/tabs/tab-btm-left-bg.gif     | Bin
 .../images/vista/tabs/tab-btm-right-bg.gif    | Bin
 .../images/vista/tabs/tab-sprite.gif          | Bin
 .../images/vista/toolbar/gray-bg.gif          | Bin
 .../images/vista/toolbar/tb-btn-sprite.gif    | Bin
 .../Blank-Theme-Icons/Blank-Theme-Icons.eot   | Bin
 .../Blank-Theme-Icons/Blank-Theme-Icons.svg   |   0
 .../Blank-Theme-Icons/Blank-Theme-Icons.ttf   | Bin
 .../Blank-Theme-Icons/Blank-Theme-Icons.woff  | Bin
 .../Blank-Theme-Icons/Blank-Theme-Icons.woff2 | Bin
 .../fonts/Blank-Theme-Icons/selection.json    |   0
 lib/web/fonts/MUI-Icons/MUI-Icons.eot         | Bin
 lib/web/fonts/MUI-Icons/MUI-Icons.svg         |   0
 lib/web/fonts/MUI-Icons/MUI-Icons.ttf         | Bin
 lib/web/fonts/MUI-Icons/MUI-Icons.woff        | Bin
 lib/web/fonts/MUI-Icons/MUI-Icons.woff2       | Bin
 lib/web/fonts/UX-Icons/UX-Icons.eot           | Bin
 lib/web/fonts/UX-Icons/UX-Icons.svg           |   0
 lib/web/fonts/UX-Icons/UX-Icons.ttf           | Bin
 lib/web/fonts/UX-Icons/UX-Icons.woff          | Bin
 lib/web/fonts/opensans/bold/opensans-700.eot  | Bin
 lib/web/fonts/opensans/bold/opensans-700.svg  |   0
 lib/web/fonts/opensans/bold/opensans-700.ttf  | Bin
 lib/web/fonts/opensans/bold/opensans-700.woff | Bin
 .../fonts/opensans/bold/opensans-700.woff2    | Bin
 lib/web/fonts/opensans/light/opensans-300.eot | Bin
 lib/web/fonts/opensans/light/opensans-300.svg |   0
 lib/web/fonts/opensans/light/opensans-300.ttf | Bin
 .../fonts/opensans/light/opensans-300.woff    | Bin
 .../fonts/opensans/light/opensans-300.woff2   | Bin
 .../fonts/opensans/regular/opensans-400.eot   | Bin
 .../fonts/opensans/regular/opensans-400.svg   |   0
 .../fonts/opensans/regular/opensans-400.ttf   | Bin
 .../fonts/opensans/regular/opensans-400.woff  | Bin
 .../fonts/opensans/regular/opensans-400.woff2 | Bin
 .../fonts/opensans/semibold/opensans-600.eot  | Bin
 .../fonts/opensans/semibold/opensans-600.svg  |   0
 .../fonts/opensans/semibold/opensans-600.ttf  | Bin
 .../fonts/opensans/semibold/opensans-600.woff | Bin
 .../opensans/semibold/opensans-600.woff2      | Bin
 lib/web/fotorama/fotorama.js                  |   0
 lib/web/fotorama/fotorama.min.js              |   0
 lib/web/i18n/en_US.csv                        |   0
 lib/web/images/bkg_gallery_thumbs.png         | Bin
 lib/web/images/blank-theme-icons.png          | Bin
 lib/web/images/cards.png                      | Bin
 lib/web/images/debug_bkg.png                  | Bin
 lib/web/images/loader-1.gif                   | Bin
 lib/web/images/loader-2.gif                   | Bin
 lib/web/images/logo.svg                       |   0
 lib/web/images/magento-logo.svg               |   0
 lib/web/images/spacer.gif                     | Bin
 lib/web/images/sprite-gallery.png             | Bin
 lib/web/images/sprite-gallery.svg             |   0
 lib/web/jquery.js                             |   0
 .../jquery/colorpicker/css/colorpicker.css    |   0
 lib/web/jquery/colorpicker/images/blank.gif   | Bin
 .../images/colorpicker_background.png         | Bin
 .../colorpicker/images/colorpicker_hex.png    | Bin
 .../colorpicker/images/colorpicker_hsb_b.png  | Bin
 .../colorpicker/images/colorpicker_hsb_h.png  | Bin
 .../colorpicker/images/colorpicker_hsb_s.png  | Bin
 .../colorpicker/images/colorpicker_indic.gif  | Bin
 .../images/colorpicker_overlay.png            | Bin
 .../colorpicker/images/colorpicker_rgb_b.png  | Bin
 .../colorpicker/images/colorpicker_rgb_g.png  | Bin
 .../colorpicker/images/colorpicker_rgb_r.png  | Bin
 .../colorpicker/images/colorpicker_select.gif | Bin
 .../colorpicker/images/colorpicker_submit.png | Bin
 .../colorpicker/images/custom_background.png  | Bin
 .../jquery/colorpicker/images/custom_hex.png  | Bin
 .../colorpicker/images/custom_hsb_b.png       | Bin
 .../colorpicker/images/custom_hsb_h.png       | Bin
 .../colorpicker/images/custom_hsb_s.png       | Bin
 .../colorpicker/images/custom_indic.gif       | Bin
 .../colorpicker/images/custom_rgb_b.png       | Bin
 .../colorpicker/images/custom_rgb_g.png       | Bin
 .../colorpicker/images/custom_rgb_r.png       | Bin
 .../colorpicker/images/custom_submit.png      | Bin
 lib/web/jquery/colorpicker/images/select.png  | Bin
 lib/web/jquery/colorpicker/images/select2.png | Bin
 lib/web/jquery/colorpicker/images/slider.png  | Bin
 lib/web/jquery/colorpicker/js/colorpicker.js  |   0
 .../css/jquery.multiselect.css                |   0
 .../editableMultiselect/js/jquery.editable.js |   0
 .../js/jquery.multiselect.js                  |   0
 lib/web/jquery/fileUploader/canvas-to-blob.js |   0
 .../cors/jquery.postmessage-transport.js      |   0
 .../fileUploader/cors/jquery.xdr-transport.js |   0
 .../fileUploader/css/jquery.fileupload-ui.css |   0
 lib/web/jquery/fileUploader/img/loading.gif   | Bin
 .../jquery/fileUploader/img/progressbar.gif   | Bin
 .../fileUploader/jquery.fileupload-fp.js      |   0
 .../fileUploader/jquery.fileupload-ui.js      |   0
 .../jquery/fileUploader/jquery.fileupload.js  |   0
 .../fileUploader/jquery.iframe-transport.js   |   0
 lib/web/jquery/fileUploader/load-image.js     |   0
 lib/web/jquery/fileUploader/locale.js         |   0
 lib/web/jquery/fileUploader/main.js           |   0
 .../fileUploader/vendor/jquery.ui.widget.js   |   0
 lib/web/jquery/jquery-migrate.js              |   0
 lib/web/jquery/jquery-ui-1.9.2.js             |   0
 lib/web/jquery/jquery-ui-timepicker-addon.js  |   0
 lib/web/jquery/jquery-ui.js                   |   0
 lib/web/jquery/jquery.ba-hashchange.min.js    |   0
 lib/web/jquery/jquery.cookie.js               |   0
 lib/web/jquery/jquery.details.js              |   0
 lib/web/jquery/jquery.hoverIntent.js          |   0
 lib/web/jquery/jquery.metadata.js             |   0
 lib/web/jquery/jquery.min.js                  |   0
 lib/web/jquery/jquery.mobile.custom.js        |   0
 lib/web/jquery/jquery.parsequery.js           |   0
 lib/web/jquery/jquery.storageapi.min.js       |   0
 lib/web/jquery/jquery.tabs.js                 |   0
 lib/web/jquery/jquery.validate.js             |   0
 lib/web/jquery/jstree/jquery.hotkeys.js       |   0
 lib/web/jquery/jstree/jquery.jstree.js        |   0
 lib/web/jquery/jstree/themes/apple/bg.jpg     | Bin
 lib/web/jquery/jstree/themes/apple/d.png      | Bin
 .../jquery/jstree/themes/apple/dot_for_ie.gif | Bin
 lib/web/jquery/jstree/themes/apple/style.css  |   0
 .../jquery/jstree/themes/apple/throbber.gif   | Bin
 lib/web/jquery/jstree/themes/classic/d.gif    | Bin
 lib/web/jquery/jstree/themes/classic/d.png    | Bin
 .../jstree/themes/classic/dot_for_ie.gif      | Bin
 .../jquery/jstree/themes/classic/style.css    |   0
 .../jquery/jstree/themes/classic/throbber.gif | Bin
 .../jquery/jstree/themes/default-rtl/d.gif    | Bin
 .../jquery/jstree/themes/default-rtl/d.png    | Bin
 .../jquery/jstree/themes/default-rtl/dots.gif | Bin
 .../jstree/themes/default-rtl/style.css       |   0
 .../jstree/themes/default-rtl/throbber.gif    | Bin
 lib/web/jquery/jstree/themes/default/d.gif    | Bin
 lib/web/jquery/jstree/themes/default/d.png    | Bin
 .../jquery/jstree/themes/default/style.css    |   0
 .../jquery/jstree/themes/default/throbber.gif | Bin
 lib/web/knockoutjs/knockout-es5.js            |   0
 lib/web/knockoutjs/knockout-fast-foreach.js   |   0
 lib/web/knockoutjs/knockout-repeat.js         |   0
 lib/web/knockoutjs/knockout.js                |   0
 lib/web/legacy-build.min.js                   |   0
 lib/web/less/config.less.js                   |   0
 lib/web/less/less.min.js                      |   0
 lib/web/lib/ccard.js                          |   0
 lib/web/lib/storage.js                        |   0
 lib/web/mage/accordion.js                     |   0
 lib/web/mage/adminhtml/accordion.js           |   0
 lib/web/mage/adminhtml/backup.js              |   0
 lib/web/mage/adminhtml/browser.js             |   0
 lib/web/mage/adminhtml/events.js              |   0
 lib/web/mage/adminhtml/form.js                |   0
 lib/web/mage/adminhtml/globals.js             |   0
 lib/web/mage/adminhtml/grid.js                |   0
 lib/web/mage/adminhtml/tools.js               |   0
 lib/web/mage/adminhtml/varienLoader.js        |   0
 .../wysiwyg/tiny_mce/html5-schema.js          |   0
 .../plugins/magentovariable/editor_plugin.js  |   0
 .../plugins/magentovariable/img/icon.gif      | Bin
 .../plugins/magentowidget/editor_plugin.js    |   0
 .../plugins/magentowidget/img/icon.gif        | Bin
 .../themes/advanced/skins/default/content.css |   0
 .../themes/advanced/skins/default/dialog.css  |   0
 lib/web/mage/adminhtml/wysiwyg/widget.js      |   0
 lib/web/mage/app/config.js                    |   0
 lib/web/mage/apply/main.js                    |   0
 lib/web/mage/apply/scripts.js                 |   0
 lib/web/mage/backend/action-link.js           |   0
 lib/web/mage/backend/bootstrap.js             |   0
 lib/web/mage/backend/button.js                |   0
 lib/web/mage/backend/editablemultiselect.js   |   0
 lib/web/mage/backend/floating-header.js       |   0
 lib/web/mage/backend/form.js                  |   0
 lib/web/mage/backend/jstree-mixin.js          |   0
 lib/web/mage/backend/menu.js                  |   0
 lib/web/mage/backend/notification.js          |   0
 lib/web/mage/backend/suggest.js               |   0
 lib/web/mage/backend/tabs.js                  |   0
 lib/web/mage/backend/tree-suggest.js          |   0
 lib/web/mage/backend/validation.js            |   0
 lib/web/mage/bootstrap.js                     |   0
 lib/web/mage/calendar.css                     |   0
 lib/web/mage/calendar.js                      |   0
 lib/web/mage/captcha.js                       |   0
 lib/web/mage/collapsible.js                   |   0
 lib/web/mage/common.js                        |   0
 lib/web/mage/cookies.js                       |   0
 lib/web/mage/dataPost.js                      |   0
 lib/web/mage/decorate.js                      |   0
 lib/web/mage/deletable-item.js                |   0
 lib/web/mage/dialog.js                        |   0
 lib/web/mage/dropdown.js                      |   0
 lib/web/mage/dropdown_old.js                  |   0
 lib/web/mage/dropdowns.js                     |   0
 lib/web/mage/edit-trigger.js                  |   0
 lib/web/mage/fieldset-controls.js             |   0
 lib/web/mage/gallery/gallery.html             |   0
 lib/web/mage/gallery/gallery.js               |   0
 lib/web/mage/gallery/gallery.less             |   0
 lib/web/mage/gallery/gallery.png              | Bin
 lib/web/mage/gallery/module/_extends.less     |   0
 lib/web/mage/gallery/module/_focus.less       |   0
 lib/web/mage/gallery/module/_fullscreen.less  |   0
 lib/web/mage/gallery/module/_mixins.less      |   0
 lib/web/mage/gallery/module/_variables.less   |   0
 lib/web/mage/ie-class-fixer.js                |   0
 lib/web/mage/item-table.js                    |   0
 lib/web/mage/layout.js                        |   0
 lib/web/mage/list.js                          |   0
 lib/web/mage/loader.js                        |   0
 lib/web/mage/loader_old.js                    |   0
 lib/web/mage/mage.js                          |   0
 lib/web/mage/menu.js                          |   0
 lib/web/mage/multiselect.html                 |   0
 lib/web/mage/multiselect.js                   |   0
 lib/web/mage/popup-window.js                  |   0
 lib/web/mage/redirect-url.js                  |   0
 lib/web/mage/requirejs/baseUrlResolver.js     |   0
 lib/web/mage/requirejs/mixins.js              |   0
 lib/web/mage/requirejs/resolver.js            |   0
 lib/web/mage/requirejs/static.js              |   0
 lib/web/mage/requirejs/text.js                |   0
 lib/web/mage/smart-keyboard-handler.js        |   0
 lib/web/mage/sticky.js                        |   0
 lib/web/mage/storage.js                       |   0
 lib/web/mage/tabs.js                          |   0
 lib/web/mage/template.js                      |   0
 lib/web/mage/terms.js                         |   0
 lib/web/mage/toggle.js                        |   0
 lib/web/mage/tooltip.js                       |   0
 lib/web/mage/translate-inline-vde.css         |   0
 lib/web/mage/translate-inline-vde.js          |   0
 lib/web/mage/translate-inline.css             |   0
 lib/web/mage/translate-inline.js              |   0
 lib/web/mage/translate.js                     |   0
 lib/web/mage/url.js                           |   0
 lib/web/mage/utils/arrays.js                  |   0
 lib/web/mage/utils/compare.js                 |   0
 lib/web/mage/utils/main.js                    |   0
 lib/web/mage/utils/misc.js                    |   0
 lib/web/mage/utils/objects.js                 |   0
 lib/web/mage/utils/strings.js                 |   0
 lib/web/mage/utils/template.js                |   0
 lib/web/mage/utils/wrapper.js                 |   0
 lib/web/mage/validation.js                    |   0
 lib/web/mage/validation/url.js                |   0
 lib/web/mage/validation/validation.js         |   0
 lib/web/mage/view/composite.js                |   0
 lib/web/mage/webapi.js                        |   0
 lib/web/mage/zoom.js                          |   0
 lib/web/magnifier/magnifier.js                |   0
 lib/web/magnifier/magnify.js                  |   0
 lib/web/matchMedia.js                         |   0
 lib/web/modernizr/modernizr.2.0.6.js          |   0
 lib/web/modernizr/modernizr.details.js        |   0
 lib/web/modernizr/modernizr.js                |   0
 lib/web/moment-timezone-with-data.js          |   0
 lib/web/moment.js                             |   0
 lib/web/prototype/prototype-amd.js            |   0
 lib/web/prototype/prototype.js                |   0
 lib/web/prototype/validation.js               |   0
 lib/web/prototype/window.js                   |   0
 lib/web/prototype/window_readme.txt           |   0
 lib/web/prototype/windows/MIT-LICENSE         |   0
 lib/web/prototype/windows/README              |   0
 lib/web/prototype/windows/themes/alert.css    |   0
 .../prototype/windows/themes/alert/bottom.gif | Bin
 .../windows/themes/alert/bottom_left.gif      | Bin
 .../windows/themes/alert/bottom_right.gif     | Bin
 .../prototype/windows/themes/alert/left.gif   | Bin
 .../windows/themes/alert/overlay.png          | Bin
 .../windows/themes/alert/progress.gif         | Bin
 .../prototype/windows/themes/alert/right.gif  | Bin
 .../prototype/windows/themes/alert/top.gif    | Bin
 .../windows/themes/alert/top_left.gif         | Bin
 .../windows/themes/alert/top_right.gif        | Bin
 .../prototype/windows/themes/alert_lite.css   |   0
 .../prototype/windows/themes/alphacube.css    |   0
 .../themes/alphacube/bottom-left-c.gif        | Bin
 .../themes/alphacube/bottom-middle.gif        | Bin
 .../themes/alphacube/bottom-right-c.gif       | Bin
 .../themes/alphacube/button-close-focus.gif   | Bin
 .../themes/alphacube/button-max-focus.gif     | Bin
 .../themes/alphacube/button-min-focus.gif     | Bin
 .../windows/themes/alphacube/frame-left.gif   | Bin
 .../windows/themes/alphacube/frame-right.gif  | Bin
 .../windows/themes/alphacube/left-top.gif     | Bin
 .../windows/themes/alphacube/right-top.gif    | Bin
 .../windows/themes/alphacube/top-middle.gif   | Bin
 lib/web/prototype/windows/themes/behavior.htc |   0
 lib/web/prototype/windows/themes/darkX.css    |   0
 .../themes/darkX/button-close-focused.png     | Bin
 .../themes/darkX/button-maximize-focused.png  | Bin
 .../themes/darkX/button-minimize-focused.png  | Bin
 .../darkX/frame-bottom-left-focused.png       | Bin
 .../themes/darkX/frame-bottom-mid-focused.png | Bin
 .../darkX/frame-bottom-right-focused.png      | Bin
 .../themes/darkX/frame-left-focused.png       | Bin
 .../themes/darkX/frame-right-focused.png      | Bin
 .../themes/darkX/titlebar-left-focused.png    | Bin
 .../themes/darkX/titlebar-mid-focused.png     | Bin
 .../themes/darkX/titlebar-right-focused.png   | Bin
 lib/web/prototype/windows/themes/debug.css    |   0
 lib/web/prototype/windows/themes/default.css  |   0
 .../windows/themes/default/bottom_left.gif    | Bin
 .../windows/themes/default/bottom_mid.gif     | Bin
 .../windows/themes/default/bottom_right.gif   | Bin
 .../themes/default/bottom_right_resize.gif    | Bin
 .../windows/themes/default/center_left.gif    | Bin
 .../windows/themes/default/center_right.gif   | Bin
 .../windows/themes/default/clear.gif          | Bin
 .../windows/themes/default/close.gif          | Bin
 .../windows/themes/default/inspect.gif        | Bin
 .../windows/themes/default/maximize.gif       | Bin
 .../windows/themes/default/minimize.gif       | Bin
 .../windows/themes/default/overlay.png        | Bin
 .../windows/themes/default/resize.gif         | Bin
 .../windows/themes/default/sizer.gif          | Bin
 .../windows/themes/default/top_left.gif       | Bin
 .../windows/themes/default/top_mid.gif        | Bin
 .../windows/themes/default/top_right.gif      | Bin
 .../prototype/windows/themes/iefix/blank.gif  | Bin
 .../windows/themes/iefix/iepngfix.css         |   0
 .../windows/themes/iefix/iepngfix.htc         |   0
 lib/web/prototype/windows/themes/lighting.css |   0
 .../themes/lighting/background_buttons.gif    | Bin
 .../themes/lighting/bottom-left-blue.png      | Bin
 .../themes/lighting/bottom-left-darkblue.png  | Bin
 .../themes/lighting/bottom-left-green.png     | Bin
 .../themes/lighting/bottom-left-grey.png      | Bin
 .../themes/lighting/bottom-middle-blue.png    | Bin
 .../lighting/bottom-middle-darkblue.png       | Bin
 .../themes/lighting/bottom-middle-green.png   | Bin
 .../themes/lighting/bottom-middle-grey.png    | Bin
 .../themes/lighting/bottom-right-blue.png     | Bin
 .../themes/lighting/bottom-right-darkblue.png | Bin
 .../themes/lighting/bottom-right-green.png    | Bin
 .../themes/lighting/bottom-right-grey.png     | Bin
 .../themes/lighting/button-close-blue.png     | Bin
 .../themes/lighting/button-close-darkblue.png | Bin
 .../themes/lighting/button-close-green.png    | Bin
 .../themes/lighting/button-close-grey.png     | Bin
 .../themes/lighting/button-maximize-blue.png  | Bin
 .../lighting/button-maximize-darkblue.png     | Bin
 .../themes/lighting/button-maximize-green.png | Bin
 .../themes/lighting/button-maximize-grey.png  | Bin
 .../themes/lighting/button-minimize-blue.png  | Bin
 .../lighting/button-minimize-darkblue.png     | Bin
 .../themes/lighting/button-minimize-green.png | Bin
 .../themes/lighting/button-minimize-grey.png  | Bin
 .../windows/themes/lighting/left-blue.png     | Bin
 .../windows/themes/lighting/left-darkblue.png | Bin
 .../windows/themes/lighting/left-green.png    | Bin
 .../windows/themes/lighting/left-grey.png     | Bin
 .../windows/themes/lighting/pngbehavior.htc   |   0
 .../windows/themes/lighting/right-blue.png    | Bin
 .../themes/lighting/right-darkblue.png        | Bin
 .../windows/themes/lighting/right-green.png   | Bin
 .../windows/themes/lighting/right-grey.png    | Bin
 .../windows/themes/lighting/spinner.gif       | Bin
 .../windows/themes/lighting/top-left-blue.png | Bin
 .../themes/lighting/top-left-darkblue.png     | Bin
 .../themes/lighting/top-left-green.png        | Bin
 .../windows/themes/lighting/top-left-grey.png | Bin
 .../themes/lighting/top-middle-blue.png       | Bin
 .../themes/lighting/top-middle-darkblue.png   | Bin
 .../themes/lighting/top-middle-green.png      | Bin
 .../themes/lighting/top-middle-grey.png       | Bin
 .../themes/lighting/top-right-blue.png        | Bin
 .../themes/lighting/top-right-darkblue.png    | Bin
 .../themes/lighting/top-right-green.png       | Bin
 .../themes/lighting/top-right-grey.png        | Bin
 lib/web/prototype/windows/themes/mac_os_x.css |   0
 .../windows/themes/mac_os_x_dialog.css        |   0
 lib/web/prototype/windows/themes/nuncio.css   |   0
 .../windows/themes/nuncio/bottom_left.png     | Bin
 .../windows/themes/nuncio/bottom_mid.png      | Bin
 .../windows/themes/nuncio/bottom_right.png    | Bin
 .../windows/themes/nuncio/center_left.png     | Bin
 .../windows/themes/nuncio/center_right.png    | Bin
 .../prototype/windows/themes/nuncio/close.png | Bin
 .../windows/themes/nuncio/minimize.png        | Bin
 .../windows/themes/nuncio/overlay.png         | Bin
 .../windows/themes/nuncio/top_left.png        | Bin
 .../windows/themes/nuncio/top_mid.png         | Bin
 .../windows/themes/nuncio/top_right.png       | Bin
 lib/web/prototype/windows/themes/spread.css   |   0
 lib/web/prototype/windows/themes/spread/.gif  | Bin
 .../windows/themes/spread/bottom-left-c.gif   | Bin
 .../windows/themes/spread/bottom-middle.gif   | Bin
 .../windows/themes/spread/bottom-right-c.gif  | Bin
 .../themes/spread/button-close-focus.gif      | Bin
 .../themes/spread/button-max-focus.gif        | Bin
 .../themes/spread/button-min-focus.gif        | Bin
 .../windows/themes/spread/frame-left.gif      | Bin
 .../windows/themes/spread/frame-right.gif     | Bin
 .../windows/themes/spread/left-top.gif        | Bin
 .../windows/themes/spread/right-top.gif       | Bin
 .../windows/themes/spread/top-middle.gif      | Bin
 lib/web/requirejs/domReady.js                 |   0
 lib/web/requirejs/require.js                  |   0
 lib/web/requirejs/text.js                     |   0
 lib/web/scriptaculous/builder.js              |   0
 lib/web/scriptaculous/effects.js              |   0
 lib/web/spacer.gif                            | Bin
 lib/web/tiny_mce/classes/AddOnManager.js      |   0
 lib/web/tiny_mce/classes/ControlManager.js    |   0
 lib/web/tiny_mce/classes/Editor.js            |   0
 lib/web/tiny_mce/classes/EditorCommands.js    |   0
 lib/web/tiny_mce/classes/EditorManager.js     |   0
 lib/web/tiny_mce/classes/ForceBlocks.js       |   0
 lib/web/tiny_mce/classes/Formatter.js         |   0
 lib/web/tiny_mce/classes/LegacyInput.js       |   0
 lib/web/tiny_mce/classes/Popup.js             |   0
 lib/web/tiny_mce/classes/UndoManager.js       |   0
 lib/web/tiny_mce/classes/WindowManager.js     |   0
 .../classes/adapter/jquery/adapter.js         |   0
 .../classes/adapter/jquery/jquery.tinymce.js  |   0
 .../classes/adapter/prototype/adapter.js      |   0
 lib/web/tiny_mce/classes/dom/DOMUtils.js      |   0
 lib/web/tiny_mce/classes/dom/Element.js       |   0
 lib/web/tiny_mce/classes/dom/EventUtils.js    |   0
 lib/web/tiny_mce/classes/dom/Range.js         |   0
 lib/web/tiny_mce/classes/dom/RangeUtils.js    |   0
 lib/web/tiny_mce/classes/dom/ScriptLoader.js  |   0
 lib/web/tiny_mce/classes/dom/Selection.js     |   0
 lib/web/tiny_mce/classes/dom/Serializer.js    |   0
 lib/web/tiny_mce/classes/dom/Sizzle.js        |   0
 lib/web/tiny_mce/classes/dom/TreeWalker.js    |   0
 .../tiny_mce/classes/dom/TridentSelection.js  |   0
 .../tiny_mce/classes/firebug/FIREBUG.LICENSE  |   0
 .../tiny_mce/classes/firebug/firebug-lite.js  |   0
 lib/web/tiny_mce/classes/html/DomParser.js    |   0
 lib/web/tiny_mce/classes/html/Entities.js     |   0
 lib/web/tiny_mce/classes/html/Node.js         |   0
 lib/web/tiny_mce/classes/html/SaxParser.js    |   0
 lib/web/tiny_mce/classes/html/Schema.js       |   0
 lib/web/tiny_mce/classes/html/Serializer.js   |   0
 lib/web/tiny_mce/classes/html/Styles.js       |   0
 lib/web/tiny_mce/classes/html/Writer.js       |   0
 lib/web/tiny_mce/classes/tinymce.js           |   0
 lib/web/tiny_mce/classes/ui/Button.js         |   0
 .../tiny_mce/classes/ui/ColorSplitButton.js   |   0
 lib/web/tiny_mce/classes/ui/Container.js      |   0
 lib/web/tiny_mce/classes/ui/Control.js        |   0
 lib/web/tiny_mce/classes/ui/DropMenu.js       |   0
 .../tiny_mce/classes/ui/KeyboardNavigation.js |   0
 lib/web/tiny_mce/classes/ui/ListBox.js        |   0
 lib/web/tiny_mce/classes/ui/Menu.js           |   0
 lib/web/tiny_mce/classes/ui/MenuButton.js     |   0
 lib/web/tiny_mce/classes/ui/MenuItem.js       |   0
 lib/web/tiny_mce/classes/ui/NativeListBox.js  |   0
 lib/web/tiny_mce/classes/ui/Separator.js      |   0
 lib/web/tiny_mce/classes/ui/SplitButton.js    |   0
 lib/web/tiny_mce/classes/ui/Toolbar.js        |   0
 lib/web/tiny_mce/classes/ui/ToolbarGroup.js   |   0
 lib/web/tiny_mce/classes/util/Cookie.js       |   0
 lib/web/tiny_mce/classes/util/Dispatcher.js   |   0
 lib/web/tiny_mce/classes/util/JSON.js         |   0
 lib/web/tiny_mce/classes/util/JSONP.js        |   0
 lib/web/tiny_mce/classes/util/JSONRequest.js  |   0
 lib/web/tiny_mce/classes/util/Quirks.js       |   0
 lib/web/tiny_mce/classes/util/URI.js          |   0
 lib/web/tiny_mce/classes/util/VK.js           |   0
 lib/web/tiny_mce/classes/util/XHR.js          |   0
 lib/web/tiny_mce/classes/xml/Parser.js        |   0
 lib/web/tiny_mce/jquery.tinymce.js            |   0
 lib/web/tiny_mce/langs/en.js                  |   0
 lib/web/tiny_mce/license.txt                  |   0
 lib/web/tiny_mce/plugins/advhr/css/advhr.css  |   0
 .../tiny_mce/plugins/advhr/editor_plugin.js   |   0
 .../plugins/advhr/editor_plugin_src.js        |   0
 lib/web/tiny_mce/plugins/advhr/js/rule.js     |   0
 .../tiny_mce/plugins/advhr/langs/en_dlg.js    |   0
 lib/web/tiny_mce/plugins/advhr/rule.htm       |   0
 .../plugins/advimage/css/advimage.css         |   0
 .../plugins/advimage/editor_plugin.js         |   0
 .../plugins/advimage/editor_plugin_src.js     |   0
 lib/web/tiny_mce/plugins/advimage/image.htm   |   0
 .../tiny_mce/plugins/advimage/img/sample.gif  | Bin
 lib/web/tiny_mce/plugins/advimage/js/image.js |   0
 .../tiny_mce/plugins/advimage/langs/en_dlg.js |   0
 .../tiny_mce/plugins/advlink/css/advlink.css  |   0
 .../tiny_mce/plugins/advlink/editor_plugin.js |   0
 .../plugins/advlink/editor_plugin_src.js      |   0
 .../tiny_mce/plugins/advlink/js/advlink.js    |   0
 .../tiny_mce/plugins/advlink/langs/en_dlg.js  |   0
 lib/web/tiny_mce/plugins/advlink/link.htm     |   0
 .../tiny_mce/plugins/advlist/editor_plugin.js |   0
 .../plugins/advlist/editor_plugin_src.js      |   0
 .../plugins/autolink/editor_plugin.js         |   0
 .../plugins/autolink/editor_plugin_src.js     |   0
 .../plugins/autoresize/editor_plugin.js       |   0
 .../plugins/autoresize/editor_plugin_src.js   |   0
 .../plugins/autosave/editor_plugin.js         |   0
 .../plugins/autosave/editor_plugin_src.js     |   0
 lib/web/tiny_mce/plugins/autosave/langs/en.js |   0
 .../tiny_mce/plugins/bbcode/editor_plugin.js  |   0
 .../plugins/bbcode/editor_plugin_src.js       |   0
 .../plugins/contextmenu/editor_plugin.js      |   0
 .../plugins/contextmenu/editor_plugin_src.js  |   0
 .../plugins/directionality/editor_plugin.js   |   0
 .../directionality/editor_plugin_src.js       |   0
 .../plugins/emotions/editor_plugin.js         |   0
 .../plugins/emotions/editor_plugin_src.js     |   0
 .../tiny_mce/plugins/emotions/emotions.htm    |   0
 .../plugins/emotions/img/smiley-cool.gif      | Bin
 .../plugins/emotions/img/smiley-cry.gif       | Bin
 .../emotions/img/smiley-embarassed.gif        | Bin
 .../emotions/img/smiley-foot-in-mouth.gif     | Bin
 .../plugins/emotions/img/smiley-frown.gif     | Bin
 .../plugins/emotions/img/smiley-innocent.gif  | Bin
 .../plugins/emotions/img/smiley-kiss.gif      | Bin
 .../plugins/emotions/img/smiley-laughing.gif  | Bin
 .../emotions/img/smiley-money-mouth.gif       | Bin
 .../plugins/emotions/img/smiley-sealed.gif    | Bin
 .../plugins/emotions/img/smiley-smile.gif     | Bin
 .../plugins/emotions/img/smiley-surprised.gif | Bin
 .../emotions/img/smiley-tongue-out.gif        | Bin
 .../plugins/emotions/img/smiley-undecided.gif | Bin
 .../plugins/emotions/img/smiley-wink.gif      | Bin
 .../plugins/emotions/img/smiley-yell.gif      | Bin
 .../tiny_mce/plugins/emotions/js/emotions.js  |   0
 .../tiny_mce/plugins/emotions/langs/en_dlg.js |   0
 lib/web/tiny_mce/plugins/example/dialog.htm   |   0
 .../tiny_mce/plugins/example/editor_plugin.js |   0
 .../plugins/example/editor_plugin_src.js      |   0
 .../tiny_mce/plugins/example/img/example.gif  | Bin
 lib/web/tiny_mce/plugins/example/js/dialog.js |   0
 lib/web/tiny_mce/plugins/example/langs/en.js  |   0
 .../tiny_mce/plugins/example/langs/en_dlg.js  |   0
 .../example_dependency/editor_plugin.js       |   0
 .../example_dependency/editor_plugin_src.js   |   0
 .../plugins/fullpage/css/fullpage.css         |   0
 .../plugins/fullpage/editor_plugin.js         |   0
 .../plugins/fullpage/editor_plugin_src.js     |   0
 .../tiny_mce/plugins/fullpage/fullpage.htm    |   0
 .../tiny_mce/plugins/fullpage/js/fullpage.js  |   0
 .../tiny_mce/plugins/fullpage/langs/en_dlg.js |   0
 .../plugins/fullscreen/editor_plugin.js       |   0
 .../plugins/fullscreen/editor_plugin_src.js   |   0
 .../plugins/fullscreen/fullscreen.htm         |   0
 .../tiny_mce/plugins/iespell/editor_plugin.js |   0
 .../plugins/iespell/editor_plugin_src.js      |   0
 .../plugins/inlinepopups/editor_plugin.js     |   0
 .../plugins/inlinepopups/editor_plugin_src.js |   0
 .../skins/clearlooks2/img/alert.gif           | Bin
 .../skins/clearlooks2/img/button.gif          | Bin
 .../skins/clearlooks2/img/buttons.gif         | Bin
 .../skins/clearlooks2/img/confirm.gif         | Bin
 .../skins/clearlooks2/img/corners.gif         | Bin
 .../skins/clearlooks2/img/horizontal.gif      | Bin
 .../skins/clearlooks2/img/vertical.gif        | Bin
 .../inlinepopups/skins/clearlooks2/window.css |   0
 .../plugins/inlinepopups/template.htm         |   0
 .../plugins/insertdatetime/editor_plugin.js   |   0
 .../insertdatetime/editor_plugin_src.js       |   0
 .../tiny_mce/plugins/layer/editor_plugin.js   |   0
 .../plugins/layer/editor_plugin_src.js        |   0
 .../plugins/legacyoutput/editor_plugin.js     |   0
 .../plugins/legacyoutput/editor_plugin_src.js |   0
 .../tiny_mce/plugins/lists/editor_plugin.js   |   0
 .../plugins/lists/editor_plugin_src.js        |   0
 lib/web/tiny_mce/plugins/media/css/media.css  |   0
 .../tiny_mce/plugins/media/editor_plugin.js   |   0
 .../plugins/media/editor_plugin_src.js        |   0
 lib/web/tiny_mce/plugins/media/img/flash.gif  | Bin
 .../tiny_mce/plugins/media/img/quicktime.gif  | Bin
 .../tiny_mce/plugins/media/img/realmedia.gif  | Bin
 .../tiny_mce/plugins/media/img/shockwave.gif  | Bin
 lib/web/tiny_mce/plugins/media/img/trans.gif  | Bin
 .../plugins/media/img/windowsmedia.gif        | Bin
 lib/web/tiny_mce/plugins/media/js/embed.js    |   0
 lib/web/tiny_mce/plugins/media/js/media.js    |   0
 .../tiny_mce/plugins/media/langs/en_dlg.js    |   0
 lib/web/tiny_mce/plugins/media/media.htm      |   0
 .../tiny_mce/plugins/media/moxieplayer.swf    | Bin
 .../plugins/nonbreaking/editor_plugin.js      |   0
 .../plugins/nonbreaking/editor_plugin_src.js  |   0
 .../plugins/noneditable/editor_plugin.js      |   0
 .../plugins/noneditable/editor_plugin_src.js  |   0
 .../plugins/pagebreak/css/content.css         |   0
 .../plugins/pagebreak/editor_plugin.js        |   0
 .../plugins/pagebreak/editor_plugin_src.js    |   0
 .../plugins/pagebreak/img/pagebreak.gif       | Bin
 .../tiny_mce/plugins/pagebreak/img/trans.gif  | Bin
 .../tiny_mce/plugins/paste/editor_plugin.js   |   0
 .../plugins/paste/editor_plugin_src.js        |   0
 .../tiny_mce/plugins/paste/js/pastetext.js    |   0
 .../tiny_mce/plugins/paste/js/pasteword.js    |   0
 .../tiny_mce/plugins/paste/langs/en_dlg.js    |   0
 lib/web/tiny_mce/plugins/paste/pastetext.htm  |   0
 lib/web/tiny_mce/plugins/paste/pasteword.htm  |   0
 .../tiny_mce/plugins/preview/editor_plugin.js |   0
 .../plugins/preview/editor_plugin_src.js      |   0
 lib/web/tiny_mce/plugins/preview/example.html |   0
 .../plugins/preview/jscripts/embed.js         |   0
 lib/web/tiny_mce/plugins/preview/preview.html |   0
 .../tiny_mce/plugins/print/editor_plugin.js   |   0
 .../plugins/print/editor_plugin_src.js        |   0
 .../tiny_mce/plugins/save/editor_plugin.js    |   0
 .../plugins/save/editor_plugin_src.js         |   0
 .../searchreplace/css/searchreplace.css       |   0
 .../plugins/searchreplace/editor_plugin.js    |   0
 .../searchreplace/editor_plugin_src.js        |   0
 .../plugins/searchreplace/js/searchreplace.js |   0
 .../plugins/searchreplace/langs/en_dlg.js     |   0
 .../plugins/searchreplace/searchreplace.htm   |   0
 .../plugins/spellchecker/css/content.css      |   0
 .../plugins/spellchecker/editor_plugin.js     |   0
 .../plugins/spellchecker/editor_plugin_src.js |   0
 .../plugins/spellchecker/img/wline.gif        | Bin
 lib/web/tiny_mce/plugins/style/css/props.css  |   0
 .../tiny_mce/plugins/style/editor_plugin.js   |   0
 .../plugins/style/editor_plugin_src.js        |   0
 lib/web/tiny_mce/plugins/style/js/props.js    |   0
 .../tiny_mce/plugins/style/langs/en_dlg.js    |   0
 lib/web/tiny_mce/plugins/style/props.htm      |   0
 .../plugins/tabfocus/editor_plugin.js         |   0
 .../plugins/tabfocus/editor_plugin_src.js     |   0
 lib/web/tiny_mce/plugins/table/cell.htm       |   0
 lib/web/tiny_mce/plugins/table/css/cell.css   |   0
 lib/web/tiny_mce/plugins/table/css/row.css    |   0
 lib/web/tiny_mce/plugins/table/css/table.css  |   0
 .../tiny_mce/plugins/table/editor_plugin.js   |   0
 .../plugins/table/editor_plugin_src.js        |   0
 lib/web/tiny_mce/plugins/table/js/cell.js     |   0
 .../tiny_mce/plugins/table/js/merge_cells.js  |   0
 lib/web/tiny_mce/plugins/table/js/row.js      |   0
 lib/web/tiny_mce/plugins/table/js/table.js    |   0
 .../tiny_mce/plugins/table/langs/en_dlg.js    |   0
 .../tiny_mce/plugins/table/merge_cells.htm    |   0
 lib/web/tiny_mce/plugins/table/row.htm        |   0
 lib/web/tiny_mce/plugins/table/table.htm      |   0
 lib/web/tiny_mce/plugins/template/blank.htm   |   0
 .../plugins/template/css/template.css         |   0
 .../plugins/template/editor_plugin.js         |   0
 .../plugins/template/editor_plugin_src.js     |   0
 .../tiny_mce/plugins/template/js/template.js  |   0
 .../tiny_mce/plugins/template/langs/en_dlg.js |   0
 .../tiny_mce/plugins/template/template.htm    |   0
 .../plugins/visualchars/editor_plugin.js      |   0
 .../plugins/visualchars/editor_plugin_src.js  |   0
 .../plugins/wordcount/editor_plugin.js        |   0
 .../plugins/wordcount/editor_plugin_src.js    |   0
 lib/web/tiny_mce/plugins/xhtmlxtras/abbr.htm  |   0
 .../tiny_mce/plugins/xhtmlxtras/acronym.htm   |   0
 .../plugins/xhtmlxtras/attributes.htm         |   0
 lib/web/tiny_mce/plugins/xhtmlxtras/cite.htm  |   0
 .../plugins/xhtmlxtras/css/attributes.css     |   0
 .../tiny_mce/plugins/xhtmlxtras/css/popup.css |   0
 lib/web/tiny_mce/plugins/xhtmlxtras/del.htm   |   0
 .../plugins/xhtmlxtras/editor_plugin.js       |   0
 .../plugins/xhtmlxtras/editor_plugin_src.js   |   0
 lib/web/tiny_mce/plugins/xhtmlxtras/ins.htm   |   0
 .../tiny_mce/plugins/xhtmlxtras/js/abbr.js    |   0
 .../tiny_mce/plugins/xhtmlxtras/js/acronym.js |   0
 .../plugins/xhtmlxtras/js/attributes.js       |   0
 .../tiny_mce/plugins/xhtmlxtras/js/cite.js    |   0
 lib/web/tiny_mce/plugins/xhtmlxtras/js/del.js |   0
 .../plugins/xhtmlxtras/js/element_common.js   |   0
 lib/web/tiny_mce/plugins/xhtmlxtras/js/ins.js |   0
 .../plugins/xhtmlxtras/langs/en_dlg.js        |   0
 lib/web/tiny_mce/themes/advanced/about.htm    |   0
 lib/web/tiny_mce/themes/advanced/anchor.htm   |   0
 lib/web/tiny_mce/themes/advanced/charmap.htm  |   0
 .../tiny_mce/themes/advanced/color_picker.htm |   0
 .../themes/advanced/editor_template.js        |   0
 .../themes/advanced/editor_template_src.js    |   0
 lib/web/tiny_mce/themes/advanced/image.htm    |   0
 .../themes/advanced/img/colorpicker.jpg       | Bin
 .../tiny_mce/themes/advanced/img/flash.gif    | Bin
 .../tiny_mce/themes/advanced/img/icons.png    | Bin
 .../tiny_mce/themes/advanced/img/iframe.gif   | Bin
 .../themes/advanced/img/pagebreak.gif         | Bin
 .../themes/advanced/img/quicktime.gif         | Bin
 .../themes/advanced/img/realmedia.gif         | Bin
 .../themes/advanced/img/shockwave.gif         | Bin
 .../tiny_mce/themes/advanced/img/trans.gif    | Bin
 .../tiny_mce/themes/advanced/img/video.gif    | Bin
 .../themes/advanced/img/windowsmedia.gif      | Bin
 lib/web/tiny_mce/themes/advanced/js/about.js  |   0
 lib/web/tiny_mce/themes/advanced/js/anchor.js |   0
 .../tiny_mce/themes/advanced/js/charmap.js    |   0
 .../themes/advanced/js/color_picker.js        |   0
 lib/web/tiny_mce/themes/advanced/js/image.js  |   0
 lib/web/tiny_mce/themes/advanced/js/link.js   |   0
 .../themes/advanced/js/source_editor.js       |   0
 lib/web/tiny_mce/themes/advanced/langs/en.js  |   0
 .../tiny_mce/themes/advanced/langs/en_dlg.js  |   0
 lib/web/tiny_mce/themes/advanced/link.htm     |   0
 .../tiny_mce/themes/advanced/shortcuts.htm    |   0
 .../themes/advanced/skins/default/content.css |   0
 .../themes/advanced/skins/default/dialog.css  |   0
 .../advanced/skins/default/img/buttons.png    | Bin
 .../advanced/skins/default/img/items.gif      | Bin
 .../advanced/skins/default/img/menu_arrow.gif | Bin
 .../advanced/skins/default/img/menu_check.gif | Bin
 .../advanced/skins/default/img/progress.gif   | Bin
 .../advanced/skins/default/img/tabs.gif       | Bin
 .../themes/advanced/skins/default/ui.css      |   0
 .../advanced/skins/highcontrast/content.css   |   0
 .../advanced/skins/highcontrast/dialog.css    |   0
 .../themes/advanced/skins/highcontrast/ui.css |   0
 .../themes/advanced/skins/o2k7/content.css    |   0
 .../themes/advanced/skins/o2k7/dialog.css     |   0
 .../advanced/skins/o2k7/img/button_bg.png     | Bin
 .../skins/o2k7/img/button_bg_black.png        | Bin
 .../skins/o2k7/img/button_bg_silver.png       | Bin
 .../themes/advanced/skins/o2k7/ui.css         |   0
 .../themes/advanced/skins/o2k7/ui_black.css   |   0
 .../themes/advanced/skins/o2k7/ui_silver.css  |   0
 .../themes/advanced/source_editor.htm         |   0
 .../tiny_mce/themes/simple/editor_template.js |   0
 .../themes/simple/editor_template_src.js      |   0
 lib/web/tiny_mce/themes/simple/img/icons.png  | Bin
 lib/web/tiny_mce/themes/simple/langs/en.js    |   0
 .../themes/simple/skins/default/content.css   |   0
 .../themes/simple/skins/default/ui.css        |   0
 .../themes/simple/skins/o2k7/content.css      |   0
 .../simple/skins/o2k7/img/button_bg.png       | Bin
 .../tiny_mce/themes/simple/skins/o2k7/ui.css  |   0
 lib/web/tiny_mce/tiny_mce.js                  |   0
 lib/web/tiny_mce/tiny_mce_dev.js              |   0
 lib/web/tiny_mce/tiny_mce_jquery.js           |   0
 lib/web/tiny_mce/tiny_mce_jquery_src.js       |   0
 lib/web/tiny_mce/tiny_mce_popup.js            |   0
 lib/web/tiny_mce/tiny_mce_prototype.js        |   0
 lib/web/tiny_mce/tiny_mce_prototype_src.js    |   0
 lib/web/tiny_mce/tiny_mce_src.js              |   0
 lib/web/tiny_mce/utils/editable_selects.js    |   0
 lib/web/tiny_mce/utils/form_utils.js          |   0
 lib/web/tiny_mce/utils/mctabs.js              |   0
 lib/web/tiny_mce/utils/validate.js            |   0
 lib/web/underscore.js                         |   0
 lib/web/varien/form.js                        |   0
 lib/web/varien/js.js                          |   0
 nginx.conf.sample                             |   0
 package.json.sample                           |   0
 php.ini.sample                                |   0
 phpserver/.htaccess                           |   0
 phpserver/README.md                           |   0
 phpserver/router.php                          |   0
 pub/.htaccess                                 |   0
 pub/.user.ini                                 |   0
 pub/cron.php                                  |   0
 pub/errors/.htaccess                          |   0
 pub/errors/404.php                            |   0
 pub/errors/503.php                            |   0
 pub/errors/default/404.phtml                  |   0
 pub/errors/default/503.phtml                  |   0
 pub/errors/default/css/styles.css             |   0
 pub/errors/default/images/favicon.ico         | Bin
 pub/errors/default/images/i_msg-error.gif     | Bin
 pub/errors/default/images/i_msg-note.gif      | Bin
 pub/errors/default/images/i_msg-success.gif   | Bin
 pub/errors/default/images/logo.gif            | Bin
 pub/errors/default/nocache.phtml              |   0
 pub/errors/default/page.phtml                 |   0
 pub/errors/default/report.phtml               |   0
 pub/errors/design.xml                         |   0
 pub/errors/local.xml.sample                   |   0
 pub/errors/noCache.php                        |   0
 pub/errors/processor.php                      |   0
 pub/errors/processorFactory.php               |   0
 pub/errors/report.php                         |   0
 pub/get.php                                   |   0
 pub/health_check.php                          |   0
 pub/index.php                                 |   0
 pub/media/.htaccess                           |   0
 pub/media/customer/.htaccess                  |   0
 pub/media/downloadable/.htaccess              |   0
 pub/media/import/.htaccess                    |   0
 pub/media/theme_customization/.htaccess       |   0
 pub/opt/magento/var/resource_config.json      |   0
 pub/static.php                                |   0
 pub/static/.htaccess                          |   0
 setup/.htaccess                               |   0
 setup/config/.htaccess                        |   0
 setup/config/application.config.php           |   0
 setup/config/autoload/global.php              |   0
 setup/config/di.config.php                    |   0
 setup/config/languages.config.php             |   0
 setup/config/marketplace.config.php           |   0
 setup/config/module.config.php                |   0
 setup/config/router.config.php                |   0
 setup/config/states.disable.config.php        |   0
 setup/config/states.enable.config.php         |   0
 .../config/states.extensionManager.config.php |   0
 setup/config/states.home.config.php           |   0
 setup/config/states.install.config.php        |   0
 setup/config/states.uninstall.config.php      |   0
 setup/config/states.update.config.php         |   0
 setup/config/states.upgrade.config.php        |   0
 setup/index.php                               |   0
 setup/performance-toolkit/.htaccess           |   0
 setup/performance-toolkit/README.md           |   0
 setup/performance-toolkit/benchmark.jmx       |   0
 setup/performance-toolkit/benchmark_2015.jmx  |   0
 .../config/attributeSets.xml                  |   0
 .../config/customerConfig.xml                 |   0
 .../config/description.xml                    |   0
 setup/performance-toolkit/config/di.xml       |   0
 .../config/searchConfig.xml                   |   0
 .../config/searchTerms.xml                    |   0
 .../config/searchTermsLarge.xml               |   0
 .../config/shortDescription.xml               |   0
 .../files/downloadable_original.txt           |   0
 .../files/downloadable_sample.txt             |   0
 .../files/search_terms.csv                    |   0
 .../profiles/ce/extra_large.xml               |   0
 .../performance-toolkit/profiles/ce/large.xml |   0
 .../profiles/ce/medium.xml                    |   0
 .../profiles/ce/medium_msite.xml              |   0
 .../performance-toolkit/profiles/ce/small.xml |   0
 setup/pub/.htaccess                           |   0
 .../angular-clickout/angular-clickout.min.js  |   0
 .../angular-ng-dialog.min.js                  |   0
 .../angular-ng-storage.min.js                 |   0
 .../pub/angular-sanitize/angular-sanitize.js  |   0
 .../angular-sanitize/angular-sanitize.min.js  |   0
 .../angular-sanitize.min.js.map               |   0
 .../angular-ui-bootstrap.min.js               |   0
 .../angular-ui-router.min.js                  |   0
 setup/pub/angular/angular.js                  |   0
 setup/pub/angular/angular.min.js              |   0
 setup/pub/angular/angular.min.js.map          |   0
 setup/pub/bootstrap/js/bootstrap.js           |   0
 setup/pub/bootstrap/js/bootstrap.min.js       |   0
 setup/pub/fonts/icons/icons.eot               | Bin
 setup/pub/fonts/icons/icons.svg               |   0
 setup/pub/fonts/icons/icons.ttf               | Bin
 setup/pub/fonts/icons/icons.woff              | Bin
 setup/pub/fonts/icons/icons.woff2             | Bin
 setup/pub/fonts/icons/selection.json          |   0
 .../pub/fonts/opensans/bold/opensans-700.eot  | Bin
 .../pub/fonts/opensans/bold/opensans-700.svg  |   0
 .../pub/fonts/opensans/bold/opensans-700.ttf  | Bin
 .../pub/fonts/opensans/bold/opensans-700.woff | Bin
 .../fonts/opensans/bold/opensans-700.woff2    | Bin
 .../pub/fonts/opensans/light/opensans-300.eot | Bin
 .../pub/fonts/opensans/light/opensans-300.svg |   0
 .../pub/fonts/opensans/light/opensans-300.ttf | Bin
 .../fonts/opensans/light/opensans-300.woff    | Bin
 .../fonts/opensans/light/opensans-300.woff2   | Bin
 .../fonts/opensans/regular/opensans-400.eot   | Bin
 .../fonts/opensans/regular/opensans-400.svg   |   0
 .../fonts/opensans/regular/opensans-400.ttf   | Bin
 .../fonts/opensans/regular/opensans-400.woff  | Bin
 .../fonts/opensans/regular/opensans-400.woff2 | Bin
 .../fonts/opensans/semibold/opensans-600.eot  | Bin
 .../fonts/opensans/semibold/opensans-600.svg  |   0
 .../fonts/opensans/semibold/opensans-600.ttf  | Bin
 .../fonts/opensans/semibold/opensans-600.woff | Bin
 .../opensans/semibold/opensans-600.woff2      | Bin
 setup/pub/images/ajax-loader.gif              | Bin
 setup/pub/images/arrows-bg.svg                |   0
 setup/pub/images/favicon/favicon-16x16.png    | Bin
 setup/pub/images/favicon/favicon-32x32.png    | Bin
 setup/pub/images/favicon/favicon-96x96.png    | Bin
 setup/pub/images/favicon/favicon.ico          | Bin
 setup/pub/images/loader-1.gif                 | Bin
 setup/pub/images/loader-2.gif                 | Bin
 setup/pub/images/logo.svg                     |   0
 setup/pub/images/magento-icon.svg             |   0
 setup/pub/images/magento-logo.svg             |   0
 setup/pub/magento/setup/add-database.js       |   0
 setup/pub/magento/setup/app.js                |   0
 setup/pub/magento/setup/auth-dialog.js        |   0
 setup/pub/magento/setup/complete-backup.js    |   0
 .../pub/magento/setup/create-admin-account.js |   0
 setup/pub/magento/setup/create-backup.js      |   0
 .../pub/magento/setup/customize-your-store.js |   0
 setup/pub/magento/setup/data-option.js        |   0
 setup/pub/magento/setup/extension-grid.js     |   0
 setup/pub/magento/setup/home.js               |   0
 .../magento/setup/install-extension-grid.js   |   0
 setup/pub/magento/setup/install.js            |   0
 setup/pub/magento/setup/landing.js            |   0
 setup/pub/magento/setup/main.js               |   0
 .../magento/setup/marketplace-credentials.js  |   0
 setup/pub/magento/setup/module-grid.js        |   0
 setup/pub/magento/setup/readiness-check.js    |   0
 setup/pub/magento/setup/remove-dialog.js      |   0
 setup/pub/magento/setup/select-version.js     |   0
 setup/pub/magento/setup/start-updater.js      |   0
 setup/pub/magento/setup/success.js            |   0
 setup/pub/magento/setup/system-config.js      |   0
 .../magento/setup/update-extension-grid.js    |   0
 setup/pub/magento/setup/updater-success.js    |   0
 setup/pub/magento/setup/view/pagination.html  |   0
 setup/pub/magento/setup/web-configuration.js  |   0
 setup/pub/styles/setup.css                    |   0
 setup/src/.htaccess                           |   0
 setup/src/Magento/Setup/Application.php       |   0
 .../Command/AbstractDependenciesCommand.php   |   0
 .../Command/AbstractMaintenanceCommand.php    |   0
 .../Console/Command/AbstractModuleCommand.php |   0
 .../Command/AbstractModuleManageCommand.php   |   0
 .../Console/Command/AbstractSetupCommand.php  |   0
 .../Command/AdminUserCreateCommand.php        |   0
 .../Setup/Console/Command/BackupCommand.php   |   0
 .../Console/Command/ConfigSetCommand.php      |   0
 .../Setup/Console/Command/CronRunCommand.php  |   0
 .../Console/Command/DbDataUpgradeCommand.php  |   0
 .../Command/DbSchemaUpgradeCommand.php        |   0
 .../Setup/Console/Command/DbStatusCommand.php |   0
 .../DependenciesShowFrameworkCommand.php      |   0
 ...DependenciesShowModulesCircularCommand.php |   0
 .../DependenciesShowModulesCommand.php        |   0
 .../Command/DeployStaticContentCommand.php    |   0
 .../Console/Command/DiCompileCommand.php      |   0
 .../Command/GenerateFixturesCommand.php       |   0
 .../Command/I18nCollectPhrasesCommand.php     |   0
 .../Setup/Console/Command/I18nPackCommand.php |   0
 .../Console/Command/InfoAdminUriCommand.php   |   0
 .../Command/InfoBackupsListCommand.php        |   0
 .../Command/InfoCurrencyListCommand.php       |   0
 .../Command/InfoLanguageListCommand.php       |   0
 .../Command/InfoTimezoneListCommand.php       |   0
 .../Setup/Console/Command/InstallCommand.php  |   0
 .../InstallStoreConfigurationCommand.php      |   0
 .../Command/MaintenanceAllowIpsCommand.php    |   0
 .../Command/MaintenanceDisableCommand.php     |   0
 .../Command/MaintenanceEnableCommand.php      |   0
 .../Command/MaintenanceStatusCommand.php      |   0
 .../Console/Command/ModuleDisableCommand.php  |   0
 .../Console/Command/ModuleEnableCommand.php   |   0
 .../Console/Command/ModuleStatusCommand.php   |   0
 .../Command/ModuleUninstallCommand.php        |   0
 .../Setup/Console/Command/RollbackCommand.php |   0
 .../Console/Command/UninstallCommand.php      |   0
 .../Setup/Console/Command/UpgradeCommand.php  |   0
 .../src/Magento/Setup/Console/CommandList.php |   0
 .../Setup/Console/CompilerPreparation.php     |   0
 .../Magento/Setup/Controller/AddDatabase.php  |   0
 .../Setup/Controller/BackupActionItems.php    |   0
 .../Setup/Controller/CompleteBackup.php       |   0
 .../Setup/Controller/CreateAdminAccount.php   |   0
 .../Magento/Setup/Controller/CreateBackup.php |   0
 .../Setup/Controller/CustomizeYourStore.php   |   0
 .../Magento/Setup/Controller/DataOption.php   |   0
 .../Setup/Controller/DatabaseCheck.php        |   0
 .../Setup/Controller/DependencyCheck.php      |   0
 .../Magento/Setup/Controller/Environment.php  |   0
 .../Setup/Controller/ExtensionGrid.php        |   0
 setup/src/Magento/Setup/Controller/Home.php   |   0
 setup/src/Magento/Setup/Controller/Index.php  |   0
 .../src/Magento/Setup/Controller/Install.php  |   0
 .../Setup/Controller/InstallExtensionGrid.php |   0
 .../Setup/Controller/LandingInstaller.php     |   0
 .../Setup/Controller/LandingUpdater.php       |   0
 .../src/Magento/Setup/Controller/License.php  |   0
 .../Magento/Setup/Controller/Maintenance.php  |   0
 .../Magento/Setup/Controller/Marketplace.php  |   0
 .../Controller/MarketplaceCredentials.php     |   0
 .../Magento/Setup/Controller/ModuleGrid.php   |   0
 .../src/Magento/Setup/Controller/Modules.php  |   0
 .../Magento/Setup/Controller/Navigation.php   |   0
 .../Setup/Controller/OtherComponentsGrid.php  |   0
 .../Controller/ReadinessCheckInstaller.php    |   0
 .../Controller/ReadinessCheckUpdater.php      |   0
 .../Controller/ResponseTypeInterface.php      |   0
 .../Setup/Controller/SelectVersion.php        |   0
 .../src/Magento/Setup/Controller/Session.php  |   0
 .../Magento/Setup/Controller/StartUpdater.php |   0
 .../src/Magento/Setup/Controller/Success.php  |   0
 .../Magento/Setup/Controller/SystemConfig.php |   0
 .../Setup/Controller/UpdateExtensionGrid.php  |   0
 .../Setup/Controller/UpdaterSuccess.php       |   0
 .../src/Magento/Setup/Controller/UrlCheck.php |   0
 .../Controller/ValidateAdminCredentials.php   |   0
 .../Setup/Controller/WebConfiguration.php     |   0
 setup/src/Magento/Setup/Exception.php         |   0
 .../Setup/Fixtures/AdminUsersFixture.php      |   0
 .../AttributeSet/AttributeSetFixture.php      |   0
 .../Setup/Fixtures/AttributeSet/Pattern.php   |   0
 .../AttributeSet/SwatchesGenerator.php        |   0
 .../Setup/Fixtures/AttributeSetsFixture.php   |   0
 .../Setup/Fixtures/BundleProductsFixture.php  |   0
 .../Fixtures/CatalogPriceRulesFixture.php     |   0
 .../Setup/Fixtures/CategoriesFixture.php      |   0
 .../Setup/Fixtures/CategoryResolver.php       |   0
 .../Setup/Fixtures/ConfigsApplyFixture.php    |   0
 .../Fixtures/ConfigurableProductsFixture.php  |   0
 .../Setup/Fixtures/CustomerGroupsFixture.php  |   0
 .../Setup/Fixtures/CustomersFixture.php       |   0
 .../Setup/Fixtures/EavVariationsFixture.php   |   0
 setup/src/Magento/Setup/Fixtures/Fixture.php  |   0
 .../Magento/Setup/Fixtures/FixtureConfig.php  |   0
 .../Magento/Setup/Fixtures/FixtureModel.php   |   0
 .../Magento/Setup/Fixtures/ImagesFixture.php  |   0
 .../ImagesGenerator/ImagesGenerator.php       |   0
 .../Fixtures/IndexersStatesApplyFixture.php   |   0
 .../Magento/Setup/Fixtures/OrdersFixture.php  |   0
 .../Magento/Setup/Fixtures/PriceProvider.php  |   0
 .../Setup/Fixtures/ProductsAmountProvider.php |   0
 .../Fixtures/Quote/QuoteConfiguration.php     |   0
 .../Setup/Fixtures/Quote/QuoteGenerator.php   |   0
 .../Fixtures/Quote/QuoteGeneratorFactory.php  |   0
 .../Setup/Fixtures/SimpleProductsFixture.php  |   0
 .../Magento/Setup/Fixtures/StoresFixture.php  |   0
 .../Setup/Fixtures/TaxRatesFixture.php        |   0
 .../Setup/Fixtures/TaxRulesFixture.php        |   0
 .../Fixtures/WebsiteCategoryProvider.php      |   0
 .../Setup/Fixtures/_files/dictionary.csv      |   0
 .../Fixtures/_files/orders_fixture_data.json  |   0
 .../Setup/Fixtures/_files/tax_rates.csv       |   0
 .../Setup/Fixtures/_files/tax_rates_small.csv |   0
 .../Model/Address/AddressDataGenerator.php    |   0
 .../src/Magento/Setup/Model/AdminAccount.php  |   0
 .../Setup/Model/AdminAccountFactory.php       |   0
 .../Magento/Setup/Model/BasePackageInfo.php   |   0
 setup/src/Magento/Setup/Model/BatchInsert.php |   0
 setup/src/Magento/Setup/Model/Bootstrap.php   |   0
 .../Magento/Setup/Model/Complex/Generator.php |   0
 .../Magento/Setup/Model/Complex/Pattern.php   |   0
 .../Magento/Setup/Model/ConfigGenerator.php   |   0
 setup/src/Magento/Setup/Model/ConfigModel.php |   0
 .../Magento/Setup/Model/ConfigOptionsList.php |   0
 .../Setup/Model/ConfigOptionsList/Cache.php   |   0
 .../Model/ConfigOptionsList/PageCache.php     |   0
 .../Setup/Model/ConfigOptionsList/Session.php |   0
 .../Model/ConfigOptionsListCollector.php      |   0
 .../Magento/Setup/Model/Cron/AbstractJob.php  |   0
 .../Model/Cron/Helper/ModuleUninstall.php     |   0
 .../Model/Cron/Helper/ThemeUninstall.php      |   0
 .../Model/Cron/JobComponentUninstall.php      |   0
 .../Setup/Model/Cron/JobDbRollback.php        |   0
 .../Magento/Setup/Model/Cron/JobFactory.php   |   0
 .../Magento/Setup/Model/Cron/JobModule.php    |   0
 .../Magento/Setup/Model/Cron/JobSetCache.php  |   0
 .../Model/Cron/JobSetMaintenanceMode.php      |   0
 .../Setup/Model/Cron/JobStaticRegenerate.php  |   0
 .../Magento/Setup/Model/Cron/JobUpgrade.php   |   0
 .../Setup/Model/Cron/MultipleStreamOutput.php |   0
 setup/src/Magento/Setup/Model/Cron/Queue.php  |   0
 .../Magento/Setup/Model/Cron/Queue/Reader.php |   0
 .../Magento/Setup/Model/Cron/Queue/Writer.php |   0
 .../Setup/Model/Cron/ReadinessCheck.php       |   0
 .../Setup/Model/Cron/SetupLoggerFactory.php   |   0
 .../Setup/Model/Cron/SetupStreamHandler.php   |   0
 setup/src/Magento/Setup/Model/Cron/Status.php |   0
 .../Setup/Model/CronScriptReadinessCheck.php  |   0
 .../Magento/Setup/Model/CryptKeyGenerator.php |   0
 .../Model/CryptKeyGeneratorInterface.php      |   0
 .../Model/Customer/CustomerDataGenerator.php  |   0
 .../Customer/CustomerDataGeneratorFactory.php |   0
 .../src/Magento/Setup/Model/DataGenerator.php |   0
 .../Setup/Model/DateTime/DateTimeProvider.php |   0
 .../Setup/Model/DateTime/TimeZoneProvider.php |   0
 .../Model/DefaultDescriptionGenerator.php     |   0
 .../Setup/Model/DependencyReadinessCheck.php  |   0
 .../Description/DescriptionGenerator.php      |   0
 .../DescriptionParagraphGenerator.php         |   0
 .../DescriptionSentenceGenerator.php          |   0
 .../Model/Description/Mixin/BoldMixin.php     |   0
 .../Model/Description/Mixin/BrakeMixin.php    |   0
 .../Mixin/DescriptionMixinInterface.php       |   0
 .../Model/Description/Mixin/HeaderMixin.php   |   0
 .../Mixin/Helper/RandomWordSelector.php       |   0
 .../Description/Mixin/Helper/WordWrapper.php  |   0
 .../Model/Description/Mixin/ItalicMixin.php   |   0
 .../Model/Description/Mixin/MixinFactory.php  |   0
 .../Description/Mixin/ParagraphMixin.php      |   0
 .../Model/Description/Mixin/SpanMixin.php     |   0
 .../Setup/Model/Description/MixinManager.php  |   0
 .../Model/DescriptionGeneratorInterface.php   |   0
 setup/src/Magento/Setup/Model/Dictionary.php  |   0
 .../Model/FixtureGenerator/AutoIncrement.php  |   0
 .../BundleProductGenerator.php                |   0
 .../BundleProductTemplateGenerator.php        |   0
 .../ConfigurableProductGenerator.php          |   0
 .../ConfigurableProductTemplateGenerator.php  |   0
 .../FixtureGenerator/CustomerGenerator.php    |   0
 .../CustomerTemplateGenerator.php             |   0
 .../FixtureGenerator/EntityGenerator.php      |   0
 .../FixtureGenerator/ProductGenerator.php     |   0
 .../ProductTemplateGeneratorFactory.php       |   0
 .../SimpleProductTemplateGenerator.php        |   0
 .../Model/FixtureGenerator/SqlCollector.php   |   0
 .../TemplateEntityGeneratorInterface.php      |   0
 setup/src/Magento/Setup/Model/Generator.php   |   0
 .../Magento/Setup/Model/Grid/Extension.php    |   0
 setup/src/Magento/Setup/Model/Grid/Module.php |   0
 .../Magento/Setup/Model/Grid/TypeMapper.php   |   0
 setup/src/Magento/Setup/Model/Installer.php   |   0
 .../Setup/Model/Installer/Progress.php        |   0
 .../Setup/Model/Installer/ProgressFactory.php |   0
 .../Magento/Setup/Model/InstallerFactory.php  |   0
 setup/src/Magento/Setup/Model/License.php     |   0
 .../src/Magento/Setup/Model/ModuleContext.php |   0
 .../Setup/Model/ModuleRegistryUninstaller.php |   0
 .../src/Magento/Setup/Model/ModuleStatus.php  |   0
 .../Setup/Model/ModuleStatusFactory.php       |   0
 .../Magento/Setup/Model/ModuleUninstaller.php |   0
 setup/src/Magento/Setup/Model/Navigation.php  |   0
 .../Setup/Model/ObjectManagerProvider.php     |   0
 .../src/Magento/Setup/Model/PackagesAuth.php  |   0
 .../src/Magento/Setup/Model/PackagesData.php  |   0
 .../Magento/Setup/Model/PayloadValidator.php  |   0
 .../Magento/Setup/Model/PhpInformation.php    |   0
 .../Magento/Setup/Model/PhpReadinessCheck.php |   0
 .../Setup/Model/RequestDataConverter.php      |   0
 .../Model/SearchTermDescriptionGenerator.php  |   0
 .../SearchTermDescriptionGeneratorFactory.php |   0
 .../Magento/Setup/Model/SearchTermManager.php |   0
 .../Model/StoreConfigurationDataMapper.php    |   0
 .../Model/ThemeDependencyCheckerFactory.php   |   0
 .../Setup/Model/UninstallCollector.php        |   0
 .../Setup/Model/UninstallDependencyCheck.php  |   0
 setup/src/Magento/Setup/Model/Updater.php     |   0
 .../Setup/Model/UpdaterTaskCreator.php        |   0
 setup/src/Magento/Setup/Model/WebLogger.php   |   0
 setup/src/Magento/Setup/Module.php            |   0
 .../Setup/Module/ConnectionFactory.php        |   0
 setup/src/Magento/Setup/Module/DataSetup.php  |   0
 .../Magento/Setup/Module/DataSetupFactory.php |   0
 .../Setup/Module/Dependency/Circular.php      |   0
 .../Setup/Module/Dependency/Parser/Code.php   |   0
 .../Dependency/Parser/Composer/Json.php       |   0
 .../Module/Dependency/Parser/Config/Xml.php   |   0
 .../Module/Dependency/ParserInterface.php     |   0
 .../Report/Builder/AbstractBuilder.php        |   0
 .../Dependency/Report/BuilderInterface.php    |   0
 .../Dependency/Report/Circular/Builder.php    |   0
 .../Dependency/Report/Circular/Data/Chain.php |   0
 .../Report/Circular/Data/Config.php           |   0
 .../Report/Circular/Data/Module.php           |   0
 .../Dependency/Report/Circular/Writer.php     |   0
 .../Report/Data/Config/AbstractConfig.php     |   0
 .../Report/Data/ConfigInterface.php           |   0
 .../Dependency/Report/Dependency/Builder.php  |   0
 .../Report/Dependency/Data/Config.php         |   0
 .../Report/Dependency/Data/Dependency.php     |   0
 .../Report/Dependency/Data/Module.php         |   0
 .../Dependency/Report/Dependency/Writer.php   |   0
 .../Dependency/Report/Framework/Builder.php   |   0
 .../Report/Framework/Data/Config.php          |   0
 .../Report/Framework/Data/Dependency.php      |   0
 .../Report/Framework/Data/Module.php          |   0
 .../Dependency/Report/Framework/Writer.php    |   0
 .../Report/Writer/Csv/AbstractWriter.php      |   0
 .../Dependency/Report/WriterInterface.php     |   0
 .../Module/Dependency/ServiceLocator.php      |   0
 .../Setup/Module/Di/App/Task/Manager.php      |   0
 .../Operation/ApplicationCodeGenerator.php    |   0
 .../Module/Di/App/Task/Operation/Area.php     |   0
 .../Di/App/Task/Operation/Interception.php    |   0
 .../App/Task/Operation/InterceptionCache.php  |   0
 .../Di/App/Task/Operation/ProxyGenerator.php  |   0
 .../Task/Operation/RepositoryGenerator.php    |   0
 .../ServiceDataAttributesGenerator.php        |   0
 .../Module/Di/App/Task/OperationException.php |   0
 .../Module/Di/App/Task/OperationFactory.php   |   0
 .../Module/Di/App/Task/OperationInterface.php |   0
 .../Setup/Module/Di/Code/Generator.php        |   0
 .../InterceptionConfigurationBuilder.php      |   0
 .../Module/Di/Code/Generator/Interceptor.php  |   0
 .../Module/Di/Code/Generator/PluginList.php   |   0
 .../Setup/Module/Di/Code/GeneratorFactory.php |   0
 .../Di/Code/Reader/ClassReaderDecorator.php   |   0
 .../Module/Di/Code/Reader/ClassesScanner.php  |   0
 .../Code/Reader/ClassesScannerInterface.php   |   0
 .../Module/Di/Code/Reader/Decorator/Area.php  |   0
 .../Di/Code/Reader/Decorator/Directory.php    |   0
 .../Code/Reader/Decorator/Interceptions.php   |   0
 .../Di/Code/Reader/FileClassScanner.php       |   0
 .../Module/Di/Code/Reader/FileScanner.php     |   0
 .../Di/Code/Reader/InvalidFileException.php   |   0
 .../Setup/Module/Di/Code/Reader/Type.php      |   0
 .../Module/Di/Code/Scanner/ArrayScanner.php   |   0
 .../Di/Code/Scanner/CompositeScanner.php      |   0
 .../Di/Code/Scanner/ConfigurationScanner.php  |   0
 .../Di/Code/Scanner/DirectoryScanner.php      |   0
 .../Scanner/InheritanceInterceptorScanner.php |   0
 .../Scanner/InterceptedInstancesScanner.php   |   0
 .../Module/Di/Code/Scanner/PhpScanner.php     |   0
 .../Module/Di/Code/Scanner/PluginScanner.php  |   0
 .../Di/Code/Scanner/RepositoryScanner.php     |   0
 .../Di/Code/Scanner/ScannerInterface.php      |   0
 .../Scanner/ServiceDataAttributesScanner.php  |   0
 .../Di/Code/Scanner/XmlInterceptorScanner.php |   0
 .../Module/Di/Code/Scanner/XmlScanner.php     |   0
 .../Module/Di/Compiler/ArgumentsResolver.php  |   0
 .../Di/Compiler/ArgumentsResolverFactory.php  |   0
 .../Config/Chain/ArgumentsSerialization.php   |   0
 .../Compiler/Config/Chain/BackslashTrim.php   |   0
 .../Config/Chain/InterceptorSubstitution.php  |   0
 .../Config/Chain/PreferencesResolving.php     |   0
 .../Di/Compiler/Config/ModificationChain.php  |   0
 .../Compiler/Config/ModificationInterface.php |   0
 .../Module/Di/Compiler/Config/Reader.php      |   0
 .../Di/Compiler/Config/Writer/Filesystem.php  |   0
 .../Di/Compiler/Config/WriterInterface.php    |   0
 .../Di/Compiler/ConstructorArgument.php       |   0
 .../Setup/Module/Di/Compiler/Log/Log.php      |   0
 .../Module/Di/Compiler/Log/Writer/Console.php |   0
 .../Setup/Module/Di/Definition/Collection.php |   0
 .../src/Magento/Setup/Module/I18n/Context.php |   0
 .../Magento/Setup/Module/I18n/Dictionary.php  |   0
 .../Module/I18n/Dictionary/Generator.php      |   0
 .../Dictionary/Loader/File/AbstractFile.php   |   0
 .../I18n/Dictionary/Loader/File/Csv.php       |   0
 .../I18n/Dictionary/Loader/FileInterface.php  |   0
 .../I18n/Dictionary/Options/Resolver.php      |   0
 .../Dictionary/Options/ResolverFactory.php    |   0
 .../Dictionary/Options/ResolverInterface.php  |   0
 .../Setup/Module/I18n/Dictionary/Phrase.php   |   0
 .../Module/I18n/Dictionary/Writer/Csv.php     |   0
 .../I18n/Dictionary/Writer/Csv/Stdo.php       |   0
 .../I18n/Dictionary/WriterInterface.php       |   0
 .../src/Magento/Setup/Module/I18n/Factory.php |   0
 .../Setup/Module/I18n/FilesCollector.php      |   0
 .../src/Magento/Setup/Module/I18n/Locale.php  |   0
 .../Setup/Module/I18n/Pack/Generator.php      |   0
 .../I18n/Pack/Writer/File/AbstractFile.php    |   0
 .../Module/I18n/Pack/Writer/File/Csv.php      |   0
 .../Module/I18n/Pack/WriterInterface.php      |   0
 .../Module/I18n/Parser/AbstractParser.php     |   0
 .../I18n/Parser/Adapter/AbstractAdapter.php   |   0
 .../Setup/Module/I18n/Parser/Adapter/Html.php |   0
 .../Setup/Module/I18n/Parser/Adapter/Js.php   |   0
 .../Setup/Module/I18n/Parser/Adapter/Php.php  |   0
 .../I18n/Parser/Adapter/Php/Tokenizer.php     |   0
 .../Adapter/Php/Tokenizer/PhraseCollector.php |   0
 .../Parser/Adapter/Php/Tokenizer/Token.php    |   0
 .../Tokenizer/Translate/MethodCollector.php   |   0
 .../Setup/Module/I18n/Parser/Adapter/Xml.php  |   0
 .../Module/I18n/Parser/AdapterInterface.php   |   0
 .../Setup/Module/I18n/Parser/Contextual.php   |   0
 .../Setup/Module/I18n/Parser/Parser.php       |   0
 .../Setup/Module/I18n/ParserInterface.php     |   0
 .../Setup/Module/I18n/ServiceLocator.php      |   0
 .../Magento/Setup/Module/ResourceFactory.php  |   0
 setup/src/Magento/Setup/Module/Setup.php      |   0
 .../Setup/Module/Setup/ResourceConfig.php     |   0
 .../Magento/Setup/Module/Setup/SetupCache.php |   0
 .../src/Magento/Setup/Module/SetupFactory.php |   0
 .../Setup/Mvc/Bootstrap/InitParamListener.php |   0
 .../Mvc/View/Http/InjectTemplateListener.php  |   0
 .../Command/AdminUserCreateCommandTest.php    |   0
 .../Console/Command/BackupCommandTest.php     |   0
 .../Console/Command/ConfigSetCommandTest.php  |   0
 .../Console/Command/CronRunCommandTest.php    |   0
 .../Command/DbDataUpgradeCommandTest.php      |   0
 .../Command/DbSchemaUpgradeCommandTest.php    |   0
 .../Console/Command/DbStatusCommandTest.php   |   0
 .../DeployStaticContentCommandTest.php        |   0
 .../Console/Command/DiCompileCommandTest.php  |   0
 .../Console/Command/FunctionExistMock.php     |   0
 .../Command/GenerateFixturesCommandTest.php   |   0
 .../Command/InfoAdminUriCommandTest.php       |   0
 .../Command/InfoBackupsListCommandTest.php    |   0
 .../Command/InfoCurrencyListCommandTest.php   |   0
 .../Command/InfoLanguageListCommandTest.php   |   0
 .../Command/InfoTimezoneListCommandTest.php   |   0
 .../Console/Command/InstallCommandTest.php    |   0
 .../InstallStoreConfigurationCommandTest.php  |   0
 .../MaintenanceAllowIpsCommandTest.php        |   0
 .../Command/MaintenanceDisableCommandTest.php |   0
 .../Command/MaintenanceEnableCommandTest.php  |   0
 .../Command/MaintenanceStatusCommandTest.php  |   0
 .../ModuleEnableDisableCommandTest.php        |   0
 .../Command/ModuleStatusCommandTest.php       |   0
 .../Command/ModuleUninstallCommandTest.php    |   0
 .../Console/Command/RollbackCommandTest.php   |   0
 .../Console/Command/UninstallCommandTest.php  |   0
 .../Console/Command/UpgradeCommandTest.php    |   0
 .../Test/Unit/Console/CommandListTest.php     |   0
 .../Unit/Console/CompilerPreparationTest.php  |   0
 .../Test/Unit/Controller/AddDatabaseTest.php  |   0
 .../Unit/Controller/BackupActionItemsTest.php |   0
 .../Unit/Controller/CompleteBackupTest.php    |   0
 .../Controller/CreateAdminAccountTest.php     |   0
 .../Test/Unit/Controller/CreateBackupTest.php |   0
 .../Controller/CustomizeYourStoreTest.php     |   0
 .../Test/Unit/Controller/DataOptionTest.php   |   0
 .../Test/Unit/Controller/EnvironmentTest.php  |   0
 .../Unit/Controller/ExtensionGridTest.php     |   0
 .../Setup/Test/Unit/Controller/IndexTest.php  |   0
 .../Controller/InstallExtensionGridTest.php   |   0
 .../Test/Unit/Controller/InstallTest.php      |   0
 .../Unit/Controller/LandingInstallerTest.php  |   0
 .../Unit/Controller/LandingUpdaterTest.php    |   0
 .../Test/Unit/Controller/LicenseTest.php      |   0
 .../Test/Unit/Controller/MaintenanceTest.php  |   0
 .../Test/Unit/Controller/MarketplaceTest.php  |   0
 .../Test/Unit/Controller/ModuleGridTest.php   |   0
 .../Test/Unit/Controller/ModulesTest.php      |   0
 .../Test/Unit/Controller/NavigationTest.php   |   0
 .../Controller/OtherComponentsGridTest.php    |   0
 .../ReadinessCheckInstallerTest.php           |   0
 .../Controller/ReadinessCheckUpdaterTest.php  |   0
 .../Unit/Controller/SelectVersionTest.php     |   0
 .../Test/Unit/Controller/SessionTest.php      |   0
 .../Test/Unit/Controller/StartUpdaterTest.php |   0
 .../Test/Unit/Controller/SuccessTest.php      |   0
 .../Test/Unit/Controller/SystemConfigTest.php |   0
 .../Controller/UpdateExtensionGridTest.php    |   0
 .../Unit/Controller/UpdaterSuccessTest.php    |   0
 .../Test/Unit/Controller/UrlCheckTest.php     |   0
 .../Unit/Controller/WebConfigurationTest.php  |   0
 .../AttributeSet/AttributeSetFixtureTest.php  |   0
 .../Fixtures/AttributeSet/PatternTest.php     |   0
 .../AttributeSet/SwatchesGeneratorTest.php    |   0
 .../Fixtures/AttributeSetsFixtureTest.php     |   0
 .../Fixtures/CatalogPriceRulesFixtureTest.php |   0
 .../Unit/Fixtures/CategoriesFixtureTest.php   |   0
 .../Unit/Fixtures/ConfigsApplyFixtureTest.php |   0
 .../ConfigurableProductsFixtureTest.php       |   0
 .../Fixtures/CustomerGroupsFixtureTest.php    |   0
 .../Unit/Fixtures/CustomersFixtureTest.php    |   0
 .../Fixtures/EavVariationsFixtureTest.php     |   0
 .../Test/Unit/Fixtures/FixtureConfigTest.php  |   0
 .../Test/Unit/Fixtures/FixtureModelTest.php   |   0
 .../IndexersStatesApplyFixtureTest.php        |   0
 .../Test/Unit/Fixtures/OrdersFixtureTest.php  |   0
 .../Fixtures/Quote/QuoteConfigurationTest.php |   0
 .../Quote/QuoteGeneratorFactoryTest.php       |   0
 .../Fixtures/Quote/QuoteGeneratorTest.php     |   0
 .../Test/Unit/Fixtures/StoresFixtureTest.php  |   0
 .../Unit/Fixtures/TaxRatesFixtureTest.php     |   0
 .../Unit/Fixtures/TaxRulesFixtureTest.php     |   0
 .../Address/AddressDataGeneratorTest.php      |   0
 .../Unit/Model/AdminAccountFactoryTest.php    |   0
 .../Test/Unit/Model/AdminAccountTest.php      |   0
 .../Test/Unit/Model/BasePackageInfoTest.php   |   0
 .../Model/Complex/ComplexGeneratorTest.php    |   0
 .../Test/Unit/Model/Complex/PatternTest.php   |   0
 .../Test/Unit/Model/ConfigGeneratorTest.php   |   0
 .../Setup/Test/Unit/Model/ConfigModelTest.php |   0
 .../Model/ConfigOptionsList/CacheTest.php     |   0
 .../Model/ConfigOptionsList/PageCacheTest.php |   0
 .../Model/ConfigOptionsList/SessionTest.php   |   0
 .../Test/Unit/Model/ConfigOptionsListTest.php |   0
 .../Model/Cron/Helper/ModuleUninstallTest.php |   0
 .../Model/Cron/Helper/ThemeUninstallTest.php  |   0
 .../Model/Cron/JobComponentUninstallTest.php  |   0
 .../Unit/Model/Cron/JobDbRollbackTest.php     |   0
 .../Test/Unit/Model/Cron/JobFactoryTest.php   |   0
 .../Test/Unit/Model/Cron/JobModuleTest.php    |   0
 .../Test/Unit/Model/Cron/JobSetCacheTest.php  |   0
 .../Model/Cron/JobSetMaintenanceModeTest.php  |   0
 .../Model/Cron/JobStaticRegenerateTest.php    |   0
 .../Test/Unit/Model/Cron/JobUpgradeTest.php   |   0
 .../Test/Unit/Model/Cron/Queue/ReaderTest.php |   0
 .../Test/Unit/Model/Cron/Queue/WriterTest.php |   0
 .../Setup/Test/Unit/Model/Cron/QueueTest.php  |   0
 .../Unit/Model/Cron/ReadinessCheckTest.php    |   0
 .../Setup/Test/Unit/Model/Cron/StatusTest.php |   0
 .../Model/CronScriptReadinessCheckTest.php    |   0
 .../Test/Unit/Model/CryptKeyGeneratorTest.php |   0
 .../Customer/CustomerDataGeneratorTest.php    |   0
 .../Test/Unit/Model/DataGeneratorTest.php     |   0
 .../Model/DateTime/DateTimeProviderTest.php   |   0
 .../Model/DateTime/TimeZoneProviderTest.php   |   0
 .../Model/DependencyReadinessCheckTest.php    |   0
 .../Description/DescriptionGeneratorTest.php  |   0
 .../DescriptionParagraphGeneratorTest.php     |   0
 .../DescriptionSentenceGeneratorTest.php      |   0
 .../Model/Description/Mixin/BoldMixinTest.php |   0
 .../Description/Mixin/BrakeMixinTest.php      |   0
 .../Description/Mixin/HeaderMixinTest.php     |   0
 .../Mixin/Helper/RandomWordSelectorTest.php   |   0
 .../Mixin/Helper/WordWrapperTest.php          |   0
 .../Description/Mixin/ItalicMixinTest.php     |   0
 .../Description/Mixin/ParagraphMixinTest.php  |   0
 .../Model/Description/Mixin/SpanMixinTest.php |   0
 .../Model/Description/MixinManagerTest.php    |   0
 .../Setup/Test/Unit/Model/DictionaryTest.php  |   0
 .../FixtureGenerator/SqlCollectorTest.php     |   0
 .../Setup/Test/Unit/Model/GeneratorTest.php   |   0
 .../Test/Unit/Model/Grid/ExtensionTest.php    |   0
 .../Setup/Test/Unit/Model/Grid/ModuleTest.php |   0
 .../Test/Unit/Model/Grid/TypeMapperTest.php   |   0
 .../Model/Installer/ProgressFactoryTest.php   |   0
 .../Unit/Model/Installer/ProgressTest.php     |   0
 .../Test/Unit/Model/InstallerFactoryTest.php  |   0
 .../Setup/Test/Unit/Model/InstallerTest.php   |   0
 .../Setup/Test/Unit/Model/LicenseTest.php     |   0
 .../Test/Unit/Model/ModuleContextTest.php     |   0
 .../Model/ModuleRegistryUninstallerTest.php   |   0
 .../Unit/Model/ModuleStatusFactoryTest.php    |   0
 .../Test/Unit/Model/ModuleStatusTest.php      |   0
 .../Test/Unit/Model/ModuleUninstallerTest.php |   0
 .../Setup/Test/Unit/Model/NavigationTest.php  |   0
 .../Unit/Model/ObjectManagerProviderTest.php  |   0
 .../Test/Unit/Model/PackagesAuthTest.php      |   0
 .../Test/Unit/Model/PackagesDataTest.php      |   0
 .../Test/Unit/Model/PayloadValidatorTest.php  |   0
 .../Test/Unit/Model/PhpInformationTest.php    |   0
 .../Test/Unit/Model/PhpReadinessCheckTest.php |   0
 .../SearchTermDescriptionGeneratorTest.php    |   0
 .../Test/Unit/Model/SearchTermManagerTest.php |   0
 .../StoreConfigurationDataMapperTest.php      |   0
 .../Test/Unit/Model/SystemPackageTest.php     |   0
 .../ThemeDependencyCheckerFactoryTest.php     |   0
 .../Unit/Model/UninstallCollectorTest.php     |   0
 .../Model/UninstallDependencyCheckTest.php    |   0
 .../Unit/Model/UpdaterTaskCreatorTest.php     |   0
 .../Setup/Test/Unit/Model/UpdaterTest.php     |   0
 .../Setup/Test/Unit/Model/WebLoggerTest.php   |   0
 .../Test/Unit/Model/_files/dictionary.csv     |   0
 .../Test/Unit/Module/ConfigGeneratorTest.php  |   0
 .../Unit/Module/ConnectionFactoryTest.php     |   0
 .../Test/Unit/Module/DataSetupFactoryTest.php |   0
 .../Module/Dependency/Parser/CodeTest.php     |   0
 .../Dependency/Parser/Composer/JsonTest.php   |   0
 .../Dependency/Parser/Config/XmlTest.php      |   0
 .../Report/Builder/AbstractBuilderTest.php    |   0
 .../Report/Circular/Data/ChainTest.php        |   0
 .../Report/Circular/Data/ConfigTest.php       |   0
 .../Report/Circular/Data/ModuleTest.php       |   0
 .../Report/Data/Config/AbstractConfigTest.php |   0
 .../Report/Dependency/Data/ConfigTest.php     |   0
 .../Report/Dependency/Data/DependencyTest.php |   0
 .../Report/Dependency/Data/ModuleTest.php     |   0
 .../Report/Framework/BuilderTest.php          |   0
 .../Report/Framework/Data/ConfigTest.php      |   0
 .../Report/Framework/Data/DependencyTest.php  |   0
 .../Report/Framework/Data/ModuleTest.php      |   0
 .../Report/Writer/Csv/AbstractWriterTest.php  |   0
 .../App/Task/ApplicationCodeGeneratorTest.php |   0
 .../Test/Unit/Module/Di/App/Task/AreaTest.php |   0
 .../Di/App/Task/InterceptionCacheTest.php     |   0
 .../Di/App/Task/OperationFactoryTest.php      |   0
 .../Module/Di/App/Task/ProxyGeneratorTest.php |   0
 .../Di/App/Task/RepositoryGeneratorTest.php   |   0
 .../ServiceDataAttributesGeneratorTest.php    |   0
 .../InterceptionConfigurationBuilderTest.php  |   0
 .../Code/Reader/ClassReaderDecoratorTest.php  |   0
 .../Di/Code/Reader/ClassesScannerTest.php     |   0
 .../Di/Code/Reader/FileClassScannerTest.php   |   0
 .../Module/Di/Code/Reader/FileScannerTest.php |   0
 .../Reader/InstancesNamesList/AreaTest.php    |   0
 .../InstancesNamesList/DirectoryTest.php      |   0
 .../InstancesNamesList/InterceptionsTest.php  |   0
 .../Module/Di/Code/Reader/_files/classes.php  |   0
 .../Di/Code/Scanner/ArrayScannerTest.php      |   0
 .../Di/Code/Scanner/CompositeScannerTest.php  |   0
 .../Code/Scanner/ConfigurationScannerTest.php |   0
 .../Di/Code/Scanner/DirectoryScannerTest.php  |   0
 .../Module/Di/Code/Scanner/PhpScannerTest.php |   0
 .../Di/Code/Scanner/PluginScannerTest.php     |   0
 .../ServiceDataAttributesScannerTest.php      |   0
 .../Scanner/XmlInterceptorScannerTest.php     |   0
 .../Module/Di/Code/Scanner/XmlScannerTest.php |   0
 .../Di/Compiler/ArgumentsResolverTest.php     |   0
 .../Chain/ArgumentsSerializationTest.php      |   0
 .../Config/Chain/BackslashTrimTest.php        |   0
 .../Chain/InterceptorSubstitutionTest.php     |   0
 .../Config/Chain/PreferencesResolvingTest.php |   0
 .../Compiler/Config/ModificationChainTest.php |   0
 .../Module/Di/Compiler/Config/ReaderTest.php  |   0
 .../Di/Compiler/ConstructorArgumentTest.php   |   0
 .../Module/Di/Definition/CollectionTest.php   |   0
 .../Test/Unit/Module/Di/_files/additional.php |   0
 .../Unit/Module/Di/_files/app/bootstrap.php   |   0
 .../SomeModule/Api/Data/SomeInterface.php     |   0
 .../app/code/Magento/SomeModule/Element.php   |   0
 .../Magento/SomeModule/ElementFactory.php     |   0
 .../code/Magento/SomeModule/Helper/Test.php   |   0
 .../Magento/SomeModule/Model/DoubleColon.php  |   0
 .../code/Magento/SomeModule/Model/Test.php    |   0
 .../SomeModule/etc/adminhtml/system.xml       |   0
 .../app/code/Magento/SomeModule/etc/di.xml    |   0
 .../SomeModule/etc/source/PhpExt.php/content  |   0
 .../SomeModule/view/frontend/default.xml      |   0
 .../adminhtml/default/backend/layout.xml      |   0
 .../Module/Di/_files/app/etc/additional.xml   |   0
 .../Unit/Module/Di/_files/app/etc/config.xml  |   0
 .../Module/Di/_files/app/etc/di/config.xml    |   0
 .../Module/Di/_files/extension_attributes.xml |   0
 .../Module/Di/_files/var/generation/.keep     |   0
 .../Test/Unit/Module/I18n/ContextTest.php     |   0
 .../Module/I18n/Dictionary/GeneratorTest.php  |   0
 .../Loader/File/AbstractFileTest.php          |   0
 .../Options/ResolverFactoryTest.php           |   0
 .../I18n/Dictionary/Options/ResolverTest.php  |   0
 .../_files/source/app/code/module1/.gitignore |   0
 .../_files/source/app/code/module2/.gitignore |   0
 .../_files/source/app/design/.gitignore       |   0
 .../_files/source/lib/web/mage/.gitignore     |   0
 .../_files/source/lib/web/varien/.gitignore   |   0
 .../Module/I18n/Dictionary/PhraseTest.php     |   0
 .../I18n/Dictionary/Writer/Csv/StdoTest.php   |   0
 .../Module/I18n/Dictionary/Writer/CsvTest.php |   0
 .../I18n/Dictionary/Writer/_files/.gitignore  |   0
 .../Test/Unit/Module/I18n/DictionaryTest.php  |   0
 .../Test/Unit/Module/I18n/FactoryTest.php     |   0
 .../Unit/Module/I18n/FilesCollectorTest.php   |   0
 .../Test/Unit/Module/I18n/LocaleTest.php      |   0
 .../Unit/Module/I18n/Pack/GeneratorTest.php   |   0
 .../Module/I18n/Pack/Writer/File/CsvTest.php  |   0
 .../I18n/Pack/Writer/File/_files/ioMock.php   |   0
 .../Module/I18n/Parser/AbstractParserTest.php |   0
 .../Parser/Adapter/AbstractAdapterTest.php    |   0
 .../Module/I18n/Parser/Adapter/HtmlTest.php   |   0
 .../Module/I18n/Parser/Adapter/JsTest.php     |   0
 .../Php/Tokenizer/PhraseCollectorTest.php     |   0
 .../Adapter/Php/Tokenizer/TokenTest.php       |   0
 .../I18n/Parser/Adapter/Php/TokenizerTest.php |   0
 .../Adapter/Php/_files/objectsCode.php.txt    |   0
 .../Module/I18n/Parser/Adapter/PhpTest.php    |   0
 .../Module/I18n/Parser/Adapter/XmlTest.php    |   0
 .../I18n/Parser/Adapter/_files/default.xml    |   0
 .../I18n/Parser/Adapter/_files/default_di.xml |   0
 .../I18n/Parser/Adapter/_files/email.html     |   0
 .../Module/I18n/Parser/Adapter/_files/file.js |   0
 .../Unit/Module/I18n/Parser/ParserTest.php    |   0
 .../I18n/_files/files_collector/default.xml   |   0
 .../I18n/_files/files_collector/file.js       |   0
 .../Test/Unit/Module/ResourceFactoryTest.php  |   0
 .../Unit/Module/Setup/ResourceConfigTest.php  |   0
 .../Test/Unit/Module/Setup/SetupCacheTest.php |   0
 .../Test/Unit/Module/SetupFactoryTest.php     |   0
 .../Setup/Test/Unit/Module/SetupTest.php      |   0
 .../Mvc/Bootstrap/InitParamListenerTest.php   |   0
 .../Test/Unit/Validator/DbValidatorTest.php   |   0
 .../Test/Unit/Validator/IpValidatorTest.php   |   0
 .../Validator/AdminCredentialsValidator.php   |   0
 .../Magento/Setup/Validator/DbValidator.php   |   0
 .../Magento/Setup/Validator/IpValidator.php   |   0
 .../Validator/RedisConnectionValidator.php    |   0
 setup/view/.htaccess                          |   0
 setup/view/error/401.phtml                    |   0
 setup/view/error/404.phtml                    |   0
 setup/view/error/index.phtml                  |   0
 setup/view/layout/layout.phtml                |   0
 setup/view/magento/setup/add-database.phtml   |   0
 .../setup/complete-backup/progress.phtml      |   0
 .../magento/setup/create-admin-account.phtml  |   0
 setup/view/magento/setup/create-backup.phtml  |   0
 .../magento/setup/customize-your-store.phtml  |   0
 setup/view/magento/setup/data-option.phtml    |   0
 setup/view/magento/setup/extension-grid.phtml |   0
 setup/view/magento/setup/home.phtml           |   0
 setup/view/magento/setup/index.phtml          |   0
 .../setup/install-extension-grid.phtml        |   0
 setup/view/magento/setup/install.phtml        |   0
 setup/view/magento/setup/landing.phtml        |   0
 setup/view/magento/setup/license.phtml        |   0
 .../setup/marketplace-credentials.phtml       |   0
 setup/view/magento/setup/module-grid.phtml    |   0
 .../magento/setup/navigation/header-bar.phtml |   0
 .../view/magento/setup/navigation/menu.phtml  |   0
 .../magento/setup/navigation/side-menu.phtml  |   0
 setup/view/magento/setup/popupauth.phtml      |   0
 .../view/magento/setup/readiness-check.phtml  |   0
 setup/view/magento/setup/select-version.phtml |   0
 setup/view/magento/setup/start-updater.phtml  |   0
 setup/view/magento/setup/success.phtml        |   0
 setup/view/magento/setup/system-config.phtml  |   0
 .../magento/setup/update-extension-grid.phtml |   0
 .../view/magento/setup/updater-success.phtml  |   0
 .../magento/setup/web-configuration.phtml     |   0
 setup/view/styles/lib/variables/_buttons.less |   0
 setup/view/styles/lib/variables/_colors.less  |   0
 .../styles/lib/variables/_typography.less     |   0
 vendor/.htaccess                              |   0
 29483 files changed, 70 insertions(+), 71 deletions(-)
 mode change 100644 => 100755 .github/.htaccess
 mode change 100644 => 100755 .github/CODE_OF_CONDUCT.md
 mode change 100644 => 100755 .github/CONTRIBUTING.md
 mode change 100644 => 100755 .github/ISSUE_TEMPLATE.md
 mode change 100644 => 100755 .github/PULL_REQUEST_TEMPLATE.md
 mode change 100644 => 100755 .gitignore
 mode change 100644 => 100755 .htaccess
 mode change 100644 => 100755 .htaccess.sample
 mode change 100644 => 100755 .php_cs.dist
 mode change 100644 => 100755 .travis.yml
 mode change 100644 => 100755 .user.ini
 mode change 100644 => 100755 CHANGELOG.md
 mode change 100644 => 100755 COPYING.txt
 mode change 100644 => 100755 Gruntfile.js.sample
 mode change 100644 => 100755 LICENSE.txt
 mode change 100644 => 100755 LICENSE_AFL.txt
 mode change 100644 => 100755 MessageSystem/chatlist.php
 create mode 100755 MessageSystem/firebase-conf.js
 mode change 100644 => 100755 README.md
 mode change 100644 => 100755 app/.htaccess
 mode change 100644 => 100755 app/autoload.php
 mode change 100644 => 100755 app/bootstrap.php
 mode change 100644 => 100755 app/code/Magento/AdminNotification/Block/Grid/Renderer/Actions.php
 mode change 100644 => 100755 app/code/Magento/AdminNotification/Block/Grid/Renderer/Notice.php
 mode change 100644 => 100755 app/code/Magento/AdminNotification/Block/Grid/Renderer/Severity.php
 mode change 100644 => 100755 app/code/Magento/AdminNotification/Block/Inbox.php
 mode change 100644 => 100755 app/code/Magento/AdminNotification/Block/System/Messages.php
 mode change 100644 => 100755 app/code/Magento/AdminNotification/Block/System/Messages/UnreadMessagePopup.php
 mode change 100644 => 100755 app/code/Magento/AdminNotification/Block/ToolbarEntry.php
 mode change 100644 => 100755 app/code/Magento/AdminNotification/Block/Window.php
 mode change 100644 => 100755 app/code/Magento/AdminNotification/Controller/Adminhtml/Notification.php
 mode change 100644 => 100755 app/code/Magento/AdminNotification/Controller/Adminhtml/Notification/AjaxMarkAsRead.php
 mode change 100644 => 100755 app/code/Magento/AdminNotification/Controller/Adminhtml/Notification/Index.php
 mode change 100644 => 100755 app/code/Magento/AdminNotification/Controller/Adminhtml/Notification/MarkAsRead.php
 mode change 100644 => 100755 app/code/Magento/AdminNotification/Controller/Adminhtml/Notification/MassMarkAsRead.php
 mode change 100644 => 100755 app/code/Magento/AdminNotification/Controller/Adminhtml/Notification/MassRemove.php
 mode change 100644 => 100755 app/code/Magento/AdminNotification/Controller/Adminhtml/Notification/Remove.php
 mode change 100644 => 100755 app/code/Magento/AdminNotification/Controller/Adminhtml/System/Message/ListAction.php
 mode change 100644 => 100755 app/code/Magento/AdminNotification/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/AdminNotification/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/AdminNotification/Model/Config/Source/Frequency.php
 mode change 100644 => 100755 app/code/Magento/AdminNotification/Model/Feed.php
 mode change 100644 => 100755 app/code/Magento/AdminNotification/Model/Inbox.php
 mode change 100644 => 100755 app/code/Magento/AdminNotification/Model/InboxInterface.php
 mode change 100644 => 100755 app/code/Magento/AdminNotification/Model/NotificationService.php
 mode change 100644 => 100755 app/code/Magento/AdminNotification/Model/ResourceModel/Grid/Collection.php
 mode change 100644 => 100755 app/code/Magento/AdminNotification/Model/ResourceModel/Inbox.php
 mode change 100644 => 100755 app/code/Magento/AdminNotification/Model/ResourceModel/Inbox/Collection.php
 mode change 100644 => 100755 app/code/Magento/AdminNotification/Model/ResourceModel/Inbox/Collection/Critical.php
 mode change 100644 => 100755 app/code/Magento/AdminNotification/Model/ResourceModel/Inbox/Collection/Unread.php
 mode change 100644 => 100755 app/code/Magento/AdminNotification/Model/ResourceModel/System/Message.php
 mode change 100644 => 100755 app/code/Magento/AdminNotification/Model/ResourceModel/System/Message/Collection.php
 mode change 100644 => 100755 app/code/Magento/AdminNotification/Model/ResourceModel/System/Message/Collection/Synchronized.php
 mode change 100644 => 100755 app/code/Magento/AdminNotification/Model/System/Message.php
 mode change 100644 => 100755 app/code/Magento/AdminNotification/Model/System/Message/Baseurl.php
 mode change 100644 => 100755 app/code/Magento/AdminNotification/Model/System/Message/CacheOutdated.php
 mode change 100644 => 100755 app/code/Magento/AdminNotification/Model/System/Message/Media/AbstractSynchronization.php
 mode change 100644 => 100755 app/code/Magento/AdminNotification/Model/System/Message/Media/Synchronization/Error.php
 mode change 100644 => 100755 app/code/Magento/AdminNotification/Model/System/Message/Media/Synchronization/Success.php
 mode change 100644 => 100755 app/code/Magento/AdminNotification/Model/System/Message/Security.php
 mode change 100644 => 100755 app/code/Magento/AdminNotification/Observer/PredispatchAdminActionControllerObserver.php
 mode change 100644 => 100755 app/code/Magento/AdminNotification/README.md
 mode change 100644 => 100755 app/code/Magento/AdminNotification/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/AdminNotification/Test/Unit/Block/ToolbarEntryTest.php
 mode change 100644 => 100755 app/code/Magento/AdminNotification/Test/Unit/Model/FeedTest.php
 mode change 100644 => 100755 app/code/Magento/AdminNotification/Test/Unit/Model/NotificationServiceTest.php
 mode change 100644 => 100755 app/code/Magento/AdminNotification/Test/Unit/Model/System/Message/CacheOutdatedTest.php
 mode change 100644 => 100755 app/code/Magento/AdminNotification/Test/Unit/Model/System/Message/Media/Synchronization/ErrorTest.php
 mode change 100644 => 100755 app/code/Magento/AdminNotification/Test/Unit/Model/System/Message/SecurityTest.php
 mode change 100644 => 100755 app/code/Magento/AdminNotification/Ui/Component/DataProvider/DataProvider.php
 mode change 100644 => 100755 app/code/Magento/AdminNotification/composer.json
 mode change 100644 => 100755 app/code/Magento/AdminNotification/etc/acl.xml
 mode change 100644 => 100755 app/code/Magento/AdminNotification/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/AdminNotification/etc/adminhtml/events.xml
 mode change 100644 => 100755 app/code/Magento/AdminNotification/etc/adminhtml/menu.xml
 mode change 100644 => 100755 app/code/Magento/AdminNotification/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/AdminNotification/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/AdminNotification/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/AdminNotification/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/AdminNotification/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/AdminNotification/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/AdminNotification/registration.php
 mode change 100644 => 100755 app/code/Magento/AdminNotification/view/adminhtml/layout/adminhtml_notification_block.xml
 mode change 100644 => 100755 app/code/Magento/AdminNotification/view/adminhtml/layout/adminhtml_notification_index.xml
 mode change 100644 => 100755 app/code/Magento/AdminNotification/view/adminhtml/layout/default.xml
 mode change 100644 => 100755 app/code/Magento/AdminNotification/view/adminhtml/requirejs-config.js
 mode change 100644 => 100755 app/code/Magento/AdminNotification/view/adminhtml/templates/notification/window.phtml
 mode change 100644 => 100755 app/code/Magento/AdminNotification/view/adminhtml/templates/system/messages.phtml
 mode change 100644 => 100755 app/code/Magento/AdminNotification/view/adminhtml/templates/system/messages/popup.phtml
 mode change 100644 => 100755 app/code/Magento/AdminNotification/view/adminhtml/templates/toolbar_entry.phtml
 mode change 100644 => 100755 app/code/Magento/AdminNotification/view/adminhtml/ui_component/notification_area.xml
 mode change 100644 => 100755 app/code/Magento/AdminNotification/view/adminhtml/web/js/grid/columns/message.js
 mode change 100644 => 100755 app/code/Magento/AdminNotification/view/adminhtml/web/js/grid/listing.js
 mode change 100644 => 100755 app/code/Magento/AdminNotification/view/adminhtml/web/system/notification.js
 mode change 100644 => 100755 app/code/Magento/AdminNotification/view/adminhtml/web/template/grid/cells/message.html
 mode change 100644 => 100755 app/code/Magento/AdminNotification/view/adminhtml/web/template/grid/listing.html
 mode change 100644 => 100755 app/code/Magento/AdminNotification/view/adminhtml/web/toolbar_entry.js
 mode change 100644 => 100755 app/code/Magento/AdvancedPricingImportExport/Controller/Adminhtml/Export/GetFilter.php
 mode change 100644 => 100755 app/code/Magento/AdvancedPricingImportExport/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/AdvancedPricingImportExport/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/AdvancedPricingImportExport/Model/Export/AdvancedPricing.php
 mode change 100644 => 100755 app/code/Magento/AdvancedPricingImportExport/Model/Import/AdvancedPricing.php
 mode change 100644 => 100755 app/code/Magento/AdvancedPricingImportExport/Model/Import/AdvancedPricing/Validator.php
 mode change 100644 => 100755 app/code/Magento/AdvancedPricingImportExport/Model/Import/AdvancedPricing/Validator/TierPrice.php
 mode change 100644 => 100755 app/code/Magento/AdvancedPricingImportExport/Model/Import/AdvancedPricing/Validator/TierPriceType.php
 mode change 100644 => 100755 app/code/Magento/AdvancedPricingImportExport/Model/Import/AdvancedPricing/Validator/Website.php
 mode change 100644 => 100755 app/code/Magento/AdvancedPricingImportExport/Model/Indexer/Product/Price/Plugin/Import.php
 mode change 100644 => 100755 app/code/Magento/AdvancedPricingImportExport/README.md
 mode change 100644 => 100755 app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Export/AdvancedPricingTest.php
 mode change 100644 => 100755 app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Import/AdvancedPricing/Validator/TierPriceTest.php
 mode change 100644 => 100755 app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Import/AdvancedPricing/Validator/TierPriceTypeTest.php
 mode change 100644 => 100755 app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Import/AdvancedPricing/Validator/WebsiteTest.php
 mode change 100644 => 100755 app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Import/AdvancedPricing/ValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Import/AdvancedPricingTest.php
 mode change 100644 => 100755 app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Indexer/Product/Price/Plugin/ImportTest.php
 mode change 100644 => 100755 app/code/Magento/AdvancedPricingImportExport/composer.json
 mode change 100644 => 100755 app/code/Magento/AdvancedPricingImportExport/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/AdvancedPricingImportExport/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/AdvancedPricingImportExport/etc/export.xml
 mode change 100644 => 100755 app/code/Magento/AdvancedPricingImportExport/etc/import.xml
 mode change 100644 => 100755 app/code/Magento/AdvancedPricingImportExport/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/AdvancedPricingImportExport/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/AdvancedPricingImportExport/registration.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Api/Data/LinkInterface.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Api/LinkProviderInterface.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Block/Adminhtml/System/Config/AdditionalComment.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Block/Adminhtml/System/Config/CollectionTimeLabel.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Block/Adminhtml/System/Config/SubscriptionStatusLabel.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Block/Adminhtml/System/Config/Vertical.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Controller/Adminhtml/BIEssentials/SignUp.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Controller/Adminhtml/Reports/Show.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Controller/Adminhtml/Subscription/Retry.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Cron/CollectData.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Cron/SignUp.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Cron/Update.php
 mode change 100644 => 100755 app/code/Magento/Analytics/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Analytics/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Analytics/Model/AnalyticsToken.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Model/Config.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Model/Config/Backend/Baseurl/SubscriptionUpdateHandler.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Model/Config/Backend/CollectionTime.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Model/Config/Backend/Enabled.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Model/Config/Backend/Enabled/SubscriptionHandler.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Model/Config/Backend/Vertical.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Model/Config/Mapper.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Model/Config/Reader.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Model/Config/Source/Vertical.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Model/ConfigInterface.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Model/Connector.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Model/Connector/CommandInterface.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Model/Connector/Http/Client/Curl.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Model/Connector/Http/ClientInterface.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Model/Connector/Http/ConverterInterface.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Model/Connector/Http/JsonConverter.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Model/Connector/Http/ResponseFactory.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Model/Connector/Http/ResponseHandlerInterface.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Model/Connector/Http/ResponseResolver.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Model/Connector/NotifyDataChangedCommand.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Model/Connector/OTPRequest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Model/Connector/ResponseHandler/OTP.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Model/Connector/ResponseHandler/ReSignUp.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Model/Connector/ResponseHandler/SignUp.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Model/Connector/ResponseHandler/Update.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Model/Connector/SignUpCommand.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Model/Connector/UpdateCommand.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Model/Cryptographer.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Model/EncodedContext.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Model/Exception/State/SubscriptionUpdateException.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Model/ExportDataHandler.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Model/ExportDataHandlerInterface.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Model/ExportDataHandlerNotification.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Model/FileInfo.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Model/FileInfoManager.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Model/FileRecorder.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Model/IntegrationManager.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Model/Link.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Model/LinkProvider.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Model/Plugin/BaseUrlConfigPlugin.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Model/ProviderFactory.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Model/ReportUrlProvider.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Model/ReportWriter.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Model/ReportWriterInterface.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Model/ReportXml/ModuleIterator.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Model/StoreConfigurationProvider.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Model/SubscriptionStatusProvider.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Model/System/Message/NotificationAboutFailedSubscription.php
 mode change 100644 => 100755 app/code/Magento/Analytics/README.md
 mode change 100644 => 100755 app/code/Magento/Analytics/ReportXml/Config.php
 mode change 100644 => 100755 app/code/Magento/Analytics/ReportXml/Config/Converter/Xml.php
 mode change 100644 => 100755 app/code/Magento/Analytics/ReportXml/Config/Mapper.php
 mode change 100644 => 100755 app/code/Magento/Analytics/ReportXml/Config/Reader.php
 mode change 100644 => 100755 app/code/Magento/Analytics/ReportXml/ConfigInterface.php
 mode change 100644 => 100755 app/code/Magento/Analytics/ReportXml/ConnectionFactory.php
 mode change 100644 => 100755 app/code/Magento/Analytics/ReportXml/DB/Assembler/AssemblerInterface.php
 mode change 100644 => 100755 app/code/Magento/Analytics/ReportXml/DB/Assembler/FilterAssembler.php
 mode change 100644 => 100755 app/code/Magento/Analytics/ReportXml/DB/Assembler/FromAssembler.php
 mode change 100644 => 100755 app/code/Magento/Analytics/ReportXml/DB/Assembler/JoinAssembler.php
 mode change 100644 => 100755 app/code/Magento/Analytics/ReportXml/DB/ColumnsResolver.php
 mode change 100644 => 100755 app/code/Magento/Analytics/ReportXml/DB/ConditionResolver.php
 mode change 100644 => 100755 app/code/Magento/Analytics/ReportXml/DB/NameResolver.php
 mode change 100644 => 100755 app/code/Magento/Analytics/ReportXml/DB/ReportValidator.php
 mode change 100644 => 100755 app/code/Magento/Analytics/ReportXml/DB/SelectBuilder.php
 mode change 100644 => 100755 app/code/Magento/Analytics/ReportXml/DB/SelectBuilderFactory.php
 mode change 100644 => 100755 app/code/Magento/Analytics/ReportXml/IteratorFactory.php
 mode change 100644 => 100755 app/code/Magento/Analytics/ReportXml/Query.php
 mode change 100644 => 100755 app/code/Magento/Analytics/ReportXml/QueryFactory.php
 mode change 100644 => 100755 app/code/Magento/Analytics/ReportXml/ReportProvider.php
 mode change 100644 => 100755 app/code/Magento/Analytics/ReportXml/SelectHydrator.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Setup/InstallData.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/Block/Adminhtml/System/Config/AdditionalCommentTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/Block/Adminhtml/System/Config/CollectionTimeLabelTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/Block/Adminhtml/System/Config/SubscriptionStatusLabelTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/Block/Adminhtml/System/Config/VerticalTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/Controller/Adminhtml/BIEssentials/SignUpTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/Controller/Adminhtml/Reports/ShowTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/Controller/Adminhtml/Subscription/RetryTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/Cron/CollectDataTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/Cron/SignUpTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/Cron/UpdateTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/Model/AnalyticsTokenTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/Model/Config/Backend/Baseurl/SubscriptionUpdateHandlerTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/Model/Config/Backend/CollectionTimeTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/Model/Config/Backend/Enabled/SubscriptionHandlerTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/Model/Config/Backend/EnabledTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/Model/Config/Backend/VerticalTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/Model/Config/MapperTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/Model/Config/ReaderTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/Model/Config/Source/VerticalTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/Model/ConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/Model/Connector/Http/Client/CurlTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/Model/Connector/Http/JsonConverterTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/Model/Connector/Http/ResponseResolverTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/Model/Connector/NotifyDataChangedCommandTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/Model/Connector/OTPRequestTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/Model/Connector/ResponseHandler/OTPTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/Model/Connector/ResponseHandler/ReSignUpTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/Model/Connector/ResponseHandler/SignUpTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/Model/Connector/ResponseHandler/UpdateTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/Model/Connector/SignUpCommandTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/Model/Connector/UpdateCommandTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/Model/ConnectorTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/Model/CryptographerTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/Model/EncodedContextTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/Model/ExportDataHandlerNotificationTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/Model/ExportDataHandlerTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/Model/FileInfoManagerTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/Model/FileInfoTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/Model/FileRecorderTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/Model/IntegrationManagerTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/Model/LinkProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/Model/Plugin/BaseUrlConfigPluginTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/Model/ReportUrlProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/Model/ReportWriterTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/Model/ReportXml/ModuleIteratorTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/Model/StoreConfigurationProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/Model/SubscriptionStatusProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/Model/System/Message/NotificationAboutFailedSubscriptionTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/ReportXml/Config/Converter/XmlTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/ReportXml/Config/MapperTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/ReportXml/Config/_files/valid_reports.xml
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/ReportXml/ConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/ReportXml/ConnectionFactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/ReportXml/DB/Assembler/FilterAssemblerTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/ReportXml/DB/Assembler/FromAssemblerTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/ReportXml/DB/Assembler/JoinAssemblerTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/ReportXml/DB/ColumnsResolverTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/ReportXml/DB/ConditionResolverTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/ReportXml/DB/NameResolverTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/ReportXml/DB/ReportValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/ReportXml/DB/SelectBuilderTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/ReportXml/IteratorFactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/ReportXml/QueryFactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/ReportXml/QueryTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/ReportXml/ReportProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/Test/Unit/ReportXml/SelectHydratorTest.php
 mode change 100644 => 100755 app/code/Magento/Analytics/composer.json
 mode change 100644 => 100755 app/code/Magento/Analytics/docs/images/M2_MA_signup.png
 mode change 100644 => 100755 app/code/Magento/Analytics/docs/images/analytics_modules.png
 mode change 100644 => 100755 app/code/Magento/Analytics/docs/images/data_transition.png
 mode change 100644 => 100755 app/code/Magento/Analytics/docs/images/definition.png
 mode change 100644 => 100755 app/code/Magento/Analytics/docs/images/mbi_file_exchange.png
 mode change 100644 => 100755 app/code/Magento/Analytics/docs/images/signup.png
 mode change 100644 => 100755 app/code/Magento/Analytics/docs/images/update.png
 mode change 100644 => 100755 app/code/Magento/Analytics/docs/images/update_request.png
 mode change 100644 => 100755 app/code/Magento/Analytics/etc/acl.xml
 mode change 100644 => 100755 app/code/Magento/Analytics/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/Analytics/etc/adminhtml/menu.xml
 mode change 100644 => 100755 app/code/Magento/Analytics/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/Analytics/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/Analytics/etc/analytics.xml
 mode change 100644 => 100755 app/code/Magento/Analytics/etc/analytics.xsd
 mode change 100644 => 100755 app/code/Magento/Analytics/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/Analytics/etc/crontab.xml
 mode change 100644 => 100755 app/code/Magento/Analytics/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Analytics/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Analytics/etc/reports.xml
 mode change 100644 => 100755 app/code/Magento/Analytics/etc/reports.xsd
 mode change 100644 => 100755 app/code/Magento/Analytics/etc/webapi.xml
 mode change 100644 => 100755 app/code/Magento/Analytics/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Analytics/registration.php
 mode change 100644 => 100755 app/code/Magento/Analytics/view/adminhtml/layout/adminhtml_dashboard_index.xml
 mode change 100644 => 100755 app/code/Magento/Analytics/view/adminhtml/templates/dashboard/section.phtml
 mode change 100644 => 100755 app/code/Magento/Authorization/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Authorization/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Authorization/Model/Acl/AclRetriever.php
 mode change 100644 => 100755 app/code/Magento/Authorization/Model/Acl/Loader/Role.php
 mode change 100644 => 100755 app/code/Magento/Authorization/Model/Acl/Loader/Rule.php
 mode change 100644 => 100755 app/code/Magento/Authorization/Model/Acl/Role/Generic.php
 mode change 100644 => 100755 app/code/Magento/Authorization/Model/Acl/Role/Group.php
 mode change 100644 => 100755 app/code/Magento/Authorization/Model/Acl/Role/User.php
 mode change 100644 => 100755 app/code/Magento/Authorization/Model/CompositeUserContext.php
 mode change 100644 => 100755 app/code/Magento/Authorization/Model/ResourceModel/Permissions/Collection.php
 mode change 100644 => 100755 app/code/Magento/Authorization/Model/ResourceModel/Role.php
 mode change 100644 => 100755 app/code/Magento/Authorization/Model/ResourceModel/Role/Collection.php
 mode change 100644 => 100755 app/code/Magento/Authorization/Model/ResourceModel/Role/Grid/Collection.php
 mode change 100644 => 100755 app/code/Magento/Authorization/Model/ResourceModel/Rules.php
 mode change 100644 => 100755 app/code/Magento/Authorization/Model/ResourceModel/Rules/Collection.php
 mode change 100644 => 100755 app/code/Magento/Authorization/Model/Role.php
 mode change 100644 => 100755 app/code/Magento/Authorization/Model/Rules.php
 mode change 100644 => 100755 app/code/Magento/Authorization/Model/UserContextInterface.php
 mode change 100644 => 100755 app/code/Magento/Authorization/README.md
 mode change 100644 => 100755 app/code/Magento/Authorization/Setup/AuthorizationFactory.php
 mode change 100644 => 100755 app/code/Magento/Authorization/Setup/InstallData.php
 mode change 100644 => 100755 app/code/Magento/Authorization/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/Authorization/Test/Unit/Model/Acl/AclRetrieverTest.php
 mode change 100644 => 100755 app/code/Magento/Authorization/Test/Unit/Model/Acl/Loader/RoleTest.php
 mode change 100644 => 100755 app/code/Magento/Authorization/Test/Unit/Model/Acl/Loader/RuleTest.php
 mode change 100644 => 100755 app/code/Magento/Authorization/Test/Unit/Model/CompositeUserContextTest.php
 mode change 100644 => 100755 app/code/Magento/Authorization/Test/Unit/Model/ResourceModel/RulesTest.php
 mode change 100644 => 100755 app/code/Magento/Authorization/composer.json
 mode change 100644 => 100755 app/code/Magento/Authorization/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Authorization/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Authorization/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Authorization/registration.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Block/Adminhtml/Order/View/Info/FraudDetails.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Block/Transparent/Iframe.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/AddConfigured.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Cancel.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/ConfigureProductToAdd.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/ConfigureQuoteItems.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Index.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/LoadBlock.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Place.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/ProcessData.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Redirect.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Reorder.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/ReturnQuote.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Save.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/ShowUpdateResult.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Start.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Controller/Directpost/Payment.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Controller/Directpost/Payment/BackendResponse.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Controller/Directpost/Payment/Place.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Controller/Directpost/Payment/Redirect.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Controller/Directpost/Payment/Response.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Controller/Directpost/Payment/ReturnQuote.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Helper/Backend/Data.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Helper/Data.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Helper/DataFactory.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Authorizenet/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Model/Authorizenet.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Model/Debug.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Model/Directpost.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Model/Directpost/Request.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Model/Directpost/Request/Factory.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Model/Directpost/Response.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Model/Directpost/Response/Factory.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Model/Directpost/Session.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Model/Request.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Model/Request/Factory.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Model/ResourceModel/Debug.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Model/ResourceModel/Debug/Collection.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Model/Response.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Model/Response/Factory.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Model/Source/Cctype.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Model/Source/PaymentAction.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Model/TransactionService.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Observer/AddFieldsToResponseObserver.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Observer/SaveOrderAfterSubmitObserver.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Observer/UpdateAllEditIncrementsObserver.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/README.md
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Test/Unit/Controller/Adminhtml/Authorizenet/Directpost/Payment/RedirectTest.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Test/Unit/Controller/Directpost/Payment/PlaceTest.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Test/Unit/Controller/Directpost/Payment/RedirectTest.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Test/Unit/Helper/Backend/DataTest.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Test/Unit/Helper/DataTest.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Test/Unit/Model/Directpost/Request/FactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Test/Unit/Model/Directpost/Response/FactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Test/Unit/Model/Directpost/ResponseTest.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Test/Unit/Model/Directpost/SessionTest.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Test/Unit/Model/DirectpostTest.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Test/Unit/Model/Request/FactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Test/Unit/Model/Response/FactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Test/Unit/Model/TransactionServiceTest.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/Test/Unit/Observer/AddFieldsToResponseObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/composer.json
 mode change 100644 => 100755 app/code/Magento/Authorizenet/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/Authorizenet/etc/adminhtml/events.xml
 mode change 100644 => 100755 app/code/Magento/Authorizenet/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/Authorizenet/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/Authorizenet/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/Authorizenet/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Authorizenet/etc/frontend/di.xml
 mode change 100644 => 100755 app/code/Magento/Authorizenet/etc/frontend/events.xml
 mode change 100644 => 100755 app/code/Magento/Authorizenet/etc/frontend/page_types.xml
 mode change 100644 => 100755 app/code/Magento/Authorizenet/etc/frontend/routes.xml
 mode change 100644 => 100755 app/code/Magento/Authorizenet/etc/frontend/sections.xml
 mode change 100644 => 100755 app/code/Magento/Authorizenet/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Authorizenet/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Authorizenet/registration.php
 mode change 100644 => 100755 app/code/Magento/Authorizenet/view/adminhtml/layout/adminhtml_authorizenet_directpost_payment_redirect.xml
 mode change 100644 => 100755 app/code/Magento/Authorizenet/view/adminhtml/layout/sales_order_create_index.xml
 mode change 100644 => 100755 app/code/Magento/Authorizenet/view/adminhtml/layout/sales_order_create_load_block_billing_method.xml
 mode change 100644 => 100755 app/code/Magento/Authorizenet/view/adminhtml/layout/sales_order_view.xml
 mode change 100644 => 100755 app/code/Magento/Authorizenet/view/adminhtml/templates/directpost/iframe.phtml
 mode change 100644 => 100755 app/code/Magento/Authorizenet/view/adminhtml/templates/directpost/info.phtml
 mode change 100644 => 100755 app/code/Magento/Authorizenet/view/adminhtml/templates/order/view/info/fraud_details.phtml
 mode change 100644 => 100755 app/code/Magento/Authorizenet/view/adminhtml/web/js/direct-post.js
 mode change 100644 => 100755 app/code/Magento/Authorizenet/view/frontend/layout/authorizenet_directpost_payment_backendresponse.xml
 mode change 100644 => 100755 app/code/Magento/Authorizenet/view/frontend/layout/authorizenet_directpost_payment_redirect.xml
 mode change 100644 => 100755 app/code/Magento/Authorizenet/view/frontend/layout/authorizenet_directpost_payment_response.xml
 mode change 100644 => 100755 app/code/Magento/Authorizenet/view/frontend/layout/checkout_index_index.xml
 mode change 100644 => 100755 app/code/Magento/Authorizenet/view/frontend/requirejs-config.js
 mode change 100644 => 100755 app/code/Magento/Authorizenet/view/frontend/web/js/view/payment/authorizenet.js
 mode change 100644 => 100755 app/code/Magento/Authorizenet/view/frontend/web/js/view/payment/method-renderer/authorizenet-directpost.js
 mode change 100644 => 100755 app/code/Magento/Authorizenet/view/frontend/web/template/payment/authorizenet-directpost.html
 mode change 100644 => 100755 app/code/Magento/Backend/App/AbstractAction.php
 mode change 100644 => 100755 app/code/Magento/Backend/App/Action.php
 mode change 100644 => 100755 app/code/Magento/Backend/App/Action/Context.php
 mode change 100644 => 100755 app/code/Magento/Backend/App/Action/Plugin/Authentication.php
 mode change 100644 => 100755 app/code/Magento/Backend/App/Action/Plugin/MassactionKey.php
 mode change 100644 => 100755 app/code/Magento/Backend/App/Area/FrontNameResolver.php
 mode change 100644 => 100755 app/code/Magento/Backend/App/BackendApp.php
 mode change 100644 => 100755 app/code/Magento/Backend/App/BackendAppList.php
 mode change 100644 => 100755 app/code/Magento/Backend/App/Config.php
 mode change 100644 => 100755 app/code/Magento/Backend/App/ConfigInterface.php
 mode change 100644 => 100755 app/code/Magento/Backend/App/DefaultPath.php
 mode change 100644 => 100755 app/code/Magento/Backend/App/Request/PathInfoProcessor.php
 mode change 100644 => 100755 app/code/Magento/Backend/App/Response/Http/FileFactory.php
 mode change 100644 => 100755 app/code/Magento/Backend/App/Router.php
 mode change 100644 => 100755 app/code/Magento/Backend/App/Router/NoRouteHandler.php
 mode change 100644 => 100755 app/code/Magento/Backend/App/UserConfig.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/AbstractBlock.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Admin/Formkey.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/AnchorRenderer.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Cache.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Cache/Additional.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Cache/Grid/Column/Statuses.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Cache/Grid/Massaction/ProductionModeVisibilityChecker.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Catalog/Product/Tab/Container.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Context.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Dashboard.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Dashboard/AbstractDashboard.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Dashboard/Bar.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Dashboard/Diagrams.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Dashboard/Graph.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Dashboard/Grid.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Dashboard/Grids.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Dashboard/Orders/Grid.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Dashboard/Sales.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Dashboard/Searches/Renderer/Searchquery.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Dashboard/Tab/Amounts.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Dashboard/Tab/Customers/Most.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Dashboard/Tab/Customers/Newest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Dashboard/Tab/Orders.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Dashboard/Tab/Products/Ordered.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Dashboard/Tab/Products/Viewed.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Dashboard/Totals.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Denied.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/GlobalSearch.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Media/Uploader.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Menu.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/MenuItemChecker.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Page.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Page/Copyright.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Page/Footer.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Page/Header.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Page/Notices.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Page/RequireJs.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Page/System/Config/Robots/Reset.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Store/Switcher.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Store/Switcher/Form/Renderer/Fieldset.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Store/Switcher/Form/Renderer/Fieldset/Element.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/System/Account/Edit.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/System/Account/Edit/Form.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/System/Cache/Edit.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/System/Cache/Form.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/System/Design.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/System/Design/Edit.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/System/Design/Edit/Tab/General.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/System/Design/Edit/Tabs.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/System/Store/Delete.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/System/Store/Delete/Form.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/System/Store/Delete/Group.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/System/Store/Delete/Website.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/System/Store/Edit.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/System/Store/Edit/AbstractForm.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/System/Store/Edit/Form/Group.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/System/Store/Edit/Form/Store.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/System/Store/Edit/Form/Website.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/System/Store/Grid/Render/Group.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/System/Store/Grid/Render/Store.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/System/Store/Grid/Render/Website.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/System/Store/Store.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Template.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Template/Context.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Text/ListText.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Accordion.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Accordion/Item.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Breadcrumbs.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Button.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Button/ButtonList.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Button/ContextInterface.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Button/Item.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Button/SplitButton.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Button/Toolbar/Container.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Button/ToolbarInterface.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Container.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/ContainerInterface.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Context.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Form.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Form/Container.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Form/Element.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Form/Element/Dependence.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Form/Element/Gallery.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Form/Generic.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Form/Renderer/Element.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Form/Renderer/Fieldset.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Form/Renderer/Fieldset/Element.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Column.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Column/Extended.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/AbstractFilter.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Checkbox.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Country.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Date.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Datetime.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/FilterInterface.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Massaction.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Price.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Radio.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Range.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Select.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Select/Extended.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/SkipList.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Store.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Text.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Theme.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Column/Multistore.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/AbstractRenderer.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Action.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Button.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Checkbox.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Checkboxes/Extended.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Concat.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Country.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Currency.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Date.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Datetime.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/DraggableHandle.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Input.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Ip.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Longtext.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Massaction.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Number.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Options.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Options/Converter.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Options/Extended.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Price.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Radio.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Radio/Extended.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/RendererInterface.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Select.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Select/Extended.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Store.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Text.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Wrapline.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/ColumnSet.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Container.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Export.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/ExportInterface.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Extended.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Massaction.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Massaction/AbstractMassaction.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Massaction/Additional.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Massaction/Extended.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Massaction/Item.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Massaction/Item/Additional/AdditionalInterface.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Massaction/Item/Additional/DefaultAdditional.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Massaction/VisibilityCheckerInterface.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Grid/Serializer.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Tab.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Tab/TabInterface.php
 mode change 100644 => 100755 app/code/Magento/Backend/Block/Widget/Tabs.php
 mode change 100644 => 100755 app/code/Magento/Backend/Console/Command/AbstractCacheCommand.php
 mode change 100644 => 100755 app/code/Magento/Backend/Console/Command/AbstractCacheManageCommand.php
 mode change 100644 => 100755 app/code/Magento/Backend/Console/Command/AbstractCacheSetCommand.php
 mode change 100644 => 100755 app/code/Magento/Backend/Console/Command/AbstractCacheTypeManageCommand.php
 mode change 100644 => 100755 app/code/Magento/Backend/Console/Command/CacheCleanCommand.php
 mode change 100644 => 100755 app/code/Magento/Backend/Console/Command/CacheDisableCommand.php
 mode change 100644 => 100755 app/code/Magento/Backend/Console/Command/CacheEnableCommand.php
 mode change 100644 => 100755 app/code/Magento/Backend/Console/Command/CacheFlushCommand.php
 mode change 100644 => 100755 app/code/Magento/Backend/Console/Command/CacheStatusCommand.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/Ajax/Translate.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/Auth.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/Auth/DeniedIframe.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/Auth/DeniedJson.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/Auth/Login.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/Auth/Logout.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/BackendApp/Redirect.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/Cache.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/Cache/CleanImages.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/Cache/CleanMedia.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/Cache/CleanStaticFiles.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/Cache/FlushAll.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/Cache/FlushSystem.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/Cache/Index.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/Cache/MassDisable.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/Cache/MassEnable.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/Cache/MassRefresh.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/Dashboard.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/Dashboard/AjaxBlock.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/Dashboard/CustomersMost.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/Dashboard/CustomersNewest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/Dashboard/Index.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/Dashboard/ProductsViewed.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/Dashboard/RefreshStatistics.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/Dashboard/Tunnel.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/Denied.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/Index.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/Index/ChangeLocale.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/Index/GlobalSearch.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/Index/Index.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/Noroute/Index.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/System.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/System/Account.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/System/Account/Index.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/System/Account/Save.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/System/Design.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/System/Design/Delete.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/System/Design/Edit.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/System/Design/Grid.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/System/Design/Index.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/System/Design/NewAction.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/System/Design/Save.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/System/Index.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/System/SetStore.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/System/Store.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/System/Store/DeleteGroup.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/System/Store/DeleteGroupPost.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/System/Store/DeleteStore.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/System/Store/DeleteStorePost.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/System/Store/DeleteWebsite.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/System/Store/DeleteWebsitePost.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/System/Store/EditGroup.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/System/Store/EditStore.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/System/Store/EditWebsite.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/System/Store/Index.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/System/Store/NewGroup.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/System/Store/NewStore.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/System/Store/NewWebsite.php
 mode change 100644 => 100755 app/code/Magento/Backend/Controller/Adminhtml/System/Store/Save.php
 mode change 100644 => 100755 app/code/Magento/Backend/Cron/CleanCache.php
 mode change 100644 => 100755 app/code/Magento/Backend/Helper/Dashboard/AbstractDashboard.php
 mode change 100644 => 100755 app/code/Magento/Backend/Helper/Dashboard/Data.php
 mode change 100644 => 100755 app/code/Magento/Backend/Helper/Dashboard/Order.php
 mode change 100644 => 100755 app/code/Magento/Backend/Helper/Data.php
 mode change 100644 => 100755 app/code/Magento/Backend/Helper/Js.php
 mode change 100644 => 100755 app/code/Magento/Backend/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Backend/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Backend/Model/AdminPathConfig.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/Auth.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/Auth/Credential/StorageInterface.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/Auth/Session.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/Auth/StorageInterface.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/Authorization/RoleLocator.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/Cache/ResourceModel/Grid/Collection.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/Config/SessionLifetime/BackendModel.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/Locale/Manager.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/Locale/Resolver.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/Menu.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/Menu/AbstractDirector.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/Menu/Builder.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/Menu/Builder/AbstractCommand.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/Menu/Builder/Command/Add.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/Menu/Builder/Command/Remove.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/Menu/Builder/Command/Update.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/Menu/Builder/CommandFactory.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/Menu/Config.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/Menu/Config/Converter.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/Menu/Config/Menu/Dom.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/Menu/Config/Reader.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/Menu/Config/SchemaLocator.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/Menu/Director/Director.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/Menu/Filter/Iterator.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/Menu/Item.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/Menu/Item/Factory.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/Menu/Item/Validator.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/Menu/Iterator.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/ResourceModel/Translate.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/Search/Customer.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/Search/Order.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/Session.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/Session/AdminConfig.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/Session/Quote.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/Setup/MenuBuilder.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/Translate/Inline/Config.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/Url.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/Url/ScopeResolver.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/UrlInterface.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/View/Layout/Builder.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/View/Layout/Reader/Block.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/View/Layout/StructureManager.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/View/Page/Builder.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/View/Result/Forward.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/View/Result/Page.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/View/Result/Redirect.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/View/Result/RedirectFactory.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/Widget/Grid/AbstractTotals.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/Widget/Grid/Parser.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/Widget/Grid/Row/GeneratorInterface.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/Widget/Grid/Row/UrlGenerator.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/Widget/Grid/Row/UrlGeneratorFactory.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/Widget/Grid/Row/UrlGeneratorId.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/Widget/Grid/SubTotals.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/Widget/Grid/Totals.php
 mode change 100644 => 100755 app/code/Magento/Backend/Model/Widget/Grid/TotalsInterface.php
 mode change 100644 => 100755 app/code/Magento/Backend/README.md
 mode change 100644 => 100755 app/code/Magento/Backend/Service/V1/ModuleService.php
 mode change 100644 => 100755 app/code/Magento/Backend/Service/V1/ModuleServiceInterface.php
 mode change 100644 => 100755 app/code/Magento/Backend/Setup/ConfigOptionsList.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/App/Action/Plugin/AuthenticationTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/App/Action/Plugin/MassactionKeyTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/App/Action/Stub/ActionStub.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/App/Area/FrontNameResolverTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/App/Area/Request/PathInfoProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/App/ConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/App/Response/Http/FileFactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/App/Router/NoRouteHandlerTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/App/UserConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Block/AnchorRendererTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Block/Cache/AdditionalTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Block/MenuItemCheckerTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Block/MenuTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Block/Page/System/Config/Robots/ResetTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Block/Store/SwitcherTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Block/Widget/Button/SplitTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Block/Widget/ButtonTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Block/Widget/Form/ContainerTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Block/Widget/FormTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Filter/DateTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Filter/DatetimeTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Filter/StoreTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Filter/TextTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/MultistoreTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Renderer/AbstractRendererTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Renderer/ConcatTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Renderer/CurrencyTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Renderer/Radio/ExtendedTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Renderer/RadioTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/ColumnSetTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/ColumnTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/ExtendedTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Massaction/ExtendedTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/MassactionTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/SerializerTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Block/Widget/TabTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Console/Command/AbstractCacheCommandTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Console/Command/AbstractCacheManageCommandTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Console/Command/AbstractCacheSetCommandTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Console/Command/CacheCleanCommandTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Console/Command/CacheDisableCommandTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Console/Command/CacheEnableCommandTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Console/Command/CacheFlushCommandTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Console/Command/CacheStatusCommandTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Cache/CleanMediaTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Cache/CleanStaticFilesTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Cache/MassDisableTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Cache/MassEnableTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Dashboard/AbstractTestCase.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Dashboard/CustomersMostTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Dashboard/CustomersNewestTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Dashboard/ProductsViewedTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Dashboard/RefreshStatisticsTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Dashboard/TunnelTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/System/Account/SaveTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/System/Store/IndexTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Cron/CleanCacheTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Helper/DataTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Model/AdminPathConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Model/Auth/SessionTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Model/AuthTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Model/Authorization/RoleLocatorTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Model/Locale/ManagerTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Model/Menu/Builder/AbstractCommandTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Model/Menu/Builder/Command/AddTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Model/Menu/Builder/Command/RemoveTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Model/Menu/Builder/Command/UpdateTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Model/Menu/BuilderTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Model/Menu/Config/ConverterTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Model/Menu/Config/SchemaLocatorTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Model/Menu/Config/XsdTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Model/Menu/Config/_files/invalidMenuXmlArray.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Model/Menu/Config/_files/invalid_menu.xml
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Model/Menu/Config/_files/valid_menu.xml
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Model/Menu/ConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Model/Menu/Director/DirectorTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Model/Menu/Filter/IteratorTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Model/Menu/Item/ValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Model/Menu/ItemTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Model/MenuBuilderTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Model/MenuTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Model/Session/AdminConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Model/Session/QuoteTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Model/Translate/Inline/ConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Model/UrlTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Model/View/Layout/StructureManagerTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Model/View/Result/PageTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Model/View/Result/RedirectTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Model/Widget/Grid/AbstractTotalsTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Model/Widget/Grid/ParserTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Model/Widget/Grid/Row/UrlGeneratorTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Model/Widget/Grid/SubTotalsTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Model/Widget/Grid/TotalsTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Model/_files/menu_item_constructor_data.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Model/_files/menu_item_data.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Model/_files/menu_merged.php
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Model/_files/menu_merged.xml
 mode change 100644 => 100755 app/code/Magento/Backend/Test/Unit/Setup/ConfigOptionsListTest.php
 mode change 100644 => 100755 app/code/Magento/Backend/composer.json
 mode change 100644 => 100755 app/code/Magento/Backend/etc/acl.xml
 mode change 100644 => 100755 app/code/Magento/Backend/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/Backend/etc/adminhtml/menu.xml
 mode change 100644 => 100755 app/code/Magento/Backend/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/Backend/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/Backend/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/Backend/etc/crontab.xml
 mode change 100644 => 100755 app/code/Magento/Backend/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Backend/etc/menu.xsd
 mode change 100644 => 100755 app/code/Magento/Backend/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Backend/etc/webapi.xml
 mode change 100644 => 100755 app/code/Magento/Backend/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Backend/registration.php
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/layout/admin_login.xml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/layout/adminhtml_auth_login.xml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/layout/adminhtml_cache_block.xml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/layout/adminhtml_cache_index.xml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/layout/adminhtml_dashboard_customersmost.xml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/layout/adminhtml_dashboard_customersnewest.xml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/layout/adminhtml_dashboard_index.xml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/layout/adminhtml_dashboard_productsviewed.xml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/layout/adminhtml_denied.xml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/layout/adminhtml_noroute.xml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_account_index.xml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_design_edit.xml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_design_grid.xml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_design_grid_block.xml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_design_index.xml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_store_deletestore.xml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_store_editstore.xml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_store_grid_block.xml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_store_index.xml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/layout/default.xml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/layout/editor.xml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/layout/empty.xml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/layout/formkey.xml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/layout/overlay_popup.xml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/layout/popup.xml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/requirejs-config.js
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/admin/access_denied.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/admin/delete_confirm.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/admin/formkey.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/admin/login.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/admin/login_buttons.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/admin/overlay_popup.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/admin/page.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/admin/save_confirm.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/dashboard/graph.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/dashboard/graph/disabled.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/dashboard/grid.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/dashboard/index.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/dashboard/salebar.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/dashboard/searches.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/dashboard/store/switcher.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/dashboard/totalbar.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/dashboard/totalbar/refreshstatistics.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/media/uploader.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/menu.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/page/copyright.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/page/footer.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/page/header.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/page/js/calendar.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/page/js/components.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/page/js/require_js.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/page/notices.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/page/report.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/pageactions.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/store/switcher.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/store/switcher/form/renderer/fieldset.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/store/switcher/form/renderer/fieldset/element.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/system/autocomplete.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/system/cache/additional.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/system/cache/edit.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/system/design/edit.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/system/design/index.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/system/search.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/system/shipping/applicable_country.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/widget/accordion.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/widget/breadcrumbs.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/widget/button.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/widget/button/split.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/widget/form.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/widget/form/container.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/widget/form/element.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/widget/form/element/gallery.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/widget/form/renderer/element.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/widget/form/renderer/fieldset.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/widget/form/renderer/fieldset/element.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/widget/grid.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/widget/grid/column_set.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/widget/grid/container.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/widget/grid/container/empty.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/widget/grid/export.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/widget/grid/extended.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/widget/grid/massaction.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/widget/grid/massaction_extended.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/widget/grid/serializer.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/widget/tabs.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/widget/tabshoriz.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/widget/tabsleft.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/templates/widget/view/container.phtml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/ui_component/design_config_form.xml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/ui_component/design_config_listing.xml
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/web/images/draggable-handle-bg.png
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/web/images/draggable-handle-vertical.png
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/web/images/gallery-image-base-label.png
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/web/images/gallery-image-panel-corner.png
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/web/images/image-placeholder.png
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/web/js/bootstrap/editor.js
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/web/js/delete-with-confirm.js
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/web/js/media-uploader.js
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/web/js/save-with-confirm.js
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/web/js/validate-store.js
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/web/template/dynamic-rows/cells/action-delete.html
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/web/template/dynamic-rows/grid.html
 mode change 100644 => 100755 app/code/Magento/Backend/view/adminhtml/web/template/form/element/helper/fallback-reset-link.html
 mode change 100644 => 100755 app/code/Magento/Backup/Block/Adminhtml/Backup.php
 mode change 100644 => 100755 app/code/Magento/Backup/Block/Adminhtml/Dialogs.php
 mode change 100644 => 100755 app/code/Magento/Backup/Block/Adminhtml/Grid/Column/Renderer/Download.php
 mode change 100644 => 100755 app/code/Magento/Backup/Block/Adminhtml/Grid/Column/Rollback.php
 mode change 100644 => 100755 app/code/Magento/Backup/Controller/Adminhtml/Index.php
 mode change 100644 => 100755 app/code/Magento/Backup/Controller/Adminhtml/Index/Create.php
 mode change 100644 => 100755 app/code/Magento/Backup/Controller/Adminhtml/Index/Download.php
 mode change 100644 => 100755 app/code/Magento/Backup/Controller/Adminhtml/Index/Grid.php
 mode change 100644 => 100755 app/code/Magento/Backup/Controller/Adminhtml/Index/Index.php
 mode change 100644 => 100755 app/code/Magento/Backup/Controller/Adminhtml/Index/MassDelete.php
 mode change 100644 => 100755 app/code/Magento/Backup/Controller/Adminhtml/Index/Rollback.php
 mode change 100644 => 100755 app/code/Magento/Backup/Cron/SystemBackup.php
 mode change 100644 => 100755 app/code/Magento/Backup/Helper/Data.php
 mode change 100644 => 100755 app/code/Magento/Backup/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Backup/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Backup/Model/Backup.php
 mode change 100644 => 100755 app/code/Magento/Backup/Model/BackupFactory.php
 mode change 100644 => 100755 app/code/Magento/Backup/Model/Config/Backend/Cron.php
 mode change 100644 => 100755 app/code/Magento/Backup/Model/Config/Source/Type.php
 mode change 100644 => 100755 app/code/Magento/Backup/Model/Db.php
 mode change 100644 => 100755 app/code/Magento/Backup/Model/Fs/Collection.php
 mode change 100644 => 100755 app/code/Magento/Backup/Model/Grid/Options.php
 mode change 100644 => 100755 app/code/Magento/Backup/Model/ResourceModel/Db.php
 mode change 100644 => 100755 app/code/Magento/Backup/Model/ResourceModel/Helper.php
 mode change 100644 => 100755 app/code/Magento/Backup/README.md
 mode change 100644 => 100755 app/code/Magento/Backup/Test/Unit/Controller/Adminhtml/Index/DownloadTest.php
 mode change 100644 => 100755 app/code/Magento/Backup/Test/Unit/Controller/Adminhtml/Index/RollbackTest.php
 mode change 100644 => 100755 app/code/Magento/Backup/Test/Unit/Cron/SystemBackupTest.php
 mode change 100644 => 100755 app/code/Magento/Backup/Test/Unit/Helper/DataTest.php
 mode change 100644 => 100755 app/code/Magento/Backup/Test/Unit/Model/BackupFactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Backup/Test/Unit/Model/BackupTest.php
 mode change 100644 => 100755 app/code/Magento/Backup/Test/Unit/Model/Fs/CollectionTest.php
 mode change 100644 => 100755 app/code/Magento/Backup/composer.json
 mode change 100644 => 100755 app/code/Magento/Backup/etc/acl.xml
 mode change 100644 => 100755 app/code/Magento/Backup/etc/adminhtml/menu.xml
 mode change 100644 => 100755 app/code/Magento/Backup/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/Backup/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/Backup/etc/crontab.xml
 mode change 100644 => 100755 app/code/Magento/Backup/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Backup/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Backup/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Backup/registration.php
 mode change 100644 => 100755 app/code/Magento/Backup/view/adminhtml/layout/backup_index_block.xml
 mode change 100644 => 100755 app/code/Magento/Backup/view/adminhtml/layout/backup_index_grid.xml
 mode change 100644 => 100755 app/code/Magento/Backup/view/adminhtml/layout/backup_index_index.xml
 mode change 100644 => 100755 app/code/Magento/Backup/view/adminhtml/templates/backup/dialogs.phtml
 mode change 100644 => 100755 app/code/Magento/Backup/view/adminhtml/templates/backup/left.phtml
 mode change 100644 => 100755 app/code/Magento/Backup/view/adminhtml/templates/backup/list.phtml
 mode change 100644 => 100755 app/code/Magento/Braintree/Block/Adminhtml/Form/Field/CcTypes.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Block/Adminhtml/Form/Field/Countries.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Block/Adminhtml/Form/Field/CountryCreditCard.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Block/Customer/CardRenderer.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Block/Customer/PayPal/VaultTokenRenderer.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Block/Form.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Block/Info.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Block/Payment.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Block/Paypal/Button.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Block/Paypal/Checkout/Review.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Controller/Adminhtml/Payment/GetClientToken.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Controller/Adminhtml/Payment/GetNonce.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Controller/Adminhtml/Report/Index.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Controller/Payment/GetNonce.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Controller/Paypal/AbstractAction.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Controller/Paypal/PlaceOrder.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Controller/Paypal/Review.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Controller/Paypal/SaveShippingMethod.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Gateway/Command/CaptureStrategyCommand.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Gateway/Command/GetPaymentNonceCommand.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Gateway/Config/CanVoidHandler.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Gateway/Config/Config.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Gateway/Config/PayPal/Config.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Gateway/Http/Client/AbstractTransaction.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Gateway/Http/Client/TransactionRefund.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Gateway/Http/Client/TransactionSale.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Gateway/Http/Client/TransactionSubmitForSettlement.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Gateway/Http/Client/TransactionVoid.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Gateway/Http/TransferFactory.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Gateway/Request/AddressDataBuilder.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Gateway/Request/CaptureDataBuilder.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Gateway/Request/ChannelDataBuilder.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Gateway/Request/CustomerDataBuilder.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Gateway/Request/DescriptorDataBuilder.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Gateway/Request/KountPaymentDataBuilder.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Gateway/Request/PayPal/DeviceDataBuilder.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Gateway/Request/PayPal/VaultDataBuilder.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Gateway/Request/PaymentDataBuilder.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Gateway/Request/RefundDataBuilder.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Gateway/Request/SettlementDataBuilder.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Gateway/Request/StoreConfigBuilder.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Gateway/Request/ThreeDSecureDataBuilder.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Gateway/Request/VaultCaptureDataBuilder.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Gateway/Request/VaultDataBuilder.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Gateway/Request/VoidDataBuilder.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Gateway/Response/CardDetailsHandler.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Gateway/Response/PayPal/VaultDetailsHandler.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Gateway/Response/PayPalDetailsHandler.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Gateway/Response/PaymentDetailsHandler.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Gateway/Response/RefundHandler.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Gateway/Response/RiskDataHandler.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Gateway/Response/ThreeDSecureDetailsHandler.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Gateway/Response/TransactionIdHandler.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Gateway/Response/VaultDetailsHandler.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Gateway/Response/VoidHandler.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Gateway/SubjectReader.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Gateway/Validator/ErrorCodeValidator.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Gateway/Validator/GeneralResponseValidator.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Gateway/Validator/PaymentNonceResponseValidator.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Gateway/Validator/ResponseValidator.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Helper/CcType.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Helper/Country.php
 mode change 100644 => 100755 app/code/Magento/Braintree/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Braintree/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Braintree/Model/Adapter/BraintreeAdapter.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Model/Adapter/BraintreeAdapterFactory.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Model/Adapter/BraintreeSearchAdapter.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Model/Adminhtml/Source/CcType.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Model/Adminhtml/Source/Environment.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Model/Adminhtml/Source/PaymentAction.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Model/Adminhtml/System/Config/Country.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Model/Adminhtml/System/Config/CountryCreditCard.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Model/AvsEmsCodeMapper.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Model/CvvEmsCodeMapper.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Model/InstantPurchase/CreditCard/AvailabilityChecker.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Model/InstantPurchase/CreditCard/TokenFormatter.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Model/InstantPurchase/PayPal/TokenFormatter.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Model/InstantPurchase/PaymentAdditionalInformationProvider.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Model/LocaleResolver.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Model/Paypal/Helper/AbstractHelper.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Model/Paypal/Helper/OrderPlace.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Model/Paypal/Helper/QuoteUpdater.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Model/Paypal/Helper/ShippingMethodUpdater.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Model/Report/ConditionAppliers/ApplierInterface.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Model/Report/ConditionAppliers/AppliersPool.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Model/Report/ConditionAppliers/MultipleValue.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Model/Report/ConditionAppliers/Range.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Model/Report/ConditionAppliers/Text.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Model/Report/FilterMapper.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Model/Report/Row/TransactionMap.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Model/Report/TransactionsCollection.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Model/Ui/Adminhtml/PayPal/TokenUiComponentProvider.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Model/Ui/Adminhtml/TokenUiComponentProvider.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Model/Ui/ConfigProvider.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Model/Ui/PayPal/ConfigProvider.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Model/Ui/PayPal/TokenUiComponentProvider.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Model/Ui/TokenUiComponentProvider.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Observer/AddPaypalShortcuts.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Observer/DataAssignObserver.php
 mode change 100644 => 100755 app/code/Magento/Braintree/README.md
 mode change 100644 => 100755 app/code/Magento/Braintree/Setup/UpgradeData.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Block/FormTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Controller/Payment/GetNonceTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Controller/Paypal/PlaceOrderTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Controller/Paypal/ReviewTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Controller/Paypal/SaveShippingMethodTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Gateway/Command/CaptureStrategyCommandTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Gateway/Command/GetPaymentNonceCommandTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Gateway/Config/CanVoidHandlerTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Gateway/Config/ConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Gateway/Helper/SubjectReaderTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Gateway/Http/Client/TransactionSaleTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Gateway/Http/Client/TransactionSubmitForSettlementTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Gateway/Http/TransferFactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Gateway/Request/AddressDataBuilderTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Gateway/Request/CaptureDataBuilderTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Gateway/Request/ChannelDataBuilderTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Gateway/Request/CustomerDataBuilderTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Gateway/Request/DescriptorDataBuilderTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Gateway/Request/KountPaymentDataBuilderTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Gateway/Request/PayPal/DeviceDataBuilderTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Gateway/Request/PayPal/VaultDataBuilderTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Gateway/Request/PaymentDataBuilderTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Gateway/Request/RefundDataBuilderTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Gateway/Request/SettlementDataBuilderTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Gateway/Request/ThreeDSecureDataBuilderTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Gateway/Request/VaultCaptureDataBuilderTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Gateway/Request/VaultDataBuilderTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Gateway/Response/CardDetailsHandlerTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Gateway/Response/PayPal/VaultDetailsHandlerTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Gateway/Response/PayPalDetailsHandlerTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Gateway/Response/PaymentDetailsHandlerTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Gateway/Response/RiskDataHandlerTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Gateway/Response/ThreeDSecureDetailsHandlerTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Gateway/Response/TransactionIdHandlerTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Gateway/Response/VaultDetailsHandlerTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Gateway/Response/VoidHandlerTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Gateway/Validator/GeneralResponseValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Gateway/Validator/PaymentNonceResponseValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Gateway/Validator/ResponseValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Helper/CcTypeTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Helper/CountryTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Model/Adminhtml/System/Config/CountryCreditCardTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Model/Adminhtml/System/Config/CountryTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Model/AvsEmsCodeMapperTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Model/CvvEmsCodeMapperTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Model/Paypal/Helper/OrderPlaceTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Model/Paypal/Helper/QuoteUpdaterTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Model/Paypal/Helper/ShippingMethodUpdaterTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Model/Report/BraintreeSearchNodeStub.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Model/Report/BraintreeTransactionStub.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Model/Report/FilterMapperTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Model/Report/TransactionMapTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Model/Report/TransactionsCollectionTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Model/Ui/Adminhtml/PayPal/TokenUiComponentProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Model/Ui/Adminhtml/TokenUiComponentProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Model/Ui/ConfigProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Model/Ui/PayPal/ConfigProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Model/Ui/PayPal/TokenUiComponentProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Observer/AddPaypalShortcutsTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Observer/DataAssignObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Ui/Component/Report/Filters/Type/DateRangeTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Test/Unit/Ui/Component/Report/Listing/Column/CheckColumnOptionSourceTest.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Ui/Component/Report/Filters/Type/DateRange.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Ui/Component/Report/Listing/Column/PaymentType.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Ui/Component/Report/Listing/Column/Status.php
 mode change 100644 => 100755 app/code/Magento/Braintree/Ui/Component/Report/Listing/Column/TransactionType.php
 mode change 100644 => 100755 app/code/Magento/Braintree/composer.json
 mode change 100644 => 100755 app/code/Magento/Braintree/etc/acl.xml
 mode change 100644 => 100755 app/code/Magento/Braintree/etc/adminhtml/braintree_error_mapping.xml
 mode change 100644 => 100755 app/code/Magento/Braintree/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/Braintree/etc/adminhtml/menu.xml
 mode change 100644 => 100755 app/code/Magento/Braintree/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/Braintree/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/Braintree/etc/braintree_error_mapping.xml
 mode change 100644 => 100755 app/code/Magento/Braintree/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/Braintree/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Braintree/etc/events.xml
 mode change 100644 => 100755 app/code/Magento/Braintree/etc/frontend/di.xml
 mode change 100644 => 100755 app/code/Magento/Braintree/etc/frontend/events.xml
 mode change 100644 => 100755 app/code/Magento/Braintree/etc/frontend/routes.xml
 mode change 100644 => 100755 app/code/Magento/Braintree/etc/frontend/sections.xml
 mode change 100644 => 100755 app/code/Magento/Braintree/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Braintree/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Braintree/registration.php
 mode change 100644 => 100755 app/code/Magento/Braintree/view/adminhtml/layout/adminhtml_system_config_edit.xml
 mode change 100644 => 100755 app/code/Magento/Braintree/view/adminhtml/layout/braintree_report_index.xml
 mode change 100644 => 100755 app/code/Magento/Braintree/view/adminhtml/layout/sales_order_create_index.xml
 mode change 100644 => 100755 app/code/Magento/Braintree/view/adminhtml/layout/sales_order_create_load_block_billing_method.xml
 mode change 100644 => 100755 app/code/Magento/Braintree/view/adminhtml/templates/form/cc.phtml
 mode change 100644 => 100755 app/code/Magento/Braintree/view/adminhtml/templates/form/paypal/vault.phtml
 mode change 100644 => 100755 app/code/Magento/Braintree/view/adminhtml/templates/form/vault.phtml
 mode change 100644 => 100755 app/code/Magento/Braintree/view/adminhtml/templates/grid/tooltip.phtml
 mode change 100644 => 100755 app/code/Magento/Braintree/view/adminhtml/templates/payment/script.phtml
 mode change 100644 => 100755 app/code/Magento/Braintree/view/adminhtml/ui_component/braintree_report.xml
 mode change 100644 => 100755 app/code/Magento/Braintree/view/adminhtml/web/images/braintree_allinone.png
 mode change 100644 => 100755 app/code/Magento/Braintree/view/adminhtml/web/images/braintree_logo.png
 mode change 100644 => 100755 app/code/Magento/Braintree/view/adminhtml/web/js/braintree.js
 mode change 100644 => 100755 app/code/Magento/Braintree/view/adminhtml/web/js/grid/filters/status.html
 mode change 100644 => 100755 app/code/Magento/Braintree/view/adminhtml/web/js/grid/provider.js
 mode change 100644 => 100755 app/code/Magento/Braintree/view/adminhtml/web/js/vault.js
 mode change 100644 => 100755 app/code/Magento/Braintree/view/adminhtml/web/styles.css
 mode change 100644 => 100755 app/code/Magento/Braintree/view/base/web/images/paypal-small.png
 mode change 100644 => 100755 app/code/Magento/Braintree/view/base/web/images/paypal.png
 mode change 100644 => 100755 app/code/Magento/Braintree/view/base/web/js/validator.js
 mode change 100644 => 100755 app/code/Magento/Braintree/view/frontend/layout/braintree_paypal_review.xml
 mode change 100644 => 100755 app/code/Magento/Braintree/view/frontend/layout/checkout_index_index.xml
 mode change 100644 => 100755 app/code/Magento/Braintree/view/frontend/layout/vault_cards_listaction.xml
 mode change 100644 => 100755 app/code/Magento/Braintree/view/frontend/requirejs-config.js
 mode change 100644 => 100755 app/code/Magento/Braintree/view/frontend/templates/paypal/button.phtml
 mode change 100644 => 100755 app/code/Magento/Braintree/view/frontend/templates/paypal/vault_token.phtml
 mode change 100644 => 100755 app/code/Magento/Braintree/view/frontend/web/js/paypal/button.js
 mode change 100644 => 100755 app/code/Magento/Braintree/view/frontend/web/js/paypal/form-builder.js
 mode change 100644 => 100755 app/code/Magento/Braintree/view/frontend/web/js/view/payment/3d-secure.js
 mode change 100644 => 100755 app/code/Magento/Braintree/view/frontend/web/js/view/payment/adapter.js
 mode change 100644 => 100755 app/code/Magento/Braintree/view/frontend/web/js/view/payment/braintree.js
 mode change 100644 => 100755 app/code/Magento/Braintree/view/frontend/web/js/view/payment/method-renderer/cc-form.js
 mode change 100644 => 100755 app/code/Magento/Braintree/view/frontend/web/js/view/payment/method-renderer/hosted-fields.js
 mode change 100644 => 100755 app/code/Magento/Braintree/view/frontend/web/js/view/payment/method-renderer/paypal-vault.js
 mode change 100644 => 100755 app/code/Magento/Braintree/view/frontend/web/js/view/payment/method-renderer/paypal.js
 mode change 100644 => 100755 app/code/Magento/Braintree/view/frontend/web/js/view/payment/method-renderer/vault.js
 mode change 100644 => 100755 app/code/Magento/Braintree/view/frontend/web/js/view/payment/validator-handler.js
 mode change 100644 => 100755 app/code/Magento/Braintree/view/frontend/web/template/payment/form.html
 mode change 100644 => 100755 app/code/Magento/Braintree/view/frontend/web/template/payment/paypal.html
 mode change 100644 => 100755 app/code/Magento/Braintree/view/frontend/web/template/payment/paypal/vault.html
 mode change 100644 => 100755 app/code/Magento/Bundle/Api/Data/BundleOptionInterface.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Api/Data/LinkInterface.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Api/Data/OptionInterface.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Api/Data/OptionTypeInterface.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Api/ProductLinkManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Api/ProductOptionManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Api/ProductOptionRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Api/ProductOptionTypeListInterface.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Bundle.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Checkbox.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Multi.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Radio.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Select.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Attributes.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Attributes/Extend.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Attributes/Special.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Search.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Search/Grid.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Selection.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tabs.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Block/Adminhtml/Order/Create/Sidebar.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Block/Adminhtml/Sales/Order/Items/Renderer.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Block/Adminhtml/Sales/Order/View/Items/Renderer.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Block/Catalog/Product/Price.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Block/Catalog/Product/View/Type/Bundle.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Block/Catalog/Product/View/Type/Bundle/Option.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Block/Catalog/Product/View/Type/Bundle/Option/Checkbox.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Block/Catalog/Product/View/Type/Bundle/Option/Multi.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Block/Catalog/Product/View/Type/Bundle/Option/Radio.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Block/Catalog/Product/View/Type/Bundle/Option/Select.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Block/Checkout/Cart/Item/Renderer.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Block/Sales/Order/Items/Renderer.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/AddAttributeToTemplate.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/AlertsPriceGrid.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/AlertsStockGrid.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Categories.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Crosssell.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/CrosssellGrid.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/CustomOptions.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Duplicate.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Edit.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Form.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Grid.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/GridOnly.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Index.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/MassDelete.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/MassStatus.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/NewAction.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Options.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/OptionsImportGrid.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Related.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/RelatedGrid.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Save.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/ShowUpdateResult.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/SuggestAttributes.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Upsell.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/UpsellGrid.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Validate.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Wysiwyg.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Selection/Grid.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Selection/Search.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Controller/Adminhtml/Product/Initialization/Helper/Plugin/Bundle.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Helper/Catalog/Product/Configuration.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Helper/Data.php
 mode change 100644 => 100755 app/code/Magento/Bundle/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Bundle/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Bundle/Model/BundleOption.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Model/CartItemProcessor.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Model/Link.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Model/LinkManagement.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Model/Option.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Model/Option/Validator.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Model/OptionManagement.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Model/OptionRepository.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Model/OptionTypeList.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Model/Plugin/PriceBackend.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Model/Plugin/Product.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Model/Plugin/QuoteItem.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Model/Product/Attribute/Source/Price/View.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Model/Product/Attribute/Source/Shipment/Type.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Model/Product/CatalogPrice.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Model/Product/CopyConstructor/Bundle.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Model/Product/LinksList.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Model/Product/OptionList.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Model/Product/Price.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Model/Product/ReadHandler.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Model/Product/SaveHandler.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Model/Product/Type.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Model/ProductOptionProcessor.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Model/ResourceModel/Bundle.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Model/ResourceModel/Indexer/BundleOptionStockDataSelectBuilder.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Model/ResourceModel/Indexer/Price.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Model/ResourceModel/Indexer/Stock.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Model/ResourceModel/Indexer/StockStatusSelectBuilder.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Model/ResourceModel/Option.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Model/ResourceModel/Option/Collection.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Model/ResourceModel/Selection.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Model/ResourceModel/Selection/Collection.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Model/ResourceModel/Selection/Collection/FilterApplier.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Model/ResourceModel/Selection/Plugin/Collection.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/AbstractItems.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Creditmemo.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Invoice.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Shipment.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Model/Sales/Order/Plugin/Item.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Model/Selection.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Model/Source/Option/Selection/Price/Type.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Model/Source/Option/Type.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Observer/AppendUpsellProductsObserver.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Observer/InitOptionRendererObserver.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Observer/SetAttributeTabBlockObserver.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Pricing/Adjustment/BundleCalculatorInterface.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Pricing/Adjustment/Calculator.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Pricing/Adjustment/DefaultSelectionPriceListProvider.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Pricing/Adjustment/SelectionPriceListProviderInterface.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Pricing/Price/BundleOptionPrice.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Pricing/Price/BundleOptionPriceInterface.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Pricing/Price/BundleRegularPrice.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Pricing/Price/BundleSelectionFactory.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Pricing/Price/BundleSelectionPrice.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Pricing/Price/ConfiguredPrice.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Pricing/Price/DiscountCalculator.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Pricing/Price/DiscountProviderInterface.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Pricing/Price/FinalPrice.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Pricing/Price/FinalPriceInterface.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Pricing/Price/RegularPriceInterface.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Pricing/Price/SpecialPrice.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Pricing/Price/TierPrice.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Pricing/Render/FinalPriceBox.php
 mode change 100644 => 100755 app/code/Magento/Bundle/README.md
 mode change 100644 => 100755 app/code/Magento/Bundle/Setup/InstallData.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Setup/Recurring.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Setup/UpgradeData.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/CheckboxTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/MultiTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/RadioTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/SelectTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Catalog/Product/Edit/Tab/Attributes/ExtendTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/OptionTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Sales/Order/Items/RendererTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Sales/Order/View/Items/RendererTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Block/Catalog/Product/View/Type/Bundle/OptionTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Block/Catalog/Product/View/Type/BundleTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Block/Sales/Order/Items/RendererTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Controller/Adminhtml/Bundle/Product/Edit/FormTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Controller/Adminhtml/Bundle/Selection/GridTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Controller/Adminhtml/Bundle/Selection/SearchTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Controller/Adminhtml/Product/Initialization/Helper/Plugin/BundleTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Helper/Catalog/Product/ConfigurationTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Helper/DataTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Model/CartItemProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Model/LinkManagementTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Model/Option/ValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Model/OptionManagementTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Model/OptionRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Model/OptionTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Model/OptionTypeListTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Model/Plugin/PriceBackendTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Model/Plugin/ProductTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Model/Plugin/QuoteItemTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Model/Product/Attribute/Source/Price/ViewTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Model/Product/CatalogPriceTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Model/Product/CopyConstructor/BundleTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Model/Product/LinksListTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Model/Product/OptionListTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Model/Product/PriceTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Model/Product/TypeTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Model/ProductOptionProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Model/ResourceModel/Selection/CollectionTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Model/Sales/Order/Pdf/Items/AbstractItemsTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Model/Sales/Order/Plugin/ItemTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Pricing/Adjustment/CalculatorTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Pricing/Price/BundleOptionPriceTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Pricing/Price/BundleRegularPriceTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Pricing/Price/BundleSelectionFactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Pricing/Price/BundleSelectionPriceTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Pricing/Price/DiscountCalculatorTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Pricing/Price/FinalPriceTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Pricing/Price/SpecialPriceTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Pricing/Price/TierPriceTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Pricing/Render/FinalPriceBoxTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Ui/DataProvider/Product/BundleDataProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Ui/DataProvider/Product/Form/Modifier/AbstractModifierTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Ui/DataProvider/Product/Form/Modifier/BundleQuantityTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Ui/DataProvider/Product/Form/Modifier/BundleSkuTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Ui/DataProvider/Product/Form/Modifier/BundleWeightTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Ui/DataProvider/Product/Form/Modifier/CompositeTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Test/Unit/Ui/DataProvider/Product/Listing/Collector/BundlePriceTest.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Ui/DataProvider/Product/BundleDataProvider.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundleAdvancedPricing.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundleCustomOptions.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundlePanel.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundlePrice.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundleQuantity.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundleSku.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundleWeight.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/Composite.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/StockData.php
 mode change 100644 => 100755 app/code/Magento/Bundle/Ui/DataProvider/Product/Listing/Collector/BundlePrice.php
 mode change 100644 => 100755 app/code/Magento/Bundle/composer.json
 mode change 100644 => 100755 app/code/Magento/Bundle/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/etc/adminhtml/events.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/etc/catalog_attributes.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/etc/events.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/etc/extension_attributes.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/etc/frontend/di.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/etc/frontend/events.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/etc/pdf.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/etc/product_types.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/etc/sales.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/etc/webapi.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/etc/webapi_rest/di.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/etc/webapi_soap/di.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Bundle/registration.php
 mode change 100644 => 100755 app/code/Magento/Bundle/view/adminhtml/layout/adminhtml_order_shipment_new.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/adminhtml/layout/adminhtml_order_shipment_view.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/adminhtml/layout/catalog_product_bundle.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/adminhtml/layout/catalog_product_new.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/adminhtml/layout/catalog_product_view_type_bundle.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/adminhtml/layout/customer_index_wishlist.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/adminhtml/layout/sales_order_creditmemo_new.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/adminhtml/layout/sales_order_creditmemo_updateqty.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/adminhtml/layout/sales_order_creditmemo_view.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/adminhtml/layout/sales_order_invoice_new.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/adminhtml/layout/sales_order_invoice_updateqty.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/adminhtml/layout/sales_order_invoice_view.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/adminhtml/layout/sales_order_view.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/adminhtml/templates/catalog/product/edit/tab/attributes/extend.phtml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/adminhtml/templates/product/composite/fieldset/options/bundle.phtml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/adminhtml/templates/product/composite/fieldset/options/type/checkbox.phtml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/adminhtml/templates/product/composite/fieldset/options/type/multi.phtml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/adminhtml/templates/product/composite/fieldset/options/type/radio.phtml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/adminhtml/templates/product/composite/fieldset/options/type/select.phtml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/adminhtml/templates/product/edit/bundle.phtml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/adminhtml/templates/product/edit/bundle/option.phtml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/adminhtml/templates/product/edit/bundle/option/search.phtml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/adminhtml/templates/product/edit/bundle/option/selection.phtml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/adminhtml/templates/product/stock/disabler.phtml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/adminhtml/templates/sales/creditmemo/create/items/renderer.phtml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/adminhtml/templates/sales/creditmemo/view/items/renderer.phtml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/adminhtml/templates/sales/invoice/create/items/renderer.phtml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/adminhtml/templates/sales/invoice/view/items/renderer.phtml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/adminhtml/templates/sales/order/view/items/renderer.phtml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/adminhtml/templates/sales/shipment/create/items/renderer.phtml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/adminhtml/templates/sales/shipment/view/items/renderer.phtml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/adminhtml/ui_component/bundle_product_listing.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/adminhtml/web/css/bundle-product.css
 mode change 100644 => 100755 app/code/Magento/Bundle/view/adminhtml/web/js/bundle-product.js
 mode change 100644 => 100755 app/code/Magento/Bundle/view/adminhtml/web/js/bundle-type-handler.js
 mode change 100644 => 100755 app/code/Magento/Bundle/view/adminhtml/web/js/components/bundle-checkbox.js
 mode change 100644 => 100755 app/code/Magento/Bundle/view/adminhtml/web/js/components/bundle-dynamic-rows-grid.js
 mode change 100644 => 100755 app/code/Magento/Bundle/view/adminhtml/web/js/components/bundle-dynamic-rows.js
 mode change 100644 => 100755 app/code/Magento/Bundle/view/adminhtml/web/js/components/bundle-input-type.js
 mode change 100644 => 100755 app/code/Magento/Bundle/view/adminhtml/web/js/components/bundle-option-qty.js
 mode change 100644 => 100755 app/code/Magento/Bundle/view/adminhtml/web/js/components/bundle-record.js
 mode change 100644 => 100755 app/code/Magento/Bundle/view/base/layout/catalog_product_prices.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/base/templates/product/price/final_price.phtml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/base/templates/product/price/selection/amount.phtml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/base/templates/product/price/tier_prices.phtml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/base/web/js/price-bundle.js
 mode change 100644 => 100755 app/code/Magento/Bundle/view/base/web/template/product/final_price.html
 mode change 100644 => 100755 app/code/Magento/Bundle/view/base/web/template/product/price/minimal_price.html
 mode change 100644 => 100755 app/code/Magento/Bundle/view/frontend/layout/catalog_product_view_type_bundle.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/frontend/layout/catalog_product_view_type_simple.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/frontend/layout/checkout_cart_configure_type_bundle.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/frontend/layout/checkout_cart_item_renderers.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/frontend/layout/checkout_onepage_review_item_renderers.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/frontend/layout/default.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/frontend/layout/sales_email_order_creditmemo_renderers.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/frontend/layout/sales_email_order_invoice_renderers.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/frontend/layout/sales_email_order_renderers.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/frontend/layout/sales_email_order_shipment_renderers.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/frontend/layout/sales_order_creditmemo_renderers.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/frontend/layout/sales_order_invoice_renderers.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/frontend/layout/sales_order_item_renderers.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/frontend/layout/sales_order_print_creditmemo_renderers.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/frontend/layout/sales_order_print_invoice_renderers.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/frontend/layout/sales_order_print_renderers.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/frontend/layout/sales_order_print_shipment_renderers.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/frontend/layout/sales_order_shipment_renderers.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/frontend/requirejs-config.js
 mode change 100644 => 100755 app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/backbutton.phtml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/customize.phtml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/options/notice.phtml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/summary.phtml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/type/bundle.phtml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/type/bundle/option/checkbox.phtml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/type/bundle/option/multi.phtml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/type/bundle/option/radio.phtml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/type/bundle/option/select.phtml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/type/bundle/options.phtml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/frontend/templates/email/order/items/creditmemo/default.phtml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/frontend/templates/email/order/items/invoice/default.phtml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/frontend/templates/email/order/items/order/default.phtml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/frontend/templates/email/order/items/shipment/default.phtml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/frontend/templates/js/components.phtml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/frontend/templates/sales/order/creditmemo/items/renderer.phtml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/frontend/templates/sales/order/invoice/items/renderer.phtml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/frontend/templates/sales/order/items/renderer.phtml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/frontend/templates/sales/order/shipment/items/renderer.phtml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/frontend/ui_component/widget_recently_compared.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/frontend/ui_component/widget_recently_viewed.xml
 mode change 100644 => 100755 app/code/Magento/Bundle/view/frontend/web/js/float.js
 mode change 100644 => 100755 app/code/Magento/Bundle/view/frontend/web/js/product-summary.js
 mode change 100644 => 100755 app/code/Magento/Bundle/view/frontend/web/js/slide.js
 mode change 100644 => 100755 app/code/Magento/BundleImportExport/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/BundleImportExport/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/BundleImportExport/Model/Export/Product/Type/Bundle.php
 mode change 100644 => 100755 app/code/Magento/BundleImportExport/Model/Export/RowCustomizer.php
 mode change 100644 => 100755 app/code/Magento/BundleImportExport/Model/Import/Product/Type/Bundle.php
 mode change 100644 => 100755 app/code/Magento/BundleImportExport/Model/Import/Product/Type/Bundle/RelationsDataSaver.php
 mode change 100644 => 100755 app/code/Magento/BundleImportExport/README.md
 mode change 100644 => 100755 app/code/Magento/BundleImportExport/Test/Unit/Model/Export/Product/RowCustomizerTest.php
 mode change 100644 => 100755 app/code/Magento/BundleImportExport/Test/Unit/Model/Import/Product/Type/Bundle/RelationsDataSaverTest.php
 mode change 100644 => 100755 app/code/Magento/BundleImportExport/Test/Unit/Model/Import/Product/Type/BundleTest.php
 mode change 100644 => 100755 app/code/Magento/BundleImportExport/composer.json
 mode change 100644 => 100755 app/code/Magento/BundleImportExport/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/BundleImportExport/etc/export.xml
 mode change 100644 => 100755 app/code/Magento/BundleImportExport/etc/import.xml
 mode change 100644 => 100755 app/code/Magento/BundleImportExport/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/BundleImportExport/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/BundleImportExport/registration.php
 mode change 100644 => 100755 app/code/Magento/CacheInvalidate/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/CacheInvalidate/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/CacheInvalidate/Model/PurgeCache.php
 mode change 100644 => 100755 app/code/Magento/CacheInvalidate/Model/SocketFactory.php
 mode change 100644 => 100755 app/code/Magento/CacheInvalidate/Observer/FlushAllCacheObserver.php
 mode change 100644 => 100755 app/code/Magento/CacheInvalidate/Observer/InvalidateVarnishObserver.php
 mode change 100644 => 100755 app/code/Magento/CacheInvalidate/README.md
 mode change 100644 => 100755 app/code/Magento/CacheInvalidate/Test/Unit/Model/PurgeCacheTest.php
 mode change 100644 => 100755 app/code/Magento/CacheInvalidate/Test/Unit/Model/SocketFactoryTest.php
 mode change 100644 => 100755 app/code/Magento/CacheInvalidate/Test/Unit/Observer/FlushAllCacheObserverTest.php
 mode change 100644 => 100755 app/code/Magento/CacheInvalidate/Test/Unit/Observer/InvalidateVarnishObserverTest.php
 mode change 100644 => 100755 app/code/Magento/CacheInvalidate/composer.json
 mode change 100644 => 100755 app/code/Magento/CacheInvalidate/etc/events.xml
 mode change 100644 => 100755 app/code/Magento/CacheInvalidate/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/CacheInvalidate/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/CacheInvalidate/registration.php
 mode change 100644 => 100755 app/code/Magento/Captcha/Block/Adminhtml/Captcha/DefaultCaptcha.php
 mode change 100644 => 100755 app/code/Magento/Captcha/Block/Captcha.php
 mode change 100644 => 100755 app/code/Magento/Captcha/Block/Captcha/DefaultCaptcha.php
 mode change 100644 => 100755 app/code/Magento/Captcha/Controller/Adminhtml/Refresh/Refresh.php
 mode change 100644 => 100755 app/code/Magento/Captcha/Controller/Refresh/Index.php
 mode change 100644 => 100755 app/code/Magento/Captcha/Cron/DeleteExpiredImages.php
 mode change 100644 => 100755 app/code/Magento/Captcha/Cron/DeleteOldAttempts.php
 mode change 100644 => 100755 app/code/Magento/Captcha/Helper/Adminhtml/Data.php
 mode change 100644 => 100755 app/code/Magento/Captcha/Helper/Data.php
 mode change 100644 => 100755 app/code/Magento/Captcha/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Captcha/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Captcha/Model/CaptchaFactory.php
 mode change 100644 => 100755 app/code/Magento/Captcha/Model/CaptchaInterface.php
 mode change 100644 => 100755 app/code/Magento/Captcha/Model/Cart/ConfigPlugin.php
 mode change 100644 => 100755 app/code/Magento/Captcha/Model/Checkout/ConfigProvider.php
 mode change 100644 => 100755 app/code/Magento/Captcha/Model/Config/Font.php
 mode change 100644 => 100755 app/code/Magento/Captcha/Model/Config/Form/AbstractForm.php
 mode change 100644 => 100755 app/code/Magento/Captcha/Model/Config/Form/Backend.php
 mode change 100644 => 100755 app/code/Magento/Captcha/Model/Config/Form/Frontend.php
 mode change 100644 => 100755 app/code/Magento/Captcha/Model/Config/Mode.php
 mode change 100644 => 100755 app/code/Magento/Captcha/Model/Customer/Plugin/AjaxLogin.php
 mode change 100644 => 100755 app/code/Magento/Captcha/Model/DefaultModel.php
 mode change 100644 => 100755 app/code/Magento/Captcha/Model/ResourceModel/Log.php
 mode change 100644 => 100755 app/code/Magento/Captcha/Observer/CaptchaStringResolver.php
 mode change 100644 => 100755 app/code/Magento/Captcha/Observer/CheckContactUsFormObserver.php
 mode change 100644 => 100755 app/code/Magento/Captcha/Observer/CheckForgotpasswordObserver.php
 mode change 100644 => 100755 app/code/Magento/Captcha/Observer/CheckGuestCheckoutObserver.php
 mode change 100644 => 100755 app/code/Magento/Captcha/Observer/CheckRegisterCheckoutObserver.php
 mode change 100644 => 100755 app/code/Magento/Captcha/Observer/CheckUserCreateObserver.php
 mode change 100644 => 100755 app/code/Magento/Captcha/Observer/CheckUserEditObserver.php
 mode change 100644 => 100755 app/code/Magento/Captcha/Observer/CheckUserForgotPasswordBackendObserver.php
 mode change 100644 => 100755 app/code/Magento/Captcha/Observer/CheckUserLoginBackendObserver.php
 mode change 100644 => 100755 app/code/Magento/Captcha/Observer/CheckUserLoginObserver.php
 mode change 100644 => 100755 app/code/Magento/Captcha/Observer/ResetAttemptForBackendObserver.php
 mode change 100644 => 100755 app/code/Magento/Captcha/Observer/ResetAttemptForFrontendAccountEditObserver.php
 mode change 100644 => 100755 app/code/Magento/Captcha/Observer/ResetAttemptForFrontendObserver.php
 mode change 100644 => 100755 app/code/Magento/Captcha/README.md
 mode change 100644 => 100755 app/code/Magento/Captcha/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/Captcha/Test/Unit/Controller/Refresh/IndexTest.php
 mode change 100644 => 100755 app/code/Magento/Captcha/Test/Unit/Cron/DeleteExpiredImagesTest.php
 mode change 100644 => 100755 app/code/Magento/Captcha/Test/Unit/Helper/Adminhtml/DataTest.php
 mode change 100644 => 100755 app/code/Magento/Captcha/Test/Unit/Helper/DataTest.php
 mode change 100644 => 100755 app/code/Magento/Captcha/Test/Unit/Model/CaptchaFactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Captcha/Test/Unit/Model/Cart/ConfigPluginTest.php
 mode change 100644 => 100755 app/code/Magento/Captcha/Test/Unit/Model/Checkout/ConfigProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Captcha/Test/Unit/Model/Customer/Plugin/AjaxLoginTest.php
 mode change 100644 => 100755 app/code/Magento/Captcha/Test/Unit/Model/DefaultTest.php
 mode change 100644 => 100755 app/code/Magento/Captcha/Test/Unit/Observer/CheckContactUsFormObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Captcha/Test/Unit/Observer/CheckForgotpasswordObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Captcha/Test/Unit/Observer/CheckUserCreateObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Captcha/Test/Unit/Observer/CheckUserEditObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Captcha/Test/Unit/Observer/CheckUserLoginObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Captcha/composer.json
 mode change 100644 => 100755 app/code/Magento/Captcha/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/Captcha/etc/adminhtml/events.xml
 mode change 100644 => 100755 app/code/Magento/Captcha/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/Captcha/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/Captcha/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/Captcha/etc/crontab.xml
 mode change 100644 => 100755 app/code/Magento/Captcha/etc/crontab/di.xml
 mode change 100644 => 100755 app/code/Magento/Captcha/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Captcha/etc/events.xml
 mode change 100644 => 100755 app/code/Magento/Captcha/etc/frontend/di.xml
 mode change 100644 => 100755 app/code/Magento/Captcha/etc/frontend/events.xml
 mode change 100644 => 100755 app/code/Magento/Captcha/etc/frontend/routes.xml
 mode change 100644 => 100755 app/code/Magento/Captcha/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Captcha/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Captcha/registration.php
 mode change 100644 => 100755 app/code/Magento/Captcha/view/adminhtml/layout/adminhtml_auth_forgotpassword.xml
 mode change 100644 => 100755 app/code/Magento/Captcha/view/adminhtml/layout/adminhtml_auth_login.xml
 mode change 100644 => 100755 app/code/Magento/Captcha/view/adminhtml/templates/default.phtml
 mode change 100644 => 100755 app/code/Magento/Captcha/view/adminhtml/web/reload.png
 mode change 100644 => 100755 app/code/Magento/Captcha/view/frontend/layout/checkout_index_index.xml
 mode change 100644 => 100755 app/code/Magento/Captcha/view/frontend/layout/contact_index_index.xml
 mode change 100644 => 100755 app/code/Magento/Captcha/view/frontend/layout/customer_account_create.xml
 mode change 100644 => 100755 app/code/Magento/Captcha/view/frontend/layout/customer_account_edit.xml
 mode change 100644 => 100755 app/code/Magento/Captcha/view/frontend/layout/customer_account_forgotpassword.xml
 mode change 100644 => 100755 app/code/Magento/Captcha/view/frontend/layout/customer_account_login.xml
 mode change 100644 => 100755 app/code/Magento/Captcha/view/frontend/layout/default.xml
 mode change 100644 => 100755 app/code/Magento/Captcha/view/frontend/requirejs-config.js
 mode change 100644 => 100755 app/code/Magento/Captcha/view/frontend/templates/default.phtml
 mode change 100644 => 100755 app/code/Magento/Captcha/view/frontend/templates/js/components.phtml
 mode change 100644 => 100755 app/code/Magento/Captcha/view/frontend/web/captcha.js
 mode change 100644 => 100755 app/code/Magento/Captcha/view/frontend/web/js/action/refresh.js
 mode change 100644 => 100755 app/code/Magento/Captcha/view/frontend/web/js/model/captcha.js
 mode change 100644 => 100755 app/code/Magento/Captcha/view/frontend/web/js/model/captchaList.js
 mode change 100644 => 100755 app/code/Magento/Captcha/view/frontend/web/js/view/checkout/defaultCaptcha.js
 mode change 100644 => 100755 app/code/Magento/Captcha/view/frontend/web/js/view/checkout/loginCaptcha.js
 mode change 100644 => 100755 app/code/Magento/Captcha/view/frontend/web/onepage.js
 mode change 100644 => 100755 app/code/Magento/Captcha/view/frontend/web/template/checkout/captcha.html
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/AttributeSetFinderInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/AttributeSetManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/AttributeSetRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/BasePriceStorageInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/CategoryAttributeOptionManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/CategoryAttributeRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/CategoryLinkManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/CategoryLinkRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/CategoryListInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/CategoryManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/CategoryRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/CostStorageInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/Data/BasePriceInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/Data/CategoryAttributeInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/Data/CategoryAttributeSearchResultsInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/Data/CategoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/Data/CategoryLinkInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/Data/CategoryProductLinkInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/Data/CategoryProductSearchResultInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/Data/CategorySearchResultsInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/Data/CategoryTreeInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/Data/CostInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/Data/CustomOptionInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/Data/EavAttributeInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/Data/PriceUpdateResultInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/Data/ProductAttributeInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/Data/ProductAttributeMediaGalleryEntryInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/Data/ProductAttributeSearchResultsInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/Data/ProductAttributeTypeInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/Data/ProductCustomOptionInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/Data/ProductCustomOptionTypeInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/Data/ProductCustomOptionValuesInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/Data/ProductFrontendActionInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/Data/ProductInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/Data/ProductLinkAttributeInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/Data/ProductLinkInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/Data/ProductLinkTypeInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/Data/ProductOptionInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/Data/ProductRender/ButtonInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/Data/ProductRender/FormattedPriceInfoInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/Data/ProductRender/ImageInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/Data/ProductRender/PriceInfoInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/Data/ProductRenderInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/Data/ProductRenderSearchResultsInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/Data/ProductSearchResultsInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/Data/ProductTierPriceInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/Data/ProductTypeInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/Data/ProductWebsiteLinkInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/Data/SpecialPriceInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/Data/TierPriceInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/ProductAttributeGroupRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/ProductAttributeManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/ProductAttributeMediaGalleryManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/ProductAttributeOptionManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/ProductAttributeRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/ProductAttributeTypesListInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/ProductCustomOptionRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/ProductCustomOptionTypeListInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/ProductLinkManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/ProductLinkRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/ProductLinkTypeListInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/ProductManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/ProductMediaAttributeManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/ProductRenderListInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/ProductRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/ProductTierPriceManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/ProductTypeListInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/ProductWebsiteLinkRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/ScopedProductTierPriceManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/SpecialPriceInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/SpecialPriceStorageInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Api/TierPriceStorageInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Category/AbstractCategory.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Category/AssignProducts.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Category/Checkboxes/Tree.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Category/Edit.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Category/Edit/DeleteButton.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Category/Edit/SaveButton.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Category/Helper/Image.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Category/Helper/Pricestep.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Category/Helper/Sortby/Available.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Category/Helper/Sortby/DefaultSortby.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Category/Tab/Product.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Category/Tree.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Category/Widget/Chooser.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Form.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Form/Renderer/Config/DateFieldsOrder.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Form/Renderer/Config/YearRange.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Form/Renderer/Fieldset/Element.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Helper/Form/Wysiwyg.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Helper/Form/Wysiwyg/Content.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Button/Cancel.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Button/Generic.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Button/Save.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Button/SaveInNewAttributeSet.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Form.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tab/Advanced.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tab/Front.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tab/Main.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tab/Options.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tab/System.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tabs.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Grid.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/NewAttribute/Product/Attributes.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Main.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Main/Formattribute.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Main/Formgroup.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Main/Formset.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Main/Tree/Attribute.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Main/Tree/Group.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Toolbar/Add.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Toolbar/Main.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Toolbar/Main/Filter.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Composite/Configure.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Composite/Error.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Composite/Fieldset.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Composite/Fieldset/Options.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Composite/Fieldset/Qty.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Composite/Update/Result.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Edit.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Action/Attribute.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Action/Attribute/Tab/Attributes.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Action/Attribute/Tab/Inventory.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Action/Attribute/Tab/Websites.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Action/Attribute/Tabs.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/AttributeSet.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Button/AddAttribute.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Button/Back.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Button/CreateCategory.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Button/Generic.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Button/Save.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Js.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/NewCategory.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Ajax/Serializer.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Alerts.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Alerts/Price.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Alerts/Stock.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Attributes.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Attributes/Create.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Attributes/Search.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/ChildTab.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Crosssell.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Inventory.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Option.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Popup/Grid.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Type/AbstractType.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Type/Date.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Type/File.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Type/Select.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Type/Text.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Price.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Price/Group/AbstractGroup.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Price/Tier.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Related.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Upsell.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Websites.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tabs.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Frontend/Product/Watermark.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Grid.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Apply.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Boolean.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Category.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Config.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Gallery.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Gallery/Content.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Image.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Price.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Weight.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Options/Ajax.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Price.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Widget/Chooser.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Product/Widget/Chooser/Container.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Rss/Grid/Link.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Adminhtml/Rss/NotifyStock.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Breadcrumbs.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Category/Plugin/PriceBoxTags.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Category/Rss/Link.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Category/View.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/FrontendStorageManager.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Navigation.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Product/AbstractProduct.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Product/AwareInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Product/Compare/ListCompare.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Product/Context.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Product/Gallery.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Product/Image.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Product/ImageBuilder.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Product/ListProduct.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Product/NewProduct.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Product/Price.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Product/ProductList/Crosssell.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Product/ProductList/Item/AddTo/Compare.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Product/ProductList/Item/Block.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Product/ProductList/Item/Container.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Product/ProductList/Promotion.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Product/ProductList/Random.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Product/ProductList/Related.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Product/ProductList/Upsell.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Product/ReviewRenderer/DefaultProvider.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Product/ReviewRendererInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Product/TemplateSelector.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Product/View.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Product/View/AbstractView.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Product/View/AddTo/Compare.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Product/View/Additional.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Product/View/Attributes.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Product/View/BaseImage.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Product/View/Description.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Product/View/Gallery.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Product/View/Options.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Product/View/Options/AbstractOptions.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Product/View/Options/Type/Date.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Product/View/Options/Type/DefaultType.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Product/View/Options/Type/File.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Product/View/Options/Type/Select.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Product/View/Options/Type/Text.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Product/View/Price.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Product/View/Tabs.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Product/View/Type/Simple.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Product/View/Type/Virtual.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Product/Widget/Html/Pager.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Product/Widget/NewWidget.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Rss/Category.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Rss/Product/NewProducts.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Rss/Product/Special.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/ShortcutButtons.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/ShortcutInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Ui/ProductViewCounter.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Widget/Link.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Widget/RecentlyCompared.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Block/Widget/RecentlyViewed.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Console/Command/ImagesResizeCommand.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Console/Command/ProductAttributesCleanUp.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Category.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Category/Add.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Category/CategoriesJson.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Category/Delete.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Category/Edit.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Category/Grid.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Category/Image/Upload.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Category/Index.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Category/Move.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Category/RefreshPath.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Category/Save.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Category/SuggestCategories.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Category/Tree.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Category/Validate.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Category/Widget.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Category/Widget/CategoriesJson.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Category/Widget/Chooser.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Category/Wysiwyg.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/AbstractProductGrid.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/Action/Attribute.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/Action/Attribute/Edit.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/Action/Attribute/Save.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/Action/Attribute/Validate.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/AddAttributeToTemplate.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/AlertsPriceGrid.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/AlertsStockGrid.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute/Delete.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute/Edit.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute/Index.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute/NewAction.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute/Save.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute/Validate.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/Builder.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/Categories.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/Crosssell.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/CrosssellGrid.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/CustomOptions.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/Datafeeds/Index.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/Duplicate.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/Edit.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/Gallery/Upload.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/Grid.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/GridOnly.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/Group/Save.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/Index.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/Initialization/Helper.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/Initialization/Helper/AttributeFilter.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/Initialization/Helper/HandlerFactory.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/Initialization/Helper/HandlerInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/Initialization/Helper/Plugin/Handler/Composite.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/Initialization/StockDataFilter.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/MassDelete.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/MassStatus.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/NewAction.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/Options.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/OptionsImportGrid.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/Related.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/RelatedGrid.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/Reload.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/Save.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/Set.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/Set/Add.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/Set/Delete.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/Set/Edit.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/Set/Index.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/Set/Save.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/Set/SetGrid.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/ShowUpdateResult.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/SuggestAttributeSets.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/SuggestAttributes.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/Upsell.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/UpsellGrid.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/Validate.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/Widget/Chooser.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Adminhtml/Product/Wysiwyg.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Category/View.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Index/Index.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Product.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Product/Compare.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Product/Compare/Add.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Product/Compare/Clear.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Product/Compare/Index.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Product/Compare/Remove.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Product/Frontend/Action/Synchronize.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Product/Gallery.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Product/View.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Controller/Product/View/ViewInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Cron/DeleteAbandonedStoreFlatTables.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Cron/DeleteOutdatedPriceValues.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Cron/FrontendActionsFlush.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Cron/RefreshSpecialPrices.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Cron/SynchronizeWebsiteAttributes.php
 mode change 100644 => 100755 app/code/Magento/Catalog/CustomerData/CompareProducts.php
 mode change 100644 => 100755 app/code/Magento/Catalog/CustomerData/ProductFrontendActionSection.php
 mode change 100644 => 100755 app/code/Magento/Catalog/CustomerData/ProductsRenderInfoSection.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Helper/Catalog.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Helper/Category.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Helper/Data.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Helper/DefaultCategory.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Helper/Image.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Helper/Output.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Helper/Product.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Helper/Product/Compare.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Helper/Product/Composite.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Helper/Product/Configuration.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Helper/Product/Configuration/ConfigurationInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Helper/Product/ConfigurationPool.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Helper/Product/Edit/Action/Attribute.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Helper/Product/Flat/Indexer.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Helper/Product/ProductList.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Helper/Product/View.php
 mode change 100644 => 100755 app/code/Magento/Catalog/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Catalog/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/AbstractModel.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/ProductCategoryFilter.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/ProductStoreFilter.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/ProductWebsiteFilter.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Attribute/Backend/Customlayoutupdate.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Attribute/Backend/Startdate.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Attribute/Config.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Attribute/Config/Converter.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Attribute/Config/Data.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Attribute/Config/Reader.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Attribute/Config/SchemaLocator.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Attribute/LockValidatorComposite.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Attribute/LockValidatorInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Attribute/ScopeOverriddenValue.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Attribute/Source/Scopes.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Category.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Category/Attribute.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Category/Attribute/Backend/Image.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Category/Attribute/Backend/Sortby.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Category/Attribute/OptionManagement.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Category/Attribute/Source/Layout.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Category/Attribute/Source/Mode.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Category/Attribute/Source/Page.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Category/Attribute/Source/Sortby.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Category/AttributeRepository.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Category/DataProvider.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Category/FileInfo.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Category/Link/ReadHandler.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Category/Link/SaveHandler.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Category/Product/PositionResolver.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Category/Tree.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/CategoryLink.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/CategoryLinkManagement.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/CategoryLinkRepository.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/CategoryList.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/CategoryManagement.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/CategoryProductLink.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/CategoryRepository.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Config.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Config/Backend/Category.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Config/CatalogClone/Media/Image.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Config/Source/Category.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Config/Source/GridPerPage.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Config/Source/ListMode.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Config/Source/ListPerPage.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Config/Source/ListSort.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Config/Source/Price/Scope.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Config/Source/Price/Step.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Config/Source/Product/Options/Price.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Config/Source/Product/Options/TierPrice.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Config/Source/Product/Options/Type.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Config/Source/Product/Thumbnail.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Config/Source/ProductPriceOptionsInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Config/Source/TimeFormat.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Config/Source/Watermark/Position.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/CustomOptions/CustomOption.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/CustomOptions/CustomOptionProcessor.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Design.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Entity/Attribute.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Entity/Product/Attribute/Design/Options/Container.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Entity/Product/Attribute/Group/AttributeMapper.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Entity/Product/Attribute/Group/AttributeMapperInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/EntityInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Factory.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/FrontendStorageConfigurationInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/FrontendStorageConfigurationPool.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ImageExtractor.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ImageUploader.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/AbstractFlatState.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Category/Flat.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Category/Flat/AbstractAction.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Category/Flat/Action/Full.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Category/Flat/Action/Rows.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Category/Flat/Plugin/IndexerConfigData.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Category/Flat/Plugin/StoreGroup.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Category/Flat/Plugin/StoreView.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Category/Flat/SkipStaticColumnsProvider.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Category/Flat/State.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Category/Flat/System/Config/Mode.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Category/Product.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Category/Product/AbstractAction.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Category/Product/Action/Full.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Category/Product/Action/Rows.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Category/Product/Action/RowsFactory.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Category/Product/Plugin/MviewState.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Category/Product/Plugin/StoreGroup.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Category/Product/Plugin/StoreView.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Category/Product/Processor.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Category/Product/RowSizeEstimator.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Product/Category.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Product/Category/Action/Rows.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Product/Category/Action/RowsFactory.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Product/Category/Processor.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Product/Eav.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Product/Eav/AbstractAction.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Product/Eav/Action/Full.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Product/Eav/Action/Row.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Product/Eav/Action/Rows.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Product/Eav/Plugin/AttributeSet.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Product/Eav/Plugin/AttributeSet/IndexableAttributeFilter.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Product/Eav/Plugin/StoreView.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Product/Eav/Processor.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Product/Flat.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Product/Flat/AbstractAction.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Product/Flat/Action/Eraser.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Product/Flat/Action/Full.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Product/Flat/Action/Indexer.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Product/Flat/Action/Row.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Product/Flat/Action/Rows.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Product/Flat/Action/Rows/TableData.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Product/Flat/FlatTableBuilder.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Product/Flat/Plugin/IndexerConfigData.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Product/Flat/Plugin/Store.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Product/Flat/Plugin/StoreGroup.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Product/Flat/Processor.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Product/Flat/State.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Product/Flat/System/Config/Mode.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Product/Flat/Table/Builder.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Product/Flat/Table/BuilderInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Product/Flat/TableBuilder.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Product/Flat/TableData.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Product/Flat/TableDataInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Product/Full.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Product/Price.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Product/Price/AbstractAction.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Product/Price/Action/Full.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Product/Price/Action/Row.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Product/Price/Action/Rows.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Product/Price/InvalidateIndex.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Product/Price/Plugin/CustomerGroup.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Product/Price/Plugin/Website.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Product/Price/Processor.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Product/Price/System/Config/PriceScope.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Indexer/Product/Price/UpdateIndexInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Layer.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Layer/AvailabilityFlagInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Layer/Category.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Layer/Category/AvailabilityFlag.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Layer/Category/CollectionFilter.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Layer/Category/FilterableAttributeList.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Layer/Category/ItemCollectionProvider.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Layer/Category/StateKey.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Layer/CollectionFilterInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Layer/Context.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Layer/ContextInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Layer/Filter/AbstractFilter.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Layer/Filter/Attribute.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Layer/Filter/Category.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Layer/Filter/DataProvider/Category.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Layer/Filter/DataProvider/Decimal.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Layer/Filter/DataProvider/Price.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Layer/Filter/Decimal.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Layer/Filter/Dynamic/AlgorithmFactory.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Layer/Filter/Dynamic/AlgorithmInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Layer/Filter/Dynamic/Auto.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Layer/Filter/Dynamic/Improved.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Layer/Filter/Dynamic/Manual.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Layer/Filter/Factory.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Layer/Filter/FilterInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Layer/Filter/Item.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Layer/Filter/Item/DataBuilder.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Layer/Filter/Price.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Layer/Filter/Price/Range.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Layer/Filter/Price/Render.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Layer/FilterList.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Layer/FilterableAttributeListInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Layer/ItemCollectionProviderInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Layer/Resolver.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Layer/Search.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Layer/Search/CollectionFilter.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Layer/Search/Filter/Attribute.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Layer/Search/FilterableAttributeList.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Layer/Search/ItemCollectionProvider.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Layer/State.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Layer/StateKeyInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Layout/DepersonalizePlugin.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Locator/LocatorInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Locator/RegistryLocator.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Plugin/Log.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Plugin/ProductRepository/TransactionWrapper.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Plugin/QuoteItemProductOption.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Plugin/ShowOutOfStockConfig.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Action.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Attribute/AttributeSetFinder.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Attribute/Backend/Boolean.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Attribute/Backend/Category.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Attribute/Backend/GroupPrice/AbstractGroupPrice.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Attribute/Backend/Media/EntryConverterInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Attribute/Backend/Media/EntryConverterPool.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Attribute/Backend/Media/ImageEntryConverter.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Attribute/Backend/Price.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Attribute/Backend/Sku.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Attribute/Backend/Stock.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Attribute/Backend/Tierprice.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Attribute/Backend/Weight.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Attribute/DataProvider.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Attribute/DefaultAttributes.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Attribute/Frontend/Image.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Attribute/Group.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Attribute/Management.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Attribute/OptionManagement.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Attribute/Repository.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Attribute/SetManagement.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Attribute/SetRepository.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Attribute/Source/Boolean.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Attribute/Source/Countryofmanufacture.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Attribute/Source/Inputtype.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Attribute/Source/Layout.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Attribute/Source/Status.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Attribute/Type.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Attribute/TypesList.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/AttributeSet/Build.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/AttributeSet/Options.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/AttributeSet/SuggestedSet.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/CartConfiguration.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/CatalogPrice.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/CatalogPriceFactory.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/CatalogPriceInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Compare/Item.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Compare/ListCompare.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Condition.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Condition/ConditionInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Configuration/Item/ItemInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Configuration/Item/Option.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Configuration/Item/Option/OptionInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Copier.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/CopyConstructor/Composite.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/CopyConstructor/CrossSell.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/CopyConstructor/Related.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/CopyConstructor/UpSell.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/CopyConstructorFactory.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/CopyConstructorInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Edit/WeightResolver.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Exception.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Gallery/CreateHandler.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Gallery/Entry.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Gallery/EntryResolver.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Gallery/GalleryManagement.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Gallery/MimeTypeExtensionMap.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Gallery/Processor.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Gallery/ReadHandler.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Gallery/UpdateHandler.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Image.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Image/Cache.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Image/NotLoadInfoImageException.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Initialization/Helper/ProductLinks.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Link.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Link/Converter.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Link/Resolver.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Link/SaveHandler.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/LinkTypeProvider.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Media/AttributeManagement.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Media/Config.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Media/ConfigInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Option.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Option/Converter.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Option/ReadHandler.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Option/Repository.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Option/SaveHandler.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Option/Type.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Option/Type/Date.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Option/Type/DefaultType.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Option/Type/Factory.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Option/Type/File.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Option/Type/File/ValidateFactory.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Option/Type/File/Validator.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Option/Type/File/ValidatorFile.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Option/Type/File/ValidatorInfo.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Option/Type/Select.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Option/Type/Text.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Option/UrlBuilder.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Option/Validator/DefaultValidator.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Option/Validator/File.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Option/Validator/Pool.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Option/Validator/Select.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Option/Validator/Text.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Option/Value.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Price/BasePrice.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Price/BasePriceStorage.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Price/Cost.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Price/CostStorage.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Price/PricePersistence.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Price/PriceUpdateResult.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Price/SpecialPrice.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Price/SpecialPriceStorage.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Price/TierPrice.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Price/TierPriceFactory.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Price/TierPricePersistence.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Price/TierPriceStorage.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Price/Validation/InvalidSkuProcessor.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Price/Validation/Result.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Price/Validation/TierPriceValidator.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/PriceModifier.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/PriceModifier/Composite.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/PriceModifierInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Pricing/Renderer/SalableResolver.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Pricing/Renderer/SalableResolverInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/ProductFrontendAction/Synchronizer.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/ReservedAttributeList.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/ScopedTierPriceManagement.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/TierPrice.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/TierPriceManagement.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Type.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Type/AbstractType.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Type/Pool.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Type/Price.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Type/Price/Factory.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Type/Simple.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Type/Virtual.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/TypeTransitionManager.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Url.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Validator.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Visibility.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Website.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Website/ReadHandler.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Product/Website/SaveHandler.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ProductAttributeGroupRepository.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ProductCategoryList.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ProductFrontendAction.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ProductIdLocator.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ProductIdLocatorInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ProductLink/Attribute.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ProductLink/CollectionProvider.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ProductLink/CollectionProvider/Crosssell.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ProductLink/CollectionProvider/Related.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ProductLink/CollectionProvider/Upsell.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ProductLink/CollectionProviderInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ProductLink/Converter/ConverterInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ProductLink/Converter/ConverterPool.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ProductLink/Converter/DefaultConverter.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ProductLink/Link.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ProductLink/Management.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ProductLink/Repository.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ProductLink/Type.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ProductManagement.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ProductOption.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ProductOptionProcessor.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ProductOptionProcessorInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ProductOptions/Config.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ProductOptions/Config/Converter.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ProductOptions/Config/Reader.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ProductOptions/Config/SchemaLocator.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ProductOptions/ConfigInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ProductOptions/TypeList.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ProductRender.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ProductRender/Button.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ProductRender/FormattedPriceInfo.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ProductRender/FormattedPriceInfoBuilder.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ProductRender/Image.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ProductRender/PriceInfo.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ProductRenderInfoSearchResults.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ProductRenderList.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ProductRepository.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ProductRepository/MediaGalleryProcessor.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ProductType.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ProductTypeList.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ProductTypes/Config.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ProductTypes/Config/Converter.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ProductTypes/Config/Reader.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ProductTypes/Config/SchemaLocator.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ProductTypes/ConfigInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ProductVisibilityCondition.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ProductWebsiteLink.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ProductWebsiteLinkRepository.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/AbstractCollection.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/AbstractResource.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Attribute.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Attribute/ConditionBuilder.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Attribute/WebsiteAttributesSynchronizer.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/AttributePersistor.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Category.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Category/AggregateCount.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Category/Attribute/Collection.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Category/Attribute/Frontend/Image.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Category/Attribute/Source/Layout.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Category/Attribute/Source/Page.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Category/Collection.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Category/Collection/Factory.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Category/Flat.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Category/Flat/Collection.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Category/Tree.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/CategoryProduct.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Collection/AbstractCollection.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Config.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Eav/Attribute.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Helper.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Indexer/ActiveTableSwitcher.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Layer/Filter/Attribute.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Layer/Filter/Decimal.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Layer/Filter/Price.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/MaxHeapTableSizeProcessor.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/Action.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/Attribute/Backend/GroupPrice/AbstractGroupPrice.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/Attribute/Backend/Image.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/Attribute/Backend/Tierprice.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/Attribute/Collection.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/BaseSelectProcessorInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/CategoryLink.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/Collection.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/Collection/ProductLimitation.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/Compare/Item.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/Compare/Item/Collection.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/CompositeBaseSelectProcessor.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/Flat.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/Gallery.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/AbstractIndexer.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Eav/AbstractEav.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Eav/BatchSizeCalculator.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Eav/Decimal.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Eav/DecimalRowSizeEstimator.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Eav/Source.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Eav/SourceRowSizeEstimator.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/LinkedProductSelectBuilderByIndexPrice.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Price/BatchSizeCalculator.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Price/CompositeProductBatchSizeAdjuster.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Price/CompositeProductBatchSizeAdjusterInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Price/CompositeProductRelationsCalculator.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Price/CompositeProductRowSizeEstimator.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Price/DefaultPrice.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Price/Factory.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Price/IndexTableRowSizeEstimator.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Price/PriceInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/TemporaryTableStrategy.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/Link.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/Link/Collection.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/Link/DeleteHandler.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/Link/Product/Collection.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/Link/SaveHandler.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/LinkedProductSelectBuilderByBasePrice.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/LinkedProductSelectBuilderBySpecialPrice.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/LinkedProductSelectBuilderByTierPrice.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/LinkedProductSelectBuilderComposite.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/LinkedProductSelectBuilderInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/Option.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/Option/Collection.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/Option/Value.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/Option/Value/Collection.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/Price/SpecialPrice.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/Relation.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/StatusBaseSelectProcessor.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/Website.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/Website/Link.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Product/Website/SelectProcessor.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/ProductFrontendAction.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/ProductFrontendAction/Collection.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Setup/PropertyMapper.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/ResourceModel/Url.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Rss/Category.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Rss/Product/NewProducts.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Rss/Product/NotifyStock.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Rss/Product/Special.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Session.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/System/Config/Backend/Catalog/Url/Rewrite/Suffix.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/System/Config/Source/Inputtype.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Template/Filter.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Template/Filter/Factory.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/View/Asset/Image.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/View/Asset/Image/Context.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/View/Asset/Placeholder.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Webapi/Product/Option/Type/Date.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Webapi/Product/Option/Type/File/Processor.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Widget/RecentlyComparedStorageConfiguration.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Model/Widget/RecentlyViewedStorageConfiguration.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Observer/CatalogCheckIsUsingStaticUrlsAllowedObserver.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Observer/Compare/BindCustomerLoginObserver.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Observer/Compare/BindCustomerLogoutObserver.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Observer/MenuCategoryData.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Observer/SetSpecialPriceStartDate.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Observer/SwitchPriceAttributeScopeOnConfigChange.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Observer/SynchronizeWebsiteAttributesOnStoreChange.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Observer/UnsetSpecialPrice.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Plugin/Block/Topmenu.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Plugin/Model/Attribute/Backend/AttributeValidation.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Plugin/Model/AttributeSetRepository/RemoveProducts.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Plugin/Model/Indexer/Category/Product/Execute.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Plugin/Model/Indexer/Category/Product/MaxHeapTableSizeProcessorOnFullReindex.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Plugin/Model/Product/Action/UpdateAttributesFlushCache.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Plugin/Model/ResourceModel/Attribute/Save.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Plugin/Model/ResourceModel/Config.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Pricing/Price/BasePrice.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Pricing/Price/ConfiguredPrice.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Pricing/Price/ConfiguredPriceInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Pricing/Price/CustomOptionPrice.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Pricing/Price/CustomOptionPriceInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Pricing/Price/FinalPrice.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Pricing/Price/FinalPriceInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Pricing/Price/MinimalPriceCalculatorInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Pricing/Price/MinimalTierPriceCalculator.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Pricing/Price/RegularPrice.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Pricing/Price/SpecialPrice.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Pricing/Price/SpecialPriceInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Pricing/Price/TierPrice.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Pricing/Price/TierPriceInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Pricing/Render.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Pricing/Render/ConfiguredPriceBox.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Pricing/Render/FinalPriceBox.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Pricing/Render/PriceBox.php
 mode change 100644 => 100755 app/code/Magento/Catalog/README.md
 mode change 100644 => 100755 app/code/Magento/Catalog/Setup/CategorySetup.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Setup/InstallData.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Setup/Recurring.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Setup/UpgradeData.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Setup/UpgradeWebsiteAttributes.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Setup/UpgradeWidgetData.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Category/AbstractCategoryTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Attribute/Button/CancelTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Attribute/Button/GenericTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Attribute/Button/SaveTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Attribute/Edit/Tab/AdvancedTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Attribute/GridTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Composite/Fieldset/OptionsTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Action/Attribute/Tab/InventoryTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Button/AddAttributeTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Button/BackTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Button/CreateCategoryTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Button/GenericTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Button/SaveTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Tab/AlertsTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Tab/InventoryTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Helper/Form/CategoryTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Helper/Form/Gallery/ContentTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Helper/Form/GalleryTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Helper/Form/WeightTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Options/AjaxTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Rss/Grid/LinkTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Rss/NotifyStockTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Block/Category/Plugin/PriceBoxTagsTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Block/Category/Rss/LinkTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Block/Category/ViewTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Block/FrontendStorageManagerTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Block/NavigationTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Block/Product/AbstractProductTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Block/Product/Compare/ListCompareTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Block/Product/ContextTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Block/Product/ImageBuilderTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Block/Product/ListProductTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Block/Product/ListTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Block/Product/NewProductTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Block/Product/PriceTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Block/Product/ProductList/RelatedTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Block/Product/ProductList/ToolbarTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Block/Product/ProductList/UpsellTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Block/Product/View/AttributesTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Block/Product/View/GalleryTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Block/Product/View/OptionsTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Block/Product/View/TabsTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Block/Product/ViewTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Block/Product/Widget/NewWidgetTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Block/Rss/CategoryTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Block/Rss/Product/NewProductsTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Block/Rss/Product/SpecialTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Block/Ui/ProductViewCounterTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Block/Widget/LinkTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Console/Command/ImagesResizeCommandTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Category/DeleteTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Category/EditTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Category/Image/UploadTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Category/MoveTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Category/SaveTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Category/Widget/CategoriesJsonTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Category/Widget/ChooserTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Action/Attribute/EditTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Action/Attribute/SaveTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/AddAttributeToTemplateTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Attribute/EditTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Attribute/SaveTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Attribute/ValidateTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/AttributeTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/BuilderTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Initialization/Helper/AttributeFilterTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Initialization/Helper/HandlerFactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Initialization/Helper/Plugin/Handler/CompositeTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Initialization/HelperTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Initialization/StockDataFilterTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/MassStatusTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/NewActionTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/ReloadTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/SaveTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/ShowUpdateResultTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/ValidateTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/ProductTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Controller/Category/ViewTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Controller/Product/Compare/IndexTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Controller/Product/Frontend/Action/SynchronizeTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Cron/FrontendActionsFlushTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Cron/RefreshSpecialPricesTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Cron/SynchronizeWebsiteAttributesTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/CustomerData/ProductFrontendActionSectionTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/CustomerData/ProductsRenderInfoSectionTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Helper/ImageTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Helper/Product/CompareTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Helper/Product/ConfigurationPoolTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Helper/Product/ConfigurationTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Helper/Product/Edit/Action/AttributeTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Helper/Product/Flat/IndexerTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Helper/ProductTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/ProductCategoryFilterTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/ProductWebsiteFilterTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Attribute/Backend/CustomlayoutupdateTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/ConverterTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/ReaderTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/SchemaLocatorTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/XsdTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/_files/attributes_config_merged.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/_files/attributes_config_merged.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/_files/attributes_config_one.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/_files/attributes_config_two.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Attribute/ConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Attribute/LockValidatorCompositeTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Category/Attribute/Backend/ImageTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Category/Attribute/Backend/SortbyTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Category/Attribute/Source/LayoutTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Category/Attribute/Source/PageTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Category/Attribute/Source/SortbyTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Category/AttributeRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Category/DataProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Category/FileInfoTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Category/Link/ReadHandlerTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Category/Link/SaveHandlerTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Category/Product/PositionResolverTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Category/TreeTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/CategoryLinkManagementTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/CategoryLinkRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/CategoryListTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/CategoryManagementTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/CategoryRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/CategoryTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/CollectionProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Config/CatalogClone/Media/ImageTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Config/Source/CategoryTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Config/Source/GridPerPageTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Config/Source/ListPerPageTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Config/Source/ListSortTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Config/Source/Product/Options/TypeTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/CustomOptions/CustomOptionProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/CustomOptions/CustomOptionTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Entity/AttributeTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/FactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/FrontendStorageConfigurationPoolTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ImageExtractorTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ImageUploaderTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Flat/Plugin/IndexerConfigDataTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Flat/Plugin/StoreGroupTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Flat/Plugin/StoreViewTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Flat/StateTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Flat/System/Config/ModeTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/FlatTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Product/Plugin/ImportTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Product/Plugin/MviewStateTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Product/Plugin/StoreGroupTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Product/Plugin/StoreViewTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Product/RowSizeEstimatorTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/ProductTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Category/Plugin/ImportTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/CategoryTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/AbstractActionTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Action/FullTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Action/RowTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Action/RowsTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Plugin/AttributeSet/IndexableAttributeFilterTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Plugin/AttributeSetTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Plugin/ImportTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Plugin/StoreViewTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/EavTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Action/EraserTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Action/RowTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Action/Rows/TableDataTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Action/RowsTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/FlatTableBuilderTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Plugin/IndexerConfigDataTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Plugin/StoreGroupTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Plugin/StoreTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/ProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/StateTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/System/Config/ModeTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Table/BuilderTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/TableDataTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/FlatTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/FullTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Price/Action/RowTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Price/Action/RowsTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Price/Plugin/WebsiteTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Price/System/Config/PriceScopeTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Layer/Category/AvailabilityFlagTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Layer/Category/CollectionFilterTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Layer/Category/FilterableAttributeListTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Layer/Category/StateKeyTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/AttributeTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/CategoryTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/DataProvider/CategoryTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/DataProvider/DecimalTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/DataProvider/PriceTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/DecimalTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/FactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/Item/DataBuilderTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/PriceTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Layer/FilterListTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Layer/Search/CollectionFilterTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Layer/Search/FilterableAttributeListTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Layer/Search/StateKeyTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Layer/StateTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/LayerTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Layout/DepersonalizePluginTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Locator/RegistryLocatorTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Plugin/LogTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Plugin/ProductRepository/TransactionWrapperTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Plugin/QuoteItemProductOptionTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/ActionTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/AttributeSetFinderTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/BooleanTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/CategoryTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/GroupPrice/AbstractTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/Media/EntryConverterPoolTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/Media/ImageEntryConverterTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/PriceTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/StockTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/TierpriceTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/WeightTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Frontend/ImageTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/GroupTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/ManagementTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/OptionManagementTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/RepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/SetManagementTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/SetRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Source/BooleanTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Source/CountryofmanufactureTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Source/InputtypeTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Source/LayoutTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Source/StatusTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/TypesListTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/CartConfigurationTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/CatalogPriceTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Compare/ItemTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/ConditionTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/CopierTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/CopyConstructor/CompositeTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/CopyConstructor/CrossSellTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/CopyConstructor/RelatedTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/CopyConstructor/UpSellTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/CopyConstructorFactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Gallery/GalleryManagementTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Gallery/MimeTypeExtensionMapTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Gallery/ProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Image/CacheTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/ImageTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Initialization/Helper/ProductLinksTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Link/ConverterTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Link/ResolverTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/LinkTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/LinkTypeProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Media/AttributeManagementTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Option/RepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Option/SaveHandlerTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Type/FactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Type/FileTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Option/UrlBuilderTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Validator/DefaultValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Validator/FileTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Validator/PoolTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Validator/SelectTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Validator/TextTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Option/ValueTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/OptionTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Price/BasePriceStorageTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Price/CostStorageTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Price/PricePersistenceTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Price/SpecialPriceStorageTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Price/TierPriceStorageTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Price/Validation/InvalidSkuProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Price/Validation/TierPriceValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/PriceModifier/CompositeTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/PriceModifierTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Pricing/Renderer/SalableResolverTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/ProductFrontendAction/SynchronizerTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/ProductList/ToolbarTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/ReservedAttributeListTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/TierPriceManagementTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Type/AbstractTypeTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Type/PriceTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Type/SimpleTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Type/VirtualTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/TypeTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/TypeTransitionManagerTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/UrlTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/ValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/VisibilityTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Website/ReadHandlerTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Product/Website/SaveHandlerTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ProductAttributeGroupRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ProductIdLocatorTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ProductLink/ManagementTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ProductLink/RepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ProductManagementTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ProductOptionProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ProductOptions/Config/XsdTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ProductOptions/Config/_files/invalidProductOptionsMergedXmlArray.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ProductOptions/Config/_files/invalidProductOptionsXmlArray.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ProductOptions/Config/_files/product_options_merged_valid.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ProductOptions/Config/_files/product_options_valid.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ProductRender/FormattedPriceInfoBuilderTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ProductRender/PriceInfoTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ProductRenderListTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ProductRepository/MediaGalleryProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ProductRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ProductTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ProductTypeListTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/ConverterTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/SchemaLocatorTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/XsdMergedTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/XsdTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/_files/invalidProductTypesMergedXmlArray.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/_files/invalidProductTypesXmlArray.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/_files/product_types.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/_files/product_types.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/_files/valid_product_types.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/_files/valid_product_types_merged.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/ConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/AbstractTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Attribute/ConditionBuilderTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Category/Collection/FactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Category/FlatTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Category/TreeTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/CategoryTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/ConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Eav/AttributeTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Indexer/ActiveTableSwitcherTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Layer/Filter/PriceTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/CategoryLinkTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Collection/ProductLimitationTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/CollectionTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/CompositeBaseSelectProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/FlatTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/GalleryTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Indexer/Eav/BatchSizeCalculatorTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Indexer/Eav/DecimalRowSizeEstimatorTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Indexer/LinkedProductSelectBuilderByIndexPriceTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Indexer/Price/BatchSizeCalculatorTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Indexer/Price/CompositeProductBatchSizeAdjusterTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Indexer/Price/CompositeProductRelationsCalculatorTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Indexer/Price/CompositeProductRowSizeEstimatorTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Indexer/Price/DefaultPriceTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Indexer/Price/IndexTableRowSizeEstimatorTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Indexer/TemporaryTableStrategyTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Link/Product/CollectionTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/LinkTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Option/CollectionTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/StatusBaseSelectProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Website/LinkTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/ProductTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Rss/CategoryTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Rss/Product/NewProductsTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Rss/Product/NotifyStockTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Rss/Product/SpecialTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/System/Config/Backend/Catalog/Url/Rewrite/SuffixTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/System/Config/Source/InputtypeTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/Template/Filter/FactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/View/Asset/Image/ContextTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/View/Asset/ImageTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/View/Asset/PlaceholderTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/_files/converted_view.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Model/_files/valid_view.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Observer/MenuCategoryDataTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Observer/SynchronizeWebsiteAttributesOnStoreChangeTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Plugin/Block/TopmenuTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Plugin/Model/AttributeSetRepository/RemoveProductsTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Plugin/Model/Indexer/Category/Product/ExecuteTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Plugin/Model/Product/Action/UpdateAttributesFlushCacheTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Plugin/Model/ResourceModel/Attribute/SaveTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Plugin/Model/ResourceModel/ConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Pricing/Price/BasePriceTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Pricing/Price/ConfiguredPriceTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Pricing/Price/CustomOptionPriceTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Pricing/Price/FinalPriceTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Pricing/Price/MinimalTierPriceCalculatorTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Pricing/Price/RegularPriceTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Pricing/Price/SpecialPriceTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Pricing/Price/TierPriceTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Pricing/Render/FinalPriceBoxTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Pricing/Render/PriceBoxTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Pricing/RenderTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Setup/CategorySetupTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Ui/AllowedProductTypesTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Ui/Component/Listing/Columns/AbstractColumnTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Ui/Component/Listing/Columns/AttributeSetTextTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Ui/Component/Listing/Columns/StatusTextTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Ui/Component/Product/Form/Categories/OptionsTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/CatalogEavValidationRulesTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/AbstractModifierTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/AdvancedPricingTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/AttributeSetTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/AttributesTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/CategoriesTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/CustomOptionsTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/FactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/GeneralTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ImagesTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/RelatedTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ScheduleDesignUpdateTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/SystemTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/TierPriceTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/WebsitesTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/NewCategoryDataProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/ProductDataProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Listing/Collector/AdditionalInfoTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Listing/Collector/ImageTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Listing/Collector/PriceTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Listing/Collector/UrlTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/ProductCustomOptionsDataProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Related/AbstractDataProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Related/CrossSellDataProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Related/RelatedDataProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Related/UpSellDataProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/_files/catalog/product/somefile.png
 mode change 100644 => 100755 app/code/Magento/Catalog/Test/Unit/_files/catalog/product/watermark/somefile.png
 mode change 100644 => 100755 app/code/Magento/Catalog/Ui/AllowedProductTypes.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Ui/Component/Category/Form/Element/Wysiwyg.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Ui/Component/ColumnFactory.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Ui/Component/FilterFactory.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Ui/Component/Listing/Attribute/AbstractRepository.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Ui/Component/Listing/Attribute/Repository.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Ui/Component/Listing/Attribute/RepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Ui/Component/Listing/Columns.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Ui/Component/Listing/Columns/AttributeSetText.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Ui/Component/Listing/Columns/Price.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Ui/Component/Listing/Columns/ProductActions.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Ui/Component/Listing/Columns/StatusText.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Ui/Component/Listing/Columns/Thumbnail.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Ui/Component/Listing/Columns/Websites.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Ui/Component/Listing/Filters.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Ui/Component/Product/Form/Categories/Options.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Ui/DataProvider/CatalogEavValidationRules.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Ui/DataProvider/Product/AddStoreFieldToCollection.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Ui/DataProvider/Product/AddWebsitesFieldToCollection.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Ui/DataProvider/Product/Attributes/Listing.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/AbstractModifier.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/AdvancedPricing.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/Alerts.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/AttributeSet.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/Attributes.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/Categories.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/Images.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/Related.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/ScheduleDesignUpdate.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/System.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/TierPrice.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/Websites.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Ui/DataProvider/Product/Form/NewCategoryDataProvider.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Ui/DataProvider/Product/Form/ProductDataProvider.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Ui/DataProvider/Product/Listing/Collector/AdditionalInfo.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Ui/DataProvider/Product/Listing/Collector/Image.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Ui/DataProvider/Product/Listing/Collector/Price.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Ui/DataProvider/Product/Listing/Collector/Url.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Ui/DataProvider/Product/Listing/DataProvider.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Ui/DataProvider/Product/ProductCustomOptionsDataProvider.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Ui/DataProvider/Product/ProductDataProvider.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Ui/DataProvider/Product/ProductRenderCollectorComposite.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Ui/DataProvider/Product/ProductRenderCollectorInterface.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Ui/DataProvider/Product/Related/AbstractDataProvider.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Ui/DataProvider/Product/Related/CrossSellDataProvider.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Ui/DataProvider/Product/Related/RelatedDataProvider.php
 mode change 100644 => 100755 app/code/Magento/Catalog/Ui/DataProvider/Product/Related/UpSellDataProvider.php
 mode change 100644 => 100755 app/code/Magento/Catalog/composer.json
 mode change 100644 => 100755 app/code/Magento/Catalog/etc/acl.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/etc/adminhtml/events.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/etc/adminhtml/menu.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/etc/catalog_attributes.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/etc/catalog_attributes.xsd
 mode change 100644 => 100755 app/code/Magento/Catalog/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/etc/crontab.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/etc/eav_attributes.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/etc/events.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/etc/extension_attributes.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/etc/frontend/di.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/etc/frontend/events.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/etc/frontend/page_types.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/etc/frontend/routes.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/etc/frontend/sections.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/etc/indexer.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/etc/mview.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/etc/product_options.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/etc/product_options.xsd
 mode change 100644 => 100755 app/code/Magento/Catalog/etc/product_options_merged.xsd
 mode change 100644 => 100755 app/code/Magento/Catalog/etc/product_types.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/etc/product_types.xsd
 mode change 100644 => 100755 app/code/Magento/Catalog/etc/product_types_base.xsd
 mode change 100644 => 100755 app/code/Magento/Catalog/etc/product_types_merged.xsd
 mode change 100644 => 100755 app/code/Magento/Catalog/etc/view.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/etc/webapi.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/etc/webapi_rest/di.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/etc/webapi_soap/di.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/etc/widget.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Catalog/registration.php
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/layout/CATALOG_PRODUCT_COMPOSITE_CONFIGURE.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/layout/CATALOG_PRODUCT_COMPOSITE_CONFIGURE_ERROR.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/layout/CATALOG_PRODUCT_COMPOSITE_UPDATE_RESULT.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/layout/catalog_category_add.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/layout/catalog_category_create.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/layout/catalog_category_edit.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_action_attribute_edit.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_alertspricegrid.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_alertsstockgrid.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_attribute_edit.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_attribute_edit_form.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_change_attribute_set.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_crosssell.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_crosssellgrid.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_customoptions.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_edit.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_form.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_grid.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_index.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_new.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_options.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_optionsimportgrid.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_related.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_relatedgrid.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_reload.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_set_block.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_set_edit.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_set_index.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_upsell.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_upsellgrid.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/requirejs-config.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/catalog/category/checkboxes/tree.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/catalog/category/edit.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/catalog/category/edit/assign_products.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/catalog/category/tree.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/catalog/category/widget/tree.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/catalog/form/renderer/fieldset/element.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/catalog/product.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/form.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/js.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/labels.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/options.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/set/main.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/set/main/tree/attribute.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/set/main/tree/group.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/set/toolbar/add.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/set/toolbar/main.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/configure.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/options.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/options/js.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/options/type/date.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/options/type/default.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/options/type/file.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/options/type/select.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/options/type/text.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/qty.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/action/attribute.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/action/inventory.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/action/websites.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/attribute_set.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/category/new/form.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/options.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/options/option.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/options/type/date.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/options/type/file.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/options/type/select.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/options/type/text.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/price/tier.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/serializer.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/websites.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/helper/gallery.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/js.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/tab/alert.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/tab/inventory.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/widget/chooser/container.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/catalog/wysiwyg/js.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/product/edit/attribute/search.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/product/edit/tabs.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/product/edit/tabs/child_tab.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/product/grid/massaction_extended.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/templates/rss/grid/link.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/ui_component/category_form.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/ui_component/crosssell_product_listing.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/ui_component/design_config_form.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/ui_component/new_category_form.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/ui_component/product_attribute_add_form.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/ui_component/product_attributes_grid.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/ui_component/product_custom_options_listing.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/ui_component/product_form.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/ui_component/product_listing.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/ui_component/related_product_listing.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/ui_component/upsell_product_listing.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/catalog/apply-to-type-switcher.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/catalog/base-image-uploader.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/catalog/category/assign-products.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/catalog/category/edit.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/catalog/category/form.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/catalog/images/select2.png
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/catalog/images/select2x2.png
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/catalog/images/spinner.gif
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/catalog/product-attributes.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/catalog/product.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/catalog/product/attribute/unique-validate.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/catalog/product/composite/configure.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/catalog/type-events.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/component/file-type-field.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/component/image-size-field.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/component/select-type-grid.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/component/static-type-container.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/component/static-type-input.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/component/static-type-select.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/component/text-type-field.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/images/ajax-loader-big.gif
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/images/category_widget_link.png
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/images/product_widget_compared.gif
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/images/product_widget_link.png
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/images/product_widget_new.png
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/images/product_widget_viewed.gif
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/js/bundle-proxy-button.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/js/category-tree.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/js/components/attribute-set-select.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/js/components/attributes-fieldset.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/js/components/attributes-grid-paging.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/js/components/attributes-insert-listing.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/js/components/checkbox.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/js/components/custom-options-component.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/js/components/custom-options-price-type.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/js/components/disable-hide-select.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/js/components/disable-on-option/input.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/js/components/disable-on-option/select.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/js/components/disable-on-option/strategy.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/js/components/disable-on-option/yesno.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/js/components/dynamic-rows-import-custom-options.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/js/components/dynamic-rows-tier-price.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/js/components/import-handler.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/js/components/input-handle-required.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/js/components/messages.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/js/components/multiselect-handle-required.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/js/components/new-attribute-form.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/js/components/new-attribute-insert-form.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/js/components/new-category.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/js/components/product-status.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/js/components/select-handle-required.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/js/components/select-to-checkbox.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/js/components/url-key-handle-changes.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/js/components/visible-on-option/date.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/js/components/visible-on-option/fieldset.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/js/components/visible-on-option/input.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/js/components/visible-on-option/select.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/js/components/visible-on-option/strategy.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/js/components/visible-on-option/textarea.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/js/components/visible-on-option/yesno.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/js/custom-options-type.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/js/custom-options.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/js/edit-tree.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/js/form/element/action-delete.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/js/form/element/checkbox.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/js/form/element/input.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/js/new-category-dialog.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/js/options.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/js/product-gallery.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/js/product/weight-handler.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/js/tier-price/percentage-processor.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/js/tier-price/value-type-select.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/js/utils/percentage-price-calculator.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-bg_diagonals-thick_18_b81900_40x40.png
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-bg_diagonals-thick_20_666666_40x40.png
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-bg_flat_10_000000_40x100.png
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-bg_glass_100_f6f6f6_1x400.png
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-bg_glass_100_fdf5ce_1x400.png
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-bg_glass_65_ffffff_1x400.png
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-bg_gloss-wave_35_f67028_500x100.png
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-bg_highlight-soft_100_eeeeee_1x100.png
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-bg_highlight-soft_75_ffe45c_1x100.png
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-icons_222222_256x240.png
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-icons_228ef1_256x240.png
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-icons_ef8c08_256x240.png
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-icons_ffd27a_256x240.png
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-icons_ffffff_256x240.png
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/template/attributes/grid/paging.html
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/template/checkbox.html
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/template/form/element/action-delete.html
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/template/form/element/checkbox.html
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/template/form/element/helper/custom-option-service.html
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/template/form/element/helper/custom-option-type-service.html
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/template/form/element/input.html
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/template/form/field.html
 mode change 100644 => 100755 app/code/Magento/Catalog/view/adminhtml/web/template/image-preview.html
 mode change 100644 => 100755 app/code/Magento/Catalog/view/base/layout/catalog_product_prices.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/base/layout/default.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/base/layout/empty.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/base/templates/js/components.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/base/templates/product/price/amount/default.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/base/templates/product/price/configured_price.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/base/templates/product/price/default.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/base/templates/product/price/final_price.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/base/templates/product/price/tier_prices.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/base/web/images/product/placeholder/image.jpg
 mode change 100644 => 100755 app/code/Magento/Catalog/view/base/web/images/product/placeholder/small_image.jpg
 mode change 100644 => 100755 app/code/Magento/Catalog/view/base/web/images/product/placeholder/swatch_image.jpg
 mode change 100644 => 100755 app/code/Magento/Catalog/view/base/web/images/product/placeholder/thumbnail.jpg
 mode change 100644 => 100755 app/code/Magento/Catalog/view/base/web/js/price-box.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/base/web/js/price-option-date.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/base/web/js/price-option-file.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/base/web/js/price-options.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/base/web/js/price-utils.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/base/web/js/product/addtocart-button.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/base/web/js/product/addtocompare-button.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/base/web/js/product/learn-more.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/base/web/js/product/list/column-status-validator.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/base/web/js/product/list/columns/final-price.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/base/web/js/product/list/columns/image.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/base/web/js/product/list/columns/price-box.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/base/web/js/product/list/columns/pricetype-box.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/base/web/js/product/list/listing.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/base/web/js/product/name.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/base/web/template/product/final_price.html
 mode change 100644 => 100755 app/code/Magento/Catalog/view/base/web/template/product/link.html
 mode change 100644 => 100755 app/code/Magento/Catalog/view/base/web/template/product/list/columns/image.html
 mode change 100644 => 100755 app/code/Magento/Catalog/view/base/web/template/product/list/columns/image_with_borders.html
 mode change 100644 => 100755 app/code/Magento/Catalog/view/base/web/template/product/list/listing.html
 mode change 100644 => 100755 app/code/Magento/Catalog/view/base/web/template/product/name.html
 mode change 100644 => 100755 app/code/Magento/Catalog/view/base/web/template/product/price/max_price.html
 mode change 100644 => 100755 app/code/Magento/Catalog/view/base/web/template/product/price/max_regular_price.html
 mode change 100644 => 100755 app/code/Magento/Catalog/view/base/web/template/product/price/minimal_price.html
 mode change 100644 => 100755 app/code/Magento/Catalog/view/base/web/template/product/price/minimal_regular_price.html
 mode change 100644 => 100755 app/code/Magento/Catalog/view/base/web/template/product/price/price_box.html
 mode change 100644 => 100755 app/code/Magento/Catalog/view/base/web/template/product/price/pricetype_box.html
 mode change 100644 => 100755 app/code/Magento/Catalog/view/base/web/template/product/price/regular_price.html
 mode change 100644 => 100755 app/code/Magento/Catalog/view/base/web/template/product/price/special_price.html
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/layout/catalog_category_view.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/layout/catalog_category_view_type_default.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/layout/catalog_category_view_type_default_without_children.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/layout/catalog_product_compare_index.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/layout/catalog_product_opengraph.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/layout/catalog_product_view.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/layout/catalog_product_view_type_simple.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/layout/catalog_product_view_type_virtual.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/layout/checkout_cart_item_renderers.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/layout/default.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/requirejs-config.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/category/cms.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/category/description.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/category/image.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/category/products.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/category/rss.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/category/widget/link/link_block.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/category/widget/link/link_inline.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/frontend_storage_manager.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/navigation/left.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/compare/link.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/compare/list.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/compare/sidebar.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/gallery.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/image.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/image_with_borders.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/list.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/list/addto/compare.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/list/items.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/list/toolbar.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/list/toolbar/amount.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/list/toolbar/limiter.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/list/toolbar/sorter.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/list/toolbar/viewmode.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/listing.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/view/additional.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/view/addto.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/view/addto/compare.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/view/addtocart.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/view/attribute.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/view/attributes.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/view/counter.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/view/description.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/view/details.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/view/form.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/view/gallery.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/view/mailto.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/view/opengraph/currency.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/view/opengraph/general.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/view/options.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/view/options/type/date.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/view/options/type/default.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/view/options/type/file.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/view/options/type/select.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/view/options/type/text.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/view/options/wrapper.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/view/options/wrapper/bottom.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/view/price_clone.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/view/review.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/view/type/default.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/widget/compared/grid.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/widget/compared/list.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/widget/compared/sidebar.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/widget/link/link_block.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/widget/link/link_inline.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/widget/new/column/new_default_list.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/widget/new/column/new_images_list.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/widget/new/column/new_names_list.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/widget/new/content/new_grid.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/widget/new/content/new_list.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/widget/viewed/grid.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/widget/viewed/list.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/templates/product/widget/viewed/sidebar.phtml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/ui_component/widget_recently_compared.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/ui_component/widget_recently_viewed.xml
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/web/images/product_widget_compared.gif
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/web/images/product_widget_viewed.gif
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/web/js/catalog-add-to-cart.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/web/js/gallery.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/web/js/list.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/web/js/product/list/toolbar.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/web/js/product/provider-compared.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/web/js/product/provider.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/web/js/product/query-builder.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/web/js/product/storage/data-storage.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/web/js/product/storage/ids-storage-compare.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/web/js/product/storage/ids-storage.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/web/js/product/storage/storage-service.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/web/js/product/uenc-processor.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/web/js/product/view/provider.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/web/js/related-products.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/web/js/storage-manager.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/web/js/upsell-products.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/web/js/validate-product.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/web/js/view/compare-products.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/web/js/view/image.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/web/js/zoom.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/web/product/view/validation.js
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/web/template/product/addtocart-button.html
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/web/template/product/addtocompare-button.html
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/web/template/product/image.html
 mode change 100644 => 100755 app/code/Magento/Catalog/view/frontend/web/template/product/image_with_borders.html
 mode change 100644 => 100755 app/code/Magento/CatalogAnalytics/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/CatalogAnalytics/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/CatalogAnalytics/README.md
 mode change 100644 => 100755 app/code/Magento/CatalogAnalytics/composer.json
 mode change 100644 => 100755 app/code/Magento/CatalogAnalytics/etc/analytics.xml
 mode change 100644 => 100755 app/code/Magento/CatalogAnalytics/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/CatalogAnalytics/etc/reports.xml
 mode change 100644 => 100755 app/code/Magento/CatalogAnalytics/registration.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Model/Export/Product.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Model/Export/Product/Type/AbstractType.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Model/Export/Product/Type/Factory.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Model/Export/Product/Type/Simple.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Model/Export/RowCustomizer/Composite.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Model/Export/RowCustomizerInterface.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Model/Import/Product.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Model/Import/Product/CategoryProcessor.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Model/Import/Product/MediaGalleryProcessor.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Model/Import/Product/Option.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Model/Import/Product/RowValidatorInterface.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Model/Import/Product/SkuProcessor.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Model/Import/Product/StoreResolver.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Model/Import/Product/TaxClassProcessor.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Model/Import/Product/Type/AbstractType.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Model/Import/Product/Type/Factory.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Model/Import/Product/Type/Simple.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Model/Import/Product/Type/Virtual.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Model/Import/Product/Validator.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/AbstractImportValidator.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/AbstractPrice.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/Media.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/Quantity.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/SuperProductsSku.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/TierPrice.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/Website.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/Weight.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Model/Import/Proxy/Product.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Model/Import/Proxy/Product/ResourceModel.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Model/Import/Uploader.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Model/Indexer/Category/Product/Plugin/Import.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Model/Indexer/Product/Category/Plugin/Import.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Model/Indexer/Product/Eav/Plugin/Import.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Model/Indexer/Product/Flat/Plugin/Import.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Model/Indexer/Product/Price/Plugin/Import.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Model/Indexer/Stock/Plugin/Import.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Test/Unit/Model/Export/ProductTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Test/Unit/Model/Export/StubProduct.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/CategoryProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/SkuProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/TaxClassProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/AbstractTypeTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/OptionTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/VirtualTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/product_with_custom_options.csv
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_ambiguity_different_type.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_ambiguity_several_db_rows.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_empty_title.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_incorrect_type.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_invalid_max_characters.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_invalid_price.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_invalid_sort_order.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_invalid_store.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_max_characters_less_zero.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_no_title.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_sort_order_less_zero.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_valid.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_no_custom_option.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_secondary_incorrect_price.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_secondary_incorrect_row_sort.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_secondary_invalid_store.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_secondary_row_sort_less_zero.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_secondary_valid.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Validator/MediaTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Validator/QuantityTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Validator/SuperProductsSkuTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Validator/TierPriceTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/ValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/ProductTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/UploaderTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Test/Unit/Model/Indexer/Product/Flat/Plugin/ImportTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Test/Unit/Model/Indexer/Product/Price/Plugin/ImportTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/Test/Unit/Model/Indexer/Stock/Plugin/ImportTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/composer.json
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/etc/export.xml
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/etc/import.xml
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/CatalogImportExport/registration.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Api/Data/StockCollectionInterface.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Api/Data/StockInterface.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Api/Data/StockItemCollectionInterface.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Api/Data/StockItemInterface.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Api/Data/StockStatusCollectionInterface.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Api/Data/StockStatusInterface.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Api/StockConfigurationInterface.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Api/StockCriteriaInterface.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Api/StockIndexInterface.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Api/StockItemCriteriaInterface.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Api/StockItemRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Api/StockManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Api/StockRegistryInterface.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Api/StockRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Api/StockStateInterface.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Api/StockStatusCriteriaInterface.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Api/StockStatusRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Block/Adminhtml/Form/Field/Customergroup.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Block/Adminhtml/Form/Field/Minsaleqty.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Block/Adminhtml/Form/Field/Stock.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Block/Plugin/ProductView.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Block/Qtyincrements.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Block/Stockqty/AbstractStockqty.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Block/Stockqty/Composite.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Block/Stockqty/DefaultStockqty.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Block/Stockqty/Type/Grouped.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Helper/Data.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Helper/Minsaleqty.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Helper/Stock.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/AddStockStatusToCollection.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/Adminhtml/Stock/Item.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/Config/Backend/AbstractValue.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/Config/Backend/Backorders.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/Config/Backend/Managestock.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/Config/Backend/ShowOutOfStock.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/Configuration.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/Indexer/Stock.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/Indexer/Stock/AbstractAction.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/Indexer/Stock/Action/Full.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/Indexer/Stock/Action/Row.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/Indexer/Stock/Action/Rows.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/Indexer/Stock/CacheCleaner.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/Indexer/Stock/Plugin/StoreGroup.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/Indexer/Stock/Processor.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/Plugin/AfterProductLoad.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/Plugin/FilterCustomAttribute.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/Plugin/Layer.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/Plugin/ProductLinks.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/Plugin/ReindexUpdatedProducts.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/Product/CopyConstructor/CatalogInventory.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/ProductCollectionStockCondition.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/Quote/Item/QuantityValidator.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/Quote/Item/QuantityValidator/Initializer/Option.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/Quote/Item/QuantityValidator/Initializer/QtyProcessor.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/Quote/Item/QuantityValidator/Initializer/StockItem.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/Quote/Item/QuantityValidator/QuoteItemQtyList.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/ResourceModel/Indexer/Stock/DefaultStock.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/ResourceModel/Indexer/Stock/QueryProcessorComposite.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/ResourceModel/Indexer/Stock/QueryProcessorInterface.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/ResourceModel/Indexer/Stock/StockInterface.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/ResourceModel/Indexer/StockFactory.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/ResourceModel/Product/StockStatusBaseSelectProcessor.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/ResourceModel/QtyCounterInterface.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/ResourceModel/Stock.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Collection.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Item.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Item/Collection.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Item/StockItemCriteria.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Item/StockItemCriteriaMapper.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Status.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Status/Collection.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Status/StockStatusCriteria.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Status/StockStatusCriteriaMapper.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/StockCriteria.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/StockCriteriaMapper.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/Source/Backorders.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/Source/Stock.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/Source/StockConfiguration.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/Spi/StockRegistryProviderInterface.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/Spi/StockStateProviderInterface.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/Stock.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/Stock/Item.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/Stock/Status.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/Stock/StockItemRepository.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/Stock/StockRepository.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/Stock/StockStatusRepository.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/StockIndex.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/StockItemValidator.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/StockManagement.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/StockRegistry.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/StockRegistryProvider.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/StockRegistryStorage.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/StockState.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/StockStateProvider.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/System/Config/Backend/Minqty.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/System/Config/Backend/Minsaleqty.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Model/System/Config/Backend/Qtyincrements.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Observer/AddInventoryDataObserver.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Observer/AddStockItemsObserver.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Observer/CancelOrderItemObserver.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Observer/CheckoutAllSubmitAfterObserver.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Observer/DisplayProductStatusInfoObserver.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Observer/ItemsForReindex.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Observer/ProcessInventoryDataObserver.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Observer/ProductQty.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Observer/QuantityValidatorObserver.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Observer/ReindexQuoteInventoryObserver.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Observer/RevertQuoteInventoryObserver.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Observer/SaveInventoryDataObserver.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Observer/SubtractQuoteInventoryObserver.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Observer/UpdateItemsStockUponConfigChangeObserver.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/README.md
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Setup/InstallData.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Setup/Recurring.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Setup/UpgradeData.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Setup/UpgradeSchema.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Test/Unit/Api/StockConfigurationTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Test/Unit/Api/StockRegistryTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Test/Unit/Api/StockStateTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Test/Unit/Block/Adminhtml/Form/Field/StockTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Test/Unit/Block/Plugin/ProductViewTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Test/Unit/Block/QtyincrementsTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Test/Unit/Block/Stockqty/DefaultStockqtyTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Test/Unit/Helper/MinsaleqtyTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Test/Unit/Helper/StockTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Test/Unit/Model/AddStockStatusToCollectionTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Test/Unit/Model/Adminhtml/Stock/ItemTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Test/Unit/Model/Config/Backend/ManagestockTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Test/Unit/Model/ConfigurationTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Test/Unit/Model/Indexer/Stock/Action/FullTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Test/Unit/Model/Indexer/Stock/Action/RowTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Test/Unit/Model/Indexer/Stock/Action/RowsTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Test/Unit/Model/Indexer/Stock/CacheCleanerTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Test/Unit/Model/Indexer/Stock/Plugin/StoreGroupTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Test/Unit/Model/Plugin/AfterProductLoadTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Test/Unit/Model/Plugin/LayerTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Test/Unit/Model/Plugin/ProductLinksTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Test/Unit/Model/Product/CopyConstructor/CatalogInventoryTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Test/Unit/Model/Quote/Item/QuantityValidator/Initializer/OptionTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Test/Unit/Model/Quote/Item/QuantityValidator/Initializer/QtyProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Test/Unit/Model/Quote/Item/QuantityValidator/Initializer/QuantityValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Test/Unit/Model/Quote/Item/QuantityValidator/Initializer/StockItemTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Test/Unit/Model/ResourceModel/Product/StockStatusBaseSelectProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Test/Unit/Model/Spi/StockRegistryProviderTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Test/Unit/Model/Spi/StockStateProviderTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Test/Unit/Model/Stock/ItemTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Test/Unit/Model/Stock/StockItemRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Test/Unit/Model/Stock/StockRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Test/Unit/Model/Stock/StockStatusRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Test/Unit/Model/StockRegistryTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Test/Unit/Model/StockTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Test/Unit/Observer/AddInventoryDataObserverTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Test/Unit/Observer/AddStockItemsObserverTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Test/Unit/Observer/CheckoutAllSubmitAfterObserverTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Test/Unit/Observer/UpdateItemsStockUponConfigChangeObserverTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Test/Unit/Ui/Component/Product/Form/Element/UseConfigSettingsTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Test/Unit/Ui/DataProvider/Product/Form/Modifier/AdvancedInventoryTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Ui/Component/Product/Form/Element/UseConfigSettings.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Ui/DataProvider/Product/AddQuantityFieldToCollection.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Ui/DataProvider/Product/AddQuantityFilterToCollection.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/Ui/DataProvider/Product/Form/Modifier/AdvancedInventory.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/composer.json
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/etc/acl.xml
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/etc/events.xml
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/etc/extension_attributes.xml
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/etc/frontend/di.xml
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/etc/indexer.xml
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/etc/mview.xml
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/etc/product_types.xml
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/etc/webapi.xml
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/registration.php
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/view/adminhtml/ui_component/product_form.xml
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/view/adminhtml/ui_component/product_listing.xml
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/view/adminhtml/web/js/components/qty-validator-changer.js
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/view/adminhtml/web/js/components/use-config-min-sale-qty.js
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/view/adminhtml/web/js/components/use-config-settings.js
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/view/frontend/layout/catalog_product_view.xml
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/view/frontend/layout/catalog_product_view_type_simple.xml
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/view/frontend/layout/catalog_product_view_type_virtual.xml
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/view/frontend/templates/qtyincrements.phtml
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/view/frontend/templates/stockqty/composite.phtml
 mode change 100644 => 100755 app/code/Magento/CatalogInventory/view/frontend/templates/stockqty/default.phtml
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Api/CatalogRuleRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Api/Data/ConditionInterface.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Api/Data/RuleInterface.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Block/Adminhtml/Edit/DeleteButton.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Block/Adminhtml/Edit/GenericButton.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Block/Adminhtml/Edit/ResetButton.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Block/Adminhtml/Edit/SaveAndApplyButton.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Block/Adminhtml/Edit/SaveAndContinueButton.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Block/Adminhtml/Edit/SaveButton.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Block/Adminhtml/Promo/Catalog.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Block/Adminhtml/Promo/Catalog/Edit/Tab/Conditions.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Block/Adminhtml/Promo/Widget/Chooser/Sku.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/ApplyRules.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/Chooser.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/Delete.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/Edit.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/Index.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/NewAction.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/NewActionHtml.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/NewConditionHtml.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/Save.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Index.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Widget.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Widget/CategoriesJson.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Widget/Chooser.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Controller/RegistryConstants.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Cron/DailyCatalogUpdate.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Helper/Data.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/CatalogRule/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Model/CatalogRuleRepository.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Model/Data/Condition.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Model/Data/Condition/Converter.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Model/Flag.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Model/Indexer/AbstractIndexer.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Model/Indexer/IndexBuilder.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Model/Indexer/IndexBuilder/ProductLoader.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Model/Indexer/Product/ProductRuleIndexer.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Model/Indexer/Product/ProductRuleProcessor.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Model/Indexer/ProductPriceCalculator.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Model/Indexer/ReindexRuleGroupWebsite.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Model/Indexer/ReindexRuleProduct.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Model/Indexer/ReindexRuleProductPrice.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Model/Indexer/Rule/RuleProductIndexer.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Model/Indexer/Rule/RuleProductProcessor.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Model/Indexer/RuleProductPricesPersistor.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Model/Indexer/RuleProductsSelectBuilder.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Model/Product/PriceModifier.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Model/ResourceModel/Grid/Collection.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Model/ResourceModel/Product/CollectionProcessor.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Model/ResourceModel/Product/LinkedProductSelectBuilderByCatalogRulePrice.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Model/ResourceModel/ReadHandler.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Model/ResourceModel/Rule.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Model/ResourceModel/Rule/Collection.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Model/ResourceModel/Rule/Product/Price.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Model/ResourceModel/Rule/Product/Price/Collection.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Model/ResourceModel/SaveHandler.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Model/Rule.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Model/Rule/Action/Collection.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Model/Rule/Action/Product.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Model/Rule/Action/SimpleActionOptionsProvider.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Model/Rule/Condition/Combine.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Model/Rule/Condition/Product.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Model/Rule/CustomerGroupsOptionsProvider.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Model/Rule/DataProvider.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Model/Rule/Job.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Model/Rule/Product/Price.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Model/Rule/WebsitesOptionsProvider.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Observer/AddDirtyRulesNotice.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Observer/PrepareCatalogProductCollectionPricesObserver.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Observer/ProcessAdminFinalPriceObserver.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Observer/ProcessFrontFinalPriceObserver.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Observer/RulePricesStorage.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Plugin/Indexer/Category.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Plugin/Indexer/CustomerGroup.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Plugin/Indexer/ImportExport.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Plugin/Indexer/Product/Attribute.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Plugin/Indexer/Product/Save/ApplyRules.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Plugin/Indexer/Product/Save/ApplyRulesAfterReindex.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Plugin/Indexer/Website.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Plugin/Model/Product/Action.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Pricing/Price/CatalogRulePrice.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/README.md
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Setup/InstallData.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Setup/UpgradeData.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Setup/UpgradeSchema.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Test/Unit/Block/Adminhtml/Edit/DeleteButtonTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Test/Unit/Block/Adminhtml/Edit/GenericButtonTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Test/Unit/Cron/DailyCatalogUpdateTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Test/Unit/Helper/DataTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Test/Unit/Model/CatalogRuleRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Test/Unit/Model/Data/Condition/ConverterTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Test/Unit/Model/Indexer/AbstractIndexerTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Test/Unit/Model/Indexer/IndexBuilder/ProductLoaderTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Test/Unit/Model/Indexer/IndexBuilderTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Test/Unit/Model/Indexer/Product/ProductRuleIndexerTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Test/Unit/Model/Indexer/ProductPriceCalculatorTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Test/Unit/Model/Indexer/ReindexRuleGroupWebsiteTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Test/Unit/Model/Indexer/ReindexRuleProductPriceTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Test/Unit/Model/Indexer/ReindexRuleProductTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Test/Unit/Model/Indexer/Rule/RuleProductIndexerTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Test/Unit/Model/Indexer/RuleProductPricesPersistorTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Test/Unit/Model/Indexer/RuleProductsSelectBuilderTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Test/Unit/Model/Product/PriceModifierTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Test/Unit/Model/ResourceModel/ReadHandlerTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Test/Unit/Model/ResourceModel/SaveHandlerTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Test/Unit/Model/Rule/Condition/ProductTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Test/Unit/Model/Rule/CustomerGroupsOptionsProviderTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Test/Unit/Model/Rule/DataProviderTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Test/Unit/Model/Rule/JobTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Test/Unit/Model/Rule/WebsitesOptionsProviderTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Test/Unit/Model/RuleTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Test/Unit/Observer/AddDirtyRulesNoticeTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Test/Unit/Plugin/Indexer/CategoryTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Test/Unit/Plugin/Indexer/CustomerGroupTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Test/Unit/Plugin/Indexer/ImportExportTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Test/Unit/Plugin/Indexer/Product/Save/ApplyRulesAfterReindexTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Test/Unit/Plugin/Indexer/Product/Save/ApplyRulesTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Test/Unit/Plugin/Indexer/WebsiteTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Test/Unit/Plugin/Model/Product/ActionTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/Test/Unit/Pricing/Price/CatalogRulePriceTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/composer.json
 mode change 100644 => 100755 app/code/Magento/CatalogRule/etc/acl.xml
 mode change 100644 => 100755 app/code/Magento/CatalogRule/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/CatalogRule/etc/adminhtml/events.xml
 mode change 100644 => 100755 app/code/Magento/CatalogRule/etc/adminhtml/menu.xml
 mode change 100644 => 100755 app/code/Magento/CatalogRule/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/CatalogRule/etc/crontab.xml
 mode change 100644 => 100755 app/code/Magento/CatalogRule/etc/crontab/events.xml
 mode change 100644 => 100755 app/code/Magento/CatalogRule/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/CatalogRule/etc/events.xml
 mode change 100644 => 100755 app/code/Magento/CatalogRule/etc/frontend/events.xml
 mode change 100644 => 100755 app/code/Magento/CatalogRule/etc/indexer.xml
 mode change 100644 => 100755 app/code/Magento/CatalogRule/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/CatalogRule/etc/mview.xml
 mode change 100644 => 100755 app/code/Magento/CatalogRule/etc/webapi_rest/di.xml
 mode change 100644 => 100755 app/code/Magento/CatalogRule/etc/webapi_rest/events.xml
 mode change 100644 => 100755 app/code/Magento/CatalogRule/etc/webapi_soap/events.xml
 mode change 100644 => 100755 app/code/Magento/CatalogRule/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/CatalogRule/registration.php
 mode change 100644 => 100755 app/code/Magento/CatalogRule/view/adminhtml/layout/catalog_rule_promo_catalog_block.xml
 mode change 100644 => 100755 app/code/Magento/CatalogRule/view/adminhtml/layout/catalog_rule_promo_catalog_edit.xml
 mode change 100644 => 100755 app/code/Magento/CatalogRule/view/adminhtml/layout/catalog_rule_promo_catalog_index.xml
 mode change 100644 => 100755 app/code/Magento/CatalogRule/view/adminhtml/templates/promo/fieldset.phtml
 mode change 100644 => 100755 app/code/Magento/CatalogRule/view/adminhtml/templates/promo/form.phtml
 mode change 100644 => 100755 app/code/Magento/CatalogRule/view/adminhtml/ui_component/catalog_rule_form.xml
 mode change 100644 => 100755 app/code/Magento/CatalogRuleConfigurable/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/CatalogRuleConfigurable/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/CatalogRuleConfigurable/Plugin/CatalogRule/Model/ConfigurableProductsProvider.php
 mode change 100644 => 100755 app/code/Magento/CatalogRuleConfigurable/Plugin/CatalogRule/Model/Indexer/ProductRuleReindex.php
 mode change 100644 => 100755 app/code/Magento/CatalogRuleConfigurable/Plugin/CatalogRule/Model/Rule/ConfigurableProductHandler.php
 mode change 100644 => 100755 app/code/Magento/CatalogRuleConfigurable/Plugin/CatalogRule/Model/Rule/Validation.php
 mode change 100644 => 100755 app/code/Magento/CatalogRuleConfigurable/Plugin/ConfigurableProduct/Model/ResourceModel/AddCatalogRulePrice.php
 mode change 100644 => 100755 app/code/Magento/CatalogRuleConfigurable/README.md
 mode change 100644 => 100755 app/code/Magento/CatalogRuleConfigurable/Test/Unit/Plugin/CatalogRule/Model/Rule/ConfigurableProductHandlerTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogRuleConfigurable/Test/Unit/Plugin/CatalogRule/Model/Rule/ValidationTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogRuleConfigurable/composer.json
 mode change 100644 => 100755 app/code/Magento/CatalogRuleConfigurable/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/CatalogRuleConfigurable/etc/crontab/di.xml
 mode change 100644 => 100755 app/code/Magento/CatalogRuleConfigurable/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/CatalogRuleConfigurable/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/CatalogRuleConfigurable/registration.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Block/Advanced/Form.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Block/Advanced/Result.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Block/Plugin/FrontTabPlugin.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Block/Result.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Controller/Advanced/Index.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Controller/Advanced/Result.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Controller/Result/Index.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Helper/Data.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Adapter/Aggregation/AggregationResolver.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Adapter/Aggregation/Checker/Query/AdvancedSearch.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Adapter/Aggregation/Checker/Query/CatalogView.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Adapter/Aggregation/RequestCheckerComposite.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Adapter/Aggregation/RequestCheckerInterface.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Adapter/Mysql/Aggregation/DataProvider.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Adapter/Mysql/Aggregation/DataProvider/QueryBuilder.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Adapter/Mysql/BaseSelectStrategy/BaseSelectAttributesSearchStrategy.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Adapter/Mysql/BaseSelectStrategy/BaseSelectFullTextSearchStrategy.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Adapter/Mysql/Dynamic/DataProvider.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Adapter/Mysql/Field/Resolver.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Adapter/Mysql/Filter/AliasResolver.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Adapter/Mysql/Filter/Preprocessor.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Adapter/Mysql/Plugin/Aggregation/Category/DataProvider.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Adapter/Options.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Adminhtml/System/Config/Backend/Engine.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Advanced.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Advanced/Request/Builder.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Attribute/SearchWeight.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Autocomplete/DataProvider.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Fulltext.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Indexer/Fulltext.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Action/DataProvider.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Action/Full.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Action/IndexIterator.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Plugin/AbstractPlugin.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Plugin/Attribute.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Plugin/Category.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Plugin/Product.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Plugin/Product/Action.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Plugin/Store/Group.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Plugin/Store/View.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Processor.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Store.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Indexer/IndexStructure.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Indexer/IndexStructureFactory.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Indexer/IndexStructureProxy.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Indexer/IndexSwitcherInterface.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Indexer/IndexSwitcherProxy.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Indexer/IndexerHandler.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Indexer/IndexerHandlerFactory.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Indexer/Mview/Action.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Indexer/ProductFieldset.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Indexer/Scope/IndexSwitcher.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Indexer/Scope/IndexTableNotExistException.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Indexer/Scope/ScopeProxy.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Indexer/Scope/State.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Indexer/Scope/TemporaryResolver.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Indexer/Scope/UnknownStateException.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Layer/Category/ItemCollectionProvider.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Layer/Filter/Attribute.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Layer/Filter/Category.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Layer/Filter/Decimal.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Layer/Filter/Price.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Layer/Search/Plugin/CollectionFilter.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Layer/Search/StateKey.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Price/Interval.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/ResourceModel/Advanced.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/ResourceModel/Advanced/Collection.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/ResourceModel/Engine.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/ResourceModel/EngineInterface.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/ResourceModel/EngineProvider.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/ResourceModel/Fulltext.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/ResourceModel/Fulltext/Collection.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/ResourceModel/Search/Collection.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Search/BaseSelectStrategy/BaseSelectStrategyInterface.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Search/BaseSelectStrategy/StrategyMapper.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Search/Catalog.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Search/CustomAttributeFilterCheck.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Search/FilterMapper/CustomAttributeFilter.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Search/FilterMapper/DimensionsProcessor.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Search/FilterMapper/ExclusionStrategy.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Search/FilterMapper/FilterContext.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Search/FilterMapper/FilterMapper.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Search/FilterMapper/FilterStrategyInterface.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Search/FilterMapper/StaticAttributeStrategy.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Search/FilterMapper/StockStatusFilter.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Search/FilterMapper/TermDropdownStrategy.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Search/FilterMapper/VisibilityFilter.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Search/FiltersExtractor.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Search/IndexBuilder.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Search/QueryChecker/FullTextSearchCheck.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Search/ReaderPlugin.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Search/RequestGenerator.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Search/RequestGenerator/Decimal.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Search/RequestGenerator/General.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Search/RequestGenerator/GeneratorInterface.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Search/RequestGenerator/GeneratorResolver.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Search/SelectContainer/SelectContainer.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Search/SelectContainer/SelectContainerBuilder.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Search/TableMapper.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Model/Source/Weight.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/README.md
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Setup/InstallData.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Block/Plugin/FrontTabPluginTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Block/ResultTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Controller/Advanced/ResultTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/Adapter/Aggregation/AggregationResolverTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/Adapter/Aggregation/Checker/Query/CatalogViewTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/Adapter/Mysql/Aggregation/DataProvider/QueryBuilderTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/Adapter/Mysql/Aggregation/DataProviderTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/Adapter/Mysql/Dynamic/DataProviderTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/Adapter/Mysql/Field/ResolverTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/Adapter/Mysql/Filter/AliasResolverTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/Adapter/Mysql/Filter/PreprocessorTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/Adapter/OptionsTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/Advanced/Request/BuilderTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/AdvancedTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/Attribute/SearchWeightTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/Autocomplete/DataProviderTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Fulltext/Action/FullTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Fulltext/Plugin/AttributeTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Fulltext/Plugin/CategoryTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Fulltext/Plugin/Product/ActionTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Fulltext/Plugin/ProductTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Fulltext/Plugin/Store/GroupTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Fulltext/Plugin/Store/ViewTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/FulltextTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/IndexerHandlerFactoryTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Scope/IndexSwitcherTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/Layer/Catalog/ItemCollectionProviderTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/Layer/Filter/AttributeTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/Layer/Filter/CategoryTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/Layer/Filter/DecimalTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/Layer/Filter/PriceTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/Layer/Search/Plugin/CollectionFilterTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/ResourceModel/Advanced/CollectionTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/ResourceModel/AdvancedTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/ResourceModel/BaseCollection.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/ResourceModel/EngineTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/ResourceModel/Fulltext/CollectionTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/ResourceModel/FulltextTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/Search/BaseSelectStrategy/StrategyMapperTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/Search/CustomAttributeFilterCheckTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/Search/FilterMapper/ExclusionStrategyTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/Search/FilterMapper/FilterContextTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/Search/FilterMapper/TermDropdownStrategyTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/Search/IndexBuilderTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/Search/Indexer/IndexStructureTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/Search/QueryChecker/FullTextSearchCheckTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/Search/ReaderPluginTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/Search/RequestGenerator/DecimalTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/Search/RequestGenerator/GeneralTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/Search/RequestGenerator/GeneratorResolverTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/Search/RequestGeneratorTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/Search/SelectContainer/SelectContainerBuilderTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/Test/Unit/Model/Search/TableMapperTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/composer.json
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/etc/acl.xml
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/etc/catalog_attributes.xml
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/etc/events.xml
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/etc/frontend/di.xml
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/etc/frontend/page_types.xml
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/etc/frontend/routes.xml
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/etc/indexer.xml
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/etc/mview.xml
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/etc/search_request.xml
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/registration.php
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/view/adminhtml/ui_component/product_attribute_add_form.xml
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/view/frontend/layout/catalogsearch_advanced_index.xml
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/view/frontend/layout/catalogsearch_advanced_result.xml
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/view/frontend/layout/catalogsearch_result_index.xml
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/view/frontend/layout/default.xml
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/view/frontend/requirejs-config.js
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/view/frontend/templates/advanced/form.phtml
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/view/frontend/templates/advanced/link.phtml
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/view/frontend/templates/advanced/result.phtml
 mode change 100644 => 100755 app/code/Magento/CatalogSearch/view/frontend/templates/result.phtml
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Block/UrlKeyRenderer.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Model/Category/CanonicalUrlRewriteGenerator.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Model/Category/ChildrenCategoriesProvider.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Model/Category/ChildrenUrlRewriteGenerator.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Model/Category/CurrentUrlRewritesRegenerator.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Model/Category/Plugin/Category/Move.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Model/Category/Plugin/Category/Remove.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Model/Category/Plugin/Storage.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Model/Category/Plugin/Store/Group.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Model/Category/Plugin/Store/View.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Model/Category/Product.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Model/CategoryBasedProductRewriteGenerator.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Model/CategoryProductUrlPathGenerator.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Model/CategoryUrlPathGenerator.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Model/CategoryUrlRewriteGenerator.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Model/Map/DataCategoryHashMap.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Model/Map/DataCategoryUrlRewriteDatabaseMap.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Model/Map/DataCategoryUsedInProductsHashMap.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Model/Map/DataProductHashMap.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Model/Map/DataProductUrlRewriteDatabaseMap.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Model/Map/DatabaseMapInterface.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Model/Map/DatabaseMapPool.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Model/Map/HashMapInterface.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Model/Map/HashMapPool.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Model/Map/UrlRewriteFinder.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Model/ObjectRegistry.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Model/Product/AnchorUrlRewriteGenerator.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Model/Product/CanonicalUrlRewriteGenerator.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Model/Product/CategoriesUrlRewriteGenerator.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Model/Product/CurrentUrlRewritesRegenerator.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Model/ProductScopeRewriteGenerator.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Model/ProductUrlPathGenerator.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Model/ProductUrlRewriteGenerator.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Model/ResourceModel/Category/Product.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Model/ResourceModel/Category/ProductCollection.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Model/Storage/DbStorage.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Model/UrlRewriteBunchReplacer.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Observer/AfterImportDataObserver.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Observer/CategoryProcessUrlRewriteMovingObserver.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Observer/CategoryProcessUrlRewriteSavingObserver.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Observer/CategorySaveRewritesHistorySetterObserver.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Observer/CategoryUrlPathAutogeneratorObserver.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Observer/ClearProductUrlsObserver.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Observer/ProductProcessUrlRewriteRemovingObserver.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Observer/ProductProcessUrlRewriteSavingObserver.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Observer/ProductToWebsiteChangeObserver.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Observer/ProductUrlKeyAutogeneratorObserver.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Observer/UrlRewriteHandler.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Plugin/Catalog/Block/Adminhtml/Category/Tab/Attributes.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Plugin/Catalog/Block/Adminhtml/Product/Edit/Tab/Attributes.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Plugin/Catalog/Controller/Adminhtml/Product/Initialization/Helper.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Service/V1/StoreViewService.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Setup/InstallData.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Setup/Recurring.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/CanonicalUrlRewriteGeneratorTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/ChildrenCategoriesProviderTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/ChildrenUrlRewriteGeneratorTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/CurrentUrlRewritesRegeneratorTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/Plugin/Category/MoveTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/Plugin/Category/RemoveTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/Plugin/StorageTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/Plugin/Store/GroupTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/Plugin/Store/ViewTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/CategoryBasedProductRewriteGeneratorTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/CategoryProductUrlPathGeneratorTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/CategoryUrlPathGeneratorTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/CategoryUrlRewriteGeneratorTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Map/DataCategoryHashMapTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Map/DataCategoryUrlRewriteDatabaseMapTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Map/DataCategoryUsedInProductsHashMapTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Map/DataProductHashMapTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Map/DataProductUrlRewriteDatabaseMapTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Map/HashMapPoolTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Map/UrlRewriteFinderTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/ObjectRegistryTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Product/CanonicalUrlRewriteGeneratorTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Product/CategoriesUrlRewriteGeneratorTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Product/CurrentUrlRewritesRegeneratorTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/ProductScopeRewriteGeneratorTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/ProductUrlPathGeneratorTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/ProductUrlRewriteGeneratorTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Storage/DbStorageTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/UrlRewriteBunchReplacerTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Test/Unit/Observer/AfterImportDataObserverTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Test/Unit/Observer/CategoryUrlPathAutogeneratorObserverTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Test/Unit/Observer/ClearProductUrlsObserverTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Test/Unit/Observer/ProductProcessUrlRewriteSavingObserverTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Test/Unit/Observer/UrlRewriteHandlerTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Test/Unit/Service/V1/StoreViewServiceTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ProductUrlRewriteTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/Ui/DataProvider/Product/Form/Modifier/ProductUrlRewrite.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/composer.json
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/etc/adminhtml/events.xml
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/etc/catalog_attributes.xml
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/etc/eav_attributes.xml
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/etc/events.xml
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/registration.php
 mode change 100644 => 100755 app/code/Magento/CatalogUrlRewrite/view/adminhtml/ui_component/category_form.xml
 mode change 100644 => 100755 app/code/Magento/CatalogWidget/Block/Product/ProductsList.php
 mode change 100644 => 100755 app/code/Magento/CatalogWidget/Block/Product/Widget/Conditions.php
 mode change 100644 => 100755 app/code/Magento/CatalogWidget/Controller/Adminhtml/Product/Widget.php
 mode change 100644 => 100755 app/code/Magento/CatalogWidget/Controller/Adminhtml/Product/Widget/Conditions.php
 mode change 100644 => 100755 app/code/Magento/CatalogWidget/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/CatalogWidget/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/CatalogWidget/Model/Rule.php
 mode change 100644 => 100755 app/code/Magento/CatalogWidget/Model/Rule/Condition/Combine.php
 mode change 100644 => 100755 app/code/Magento/CatalogWidget/Model/Rule/Condition/Product.php
 mode change 100644 => 100755 app/code/Magento/CatalogWidget/README.md
 mode change 100644 => 100755 app/code/Magento/CatalogWidget/Test/Unit/Block/Product/ProductsListTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogWidget/Test/Unit/Block/Product/Widget/ConditionsTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogWidget/Test/Unit/Controller/Adminhtml/Product/Widget/ConditionsTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogWidget/Test/Unit/Model/Rule/Condition/CombineTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogWidget/Test/Unit/Model/Rule/Condition/ProductTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogWidget/Test/Unit/Model/RuleTest.php
 mode change 100644 => 100755 app/code/Magento/CatalogWidget/composer.json
 mode change 100644 => 100755 app/code/Magento/CatalogWidget/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/CatalogWidget/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/CatalogWidget/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/CatalogWidget/etc/widget.xml
 mode change 100644 => 100755 app/code/Magento/CatalogWidget/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/CatalogWidget/registration.php
 mode change 100644 => 100755 app/code/Magento/CatalogWidget/view/adminhtml/templates/product/widget/conditions.phtml
 mode change 100644 => 100755 app/code/Magento/CatalogWidget/view/adminhtml/web/images/products_list.png
 mode change 100644 => 100755 app/code/Magento/CatalogWidget/view/frontend/templates/product/widget/content/grid.phtml
 mode change 100644 => 100755 app/code/Magento/Checkout/Api/AgreementsValidatorInterface.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Api/Data/PaymentDetailsInterface.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Api/Data/ShippingInformationInterface.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Api/Data/TotalsInformationInterface.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Api/GuestPaymentInformationManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Api/GuestShippingInformationManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Api/GuestTotalsInformationManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Api/PaymentInformationManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Api/ShippingInformationManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Api/TotalsInformationManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Block/Adminhtml/CartTab.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Block/Cart.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Block/Cart/AbstractCart.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Block/Cart/Additional/Info.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Block/Cart/CartTotalsProcessor.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Block/Cart/Coupon.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Block/Cart/Crosssell.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Block/Cart/Grid.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Block/Cart/Item/Configure.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Block/Cart/Item/Renderer.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Block/Cart/Item/Renderer/Actions.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Block/Cart/Item/Renderer/Actions/Edit.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Block/Cart/Item/Renderer/Actions/Generic.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Block/Cart/Item/Renderer/Actions/Remove.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Block/Cart/LayoutProcessor.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Block/Cart/Link.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Block/Cart/Shipping.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Block/Cart/Sidebar.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Block/Cart/Totals.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Block/Cart/ValidationMessages.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Block/Checkout/AttributeMerger.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Block/Checkout/DirectoryDataProcessor.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Block/Checkout/LayoutProcessor.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Block/Checkout/LayoutProcessorInterface.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Block/Checkout/TotalsProcessor.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Block/Item/Price/Renderer.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Block/Link.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Block/Onepage.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Block/Onepage/Failure.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Block/Onepage/Link.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Block/Onepage/Success.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Block/QuoteShortcutButtons.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Block/Registration.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Block/Shipping/Price.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Block/Success.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Block/Total/DefaultTotal.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Controller/Account/Create.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Controller/Action.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Controller/Cart.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Controller/Cart/Add.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Controller/Cart/Addgroup.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Controller/Cart/Configure.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Controller/Cart/CouponPost.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Controller/Cart/Delete.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Controller/Cart/EstimatePost.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Controller/Cart/EstimateUpdatePost.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Controller/Cart/Index.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Controller/Cart/UpdateItemOptions.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Controller/Cart/UpdatePost.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Controller/Express/RedirectLoginInterface.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Controller/Index/Index.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Controller/Noroute/Index.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Controller/Onepage.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Controller/Onepage/Failure.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Controller/Onepage/SaveOrder.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Controller/Onepage/Success.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Controller/ShippingRates/Index.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Controller/Sidebar/RemoveItem.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Controller/Sidebar/UpdateItemQty.php
 mode change 100644 => 100755 app/code/Magento/Checkout/CustomerData/AbstractItem.php
 mode change 100644 => 100755 app/code/Magento/Checkout/CustomerData/Cart.php
 mode change 100644 => 100755 app/code/Magento/Checkout/CustomerData/DefaultItem.php
 mode change 100644 => 100755 app/code/Magento/Checkout/CustomerData/DirectoryData.php
 mode change 100644 => 100755 app/code/Magento/Checkout/CustomerData/ItemInterface.php
 mode change 100644 => 100755 app/code/Magento/Checkout/CustomerData/ItemPool.php
 mode change 100644 => 100755 app/code/Magento/Checkout/CustomerData/ItemPoolInterface.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Exception.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Helper/Cart.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Helper/Data.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Helper/ExpressRedirect.php
 mode change 100644 => 100755 app/code/Magento/Checkout/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Checkout/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Checkout/Model/Adminhtml/BillingAddressDisplayOptions.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Model/AgreementsValidator.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Model/Cart.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Model/Cart/CartInterface.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Model/Cart/CheckoutSummaryConfigProvider.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Model/Cart/CollectQuote.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Model/Cart/ImageProvider.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Model/Cart/RequestInfoFilter.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Model/Cart/RequestInfoFilterComposite.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Model/Cart/RequestInfoFilterInterface.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Model/CompositeConfigProvider.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Model/Config/Source/Cart/Summary.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Model/ConfigProviderInterface.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Model/DefaultConfigProvider.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Model/GuestPaymentInformationManagement.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Model/GuestShippingInformationManagement.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Model/GuestTotalsInformationManagement.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Model/Layout/AbstractTotalsProcessor.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Model/Layout/DepersonalizePlugin.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Model/PaymentDetails.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Model/PaymentInformationManagement.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Model/ResourceModel/Cart.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Model/Session.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Model/Session/SuccessValidator.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Model/ShippingInformation.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Model/ShippingInformationManagement.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Model/Sidebar.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Model/TotalsInformation.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Model/TotalsInformationManagement.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Model/Type/Onepage.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Observer/LoadCustomerQuoteObserver.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Observer/SalesQuoteSaveAfterObserver.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Observer/UnsetAllObserver.php
 mode change 100644 => 100755 app/code/Magento/Checkout/README.md
 mode change 100644 => 100755 app/code/Magento/Checkout/Setup/InstallData.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Block/Cart/AbstractCartTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Block/Cart/CartTotalsProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Block/Cart/GridTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Block/Cart/Item/Renderer/Actions/EditTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Block/Cart/Item/Renderer/Actions/GenericTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Block/Cart/Item/Renderer/Actions/RemoveTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Block/Cart/Item/Renderer/ActionsTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Block/Cart/Item/RendererTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Block/Cart/LayoutProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Block/Cart/LinkTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Block/Cart/ShippingTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Block/Cart/SidebarTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Block/Checkout/DirectoryDataProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Block/Checkout/LayoutProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Block/Checkout/TotalsProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Block/Item/Price/RendererTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Block/LinkTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Block/Onepage/SuccessTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Block/OnepageTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Block/Shipping/PriceTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Controller/Account/CreateTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Controller/Cart/ConfigureTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Controller/Cart/CouponPostTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Controller/Cart/IndexTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Controller/Index/IndexTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Controller/OnepageTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Controller/Sidebar/RemoveItemTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Controller/Sidebar/UpdateItemQtyTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Controller/Stub/OnepageStub.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/CustomerData/CartTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/CustomerData/DefaultItemTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/CustomerData/ItemPoolTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Helper/CartTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Helper/DataTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Helper/ExpressRedirectTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Model/AgreementsValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Model/Cart/CheckoutSummaryConfigProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Model/Cart/ImageProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Model/Cart/RequestInfoFilterCompositeTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Model/Cart/RequestInfoFilterTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Model/CartTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Model/CompositeConfigProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Model/Config/Source/Cart/SummaryTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Model/GuestPaymentInformationManagementTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Model/GuestShippingInformationManagementTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Model/Layout/DepersonalizePluginTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Model/PaymentInformationManagementTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Model/Session/SuccessValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Model/SessionTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Model/ShippingInformationManagementTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Model/SidebarTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Model/Type/OnepageTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Observer/LoadCustomerQuoteObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Observer/SalesQuoteSaveAfterObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/Test/Unit/Observer/UnsetAllObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Checkout/composer.json
 mode change 100644 => 100755 app/code/Magento/Checkout/etc/acl.xml
 mode change 100644 => 100755 app/code/Magento/Checkout/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/Checkout/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/Checkout/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Checkout/etc/email_templates.xml
 mode change 100644 => 100755 app/code/Magento/Checkout/etc/events.xml
 mode change 100644 => 100755 app/code/Magento/Checkout/etc/fieldset.xml
 mode change 100644 => 100755 app/code/Magento/Checkout/etc/frontend/di.xml
 mode change 100644 => 100755 app/code/Magento/Checkout/etc/frontend/events.xml
 mode change 100644 => 100755 app/code/Magento/Checkout/etc/frontend/page_types.xml
 mode change 100644 => 100755 app/code/Magento/Checkout/etc/frontend/routes.xml
 mode change 100644 => 100755 app/code/Magento/Checkout/etc/frontend/sections.xml
 mode change 100644 => 100755 app/code/Magento/Checkout/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Checkout/etc/webapi.xml
 mode change 100644 => 100755 app/code/Magento/Checkout/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Checkout/registration.php
 mode change 100644 => 100755 app/code/Magento/Checkout/view/adminhtml/email/failed_payment.html
 mode change 100644 => 100755 app/code/Magento/Checkout/view/base/web/js/model/default-post-code-resolver.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/layout/catalog_category_view.xml
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/layout/catalog_product_view.xml
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/layout/checkout_cart_configure.xml
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/layout/checkout_cart_configure_type_simple.xml
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/layout/checkout_cart_index.xml
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/layout/checkout_cart_item_renderers.xml
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/layout/checkout_cart_sidebar_item_price_renderers.xml
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/layout/checkout_cart_sidebar_item_renderers.xml
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/layout/checkout_cart_sidebar_total_renderers.xml
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/layout/checkout_index_index.xml
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/layout/checkout_item_price_renderers.xml
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/layout/checkout_onepage_failure.xml
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/layout/checkout_onepage_review_item_renderers.xml
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/layout/checkout_onepage_success.xml
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/layout/default.xml
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/page_layout/checkout.xml
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/requirejs-config.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/templates/button.phtml
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/templates/cart.phtml
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/templates/cart/additional/info.phtml
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/templates/cart/coupon.phtml
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/templates/cart/form.phtml
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/templates/cart/item/configure/updatecart.phtml
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/templates/cart/item/default.phtml
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/templates/cart/item/price/sidebar.phtml
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/templates/cart/item/renderer/actions/edit.phtml
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/templates/cart/item/renderer/actions/remove.phtml
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/templates/cart/methods.phtml
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/templates/cart/minicart.phtml
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/templates/cart/noItems.phtml
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/templates/cart/shipping.phtml
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/templates/cart/totals.phtml
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/templates/item/price/row.phtml
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/templates/item/price/unit.phtml
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/templates/js/components.phtml
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/templates/onepage.phtml
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/templates/onepage/failure.phtml
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/templates/onepage/link.phtml
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/templates/onepage/review/item.phtml
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/templates/onepage/review/item/price/row_excl_tax.phtml
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/templates/onepage/review/item/price/row_incl_tax.phtml
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/templates/onepage/review/item/price/unit_excl_tax.phtml
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/templates/onepage/review/item/price/unit_incl_tax.phtml
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/templates/registration.phtml
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/templates/shipping/price.phtml
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/templates/success.phtml
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/templates/total/default.phtml
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/cvv.png
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/action/create-billing-address.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/action/create-shipping-address.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/action/get-payment-information.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/action/get-totals.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/action/place-order.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/action/redirect-on-success.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/action/select-billing-address.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/action/select-payment-method.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/action/select-shipping-address.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/action/select-shipping-method.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/action/set-billing-address.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/action/set-payment-information.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/action/set-shipping-information.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/checkout-data.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/checkout-loader.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/discount-codes.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/model/address-converter.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/model/authentication-messages.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/model/cart/cache.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/model/cart/estimate-service.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/model/cart/totals-processor/default.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/model/checkout-data-resolver.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/model/customer-email-validator.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/model/default-validation-rules.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/model/default-validator.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/model/error-processor.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/model/full-screen-loader.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/model/new-customer-address.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/model/payment-service.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/model/payment/additional-validators.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/model/payment/method-converter.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/model/payment/method-group.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/model/payment/method-list.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/model/payment/renderer-list.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/model/place-order.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/model/postcode-validator.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/model/quote.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/model/resource-url-manager.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/model/shipping-address/form-popup-state.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/model/shipping-rate-processor/customer-address.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/model/shipping-rate-processor/new-address.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/model/shipping-rate-registry.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/model/shipping-rate-service.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/model/shipping-rates-validation-rules.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/model/shipping-rates-validator.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/model/shipping-save-processor.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/model/shipping-save-processor/default.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/model/shipping-save-processor/payload-extender.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/model/shipping-service.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/model/sidebar.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/model/step-navigator.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/model/totals.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/model/url-builder.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/proceed-to-checkout.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/region-updater.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/shopping-cart.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/sidebar.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/view/authentication-messages.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/view/authentication.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/view/beforePlaceOrder.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/view/billing-address.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/view/cart/shipping-estimation.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/view/cart/shipping-rates.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/view/cart/totals.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/view/cart/totals/shipping.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/view/checkout/minicart/subtotal/totals.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/view/configure/product-customer-data.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/view/estimation.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/view/form/element/email.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/view/minicart.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/view/payment.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/view/payment/default.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/view/payment/email-validator.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/view/payment/list.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/view/progress-bar.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/view/registration.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/view/review/actions.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/view/review/actions/default.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/view/shipping-address/address-renderer/default.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/view/shipping-address/list.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/view/shipping-information.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/view/shipping-information/address-renderer/default.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/view/shipping-information/list.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/view/shipping.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/view/sidebar.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/view/summary.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/view/summary/abstract-total.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/view/summary/cart-items.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/view/summary/grand-total.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/view/summary/item/details.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/view/summary/item/details/subtotal.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/view/summary/item/details/thumbnail.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/view/summary/shipping.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/view/summary/subtotal.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/js/view/summary/totals.js
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/template/authentication.html
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/template/billing-address.html
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/template/billing-address/details.html
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/template/billing-address/form.html
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/template/billing-address/list.html
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/template/cart/shipping-estimation.html
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/template/cart/shipping-rates.html
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/template/cart/totals.html
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/template/cart/totals/grand-total.html
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/template/cart/totals/shipping.html
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/template/cart/totals/subtotal.html
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/template/estimation.html
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/template/form/element/email.html
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/template/minicart/content.html
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/template/minicart/item/default.html
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/template/minicart/item/price.html
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/template/minicart/subtotal.html
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/template/minicart/subtotal/totals.html
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/template/onepage.html
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/template/payment-methods/list.html
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/template/payment.html
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/template/payment/before-place-order.html
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/template/payment/generic-title.html
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/template/progress-bar.html
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/template/registration.html
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/template/review/actions.html
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/template/review/actions/default.html
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/template/shipping-address/address-renderer/default.html
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/template/shipping-address/form.html
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/template/shipping-address/list.html
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/template/shipping-address/shipping-method-item.html
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/template/shipping-address/shipping-method-list.html
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/template/shipping-information.html
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/template/shipping-information/address-renderer/default.html
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/template/shipping-information/list.html
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/template/shipping.html
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/template/sidebar.html
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/template/summary.html
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/template/summary/cart-items.html
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/template/summary/grand-total.html
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/template/summary/item/details.html
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/template/summary/item/details/subtotal.html
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/template/summary/item/details/thumbnail.html
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/template/summary/shipping.html
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/template/summary/subtotal.html
 mode change 100644 => 100755 app/code/Magento/Checkout/view/frontend/web/template/summary/totals.html
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/Api/CheckoutAgreementsRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/Api/Data/AgreementInterface.php
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/Block/Adminhtml/Agreement.php
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/Block/Adminhtml/Agreement/Edit.php
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/Block/Adminhtml/Agreement/Edit/Form.php
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/Block/Adminhtml/Agreement/Grid.php
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/Block/Agreements.php
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/Controller/Adminhtml/Agreement.php
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/Controller/Adminhtml/Agreement/Delete.php
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/Controller/Adminhtml/Agreement/Edit.php
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/Controller/Adminhtml/Agreement/Index.php
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/Controller/Adminhtml/Agreement/NewAction.php
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/Controller/Adminhtml/Agreement/Save.php
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/Model/Agreement.php
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/Model/AgreementModeOptions.php
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/Model/AgreementsConfigProvider.php
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/Model/AgreementsProvider.php
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/Model/AgreementsProviderInterface.php
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/Model/AgreementsValidator.php
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/Model/Checkout/Plugin/GuestValidation.php
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/Model/Checkout/Plugin/Validation.php
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/Model/CheckoutAgreementsRepository.php
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/Model/ResourceModel/Agreement.php
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/Model/ResourceModel/Agreement/Collection.php
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/README.md
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/Setup/UpgradeSchema.php
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/Test/Unit/Block/AgreementsTest.php
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/Test/Unit/Model/AgreementModeOptionsTest.php
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/Test/Unit/Model/AgreementTest.php
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/Test/Unit/Model/AgreementsConfigProviderTest.php
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/Test/Unit/Model/AgreementsProviderTest.php
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/Test/Unit/Model/AgreementsValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/Test/Unit/Model/Checkout/Plugin/GuestValidationTest.php
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/Test/Unit/Model/Checkout/Plugin/ValidationTest.php
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/Test/Unit/Model/CheckoutAgreementsRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/composer.json
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/etc/acl.xml
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/etc/adminhtml/menu.xml
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/etc/extension_attributes.xml
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/etc/frontend/di.xml
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/etc/webapi.xml
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/registration.php
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/view/frontend/layout/checkout_index_index.xml
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/view/frontend/layout/multishipping_checkout_overview.xml
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/view/frontend/requirejs-config.js
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/view/frontend/templates/additional_agreements.phtml
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/view/frontend/templates/agreements.phtml
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/view/frontend/templates/multishipping_agreements.phtml
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/view/frontend/web/js/model/agreement-validator.js
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/view/frontend/web/js/model/agreements-assigner.js
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/view/frontend/web/js/model/agreements-modal.js
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/view/frontend/web/js/model/place-order-mixin.js
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/view/frontend/web/js/model/set-payment-information-mixin.js
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/view/frontend/web/js/view/agreement-validation.js
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/view/frontend/web/js/view/checkout-agreements.js
 mode change 100644 => 100755 app/code/Magento/CheckoutAgreements/view/frontend/web/template/checkout/checkout-agreements.html
 mode change 100644 => 100755 app/code/Magento/Cms/Api/BlockRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Cms/Api/Data/BlockInterface.php
 mode change 100644 => 100755 app/code/Magento/Cms/Api/Data/BlockSearchResultsInterface.php
 mode change 100644 => 100755 app/code/Magento/Cms/Api/Data/PageInterface.php
 mode change 100644 => 100755 app/code/Magento/Cms/Api/Data/PageSearchResultsInterface.php
 mode change 100644 => 100755 app/code/Magento/Cms/Api/GetUtilityPageIdentifiersInterface.php
 mode change 100644 => 100755 app/code/Magento/Cms/Api/PageRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Cms/Block/Adminhtml/Block.php
 mode change 100644 => 100755 app/code/Magento/Cms/Block/Adminhtml/Block/Edit/BackButton.php
 mode change 100644 => 100755 app/code/Magento/Cms/Block/Adminhtml/Block/Edit/DeleteButton.php
 mode change 100644 => 100755 app/code/Magento/Cms/Block/Adminhtml/Block/Edit/GenericButton.php
 mode change 100644 => 100755 app/code/Magento/Cms/Block/Adminhtml/Block/Edit/ResetButton.php
 mode change 100644 => 100755 app/code/Magento/Cms/Block/Adminhtml/Block/Edit/SaveAndContinueButton.php
 mode change 100644 => 100755 app/code/Magento/Cms/Block/Adminhtml/Block/Edit/SaveButton.php
 mode change 100644 => 100755 app/code/Magento/Cms/Block/Adminhtml/Block/Widget/Chooser.php
 mode change 100644 => 100755 app/code/Magento/Cms/Block/Adminhtml/Page.php
 mode change 100644 => 100755 app/code/Magento/Cms/Block/Adminhtml/Page/Edit/BackButton.php
 mode change 100644 => 100755 app/code/Magento/Cms/Block/Adminhtml/Page/Edit/DeleteButton.php
 mode change 100644 => 100755 app/code/Magento/Cms/Block/Adminhtml/Page/Edit/GenericButton.php
 mode change 100644 => 100755 app/code/Magento/Cms/Block/Adminhtml/Page/Edit/ResetButton.php
 mode change 100644 => 100755 app/code/Magento/Cms/Block/Adminhtml/Page/Edit/SaveAndContinueButton.php
 mode change 100644 => 100755 app/code/Magento/Cms/Block/Adminhtml/Page/Edit/SaveButton.php
 mode change 100644 => 100755 app/code/Magento/Cms/Block/Adminhtml/Page/Grid.php
 mode change 100644 => 100755 app/code/Magento/Cms/Block/Adminhtml/Page/Grid/Renderer/Action.php
 mode change 100644 => 100755 app/code/Magento/Cms/Block/Adminhtml/Page/Grid/Renderer/Action/UrlBuilder.php
 mode change 100644 => 100755 app/code/Magento/Cms/Block/Adminhtml/Page/Widget/Chooser.php
 mode change 100644 => 100755 app/code/Magento/Cms/Block/Adminhtml/Wysiwyg/Images/Content.php
 mode change 100644 => 100755 app/code/Magento/Cms/Block/Adminhtml/Wysiwyg/Images/Content/Files.php
 mode change 100644 => 100755 app/code/Magento/Cms/Block/Adminhtml/Wysiwyg/Images/Content/Newfolder.php
 mode change 100644 => 100755 app/code/Magento/Cms/Block/Adminhtml/Wysiwyg/Images/Content/Uploader.php
 mode change 100644 => 100755 app/code/Magento/Cms/Block/Adminhtml/Wysiwyg/Images/Tree.php
 mode change 100644 => 100755 app/code/Magento/Cms/Block/Block.php
 mode change 100644 => 100755 app/code/Magento/Cms/Block/Page.php
 mode change 100644 => 100755 app/code/Magento/Cms/Block/Widget/Block.php
 mode change 100644 => 100755 app/code/Magento/Cms/Block/Widget/Page/Link.php
 mode change 100644 => 100755 app/code/Magento/Cms/Controller/Adminhtml/Block.php
 mode change 100644 => 100755 app/code/Magento/Cms/Controller/Adminhtml/Block/Delete.php
 mode change 100644 => 100755 app/code/Magento/Cms/Controller/Adminhtml/Block/Edit.php
 mode change 100644 => 100755 app/code/Magento/Cms/Controller/Adminhtml/Block/Index.php
 mode change 100644 => 100755 app/code/Magento/Cms/Controller/Adminhtml/Block/InlineEdit.php
 mode change 100644 => 100755 app/code/Magento/Cms/Controller/Adminhtml/Block/MassDelete.php
 mode change 100644 => 100755 app/code/Magento/Cms/Controller/Adminhtml/Block/NewAction.php
 mode change 100644 => 100755 app/code/Magento/Cms/Controller/Adminhtml/Block/Save.php
 mode change 100644 => 100755 app/code/Magento/Cms/Controller/Adminhtml/Block/Widget/Chooser.php
 mode change 100644 => 100755 app/code/Magento/Cms/Controller/Adminhtml/Page/Delete.php
 mode change 100644 => 100755 app/code/Magento/Cms/Controller/Adminhtml/Page/Edit.php
 mode change 100644 => 100755 app/code/Magento/Cms/Controller/Adminhtml/Page/Index.php
 mode change 100644 => 100755 app/code/Magento/Cms/Controller/Adminhtml/Page/InlineEdit.php
 mode change 100644 => 100755 app/code/Magento/Cms/Controller/Adminhtml/Page/MassDelete.php
 mode change 100644 => 100755 app/code/Magento/Cms/Controller/Adminhtml/Page/MassDisable.php
 mode change 100644 => 100755 app/code/Magento/Cms/Controller/Adminhtml/Page/MassEnable.php
 mode change 100644 => 100755 app/code/Magento/Cms/Controller/Adminhtml/Page/NewAction.php
 mode change 100644 => 100755 app/code/Magento/Cms/Controller/Adminhtml/Page/PostDataProcessor.php
 mode change 100644 => 100755 app/code/Magento/Cms/Controller/Adminhtml/Page/Save.php
 mode change 100644 => 100755 app/code/Magento/Cms/Controller/Adminhtml/Page/Widget/Chooser.php
 mode change 100644 => 100755 app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Directive.php
 mode change 100644 => 100755 app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images.php
 mode change 100644 => 100755 app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/Contents.php
 mode change 100644 => 100755 app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/DeleteFiles.php
 mode change 100644 => 100755 app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/DeleteFolder.php
 mode change 100644 => 100755 app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/Index.php
 mode change 100644 => 100755 app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/NewFolder.php
 mode change 100644 => 100755 app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/OnInsert.php
 mode change 100644 => 100755 app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/Thumbnail.php
 mode change 100644 => 100755 app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/TreeJson.php
 mode change 100644 => 100755 app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/Upload.php
 mode change 100644 => 100755 app/code/Magento/Cms/Controller/Index/DefaultIndex.php
 mode change 100644 => 100755 app/code/Magento/Cms/Controller/Index/DefaultNoRoute.php
 mode change 100644 => 100755 app/code/Magento/Cms/Controller/Index/Index.php
 mode change 100644 => 100755 app/code/Magento/Cms/Controller/Noroute/Index.php
 mode change 100644 => 100755 app/code/Magento/Cms/Controller/Page/View.php
 mode change 100644 => 100755 app/code/Magento/Cms/Controller/Router.php
 mode change 100644 => 100755 app/code/Magento/Cms/Helper/Page.php
 mode change 100644 => 100755 app/code/Magento/Cms/Helper/Wysiwyg/Images.php
 mode change 100644 => 100755 app/code/Magento/Cms/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Cms/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Cms/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/BlockStoreFilter.php
 mode change 100644 => 100755 app/code/Magento/Cms/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/PageStoreFilter.php
 mode change 100644 => 100755 app/code/Magento/Cms/Model/Block.php
 mode change 100644 => 100755 app/code/Magento/Cms/Model/Block/DataProvider.php
 mode change 100644 => 100755 app/code/Magento/Cms/Model/Block/Source/IsActive.php
 mode change 100644 => 100755 app/code/Magento/Cms/Model/BlockRepository.php
 mode change 100644 => 100755 app/code/Magento/Cms/Model/Config/Source/Page.php
 mode change 100644 => 100755 app/code/Magento/Cms/Model/Config/Source/Wysiwyg/Enabled.php
 mode change 100644 => 100755 app/code/Magento/Cms/Model/GetUtilityPageIdentifiers.php
 mode change 100644 => 100755 app/code/Magento/Cms/Model/Page.php
 mode change 100644 => 100755 app/code/Magento/Cms/Model/Page/DataProvider.php
 mode change 100644 => 100755 app/code/Magento/Cms/Model/Page/DomValidationState.php
 mode change 100644 => 100755 app/code/Magento/Cms/Model/Page/Source/CustomLayout.php
 mode change 100644 => 100755 app/code/Magento/Cms/Model/Page/Source/IsActive.php
 mode change 100644 => 100755 app/code/Magento/Cms/Model/Page/Source/IsActiveFilter.php
 mode change 100644 => 100755 app/code/Magento/Cms/Model/Page/Source/PageLayout.php
 mode change 100644 => 100755 app/code/Magento/Cms/Model/Page/Source/PageLayoutFilter.php
 mode change 100644 => 100755 app/code/Magento/Cms/Model/Page/Source/Theme.php
 mode change 100644 => 100755 app/code/Magento/Cms/Model/PageRepository.php
 mode change 100644 => 100755 app/code/Magento/Cms/Model/ResourceModel/AbstractCollection.php
 mode change 100644 => 100755 app/code/Magento/Cms/Model/ResourceModel/Block.php
 mode change 100644 => 100755 app/code/Magento/Cms/Model/ResourceModel/Block/Collection.php
 mode change 100644 => 100755 app/code/Magento/Cms/Model/ResourceModel/Block/Grid/Collection.php
 mode change 100644 => 100755 app/code/Magento/Cms/Model/ResourceModel/Block/Relation/Store/ReadHandler.php
 mode change 100644 => 100755 app/code/Magento/Cms/Model/ResourceModel/Block/Relation/Store/SaveHandler.php
 mode change 100644 => 100755 app/code/Magento/Cms/Model/ResourceModel/Page.php
 mode change 100644 => 100755 app/code/Magento/Cms/Model/ResourceModel/Page/Collection.php
 mode change 100644 => 100755 app/code/Magento/Cms/Model/ResourceModel/Page/Grid/Collection.php
 mode change 100644 => 100755 app/code/Magento/Cms/Model/ResourceModel/Page/Relation/Store/ReadHandler.php
 mode change 100644 => 100755 app/code/Magento/Cms/Model/ResourceModel/Page/Relation/Store/SaveHandler.php
 mode change 100644 => 100755 app/code/Magento/Cms/Model/Template/Filter.php
 mode change 100644 => 100755 app/code/Magento/Cms/Model/Template/FilterProvider.php
 mode change 100644 => 100755 app/code/Magento/Cms/Model/Wysiwyg/Config.php
 mode change 100644 => 100755 app/code/Magento/Cms/Model/Wysiwyg/Images/Storage.php
 mode change 100644 => 100755 app/code/Magento/Cms/Model/Wysiwyg/Images/Storage/Collection.php
 mode change 100644 => 100755 app/code/Magento/Cms/Observer/NoCookiesObserver.php
 mode change 100644 => 100755 app/code/Magento/Cms/Observer/NoRouteObserver.php
 mode change 100644 => 100755 app/code/Magento/Cms/README.md
 mode change 100644 => 100755 app/code/Magento/Cms/Setup/ContentConverter.php
 mode change 100644 => 100755 app/code/Magento/Cms/Setup/InstallData.php
 mode change 100644 => 100755 app/code/Magento/Cms/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/Cms/Setup/UpgradeData.php
 mode change 100644 => 100755 app/code/Magento/Cms/Setup/UpgradeSchema.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Block/Adminhtml/Block/Widget/ChooserTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Block/Adminhtml/Page/Widget/ChooserTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Block/BlockTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Block/PageTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Block/Widget/Page/LinkTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/AbstractMassActionTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Block/DeleteTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Block/EditTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Block/MassDeleteTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Block/SaveTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Page/DeleteTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Page/EditTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Page/InlineEditTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Page/MassDeleteTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Page/MassDisableTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Page/MassEnableTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Page/SaveTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Wysiwyg/DirectiveTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Controller/Block/InlineEditTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Controller/Index/IndexTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Controller/Noroute/IndexTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Controller/Page/PostDataProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Controller/Page/ViewTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Controller/RouterTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Helper/PageTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Helper/Wysiwyg/ImagesTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/BlockStoreFilterTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/PageStoreFilterTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Model/Block/Source/IsActiveTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Model/BlockRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Model/Config/Source/PageTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Model/Page/Source/CustomLayoutTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Model/Page/Source/IsActiveFilterTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Model/Page/Source/IsActiveTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Model/Page/Source/PageLayoutFilterTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Model/Page/Source/PageLayoutTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Model/Page/Source/ThemeTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Model/PageRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Model/PageTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Model/ResourceModel/AbstractCollectionTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Block/CollectionTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Block/Relation/Store/ReadHandlerTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Block/Relation/Store/SaveHandlerTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Page/CollectionTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Page/Grid/CollectionTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Page/Relation/Store/ReadHandlerTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Page/Relation/Store/SaveHandlerTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Model/ResourceModel/PageTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Model/Template/FilterProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Model/Template/FilterTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Model/Wysiwyg/ConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Model/Wysiwyg/Images/StorageTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Observer/NoCookiesObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Observer/NoRouteObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Ui/Component/Listing/Column/BlockActionsTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Ui/Component/Listing/Column/Cms/OptionsTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Ui/Component/Listing/Column/PageActionsTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Test/Unit/Ui/Component/Listing/DataProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Cms/Ui/Component/DataProvider.php
 mode change 100644 => 100755 app/code/Magento/Cms/Ui/Component/Listing/Column/BlockActions.php
 mode change 100644 => 100755 app/code/Magento/Cms/Ui/Component/Listing/Column/Cms/Options.php
 mode change 100644 => 100755 app/code/Magento/Cms/Ui/Component/Listing/Column/PageActions.php
 mode change 100644 => 100755 app/code/Magento/Cms/composer.json
 mode change 100644 => 100755 app/code/Magento/Cms/etc/acl.xml
 mode change 100644 => 100755 app/code/Magento/Cms/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/Cms/etc/adminhtml/menu.xml
 mode change 100644 => 100755 app/code/Magento/Cms/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/Cms/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/Cms/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/Cms/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Cms/etc/events.xml
 mode change 100644 => 100755 app/code/Magento/Cms/etc/frontend/di.xml
 mode change 100644 => 100755 app/code/Magento/Cms/etc/frontend/events.xml
 mode change 100644 => 100755 app/code/Magento/Cms/etc/frontend/page_types.xml
 mode change 100644 => 100755 app/code/Magento/Cms/etc/frontend/routes.xml
 mode change 100644 => 100755 app/code/Magento/Cms/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Cms/etc/mview.xml
 mode change 100644 => 100755 app/code/Magento/Cms/etc/webapi.xml
 mode change 100644 => 100755 app/code/Magento/Cms/etc/widget.xml
 mode change 100644 => 100755 app/code/Magento/Cms/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Cms/registration.php
 mode change 100644 => 100755 app/code/Magento/Cms/view/adminhtml/layout/cms_block_edit.xml
 mode change 100644 => 100755 app/code/Magento/Cms/view/adminhtml/layout/cms_block_index.xml
 mode change 100644 => 100755 app/code/Magento/Cms/view/adminhtml/layout/cms_block_new.xml
 mode change 100644 => 100755 app/code/Magento/Cms/view/adminhtml/layout/cms_page_edit.xml
 mode change 100644 => 100755 app/code/Magento/Cms/view/adminhtml/layout/cms_page_index.xml
 mode change 100644 => 100755 app/code/Magento/Cms/view/adminhtml/layout/cms_page_new.xml
 mode change 100644 => 100755 app/code/Magento/Cms/view/adminhtml/layout/cms_wysiwyg_images_contents.xml
 mode change 100644 => 100755 app/code/Magento/Cms/view/adminhtml/layout/cms_wysiwyg_images_index.xml
 mode change 100644 => 100755 app/code/Magento/Cms/view/adminhtml/requirejs-config.js
 mode change 100644 => 100755 app/code/Magento/Cms/view/adminhtml/templates/browser/content.phtml
 mode change 100644 => 100755 app/code/Magento/Cms/view/adminhtml/templates/browser/content/files.phtml
 mode change 100644 => 100755 app/code/Magento/Cms/view/adminhtml/templates/browser/content/uploader.phtml
 mode change 100644 => 100755 app/code/Magento/Cms/view/adminhtml/templates/browser/tree.phtml
 mode change 100644 => 100755 app/code/Magento/Cms/view/adminhtml/templates/page/edit/form/renderer/content.phtml
 mode change 100644 => 100755 app/code/Magento/Cms/view/adminhtml/ui_component/cms_block_form.xml
 mode change 100644 => 100755 app/code/Magento/Cms/view/adminhtml/ui_component/cms_block_listing.xml
 mode change 100644 => 100755 app/code/Magento/Cms/view/adminhtml/ui_component/cms_page_form.xml
 mode change 100644 => 100755 app/code/Magento/Cms/view/adminhtml/ui_component/cms_page_listing.xml
 mode change 100644 => 100755 app/code/Magento/Cms/view/adminhtml/web/images/placeholder_thumbnail.jpg
 mode change 100644 => 100755 app/code/Magento/Cms/view/adminhtml/web/images/widget_block.png
 mode change 100644 => 100755 app/code/Magento/Cms/view/adminhtml/web/images/widget_page_link.png
 mode change 100644 => 100755 app/code/Magento/Cms/view/adminhtml/web/images/wysiwyg_skin_image.png
 mode change 100644 => 100755 app/code/Magento/Cms/view/adminhtml/web/js/folder-tree.js
 mode change 100644 => 100755 app/code/Magento/Cms/view/frontend/layout/cms_index_defaultindex.xml
 mode change 100644 => 100755 app/code/Magento/Cms/view/frontend/layout/cms_index_defaultnoroute.xml
 mode change 100644 => 100755 app/code/Magento/Cms/view/frontend/layout/cms_index_index.xml
 mode change 100644 => 100755 app/code/Magento/Cms/view/frontend/layout/cms_index_nocookies.xml
 mode change 100644 => 100755 app/code/Magento/Cms/view/frontend/layout/cms_index_noroute.xml
 mode change 100644 => 100755 app/code/Magento/Cms/view/frontend/layout/cms_page_view.xml
 mode change 100644 => 100755 app/code/Magento/Cms/view/frontend/layout/default.xml
 mode change 100644 => 100755 app/code/Magento/Cms/view/frontend/layout/print.xml
 mode change 100644 => 100755 app/code/Magento/Cms/view/frontend/templates/content.phtml
 mode change 100644 => 100755 app/code/Magento/Cms/view/frontend/templates/default/home.phtml
 mode change 100644 => 100755 app/code/Magento/Cms/view/frontend/templates/default/no-route.phtml
 mode change 100644 => 100755 app/code/Magento/Cms/view/frontend/templates/meta.phtml
 mode change 100644 => 100755 app/code/Magento/Cms/view/frontend/templates/widget/link/link_block.phtml
 mode change 100644 => 100755 app/code/Magento/Cms/view/frontend/templates/widget/link/link_inline.phtml
 mode change 100644 => 100755 app/code/Magento/Cms/view/frontend/templates/widget/static_block/default.phtml
 mode change 100644 => 100755 app/code/Magento/CmsUrlRewrite/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/CmsUrlRewrite/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/CmsUrlRewrite/Model/CmsPageUrlPathGenerator.php
 mode change 100644 => 100755 app/code/Magento/CmsUrlRewrite/Model/CmsPageUrlRewriteGenerator.php
 mode change 100644 => 100755 app/code/Magento/CmsUrlRewrite/Observer/ProcessUrlRewriteSavingObserver.php
 mode change 100644 => 100755 app/code/Magento/CmsUrlRewrite/Plugin/Cms/Model/ResourceModel/Page.php
 mode change 100644 => 100755 app/code/Magento/CmsUrlRewrite/README.md
 mode change 100644 => 100755 app/code/Magento/CmsUrlRewrite/Test/Unit/Model/CmsPageUrlRewriteGeneratorTest.php
 mode change 100644 => 100755 app/code/Magento/CmsUrlRewrite/Test/Unit/Observer/ProcessUrlRewriteSavingObserverTest.php
 mode change 100644 => 100755 app/code/Magento/CmsUrlRewrite/Test/Unit/Plugin/Cms/Model/ResourceModel/PageTest.php
 mode change 100644 => 100755 app/code/Magento/CmsUrlRewrite/composer.json
 mode change 100644 => 100755 app/code/Magento/CmsUrlRewrite/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/CmsUrlRewrite/etc/events.xml
 mode change 100644 => 100755 app/code/Magento/CmsUrlRewrite/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/CmsUrlRewrite/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/CmsUrlRewrite/registration.php
 mode change 100644 => 100755 app/code/Magento/Config/App/Config/Source/DumpConfigSourceAggregated.php
 mode change 100644 => 100755 app/code/Magento/Config/App/Config/Source/DumpConfigSourceInterface.php
 mode change 100644 => 100755 app/code/Magento/Config/App/Config/Source/EnvironmentConfigSource.php
 mode change 100644 => 100755 app/code/Magento/Config/App/Config/Source/InitialSnapshotConfigSource.php
 mode change 100644 => 100755 app/code/Magento/Config/App/Config/Source/ModularConfigSource.php
 mode change 100644 => 100755 app/code/Magento/Config/App/Config/Source/RuntimeConfigSource.php
 mode change 100644 => 100755 app/code/Magento/Config/App/Config/Type/System.php
 mode change 100644 => 100755 app/code/Magento/Config/App/Config/Type/System/Reader.php
 mode change 100644 => 100755 app/code/Magento/Config/Block/System/Config/Dwstree.php
 mode change 100644 => 100755 app/code/Magento/Config/Block/System/Config/Edit.php
 mode change 100644 => 100755 app/code/Magento/Config/Block/System/Config/Form.php
 mode change 100644 => 100755 app/code/Magento/Config/Block/System/Config/Form/Field.php
 mode change 100644 => 100755 app/code/Magento/Config/Block/System/Config/Form/Field/Datetime.php
 mode change 100644 => 100755 app/code/Magento/Config/Block/System/Config/Form/Field/Factory.php
 mode change 100644 => 100755 app/code/Magento/Config/Block/System/Config/Form/Field/FieldArray/AbstractFieldArray.php
 mode change 100644 => 100755 app/code/Magento/Config/Block/System/Config/Form/Field/File.php
 mode change 100644 => 100755 app/code/Magento/Config/Block/System/Config/Form/Field/Heading.php
 mode change 100644 => 100755 app/code/Magento/Config/Block/System/Config/Form/Field/Image.php
 mode change 100644 => 100755 app/code/Magento/Config/Block/System/Config/Form/Field/Notification.php
 mode change 100644 => 100755 app/code/Magento/Config/Block/System/Config/Form/Field/Regexceptions.php
 mode change 100644 => 100755 app/code/Magento/Config/Block/System/Config/Form/Field/Select/Allowspecific.php
 mode change 100644 => 100755 app/code/Magento/Config/Block/System/Config/Form/Fieldset.php
 mode change 100644 => 100755 app/code/Magento/Config/Block/System/Config/Form/Fieldset/Factory.php
 mode change 100644 => 100755 app/code/Magento/Config/Block/System/Config/Form/Fieldset/Modules/DisableOutput.php
 mode change 100644 => 100755 app/code/Magento/Config/Block/System/Config/Tabs.php
 mode change 100644 => 100755 app/code/Magento/Config/Console/Command/ConfigSet/ConfigSetProcessorFactory.php
 mode change 100644 => 100755 app/code/Magento/Config/Console/Command/ConfigSet/ConfigSetProcessorInterface.php
 mode change 100644 => 100755 app/code/Magento/Config/Console/Command/ConfigSet/DefaultProcessor.php
 mode change 100644 => 100755 app/code/Magento/Config/Console/Command/ConfigSet/LockProcessor.php
 mode change 100644 => 100755 app/code/Magento/Config/Console/Command/ConfigSet/ProcessorFacade.php
 mode change 100644 => 100755 app/code/Magento/Config/Console/Command/ConfigSetCommand.php
 mode change 100644 => 100755 app/code/Magento/Config/Console/Command/ConfigShow/ValueProcessor.php
 mode change 100644 => 100755 app/code/Magento/Config/Console/Command/ConfigShowCommand.php
 mode change 100644 => 100755 app/code/Magento/Config/Console/Command/EmulatedAdminhtmlAreaProcessor.php
 mode change 100644 => 100755 app/code/Magento/Config/Controller/Adminhtml/System/AbstractConfig.php
 mode change 100644 => 100755 app/code/Magento/Config/Controller/Adminhtml/System/Config/AbstractScopeConfig.php
 mode change 100644 => 100755 app/code/Magento/Config/Controller/Adminhtml/System/Config/Edit.php
 mode change 100644 => 100755 app/code/Magento/Config/Controller/Adminhtml/System/Config/Index.php
 mode change 100644 => 100755 app/code/Magento/Config/Controller/Adminhtml/System/Config/Save.php
 mode change 100644 => 100755 app/code/Magento/Config/Controller/Adminhtml/System/Config/State.php
 mode change 100644 => 100755 app/code/Magento/Config/Controller/Adminhtml/System/ConfigSectionChecker.php
 mode change 100644 => 100755 app/code/Magento/Config/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Config/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Backend/Admin/Custom.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Backend/Admin/Custompath.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Backend/Admin/Password/Link/Expirationperiod.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Backend/Admin/Robots.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Backend/Admin/Usecustom.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Backend/Admin/Usesecretkey.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Backend/Baseurl.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Backend/Cache.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Backend/Currency/AbstractCurrency.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Backend/Currency/Allow.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Backend/Currency/Base.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Backend/Currency/Cron.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Backend/Currency/DefaultCurrency.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Backend/Datashare.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Backend/Design/Exception.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Backend/Email/Address.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Backend/Email/Logo.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Backend/Email/Sender.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Backend/Encrypted.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Backend/File.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Backend/File/RequestData.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Backend/File/RequestData/RequestDataInterface.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Backend/Filename.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Backend/Image.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Backend/Image/Adapter.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Backend/Image/Favicon.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Backend/Image/Logo.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Backend/Image/Pdf.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Backend/Locale.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Backend/Locale/Timezone.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Backend/Log/Cron.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Backend/Secure.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Backend/Serialized.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Backend/Serialized/ArraySerialized.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Backend/Store.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Backend/Translate.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/BackendClone/Factory.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/BackendFactory.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/CommentFactory.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/CommentInterface.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Compiler/IncludeElement.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Export/Comment.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Export/ExcludeList.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Factory.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Importer.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Importer/SaveProcessor.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Loader.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Parser/Comment.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/PathValidator.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Processor/EnvironmentPlaceholder.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Reader/Source/Deployed/DocumentRoot.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Reader/Source/Deployed/SettingChecker.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/SchemaLocator.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/ScopeDefiner.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Source/Admin/Page.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Source/Date/Short.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Source/Design/Robots.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Source/Dev/Dbautoup.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Source/Email/Identity.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Source/Email/Method.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Source/Email/Smtpauth.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Source/Email/Template.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Source/Enabledisable.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Source/Image/Adapter.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Source/Locale.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Source/Locale/Country.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Source/Locale/Currency.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Source/Locale/Currency/All.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Source/Locale/Timezone.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Source/Locale/Weekdaycodes.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Source/Locale/Weekdays.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Source/Nooptreq.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Source/Reports/Scope.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Source/Store.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Source/Web/Protocol.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Source/Web/Redirect.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Source/Website.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Source/Website/AdminOptionHash.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Source/Website/OptionHash.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Source/Yesno.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Source/Yesnocustom.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/SourceFactory.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Structure.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Structure/AbstractElement.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Structure/AbstractMapper.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Structure/ConcealInProductionConfigList.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Structure/Converter.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Structure/Data.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Structure/Element/AbstractComposite.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Structure/Element/Dependency/Field.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Structure/Element/Dependency/FieldFactory.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Structure/Element/Dependency/Mapper.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Structure/Element/Field.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Structure/Element/FlyweightFactory.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Structure/Element/Group.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Structure/Element/Group/Proxy.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Structure/Element/Iterator.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Structure/Element/Iterator/Field.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Structure/Element/Iterator/Group.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Structure/Element/Iterator/Section.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Structure/Element/Iterator/Tab.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Structure/Element/Section.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Structure/Element/Tab.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Structure/ElementInterface.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Structure/ElementVisibilityComposite.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Structure/ElementVisibilityInterface.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Structure/Mapper/Attribute/Inheritance.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Structure/Mapper/Dependencies.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Structure/Mapper/ExtendsMapper.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Structure/Mapper/Factory.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Structure/Mapper/Helper/RelativePathConverter.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Structure/Mapper/Ignore.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Structure/Mapper/Path.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Structure/Mapper/Sorting.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Structure/MapperInterface.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Structure/Reader.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Structure/Search/Proxy.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/Structure/SearchInterface.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Config/TypePool.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Placeholder/Environment.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Placeholder/PlaceholderFactory.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/Placeholder/PlaceholderInterface.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/PreparedValueFactory.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/ResourceModel/Config.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/ResourceModel/Config/Data.php
 mode change 100644 => 100755 app/code/Magento/Config/Model/ResourceModel/Config/Data/Collection.php
 mode change 100644 => 100755 app/code/Magento/Config/Observer/Config/Backend/Admin/AfterCustomUrlChangedObserver.php
 mode change 100644 => 100755 app/code/Magento/Config/README.md
 mode change 100644 => 100755 app/code/Magento/Config/Setup/InstallData.php
 mode change 100644 => 100755 app/code/Magento/Config/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/App/Config/Source/DumpConfigSourceAggregatedTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/App/Config/Source/EnvironmentConfigSourceTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/App/Config/Source/InitialSnapshotConfigSourceTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/App/Config/Source/ModularConfigSourceTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/App/Config/Source/RuntimeConfigSourceTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/App/Config/Type/System/ReaderTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/App/Config/Type/SystemTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Block/System/Config/DwstreeTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Block/System/Config/EditTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Field/FieldArray/AbstractTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Field/FileTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Field/HeadingTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Field/ImageTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Field/NotificationTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Field/RegexceptionsTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Field/Select/AllowspecificTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Block/System/Config/Form/FieldTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Fieldset/Modules/DisableOutputTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Block/System/Config/Form/FieldsetTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Block/System/Config/FormTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Block/System/Config/TabsTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Console/Command/ConfigSet/ConfigSetProcessorFactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Console/Command/ConfigSet/DefaultProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Console/Command/ConfigSet/LockProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Console/Command/ConfigSet/ProcessorFacadeTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Console/Command/ConfigSetCommandTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Console/Command/ConfigShow/ValueProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Console/Command/ConfigShowCommandTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Console/Command/EmulatedAdminhtmlAreaProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Controller/Adminhtml/System/Config/SaveTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Controller/Adminhtml/System/Config/_files/expected_array.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Controller/Adminhtml/System/Config/_files/files_array.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Controller/Adminhtml/System/Config/_files/groups_array.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Compiler/IncludeElementTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/Backend/BaseurlTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/Backend/Email/AddressTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/Backend/Email/LogoTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/Backend/Email/SenderTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/Backend/EncryptedTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/Backend/File/RequestDataTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/Backend/FileTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/Backend/Image/LogoTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/Backend/SecureTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/Backend/SerializedTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/Export/CommentTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/Export/ExcludeListTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/Export/TypePoolTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/Importer/SaveProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/ImporterTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/LoaderTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/Parser/CommentTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/PathValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/Processor/EnvironmentPlaceholderTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/Reader/Source/Deployed/DocumentRootTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/Reader/Source/Deployed/SettingCheckerTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/SchemaLocatorTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/ScopeDefinerTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/Source/Admin/PageTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/Source/Email/TemplateTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/Source/Locale/TimezoneTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/Structure/AbstractElementTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/Structure/ConcealInProductionConfigListTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/Structure/ConverterTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/AbstractCompositeTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/Dependency/FieldTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/Dependency/MapperTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/FieldTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/FlyweightFactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/Group/ProxyTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/GroupTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/Iterator/FieldTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/IteratorTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/SectionTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/TabTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/Structure/ElementVisibilityCompositeTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/Structure/Mapper/DependenciesTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/Structure/Mapper/ExtendsTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/Structure/Mapper/Helper/RelativePathConverterTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/Structure/Mapper/PathTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/Structure/Mapper/SortingTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/Structure/ReaderTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/StructureTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/XsdTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/_files/config.local.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/_files/invalidSystemXmlArray.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Config/_files/valid_system.xml
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/ConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Placeholder/EnvironmentTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/Placeholder/PlaceholderFactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/PreparedValueFactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/_files/acl.xml
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/_files/acl_1.xml
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/_files/acl_2.xml
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/_files/acl_merged.xml
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/_files/converted_config.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/_files/dependencies_data.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/_files/dependencies_mapped.php
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/_files/menu_1.xml
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/_files/menu_2.xml
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/_files/system_1.xml
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/_files/system_2.xml
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/_files/system_config_options_1.xml
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/_files/system_config_options_2.xml
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/_files/system_unknown_attribute_1.xml
 mode change 100644 => 100755 app/code/Magento/Config/Test/Unit/Model/_files/system_unknown_attribute_2.xml
 mode change 100644 => 100755 app/code/Magento/Config/composer.json
 mode change 100644 => 100755 app/code/Magento/Config/etc/acl.xml
 mode change 100644 => 100755 app/code/Magento/Config/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/Config/etc/adminhtml/events.xml
 mode change 100644 => 100755 app/code/Magento/Config/etc/adminhtml/menu.xml
 mode change 100644 => 100755 app/code/Magento/Config/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/Config/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Config/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Config/etc/system.xsd
 mode change 100644 => 100755 app/code/Magento/Config/etc/system_file.xsd
 mode change 100644 => 100755 app/code/Magento/Config/etc/system_include.xsd
 mode change 100644 => 100755 app/code/Magento/Config/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Config/registration.php
 mode change 100644 => 100755 app/code/Magento/Config/view/adminhtml/layout/adminhtml_system_config_edit.xml
 mode change 100644 => 100755 app/code/Magento/Config/view/adminhtml/templates/page/system/config/robots/reset.phtml
 mode change 100644 => 100755 app/code/Magento/Config/view/adminhtml/templates/system/config/edit.phtml
 mode change 100644 => 100755 app/code/Magento/Config/view/adminhtml/templates/system/config/form/field/array.phtml
 mode change 100644 => 100755 app/code/Magento/Config/view/adminhtml/templates/system/config/js.phtml
 mode change 100644 => 100755 app/code/Magento/Config/view/adminhtml/templates/system/config/switcher.phtml
 mode change 100644 => 100755 app/code/Magento/Config/view/adminhtml/templates/system/config/tabs.phtml
 mode change 100644 => 100755 app/code/Magento/ConfigurableImportExport/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/ConfigurableImportExport/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/ConfigurableImportExport/Model/Export/Product/Type/Configurable.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableImportExport/Model/Export/RowCustomizer.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableImportExport/Model/Import/Product/Type/Configurable.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableImportExport/Test/Unit/Model/Export/RowCustomizerTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableImportExport/Test/Unit/Model/Import/Product/Type/ConfigurableTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableImportExport/composer.json
 mode change 100644 => 100755 app/code/Magento/ConfigurableImportExport/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/ConfigurableImportExport/etc/export.xml
 mode change 100644 => 100755 app/code/Magento/ConfigurableImportExport/etc/import.xml
 mode change 100644 => 100755 app/code/Magento/ConfigurableImportExport/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/ConfigurableImportExport/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/ConfigurableImportExport/registration.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Api/ConfigurableProductManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Api/Data/ConfigurableItemOptionValueInterface.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Api/Data/OptionInterface.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Api/Data/OptionValueInterface.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Api/LinkManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Api/OptionRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Block/Adminhtml/Order/Create/Sidebar.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Attribute/Edit/Tab/Variations/Main.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Attribute/NewAttribute/Product/Created.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Composite/Fieldset/Configurable.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Edit/AttributeSet/Form.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Edit/Button/Save.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Edit/Tab/Variations/Config.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Edit/Tab/Variations/Config/Matrix.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Steps/AttributeValues.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Steps/Bulk.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Steps/SelectAttributes.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Steps/Summary.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Block/Cart/Item/Renderer/Configurable.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Block/Plugin/Product/Media/Gallery.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Block/Product/Configurable/AssociatedSelector/Renderer/Id.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Block/Product/Configurable/AttributeSelector.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Block/Product/View/Type/Configurable.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Block/Stockqty/Type/Configurable.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/AddAttribute.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Associated/Grid.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Attribute/CreateOptions.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Attribute/GetAttributes.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Attribute/SuggestConfigurableAttributes.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Builder/Plugin.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Initialization/Helper/Plugin/Configurable.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Initialization/Helper/Plugin/UpdateConfigurations.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Wizard.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/CustomerData/ConfigurableItem.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Helper/Data.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Helper/Product/Configuration/Plugin.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Helper/Product/Options/Factory.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Helper/Product/Options/Loader.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Model/Attribute/LockValidator.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Model/AttributeOptionProvider.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Model/AttributeOptionProviderInterface.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Model/AttributesList.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Model/AttributesListInterface.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Model/ConfigurableAttributeData.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Model/ConfigurableAttributeHandler.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Model/ConfigurableProductManagement.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Model/Entity/Product/Attribute/Group/AttributeMapper/Plugin.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Model/LinkManagement.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Model/OptionRepository.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Model/Order/Admin/Item/Plugin/Configurable.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Model/Plugin/PriceBackend.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Model/Plugin/ProductRepositorySave.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Model/Product/Cache/Tag/Configurable.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Model/Product/CartConfiguration/Plugin/Configurable.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Model/Product/ReadHandler.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Model/Product/SaveHandler.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Model/Product/Type/Collection/SalableProcessor.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Model/Product/Type/Configurable.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Model/Product/Type/Configurable/Attribute.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Model/Product/Type/Configurable/OptionValue.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Model/Product/Type/Configurable/Price.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Model/Product/Type/Plugin.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Model/Product/Type/VariationMatrix.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Model/Product/TypeTransitionManager/Plugin/Configurable.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Model/Product/Validator/Plugin.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Model/Product/VariationHandler.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Model/ProductOptionProcessor.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Model/ProductVariationsBuilder.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Model/Quote/Item/CartItemProcessor.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Model/Quote/Item/ConfigurableItemOptionValue.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Model/Quote/Item/QuantityValidator/Initializer/Option/Plugin/ConfigurableProduct.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Model/ResourceModel/Attribute/OptionProvider.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Model/ResourceModel/Attribute/OptionSelectBuilder.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Model/ResourceModel/Attribute/OptionSelectBuilderInterface.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Model/ResourceModel/Indexer/Stock/Configurable.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Model/ResourceModel/Product/Indexer/Price/Configurable.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Model/ResourceModel/Product/LinkedProductSelectBuilder.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Model/ResourceModel/Product/StockStatusBaseSelectProcessor.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Model/ResourceModel/Product/Type/Configurable.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Model/ResourceModel/Product/Type/Configurable/Attribute.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Model/ResourceModel/Product/Type/Configurable/Attribute/Collection.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Model/ResourceModel/Product/Type/Configurable/Product/Collection.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Model/ResourceModel/Setup/PropertyMapper.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Model/SuggestedAttributeList.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Observer/HideUnsupportedAttributeTypes.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Plugin/Catalog/Model/Product/Pricing/Renderer/SalableResolver.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Plugin/Model/Attribute/Backend/AttributeValidation.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Plugin/Model/ResourceModel/Attribute/InStockOptionSelectBuilder.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Plugin/Model/ResourceModel/Product.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Pricing/Price/ConfigurableOptionsProvider.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Pricing/Price/ConfigurableOptionsProviderInterface.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Pricing/Price/ConfigurablePriceResolver.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Pricing/Price/ConfigurableRegularPrice.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Pricing/Price/ConfigurableRegularPriceInterface.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Pricing/Price/FinalPrice.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Pricing/Price/FinalPriceResolver.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Pricing/Price/LowestPriceOptionsProvider.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Pricing/Price/LowestPriceOptionsProviderInterface.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Pricing/Price/PriceResolverInterface.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Pricing/Price/RegularPriceResolver.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Pricing/Render/FinalPriceBox.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Pricing/Render/TierPriceBox.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/README.md
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Setup/InstallData.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Setup/Recurring.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Setup/UpgradeData.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Block/Adminhtml/Product/Edit/Button/SaveTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Block/Adminhtml/Product/Edit/Tab/Variations/Config/MatrixTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Block/Adminhtml/Product/Steps/SelectAttributesTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Block/Cart/Item/Renderer/ConfigurableTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Block/Plugin/Product/Media/GalleryTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Block/Product/Configurable/AttributeSelectorTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Block/Product/View/Type/ConfigurableTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Controller/Adminhtml/Product/AddAttributeTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Controller/Adminhtml/Product/Attribute/SuggestConfigurableAttributesTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Controller/Adminhtml/Product/Builder/PluginTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Controller/Adminhtml/Product/Initialization/Helper/Plugin/ConfigurableTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Controller/Adminhtml/Product/Initialization/Helper/Plugin/UpdateConfigurationsTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Controller/Adminhtml/Product/WizardTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Helper/DataTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Helper/Product/Configuration/PluginTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Helper/Product/Options/FactoryTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Helper/Product/Options/LoaderTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Model/Attribute/LockValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Model/AttributeOptionProviderTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Model/AttributesListTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Model/ConfigurableAttributeDataTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Model/ConfigurableProductManagementTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Model/Entity/Product/Attribute/Group/AttributeMapper/PluginTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Model/LinkManagementTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Model/OptionRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Model/Order/Admin/Item/Plugin/ConfigurableTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Model/Plugin/PriceBackendTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Model/Plugin/ProductRepositorySaveTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Cache/Tag/ConfigurableTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/CartConfiguration/Plugin/ConfigurableTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/ProductExtensionAttributes.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/ProductOptionExtensionAttributes.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/ReadHandlerTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/SaveHandlerTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/Collection/SalableProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/Configurable/PriceTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/ConfigurableTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/PluginTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/VariationMatrixTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/TypeTransitionManager/Plugin/ConfigurableTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Validator/PluginTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/VariationHandlerTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Model/ProductOptionProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Model/ProductVariationsBuilderTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Model/Quote/Item/CartItemProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Model/Quote/Item/QuantityValidator/Initializer/Option/Plugin/ConfigurableProductTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Model/ResourceModel/Attribute/OptionProviderTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Model/ResourceModel/Attribute/OptionSelectBuilderTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Model/ResourceModel/Product/LinkedProductSelectBuilderTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Model/ResourceModel/Product/StockStatusBaseSelectProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Model/ResourceModel/Product/Type/Configurable/AttributeTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Model/ResourceModel/Product/Type/ConfigurableTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Model/SuggestedAttributeListTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Observer/HideUnsupportedAttributeTypesTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Plugin/Model/ResourceModel/Attribute/InStockOptionSelectBuilderTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Plugin/Model/ResourceModel/ProductTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Pricing/Price/ConfigurablePriceResolverTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Pricing/Price/LowestPriceOptionsProviderTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Pricing/Render/FinalPriceBoxTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Ui/Component/Listing/AssociatedProduct/Columns/AttributesTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Ui/Component/Listing/AssociatedProduct/Columns/NameTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Ui/Component/Listing/AssociatedProduct/Columns/PriceTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/CompositeTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ConfigurableAttributeSetHandlerTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ConfigurablePanelTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ConfigurablePriceTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ConfigurableQtyTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/CustomOptionsTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/StockDataTest.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Ui/Component/Listing/AssociatedProduct/Attribute/Repository.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Ui/Component/Listing/AssociatedProduct/Columns.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Ui/Component/Listing/AssociatedProduct/Columns/Attributes.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Ui/Component/Listing/AssociatedProduct/Columns/Name.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Ui/Component/Listing/AssociatedProduct/Columns/Price.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Ui/Component/Listing/AssociatedProduct/Filters.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Ui/DataProvider/Attributes.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/Composite.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/ConfigurableAttributeSetHandler.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/ConfigurablePanel.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/ConfigurablePrice.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/ConfigurableQty.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/CustomOptions.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/Data/AssociatedProducts.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/StockData.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/composer.json
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/etc/adminhtml/events.xml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/etc/extension_attributes.xml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/etc/frontend/di.xml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/etc/product_types.xml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/etc/sales.xml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/etc/webapi.xml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/registration.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_addattribute.xml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_associated_grid.xml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_configurable.xml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_downloadable.xml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_new.xml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_set_edit.xml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_simple.xml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_view_type_configurable.xml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_virtual.xml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_wizard.xml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/attribute/new/created.phtml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/attribute/set/js.phtml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/composite/fieldset/configurable.phtml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/attribute/steps/attributes_values.phtml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/attribute/steps/bulk.phtml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/attribute/steps/select_attributes.phtml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/attribute/steps/summary.phtml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/super/config.phtml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/super/matrix.phtml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/super/wizard-ajax.phtml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/super/wizard.phtml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/templates/product/configurable/affected-attribute-set-selector/form.phtml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/templates/product/configurable/affected-attribute-set-selector/js.phtml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/templates/product/configurable/attribute-selector/js.phtml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/templates/product/configurable/stock/disabler.phtml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/ui_component/configurable_associated_product_listing.xml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/ui_component/product_attributes_listing.xml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/ui_component/product_form.xml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/web/css/configurable-product.css
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/associated-product-insert-listing.js
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/container-configurable-handler.js
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/custom-options-price-type.js
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/custom-options-warning.js
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/dynamic-rows-configurable.js
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/file-uploader.js
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/modal-configurable.js
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/price-configurable.js
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/configurable-type-handler.js
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/configurable.js
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/options/price-type-handler.js
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/paging/sizes.js
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/product-grid.js
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/steps/attributes_values.js
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/steps/bulk.js
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/steps/select_attributes.js
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/steps/summary.js
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/variations.js
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/web/product/product.css
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/web/template/components/actions-list.html
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/web/template/components/cell-html.html
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/web/template/components/cell-status.html
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/web/template/components/file-uploader.html
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/adminhtml/web/template/variations/steps/summary-grid.html
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/base/layout/catalog_product_prices.xml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/base/templates/product/price/final_price.phtml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/base/templates/product/price/tier_price.phtml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/frontend/layout/catalog_product_view_type_configurable.xml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/frontend/layout/checkout_cart_configure_type_configurable.xml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/frontend/layout/checkout_cart_item_renderers.xml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/frontend/layout/checkout_onepage_review_item_renderers.xml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/frontend/requirejs-config.js
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/frontend/templates/js/components.phtml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/frontend/templates/product/view/type/options/configurable.phtml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/frontend/ui_component/widget_recently_compared.xml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/frontend/ui_component/widget_recently_viewed.xml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/frontend/web/js/configurable-customer-data.js
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/frontend/web/js/configurable.js
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/frontend/web/js/options-updater.js
 mode change 100644 => 100755 app/code/Magento/ConfigurableProduct/view/frontend/web/template/product/minimal_price.html
 mode change 100644 => 100755 app/code/Magento/ConfigurableProductSales/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/ConfigurableProductSales/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/ConfigurableProductSales/Model/Order/Reorder/OrderedProductAvailabilityChecker.php
 mode change 100644 => 100755 app/code/Magento/ConfigurableProductSales/README.md
 mode change 100644 => 100755 app/code/Magento/ConfigurableProductSales/composer.json
 mode change 100644 => 100755 app/code/Magento/ConfigurableProductSales/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProductSales/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/ConfigurableProductSales/registration.php
 mode change 100644 => 100755 app/code/Magento/Contact/Block/ContactForm.php
 mode change 100644 => 100755 app/code/Magento/Contact/Controller/Index.php
 mode change 100644 => 100755 app/code/Magento/Contact/Controller/Index/Index.php
 mode change 100644 => 100755 app/code/Magento/Contact/Controller/Index/Post.php
 mode change 100644 => 100755 app/code/Magento/Contact/Helper/Data.php
 mode change 100644 => 100755 app/code/Magento/Contact/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Contact/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Contact/Model/Config.php
 mode change 100644 => 100755 app/code/Magento/Contact/Model/ConfigInterface.php
 mode change 100644 => 100755 app/code/Magento/Contact/Model/Mail.php
 mode change 100644 => 100755 app/code/Magento/Contact/Model/MailInterface.php
 mode change 100644 => 100755 app/code/Magento/Contact/Model/System/Config/Backend/Links.php
 mode change 100644 => 100755 app/code/Magento/Contact/README.md
 mode change 100644 => 100755 app/code/Magento/Contact/Test/Unit/Block/ContactFormTest.php
 mode change 100644 => 100755 app/code/Magento/Contact/Test/Unit/Controller/Index/IndexTest.php
 mode change 100644 => 100755 app/code/Magento/Contact/Test/Unit/Controller/Index/PostTest.php
 mode change 100644 => 100755 app/code/Magento/Contact/Test/Unit/Controller/IndexTest.php
 mode change 100644 => 100755 app/code/Magento/Contact/Test/Unit/Controller/Stub/IndexStub.php
 mode change 100644 => 100755 app/code/Magento/Contact/Test/Unit/Helper/DataTest.php
 mode change 100644 => 100755 app/code/Magento/Contact/Test/Unit/Model/MailTest.php
 mode change 100644 => 100755 app/code/Magento/Contact/Test/Unit/Model/System/Config/Backend/LinksTest.php
 mode change 100644 => 100755 app/code/Magento/Contact/composer.json
 mode change 100644 => 100755 app/code/Magento/Contact/etc/acl.xml
 mode change 100644 => 100755 app/code/Magento/Contact/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/Contact/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/Contact/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Contact/etc/email_templates.xml
 mode change 100644 => 100755 app/code/Magento/Contact/etc/frontend/di.xml
 mode change 100644 => 100755 app/code/Magento/Contact/etc/frontend/page_types.xml
 mode change 100644 => 100755 app/code/Magento/Contact/etc/frontend/routes.xml
 mode change 100644 => 100755 app/code/Magento/Contact/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Contact/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Contact/registration.php
 mode change 100644 => 100755 app/code/Magento/Contact/view/frontend/email/submitted_form.html
 mode change 100644 => 100755 app/code/Magento/Contact/view/frontend/layout/contact_index_index.xml
 mode change 100644 => 100755 app/code/Magento/Contact/view/frontend/layout/default.xml
 mode change 100644 => 100755 app/code/Magento/Contact/view/frontend/templates/form.phtml
 mode change 100644 => 100755 app/code/Magento/Cookie/Block/Html/Notices.php
 mode change 100644 => 100755 app/code/Magento/Cookie/Block/RequireCookie.php
 mode change 100644 => 100755 app/code/Magento/Cookie/Controller/Index/NoCookies.php
 mode change 100644 => 100755 app/code/Magento/Cookie/Helper/Cookie.php
 mode change 100644 => 100755 app/code/Magento/Cookie/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Cookie/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Cookie/Model/Config/Backend/Cookie.php
 mode change 100644 => 100755 app/code/Magento/Cookie/Model/Config/Backend/Domain.php
 mode change 100644 => 100755 app/code/Magento/Cookie/Model/Config/Backend/Lifetime.php
 mode change 100644 => 100755 app/code/Magento/Cookie/Model/Config/Backend/Path.php
 mode change 100644 => 100755 app/code/Magento/Cookie/README.md
 mode change 100644 => 100755 app/code/Magento/Cookie/Test/Unit/Controller/Index/NoCookiesTest.php
 mode change 100644 => 100755 app/code/Magento/Cookie/Test/Unit/Helper/CookieTest.php
 mode change 100644 => 100755 app/code/Magento/Cookie/Test/Unit/Model/Config/Backend/DomainTest.php
 mode change 100644 => 100755 app/code/Magento/Cookie/Test/Unit/Model/Config/Backend/LifetimeTest.php
 mode change 100644 => 100755 app/code/Magento/Cookie/Test/Unit/Model/Config/Backend/PathTest.php
 mode change 100644 => 100755 app/code/Magento/Cookie/composer.json
 mode change 100644 => 100755 app/code/Magento/Cookie/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/Cookie/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/Cookie/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Cookie/etc/frontend/routes.xml
 mode change 100644 => 100755 app/code/Magento/Cookie/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Cookie/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Cookie/registration.php
 mode change 100644 => 100755 app/code/Magento/Cookie/view/frontend/layout/default.xml
 mode change 100644 => 100755 app/code/Magento/Cookie/view/frontend/requirejs-config.js
 mode change 100644 => 100755 app/code/Magento/Cookie/view/frontend/templates/html/notices.phtml
 mode change 100644 => 100755 app/code/Magento/Cookie/view/frontend/templates/require_cookie.phtml
 mode change 100644 => 100755 app/code/Magento/Cookie/view/frontend/web/js/notices.js
 mode change 100644 => 100755 app/code/Magento/Cookie/view/frontend/web/js/require-cookie.js
 mode change 100644 => 100755 app/code/Magento/Cron/Console/Command/CronCommand.php
 mode change 100644 => 100755 app/code/Magento/Cron/Console/Command/CronInstallCommand.php
 mode change 100644 => 100755 app/code/Magento/Cron/Console/Command/CronRemoveCommand.php
 mode change 100644 => 100755 app/code/Magento/Cron/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Cron/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Cron/Model/Backend/Config/Structure/Converter.php
 mode change 100644 => 100755 app/code/Magento/Cron/Model/Config.php
 mode change 100644 => 100755 app/code/Magento/Cron/Model/Config/Backend/Product/Alert.php
 mode change 100644 => 100755 app/code/Magento/Cron/Model/Config/Backend/Sitemap.php
 mode change 100644 => 100755 app/code/Magento/Cron/Model/Config/Converter/Db.php
 mode change 100644 => 100755 app/code/Magento/Cron/Model/Config/Converter/Xml.php
 mode change 100644 => 100755 app/code/Magento/Cron/Model/Config/Data.php
 mode change 100644 => 100755 app/code/Magento/Cron/Model/Config/Reader/Db.php
 mode change 100644 => 100755 app/code/Magento/Cron/Model/Config/Reader/Xml.php
 mode change 100644 => 100755 app/code/Magento/Cron/Model/Config/SchemaLocator.php
 mode change 100644 => 100755 app/code/Magento/Cron/Model/Config/Source/Frequency.php
 mode change 100644 => 100755 app/code/Magento/Cron/Model/ConfigInterface.php
 mode change 100644 => 100755 app/code/Magento/Cron/Model/Groups/Config/Converter/Xml.php
 mode change 100644 => 100755 app/code/Magento/Cron/Model/Groups/Config/Data.php
 mode change 100644 => 100755 app/code/Magento/Cron/Model/Groups/Config/Reader/Xml.php
 mode change 100644 => 100755 app/code/Magento/Cron/Model/Groups/Config/SchemaLocator.php
 mode change 100644 => 100755 app/code/Magento/Cron/Model/ResourceModel/Schedule.php
 mode change 100644 => 100755 app/code/Magento/Cron/Model/ResourceModel/Schedule/Collection.php
 mode change 100644 => 100755 app/code/Magento/Cron/Model/Schedule.php
 mode change 100644 => 100755 app/code/Magento/Cron/Model/System/Config/Initial/Converter.php
 mode change 100644 => 100755 app/code/Magento/Cron/Observer/ProcessCronQueueObserver.php
 mode change 100644 => 100755 app/code/Magento/Cron/README.md
 mode change 100644 => 100755 app/code/Magento/Cron/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/Cron/Setup/Recurring.php
 mode change 100644 => 100755 app/code/Magento/Cron/Test/Unit/Console/Command/CronCommandTest.php
 mode change 100644 => 100755 app/code/Magento/Cron/Test/Unit/Console/Command/CronInstallCommandTest.php
 mode change 100644 => 100755 app/code/Magento/Cron/Test/Unit/Console/Command/CronRemoveCommandTest.php
 mode change 100644 => 100755 app/code/Magento/Cron/Test/Unit/Model/Config/Converter/DbTest.php
 mode change 100644 => 100755 app/code/Magento/Cron/Test/Unit/Model/Config/Converter/XmlTest.php
 mode change 100644 => 100755 app/code/Magento/Cron/Test/Unit/Model/Config/DataTest.php
 mode change 100644 => 100755 app/code/Magento/Cron/Test/Unit/Model/Config/Reader/DbTest.php
 mode change 100644 => 100755 app/code/Magento/Cron/Test/Unit/Model/Config/Reader/XmlTest.php
 mode change 100644 => 100755 app/code/Magento/Cron/Test/Unit/Model/Config/SchemaLocatorTest.php
 mode change 100644 => 100755 app/code/Magento/Cron/Test/Unit/Model/Config/XsdTest.php
 mode change 100644 => 100755 app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_invalid.xml
 mode change 100644 => 100755 app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_invalid_duplicates.xml
 mode change 100644 => 100755 app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_invalid_node_typo.xml
 mode change 100644 => 100755 app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_invalid_without_instance.xml
 mode change 100644 => 100755 app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_invalid_without_method.xml
 mode change 100644 => 100755 app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_invalid_without_name.xml
 mode change 100644 => 100755 app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_valid.xml
 mode change 100644 => 100755 app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_valid_without_schedule.xml
 mode change 100644 => 100755 app/code/Magento/Cron/Test/Unit/Model/ConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Cron/Test/Unit/Model/CronJobException.php
 mode change 100644 => 100755 app/code/Magento/Cron/Test/Unit/Model/Groups/Config/Converter/XmlTest.php
 mode change 100644 => 100755 app/code/Magento/Cron/Test/Unit/Model/ScheduleTest.php
 mode change 100644 => 100755 app/code/Magento/Cron/Test/Unit/Observer/ProcessCronQueueObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Cron/composer.json
 mode change 100644 => 100755 app/code/Magento/Cron/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/Cron/etc/cron_groups.xml
 mode change 100644 => 100755 app/code/Magento/Cron/etc/cron_groups.xsd
 mode change 100644 => 100755 app/code/Magento/Cron/etc/crontab.xsd
 mode change 100644 => 100755 app/code/Magento/Cron/etc/crontab/events.xml
 mode change 100644 => 100755 app/code/Magento/Cron/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Cron/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Cron/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Cron/registration.php
 mode change 100644 => 100755 app/code/Magento/CurrencySymbol/Block/Adminhtml/System/Currency.php
 mode change 100644 => 100755 app/code/Magento/CurrencySymbol/Block/Adminhtml/System/Currency/Rate/Matrix.php
 mode change 100644 => 100755 app/code/Magento/CurrencySymbol/Block/Adminhtml/System/Currency/Rate/Services.php
 mode change 100644 => 100755 app/code/Magento/CurrencySymbol/Block/Adminhtml/System/Currencysymbol.php
 mode change 100644 => 100755 app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currency.php
 mode change 100644 => 100755 app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currency/FetchRates.php
 mode change 100644 => 100755 app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currency/Index.php
 mode change 100644 => 100755 app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currency/SaveRates.php
 mode change 100644 => 100755 app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currencysymbol.php
 mode change 100644 => 100755 app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currencysymbol/Index.php
 mode change 100644 => 100755 app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currencysymbol/Save.php
 mode change 100644 => 100755 app/code/Magento/CurrencySymbol/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/CurrencySymbol/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/CurrencySymbol/Model/System/Currencysymbol.php
 mode change 100644 => 100755 app/code/Magento/CurrencySymbol/Observer/CurrencyDisplayOptions.php
 mode change 100644 => 100755 app/code/Magento/CurrencySymbol/README.md
 mode change 100644 => 100755 app/code/Magento/CurrencySymbol/Setup/UpgradeData.php
 mode change 100644 => 100755 app/code/Magento/CurrencySymbol/Test/Unit/Block/Adminhtml/System/Currency/Rate/MatrixTest.php
 mode change 100644 => 100755 app/code/Magento/CurrencySymbol/Test/Unit/Block/Adminhtml/System/Currency/Rate/ServicesTest.php
 mode change 100644 => 100755 app/code/Magento/CurrencySymbol/Test/Unit/Block/Adminhtml/System/CurrencyTest.php
 mode change 100644 => 100755 app/code/Magento/CurrencySymbol/Test/Unit/Block/Adminhtml/System/CurrencysymbolTest.php
 mode change 100644 => 100755 app/code/Magento/CurrencySymbol/Test/Unit/Controller/Adminhtml/System/Currencysymbol/IndexTest.php
 mode change 100644 => 100755 app/code/Magento/CurrencySymbol/Test/Unit/Controller/Adminhtml/System/Currencysymbol/SaveTest.php
 mode change 100644 => 100755 app/code/Magento/CurrencySymbol/Test/Unit/Model/System/CurrencysymbolTest.php
 mode change 100644 => 100755 app/code/Magento/CurrencySymbol/Test/Unit/Observer/CurrencyDisplayOptionsTest.php
 mode change 100644 => 100755 app/code/Magento/CurrencySymbol/composer.json
 mode change 100644 => 100755 app/code/Magento/CurrencySymbol/etc/acl.xml
 mode change 100644 => 100755 app/code/Magento/CurrencySymbol/etc/adminhtml/menu.xml
 mode change 100644 => 100755 app/code/Magento/CurrencySymbol/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/CurrencySymbol/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/CurrencySymbol/etc/events.xml
 mode change 100644 => 100755 app/code/Magento/CurrencySymbol/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/CurrencySymbol/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/CurrencySymbol/registration.php
 mode change 100644 => 100755 app/code/Magento/CurrencySymbol/view/adminhtml/layout/adminhtml_system_currency_index.xml
 mode change 100644 => 100755 app/code/Magento/CurrencySymbol/view/adminhtml/layout/adminhtml_system_currencysymbol_index.xml
 mode change 100644 => 100755 app/code/Magento/CurrencySymbol/view/adminhtml/templates/grid.phtml
 mode change 100644 => 100755 app/code/Magento/CurrencySymbol/view/adminhtml/templates/system/currency/rate/matrix.phtml
 mode change 100644 => 100755 app/code/Magento/CurrencySymbol/view/adminhtml/templates/system/currency/rate/services.phtml
 mode change 100644 => 100755 app/code/Magento/CurrencySymbol/view/adminhtml/templates/system/currency/rates.phtml
 mode change 100644 => 100755 app/code/Magento/Customer/Api/AccountManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Customer/Api/AddressMetadataInterface.php
 mode change 100644 => 100755 app/code/Magento/Customer/Api/AddressMetadataManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Customer/Api/AddressRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Customer/Api/CustomerGroupConfigInterface.php
 mode change 100644 => 100755 app/code/Magento/Customer/Api/CustomerManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Customer/Api/CustomerMetadataInterface.php
 mode change 100644 => 100755 app/code/Magento/Customer/Api/CustomerMetadataManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Customer/Api/CustomerNameGenerationInterface.php
 mode change 100644 => 100755 app/code/Magento/Customer/Api/CustomerRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Customer/Api/Data/AddressInterface.php
 mode change 100644 => 100755 app/code/Magento/Customer/Api/Data/AddressSearchResultsInterface.php
 mode change 100644 => 100755 app/code/Magento/Customer/Api/Data/AttributeMetadataInterface.php
 mode change 100644 => 100755 app/code/Magento/Customer/Api/Data/CustomerInterface.php
 mode change 100644 => 100755 app/code/Magento/Customer/Api/Data/CustomerSearchResultsInterface.php
 mode change 100644 => 100755 app/code/Magento/Customer/Api/Data/GroupInterface.php
 mode change 100644 => 100755 app/code/Magento/Customer/Api/Data/GroupSearchResultsInterface.php
 mode change 100644 => 100755 app/code/Magento/Customer/Api/Data/OptionInterface.php
 mode change 100644 => 100755 app/code/Magento/Customer/Api/Data/RegionInterface.php
 mode change 100644 => 100755 app/code/Magento/Customer/Api/Data/ValidationResultsInterface.php
 mode change 100644 => 100755 app/code/Magento/Customer/Api/Data/ValidationRuleInterface.php
 mode change 100644 => 100755 app/code/Magento/Customer/Api/GroupManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Customer/Api/GroupRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Customer/Api/MetadataInterface.php
 mode change 100644 => 100755 app/code/Magento/Customer/Api/MetadataManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Account/AuthenticationPopup.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Account/AuthorizationLink.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Account/Customer.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Account/Dashboard.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Account/Dashboard/Address.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Account/Dashboard/Info.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Account/Delimiter.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Account/Forgotpassword.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Account/Link.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Account/Navigation.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Account/RegisterLink.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Account/Resetpassword.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Account/SortLink.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Account/SortLinkInterface.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Address/Book.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Address/Edit.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Address/Renderer/DefaultRenderer.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Address/Renderer/RendererInterface.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Adminhtml/Edit.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Adminhtml/Edit/BackButton.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Adminhtml/Edit/DeleteButton.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Adminhtml/Edit/Form.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Adminhtml/Edit/GenericButton.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Adminhtml/Edit/InvalidateTokenButton.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Adminhtml/Edit/OrderButton.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Adminhtml/Edit/Renderer/Region.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Adminhtml/Edit/ResetButton.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Adminhtml/Edit/ResetPasswordButton.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Adminhtml/Edit/SaveAndContinueButton.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Adminhtml/Edit/SaveButton.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Cart.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Carts.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/GenericMetadata.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Newsletter.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Newsletter/Grid.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Newsletter/Grid/Filter/Status.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Newsletter/Grid/Renderer/Action.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Newsletter/Grid/Renderer/Status.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Orders.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Reviews.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/View.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/View/Cart.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/View/Grid/Renderer/Item.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/View/PersonalInfo.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/View/Sales.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/View/Wishlist.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Wishlist/Grid/Renderer/Description.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Adminhtml/Edit/UnlockButton.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Adminhtml/Form/Element/Boolean.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Adminhtml/Form/Element/File.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Adminhtml/Form/Element/Image.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Adminhtml/Grid/Filter/Country.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Adminhtml/Grid/Renderer/Multiaction.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Adminhtml/Group.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Adminhtml/Group/Edit.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Adminhtml/Group/Edit/Form.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Adminhtml/Sales/Order/Address/Form/Renderer/Vat.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Adminhtml/System/Config/Validatevat.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/CustomerData.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/CustomerScopeData.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Form/Edit.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Form/Login.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Form/Login/Info.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Form/Register.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Newsletter.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/SectionConfig.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Widget/AbstractWidget.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Widget/Company.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Widget/Dob.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Widget/Fax.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Widget/Gender.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Widget/Name.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Widget/Taxvat.php
 mode change 100644 => 100755 app/code/Magento/Customer/Block/Widget/Telephone.php
 mode change 100644 => 100755 app/code/Magento/Customer/Console/Command/UpgradeHashAlgorithmCommand.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/AbstractAccount.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Account/Confirm.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Account/Confirmation.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Account/Create.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Account/CreatePassword.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Account/CreatePost.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Account/Edit.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Account/EditPost.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Account/ForgotPassword.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Account/ForgotPasswordPost.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Account/Index.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Account/Login.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Account/LoginPost.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Account/Logout.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Account/LogoutSuccess.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Account/ResetPasswordPost.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/AccountInterface.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Address.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Address/Delete.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Address/Edit.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Address/Form.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Address/FormPost.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Address/Index.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Address/NewAction.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Adminhtml/Cart/Product/Composite/Cart.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Adminhtml/Cart/Product/Composite/Cart/Configure.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Adminhtml/Cart/Product/Composite/Cart/Update.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Adminhtml/Customer/InvalidateToken.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Adminhtml/File/Address/Upload.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Adminhtml/File/Customer/Upload.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Adminhtml/Group.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Adminhtml/Group/Delete.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Adminhtml/Group/Edit.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Adminhtml/Group/Index.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Adminhtml/Group/NewAction.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Adminhtml/Group/Save.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Adminhtml/Index.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Adminhtml/Index/AbstractMassAction.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Adminhtml/Index/Cart.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Adminhtml/Index/Carts.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Adminhtml/Index/Delete.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Adminhtml/Index/Edit.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Adminhtml/Index/Index.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Adminhtml/Index/InlineEdit.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Adminhtml/Index/LastOrders.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Adminhtml/Index/MassAssignGroup.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Adminhtml/Index/MassDelete.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Adminhtml/Index/MassSubscribe.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Adminhtml/Index/MassUnsubscribe.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Adminhtml/Index/NewAction.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Adminhtml/Index/Newsletter.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Adminhtml/Index/Orders.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Adminhtml/Index/ProductReviews.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Adminhtml/Index/ResetPassword.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Adminhtml/Index/Save.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Adminhtml/Index/Validate.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Adminhtml/Index/ViewCart.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Adminhtml/Index/ViewWishlist.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Adminhtml/Index/Viewfile.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Adminhtml/Index/Wishlist.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Adminhtml/Locks/Unlock.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Adminhtml/Online/Index.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Adminhtml/System/Config/Validatevat.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Adminhtml/System/Config/Validatevat/Validate.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Adminhtml/System/Config/Validatevat/ValidateAdvanced.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Adminhtml/Wishlist/Product/Composite/Wishlist.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Adminhtml/Wishlist/Product/Composite/Wishlist/Configure.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Adminhtml/Wishlist/Product/Composite/Wishlist/Update.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Ajax/Login.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Ajax/Logout.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Plugin/Account.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/RegistryConstants.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Review.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Review/Index.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Review/View.php
 mode change 100644 => 100755 app/code/Magento/Customer/Controller/Section/Load.php
 mode change 100644 => 100755 app/code/Magento/Customer/CustomerData/Customer.php
 mode change 100644 => 100755 app/code/Magento/Customer/CustomerData/JsLayoutDataProviderInterface.php
 mode change 100644 => 100755 app/code/Magento/Customer/CustomerData/JsLayoutDataProviderPool.php
 mode change 100644 => 100755 app/code/Magento/Customer/CustomerData/JsLayoutDataProviderPoolInterface.php
 mode change 100644 => 100755 app/code/Magento/Customer/CustomerData/Plugin/SessionChecker.php
 mode change 100644 => 100755 app/code/Magento/Customer/CustomerData/SchemaLocator.php
 mode change 100644 => 100755 app/code/Magento/Customer/CustomerData/Section/Identifier.php
 mode change 100644 => 100755 app/code/Magento/Customer/CustomerData/SectionConfigConverter.php
 mode change 100644 => 100755 app/code/Magento/Customer/CustomerData/SectionPool.php
 mode change 100644 => 100755 app/code/Magento/Customer/CustomerData/SectionPoolInterface.php
 mode change 100644 => 100755 app/code/Magento/Customer/CustomerData/SectionSourceInterface.php
 mode change 100644 => 100755 app/code/Magento/Customer/Helper/Address.php
 mode change 100644 => 100755 app/code/Magento/Customer/Helper/Session/CurrentCustomer.php
 mode change 100644 => 100755 app/code/Magento/Customer/Helper/Session/CurrentCustomerAddress.php
 mode change 100644 => 100755 app/code/Magento/Customer/Helper/View.php
 mode change 100644 => 100755 app/code/Magento/Customer/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Customer/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Account/Redirect.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/AccountConfirmation.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/AccountManagement.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Address.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Address/AbstractAddress.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Address/AddressModelInterface.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Address/Config.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Address/Config/Converter.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Address/Config/Reader.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Address/Config/SchemaLocator.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Address/CustomAttributeList.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Address/CustomAttributeListInterface.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Address/Form.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Address/Mapper.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Address/Validator/Postcode.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/AddressRegistry.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/App/Action/ContextPlugin.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Attribute.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Attribute/Backend/Data/Boolean.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Attribute/Data/AbstractData.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Attribute/Data/Boolean.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Attribute/Data/Date.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Attribute/Data/File.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Attribute/Data/Hidden.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Attribute/Data/Image.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Attribute/Data/Multiline.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Attribute/Data/Multiselect.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Attribute/Data/Postcode.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Attribute/Data/Select.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Attribute/Data/Text.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Attribute/Data/Textarea.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/AttributeChecker.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/AttributeMetadataConverter.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/AttributeMetadataDataProvider.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Authentication.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/AuthenticationInterface.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Authorization/CustomerSessionUserContext.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Backend/Customer.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Cache/Type/Notification.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Cart/ConfigPlugin.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Checkout/ConfigProvider.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Config/Backend/Address/Street.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Config/Backend/CreateAccount/DisableAutoGroupAssignDefault.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Config/Backend/Password/Link/Expirationperiod.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Config/Backend/Show/Address.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Config/Backend/Show/AddressOnly.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Config/Backend/Show/Customer.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Config/Share.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Config/Source/Address/Type.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Config/Source/Group.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Config/Source/Group/Multiselect.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Context.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Customer.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Customer/Attribute/Backend/Billing.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Customer/Attribute/Backend/Password.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Customer/Attribute/Backend/Shipping.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Customer/Attribute/Backend/Store.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Customer/Attribute/Backend/Website.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Customer/Attribute/Source/Group.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Customer/Attribute/Source/GroupSourceLoggedInOnlyInterface.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Customer/Attribute/Source/Store.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Customer/Attribute/Source/Website.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Customer/CredentialsValidator.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Customer/DataProvider.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Customer/Mapper.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Customer/NotificationStorage.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Customer/Source/Group.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Customer/Source/GroupSourceInterface.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/CustomerAuthUpdate.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/CustomerExtractor.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/CustomerGroupConfig.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/CustomerManagement.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/CustomerRegistry.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Data/Address.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Data/AttributeMetadata.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Data/Customer.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Data/CustomerSecure.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Data/Group.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Data/Option.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Data/Region.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Data/ValidationResults.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Data/ValidationRule.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/EmailNotification.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/EmailNotificationInterface.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/FileProcessor.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/FileUploader.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Form.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Group.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Group/Retriever.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Group/RetrieverInterface.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/GroupManagement.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/GroupRegistry.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Indexer/Address/AttributeProvider.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Indexer/Attribute/Filter.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Indexer/AttributeProvider.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Indexer/Source.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Layout/DepersonalizePlugin.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Log.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Logger.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Metadata/AddressCachedMetadata.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Metadata/AddressMetadata.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Metadata/AddressMetadataManagement.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Metadata/AttributeMetadataCache.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Metadata/AttributeMetadataHydrator.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Metadata/AttributeResolver.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Metadata/CachedMetadata.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Metadata/CustomerCachedMetadata.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Metadata/CustomerMetadata.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Metadata/CustomerMetadataManagement.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Metadata/ElementFactory.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Metadata/Form.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Metadata/Form/AbstractData.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Metadata/Form/Boolean.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Metadata/Form/Date.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Metadata/Form/File.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Metadata/Form/Hidden.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Metadata/Form/Image.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Metadata/Form/Multiline.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Metadata/Form/Multiselect.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Metadata/Form/Postcode.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Metadata/Form/Select.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Metadata/Form/Text.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Metadata/Form/Textarea.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Metadata/FormFactory.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Metadata/Validator.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Observer/Grid.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Options.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Plugin/AllowedCountries.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Plugin/CustomerAuthorization.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Plugin/CustomerFlushFormKey.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Plugin/CustomerNotification.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Plugin/CustomerRepository/TransactionWrapper.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Registration.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Renderer/Region.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/ResourceModel/Address.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/ResourceModel/Address/Attribute/Backend/Region.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/ResourceModel/Address/Attribute/Collection.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/ResourceModel/Address/Attribute/Source/Country.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/ResourceModel/Address/Attribute/Source/CountryWithWebsites.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/ResourceModel/Address/Attribute/Source/Region.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/ResourceModel/Address/Collection.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/ResourceModel/Address/DeleteRelation.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/ResourceModel/Address/Relation.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/ResourceModel/AddressRepository.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/ResourceModel/Attribute.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/ResourceModel/Attribute/Collection.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/ResourceModel/Customer.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/ResourceModel/Customer/Collection.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/ResourceModel/Customer/Grid.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/ResourceModel/Customer/Indexer/Collection.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/ResourceModel/Customer/Relation.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/ResourceModel/CustomerRepository.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/ResourceModel/Db/VersionControl/AddressSnapshot.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/ResourceModel/Form/Attribute.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/ResourceModel/Form/Attribute/Collection.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/ResourceModel/Grid/Collection.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/ResourceModel/Group.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/ResourceModel/Group/Collection.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/ResourceModel/Group/Grid/Collection.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/ResourceModel/Group/Grid/ServiceCollection.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/ResourceModel/GroupRepository.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/ResourceModel/Online/Grid/Collection.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/ResourceModel/Setup/PropertyMapper.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/ResourceModel/Visitor.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/ResourceModel/Visitor/Collection.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Session.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Session/Storage.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Url.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Vat.php
 mode change 100644 => 100755 app/code/Magento/Customer/Model/Visitor.php
 mode change 100644 => 100755 app/code/Magento/Customer/Observer/AfterAddressSaveObserver.php
 mode change 100644 => 100755 app/code/Magento/Customer/Observer/BeforeAddressSaveObserver.php
 mode change 100644 => 100755 app/code/Magento/Customer/Observer/CustomerLoginSuccessObserver.php
 mode change 100644 => 100755 app/code/Magento/Customer/Observer/LogLastLoginAtObserver.php
 mode change 100644 => 100755 app/code/Magento/Customer/Observer/LogLastLogoutAtObserver.php
 mode change 100644 => 100755 app/code/Magento/Customer/Observer/UpgradeCustomerPasswordObserver.php
 mode change 100644 => 100755 app/code/Magento/Customer/Observer/Visitor/AbstractVisitorObserver.php
 mode change 100644 => 100755 app/code/Magento/Customer/Observer/Visitor/BindCustomerLoginObserver.php
 mode change 100644 => 100755 app/code/Magento/Customer/Observer/Visitor/BindCustomerLogoutObserver.php
 mode change 100644 => 100755 app/code/Magento/Customer/Observer/Visitor/BindQuoteCreateObserver.php
 mode change 100644 => 100755 app/code/Magento/Customer/Observer/Visitor/BindQuoteDestroyObserver.php
 mode change 100644 => 100755 app/code/Magento/Customer/Observer/Visitor/InitByRequestObserver.php
 mode change 100644 => 100755 app/code/Magento/Customer/Observer/Visitor/SaveByRequestObserver.php
 mode change 100644 => 100755 app/code/Magento/Customer/README.md
 mode change 100644 => 100755 app/code/Magento/Customer/Setup/CustomerSetup.php
 mode change 100644 => 100755 app/code/Magento/Customer/Setup/InstallData.php
 mode change 100644 => 100755 app/code/Magento/Customer/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/Customer/Setup/UpgradeData.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Block/Account/AuthenticationPopupTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Block/Account/AuthorizationLinkTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Block/Account/CustomerTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Block/Account/Dashboard/InfoTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Block/Account/LinkTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Block/Account/RegisterLinkTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Block/Account/ResetpasswordTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Block/Address/EditTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Block/Adminhtml/Edit/Tab/NewsletterTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Block/Adminhtml/Edit/Tab/View/Grid/Renderer/ItemTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Block/Adminhtml/Edit/Tab/View/PersonalInfoTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Block/Adminhtml/Edit/Tab/ViewTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Block/Adminhtml/Edit/UnlockButtonTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Block/Adminhtml/From/Element/ImageTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Block/CustomerDataTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Block/CustomerScopeDataTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Block/Form/EditTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Block/Form/Login/InfoTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Block/Form/RegisterTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Block/NewsletterTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Block/SectionConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Block/Widget/AbstractWidgetTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Block/Widget/DobTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Block/Widget/GenderTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Block/Widget/NameTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Block/Widget/TaxvatTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Console/Command/UpgradeHashAlgorithmCommandTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Controller/Account/ConfirmTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Controller/Account/ConfirmationTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Controller/Account/CreatePasswordTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Controller/Account/CreatePostTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Controller/Account/CreateTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Controller/Account/EditPostTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Controller/Account/ForgotPasswordPostTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Controller/Account/LoginPostTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Controller/Account/LogoutTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Controller/Account/ResetPasswordPostTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Controller/Address/DeleteTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Controller/Address/FormPostTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/File/Address/UploadTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/File/Customer/UploadTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Group/SaveTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/IndexTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/InlineEditTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/MassAssignGroupTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/MassDeleteTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/MassSubscribeTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/MassUnsubscribeTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/NewsletterTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/ResetPasswordTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/SaveTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/ValidateTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/ViewfileTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Locks/UnlockTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/System/Config/Validatevat/ValidateTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Controller/Ajax/LoginTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Controller/Plugin/AccountTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Controller/Section/LoadTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/CustomerData/Plugin/SessionCheckerTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/CustomerData/Section/IdentifierTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/CustomerData/SectionConfigConverterTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/CustomerData/SectionPoolTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/CustomerData/_files/sections.xml
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Helper/AddressTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Helper/Session/CurrentCustomerAddressTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Helper/Session/CurrentCustomerTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Helper/ViewTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Account/RedirectTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/AccountConfirmationTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/AccountManagementTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Address/AbstractAddressTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Address/Config/ConverterTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Address/Config/ReaderTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Address/Config/SchemaLocatorTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Address/Config/XsdTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Address/Config/_files/formats_merged.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Address/Config/_files/formats_merged.xml
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Address/Config/_files/formats_one.xml
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Address/Config/_files/formats_two.xml
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Address/ConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Address/MapperTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Address/Validator/PostcodeTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/AddressRegistryTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/AddressTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/App/Action/ContextPluginTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Attribute/Backend/BooleanTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Attribute/Data/PostcodeTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/AttributeCheckerTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/AttributeMetadatConverterTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/AttributeTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/AuthenticationTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Authorization/CustomerSessionUserContextTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Backend/CustomerTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Checkout/ConfigProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Config/Backend/CreateAccount/DisableAutoGroupAssignDefaultTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Config/Source/Address/TypeTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Config/Source/Group/MultiselectTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Config/Source/GroupTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Customer/Attribute/Backend/BillingTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Customer/Attribute/Backend/PasswordTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Customer/Attribute/Backend/ShippingTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Customer/Attribute/Backend/StoreTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Customer/Attribute/Backend/WebsiteTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Customer/Attribute/Source/WebsiteTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Customer/CredentialsValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Customer/DataProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Customer/NotificationStorageTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Customer/Source/GroupTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/CustomerAuthUpdateTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/CustomerExtractorTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/CustomerGroupConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/CustomerManagementTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/CustomerRegistryTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/CustomerTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/EmailNotificationTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/FileProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/FileUploaderTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/GroupRegistryTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Indexer/Attribute/FilterTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Indexer/AttributeProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Layout/DepersonalizePluginTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/LogTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/LoggerTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Metadata/AddressMetadataManagementTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Metadata/AddressMetadataTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Metadata/AttributeMetadataCacheTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Metadata/AttributeMetadataHydratorTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Metadata/AttributeResolverTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Metadata/CustomerMetadataManagementTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Metadata/ElementFactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/AbstractDataTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/AbstractFormTestCase.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/BooleanTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/DateTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/ExtendsAbstractData.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/FileTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/HiddenTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/ImageTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/MultilineTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/MultiselectTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/PostcodeTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/SelectTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/TextTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/TextareaTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/_files/logo.gif
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Metadata/ValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Plugin/AllowedCountriesTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Plugin/CustomerFlushFormKeyTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Plugin/CustomerNotificationTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Plugin/CustomerRepository/TransactionWrapperTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/Renderer/RegionTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Address/Attribute/Backend/RegionTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Address/Attribute/Source/CountryWithWebsitesTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Address/DeleteRelationTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Address/RelationTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/ResourceModel/AddressRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/ResourceModel/AddressTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Customer/GridTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/ResourceModel/CustomerRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Db/VersionControl/AddressSnapshotTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Group/Grid/ServiceCollectionTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/ResourceModel/GroupRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/ResourceModel/GroupTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/SessionTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Model/VisitorTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Observer/AfterAddressSaveObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Observer/BeforeAddressSaveObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Observer/CustomerLoginSuccessObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Observer/LogLastLoginAtObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Observer/LogLastLogoutAtObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Observer/UpgradeCustomerPasswordObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Ui/Component/ColumnFactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Ui/Component/DataProvider/DocumentTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Ui/Component/DataProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Ui/Component/FilterFactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/AttributeRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/Column/AccountLockTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/Column/ActionsTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/Column/AttributeColumnTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/Column/ConfirmationTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/Column/InlineEditUpdaterTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/Column/ValidationRulesTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/ColumnsTest.php
 mode change 100644 => 100755 app/code/Magento/Customer/Ui/Component/ColumnFactory.php
 mode change 100644 => 100755 app/code/Magento/Customer/Ui/Component/DataProvider.php
 mode change 100644 => 100755 app/code/Magento/Customer/Ui/Component/DataProvider/Document.php
 mode change 100644 => 100755 app/code/Magento/Customer/Ui/Component/FilterFactory.php
 mode change 100644 => 100755 app/code/Magento/Customer/Ui/Component/Listing/AttributeRepository.php
 mode change 100644 => 100755 app/code/Magento/Customer/Ui/Component/Listing/Column/AccountLock.php
 mode change 100644 => 100755 app/code/Magento/Customer/Ui/Component/Listing/Column/Actions.php
 mode change 100644 => 100755 app/code/Magento/Customer/Ui/Component/Listing/Column/AttributeColumn.php
 mode change 100644 => 100755 app/code/Magento/Customer/Ui/Component/Listing/Column/Confirmation.php
 mode change 100644 => 100755 app/code/Magento/Customer/Ui/Component/Listing/Column/Group/Options.php
 mode change 100644 => 100755 app/code/Magento/Customer/Ui/Component/Listing/Column/InlineEditUpdater.php
 mode change 100644 => 100755 app/code/Magento/Customer/Ui/Component/Listing/Column/Online/Type.php
 mode change 100644 => 100755 app/code/Magento/Customer/Ui/Component/Listing/Column/Online/Type/Options.php
 mode change 100644 => 100755 app/code/Magento/Customer/Ui/Component/Listing/Column/ValidationRules.php
 mode change 100644 => 100755 app/code/Magento/Customer/Ui/Component/Listing/Column/Websites.php
 mode change 100644 => 100755 app/code/Magento/Customer/Ui/Component/Listing/Columns.php
 mode change 100644 => 100755 app/code/Magento/Customer/Ui/Component/MassAction/Group/Options.php
 mode change 100644 => 100755 app/code/Magento/Customer/composer.json
 mode change 100644 => 100755 app/code/Magento/Customer/etc/acl.xml
 mode change 100644 => 100755 app/code/Magento/Customer/etc/address_formats.xml
 mode change 100644 => 100755 app/code/Magento/Customer/etc/address_formats.xsd
 mode change 100644 => 100755 app/code/Magento/Customer/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/Customer/etc/adminhtml/menu.xml
 mode change 100644 => 100755 app/code/Magento/Customer/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/Customer/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/Customer/etc/cache.xml
 mode change 100644 => 100755 app/code/Magento/Customer/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/Customer/etc/crontab.xml
 mode change 100644 => 100755 app/code/Magento/Customer/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Customer/etc/email_templates.xml
 mode change 100644 => 100755 app/code/Magento/Customer/etc/events.xml
 mode change 100644 => 100755 app/code/Magento/Customer/etc/fieldset.xml
 mode change 100644 => 100755 app/code/Magento/Customer/etc/frontend/di.xml
 mode change 100644 => 100755 app/code/Magento/Customer/etc/frontend/events.xml
 mode change 100644 => 100755 app/code/Magento/Customer/etc/frontend/page_types.xml
 mode change 100644 => 100755 app/code/Magento/Customer/etc/frontend/routes.xml
 mode change 100644 => 100755 app/code/Magento/Customer/etc/frontend/sections.xml
 mode change 100644 => 100755 app/code/Magento/Customer/etc/indexer.xml
 mode change 100644 => 100755 app/code/Magento/Customer/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Customer/etc/mview.xml
 mode change 100644 => 100755 app/code/Magento/Customer/etc/sections.xsd
 mode change 100644 => 100755 app/code/Magento/Customer/etc/validation.xml
 mode change 100644 => 100755 app/code/Magento/Customer/etc/webapi.xml
 mode change 100644 => 100755 app/code/Magento/Customer/etc/webapi_rest/di.xml
 mode change 100644 => 100755 app/code/Magento/Customer/etc/webapi_soap/di.xml
 mode change 100644 => 100755 app/code/Magento/Customer/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Customer/registration.php
 mode change 100644 => 100755 app/code/Magento/Customer/view/adminhtml/layout/customer_group_index.xml
 mode change 100644 => 100755 app/code/Magento/Customer/view/adminhtml/layout/customer_index_cart.xml
 mode change 100644 => 100755 app/code/Magento/Customer/view/adminhtml/layout/customer_index_carts.xml
 mode change 100644 => 100755 app/code/Magento/Customer/view/adminhtml/layout/customer_index_edit.xml
 mode change 100644 => 100755 app/code/Magento/Customer/view/adminhtml/layout/customer_index_index.xml
 mode change 100644 => 100755 app/code/Magento/Customer/view/adminhtml/layout/customer_index_newsletter.xml
 mode change 100644 => 100755 app/code/Magento/Customer/view/adminhtml/layout/customer_index_orders.xml
 mode change 100644 => 100755 app/code/Magento/Customer/view/adminhtml/layout/customer_index_productreviews.xml
 mode change 100644 => 100755 app/code/Magento/Customer/view/adminhtml/layout/customer_index_viewcart.xml
 mode change 100644 => 100755 app/code/Magento/Customer/view/adminhtml/layout/customer_index_viewwishlist.xml
 mode change 100644 => 100755 app/code/Magento/Customer/view/adminhtml/layout/customer_online_index.xml
 mode change 100644 => 100755 app/code/Magento/Customer/view/adminhtml/requirejs-config.js
 mode change 100644 => 100755 app/code/Magento/Customer/view/adminhtml/templates/edit/js.phtml
 mode change 100644 => 100755 app/code/Magento/Customer/view/adminhtml/templates/sales/order/create/address/form/renderer/vat.phtml
 mode change 100644 => 100755 app/code/Magento/Customer/view/adminhtml/templates/system/config/validatevat.phtml
 mode change 100644 => 100755 app/code/Magento/Customer/view/adminhtml/templates/tab/cart.phtml
 mode change 100644 => 100755 app/code/Magento/Customer/view/adminhtml/templates/tab/newsletter.phtml
 mode change 100644 => 100755 app/code/Magento/Customer/view/adminhtml/templates/tab/view.phtml
 mode change 100644 => 100755 app/code/Magento/Customer/view/adminhtml/templates/tab/view/personal_info.phtml
 mode change 100644 => 100755 app/code/Magento/Customer/view/adminhtml/templates/tab/view/sales.phtml
 mode change 100644 => 100755 app/code/Magento/Customer/view/adminhtml/ui_component/customer_listing.xml
 mode change 100644 => 100755 app/code/Magento/Customer/view/adminhtml/ui_component/customer_online_grid.xml
 mode change 100644 => 100755 app/code/Magento/Customer/view/adminhtml/web/edit/post-wrapper.js
 mode change 100644 => 100755 app/code/Magento/Customer/view/adminhtml/web/edit/tab/js/addresses.js
 mode change 100644 => 100755 app/code/Magento/Customer/view/adminhtml/web/js/bootstrap/customer-post-action.js
 mode change 100644 => 100755 app/code/Magento/Customer/view/base/ui_component/customer_form.xml
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/email/account_new.html
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/email/account_new_confirmation.html
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/email/account_new_confirmed.html
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/email/account_new_no_password.html
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/email/change_email.html
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/email/change_email_and_password.html
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/email/password_new.html
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/email/password_reset.html
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/email/password_reset_confirmation.html
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/layout/customer_account.xml
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/layout/customer_account_confirmation.xml
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/layout/customer_account_create.xml
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/layout/customer_account_createpassword.xml
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/layout/customer_account_edit.xml
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/layout/customer_account_forgotpassword.xml
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/layout/customer_account_index.xml
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/layout/customer_account_login.xml
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/layout/customer_account_logoutsuccess.xml
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/layout/customer_address_form.xml
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/layout/customer_address_index.xml
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/layout/default.xml
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/requirejs-config.js
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/templates/account/authentication-popup.phtml
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/templates/account/customer.phtml
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/templates/account/dashboard/address.phtml
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/templates/account/dashboard/info.phtml
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/templates/account/link/authorization.phtml
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/templates/account/link/back.phtml
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/templates/account/navigation-delimiter.phtml
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/templates/account/navigation.phtml
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/templates/additionalinfocustomer.phtml
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/templates/address/book.phtml
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/templates/address/edit.phtml
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/templates/form/confirmation.phtml
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/templates/form/edit.phtml
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/templates/form/forgotpassword.phtml
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/templates/form/login.phtml
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/templates/form/newsletter.phtml
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/templates/form/register.phtml
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/templates/form/resetforgottenpassword.phtml
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/templates/js/components.phtml
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/templates/js/customer-data.phtml
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/templates/js/customer-data/invalidation-rules.phtml
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/templates/js/section-config.phtml
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/templates/logout.phtml
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/templates/newcustomer.phtml
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/templates/widget/company.phtml
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/templates/widget/dob.phtml
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/templates/widget/fax.phtml
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/templates/widget/gender.phtml
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/templates/widget/name.phtml
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/templates/widget/taxvat.phtml
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/templates/widget/telephone.phtml
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/web/address.js
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/web/change-email-password.js
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/web/js/action/check-email-availability.js
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/web/js/action/login.js
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/web/js/addressValidation.js
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/web/js/checkout-balance.js
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/web/js/customer-data.js
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/web/js/invalidation-processor.js
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/web/js/invalidation-rules/website-rule.js
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/web/js/model/address-list.js
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/web/js/model/authentication-popup.js
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/web/js/model/customer-addresses.js
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/web/js/model/customer.js
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/web/js/model/customer/address.js
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/web/js/password-strength-indicator.js
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/web/js/section-config.js
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/web/js/view/authentication-popup.js
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/web/js/view/customer.js
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/web/js/zxcvbn.js
 mode change 100644 => 100755 app/code/Magento/Customer/view/frontend/web/template/authentication-popup.html
 mode change 100644 => 100755 app/code/Magento/CustomerAnalytics/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/CustomerAnalytics/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/CustomerAnalytics/README.md
 mode change 100644 => 100755 app/code/Magento/CustomerAnalytics/composer.json
 mode change 100644 => 100755 app/code/Magento/CustomerAnalytics/etc/analytics.xml
 mode change 100644 => 100755 app/code/Magento/CustomerAnalytics/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/CustomerAnalytics/etc/reports.xml
 mode change 100644 => 100755 app/code/Magento/CustomerAnalytics/registration.php
 mode change 100644 => 100755 app/code/Magento/CustomerImportExport/Controller/Adminhtml/Index/ExportCsv.php
 mode change 100644 => 100755 app/code/Magento/CustomerImportExport/Controller/Adminhtml/Index/ExportXml.php
 mode change 100644 => 100755 app/code/Magento/CustomerImportExport/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/CustomerImportExport/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/CustomerImportExport/Model/Export/Address.php
 mode change 100644 => 100755 app/code/Magento/CustomerImportExport/Model/Export/Customer.php
 mode change 100644 => 100755 app/code/Magento/CustomerImportExport/Model/Import/AbstractCustomer.php
 mode change 100644 => 100755 app/code/Magento/CustomerImportExport/Model/Import/Address.php
 mode change 100644 => 100755 app/code/Magento/CustomerImportExport/Model/Import/Customer.php
 mode change 100644 => 100755 app/code/Magento/CustomerImportExport/Model/Import/CustomerComposite.php
 mode change 100644 => 100755 app/code/Magento/CustomerImportExport/Model/ResourceModel/Import/Customer/Storage.php
 mode change 100644 => 100755 app/code/Magento/CustomerImportExport/Model/ResourceModel/Import/CustomerComposite/Data.php
 mode change 100644 => 100755 app/code/Magento/CustomerImportExport/README.md
 mode change 100644 => 100755 app/code/Magento/CustomerImportExport/Test/Unit/Model/Export/AddressTest.php
 mode change 100644 => 100755 app/code/Magento/CustomerImportExport/Test/Unit/Model/Export/CustomerTest.php
 mode change 100644 => 100755 app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/AbstractCustomerTest.php
 mode change 100644 => 100755 app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/AddressTest.php
 mode change 100644 => 100755 app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/CustomerCompositeTest.php
 mode change 100644 => 100755 app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/CustomerTest.php
 mode change 100644 => 100755 app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/customer_composite_prepare_row_for_db.csv
 mode change 100644 => 100755 app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_abstract_empty_email.php
 mode change 100644 => 100755 app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_abstract_empty_website.php
 mode change 100644 => 100755 app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_abstract_invalid_email.php
 mode change 100644 => 100755 app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_abstract_invalid_website.php
 mode change 100644 => 100755 app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_abstract_no_email.php
 mode change 100644 => 100755 app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_abstract_no_website.php
 mode change 100644 => 100755 app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_abstract_valid.php
 mode change 100644 => 100755 app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_delete_address_not_found.php
 mode change 100644 => 100755 app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_delete_empty_address_id.php
 mode change 100644 => 100755 app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_delete_no_customer.php
 mode change 100644 => 100755 app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_delete_valid.php
 mode change 100644 => 100755 app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_update_absent_required_attribute.php
 mode change 100644 => 100755 app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_update_empty_address_id.php
 mode change 100644 => 100755 app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_update_invalid_region.php
 mode change 100644 => 100755 app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_update_no_customer.php
 mode change 100644 => 100755 app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_update_valid.php
 mode change 100644 => 100755 app/code/Magento/CustomerImportExport/Test/Unit/Model/ResourceModel/Import/Customer/StorageTest.php
 mode change 100644 => 100755 app/code/Magento/CustomerImportExport/Test/Unit/Model/ResourceModel/Import/CustomerComposite/DataTest.php
 mode change 100644 => 100755 app/code/Magento/CustomerImportExport/composer.json
 mode change 100644 => 100755 app/code/Magento/CustomerImportExport/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/CustomerImportExport/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/CustomerImportExport/etc/export.xml
 mode change 100644 => 100755 app/code/Magento/CustomerImportExport/etc/import.xml
 mode change 100644 => 100755 app/code/Magento/CustomerImportExport/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/CustomerImportExport/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/CustomerImportExport/registration.php
 mode change 100644 => 100755 app/code/Magento/CustomerImportExport/view/adminhtml/layout/customer_import_export_index_exportcsv.xml
 mode change 100644 => 100755 app/code/Magento/CustomerImportExport/view/adminhtml/layout/customer_import_export_index_exportxml.xml
 mode change 100644 => 100755 app/code/Magento/CustomerImportExport/view/adminhtml/layout/customer_index_grid_block.xml
 mode change 100644 => 100755 app/code/Magento/Deploy/App/Mode/ConfigProvider.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Collector/Collector.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Collector/CollectorInterface.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Config/BundleConfig.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Console/Command/App/ApplicationDumpCommand.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Console/Command/App/ConfigImport/Processor.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Console/Command/App/ConfigImportCommand.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Console/Command/App/ConfigStatusCommand.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Console/Command/App/SensitiveConfigSet/CollectorFactory.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Console/Command/App/SensitiveConfigSet/CollectorInterface.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Console/Command/App/SensitiveConfigSet/InteractiveCollector.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Console/Command/App/SensitiveConfigSet/SensitiveConfigSetFacade.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Console/Command/App/SensitiveConfigSet/SimpleCollector.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Console/Command/App/SensitiveConfigSetCommand.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Console/Command/SetModeCommand.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Console/Command/ShowModeCommand.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Console/CommandList.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Console/ConsoleLogger.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Console/ConsoleLoggerFactory.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Console/DeployStaticOptions.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Console/InputValidator.php
 mode change 100644 => 100755 app/code/Magento/Deploy/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Deploy/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Deploy/Model/ConfigWriter.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Model/DeploymentConfig/ChangeDetector.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Model/DeploymentConfig/DataCollector.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Model/DeploymentConfig/Hash.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Model/DeploymentConfig/Hash/Generator.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Model/DeploymentConfig/ImporterFactory.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Model/DeploymentConfig/ImporterPool.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Model/DeploymentConfig/ValidatorFactory.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Model/Filesystem.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Model/Mode.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Model/Plugin/ConfigChangeDetector.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Package/Bundle/RequireJs.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Package/BundleInterface.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Package/BundleInterfaceFactory.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Package/Package.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Package/PackageFactory.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Package/PackageFile.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Package/PackagePool.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Package/Processor/PostProcessor/CssUrls.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Package/Processor/PostProcessor/Map.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Package/Processor/PreProcessor/Css.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Package/Processor/PreProcessor/Less.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Package/Processor/ProcessorInterface.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Process/Queue.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Process/QueueFactory.php
 mode change 100644 => 100755 app/code/Magento/Deploy/README.md
 mode change 100644 => 100755 app/code/Magento/Deploy/Service/Bundle.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Service/DeployPackage.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Service/DeployRequireJsConfig.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Service/DeployStaticContent.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Service/DeployStaticFile.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Service/DeployTranslationsDictionary.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Service/MinifyTemplates.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Source/Lib.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Source/Modules.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Source/SourceInterface.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Source/SourcePool.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Source/Themes.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Strategy/CompactDeploy.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Strategy/DeployStrategyFactory.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Strategy/QuickDeploy.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Strategy/StandardDeploy.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Strategy/StrategyInterface.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Test/Unit/App/Mode/ConfigProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Test/Unit/Console/Command/App/ConfigImport/ProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Test/Unit/Console/Command/App/ConfigImportCommandTest.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Test/Unit/Console/Command/App/ConfigStatusCommandTest.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Test/Unit/Console/Command/App/SensitiveConfigSet/CollectorFactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Test/Unit/Console/Command/App/SensitiveConfigSet/InteractiveCollectorTest.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Test/Unit/Console/Command/App/SensitiveConfigSet/SensitiveConfigSetFacadeTest.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Test/Unit/Console/Command/App/SensitiveConfigSet/SimpleCollectorTest.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Test/Unit/Console/Command/App/SensitiveConfigSetCommandTest.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Test/Unit/Console/Command/ApplicationDumpCommandTest.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Test/Unit/Console/Command/SetModeCommandTest.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Test/Unit/Console/Command/ShowModeCommandTest.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Test/Unit/Console/CommandListTest.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Test/Unit/Model/ConfigWriterTest.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Test/Unit/Model/DeploymentConfig/ChangeDetectorTest.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Test/Unit/Model/DeploymentConfig/DataCollectorTest.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Test/Unit/Model/DeploymentConfig/Hash/GeneratorTest.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Test/Unit/Model/DeploymentConfig/HashTest.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Test/Unit/Model/DeploymentConfig/ImporterFactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Test/Unit/Model/DeploymentConfig/ImporterPoolTest.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Test/Unit/Model/DeploymentConfig/ValidatorFactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Test/Unit/Model/FilesystemTest.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Test/Unit/Model/ModeTest.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Test/Unit/Model/Plugin/ConfigChangeDetectorTest.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Test/Unit/Process/QueueTest.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Test/Unit/Service/DeployStaticContentTest.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Test/Unit/Service/DeployTranslationsDictionaryTest.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Test/Unit/Service/MinifyTemplatesTest.php
 mode change 100644 => 100755 app/code/Magento/Deploy/Test/Unit/Strategy/CompactDeployTest.php
 mode change 100644 => 100755 app/code/Magento/Deploy/cli_commands.php
 mode change 100644 => 100755 app/code/Magento/Deploy/composer.json
 mode change 100644 => 100755 app/code/Magento/Deploy/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Deploy/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Deploy/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Deploy/registration.php
 mode change 100644 => 100755 app/code/Magento/Developer/Block/Adminhtml/System/Config/WorkflowType.php
 mode change 100644 => 100755 app/code/Magento/Developer/Console/Command/DevTestsRunCommand.php
 mode change 100644 => 100755 app/code/Magento/Developer/Console/Command/DiInfoCommand.php
 mode change 100644 => 100755 app/code/Magento/Developer/Console/Command/ProfilerDisableCommand.php
 mode change 100644 => 100755 app/code/Magento/Developer/Console/Command/ProfilerEnableCommand.php
 mode change 100644 => 100755 app/code/Magento/Developer/Console/Command/QueryLogDisableCommand.php
 mode change 100644 => 100755 app/code/Magento/Developer/Console/Command/QueryLogEnableCommand.php
 mode change 100644 => 100755 app/code/Magento/Developer/Console/Command/SourceThemeDeployCommand.php
 mode change 100644 => 100755 app/code/Magento/Developer/Console/Command/TemplateHintsDisableCommand.php
 mode change 100644 => 100755 app/code/Magento/Developer/Console/Command/TemplateHintsEnableCommand.php
 mode change 100644 => 100755 app/code/Magento/Developer/Console/Command/XmlCatalogGenerateCommand.php
 mode change 100644 => 100755 app/code/Magento/Developer/Console/Command/XmlConverterCommand.php
 mode change 100644 => 100755 app/code/Magento/Developer/Helper/Data.php
 mode change 100644 => 100755 app/code/Magento/Developer/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Developer/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Developer/Model/Config/Backend/AllowedIps.php
 mode change 100644 => 100755 app/code/Magento/Developer/Model/Config/Backend/WorkflowType.php
 mode change 100644 => 100755 app/code/Magento/Developer/Model/Config/Source/WorkflowType.php
 mode change 100644 => 100755 app/code/Magento/Developer/Model/Css/PreProcessor/FileGenerator/PublicationDecorator.php
 mode change 100644 => 100755 app/code/Magento/Developer/Model/Di/Information.php
 mode change 100644 => 100755 app/code/Magento/Developer/Model/Di/PluginList.php
 mode change 100644 => 100755 app/code/Magento/Developer/Model/Logger/Handler/Debug.php
 mode change 100644 => 100755 app/code/Magento/Developer/Model/TemplateEngine/Decorator/DebugHints.php
 mode change 100644 => 100755 app/code/Magento/Developer/Model/TemplateEngine/Plugin/DebugHints.php
 mode change 100644 => 100755 app/code/Magento/Developer/Model/Tools/Formatter.php
 mode change 100644 => 100755 app/code/Magento/Developer/Model/View/Asset/PreProcessor/FrontendCompilation.php
 mode change 100644 => 100755 app/code/Magento/Developer/Model/View/Asset/PreProcessor/PreprocessorStrategy.php
 mode change 100644 => 100755 app/code/Magento/Developer/Model/View/Page/Config/ClientSideLessCompilation/Renderer.php
 mode change 100644 => 100755 app/code/Magento/Developer/Model/View/Page/Config/RendererFactory.php
 mode change 100644 => 100755 app/code/Magento/Developer/Model/XmlCatalog/Format/FormatInterface.php
 mode change 100644 => 100755 app/code/Magento/Developer/Model/XmlCatalog/Format/PhpStorm.php
 mode change 100644 => 100755 app/code/Magento/Developer/README.md
 mode change 100644 => 100755 app/code/Magento/Developer/Test/Unit/Block/Adminhtml/System/Config/WorkflowTypeTest.php
 mode change 100644 => 100755 app/code/Magento/Developer/Test/Unit/Console/Command/DevTestsRunCommandTest.php
 mode change 100644 => 100755 app/code/Magento/Developer/Test/Unit/Console/Command/QueryLogDisableCommandTest.php
 mode change 100644 => 100755 app/code/Magento/Developer/Test/Unit/Console/Command/QueryLogEnableCommandTest.php
 mode change 100644 => 100755 app/code/Magento/Developer/Test/Unit/Console/Command/SourceThemeDeployCommandTest.php
 mode change 100644 => 100755 app/code/Magento/Developer/Test/Unit/Console/Command/XmlCatalogGenerateCommandTest.php
 mode change 100644 => 100755 app/code/Magento/Developer/Test/Unit/Console/Command/XmlConverterCommandTest.php
 mode change 100644 => 100755 app/code/Magento/Developer/Test/Unit/Console/Command/_files/test.xml
 mode change 100644 => 100755 app/code/Magento/Developer/Test/Unit/Helper/DataTest.php
 mode change 100644 => 100755 app/code/Magento/Developer/Test/Unit/Model/Config/Backend/AllowedIpsTest.php
 mode change 100644 => 100755 app/code/Magento/Developer/Test/Unit/Model/Config/Backend/WorkflowTypeTest.php
 mode change 100644 => 100755 app/code/Magento/Developer/Test/Unit/Model/Config/Source/WorkflowTypeTest.php
 mode change 100644 => 100755 app/code/Magento/Developer/Test/Unit/Model/Css/PreProcessor/FileGenerator/PublicationDecoratorTest.php
 mode change 100644 => 100755 app/code/Magento/Developer/Test/Unit/Model/Di/InformationTest.php
 mode change 100644 => 100755 app/code/Magento/Developer/Test/Unit/Model/Logger/Handler/DebugTest.php
 mode change 100644 => 100755 app/code/Magento/Developer/Test/Unit/Model/TemplateEngine/Decorator/DebugHintsTest.php
 mode change 100644 => 100755 app/code/Magento/Developer/Test/Unit/Model/TemplateEngine/Plugin/DebugHintsTest.php
 mode change 100644 => 100755 app/code/Magento/Developer/Test/Unit/Model/View/Asset/PreProcessor/FrontendCompilationTest.php
 mode change 100644 => 100755 app/code/Magento/Developer/Test/Unit/Model/View/Asset/PreProcessor/PreprocessorStrategyTest.php
 mode change 100644 => 100755 app/code/Magento/Developer/Test/Unit/Model/View/Page/Config/ClientSideLessCompilation/RendererTest.php
 mode change 100644 => 100755 app/code/Magento/Developer/Test/Unit/Model/View/Page/Config/RendererFactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Developer/composer.json
 mode change 100644 => 100755 app/code/Magento/Developer/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/Developer/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/Developer/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/Developer/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Developer/etc/frontend/di.xml
 mode change 100644 => 100755 app/code/Magento/Developer/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Developer/i18n/de_DE.csv
 mode change 100644 => 100755 app/code/Magento/Developer/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Developer/i18n/es_ES.csv
 mode change 100644 => 100755 app/code/Magento/Developer/i18n/fr_FR.csv
 mode change 100644 => 100755 app/code/Magento/Developer/i18n/nl_NL.csv
 mode change 100644 => 100755 app/code/Magento/Developer/i18n/pt_BR.csv
 mode change 100644 => 100755 app/code/Magento/Developer/i18n/zh_Hans_CN.csv
 mode change 100644 => 100755 app/code/Magento/Developer/registration.php
 mode change 100644 => 100755 app/code/Magento/Dhl/Block/Adminhtml/Unitofmeasure.php
 mode change 100644 => 100755 app/code/Magento/Dhl/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Dhl/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Dhl/Model/AbstractDhl.php
 mode change 100644 => 100755 app/code/Magento/Dhl/Model/Carrier.php
 mode change 100644 => 100755 app/code/Magento/Dhl/Model/Plugin/Checkout/Block/Cart/Shipping.php
 mode change 100644 => 100755 app/code/Magento/Dhl/Model/Source/Contenttype.php
 mode change 100644 => 100755 app/code/Magento/Dhl/Model/Source/Method/AbstractMethod.php
 mode change 100644 => 100755 app/code/Magento/Dhl/Model/Source/Method/Doc.php
 mode change 100644 => 100755 app/code/Magento/Dhl/Model/Source/Method/Freedoc.php
 mode change 100644 => 100755 app/code/Magento/Dhl/Model/Source/Method/Freenondoc.php
 mode change 100644 => 100755 app/code/Magento/Dhl/Model/Source/Method/Generic.php
 mode change 100644 => 100755 app/code/Magento/Dhl/Model/Source/Method/Nondoc.php
 mode change 100644 => 100755 app/code/Magento/Dhl/Model/Source/Method/Size.php
 mode change 100644 => 100755 app/code/Magento/Dhl/Model/Source/Method/Unitofmeasure.php
 mode change 100644 => 100755 app/code/Magento/Dhl/Model/Validator/ResponseErrorProcessor.php
 mode change 100644 => 100755 app/code/Magento/Dhl/Model/Validator/XmlValidator.php
 mode change 100644 => 100755 app/code/Magento/Dhl/README.md
 mode change 100644 => 100755 app/code/Magento/Dhl/Setup/InstallData.php
 mode change 100644 => 100755 app/code/Magento/Dhl/Test/Unit/Model/CarrierTest.php
 mode change 100644 => 100755 app/code/Magento/Dhl/Test/Unit/Model/Validator/ResponseErrorProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/Dhl/Test/Unit/Model/Validator/XmlValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/Dhl/Test/Unit/Model/Validator/_files/invalidDHLResponse.xml
 mode change 100644 => 100755 app/code/Magento/Dhl/Test/Unit/Model/Validator/_files/invalidDHLResponseForQuoteResponse.xml
 mode change 100644 => 100755 app/code/Magento/Dhl/Test/Unit/Model/Validator/_files/invalidDHLResponseForShippingLabel.xml
 mode change 100644 => 100755 app/code/Magento/Dhl/Test/Unit/Model/Validator/_files/invalidDHLResponseWithMissingXmlTag.xml
 mode change 100644 => 100755 app/code/Magento/Dhl/Test/Unit/Model/Validator/_files/validDHLResponse.xml
 mode change 100644 => 100755 app/code/Magento/Dhl/Test/Unit/Model/_files/countries.xml
 mode change 100644 => 100755 app/code/Magento/Dhl/Test/Unit/Model/_files/rates_request_data_dhl.php
 mode change 100644 => 100755 app/code/Magento/Dhl/Test/Unit/Model/_files/response_shipping_label.xml
 mode change 100644 => 100755 app/code/Magento/Dhl/Test/Unit/Model/_files/success_dhl_response_rates.xml
 mode change 100644 => 100755 app/code/Magento/Dhl/composer.json
 mode change 100644 => 100755 app/code/Magento/Dhl/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/Dhl/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/Dhl/etc/countries.xml
 mode change 100644 => 100755 app/code/Magento/Dhl/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Dhl/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Dhl/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Dhl/registration.php
 mode change 100644 => 100755 app/code/Magento/Dhl/view/adminhtml/templates/unitofmeasure.phtml
 mode change 100644 => 100755 app/code/Magento/Dhl/view/adminhtml/web/logo.jpg
 mode change 100644 => 100755 app/code/Magento/Dhl/view/frontend/layout/checkout_cart_index.xml
 mode change 100644 => 100755 app/code/Magento/Dhl/view/frontend/layout/checkout_index_index.xml
 mode change 100644 => 100755 app/code/Magento/Dhl/view/frontend/web/js/model/shipping-rates-validation-rules.js
 mode change 100644 => 100755 app/code/Magento/Dhl/view/frontend/web/js/model/shipping-rates-validator.js
 mode change 100644 => 100755 app/code/Magento/Dhl/view/frontend/web/js/view/shipping-rates-validation.js
 mode change 100644 => 100755 app/code/Magento/Directory/Api/CountryInformationAcquirerInterface.php
 mode change 100644 => 100755 app/code/Magento/Directory/Api/CurrencyInformationAcquirerInterface.php
 mode change 100644 => 100755 app/code/Magento/Directory/Api/Data/CountryInformationInterface.php
 mode change 100644 => 100755 app/code/Magento/Directory/Api/Data/CurrencyInformationInterface.php
 mode change 100644 => 100755 app/code/Magento/Directory/Api/Data/ExchangeRateInterface.php
 mode change 100644 => 100755 app/code/Magento/Directory/Api/Data/RegionInformationInterface.php
 mode change 100644 => 100755 app/code/Magento/Directory/Block/Adminhtml/Frontend/Currency/Base.php
 mode change 100644 => 100755 app/code/Magento/Directory/Block/Adminhtml/Frontend/Region/Updater.php
 mode change 100644 => 100755 app/code/Magento/Directory/Block/Currency.php
 mode change 100644 => 100755 app/code/Magento/Directory/Block/Data.php
 mode change 100644 => 100755 app/code/Magento/Directory/Controller/Adminhtml/Json/CountryRegion.php
 mode change 100644 => 100755 app/code/Magento/Directory/Controller/Currency/SwitchAction.php
 mode change 100644 => 100755 app/code/Magento/Directory/Helper/Data.php
 mode change 100644 => 100755 app/code/Magento/Directory/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Directory/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Directory/Model/AllowedCountries.php
 mode change 100644 => 100755 app/code/Magento/Directory/Model/Config/Source/Allregion.php
 mode change 100644 => 100755 app/code/Magento/Directory/Model/Config/Source/Country.php
 mode change 100644 => 100755 app/code/Magento/Directory/Model/Config/Source/Country/Full.php
 mode change 100644 => 100755 app/code/Magento/Directory/Model/Config/Source/WeightUnit.php
 mode change 100644 => 100755 app/code/Magento/Directory/Model/Country.php
 mode change 100644 => 100755 app/code/Magento/Directory/Model/Country/Format.php
 mode change 100644 => 100755 app/code/Magento/Directory/Model/Country/Postcode/Config.php
 mode change 100644 => 100755 app/code/Magento/Directory/Model/Country/Postcode/Config/Converter.php
 mode change 100644 => 100755 app/code/Magento/Directory/Model/Country/Postcode/Config/Data.php
 mode change 100644 => 100755 app/code/Magento/Directory/Model/Country/Postcode/Config/Reader.php
 mode change 100644 => 100755 app/code/Magento/Directory/Model/Country/Postcode/Config/SchemaLocator.php
 mode change 100644 => 100755 app/code/Magento/Directory/Model/Country/Postcode/ConfigInterface.php
 mode change 100644 => 100755 app/code/Magento/Directory/Model/Country/Postcode/Validator.php
 mode change 100644 => 100755 app/code/Magento/Directory/Model/Country/Postcode/ValidatorInterface.php
 mode change 100644 => 100755 app/code/Magento/Directory/Model/CountryInformationAcquirer.php
 mode change 100644 => 100755 app/code/Magento/Directory/Model/Currency.php
 mode change 100644 => 100755 app/code/Magento/Directory/Model/Currency/DefaultLocator.php
 mode change 100644 => 100755 app/code/Magento/Directory/Model/Currency/Filter.php
 mode change 100644 => 100755 app/code/Magento/Directory/Model/Currency/Import/AbstractImport.php
 mode change 100644 => 100755 app/code/Magento/Directory/Model/Currency/Import/Config.php
 mode change 100644 => 100755 app/code/Magento/Directory/Model/Currency/Import/Factory.php
 mode change 100644 => 100755 app/code/Magento/Directory/Model/Currency/Import/FixerIo.php
 mode change 100644 => 100755 app/code/Magento/Directory/Model/Currency/Import/ImportInterface.php
 mode change 100644 => 100755 app/code/Magento/Directory/Model/Currency/Import/Source/Service.php
 mode change 100644 => 100755 app/code/Magento/Directory/Model/Currency/Import/Webservicex.php
 mode change 100644 => 100755 app/code/Magento/Directory/Model/Currency/Import/YahooFinance.php
 mode change 100644 => 100755 app/code/Magento/Directory/Model/CurrencyConfig.php
 mode change 100644 => 100755 app/code/Magento/Directory/Model/CurrencyInformationAcquirer.php
 mode change 100644 => 100755 app/code/Magento/Directory/Model/Data/CountryInformation.php
 mode change 100644 => 100755 app/code/Magento/Directory/Model/Data/CurrencyInformation.php
 mode change 100644 => 100755 app/code/Magento/Directory/Model/Data/ExchangeRate.php
 mode change 100644 => 100755 app/code/Magento/Directory/Model/Data/RegionInformation.php
 mode change 100644 => 100755 app/code/Magento/Directory/Model/Observer.php
 mode change 100644 => 100755 app/code/Magento/Directory/Model/PriceCurrency.php
 mode change 100644 => 100755 app/code/Magento/Directory/Model/Region.php
 mode change 100644 => 100755 app/code/Magento/Directory/Model/RegionFactory.php
 mode change 100644 => 100755 app/code/Magento/Directory/Model/ResourceModel/Country.php
 mode change 100644 => 100755 app/code/Magento/Directory/Model/ResourceModel/Country/Collection.php
 mode change 100644 => 100755 app/code/Magento/Directory/Model/ResourceModel/Country/Format.php
 mode change 100644 => 100755 app/code/Magento/Directory/Model/ResourceModel/Country/Format/Collection.php
 mode change 100644 => 100755 app/code/Magento/Directory/Model/ResourceModel/Currency.php
 mode change 100644 => 100755 app/code/Magento/Directory/Model/ResourceModel/Region.php
 mode change 100644 => 100755 app/code/Magento/Directory/Model/ResourceModel/Region/Collection.php
 mode change 100644 => 100755 app/code/Magento/Directory/Model/TopDestinationCountries.php
 mode change 100644 => 100755 app/code/Magento/Directory/README.md
 mode change 100644 => 100755 app/code/Magento/Directory/Setup/InstallData.php
 mode change 100644 => 100755 app/code/Magento/Directory/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/Directory/Setup/UpgradeData.php
 mode change 100644 => 100755 app/code/Magento/Directory/Test/Unit/Block/CurrencyTest.php
 mode change 100644 => 100755 app/code/Magento/Directory/Test/Unit/Block/DataTest.php
 mode change 100644 => 100755 app/code/Magento/Directory/Test/Unit/Helper/DataTest.php
 mode change 100644 => 100755 app/code/Magento/Directory/Test/Unit/Model/AllowedCountriesTest.php
 mode change 100644 => 100755 app/code/Magento/Directory/Test/Unit/Model/Config/Source/AllRegionTest.php
 mode change 100644 => 100755 app/code/Magento/Directory/Test/Unit/Model/Config/Source/CountryTest.php
 mode change 100644 => 100755 app/code/Magento/Directory/Test/Unit/Model/Country/Postcode/Config/ConverterTest.php
 mode change 100644 => 100755 app/code/Magento/Directory/Test/Unit/Model/Country/Postcode/Config/DataTest.php
 mode change 100644 => 100755 app/code/Magento/Directory/Test/Unit/Model/Country/Postcode/Config/ReaderTest.php
 mode change 100644 => 100755 app/code/Magento/Directory/Test/Unit/Model/Country/Postcode/Config/SchemaLocatorTest.php
 mode change 100644 => 100755 app/code/Magento/Directory/Test/Unit/Model/Country/Postcode/ConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Directory/Test/Unit/Model/Country/Postcode/ValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/Directory/Test/Unit/Model/CountryInformationAcquirerTest.php
 mode change 100644 => 100755 app/code/Magento/Directory/Test/Unit/Model/CountryTest.php
 mode change 100644 => 100755 app/code/Magento/Directory/Test/Unit/Model/Currency/DefaultLocatorTest.php
 mode change 100644 => 100755 app/code/Magento/Directory/Test/Unit/Model/Currency/Import/ConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Directory/Test/Unit/Model/Currency/Import/FactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Directory/Test/Unit/Model/Currency/Import/FixerIoTest.php
 mode change 100644 => 100755 app/code/Magento/Directory/Test/Unit/Model/Currency/Import/Source/ServiceTest.php
 mode change 100644 => 100755 app/code/Magento/Directory/Test/Unit/Model/Currency/Import/YahooFinanceTest.php
 mode change 100644 => 100755 app/code/Magento/Directory/Test/Unit/Model/CurrencyConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Directory/Test/Unit/Model/CurrencyInformationAcquirerTest.php
 mode change 100644 => 100755 app/code/Magento/Directory/Test/Unit/Model/CurrencyTest.php
 mode change 100644 => 100755 app/code/Magento/Directory/Test/Unit/Model/ObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Directory/Test/Unit/Model/PriceCurrencyTest.php
 mode change 100644 => 100755 app/code/Magento/Directory/Test/Unit/Model/ResourceModel/Country/CollectionTest.php
 mode change 100644 => 100755 app/code/Magento/Directory/Test/Unit/Model/ResourceModel/Region/CollectionTest.php
 mode change 100644 => 100755 app/code/Magento/Directory/Test/Unit/Model/TopDestinationCountriesTest.php
 mode change 100644 => 100755 app/code/Magento/Directory/Test/Unit/_files/zip_codes.php
 mode change 100644 => 100755 app/code/Magento/Directory/Test/Unit/_files/zip_codes.xml
 mode change 100644 => 100755 app/code/Magento/Directory/composer.json
 mode change 100644 => 100755 app/code/Magento/Directory/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/Directory/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/Directory/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/Directory/etc/crontab.xml
 mode change 100644 => 100755 app/code/Magento/Directory/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Directory/etc/email_templates.xml
 mode change 100644 => 100755 app/code/Magento/Directory/etc/frontend/routes.xml
 mode change 100644 => 100755 app/code/Magento/Directory/etc/frontend/sections.xml
 mode change 100644 => 100755 app/code/Magento/Directory/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Directory/etc/webapi.xml
 mode change 100644 => 100755 app/code/Magento/Directory/etc/zip_codes.xml
 mode change 100644 => 100755 app/code/Magento/Directory/etc/zip_codes.xsd
 mode change 100644 => 100755 app/code/Magento/Directory/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Directory/registration.php
 mode change 100644 => 100755 app/code/Magento/Directory/view/adminhtml/email/currency_update_notification.html
 mode change 100644 => 100755 app/code/Magento/Directory/view/adminhtml/templates/js/optional_zip_countries.phtml
 mode change 100644 => 100755 app/code/Magento/Directory/view/frontend/layout/catalog_category_view.xml
 mode change 100644 => 100755 app/code/Magento/Directory/view/frontend/layout/catalogsearch_advanced_index.xml
 mode change 100644 => 100755 app/code/Magento/Directory/view/frontend/layout/catalogsearch_advanced_result.xml
 mode change 100644 => 100755 app/code/Magento/Directory/view/frontend/layout/catalogsearch_result_index.xml
 mode change 100644 => 100755 app/code/Magento/Directory/view/frontend/layout/default.xml
 mode change 100644 => 100755 app/code/Magento/Directory/view/frontend/templates/currency.phtml
 mode change 100644 => 100755 app/code/Magento/Directory/view/frontend/templates/currency/switch.phtml
 mode change 100644 => 100755 app/code/Magento/Downloadable/Api/Data/DownloadableOptionInterface.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Api/Data/File/ContentInterface.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Api/Data/File/ContentUploaderInterface.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Api/Data/LinkInterface.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Api/Data/ProductAttributeInterface.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Api/Data/SampleInterface.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Api/LinkRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Api/SampleRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Downloadable.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/Links.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/Samples.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Block/Adminhtml/Sales/Items/Column/Downloadable/Name.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Block/Catalog/Product/Links.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Block/Catalog/Product/Samples.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Block/Catalog/Product/View/Type.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Block/Checkout/Cart/Item/Renderer.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Block/Checkout/Success.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Block/Customer/Products/ListProducts.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Block/Sales/Order/Email/Items/Downloadable.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Block/Sales/Order/Email/Items/Order/Downloadable.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Block/Sales/Order/Item/Renderer/Downloadable.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/File.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/File/Upload.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/AddAttributeToTemplate.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/AlertsPriceGrid.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/AlertsStockGrid.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Categories.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Crosssell.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/CrosssellGrid.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/CustomOptions.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Duplicate.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Edit.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Form.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Grid.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/GridOnly.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Index.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Link.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/MassDelete.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/MassStatus.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/NewAction.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Options.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/OptionsImportGrid.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Related.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/RelatedGrid.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Sample.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Save.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/ShowUpdateResult.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/SuggestAttributes.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Upsell.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/UpsellGrid.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Validate.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Wysiwyg.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Controller/Adminhtml/Product/Initialization/Helper/Plugin/Downloadable.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Controller/Customer/Products.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Controller/Download.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Controller/Download/Link.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Controller/Download/LinkSample.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Controller/Download/Sample.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Helper/Catalog/Product/Configuration.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Helper/Data.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Helper/Download.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Helper/File.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Downloadable/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/ComponentInterface.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/DownloadableOption.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/File/Content.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/File/ContentUploader.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/File/ContentValidator.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/Link.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/Link/Builder.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/Link/ContentValidator.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/Link/CreateHandler.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/Link/DeleteHandler.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/Link/Purchased.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/Link/Purchased/Item.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/Link/ReadHandler.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/Link/UpdateHandler.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/LinkRepository.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/Product/CartConfiguration/Plugin/Downloadable.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/Product/CopyConstructor/Downloadable.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/Product/Price.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/Product/Type.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/Product/TypeHandler/AbstractTypeHandler.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/Product/TypeHandler/Link.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/Product/TypeHandler/Sample.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/Product/TypeHandler/TypeHandler.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/Product/TypeHandler/TypeHandlerInterface.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/Product/TypeTransitionManager/Plugin/Downloadable.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/ProductOptionProcessor.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/Quote/Item/CartItemProcessor.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/ResourceModel/Indexer/Price.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/ResourceModel/Link.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/ResourceModel/Link/Collection.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/ResourceModel/Link/Purchased.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/ResourceModel/Link/Purchased/Collection.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/ResourceModel/Link/Purchased/Item.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/ResourceModel/Link/Purchased/Item/Collection.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/ResourceModel/Sample.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/ResourceModel/Sample/Collection.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/Sales/Order/Pdf/Items/AbstractItems.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/Sales/Order/Pdf/Items/Creditmemo.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/Sales/Order/Pdf/Items/Invoice.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/Sample.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/Sample/Builder.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/Sample/ContentValidator.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/Sample/CreateHandler.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/Sample/DeleteHandler.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/Sample/ReadHandler.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/Sample/UpdateHandler.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/SampleRepository.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/Source/Shareable.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/Source/TypeUpload.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/System/Config/Source/Contentdisposition.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Model/System/Config/Source/Orderitemstatus.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Observer/InitOptionRendererObserver.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Observer/IsAllowedGuestCheckoutObserver.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Observer/SaveDownloadableOrderItemObserver.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Observer/SetHasDownloadableProductsObserver.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Observer/SetLinkStatusObserver.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Pricing/Price/LinkPrice.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Pricing/Price/LinkPriceInterface.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/README.md
 mode change 100644 => 100755 app/code/Magento/Downloadable/Setup/InstallData.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Test/Unit/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/LinksTest.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Test/Unit/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/SamplesTest.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Test/Unit/Block/Adminhtml/Sales/Items/Column/Downloadable/NameTest.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Test/Unit/Block/Catalog/Product/LinksTest.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Test/Unit/Block/Sales/Order/Email/Items/DownloadableTest.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Test/Unit/Block/Sales/Order/Email/Items/Order/DownloadableTest.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Test/Unit/Block/Sales/Order/Item/Renderer/DownloadableTest.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Test/Unit/Controller/Adminhtml/Downloadable/File/UploadTest.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Test/Unit/Controller/Adminhtml/Downloadable/Product/Edit/LinkTest.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Test/Unit/Controller/Adminhtml/Downloadable/Product/Edit/SampleTest.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Test/Unit/Controller/Adminhtml/Product/Initialization/Helper/Plugin/DownloadableTest.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Test/Unit/Controller/Download/LinkSampleTest.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Test/Unit/Controller/Download/LinkTest.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Test/Unit/Controller/Download/SampleTest.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Test/Unit/Helper/Catalog/Product/ConfigurationTest.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Test/Unit/Helper/DownloadTest.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Test/Unit/Helper/FileTest.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Test/Unit/Model/File/ContentValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Test/Unit/Model/Link/BuilderTest.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Test/Unit/Model/Link/ContentValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Test/Unit/Model/Link/CreateHandlerTest.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Test/Unit/Model/Link/UpdateHandlerTest.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Test/Unit/Model/LinkRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Test/Unit/Model/Product/CopyConstructor/DownloadableTest.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Test/Unit/Model/Product/CopyConstructor/_files/expected_data.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeHandler/LinkTest.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeHandler/SampleTest.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeTest.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeTransitionManager/Plugin/DownloadableTest.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Test/Unit/Model/ProductOptionProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Test/Unit/Model/Quote/Item/CartItemProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Test/Unit/Model/Sales/Order/Pdf/Items/CreditmemoTest.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Test/Unit/Model/Sample/BuilderTest.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Test/Unit/Model/Sample/ContentValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Test/Unit/Model/Sample/CreateHandlerTest.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Test/Unit/Model/Sample/UpdateHandlerTest.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Test/Unit/Model/SampleRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Test/Unit/Observer/IsAllowedGuestCheckoutObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Test/Unit/Observer/SaveDownloadableOrderItemObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Test/Unit/Observer/SetLinkStatusObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Test/Unit/Pricing/Price/LinkPriceTest.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Test/Unit/Ui/DataProvider/Product/Form/Modifier/CompositeTest.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Test/Unit/Ui/DataProvider/Product/Form/Modifier/Data/LinksTest.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Test/Unit/Ui/DataProvider/Product/Form/Modifier/DownloadablePanelTest.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Test/Unit/Ui/DataProvider/Product/Form/Modifier/LinksTest.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Test/Unit/Ui/DataProvider/Product/Form/Modifier/SamplesTest.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Test/Unit/_files/download_mock.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Ui/DataProvider/Product/Form/Modifier/Composite.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Ui/DataProvider/Product/Form/Modifier/Data/Links.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Ui/DataProvider/Product/Form/Modifier/Data/Samples.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Ui/DataProvider/Product/Form/Modifier/DownloadablePanel.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Ui/DataProvider/Product/Form/Modifier/Links.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Ui/DataProvider/Product/Form/Modifier/Samples.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/Ui/DataProvider/Product/Form/Modifier/UsedDefault.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/composer.json
 mode change 100644 => 100755 app/code/Magento/Downloadable/etc/acl.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/etc/adminhtml/menu.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/etc/catalog_attributes.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/etc/events.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/etc/extension_attributes.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/etc/fieldset.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/etc/frontend/di.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/etc/frontend/events.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/etc/frontend/page_types.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/etc/frontend/routes.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/etc/pdf.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/etc/product_types.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/etc/sales.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/etc/webapi.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/etc/webapi_rest/di.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/etc/webapi_soap/di.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Downloadable/registration.php
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/adminhtml/layout/catalog_product_downloadable.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/adminhtml/layout/catalog_product_simple.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/adminhtml/layout/catalog_product_view_type_downloadable.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/adminhtml/layout/catalog_product_virtual.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/adminhtml/layout/customer_index_wishlist.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/adminhtml/layout/downloadable_items.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/adminhtml/layout/sales_order_creditmemo_new.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/adminhtml/layout/sales_order_creditmemo_updateqty.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/adminhtml/layout/sales_order_creditmemo_view.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/adminhtml/layout/sales_order_invoice_new.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/adminhtml/layout/sales_order_invoice_updateqty.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/adminhtml/layout/sales_order_invoice_view.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/adminhtml/layout/sales_order_view.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/adminhtml/templates/product/composite/fieldset/downloadable.phtml
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/adminhtml/templates/product/edit/downloadable.phtml
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/adminhtml/templates/product/edit/downloadable/links.phtml
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/adminhtml/templates/product/edit/downloadable/samples.phtml
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/adminhtml/templates/sales/items/column/downloadable/creditmemo/name.phtml
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/adminhtml/templates/sales/items/column/downloadable/invoice/name.phtml
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/adminhtml/templates/sales/items/column/downloadable/name.phtml
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/adminhtml/web/downloadable-type-handler.js
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/adminhtml/web/js/components/file-uploader.js
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/adminhtml/web/js/components/is-downloadable-handler.js
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/adminhtml/web/js/components/price-handler.js
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/adminhtml/web/js/components/upload-type-handler.js
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/adminhtml/web/js/components/use-price-default-handler.js
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/adminhtml/web/template/components/file-uploader.html
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/frontend/layout/catalog_product_view_type_downloadable.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/frontend/layout/checkout_cart_configure_type_downloadable.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/frontend/layout/checkout_cart_item_renderers.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/frontend/layout/checkout_onepage_review_item_renderers.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/frontend/layout/checkout_onepage_success.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/frontend/layout/customer_account.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/frontend/layout/downloadable_customer_products.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/frontend/layout/multishipping_checkout_success.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/frontend/layout/sales_email_order_creditmemo_renderers.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/frontend/layout/sales_email_order_invoice_renderers.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/frontend/layout/sales_email_order_renderers.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/frontend/layout/sales_order_creditmemo_renderers.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/frontend/layout/sales_order_invoice_renderers.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/frontend/layout/sales_order_item_renderers.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/frontend/layout/sales_order_print_creditmemo_renderers.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/frontend/layout/sales_order_print_invoice_renderers.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/frontend/layout/sales_order_print_renderers.xml
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/frontend/requirejs-config.js
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/frontend/templates/catalog/product/links.phtml
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/frontend/templates/catalog/product/samples.phtml
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/frontend/templates/catalog/product/type.phtml
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/frontend/templates/checkout/success.phtml
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/frontend/templates/customer/products/list.phtml
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/frontend/templates/email/order/items/creditmemo/downloadable.phtml
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/frontend/templates/email/order/items/invoice/downloadable.phtml
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/frontend/templates/email/order/items/order/downloadable.phtml
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/frontend/templates/js/components.phtml
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/frontend/templates/sales/order/creditmemo/items/renderer/downloadable.phtml
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/frontend/templates/sales/order/invoice/items/renderer/downloadable.phtml
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/frontend/templates/sales/order/items/renderer/downloadable.phtml
 mode change 100644 => 100755 app/code/Magento/Downloadable/view/frontend/web/downloadable.js
 mode change 100644 => 100755 app/code/Magento/DownloadableImportExport/Helper/Data.php
 mode change 100644 => 100755 app/code/Magento/DownloadableImportExport/Helper/Uploader.php
 mode change 100644 => 100755 app/code/Magento/DownloadableImportExport/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/DownloadableImportExport/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/DownloadableImportExport/Model/Import/Product/Type/Downloadable.php
 mode change 100644 => 100755 app/code/Magento/DownloadableImportExport/README.md
 mode change 100644 => 100755 app/code/Magento/DownloadableImportExport/Test/Unit/Model/Import/Product/Type/DownloadableTest.php
 mode change 100644 => 100755 app/code/Magento/DownloadableImportExport/composer.json
 mode change 100644 => 100755 app/code/Magento/DownloadableImportExport/etc/import.xml
 mode change 100644 => 100755 app/code/Magento/DownloadableImportExport/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/DownloadableImportExport/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/DownloadableImportExport/registration.php
 mode change 100644 => 100755 app/code/Magento/Eav/Api/AttributeGroupRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Eav/Api/AttributeManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Eav/Api/AttributeOptionManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Eav/Api/AttributeRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Eav/Api/AttributeSetManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Eav/Api/AttributeSetRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Eav/Api/Data/AttributeDefaultValueInterface.php
 mode change 100644 => 100755 app/code/Magento/Eav/Api/Data/AttributeFrontendLabelInterface.php
 mode change 100644 => 100755 app/code/Magento/Eav/Api/Data/AttributeGroupInterface.php
 mode change 100644 => 100755 app/code/Magento/Eav/Api/Data/AttributeGroupSearchResultsInterface.php
 mode change 100644 => 100755 app/code/Magento/Eav/Api/Data/AttributeInterface.php
 mode change 100644 => 100755 app/code/Magento/Eav/Api/Data/AttributeOptionInterface.php
 mode change 100644 => 100755 app/code/Magento/Eav/Api/Data/AttributeOptionLabelInterface.php
 mode change 100644 => 100755 app/code/Magento/Eav/Api/Data/AttributeSearchResultsInterface.php
 mode change 100644 => 100755 app/code/Magento/Eav/Api/Data/AttributeSetInterface.php
 mode change 100644 => 100755 app/code/Magento/Eav/Api/Data/AttributeSetSearchResultsInterface.php
 mode change 100644 => 100755 app/code/Magento/Eav/Api/Data/AttributeValidationRuleInterface.php
 mode change 100644 => 100755 app/code/Magento/Eav/Block/Adminhtml/Attribute/Edit/Js.php
 mode change 100644 => 100755 app/code/Magento/Eav/Block/Adminhtml/Attribute/Edit/Main/AbstractMain.php
 mode change 100644 => 100755 app/code/Magento/Eav/Block/Adminhtml/Attribute/Edit/Options/AbstractOptions.php
 mode change 100644 => 100755 app/code/Magento/Eav/Block/Adminhtml/Attribute/Edit/Options/Labels.php
 mode change 100644 => 100755 app/code/Magento/Eav/Block/Adminhtml/Attribute/Edit/Options/Options.php
 mode change 100644 => 100755 app/code/Magento/Eav/Block/Adminhtml/Attribute/Grid/AbstractGrid.php
 mode change 100644 => 100755 app/code/Magento/Eav/Block/Adminhtml/Attribute/PropertyLocker.php
 mode change 100644 => 100755 app/code/Magento/Eav/Helper/Data.php
 mode change 100644 => 100755 app/code/Magento/Eav/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Eav/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Adminhtml/Attribute/Validation/Rules/Options.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Adminhtml/System/Config/Source/Inputtype.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Adminhtml/System/Config/Source/Inputtype/Validator.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/AttributeGroupAttributeSetIdFilter.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/AttributeGroupCodeFilter.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/AttributeSetEntityTypeCodeFilter.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Attribute.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Attribute/Data/AbstractData.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Attribute/Data/Boolean.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Attribute/Data/Date.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Attribute/Data/File.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Attribute/Data/Hidden.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Attribute/Data/Image.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Attribute/Data/Multiline.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Attribute/Data/Multiselect.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Attribute/Data/Select.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Attribute/Data/Text.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Attribute/Data/Textarea.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Attribute/GroupRepository.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/AttributeDataFactory.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/AttributeFactory.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/AttributeManagement.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/AttributeProvider.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/AttributeRepository.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/AttributeSetManagement.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/AttributeSetRepository.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Cache/Type.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Config.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/CustomAttributesMapper.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/EavCustomAttributeTypeLocator.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/EavCustomAttributeTypeLocator/ComplexType.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/EavCustomAttributeTypeLocator/SimpleType.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/AbstractEntity.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Attribute.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Attribute/AbstractAttribute.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Attribute/AttributeGroupAlreadyExistsException.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Attribute/AttributeInterface.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Attribute/Backend/AbstractBackend.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Attribute/Backend/ArrayBackend.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Attribute/Backend/BackendInterface.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Attribute/Backend/Datetime.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Attribute/Backend/DefaultBackend.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Attribute/Backend/Increment.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Attribute/Backend/JsonEncoded.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Attribute/Backend/Store.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Attribute/Backend/Time/Created.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Attribute/Backend/Time/Updated.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Attribute/Config.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Attribute/Config/Converter.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Attribute/Config/Reader.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Attribute/Config/SchemaLocator.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Attribute/Exception.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Attribute/Frontend/AbstractFrontend.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Attribute/Frontend/Datetime.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Attribute/Frontend/DefaultFrontend.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Attribute/Frontend/FrontendInterface.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Attribute/FrontendLabel.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Attribute/Group.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Attribute/Option.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Attribute/OptionLabel.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Attribute/OptionManagement.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Attribute/ScopedAttributeInterface.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Attribute/Set.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Attribute/Source/AbstractSource.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Attribute/Source/Boolean.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Attribute/Source/Config.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Attribute/Source/SourceInterface.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Attribute/Source/Store.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Attribute/Source/Table.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Attribute/ValidationRule.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/AttributeLoader.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/AttributeLoaderInterface.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Collection/AbstractCollection.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Collection/VersionControl/AbstractCollection.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Context.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/EntityInterface.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Increment/AbstractIncrement.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Increment/Alphanum.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Increment/IncrementInterface.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Increment/NumericValue.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Setup/Context.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Setup/PropertyMapper.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Setup/PropertyMapper/Composite.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Setup/PropertyMapperAbstract.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Setup/PropertyMapperInterface.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Store.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/Type.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/VersionControl/AbstractEntity.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Entity/VersionControl/Metadata.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Form.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Form/Element.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Form/Factory.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Form/Fieldset.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Form/Type.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/ResourceModel/Attribute.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/ResourceModel/Attribute/Collection.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/ResourceModel/Attribute/DefaultEntityAttributes/ProviderInterface.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/ResourceModel/AttributeLoader.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/ResourceModel/AttributePersistor.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/ResourceModel/Config.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/ResourceModel/CreateHandler.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Collection.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Grid/Collection.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Group.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Group/Collection.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Option.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Option/Collection.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Set.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Set/Collection.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/ResourceModel/Entity/Store.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/ResourceModel/Entity/Type.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/ResourceModel/Entity/Type/Collection.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/ResourceModel/Form/Attribute.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/ResourceModel/Form/Attribute/Collection.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/ResourceModel/Form/Element.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/ResourceModel/Form/Element/Collection.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/ResourceModel/Form/Fieldset.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/ResourceModel/Form/Fieldset/Collection.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/ResourceModel/Form/Type.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/ResourceModel/Form/Type/Collection.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/ResourceModel/Helper.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/ResourceModel/ReadHandler.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/ResourceModel/ReadSnapshot.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/ResourceModel/UpdateHandler.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Validator/Attribute/Backend.php
 mode change 100644 => 100755 app/code/Magento/Eav/Model/Validator/Attribute/Data.php
 mode change 100644 => 100755 app/code/Magento/Eav/Plugin/Model/ResourceModel/Entity/Attribute.php
 mode change 100644 => 100755 app/code/Magento/Eav/README.md
 mode change 100644 => 100755 app/code/Magento/Eav/Setup/EavSetup.php
 mode change 100644 => 100755 app/code/Magento/Eav/Setup/InstallData.php
 mode change 100644 => 100755 app/code/Magento/Eav/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/Eav/Setup/UpgradeSchema.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Block/Adminhtml/Attribute/PropertyLockerTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Helper/DataTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Adminhtml/Attribute/Validation/Rules/OptionsTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Adminhtml/System/Config/Source/Inputtype/ValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Adminhtml/System/Config/Source/InputtypeTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/AttributeGroupAttributeSetIdFilterTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/AttributeGroupCodeFilterTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/AttributeSetEntityTypeCodeFilterTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/AbstractDataTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/BooleanTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/DateTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/FileTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/ImageTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/MultilineTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/MultiselectTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/SelectTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/TextTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/_files/image.ico
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/_files/image.jpg
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Attribute/GroupRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/AttributeFactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/AttributeManagementTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/AttributeRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/AttributeSetManagementTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/AttributeSetRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/ConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/CustomAttributesMapperTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/EavCustomAttributeTypeLocatorTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Entity/AbstractEntityTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/AbstractAttributeTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Backend/AbstractTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Backend/ArrayBackendTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Backend/JsonEncodedTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Config/ConverterTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Config/XsdTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Config/_files/eav_attributes.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Config/_files/eav_attributes.xml
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Config/_files/invalidEavAttributeXmlArray.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/ConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Frontend/DatetimeTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Frontend/DefaultFrontendTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/GroupTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/OptionManagementTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/SetTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Source/BooleanTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Source/TableTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Entity/AttributeLoaderTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Entity/AttributeTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Entity/Collection/AbstractCollectionStub.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Entity/Collection/AbstractCollectionTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Entity/Collection/VersionControl/AbstractCollectionStub.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Entity/Collection/VersionControl/AbstractCollectionTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Entity/Increment/AlphanumTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Entity/Increment/NumericTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Entity/TypeTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Entity/VersionControl/AbstractEntityTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Entity/VersionControl/MetadataTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/FormTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/ResourceModel/Attribute/CollectionTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/ResourceModel/AttributeLoaderTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/ResourceModel/Entity/Attribute/Option/CollectionTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/ResourceModel/Entity/Attribute/SetTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/ResourceModel/Entity/AttributeTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/ResourceModel/ReadHandlerTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Validator/Attribute/BackendTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Model/Validator/Attribute/DataTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/Plugin/Model/ResourceModel/Entity/AttributeTest.php
 mode change 100644 => 100755 app/code/Magento/Eav/Test/Unit/_files/describe_table_eav_attribute.php
 mode change 100644 => 100755 app/code/Magento/Eav/composer.json
 mode change 100644 => 100755 app/code/Magento/Eav/etc/cache.xml
 mode change 100644 => 100755 app/code/Magento/Eav/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/Eav/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Eav/etc/eav_attributes.xsd
 mode change 100644 => 100755 app/code/Magento/Eav/etc/extension_attributes.xml
 mode change 100644 => 100755 app/code/Magento/Eav/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Eav/etc/validation.xml
 mode change 100644 => 100755 app/code/Magento/Eav/etc/webapi.xml
 mode change 100644 => 100755 app/code/Magento/Eav/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Eav/registration.php
 mode change 100644 => 100755 app/code/Magento/Eav/view/adminhtml/templates/attribute/edit/js.phtml
 mode change 100644 => 100755 app/code/Magento/Email/Block/Adminhtml/Template.php
 mode change 100644 => 100755 app/code/Magento/Email/Block/Adminhtml/Template/Edit.php
 mode change 100644 => 100755 app/code/Magento/Email/Block/Adminhtml/Template/Edit/Form.php
 mode change 100644 => 100755 app/code/Magento/Email/Block/Adminhtml/Template/Grid/Filter/Type.php
 mode change 100644 => 100755 app/code/Magento/Email/Block/Adminhtml/Template/Grid/Renderer/Action.php
 mode change 100644 => 100755 app/code/Magento/Email/Block/Adminhtml/Template/Grid/Renderer/Sender.php
 mode change 100644 => 100755 app/code/Magento/Email/Block/Adminhtml/Template/Grid/Renderer/Type.php
 mode change 100644 => 100755 app/code/Magento/Email/Block/Adminhtml/Template/Preview.php
 mode change 100644 => 100755 app/code/Magento/Email/Controller/Adminhtml/Email/Template.php
 mode change 100644 => 100755 app/code/Magento/Email/Controller/Adminhtml/Email/Template/DefaultTemplate.php
 mode change 100644 => 100755 app/code/Magento/Email/Controller/Adminhtml/Email/Template/Delete.php
 mode change 100644 => 100755 app/code/Magento/Email/Controller/Adminhtml/Email/Template/Edit.php
 mode change 100644 => 100755 app/code/Magento/Email/Controller/Adminhtml/Email/Template/Grid.php
 mode change 100644 => 100755 app/code/Magento/Email/Controller/Adminhtml/Email/Template/Index.php
 mode change 100644 => 100755 app/code/Magento/Email/Controller/Adminhtml/Email/Template/NewAction.php
 mode change 100644 => 100755 app/code/Magento/Email/Controller/Adminhtml/Email/Template/Preview.php
 mode change 100644 => 100755 app/code/Magento/Email/Controller/Adminhtml/Email/Template/Save.php
 mode change 100644 => 100755 app/code/Magento/Email/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Email/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Email/Model/AbstractTemplate.php
 mode change 100644 => 100755 app/code/Magento/Email/Model/BackendTemplate.php
 mode change 100644 => 100755 app/code/Magento/Email/Model/Design/Backend/Logo.php
 mode change 100644 => 100755 app/code/Magento/Email/Model/Mail/TransportInterfacePlugin.php
 mode change 100644 => 100755 app/code/Magento/Email/Model/Plugin/WindowsSmtpConfig.php
 mode change 100644 => 100755 app/code/Magento/Email/Model/ResourceModel/Template.php
 mode change 100644 => 100755 app/code/Magento/Email/Model/ResourceModel/Template/Collection.php
 mode change 100644 => 100755 app/code/Magento/Email/Model/Source/Variables.php
 mode change 100644 => 100755 app/code/Magento/Email/Model/Template.php
 mode change 100644 => 100755 app/code/Magento/Email/Model/Template/Config.php
 mode change 100644 => 100755 app/code/Magento/Email/Model/Template/Config/Converter.php
 mode change 100644 => 100755 app/code/Magento/Email/Model/Template/Config/Data.php
 mode change 100644 => 100755 app/code/Magento/Email/Model/Template/Config/FileIterator.php
 mode change 100644 => 100755 app/code/Magento/Email/Model/Template/Config/FileResolver.php
 mode change 100644 => 100755 app/code/Magento/Email/Model/Template/Config/Reader.php
 mode change 100644 => 100755 app/code/Magento/Email/Model/Template/Config/SchemaLocator.php
 mode change 100644 => 100755 app/code/Magento/Email/Model/Template/Css/Processor.php
 mode change 100644 => 100755 app/code/Magento/Email/Model/Template/Filter.php
 mode change 100644 => 100755 app/code/Magento/Email/Model/Template/SenderResolver.php
 mode change 100644 => 100755 app/code/Magento/Email/Model/Transport.php
 mode change 100644 => 100755 app/code/Magento/Email/README.md
 mode change 100644 => 100755 app/code/Magento/Email/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/Email/Test/Unit/Block/Adminhtml/Template/Edit/FormTest.php
 mode change 100644 => 100755 app/code/Magento/Email/Test/Unit/Block/Adminhtml/Template/EditTest.php
 mode change 100644 => 100755 app/code/Magento/Email/Test/Unit/Block/Adminhtml/Template/Grid/Renderer/ActionTest.php
 mode change 100644 => 100755 app/code/Magento/Email/Test/Unit/Block/Adminhtml/Template/Grid/Renderer/SenderTest.php
 mode change 100644 => 100755 app/code/Magento/Email/Test/Unit/Block/Adminhtml/Template/Grid/Renderer/TypeTest.php
 mode change 100644 => 100755 app/code/Magento/Email/Test/Unit/Block/Adminhtml/Template/PreviewTest.php
 mode change 100644 => 100755 app/code/Magento/Email/Test/Unit/Block/Adminhtml/TemplateTest.php
 mode change 100644 => 100755 app/code/Magento/Email/Test/Unit/Controller/Adminhtml/Email/Template/EditTest.php
 mode change 100644 => 100755 app/code/Magento/Email/Test/Unit/Controller/Adminhtml/Email/Template/IndexTest.php
 mode change 100644 => 100755 app/code/Magento/Email/Test/Unit/Controller/Adminhtml/Email/Template/PreviewTest.php
 mode change 100644 => 100755 app/code/Magento/Email/Test/Unit/Model/AbstractTemplateTest.php
 mode change 100644 => 100755 app/code/Magento/Email/Test/Unit/Model/BackendTemplateTest.php
 mode change 100644 => 100755 app/code/Magento/Email/Test/Unit/Model/Mail/TransportInterfacePluginTest.php
 mode change 100644 => 100755 app/code/Magento/Email/Test/Unit/Model/Source/VariablesTest.php
 mode change 100644 => 100755 app/code/Magento/Email/Test/Unit/Model/Template/Config/ConverterTest.php
 mode change 100644 => 100755 app/code/Magento/Email/Test/Unit/Model/Template/Config/FileIteratorTest.php
 mode change 100644 => 100755 app/code/Magento/Email/Test/Unit/Model/Template/Config/FileResolverTest.php
 mode change 100644 => 100755 app/code/Magento/Email/Test/Unit/Model/Template/Config/ReaderTest.php
 mode change 100644 => 100755 app/code/Magento/Email/Test/Unit/Model/Template/Config/SchemaLocatorTest.php
 mode change 100644 => 100755 app/code/Magento/Email/Test/Unit/Model/Template/Config/XsdTest.php
 mode change 100644 => 100755 app/code/Magento/Email/Test/Unit/Model/Template/Config/_files/Fixture/ModuleOne/etc/email_templates_one.xml
 mode change 100644 => 100755 app/code/Magento/Email/Test/Unit/Model/Template/Config/_files/Fixture/ModuleTwo/etc/email_templates_two.xml
 mode change 100644 => 100755 app/code/Magento/Email/Test/Unit/Model/Template/Config/_files/email_templates_merged.php
 mode change 100644 => 100755 app/code/Magento/Email/Test/Unit/Model/Template/Config/_files/email_templates_merged.xml
 mode change 100644 => 100755 app/code/Magento/Email/Test/Unit/Model/Template/ConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Email/Test/Unit/Model/Template/Css/ProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/Email/Test/Unit/Model/Template/FilterTest.php
 mode change 100644 => 100755 app/code/Magento/Email/Test/Unit/Model/TemplateTest.php
 mode change 100644 => 100755 app/code/Magento/Email/Test/Unit/Model/TransportTest.php
 mode change 100644 => 100755 app/code/Magento/Email/composer.json
 mode change 100644 => 100755 app/code/Magento/Email/etc/acl.xml
 mode change 100644 => 100755 app/code/Magento/Email/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/Email/etc/adminhtml/menu.xml
 mode change 100644 => 100755 app/code/Magento/Email/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/Email/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/Email/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Email/etc/email_templates.xml
 mode change 100644 => 100755 app/code/Magento/Email/etc/email_templates.xsd
 mode change 100644 => 100755 app/code/Magento/Email/etc/frontend/di.xml
 mode change 100644 => 100755 app/code/Magento/Email/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Email/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Email/registration.php
 mode change 100644 => 100755 app/code/Magento/Email/view/adminhtml/layout/adminhtml_email_template_grid.xml
 mode change 100644 => 100755 app/code/Magento/Email/view/adminhtml/layout/adminhtml_email_template_grid_block.xml
 mode change 100644 => 100755 app/code/Magento/Email/view/adminhtml/layout/adminhtml_email_template_index.xml
 mode change 100644 => 100755 app/code/Magento/Email/view/adminhtml/layout/adminhtml_email_template_preview.xml
 mode change 100644 => 100755 app/code/Magento/Email/view/adminhtml/templates/template/edit.phtml
 mode change 100644 => 100755 app/code/Magento/Email/view/adminhtml/templates/template/list.phtml
 mode change 100644 => 100755 app/code/Magento/Email/view/adminhtml/templates/template/preview.phtml
 mode change 100644 => 100755 app/code/Magento/Email/view/adminhtml/ui_component/design_config_form.xml
 mode change 100644 => 100755 app/code/Magento/Email/view/frontend/email/footer.html
 mode change 100644 => 100755 app/code/Magento/Email/view/frontend/email/header.html
 mode change 100644 => 100755 app/code/Magento/Email/view/frontend/web/logo_email.png
 mode change 100644 => 100755 app/code/Magento/EncryptionKey/Block/Adminhtml/Crypt/Key/Edit.php
 mode change 100644 => 100755 app/code/Magento/EncryptionKey/Block/Adminhtml/Crypt/Key/Form.php
 mode change 100644 => 100755 app/code/Magento/EncryptionKey/Controller/Adminhtml/Crypt/Key.php
 mode change 100644 => 100755 app/code/Magento/EncryptionKey/Controller/Adminhtml/Crypt/Key/Index.php
 mode change 100644 => 100755 app/code/Magento/EncryptionKey/Controller/Adminhtml/Crypt/Key/Save.php
 mode change 100644 => 100755 app/code/Magento/EncryptionKey/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/EncryptionKey/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/EncryptionKey/Model/ResourceModel/Key/Change.php
 mode change 100644 => 100755 app/code/Magento/EncryptionKey/README.md
 mode change 100644 => 100755 app/code/Magento/EncryptionKey/Test/Unit/Controller/Adminhtml/Crypt/Key/SaveTest.php
 mode change 100644 => 100755 app/code/Magento/EncryptionKey/Test/Unit/Model/ResourceModel/Key/ChangeTest.php
 mode change 100644 => 100755 app/code/Magento/EncryptionKey/composer.json
 mode change 100644 => 100755 app/code/Magento/EncryptionKey/etc/acl.xml
 mode change 100644 => 100755 app/code/Magento/EncryptionKey/etc/adminhtml/menu.xml
 mode change 100644 => 100755 app/code/Magento/EncryptionKey/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/EncryptionKey/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/EncryptionKey/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/EncryptionKey/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/EncryptionKey/registration.php
 mode change 100644 => 100755 app/code/Magento/EncryptionKey/view/adminhtml/layout/adminhtml_crypt_key_index.xml
 mode change 100644 => 100755 app/code/Magento/Fedex/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Fedex/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Fedex/Model/Carrier.php
 mode change 100644 => 100755 app/code/Magento/Fedex/Model/Source/Dropoff.php
 mode change 100644 => 100755 app/code/Magento/Fedex/Model/Source/Freemethod.php
 mode change 100644 => 100755 app/code/Magento/Fedex/Model/Source/Generic.php
 mode change 100644 => 100755 app/code/Magento/Fedex/Model/Source/Method.php
 mode change 100644 => 100755 app/code/Magento/Fedex/Model/Source/Packaging.php
 mode change 100644 => 100755 app/code/Magento/Fedex/Model/Source/Unitofmeasure.php
 mode change 100644 => 100755 app/code/Magento/Fedex/README.md
 mode change 100644 => 100755 app/code/Magento/Fedex/Setup/InstallData.php
 mode change 100644 => 100755 app/code/Magento/Fedex/Test/Unit/Model/CarrierTest.php
 mode change 100644 => 100755 app/code/Magento/Fedex/composer.json
 mode change 100644 => 100755 app/code/Magento/Fedex/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/Fedex/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/Fedex/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Fedex/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Fedex/etc/wsdl/RateService_v10.wsdl
 mode change 100644 => 100755 app/code/Magento/Fedex/etc/wsdl/RateService_v9.wsdl
 mode change 100644 => 100755 app/code/Magento/Fedex/etc/wsdl/ShipService_v10.wsdl
 mode change 100644 => 100755 app/code/Magento/Fedex/etc/wsdl/ShipService_v9.wsdl
 mode change 100644 => 100755 app/code/Magento/Fedex/etc/wsdl/TrackService_v10.wsdl
 mode change 100644 => 100755 app/code/Magento/Fedex/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Fedex/registration.php
 mode change 100644 => 100755 app/code/Magento/Fedex/view/frontend/layout/checkout_cart_index.xml
 mode change 100644 => 100755 app/code/Magento/Fedex/view/frontend/layout/checkout_index_index.xml
 mode change 100644 => 100755 app/code/Magento/Fedex/view/frontend/web/js/model/shipping-rates-validation-rules.js
 mode change 100644 => 100755 app/code/Magento/Fedex/view/frontend/web/js/model/shipping-rates-validator.js
 mode change 100644 => 100755 app/code/Magento/Fedex/view/frontend/web/js/view/shipping-rates-validation.js
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Api/CartRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Api/Data/MessageInterface.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Api/GuestCartRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Api/GuestItemRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Api/ItemRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Api/OrderItemRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Api/OrderRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Block/Adminhtml/Product/Helper/Form/Config.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Block/Adminhtml/Sales/Order/Create/Form.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Block/Adminhtml/Sales/Order/Create/Giftoptions.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Block/Adminhtml/Sales/Order/Create/Items.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Block/Adminhtml/Sales/Order/View/Form.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Block/Adminhtml/Sales/Order/View/Giftoptions.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Block/Adminhtml/Sales/Order/View/Items.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Block/Cart/GiftOptions.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Block/Cart/Item/Renderer/Actions/GiftOptions.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Block/Cart/Item/Renderer/Actions/ItemIdProcessor.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Block/Cart/Item/Renderer/Actions/LayoutProcessorInterface.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Block/Message/Inline.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Block/Message/Multishipping/Plugin/ItemsBox.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Helper/Message.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/GiftMessage/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Model/CartRepository.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Model/CompositeConfigProvider.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Model/GiftMessageConfigProvider.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Model/GiftMessageManager.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Model/GuestCartRepository.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Model/GuestItemRepository.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Model/ItemRepository.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Model/Message.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Model/OrderItemRepository.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Model/OrderRepository.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Model/Plugin/OrderGet.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Model/Plugin/OrderSave.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Model/Plugin/QuoteItem.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Model/ResourceModel/Message.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Model/ResourceModel/Message/Collection.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Model/Save.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Model/Type/Plugin/Multishipping.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Model/Type/Plugin/Onepage.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Model/TypeFactory.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Observer/MultishippingEventCreateOrdersObserver.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Observer/SalesEventOrderItemToQuoteItemObserver.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Observer/SalesEventOrderToQuoteObserver.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Observer/SalesEventQuoteSubmitBeforeObserver.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/README.md
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Setup/InstallData.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Setup/UpgradeData.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Test/Unit/Block/Cart/GiftOptionsTest.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Test/Unit/Block/Cart/Item/Renderer/Actions/GiftOptionsTest.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Test/Unit/Block/Cart/Item/Renderer/Actions/ItemIdProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Test/Unit/Block/Message/InlineTest.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Test/Unit/Helper/MessageTest.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Test/Unit/Model/CartRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Test/Unit/Model/CompositeConfigProviderTest.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Test/Unit/Model/GiftMessageConfigProviderTest.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Test/Unit/Model/GiftMessageManagerTest.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Test/Unit/Model/GuestCartRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Test/Unit/Model/GuestItemRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Test/Unit/Model/ItemRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Test/Unit/Model/OrderItemRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Test/Unit/Model/Plugin/OrderGetTest.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Test/Unit/Model/Plugin/OrderSaveTest.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Test/Unit/Model/Plugin/QuoteItemTest.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Test/Unit/Model/SaveTest.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Test/Unit/Model/Type/Plugin/MultishippingTest.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Test/Unit/Model/Type/Plugin/OnepageTest.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Test/Unit/Observer/MultishippingEventCreateOrdersObserverTest.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Test/Unit/Observer/SalesEventQuoteSubmitBeforeObserverTest.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Test/Unit/Ui/DataProvider/Product/Modifier/GiftMessageTest.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/Ui/DataProvider/Product/Modifier/GiftMessage.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/composer.json
 mode change 100644 => 100755 app/code/Magento/GiftMessage/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/GiftMessage/etc/adminhtml/events.xml
 mode change 100644 => 100755 app/code/Magento/GiftMessage/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/GiftMessage/etc/catalog_attributes.xml
 mode change 100644 => 100755 app/code/Magento/GiftMessage/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/GiftMessage/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/GiftMessage/etc/extension_attributes.xml
 mode change 100644 => 100755 app/code/Magento/GiftMessage/etc/fieldset.xml
 mode change 100644 => 100755 app/code/Magento/GiftMessage/etc/frontend/di.xml
 mode change 100644 => 100755 app/code/Magento/GiftMessage/etc/frontend/events.xml
 mode change 100644 => 100755 app/code/Magento/GiftMessage/etc/frontend/routes.xml
 mode change 100644 => 100755 app/code/Magento/GiftMessage/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/GiftMessage/etc/webapi.xml
 mode change 100644 => 100755 app/code/Magento/GiftMessage/etc/webapi_rest/events.xml
 mode change 100644 => 100755 app/code/Magento/GiftMessage/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/GiftMessage/registration.php
 mode change 100644 => 100755 app/code/Magento/GiftMessage/view/adminhtml/layout/sales_order_create_index.xml
 mode change 100644 => 100755 app/code/Magento/GiftMessage/view/adminhtml/layout/sales_order_create_load_block_data.xml
 mode change 100644 => 100755 app/code/Magento/GiftMessage/view/adminhtml/layout/sales_order_create_load_block_items.xml
 mode change 100644 => 100755 app/code/Magento/GiftMessage/view/adminhtml/layout/sales_order_view.xml
 mode change 100644 => 100755 app/code/Magento/GiftMessage/view/adminhtml/templates/giftoptionsform.phtml
 mode change 100644 => 100755 app/code/Magento/GiftMessage/view/adminhtml/templates/popup.phtml
 mode change 100644 => 100755 app/code/Magento/GiftMessage/view/adminhtml/templates/sales/order/create/giftoptions.phtml
 mode change 100644 => 100755 app/code/Magento/GiftMessage/view/adminhtml/templates/sales/order/create/items.phtml
 mode change 100644 => 100755 app/code/Magento/GiftMessage/view/adminhtml/templates/sales/order/view/giftoptions.phtml
 mode change 100644 => 100755 app/code/Magento/GiftMessage/view/adminhtml/templates/sales/order/view/items.phtml
 mode change 100644 => 100755 app/code/Magento/GiftMessage/view/frontend/layout/checkout_cart_index.xml
 mode change 100644 => 100755 app/code/Magento/GiftMessage/view/frontend/layout/checkout_cart_item_renderers.xml
 mode change 100644 => 100755 app/code/Magento/GiftMessage/view/frontend/requirejs-config.js
 mode change 100644 => 100755 app/code/Magento/GiftMessage/view/frontend/templates/cart/gift_options.phtml
 mode change 100644 => 100755 app/code/Magento/GiftMessage/view/frontend/templates/cart/item/renderer/actions/gift_options.phtml
 mode change 100644 => 100755 app/code/Magento/GiftMessage/view/frontend/templates/inline.phtml
 mode change 100644 => 100755 app/code/Magento/GiftMessage/view/frontend/web/extra-options.js
 mode change 100644 => 100755 app/code/Magento/GiftMessage/view/frontend/web/gift-options.js
 mode change 100644 => 100755 app/code/Magento/GiftMessage/view/frontend/web/js/action/gift-options.js
 mode change 100644 => 100755 app/code/Magento/GiftMessage/view/frontend/web/js/model/gift-message.js
 mode change 100644 => 100755 app/code/Magento/GiftMessage/view/frontend/web/js/model/gift-options.js
 mode change 100644 => 100755 app/code/Magento/GiftMessage/view/frontend/web/js/model/url-builder.js
 mode change 100644 => 100755 app/code/Magento/GiftMessage/view/frontend/web/js/view/gift-message.js
 mode change 100644 => 100755 app/code/Magento/GiftMessage/view/frontend/web/template/gift-message-form.html
 mode change 100644 => 100755 app/code/Magento/GiftMessage/view/frontend/web/template/gift-message-item-level.html
 mode change 100644 => 100755 app/code/Magento/GiftMessage/view/frontend/web/template/gift-message.html
 mode change 100644 => 100755 app/code/Magento/GoogleAdwords/Block/Code.php
 mode change 100644 => 100755 app/code/Magento/GoogleAdwords/Helper/Data.php
 mode change 100644 => 100755 app/code/Magento/GoogleAdwords/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/GoogleAdwords/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/GoogleAdwords/Model/Config/Backend/AbstractConversion.php
 mode change 100644 => 100755 app/code/Magento/GoogleAdwords/Model/Config/Backend/Color.php
 mode change 100644 => 100755 app/code/Magento/GoogleAdwords/Model/Config/Backend/ConversionId.php
 mode change 100644 => 100755 app/code/Magento/GoogleAdwords/Model/Config/Source/Language.php
 mode change 100644 => 100755 app/code/Magento/GoogleAdwords/Model/Config/Source/ValueType.php
 mode change 100644 => 100755 app/code/Magento/GoogleAdwords/Model/Filter/UppercaseTitle.php
 mode change 100644 => 100755 app/code/Magento/GoogleAdwords/Model/Validator/Factory.php
 mode change 100644 => 100755 app/code/Magento/GoogleAdwords/Observer/SetConversionValueObserver.php
 mode change 100644 => 100755 app/code/Magento/GoogleAdwords/README.md
 mode change 100644 => 100755 app/code/Magento/GoogleAdwords/Test/Unit/Helper/DataTest.php
 mode change 100644 => 100755 app/code/Magento/GoogleAdwords/Test/Unit/Model/Config/Source/ValueTypeTest.php
 mode change 100644 => 100755 app/code/Magento/GoogleAdwords/Test/Unit/Model/Filter/UppercaseTitleTest.php
 mode change 100644 => 100755 app/code/Magento/GoogleAdwords/Test/Unit/Model/Validator/FactoryTest.php
 mode change 100644 => 100755 app/code/Magento/GoogleAdwords/Test/Unit/Observer/SetConversionValueObserverTest.php
 mode change 100644 => 100755 app/code/Magento/GoogleAdwords/composer.json
 mode change 100644 => 100755 app/code/Magento/GoogleAdwords/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/GoogleAdwords/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/GoogleAdwords/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/GoogleAdwords/etc/frontend/events.xml
 mode change 100644 => 100755 app/code/Magento/GoogleAdwords/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/GoogleAdwords/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/GoogleAdwords/registration.php
 mode change 100644 => 100755 app/code/Magento/GoogleAdwords/view/frontend/layout/checkout_onepage_success.xml
 mode change 100644 => 100755 app/code/Magento/GoogleAdwords/view/frontend/templates/code.phtml
 mode change 100644 => 100755 app/code/Magento/GoogleAnalytics/Block/Ga.php
 mode change 100644 => 100755 app/code/Magento/GoogleAnalytics/Helper/Data.php
 mode change 100644 => 100755 app/code/Magento/GoogleAnalytics/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/GoogleAnalytics/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/GoogleAnalytics/Observer/SetGoogleAnalyticsOnOrderSuccessPageViewObserver.php
 mode change 100644 => 100755 app/code/Magento/GoogleAnalytics/README.md
 mode change 100644 => 100755 app/code/Magento/GoogleAnalytics/Test/Unit/Block/GaTest.php
 mode change 100644 => 100755 app/code/Magento/GoogleAnalytics/composer.json
 mode change 100644 => 100755 app/code/Magento/GoogleAnalytics/etc/acl.xml
 mode change 100644 => 100755 app/code/Magento/GoogleAnalytics/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/GoogleAnalytics/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/GoogleAnalytics/etc/frontend/events.xml
 mode change 100644 => 100755 app/code/Magento/GoogleAnalytics/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/GoogleAnalytics/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/GoogleAnalytics/registration.php
 mode change 100644 => 100755 app/code/Magento/GoogleAnalytics/view/frontend/layout/default.xml
 mode change 100644 => 100755 app/code/Magento/GoogleAnalytics/view/frontend/templates/ga.phtml
 mode change 100644 => 100755 app/code/Magento/GoogleAnalytics/view/frontend/web/js/google-analytics.js
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/Block/AbstractCode.php
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/Block/Adminhtml/AbstractTab.php
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/Block/Adminhtml/Catalog/Category/Edit/Googleoptimizer.php
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/Block/Adminhtml/Catalog/Category/Edit/GoogleoptimizerForm.php
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/Block/Adminhtml/Catalog/Product/Edit/Tab/Googleoptimizer.php
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/Block/Adminhtml/Cms/Page/Edit/Tab/Googleoptimizer.php
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/Block/Adminhtml/Cms/Page/EntityCmsPage.php
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/Block/Adminhtml/Form.php
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/Block/Code/Category.php
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/Block/Code/Page.php
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/Block/Code/Product.php
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/Helper/Code.php
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/Helper/Data.php
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/Helper/Form.php
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/Model/Code.php
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/Model/Plugin/Catalog/Category/DataProvider.php
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/Model/Plugin/Catalog/Product/Category/DataProvider.php
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/Model/Plugin/Cms/Page/DataProvider.php
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/Model/ResourceModel/Code.php
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/Observer/AbstractSave.php
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/Observer/Category/DeleteCategoryGoogleExperimentScriptObserver.php
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/Observer/Category/SaveGoogleExperimentScriptObserver.php
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/Observer/CmsPage/DeleteCmsGoogleExperimentScriptObserver.php
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/Observer/CmsPage/SaveGoogleExperimentScriptObserver.php
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/Observer/Product/DeleteProductGoogleExperimentScriptObserver.php
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/Observer/Product/SaveGoogleExperimentScriptObserver.php
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/README.md
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/Test/Unit/Block/Code/CategoryTest.php
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/Test/Unit/Block/Code/ProductTest.php
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/Test/Unit/Helper/CodeTest.php
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/Test/Unit/Helper/DataTest.php
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/Test/Unit/Helper/FormTest.php
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/Test/Unit/Model/Plugin/Catalog/Product/Category/DataProviderTest.php
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/Test/Unit/Observer/Category/DeleteCategoryGoogleExperimentScriptObserverTest.php
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/Test/Unit/Observer/Category/SaveGoogleExperimentScriptObserverTest.php
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/Test/Unit/Observer/CmsPage/DeleteCmsGoogleExperimentScriptObserverTest.php
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/Test/Unit/Observer/CmsPage/SaveGoogleExperimentScriptObserverTest.php
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/Test/Unit/Observer/Product/DeleteProductGoogleExperimentScriptObserverTest.php
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/Test/Unit/Observer/Product/SaveGoogleExperimentScriptObserverTest.php
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/Test/Unit/Ui/DataProvider/Product/Form/Modifier/GoogleOptimizerTest.php
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/Ui/DataProvider/Product/Form/Modifier/GoogleOptimizer.php
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/composer.json
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/etc/events.xml
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/registration.php
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/view/adminhtml/layout/catalog_product_new.xml
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/view/adminhtml/layout/cms_page_edit.xml
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/view/adminhtml/ui_component/category_form.xml
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/view/adminhtml/ui_component/cms_page_form.xml
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/view/adminhtml/ui_component/new_category_form.xml
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/view/frontend/layout/catalog_category_view.xml
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/view/frontend/layout/catalog_product_view.xml
 mode change 100644 => 100755 app/code/Magento/GoogleOptimizer/view/frontend/layout/cms_page_view.xml
 mode change 100644 => 100755 app/code/Magento/GroupedImportExport/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/GroupedImportExport/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/GroupedImportExport/Model/Export/Product/Type/Grouped.php
 mode change 100644 => 100755 app/code/Magento/GroupedImportExport/Model/Export/RowCustomizer.php
 mode change 100644 => 100755 app/code/Magento/GroupedImportExport/Model/Import/Product/Type/Grouped.php
 mode change 100644 => 100755 app/code/Magento/GroupedImportExport/Model/Import/Product/Type/Grouped/Links.php
 mode change 100644 => 100755 app/code/Magento/GroupedImportExport/Test/Unit/Model/Export/Product/RowCustomizerTest.php
 mode change 100644 => 100755 app/code/Magento/GroupedImportExport/Test/Unit/Model/Import/Product/Type/Grouped/LinksTest.php
 mode change 100644 => 100755 app/code/Magento/GroupedImportExport/Test/Unit/Model/Import/Product/Type/GroupedTest.php
 mode change 100644 => 100755 app/code/Magento/GroupedImportExport/composer.json
 mode change 100644 => 100755 app/code/Magento/GroupedImportExport/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/GroupedImportExport/etc/export.xml
 mode change 100644 => 100755 app/code/Magento/GroupedImportExport/etc/import.xml
 mode change 100644 => 100755 app/code/Magento/GroupedImportExport/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/GroupedImportExport/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/GroupedImportExport/registration.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Block/Adminhtml/Items/Column/Name/Grouped.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Block/Adminhtml/Order/Create/Sidebar.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Block/Adminhtml/Product/Composite/Fieldset/Grouped.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Block/Cart/Item/Renderer/Grouped.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Block/Order/Email/Items/Order/Grouped.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Block/Order/Item/Renderer/Grouped.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Block/Product/Grouped/AssociatedProducts.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Block/Product/Grouped/AssociatedProducts/ListAssociatedProducts.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Block/Product/View/Type/Grouped.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Block/Stockqty/Type/Grouped.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Controller/Adminhtml/Edit/Popup.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/CustomerData/GroupedItem.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Helper/Product/Configuration/Plugin/Grouped.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Model/Order/Pdf/Items/Creditmemo/Grouped.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Model/Order/Pdf/Items/Invoice/Grouped.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Model/Product/Cart/Configuration/Plugin/Grouped.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Model/Product/CatalogPrice.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Model/Product/CopyConstructor/Grouped.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Model/Product/Initialization/Helper/ProductLinks/Plugin/Grouped.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Model/Product/Link/CollectionProvider/Grouped.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Model/Product/Link/ProductEntity/Converter.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Model/Product/Type/Grouped.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Model/Product/Type/Grouped/Backend.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Model/Product/Type/Grouped/Price.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Model/Product/Type/Plugin.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Model/ResourceModel/Indexer/Stock/Grouped.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Model/ResourceModel/Product/Indexer/Price/Grouped.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Model/ResourceModel/Product/Indexer/Price/GroupedInterface.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Model/ResourceModel/Product/Link.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Model/ResourceModel/Product/Link/RelationPersister.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Model/ResourceModel/Product/Type/Grouped/AssociatedProductsCollection.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Model/Sales/AdminOrder/Product/Quote/Plugin/Initializer.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Pricing/Price/ConfiguredPrice.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Pricing/Price/FinalPrice.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/README.md
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Setup/InstallData.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Setup/UpgradeData.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Test/Unit/Block/Adminhtml/Order/Create/SidebarTest.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Test/Unit/Block/Adminhtml/Product/Composite/Fieldset/GroupedTest.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Test/Unit/Block/Cart/Item/Renderer/GroupedTest.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Test/Unit/Block/Product/Grouped/AssociatedProducts/ListAssociatedProductsTest.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Test/Unit/Block/Product/Grouped/AssociatedProductsTest.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Test/Unit/Block/Product/View/Type/GroupedTest.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Test/Unit/Block/Stockqty/Type/GroupedTest.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Test/Unit/Controller/Adminhtml/Edit/PopupTest.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Test/Unit/Helper/Product/Configuration/Plugin/GroupedTest.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Test/Unit/Model/Product/Cart/Configuration/Plugin/GroupedTest.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Test/Unit/Model/Product/CatalogPriceTest.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Test/Unit/Model/Product/CopyConstructor/GroupedTest.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Test/Unit/Model/Product/Initialization/Helper/ProductLinks/Plugin/GroupedTest.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Test/Unit/Model/Product/Type/Grouped/PriceTest.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Test/Unit/Model/Product/Type/GroupedTest.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Test/Unit/Model/Product/Type/PluginTest.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Test/Unit/Model/ProductTest.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Test/Unit/Model/ResourceModel/Product/Link/RelationPersisterTest.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Test/Unit/Model/Sales/AdminOrder/Product/Quote/Plugin/InitializerTest.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Test/Unit/Pricing/Price/ConfiguredPriceTest.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Test/Unit/Pricing/Price/FinalPriceTest.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/CustomOptionsTest.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/GroupedTest.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Test/Unit/Ui/DataProvider/Product/GroupedProductDataProviderTest.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Ui/DataProvider/Product/Form/Modifier/CustomOptions.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Ui/DataProvider/Product/Form/Modifier/Grouped.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Ui/DataProvider/Product/Form/Modifier/StockData.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/Ui/DataProvider/Product/GroupedProductDataProvider.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/composer.json
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/etc/extension_attributes.xml
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/etc/frontend/di.xml
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/etc/pdf.xml
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/etc/product_types.xml
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/etc/sales.xml
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/registration.php
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/view/adminhtml/layout/catalog_product_grouped.xml
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/view/adminhtml/layout/catalog_product_new.xml
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/view/adminhtml/layout/catalog_product_view_type_grouped.xml
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/view/adminhtml/layout/groupedproduct_edit_popup.xml
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/view/adminhtml/layout/groupedproduct_popup_grid.xml
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/view/adminhtml/layout/sales_order_creditmemo_new.xml
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/view/adminhtml/layout/sales_order_creditmemo_updateqty.xml
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/view/adminhtml/layout/sales_order_creditmemo_view.xml
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/view/adminhtml/layout/sales_order_invoice_new.xml
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/view/adminhtml/layout/sales_order_invoice_updateqty.xml
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/view/adminhtml/layout/sales_order_invoice_view.xml
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/view/adminhtml/layout/sales_order_view.xml
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/view/adminhtml/requirejs-config.js
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/view/adminhtml/templates/catalog/product/composite/fieldset/grouped.phtml
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/view/adminhtml/templates/product/grouped/grouped.phtml
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/view/adminhtml/templates/product/grouped/list.phtml
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/view/adminhtml/templates/product/stock/disabler.phtml
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/view/adminhtml/ui_component/grouped_product_listing.xml
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/view/adminhtml/web/css/grouped-product.css
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/view/adminhtml/web/js/grouped-product.js
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/view/base/layout/catalog_product_prices.xml
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/view/base/templates/product/price/final_price.phtml
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/view/base/web/template/product/price/minimal_price.html
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/view/base/web/template/product/price/regular_price.html
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/view/frontend/layout/catalog_product_rss_feed_renderer_list.xml
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/view/frontend/layout/catalog_product_view_type_grouped.xml
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/view/frontend/layout/checkout_cart_item_renderers.xml
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/view/frontend/layout/checkout_onepage_review_item_renderers.xml
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/view/frontend/layout/sales_email_order_creditmemo_renderers.xml
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/view/frontend/layout/sales_email_order_invoice_renderers.xml
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/view/frontend/layout/sales_email_order_renderers.xml
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/view/frontend/layout/sales_guest_invoice.xml
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/view/frontend/layout/sales_order_creditmemo_renderers.xml
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/view/frontend/layout/sales_order_invoice_renderers.xml
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/view/frontend/layout/sales_order_item_renderers.xml
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/view/frontend/layout/sales_order_print_creditmemo_renderers.xml
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/view/frontend/layout/sales_order_print_invoice_renderers.xml
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/view/frontend/layout/sales_order_print_renderers.xml
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/view/frontend/templates/product/view/type/default.phtml
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/view/frontend/templates/product/view/type/grouped.phtml
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/view/frontend/ui_component/widget_recently_compared.xml
 mode change 100644 => 100755 app/code/Magento/GroupedProduct/view/frontend/ui_component/widget_recently_viewed.xml
 mode change 100644 => 100755 app/code/Magento/ImportExport/Block/Adminhtml/Export/Edit.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Block/Adminhtml/Export/Edit/Form.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Block/Adminhtml/Export/Filter.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Block/Adminhtml/Form/After.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Block/Adminhtml/Grid/Column/Renderer/Download.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Block/Adminhtml/Grid/Column/Renderer/Error.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Block/Adminhtml/History.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Block/Adminhtml/Import/Edit.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Block/Adminhtml/Import/Edit/Before.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Block/Adminhtml/Import/Edit/Form.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Block/Adminhtml/Import/Frame/Result.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Controller/Adminhtml/Export.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Controller/Adminhtml/Export/Export.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Controller/Adminhtml/Export/GetFilter.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Controller/Adminhtml/Export/Index.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Controller/Adminhtml/History.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Controller/Adminhtml/History/Download.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Controller/Adminhtml/History/Index.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Controller/Adminhtml/Import.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Controller/Adminhtml/Import/Download.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Controller/Adminhtml/Import/Index.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Controller/Adminhtml/Import/Start.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Controller/Adminhtml/Import/Validate.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Controller/Adminhtml/ImportResult.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Files/Sample/advanced_pricing.csv
 mode change 100644 => 100755 app/code/Magento/ImportExport/Files/Sample/catalog_product.csv
 mode change 100644 => 100755 app/code/Magento/ImportExport/Files/Sample/customer.csv
 mode change 100644 => 100755 app/code/Magento/ImportExport/Files/Sample/customer_address.csv
 mode change 100644 => 100755 app/code/Magento/ImportExport/Files/Sample/customer_composite.csv
 mode change 100644 => 100755 app/code/Magento/ImportExport/Files/Sample/customer_finance.csv
 mode change 100644 => 100755 app/code/Magento/ImportExport/Helper/Data.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Helper/Report.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/ImportExport/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/ImportExport/Model/AbstractModel.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Model/Export.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Model/Export/AbstractEntity.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Model/Export/Adapter/AbstractAdapter.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Model/Export/Adapter/Csv.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Model/Export/Adapter/Factory.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Model/Export/Config.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Model/Export/Config/Converter.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Model/Export/Config/Reader.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Model/Export/Config/SchemaLocator.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Model/Export/ConfigInterface.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Model/Export/Entity/AbstractEav.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Model/Export/Entity/AbstractEntity.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Model/Export/Entity/Factory.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Model/Export/Factory.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Model/History.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Model/Import.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Model/Import/AbstractEntity.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Model/Import/AbstractSource.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Model/Import/Adapter.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Model/Import/Config.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Model/Import/Config/Converter.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Model/Import/Config/Reader.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Model/Import/Config/SchemaLocator.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Model/Import/ConfigInterface.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Model/Import/Entity/AbstractEav.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Model/Import/Entity/AbstractEntity.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Model/Import/Entity/Factory.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Model/Import/ErrorProcessing/ProcessingError.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Model/Import/ErrorProcessing/ProcessingErrorAggregator.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Model/Import/ErrorProcessing/ProcessingErrorAggregatorInterface.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Model/Import/Source/Csv.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Model/Import/Source/Zip.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Model/Report/Csv.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Model/Report/ReportProcessorInterface.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Model/ResourceModel/CollectionByPagesIterator.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Model/ResourceModel/Helper.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Model/ResourceModel/History.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Model/ResourceModel/History/Collection.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Model/ResourceModel/Import/Data.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Model/Source/Export/Entity.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Model/Source/Export/Format.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Model/Source/Import/AbstractBehavior.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Model/Source/Import/Behavior/Basic.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Model/Source/Import/Behavior/Custom.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Model/Source/Import/Behavior/Factory.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Model/Source/Import/Entity.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/README.md
 mode change 100644 => 100755 app/code/Magento/ImportExport/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Setup/UpgradeSchema.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Block/Adminhtml/Export/FilterTest.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Block/Adminhtml/Grid/Column/Renderer/DownloadTest.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Block/Adminhtml/Import/Edit/FormTest.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Controller/Adminhtml/History/DownloadTest.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Controller/Adminhtml/History/IndexTest.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Controller/Adminhtml/Import/ValidateTest.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Helper/ReportTest.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/ConverterTest.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/SchemaLocatorTest.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/XsdTest.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/_files/export.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/_files/export.xml
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/_files/export_merged_valid.xml
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/_files/export_valid.xml
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/_files/invalidExportMergedXmlArray.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/_files/invalidExportXmlArray.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Model/Export/ConfigTest.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Model/Export/Entity/AbstractEavTest.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Model/Export/EntityAbstractTest.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Model/ExportTest.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Model/Import/AbstractImportTestCase.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Model/Import/AdapterTest.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/ConverterTest.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/SchemaLocatorTest.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/XsdMergedTest.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/XsdTest.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/_files/import.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/_files/import.xml
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/_files/invalidImportMergedXmlArray.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/_files/invalidImportXmlArray.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/_files/valid_import.xml
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/_files/valid_import_merged.xml
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Model/Import/ConfigTest.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Model/Import/Entity/AbstractTest.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Model/Import/Entity/EavAbstractTest.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Model/Import/EntityAbstractTest.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Model/Import/ErrorProcessing/ProcessingErrorAggregatorTest.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Model/Import/ErrorProcessing/ProcessingErrorTest.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Model/Import/Source/CsvTest.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Model/Import/Source/ZipTest.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Model/Import/Source/_files/test.csv
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Model/Import/SourceAbstractTest.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Model/ImportTest.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Model/Report/CsvTest.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Model/ResourceModel/CollectionByPagesIteratorTest.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Model/ResourceModel/HistoryTest.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Model/Source/Import/AbstractBehaviorTestCase.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Model/Source/Import/Behavior/BasicTest.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Model/Source/Import/Behavior/CustomTest.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/Test/Unit/Model/Source/Import/BehaviorAbstractTest.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/composer.json
 mode change 100644 => 100755 app/code/Magento/ImportExport/etc/acl.xml
 mode change 100644 => 100755 app/code/Magento/ImportExport/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/ImportExport/etc/adminhtml/menu.xml
 mode change 100644 => 100755 app/code/Magento/ImportExport/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/ImportExport/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/ImportExport/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/ImportExport/etc/export.xsd
 mode change 100644 => 100755 app/code/Magento/ImportExport/etc/export_merged.xsd
 mode change 100644 => 100755 app/code/Magento/ImportExport/etc/import.xsd
 mode change 100644 => 100755 app/code/Magento/ImportExport/etc/import_merged.xsd
 mode change 100644 => 100755 app/code/Magento/ImportExport/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/ImportExport/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/ImportExport/registration.php
 mode change 100644 => 100755 app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_export_getfilter.xml
 mode change 100644 => 100755 app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_export_index.xml
 mode change 100644 => 100755 app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_history_grid_block.xml
 mode change 100644 => 100755 app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_history_index.xml
 mode change 100644 => 100755 app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_import_busy.xml
 mode change 100644 => 100755 app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_import_index.xml
 mode change 100644 => 100755 app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_import_start.xml
 mode change 100644 => 100755 app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_import_validate.xml
 mode change 100644 => 100755 app/code/Magento/ImportExport/view/adminhtml/templates/busy.phtml
 mode change 100644 => 100755 app/code/Magento/ImportExport/view/adminhtml/templates/export/form/after.phtml
 mode change 100644 => 100755 app/code/Magento/ImportExport/view/adminhtml/templates/export/form/before.phtml
 mode change 100644 => 100755 app/code/Magento/ImportExport/view/adminhtml/templates/export/form/filter/after.phtml
 mode change 100644 => 100755 app/code/Magento/ImportExport/view/adminhtml/templates/import/form/after.phtml
 mode change 100644 => 100755 app/code/Magento/ImportExport/view/adminhtml/templates/import/form/before.phtml
 mode change 100644 => 100755 app/code/Magento/ImportExport/view/adminhtml/templates/import/frame/result.phtml
 mode change 100644 => 100755 app/code/Magento/ImportExport/view/adminhtml/web/css/importexport.css
 mode change 100644 => 100755 app/code/Magento/Indexer/App/Indexer.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Block/Backend/Container.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Block/Backend/Grid/Column/Renderer/Scheduled.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Block/Backend/Grid/Column/Renderer/Status.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Block/Backend/Grid/Column/Renderer/Updated.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Block/Backend/Grid/ItemsUpdater.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Console/Command/AbstractIndexerCommand.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Console/Command/AbstractIndexerManageCommand.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Console/Command/IndexerInfoCommand.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Console/Command/IndexerReindexCommand.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Console/Command/IndexerResetStateCommand.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Console/Command/IndexerSetModeCommand.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Console/Command/IndexerShowModeCommand.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Console/Command/IndexerStatusCommand.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Controller/Adminhtml/Indexer.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Controller/Adminhtml/Indexer/ListAction.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Controller/Adminhtml/Indexer/MassChangelog.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Controller/Adminhtml/Indexer/MassOnTheFly.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Cron/ClearChangelog.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Cron/ReindexAllInvalid.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Cron/UpdateMview.php
 mode change 100644 => 100755 app/code/Magento/Indexer/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Indexer/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Indexer/Model/Config.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Model/Config/Data.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Model/Indexer.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Model/Indexer/Collection.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Model/Indexer/DependencyDecorator.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Model/Indexer/State.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Model/Message/Invalid.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Model/Mview/View/State.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Model/Processor.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Model/Processor/CleanCache.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Model/ResourceModel/AbstractResource.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Model/ResourceModel/Indexer/State.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Model/ResourceModel/Indexer/State/Collection.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Model/ResourceModel/Mview/View/State.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Model/ResourceModel/Mview/View/State/Collection.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Model/Source/DataInterface.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Model/Source/ServiceSource.php
 mode change 100644 => 100755 app/code/Magento/Indexer/README.md
 mode change 100644 => 100755 app/code/Magento/Indexer/Setup/InstallData.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Setup/Recurring.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Setup/RecurringData.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Test/Unit/App/IndexerTest.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Test/Unit/Block/Backend/ContainerTest.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Test/Unit/Block/Backend/Grid/Column/Renderer/ScheduledTest.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Test/Unit/Block/Backend/Grid/Column/Renderer/StatusTest.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Test/Unit/Block/Backend/Grid/Column/Renderer/UpdatedTest.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Test/Unit/Block/Backend/Grid/ItemsUpdaterTest.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Test/Unit/Console/Command/AbstractIndexerCommandCommonSetup.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Test/Unit/Console/Command/IndexerInfoCommandTest.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Test/Unit/Console/Command/IndexerReindexCommandTest.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Test/Unit/Console/Command/IndexerResetStateCommandTest.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Test/Unit/Console/Command/IndexerSetModeCommandTest.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Test/Unit/Console/Command/IndexerShowModeCommandTest.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Test/Unit/Console/Command/IndexerStatusCommandTest.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Test/Unit/Controller/Adminhtml/Indexer/ListActionTest.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Test/Unit/Controller/Adminhtml/Indexer/MassChangelogTest.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Test/Unit/Controller/Adminhtml/Indexer/MassOnTheFlyTest.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Test/Unit/Model/CacheContextTest.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Test/Unit/Model/Config/DataTest.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Test/Unit/Model/ConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Test/Unit/Model/Indexer/AbstractProcessorStub.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Test/Unit/Model/Indexer/AbstractProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Test/Unit/Model/Indexer/CollectionTest.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Test/Unit/Model/Indexer/DependencyDecoratorTest.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Test/Unit/Model/Indexer/StateTest.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Test/Unit/Model/IndexerTest.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Test/Unit/Model/Message/InvalidTest.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Test/Unit/Model/Mview/View/StateTest.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Test/Unit/Model/Processor/CleanCacheTest.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Test/Unit/Model/ProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Test/Unit/Model/ResourceModel/AbstractResourceStub.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Test/Unit/Model/ResourceModel/AbstractResourceTest.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Test/Unit/Model/ResourceModel/Indexer/State/CollectionTest.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Test/Unit/Model/ResourceModel/Indexer/StateTest.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Test/Unit/Model/ResourceModel/Mview/View/State/CollectionTest.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Test/Unit/Model/ResourceModel/Mview/View/StateTest.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Test/Unit/Ui/DataProvider/Indexer/DataCollectionTest.php
 mode change 100644 => 100755 app/code/Magento/Indexer/Ui/DataProvider/Indexer/DataCollection.php
 mode change 100644 => 100755 app/code/Magento/Indexer/composer.json
 mode change 100644 => 100755 app/code/Magento/Indexer/etc/acl.xml
 mode change 100644 => 100755 app/code/Magento/Indexer/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/Indexer/etc/adminhtml/menu.xml
 mode change 100644 => 100755 app/code/Magento/Indexer/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/Indexer/etc/cron_groups.xml
 mode change 100644 => 100755 app/code/Magento/Indexer/etc/crontab.xml
 mode change 100644 => 100755 app/code/Magento/Indexer/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Indexer/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Indexer/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Indexer/registration.php
 mode change 100644 => 100755 app/code/Magento/Indexer/view/adminhtml/layout/indexer_indexer_list.xml
 mode change 100644 => 100755 app/code/Magento/Indexer/view/adminhtml/layout/indexer_indexer_list_grid.xml
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/Block/Button.php
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/Controller/Button/PlaceOrder.php
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/CustomerData/InstantPurchase.php
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/Model/BillingAddressChoose/BillingAddressChooserInterface.php
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/Model/BillingAddressChoose/DefaultBillingAddressChooser.php
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/Model/Config.php
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/Model/InstantPurchaseChooser.php
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/Model/InstantPurchaseInterface.php
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/Model/InstantPurchaseOption.php
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/Model/InstantPurchaseOptionFactory.php
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/Model/InstantPurchaseOptionLoadingFactory.php
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/Model/PaymentMethodChoose/LastCreatedPaymentTokenChooser.php
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/Model/PaymentMethodChoose/PaymentTokenChooserInterface.php
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/Model/PlaceOrder.php
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/Model/QuoteManagement/PaymentConfiguration.php
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/Model/QuoteManagement/Purchase.php
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/Model/QuoteManagement/QuoteCreation.php
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/Model/QuoteManagement/QuoteFilling.php
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/Model/QuoteManagement/ShippingConfiguration.php
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/Model/ShippingAddressChoose/DefaultShippingAddressChooser.php
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/Model/ShippingAddressChoose/ShippingAddressChooserInterface.php
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/Model/ShippingMethodChoose/CarrierFinder.php
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/Model/ShippingMethodChoose/CheapestMethodChooser.php
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/Model/ShippingMethodChoose/CheapestMethodDeferredChooser.php
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/Model/ShippingMethodChoose/DeferredShippingMethodChooserInterface.php
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/Model/ShippingMethodChoose/DeferredShippingMethodChooserPool.php
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/Model/ShippingMethodChoose/ShippingMethodChooserInterface.php
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/Model/Ui/CustomerAddressesFormatter.php
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/Model/Ui/PaymentTokenFormatter.php
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/Model/Ui/ShippingMethodFormatter.php
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/PaymentMethodIntegration/AvailabilityCheckerInterface.php
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/PaymentMethodIntegration/Integration.php
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/PaymentMethodIntegration/IntegrationFactory.php
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/PaymentMethodIntegration/IntegrationsManager.php
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/PaymentMethodIntegration/PaymentAdditionalInformationProviderInterface.php
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/PaymentMethodIntegration/PaymentTokenFormatterInterface.php
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/PaymentMethodIntegration/SimplePaymentTokenFormatter.php
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/PaymentMethodIntegration/StaticAdditionalInformationProvider.php
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/PaymentMethodIntegration/StaticAvailabilityChecker.php
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/README.md
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/composer.json
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/etc/frontend/di.xml
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/etc/frontend/routes.xml
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/etc/frontend/sections.xml
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/registration.php
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/view/frontend/layout/catalog_product_view.xml
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/view/frontend/layout/catalog_product_view_type_bundle.xml
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/view/frontend/templates/button.phtml
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/view/frontend/web/js/view/instant-purchase.js
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/view/frontend/web/template/confirmation.html
 mode change 100644 => 100755 app/code/Magento/InstantPurchase/view/frontend/web/template/instant-purchase.html
 mode change 100644 => 100755 app/code/Magento/Integration/Api/AdminTokenServiceInterface.php
 mode change 100644 => 100755 app/code/Magento/Integration/Api/AuthorizationServiceInterface.php
 mode change 100644 => 100755 app/code/Magento/Integration/Api/CustomerTokenServiceInterface.php
 mode change 100644 => 100755 app/code/Magento/Integration/Api/IntegrationServiceInterface.php
 mode change 100644 => 100755 app/code/Magento/Integration/Api/OauthServiceInterface.php
 mode change 100644 => 100755 app/code/Magento/Integration/Block/Adminhtml/Integration.php
 mode change 100644 => 100755 app/code/Magento/Integration/Block/Adminhtml/Integration/Activate/Permissions/Tab/Webapi.php
 mode change 100644 => 100755 app/code/Magento/Integration/Block/Adminhtml/Integration/Activate/Permissions/Tabs.php
 mode change 100644 => 100755 app/code/Magento/Integration/Block/Adminhtml/Integration/Edit.php
 mode change 100644 => 100755 app/code/Magento/Integration/Block/Adminhtml/Integration/Edit/Form.php
 mode change 100644 => 100755 app/code/Magento/Integration/Block/Adminhtml/Integration/Edit/Tab/Info.php
 mode change 100644 => 100755 app/code/Magento/Integration/Block/Adminhtml/Integration/Edit/Tab/Webapi.php
 mode change 100644 => 100755 app/code/Magento/Integration/Block/Adminhtml/Integration/Edit/Tabs.php
 mode change 100644 => 100755 app/code/Magento/Integration/Block/Adminhtml/Integration/Grid.php
 mode change 100644 => 100755 app/code/Magento/Integration/Block/Adminhtml/Integration/Tokens.php
 mode change 100644 => 100755 app/code/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Button.php
 mode change 100644 => 100755 app/code/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Button/Delete.php
 mode change 100644 => 100755 app/code/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Button/Edit.php
 mode change 100644 => 100755 app/code/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Link.php
 mode change 100644 => 100755 app/code/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Link/Activate.php
 mode change 100644 => 100755 app/code/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Name.php
 mode change 100644 => 100755 app/code/Magento/Integration/Controller/Adminhtml/Integration.php
 mode change 100644 => 100755 app/code/Magento/Integration/Controller/Adminhtml/Integration/Delete.php
 mode change 100644 => 100755 app/code/Magento/Integration/Controller/Adminhtml/Integration/Edit.php
 mode change 100644 => 100755 app/code/Magento/Integration/Controller/Adminhtml/Integration/Grid.php
 mode change 100644 => 100755 app/code/Magento/Integration/Controller/Adminhtml/Integration/Index.php
 mode change 100644 => 100755 app/code/Magento/Integration/Controller/Adminhtml/Integration/LoginSuccessCallback.php
 mode change 100644 => 100755 app/code/Magento/Integration/Controller/Adminhtml/Integration/NewAction.php
 mode change 100644 => 100755 app/code/Magento/Integration/Controller/Adminhtml/Integration/PermissionsDialog.php
 mode change 100644 => 100755 app/code/Magento/Integration/Controller/Adminhtml/Integration/Save.php
 mode change 100644 => 100755 app/code/Magento/Integration/Controller/Adminhtml/Integration/TokensDialog.php
 mode change 100644 => 100755 app/code/Magento/Integration/Controller/Adminhtml/Integration/TokensExchange.php
 mode change 100644 => 100755 app/code/Magento/Integration/Controller/Token/Access.php
 mode change 100644 => 100755 app/code/Magento/Integration/Controller/Token/Request.php
 mode change 100644 => 100755 app/code/Magento/Integration/Cron/CleanExpiredAuthenticationFailures.php
 mode change 100644 => 100755 app/code/Magento/Integration/Cron/CleanExpiredTokens.php
 mode change 100644 => 100755 app/code/Magento/Integration/Helper/Data.php
 mode change 100644 => 100755 app/code/Magento/Integration/Helper/Oauth/Data.php
 mode change 100644 => 100755 app/code/Magento/Integration/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Integration/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Integration/Model/AdminTokenService.php
 mode change 100644 => 100755 app/code/Magento/Integration/Model/AuthorizationService.php
 mode change 100644 => 100755 app/code/Magento/Integration/Model/Cache/Type.php
 mode change 100644 => 100755 app/code/Magento/Integration/Model/Cache/TypeConsolidated.php
 mode change 100644 => 100755 app/code/Magento/Integration/Model/Cache/TypeIntegration.php
 mode change 100644 => 100755 app/code/Magento/Integration/Model/Config.php
 mode change 100644 => 100755 app/code/Magento/Integration/Model/Config/Consolidated/Converter.php
 mode change 100644 => 100755 app/code/Magento/Integration/Model/Config/Consolidated/Reader.php
 mode change 100644 => 100755 app/code/Magento/Integration/Model/Config/Consolidated/SchemaLocator.php
 mode change 100644 => 100755 app/code/Magento/Integration/Model/Config/Converter.php
 mode change 100644 => 100755 app/code/Magento/Integration/Model/Config/Integration/Converter.php
 mode change 100644 => 100755 app/code/Magento/Integration/Model/Config/Integration/Reader.php
 mode change 100644 => 100755 app/code/Magento/Integration/Model/Config/Integration/SchemaLocator.php
 mode change 100644 => 100755 app/code/Magento/Integration/Model/Config/Reader.php
 mode change 100644 => 100755 app/code/Magento/Integration/Model/Config/SchemaLocator.php
 mode change 100644 => 100755 app/code/Magento/Integration/Model/ConfigBasedIntegrationManager.php
 mode change 100644 => 100755 app/code/Magento/Integration/Model/ConsolidatedConfig.php
 mode change 100644 => 100755 app/code/Magento/Integration/Model/CredentialsValidator.php
 mode change 100644 => 100755 app/code/Magento/Integration/Model/CustomerTokenService.php
 mode change 100644 => 100755 app/code/Magento/Integration/Model/Integration.php
 mode change 100644 => 100755 app/code/Magento/Integration/Model/Integration/Source/Status.php
 mode change 100644 => 100755 app/code/Magento/Integration/Model/IntegrationConfig.php
 mode change 100644 => 100755 app/code/Magento/Integration/Model/IntegrationService.php
 mode change 100644 => 100755 app/code/Magento/Integration/Model/Message/RecreatedIntegration.php
 mode change 100644 => 100755 app/code/Magento/Integration/Model/Oauth/Consumer.php
 mode change 100644 => 100755 app/code/Magento/Integration/Model/Oauth/Consumer/Validator/KeyLength.php
 mode change 100644 => 100755 app/code/Magento/Integration/Model/Oauth/Nonce.php
 mode change 100644 => 100755 app/code/Magento/Integration/Model/Oauth/Nonce/Generator.php
 mode change 100644 => 100755 app/code/Magento/Integration/Model/Oauth/Token.php
 mode change 100644 => 100755 app/code/Magento/Integration/Model/Oauth/Token/Provider.php
 mode change 100644 => 100755 app/code/Magento/Integration/Model/Oauth/Token/RequestLog/Config.php
 mode change 100644 => 100755 app/code/Magento/Integration/Model/Oauth/Token/RequestLog/ReaderInterface.php
 mode change 100644 => 100755 app/code/Magento/Integration/Model/Oauth/Token/RequestLog/WriterInterface.php
 mode change 100644 => 100755 app/code/Magento/Integration/Model/Oauth/Token/RequestThrottler.php
 mode change 100644 => 100755 app/code/Magento/Integration/Model/OauthService.php
 mode change 100644 => 100755 app/code/Magento/Integration/Model/Plugin/Integration.php
 mode change 100644 => 100755 app/code/Magento/Integration/Model/ResourceModel/Integration.php
 mode change 100644 => 100755 app/code/Magento/Integration/Model/ResourceModel/Integration/Collection.php
 mode change 100644 => 100755 app/code/Magento/Integration/Model/ResourceModel/Oauth/Consumer.php
 mode change 100644 => 100755 app/code/Magento/Integration/Model/ResourceModel/Oauth/Consumer/Collection.php
 mode change 100644 => 100755 app/code/Magento/Integration/Model/ResourceModel/Oauth/Nonce.php
 mode change 100644 => 100755 app/code/Magento/Integration/Model/ResourceModel/Oauth/Nonce/Collection.php
 mode change 100644 => 100755 app/code/Magento/Integration/Model/ResourceModel/Oauth/Token.php
 mode change 100644 => 100755 app/code/Magento/Integration/Model/ResourceModel/Oauth/Token/Collection.php
 mode change 100644 => 100755 app/code/Magento/Integration/Model/ResourceModel/Oauth/Token/RequestLog.php
 mode change 100644 => 100755 app/code/Magento/Integration/Plugin/Model/AdminUser.php
 mode change 100644 => 100755 app/code/Magento/Integration/Plugin/Model/CustomerUser.php
 mode change 100644 => 100755 app/code/Magento/Integration/README.md
 mode change 100644 => 100755 app/code/Magento/Integration/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/Integration/Setup/Recurring.php
 mode change 100644 => 100755 app/code/Magento/Integration/Setup/UpgradeData.php
 mode change 100644 => 100755 app/code/Magento/Integration/Setup/UpgradeSchema.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Block/Adminhtml/Integration/Edit/Tab/InfoTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Block/Adminhtml/Integration/Edit/Tab/WebapiTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Block/Adminhtml/Widget/Grid/Column/Renderer/ButtonTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Block/Adminhtml/Widget/Grid/Column/Renderer/LinkTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Block/Adminhtml/Widget/Grid/Column/Renderer/NameTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/DeleteTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/EditTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/IndexTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/NewActionTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/PermissionsDialogTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/SaveTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/TokensDialogTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/TokensExchangeTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/IntegrationTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Controller/Token/AccessTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Controller/Token/RequestTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Helper/DataTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Helper/Oauth/ConsumerTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Helper/Oauth/DataTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Helper/Oauth/OauthTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Helper/_files/acl-map.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Helper/_files/acl.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Model/AdminTokenServiceTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Model/AuthorizationServiceTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Model/Config/Consolidated/ConverterTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Model/Config/Consolidated/SchemaLocatorTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Model/Config/Consolidated/XsdTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Model/Config/Consolidated/_files/acl.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Model/Config/Consolidated/_files/integration.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Model/Config/Consolidated/_files/integration.xml
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Model/Config/ConverterTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Model/Config/Integration/ConverterTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Model/Config/Integration/SchemaLocatorTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Model/Config/Integration/XsdTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Model/Config/Integration/_files/api.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Model/Config/Integration/_files/api.xml
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Model/Config/SchemaLocatorTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Model/Config/XsdTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Model/Config/_files/config.xml
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Model/Config/_files/integration.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Model/ConsolidatedConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Model/CredentialsValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Model/CustomerTokenServiceTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Model/Integration/Source/StatusTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Model/IntegrationConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Model/IntegrationServiceTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Model/IntegrationTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Model/ManagerTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Model/Oauth/Consumer/Validator/KeyLengthTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Model/Oauth/ConsumerTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Model/Oauth/NonceTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Model/Oauth/Token/ProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Model/Oauth/TokenTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Model/OauthServiceTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Model/Plugin/IntegrationTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Model/ResourceModel/Integration/CollectionTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Model/ResourceModel/IntegrationTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Model/ResourceModel/Oauth/ConsumerTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Model/ResourceModel/Oauth/NonceTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Model/ResourceModel/Oauth/Token/CollectionTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Model/ResourceModel/Oauth/TokenTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/Test/Unit/Oauth/OauthTest.php
 mode change 100644 => 100755 app/code/Magento/Integration/composer.json
 mode change 100644 => 100755 app/code/Magento/Integration/etc/acl.xml
 mode change 100644 => 100755 app/code/Magento/Integration/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/Integration/etc/adminhtml/menu.xml
 mode change 100644 => 100755 app/code/Magento/Integration/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/Integration/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/Integration/etc/cache.xml
 mode change 100644 => 100755 app/code/Magento/Integration/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/Integration/etc/crontab.xml
 mode change 100644 => 100755 app/code/Magento/Integration/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Integration/etc/frontend/routes.xml
 mode change 100644 => 100755 app/code/Magento/Integration/etc/integration/api.xsd
 mode change 100644 => 100755 app/code/Magento/Integration/etc/integration/config.xsd
 mode change 100644 => 100755 app/code/Magento/Integration/etc/integration/integration.xsd
 mode change 100644 => 100755 app/code/Magento/Integration/etc/integration/integration_base.xsd
 mode change 100644 => 100755 app/code/Magento/Integration/etc/integration/integration_file.xsd
 mode change 100644 => 100755 app/code/Magento/Integration/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Integration/etc/webapi.xml
 mode change 100644 => 100755 app/code/Magento/Integration/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Integration/registration.php
 mode change 100644 => 100755 app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_edit.xml
 mode change 100644 => 100755 app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_grid.xml
 mode change 100644 => 100755 app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_grid_block.xml
 mode change 100644 => 100755 app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_index.xml
 mode change 100644 => 100755 app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_new.xml
 mode change 100644 => 100755 app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_permissionsdialog.xml
 mode change 100644 => 100755 app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_tokensdialog.xml
 mode change 100644 => 100755 app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_tokensexchange.xml
 mode change 100644 => 100755 app/code/Magento/Integration/view/adminhtml/requirejs-config.js
 mode change 100644 => 100755 app/code/Magento/Integration/view/adminhtml/templates/integration/activate/permissions.phtml
 mode change 100644 => 100755 app/code/Magento/Integration/view/adminhtml/templates/integration/activate/permissions/tab/webapi.phtml
 mode change 100644 => 100755 app/code/Magento/Integration/view/adminhtml/templates/integration/popup_container.phtml
 mode change 100644 => 100755 app/code/Magento/Integration/view/adminhtml/templates/integration/tokens_exchange.phtml
 mode change 100644 => 100755 app/code/Magento/Integration/view/adminhtml/templates/resourcetree.phtml
 mode change 100644 => 100755 app/code/Magento/Integration/view/adminhtml/web/js/integration.js
 mode change 100644 => 100755 app/code/Magento/LayeredNavigation/Block/Navigation.php
 mode change 100644 => 100755 app/code/Magento/LayeredNavigation/Block/Navigation/FilterRenderer.php
 mode change 100644 => 100755 app/code/Magento/LayeredNavigation/Block/Navigation/FilterRendererInterface.php
 mode change 100644 => 100755 app/code/Magento/LayeredNavigation/Block/Navigation/State.php
 mode change 100644 => 100755 app/code/Magento/LayeredNavigation/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/LayeredNavigation/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/LayeredNavigation/Model/Aggregation/Status.php
 mode change 100644 => 100755 app/code/Magento/LayeredNavigation/Model/Attribute/Source/FilterableOptions.php
 mode change 100644 => 100755 app/code/Magento/LayeredNavigation/Observer/Edit/Tab/Front/ProductAttributeFormBuildFrontTabObserver.php
 mode change 100644 => 100755 app/code/Magento/LayeredNavigation/Observer/Grid/ProductAttributeGridBuildObserver.php
 mode change 100644 => 100755 app/code/Magento/LayeredNavigation/README.md
 mode change 100644 => 100755 app/code/Magento/LayeredNavigation/Test/Unit/Block/NavigationTest.php
 mode change 100644 => 100755 app/code/Magento/LayeredNavigation/Test/Unit/Model/Aggregation/StatusTest.php
 mode change 100644 => 100755 app/code/Magento/LayeredNavigation/composer.json
 mode change 100644 => 100755 app/code/Magento/LayeredNavigation/etc/adminhtml/events.xml
 mode change 100644 => 100755 app/code/Magento/LayeredNavigation/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/LayeredNavigation/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/LayeredNavigation/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/LayeredNavigation/etc/frontend/di.xml
 mode change 100644 => 100755 app/code/Magento/LayeredNavigation/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/LayeredNavigation/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/LayeredNavigation/registration.php
 mode change 100644 => 100755 app/code/Magento/LayeredNavigation/view/adminhtml/ui_component/product_attribute_add_form.xml
 mode change 100644 => 100755 app/code/Magento/LayeredNavigation/view/adminhtml/ui_component/product_attributes_grid.xml
 mode change 100644 => 100755 app/code/Magento/LayeredNavigation/view/adminhtml/ui_component/product_attributes_listing.xml
 mode change 100644 => 100755 app/code/Magento/LayeredNavigation/view/frontend/layout/catalog_category_view_type_layered.xml
 mode change 100644 => 100755 app/code/Magento/LayeredNavigation/view/frontend/layout/catalog_category_view_type_layered_without_children.xml
 mode change 100644 => 100755 app/code/Magento/LayeredNavigation/view/frontend/layout/catalogsearch_result_index.xml
 mode change 100644 => 100755 app/code/Magento/LayeredNavigation/view/frontend/page_layout/1column.xml
 mode change 100644 => 100755 app/code/Magento/LayeredNavigation/view/frontend/page_layout/2columns-left.xml
 mode change 100644 => 100755 app/code/Magento/LayeredNavigation/view/frontend/page_layout/2columns-right.xml
 mode change 100644 => 100755 app/code/Magento/LayeredNavigation/view/frontend/page_layout/3columns.xml
 mode change 100644 => 100755 app/code/Magento/LayeredNavigation/view/frontend/page_layout/empty.xml
 mode change 100644 => 100755 app/code/Magento/LayeredNavigation/view/frontend/templates/layer/filter.phtml
 mode change 100644 => 100755 app/code/Magento/LayeredNavigation/view/frontend/templates/layer/state.phtml
 mode change 100644 => 100755 app/code/Magento/LayeredNavigation/view/frontend/templates/layer/view.phtml
 mode change 100644 => 100755 app/code/Magento/Marketplace/Block/Index.php
 mode change 100644 => 100755 app/code/Magento/Marketplace/Block/Partners.php
 mode change 100644 => 100755 app/code/Magento/Marketplace/Controller/Adminhtml/Index.php
 mode change 100644 => 100755 app/code/Magento/Marketplace/Controller/Adminhtml/Index/Index.php
 mode change 100644 => 100755 app/code/Magento/Marketplace/Controller/Adminhtml/Partners.php
 mode change 100644 => 100755 app/code/Magento/Marketplace/Controller/Adminhtml/Partners/Index.php
 mode change 100644 => 100755 app/code/Magento/Marketplace/Helper/Cache.php
 mode change 100644 => 100755 app/code/Magento/Marketplace/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Marketplace/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Marketplace/Model/Partners.php
 mode change 100644 => 100755 app/code/Magento/Marketplace/README.md
 mode change 100644 => 100755 app/code/Magento/Marketplace/Test/Unit/Block/PartnersTest.php
 mode change 100644 => 100755 app/code/Magento/Marketplace/Test/Unit/Controller/Index/IndexTest.php
 mode change 100644 => 100755 app/code/Magento/Marketplace/Test/Unit/Controller/Partners/IndexTest.php
 mode change 100644 => 100755 app/code/Magento/Marketplace/Test/Unit/Helper/CacheTest.php
 mode change 100644 => 100755 app/code/Magento/Marketplace/Test/Unit/Model/PartnersTest.php
 mode change 100644 => 100755 app/code/Magento/Marketplace/composer.json
 mode change 100644 => 100755 app/code/Magento/Marketplace/etc/adminhtml/menu.xml
 mode change 100644 => 100755 app/code/Magento/Marketplace/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/Marketplace/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Marketplace/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Marketplace/registration.php
 mode change 100644 => 100755 app/code/Magento/Marketplace/view/adminhtml/layout/marketplace_index_index.xml
 mode change 100644 => 100755 app/code/Magento/Marketplace/view/adminhtml/layout/marketplace_partners_index.xml
 mode change 100644 => 100755 app/code/Magento/Marketplace/view/adminhtml/templates/index.phtml
 mode change 100644 => 100755 app/code/Magento/Marketplace/view/adminhtml/templates/partners.phtml
 mode change 100644 => 100755 app/code/Magento/Marketplace/view/adminhtml/web/default.js
 mode change 100644 => 100755 app/code/Magento/Marketplace/view/adminhtml/web/partners/images/magento-marketplace.svg
 mode change 100644 => 100755 app/code/Magento/MediaStorage/App/Media.php
 mode change 100644 => 100755 app/code/Magento/MediaStorage/Block/System/Config/System/Storage/Media/Synchronize.php
 mode change 100644 => 100755 app/code/Magento/MediaStorage/Controller/Adminhtml/System/Config/System/Storage.php
 mode change 100644 => 100755 app/code/Magento/MediaStorage/Controller/Adminhtml/System/Config/System/Storage/Status.php
 mode change 100644 => 100755 app/code/Magento/MediaStorage/Controller/Adminhtml/System/Config/System/Storage/Synchronize.php
 mode change 100644 => 100755 app/code/Magento/MediaStorage/Helper/File/Media.php
 mode change 100644 => 100755 app/code/Magento/MediaStorage/Helper/File/Storage.php
 mode change 100644 => 100755 app/code/Magento/MediaStorage/Helper/File/Storage/Database.php
 mode change 100644 => 100755 app/code/Magento/MediaStorage/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/MediaStorage/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/MediaStorage/Model/Asset/Plugin/CleanMergedJsCss.php
 mode change 100644 => 100755 app/code/Magento/MediaStorage/Model/Config/Backend/Storage/Media/Database.php
 mode change 100644 => 100755 app/code/Magento/MediaStorage/Model/Config/Source/Storage/Media/Database.php
 mode change 100644 => 100755 app/code/Magento/MediaStorage/Model/Config/Source/Storage/Media/Storage.php
 mode change 100644 => 100755 app/code/Magento/MediaStorage/Model/File/Storage.php
 mode change 100644 => 100755 app/code/Magento/MediaStorage/Model/File/Storage/Config.php
 mode change 100644 => 100755 app/code/Magento/MediaStorage/Model/File/Storage/Database.php
 mode change 100644 => 100755 app/code/Magento/MediaStorage/Model/File/Storage/Database/AbstractDatabase.php
 mode change 100644 => 100755 app/code/Magento/MediaStorage/Model/File/Storage/Directory/Database.php
 mode change 100644 => 100755 app/code/Magento/MediaStorage/Model/File/Storage/File.php
 mode change 100644 => 100755 app/code/Magento/MediaStorage/Model/File/Storage/Flag.php
 mode change 100644 => 100755 app/code/Magento/MediaStorage/Model/File/Storage/Request.php
 mode change 100644 => 100755 app/code/Magento/MediaStorage/Model/File/Storage/Response.php
 mode change 100644 => 100755 app/code/Magento/MediaStorage/Model/File/Storage/Synchronization.php
 mode change 100644 => 100755 app/code/Magento/MediaStorage/Model/File/Uploader.php
 mode change 100644 => 100755 app/code/Magento/MediaStorage/Model/File/Validator/AvailablePath.php
 mode change 100644 => 100755 app/code/Magento/MediaStorage/Model/File/Validator/NotProtectedExtension.php
 mode change 100644 => 100755 app/code/Magento/MediaStorage/Model/ResourceModel/File/Storage/AbstractStorage.php
 mode change 100644 => 100755 app/code/Magento/MediaStorage/Model/ResourceModel/File/Storage/Database.php
 mode change 100644 => 100755 app/code/Magento/MediaStorage/Model/ResourceModel/File/Storage/Directory/Database.php
 mode change 100644 => 100755 app/code/Magento/MediaStorage/Model/ResourceModel/File/Storage/File.php
 mode change 100644 => 100755 app/code/Magento/MediaStorage/README.md
 mode change 100644 => 100755 app/code/Magento/MediaStorage/Test/Unit/App/MediaTest.php
 mode change 100644 => 100755 app/code/Magento/MediaStorage/Test/Unit/Helper/File/MediaTest.php
 mode change 100644 => 100755 app/code/Magento/MediaStorage/Test/Unit/Helper/File/Storage/DatabaseTest.php
 mode change 100644 => 100755 app/code/Magento/MediaStorage/Test/Unit/Helper/File/StorageTest.php
 mode change 100644 => 100755 app/code/Magento/MediaStorage/Test/Unit/Model/Asset/Plugin/CleanMergedJsCssTest.php
 mode change 100644 => 100755 app/code/Magento/MediaStorage/Test/Unit/Model/Config/Source/Storage/Media/DatabaseTest.php
 mode change 100644 => 100755 app/code/Magento/MediaStorage/Test/Unit/Model/File/Storage/ConfigTest.php
 mode change 100644 => 100755 app/code/Magento/MediaStorage/Test/Unit/Model/File/Storage/Directory/DatabaseTest.php
 mode change 100644 => 100755 app/code/Magento/MediaStorage/Test/Unit/Model/File/Storage/MediaTest.php
 mode change 100644 => 100755 app/code/Magento/MediaStorage/Test/Unit/Model/File/Storage/RequestTest.php
 mode change 100644 => 100755 app/code/Magento/MediaStorage/Test/Unit/Model/File/Storage/SynchronizationTest.php
 mode change 100644 => 100755 app/code/Magento/MediaStorage/Test/Unit/Model/File/Storage/_files/config.xml
 mode change 100644 => 100755 app/code/Magento/MediaStorage/Test/Unit/Model/ResourceModel/File/Storage/FileTest.php
 mode change 100644 => 100755 app/code/Magento/MediaStorage/composer.json
 mode change 100644 => 100755 app/code/Magento/MediaStorage/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/MediaStorage/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/MediaStorage/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/MediaStorage/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/MediaStorage/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/MediaStorage/registration.php
 mode change 100644 => 100755 app/code/Magento/MediaStorage/view/adminhtml/templates/system/config/system/storage/media/synchronize.phtml
 mode change 100644 => 100755 app/code/Magento/Msrp/Api/Data/ProductRender/MsrpPriceInfoInterface.php
 mode change 100644 => 100755 app/code/Magento/Msrp/Block/Adminhtml/Product/Helper/Form/Type.php
 mode change 100644 => 100755 app/code/Magento/Msrp/Block/Adminhtml/Product/Helper/Form/Type/Price.php
 mode change 100644 => 100755 app/code/Magento/Msrp/Block/Popup.php
 mode change 100644 => 100755 app/code/Magento/Msrp/Block/Total.php
 mode change 100644 => 100755 app/code/Magento/Msrp/Helper/Data.php
 mode change 100644 => 100755 app/code/Magento/Msrp/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Msrp/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Msrp/Model/Config.php
 mode change 100644 => 100755 app/code/Magento/Msrp/Model/Msrp.php
 mode change 100644 => 100755 app/code/Magento/Msrp/Model/Product/Attribute/Source/Type.php
 mode change 100644 => 100755 app/code/Magento/Msrp/Model/Product/Attribute/Source/Type/Price.php
 mode change 100644 => 100755 app/code/Magento/Msrp/Model/Product/Options.php
 mode change 100644 => 100755 app/code/Magento/Msrp/Model/ProductRender/MsrpPriceInfo.php
 mode change 100644 => 100755 app/code/Magento/Msrp/Model/Quote/Address/CanApplyMsrp.php
 mode change 100644 => 100755 app/code/Magento/Msrp/Model/Quote/Msrp.php
 mode change 100644 => 100755 app/code/Magento/Msrp/Observer/Frontend/Quote/SetCanApplyMsrpObserver.php
 mode change 100644 => 100755 app/code/Magento/Msrp/Plugin/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Attributes.php
 mode change 100644 => 100755 app/code/Magento/Msrp/Pricing/Price/MsrpPrice.php
 mode change 100644 => 100755 app/code/Magento/Msrp/Pricing/Price/MsrpPriceInterface.php
 mode change 100644 => 100755 app/code/Magento/Msrp/Setup/InstallData.php
 mode change 100644 => 100755 app/code/Magento/Msrp/Setup/UpgradeData.php
 mode change 100644 => 100755 app/code/Magento/Msrp/Test/Unit/Helper/DataTest.php
 mode change 100644 => 100755 app/code/Magento/Msrp/Test/Unit/Model/Product/Attribute/Source/Type/PriceTest.php
 mode change 100644 => 100755 app/code/Magento/Msrp/Test/Unit/Observer/Frontend/Quote/SetCanApplyMsrpObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Msrp/Test/Unit/Pricing/Price/MsrpPriceTest.php
 mode change 100644 => 100755 app/code/Magento/Msrp/Test/Unit/Ui/DataProvider/Product/Form/Modifier/MsrpTest.php
 mode change 100644 => 100755 app/code/Magento/Msrp/Test/Unit/Ui/DataProvider/Product/Listing/Collector/MsrpPriceTest.php
 mode change 100644 => 100755 app/code/Magento/Msrp/Ui/DataProvider/Product/Form/Modifier/Msrp.php
 mode change 100644 => 100755 app/code/Magento/Msrp/Ui/DataProvider/Product/Listing/Collector/MsrpPrice.php
 mode change 100644 => 100755 app/code/Magento/Msrp/composer.json
 mode change 100644 => 100755 app/code/Magento/Msrp/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/Msrp/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/Msrp/etc/catalog_attributes.xml
 mode change 100644 => 100755 app/code/Magento/Msrp/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/Msrp/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Msrp/etc/extension_attributes.xml
 mode change 100644 => 100755 app/code/Magento/Msrp/etc/frontend/events.xml
 mode change 100644 => 100755 app/code/Magento/Msrp/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Msrp/etc/webapi_rest/events.xml
 mode change 100644 => 100755 app/code/Magento/Msrp/etc/webapi_soap/events.xml
 mode change 100644 => 100755 app/code/Magento/Msrp/i18n/de_DE.csv
 mode change 100644 => 100755 app/code/Magento/Msrp/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Msrp/i18n/es_ES.csv
 mode change 100644 => 100755 app/code/Magento/Msrp/i18n/fr_FR.csv
 mode change 100644 => 100755 app/code/Magento/Msrp/i18n/nl_NL.csv
 mode change 100644 => 100755 app/code/Magento/Msrp/i18n/pt_BR.csv
 mode change 100644 => 100755 app/code/Magento/Msrp/i18n/zh_Hans_CN.csv
 mode change 100644 => 100755 app/code/Magento/Msrp/registration.php
 mode change 100644 => 100755 app/code/Magento/Msrp/view/base/layout/catalog_product_prices.xml
 mode change 100644 => 100755 app/code/Magento/Msrp/view/base/templates/product/price/msrp.phtml
 mode change 100644 => 100755 app/code/Magento/Msrp/view/base/web/js/msrp.js
 mode change 100644 => 100755 app/code/Magento/Msrp/view/frontend/layout/catalog_category_view.xml
 mode change 100644 => 100755 app/code/Magento/Msrp/view/frontend/layout/catalog_product_compare_index.xml
 mode change 100644 => 100755 app/code/Magento/Msrp/view/frontend/layout/catalog_product_view.xml
 mode change 100644 => 100755 app/code/Magento/Msrp/view/frontend/layout/catalog_product_view_type_downloadable.xml
 mode change 100644 => 100755 app/code/Magento/Msrp/view/frontend/layout/catalogsearch_advanced_result.xml
 mode change 100644 => 100755 app/code/Magento/Msrp/view/frontend/layout/catalogsearch_result_index.xml
 mode change 100644 => 100755 app/code/Magento/Msrp/view/frontend/layout/checkout_cart_index.xml
 mode change 100644 => 100755 app/code/Magento/Msrp/view/frontend/layout/checkout_cart_sidebar_total_renderers.xml
 mode change 100644 => 100755 app/code/Magento/Msrp/view/frontend/layout/checkout_onepage_failure.xml
 mode change 100644 => 100755 app/code/Magento/Msrp/view/frontend/layout/checkout_onepage_success.xml
 mode change 100644 => 100755 app/code/Magento/Msrp/view/frontend/layout/msrp_popup.xml
 mode change 100644 => 100755 app/code/Magento/Msrp/view/frontend/layout/review_product_list.xml
 mode change 100644 => 100755 app/code/Magento/Msrp/view/frontend/layout/wishlist_index_configure_type_downloadable.xml
 mode change 100644 => 100755 app/code/Magento/Msrp/view/frontend/layout/wishlist_index_index.xml
 mode change 100644 => 100755 app/code/Magento/Msrp/view/frontend/layout/wishlist_search_view.xml
 mode change 100644 => 100755 app/code/Magento/Msrp/view/frontend/layout/wishlist_shared_index.xml
 mode change 100644 => 100755 app/code/Magento/Msrp/view/frontend/requirejs-config.js
 mode change 100644 => 100755 app/code/Magento/Msrp/view/frontend/templates/cart/subtotal.phtml
 mode change 100644 => 100755 app/code/Magento/Msrp/view/frontend/templates/cart/totals.phtml
 mode change 100644 => 100755 app/code/Magento/Msrp/view/frontend/templates/popup.phtml
 mode change 100644 => 100755 app/code/Magento/Msrp/view/frontend/templates/render/item/price_msrp_item.phtml
 mode change 100644 => 100755 app/code/Magento/Msrp/view/frontend/templates/render/item/price_msrp_rss.phtml
 mode change 100644 => 100755 app/code/Magento/Msrp/view/frontend/ui_component/widget_recently_compared.xml
 mode change 100644 => 100755 app/code/Magento/Msrp/view/frontend/ui_component/widget_recently_viewed.xml
 mode change 100644 => 100755 app/code/Magento/Msrp/view/frontend/web/js/product/list/columns/msrp-price.js
 mode change 100644 => 100755 app/code/Magento/Msrp/view/frontend/web/js/view/checkout/minicart/subtotal/totals.js
 mode change 100644 => 100755 app/code/Magento/Msrp/view/frontend/web/template/checkout/minicart/subtotal/totals.html
 mode change 100644 => 100755 app/code/Magento/Msrp/view/frontend/web/template/product/item/popup.html
 mode change 100644 => 100755 app/code/Magento/Msrp/view/frontend/web/template/product/price/price_box.html
 mode change 100644 => 100755 app/code/Magento/Multishipping/Block/Checkout/AbstractMultishipping.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Block/Checkout/Address/Select.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Block/Checkout/Addresses.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Block/Checkout/Billing.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Block/Checkout/Billing/Items.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Block/Checkout/Link.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Block/Checkout/Overview.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Block/Checkout/Payment/Info.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Block/Checkout/Shipping.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Block/Checkout/State.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Block/Checkout/Success.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Controller/Checkout.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Controller/Checkout/Address.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Controller/Checkout/Address/EditAddress.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Controller/Checkout/Address/EditBilling.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Controller/Checkout/Address/EditShipping.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Controller/Checkout/Address/EditShippingPost.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Controller/Checkout/Address/NewBilling.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Controller/Checkout/Address/NewShipping.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Controller/Checkout/Address/SaveBilling.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Controller/Checkout/Address/SelectBilling.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Controller/Checkout/Address/SetBilling.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Controller/Checkout/Address/ShippingSaved.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Controller/Checkout/Addresses.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Controller/Checkout/AddressesPost.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Controller/Checkout/BackToAddresses.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Controller/Checkout/BackToBilling.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Controller/Checkout/BackToShipping.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Controller/Checkout/Billing.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Controller/Checkout/Index.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Controller/Checkout/Login.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Controller/Checkout/Overview.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Controller/Checkout/OverviewPost.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Controller/Checkout/Plugin.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Controller/Checkout/Register.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Controller/Checkout/RemoveItem.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Controller/Checkout/Shipping.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Controller/Checkout/ShippingPost.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Controller/Checkout/Success.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Helper/Data.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Helper/Url.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Multishipping/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Multishipping/Model/Cart/Controller/CartPlugin.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Model/Checkout/Type/Multishipping.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Model/Checkout/Type/Multishipping/Plugin.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Model/Checkout/Type/Multishipping/State.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Model/Payment/Method/Specification/Enabled.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/README.md
 mode change 100644 => 100755 app/code/Magento/Multishipping/Test/Unit/Block/Checkout/Address/SelectTest.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Test/Unit/Block/Checkout/Billing/ItemsTest.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Test/Unit/Block/Checkout/OverviewTest.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Test/Unit/Block/Checkout/Payment/InfoTest.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Test/Unit/Block/Checkout/ShippingTest.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Test/Unit/Block/Checkout/StateTest.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Test/Unit/Block/Checkout/SuccessTest.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Test/Unit/Controller/Checkout/Address/EditAddressTest.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Test/Unit/Controller/Checkout/Address/EditBillingTest.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Test/Unit/Controller/Checkout/Address/EditShippingTest.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Test/Unit/Controller/Checkout/Address/NewBillingTest.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Test/Unit/Controller/Checkout/Address/NewShippingTest.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Test/Unit/Controller/Checkout/Address/ShippingSavedTest.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Test/Unit/Controller/Checkout/PluginTest.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Test/Unit/Helper/DataTest.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Test/Unit/Model/Cart/Controller/CartPluginTest.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Test/Unit/Model/Checkout/Type/Multishipping/PluginTest.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Test/Unit/Model/Checkout/Type/MultishippingTest.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/Test/Unit/Model/Payment/Method/Specification/EnabledTest.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/composer.json
 mode change 100644 => 100755 app/code/Magento/Multishipping/etc/acl.xml
 mode change 100644 => 100755 app/code/Magento/Multishipping/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/Multishipping/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/Multishipping/etc/frontend/di.xml
 mode change 100644 => 100755 app/code/Magento/Multishipping/etc/frontend/page_types.xml
 mode change 100644 => 100755 app/code/Magento/Multishipping/etc/frontend/routes.xml
 mode change 100644 => 100755 app/code/Magento/Multishipping/etc/frontend/sections.xml
 mode change 100644 => 100755 app/code/Magento/Multishipping/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Multishipping/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Multishipping/registration.php
 mode change 100644 => 100755 app/code/Magento/Multishipping/view/frontend/layout/checkout_cart_index.xml
 mode change 100644 => 100755 app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout.xml
 mode change 100644 => 100755 app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_address_editaddress.xml
 mode change 100644 => 100755 app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_address_editbilling.xml
 mode change 100644 => 100755 app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_address_editshipping.xml
 mode change 100644 => 100755 app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_address_newbilling.xml
 mode change 100644 => 100755 app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_address_newshipping.xml
 mode change 100644 => 100755 app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_address_select.xml
 mode change 100644 => 100755 app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_address_selectbilling.xml
 mode change 100644 => 100755 app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_addresses.xml
 mode change 100644 => 100755 app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_billing.xml
 mode change 100644 => 100755 app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_customer_address.xml
 mode change 100644 => 100755 app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_login.xml
 mode change 100644 => 100755 app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_overview.xml
 mode change 100644 => 100755 app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_register.xml
 mode change 100644 => 100755 app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_shipping.xml
 mode change 100644 => 100755 app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_success.xml
 mode change 100644 => 100755 app/code/Magento/Multishipping/view/frontend/requirejs-config.js
 mode change 100644 => 100755 app/code/Magento/Multishipping/view/frontend/templates/checkout/address/select.phtml
 mode change 100644 => 100755 app/code/Magento/Multishipping/view/frontend/templates/checkout/addresses.phtml
 mode change 100644 => 100755 app/code/Magento/Multishipping/view/frontend/templates/checkout/billing.phtml
 mode change 100644 => 100755 app/code/Magento/Multishipping/view/frontend/templates/checkout/billing/items.phtml
 mode change 100644 => 100755 app/code/Magento/Multishipping/view/frontend/templates/checkout/item/default.phtml
 mode change 100644 => 100755 app/code/Magento/Multishipping/view/frontend/templates/checkout/link.phtml
 mode change 100644 => 100755 app/code/Magento/Multishipping/view/frontend/templates/checkout/overview.phtml
 mode change 100644 => 100755 app/code/Magento/Multishipping/view/frontend/templates/checkout/overview/item.phtml
 mode change 100644 => 100755 app/code/Magento/Multishipping/view/frontend/templates/checkout/shipping.phtml
 mode change 100644 => 100755 app/code/Magento/Multishipping/view/frontend/templates/checkout/state.phtml
 mode change 100644 => 100755 app/code/Magento/Multishipping/view/frontend/templates/checkout/success.phtml
 mode change 100644 => 100755 app/code/Magento/Multishipping/view/frontend/templates/js/components.phtml
 mode change 100644 => 100755 app/code/Magento/Multishipping/view/frontend/templates/multishipping/item/default.phtml
 mode change 100644 => 100755 app/code/Magento/Multishipping/view/frontend/web/js/multi-shipping.js
 mode change 100644 => 100755 app/code/Magento/Multishipping/view/frontend/web/js/overview.js
 mode change 100644 => 100755 app/code/Magento/Multishipping/view/frontend/web/js/payment.js
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Console/Command/DeployMarker.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Model/Apm/Deployments.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Model/Config.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Model/Counter.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Model/Counts.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Model/Cron.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Model/Cron/ReportCounts.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Model/Cron/ReportModulesInfo.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Model/Cron/ReportNewRelicCron.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Model/CronEvent.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Model/Module.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Model/Module/Collect.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Model/NewRelicWrapper.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Model/Observer/CheckConfig.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Model/Observer/ReportConcurrentAdmins.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Model/Observer/ReportConcurrentAdminsToNewRelic.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Model/Observer/ReportConcurrentUsers.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Model/Observer/ReportConcurrentUsersToNewRelic.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Model/Observer/ReportOrderPlaced.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Model/Observer/ReportOrderPlacedToNewRelic.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Model/Observer/ReportProductDeleted.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Model/Observer/ReportProductDeletedToNewRelic.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Model/Observer/ReportProductSaved.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Model/Observer/ReportProductSavedToNewRelic.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Model/Observer/ReportSystemCacheFlush.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Model/Observer/ReportSystemCacheFlushToNewRelic.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Model/Orders.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Model/ResourceModel/Counts.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Model/ResourceModel/Counts/Collection.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Model/ResourceModel/Module.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Model/ResourceModel/Module/Collection.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Model/ResourceModel/Orders.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Model/ResourceModel/Orders/Collection.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Model/ResourceModel/System.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Model/ResourceModel/System/Collection.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Model/ResourceModel/Users.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Model/ResourceModel/Users/Collection.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Model/ServiceShellUser.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Model/System.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Model/Users.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Plugin/HttpPlugin.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/README.md
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Setup/UpgradeSchema.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Test/Unit/Model/Apm/DeploymentsTest.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Test/Unit/Model/CounterTest.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Test/Unit/Model/Cron/ReportCountsTest.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Test/Unit/Model/Cron/ReportModulesInfoTest.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Test/Unit/Model/Cron/ReportNewRelicCronTest.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Test/Unit/Model/CronEventTest.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Test/Unit/Model/CronTest.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Test/Unit/Model/Module/CollectTest.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/CheckConfigTest.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportConcurrentAdminsTest.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportConcurrentAdminsToNewRelicTest.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportConcurrentUsersTest.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportConcurrentUsersToNewRelicTest.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportOrderPlacedTest.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportOrderPlacedToNewRelicTest.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportProductDeletedTest.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportProductDeletedToNewRelicTest.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportProductSavedTest.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportProductSavedToNewRelicTest.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportSystemCacheFlushTest.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportSystemCacheFlushToNewRelicTest.php
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/composer.json
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/etc/acl.xml
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/etc/adminhtml/events.xml
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/etc/crontab.xml
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/etc/events.xml
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/etc/frontend/events.xml
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/NewRelicReporting/registration.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Block/Adminhtml/Problem.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Block/Adminhtml/Problem/Grid/Filter/Checkbox.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Block/Adminhtml/Problem/Grid/Renderer/Checkbox.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Block/Adminhtml/Queue/Edit.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Block/Adminhtml/Queue/Edit/Form.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Block/Adminhtml/Queue/Grid/Renderer/Action.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Block/Adminhtml/Queue/Preview.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Block/Adminhtml/Queue/Preview/Form.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Block/Adminhtml/Subscriber.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Block/Adminhtml/Subscriber/Grid.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Block/Adminhtml/Subscriber/Grid/Filter/Checkbox.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Block/Adminhtml/Subscriber/Grid/Filter/Website.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Block/Adminhtml/Subscriber/Grid/Renderer/Checkbox.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Block/Adminhtml/Template.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Block/Adminhtml/Template/Edit.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Block/Adminhtml/Template/Edit/Form.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Block/Adminhtml/Template/Grid.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Block/Adminhtml/Template/Grid/Renderer/Action.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Block/Adminhtml/Template/Grid/Renderer/Sender.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Block/Adminhtml/Template/Preview.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Block/Adminhtml/Template/Preview/Form.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Block/Subscribe.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Block/Subscribe/Grid/Options/GroupOptionHash.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Block/Subscribe/Grid/Options/StoreOptionHash.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Controller/Adminhtml/Problem.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Controller/Adminhtml/Problem/Grid.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Controller/Adminhtml/Problem/Index.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Controller/Adminhtml/Queue.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Cancel.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Drop.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Edit.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Grid.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Index.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Pause.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Preview.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Resume.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Save.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Sending.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Start.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Controller/Adminhtml/Subscriber.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Controller/Adminhtml/Subscriber/ExportCsv.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Controller/Adminhtml/Subscriber/ExportXml.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Controller/Adminhtml/Subscriber/Grid.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Controller/Adminhtml/Subscriber/Index.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Controller/Adminhtml/Subscriber/MassDelete.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Controller/Adminhtml/Subscriber/MassUnsubscribe.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Controller/Adminhtml/Template.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Controller/Adminhtml/Template/Delete.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Controller/Adminhtml/Template/Drop.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Controller/Adminhtml/Template/Edit.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Controller/Adminhtml/Template/Grid.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Controller/Adminhtml/Template/Index.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Controller/Adminhtml/Template/NewAction.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Controller/Adminhtml/Template/Preview.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Controller/Adminhtml/Template/Save.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Controller/Manage.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Controller/Manage/Index.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Controller/Manage/Save.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Controller/Subscriber.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Controller/Subscriber/Confirm.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Controller/Subscriber/NewAction.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Controller/Subscriber/Unsubscribe.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Helper/Data.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Newsletter/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Newsletter/Model/Observer.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Model/Plugin/CustomerPlugin.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Model/Problem.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Model/Queue.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Model/Queue/Options/Status.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Model/Queue/TransportBuilder.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Model/ResourceModel/Grid/Collection.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Model/ResourceModel/Problem.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Model/ResourceModel/Problem/Collection.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Model/ResourceModel/Queue.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Model/ResourceModel/Queue/Collection.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Model/ResourceModel/Queue/Grid/Collection.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Model/ResourceModel/Subscriber.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Model/ResourceModel/Subscriber/Collection.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Model/ResourceModel/Subscriber/Grid/Collection.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Model/ResourceModel/Template.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Model/ResourceModel/Template/Collection.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Model/Session.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Model/Subscriber.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Model/Template.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Model/Template/Filter.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/README.md
 mode change 100644 => 100755 app/code/Magento/Newsletter/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Setup/UpgradeSchema.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Test/Unit/Block/Adminhtml/Queue/PreviewTest.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Test/Unit/Block/Adminhtml/Template/PreviewTest.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Test/Unit/Controller/Manage/SaveTest.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Test/Unit/Model/Plugin/CustomerPluginTest.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Test/Unit/Model/Queue/TransportBuilderTest.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Test/Unit/Model/QueueTest.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Test/Unit/Model/SubscriberTest.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Test/Unit/Model/Template/FilterTest.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/Test/Unit/Model/TemplateTest.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/composer.json
 mode change 100644 => 100755 app/code/Magento/Newsletter/etc/acl.xml
 mode change 100644 => 100755 app/code/Magento/Newsletter/etc/adminhtml/menu.xml
 mode change 100644 => 100755 app/code/Magento/Newsletter/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/Newsletter/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/Newsletter/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/Newsletter/etc/crontab.xml
 mode change 100644 => 100755 app/code/Magento/Newsletter/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Newsletter/etc/email_templates.xml
 mode change 100644 => 100755 app/code/Magento/Newsletter/etc/extension_attributes.xml
 mode change 100644 => 100755 app/code/Magento/Newsletter/etc/frontend/di.xml
 mode change 100644 => 100755 app/code/Magento/Newsletter/etc/frontend/page_types.xml
 mode change 100644 => 100755 app/code/Magento/Newsletter/etc/frontend/routes.xml
 mode change 100644 => 100755 app/code/Magento/Newsletter/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Newsletter/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Newsletter/registration.php
 mode change 100644 => 100755 app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_problem_block.xml
 mode change 100644 => 100755 app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_problem_grid.xml
 mode change 100644 => 100755 app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_problem_index.xml
 mode change 100644 => 100755 app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_queue_edit.xml
 mode change 100644 => 100755 app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_queue_grid.xml
 mode change 100644 => 100755 app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_queue_grid_block.xml
 mode change 100644 => 100755 app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_queue_index.xml
 mode change 100644 => 100755 app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_queue_preview.xml
 mode change 100644 => 100755 app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_queue_preview_popup.xml
 mode change 100644 => 100755 app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_subscriber_block.xml
 mode change 100644 => 100755 app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_subscriber_exportcsv.xml
 mode change 100644 => 100755 app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_subscriber_exportxml.xml
 mode change 100644 => 100755 app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_subscriber_grid.xml
 mode change 100644 => 100755 app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_subscriber_index.xml
 mode change 100644 => 100755 app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_template_edit.xml
 mode change 100644 => 100755 app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_template_preview.xml
 mode change 100644 => 100755 app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_template_preview_popup.xml
 mode change 100644 => 100755 app/code/Magento/Newsletter/view/adminhtml/layout/preview.xml
 mode change 100644 => 100755 app/code/Magento/Newsletter/view/adminhtml/templates/preview/iframeswitcher.phtml
 mode change 100644 => 100755 app/code/Magento/Newsletter/view/adminhtml/templates/preview/store.phtml
 mode change 100644 => 100755 app/code/Magento/Newsletter/view/adminhtml/templates/problem/list.phtml
 mode change 100644 => 100755 app/code/Magento/Newsletter/view/adminhtml/templates/queue/edit.phtml
 mode change 100644 => 100755 app/code/Magento/Newsletter/view/adminhtml/templates/queue/list.phtml
 mode change 100644 => 100755 app/code/Magento/Newsletter/view/adminhtml/templates/queue/preview.phtml
 mode change 100644 => 100755 app/code/Magento/Newsletter/view/adminhtml/templates/subscriber/list.phtml
 mode change 100644 => 100755 app/code/Magento/Newsletter/view/adminhtml/templates/template/edit.phtml
 mode change 100644 => 100755 app/code/Magento/Newsletter/view/adminhtml/templates/template/list.phtml
 mode change 100644 => 100755 app/code/Magento/Newsletter/view/adminhtml/templates/template/preview.phtml
 mode change 100644 => 100755 app/code/Magento/Newsletter/view/base/ui_component/customer_form.xml
 mode change 100644 => 100755 app/code/Magento/Newsletter/view/frontend/email/subscr_confirm.html
 mode change 100644 => 100755 app/code/Magento/Newsletter/view/frontend/email/subscr_success.html
 mode change 100644 => 100755 app/code/Magento/Newsletter/view/frontend/email/unsub_success.html
 mode change 100644 => 100755 app/code/Magento/Newsletter/view/frontend/layout/customer_account.xml
 mode change 100644 => 100755 app/code/Magento/Newsletter/view/frontend/layout/default.xml
 mode change 100644 => 100755 app/code/Magento/Newsletter/view/frontend/layout/newsletter_manage_index.xml
 mode change 100644 => 100755 app/code/Magento/Newsletter/view/frontend/templates/js/components.phtml
 mode change 100644 => 100755 app/code/Magento/Newsletter/view/frontend/templates/subscribe.phtml
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/Block/Form/AbstractInstruction.php
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/Block/Form/Banktransfer.php
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/Block/Form/Cashondelivery.php
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/Block/Form/Checkmo.php
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/Block/Form/Purchaseorder.php
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/Block/Info/Checkmo.php
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/Block/Info/Purchaseorder.php
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/Model/Banktransfer.php
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/Model/Cashondelivery.php
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/Model/Checkmo.php
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/Model/CheckmoConfigProvider.php
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/Model/InstructionsConfigProvider.php
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/Model/Purchaseorder.php
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/Observer/BeforeOrderPaymentSaveObserver.php
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/README.md
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/Test/Unit/Block/Form/AbstractInstructionTest.php
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/Test/Unit/Block/Info/CheckmoTest.php
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/Test/Unit/Model/BanktransferTest.php
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/Test/Unit/Model/CashondeliveryTest.php
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/Test/Unit/Model/CheckmoConfigProviderTest.php
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/Test/Unit/Model/CheckmoTest.php
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/Test/Unit/Model/InstructionsConfigProviderTest.php
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/Test/Unit/Model/PurchaseorderTest.php
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/Test/Unit/Observer/BeforeOrderPaymentSaveObserverTest.php
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/composer.json
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/etc/events.xml
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/etc/frontend/di.xml
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/etc/payment.xml
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/registration.php
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/view/adminhtml/templates/form/banktransfer.phtml
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/view/adminhtml/templates/form/cashondelivery.phtml
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/view/adminhtml/templates/form/checkmo.phtml
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/view/adminhtml/templates/form/purchaseorder.phtml
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/view/adminhtml/templates/info/checkmo.phtml
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/view/adminhtml/templates/info/pdf/checkmo.phtml
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/view/adminhtml/templates/info/pdf/purchaseorder.phtml
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/view/adminhtml/templates/info/purchaseorder.phtml
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/view/frontend/layout/checkout_index_index.xml
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/view/frontend/templates/form/banktransfer.phtml
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/view/frontend/templates/form/cashondelivery.phtml
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/view/frontend/templates/form/checkmo.phtml
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/view/frontend/templates/form/purchaseorder.phtml
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/view/frontend/templates/info/checkmo.phtml
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/view/frontend/templates/info/purchaseorder.phtml
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/view/frontend/web/js/view/payment/method-renderer/banktransfer-method.js
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/view/frontend/web/js/view/payment/method-renderer/cashondelivery-method.js
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/view/frontend/web/js/view/payment/method-renderer/checkmo-method.js
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/view/frontend/web/js/view/payment/method-renderer/purchaseorder-method.js
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/view/frontend/web/js/view/payment/offline-payments.js
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/view/frontend/web/template/payment/banktransfer.html
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/view/frontend/web/template/payment/cashondelivery.html
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/view/frontend/web/template/payment/checkmo.html
 mode change 100644 => 100755 app/code/Magento/OfflinePayments/view/frontend/web/template/payment/purchaseorder-form.html
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/Block/Adminhtml/Carrier/Tablerate/Grid.php
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/Block/Adminhtml/Form/Field/Export.php
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/Block/Adminhtml/Form/Field/Import.php
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/Controller/Adminhtml/System/Config/ExportTablerates.php
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/Model/Carrier/Flatrate.php
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/Model/Carrier/Flatrate/ItemPriceCalculator.php
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/Model/Carrier/Freeshipping.php
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/Model/Carrier/Pickup.php
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/Model/Carrier/Tablerate.php
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/Model/Config/Backend/Tablerate.php
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/Model/Config/Source/Flatrate.php
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/Model/Config/Source/Tablerate.php
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/Model/Plugin/Checkout/Block/Cart/Shipping.php
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/Model/Quote/Address/FreeShipping.php
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate.php
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/CSV/ColumnNotFoundException.php
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/CSV/ColumnResolver.php
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/CSV/RowException.php
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/CSV/RowParser.php
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/Collection.php
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/DataHashGenerator.php
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/Import.php
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/LocationDirectory.php
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/RateQuery.php
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/Model/SalesRule/Calculator.php
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/Model/SalesRule/Rule.php
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/Model/Source/SalesRule/FreeShippingOptions.php
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/README.md
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/Setup/UpgradeData.php
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/Setup/UpgradeSchema.php
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/Test/Unit/Block/Adminhtml/Carrier/Tablerate/GridTest.php
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/Test/Unit/Block/Adminhtml/Form/Field/ExportTest.php
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/Test/Unit/Block/Adminhtml/Form/Field/ImportTest.php
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/Test/Unit/Model/Carrier/FlatrateTest.php
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/Test/Unit/Model/Carrier/TablerateTest.php
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/Test/Unit/Model/Config/Backend/TablerateTest.php
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/Test/Unit/Model/Config/Source/FlatrateTest.php
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/Test/Unit/Model/Config/Source/TablerateTest.php
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/Test/Unit/Model/Plugin/Checkout/Block/Cart/ShippingTest.php
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/Test/Unit/Model/Quote/Address/FreeShippingTest.php
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/Test/Unit/Model/ResourceModel/Carrier/Tablerate/CSV/ColumnResolverTest.php
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/Test/Unit/Model/ResourceModel/Carrier/Tablerate/CSV/RowParserTest.php
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/Test/Unit/Model/ResourceModel/Carrier/Tablerate/ImportTest.php
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/Test/Unit/Model/SalesRule/CalculatorTest.php
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/composer.json
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/etc/fieldset.xml
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/registration.php
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/view/adminhtml/ui_component/sales_rule_form.xml
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/view/adminhtml/ui_component/salesrulestaging_update_form.xml
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/view/frontend/layout/checkout_cart_index.xml
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/view/frontend/layout/checkout_index_index.xml
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/view/frontend/web/js/model/shipping-rates-validation-rules/flatrate.js
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/view/frontend/web/js/model/shipping-rates-validation-rules/freeshipping.js
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/view/frontend/web/js/model/shipping-rates-validation-rules/tablerate.js
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/view/frontend/web/js/model/shipping-rates-validator/flatrate.js
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/view/frontend/web/js/model/shipping-rates-validator/freeshipping.js
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/view/frontend/web/js/model/shipping-rates-validator/tablerate.js
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/view/frontend/web/js/view/shipping-rates-validation/flatrate.js
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/view/frontend/web/js/view/shipping-rates-validation/freeshipping.js
 mode change 100644 => 100755 app/code/Magento/OfflineShipping/view/frontend/web/js/view/shipping-rates-validation/tablerate.js
 mode change 100644 => 100755 app/code/Magento/PageCache/Block/Javascript.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Block/System/Config/Form/Field/Export.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Block/System/Config/Form/Field/Export/Varnish4.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Block/System/Config/Form/Field/Export/Varnish5.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Console/Command/GenerateVclCommand.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Controller/Adminhtml/PageCache/ExportVarnishConfig.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Controller/Block.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Controller/Block/Esi.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Controller/Block/Render.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Exception/UnsupportedVarnishVersion.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Helper/Data.php
 mode change 100644 => 100755 app/code/Magento/PageCache/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/PageCache/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/PageCache/Model/App/CacheIdentifierPlugin.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Model/App/FrontController/BuiltinPlugin.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Model/App/FrontController/VarnishPlugin.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Model/App/PageCachePlugin.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Model/App/Response/HttpPlugin.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Model/Cache/Server.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Model/Cache/Type.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Model/Config.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Model/Controller/Result/BuiltinPlugin.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Model/Controller/Result/VarnishPlugin.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Model/DepersonalizeChecker.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Model/Layout/DepersonalizePlugin.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Model/Layout/LayoutPlugin.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Model/Layout/MergePlugin.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Model/System/Config/Backend/Ttl.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Model/System/Config/Backend/Varnish.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Model/System/Config/Source/Application.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Model/Varnish/VclGenerator.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Model/Varnish/VclTemplateLocator.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Model/VclGeneratorInterface.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Model/VclTemplateLocatorInterface.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Observer/FlushAllCache.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Observer/FlushCacheByTags.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Observer/FlushFormKey.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Observer/InvalidateCache.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Observer/ProcessLayoutRenderElement.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Observer/RegisterFormKeyFromCookie.php
 mode change 100644 => 100755 app/code/Magento/PageCache/README.md
 mode change 100644 => 100755 app/code/Magento/PageCache/Test/Unit/App/CacheIdentifierPluginTest.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Test/Unit/Block/Controller/StubBlock.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Test/Unit/Block/JavascriptTest.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Test/Unit/Controller/Adminhtml/PageCache/ExportVarnishConfigTest.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Test/Unit/Controller/Block/EsiTest.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Test/Unit/Controller/Block/RenderTest.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Test/Unit/Helper/DataTest.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Test/Unit/Model/App/FrontController/BuiltinPluginTest.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Test/Unit/Model/App/FrontController/VarnishPluginTest.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Test/Unit/Model/App/PageCachePluginTest.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Test/Unit/Model/App/Response/HttpPluginTest.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Test/Unit/Model/Cache/ServerTest.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Test/Unit/Model/Cache/TypeTest.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Test/Unit/Model/ConfigTest.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Test/Unit/Model/Controller/Result/BuiltinPluginTest.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Test/Unit/Model/Controller/Result/VarnishPluginTest.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Test/Unit/Model/DepersonalizeCheckerTest.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Test/Unit/Model/Layout/DepersonalizePluginTest.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Test/Unit/Model/Layout/LayoutPluginTest.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Test/Unit/Model/_files/result.vcl
 mode change 100644 => 100755 app/code/Magento/PageCache/Test/Unit/Model/_files/test.vcl
 mode change 100644 => 100755 app/code/Magento/PageCache/Test/Unit/Observer/FlushAllCacheTest.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Test/Unit/Observer/FlushCacheByTagsTest.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Test/Unit/Observer/FlushFormKeyTest.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Test/Unit/Observer/InvalidateCacheTest.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Test/Unit/Observer/ProcessLayoutRenderElementTest.php
 mode change 100644 => 100755 app/code/Magento/PageCache/Test/Unit/Observer/RegisterFormKeyFromCookieTest.php
 mode change 100644 => 100755 app/code/Magento/PageCache/composer.json
 mode change 100644 => 100755 app/code/Magento/PageCache/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/PageCache/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/PageCache/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/PageCache/etc/cache.xml
 mode change 100644 => 100755 app/code/Magento/PageCache/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/PageCache/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/PageCache/etc/events.xml
 mode change 100644 => 100755 app/code/Magento/PageCache/etc/frontend/di.xml
 mode change 100644 => 100755 app/code/Magento/PageCache/etc/frontend/events.xml
 mode change 100644 => 100755 app/code/Magento/PageCache/etc/frontend/routes.xml
 mode change 100644 => 100755 app/code/Magento/PageCache/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/PageCache/etc/varnish4.vcl
 mode change 100644 => 100755 app/code/Magento/PageCache/etc/varnish5.vcl
 mode change 100644 => 100755 app/code/Magento/PageCache/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/PageCache/registration.php
 mode change 100644 => 100755 app/code/Magento/PageCache/view/adminhtml/layout/adminhtml_system_config_edit.xml
 mode change 100644 => 100755 app/code/Magento/PageCache/view/adminhtml/templates/page_cache_validation.phtml
 mode change 100644 => 100755 app/code/Magento/PageCache/view/frontend/layout/default.xml
 mode change 100644 => 100755 app/code/Magento/PageCache/view/frontend/requirejs-config.js
 mode change 100644 => 100755 app/code/Magento/PageCache/view/frontend/templates/javascript.phtml
 mode change 100644 => 100755 app/code/Magento/PageCache/view/frontend/templates/js/components.phtml
 mode change 100644 => 100755 app/code/Magento/PageCache/view/frontend/web/js/page-cache.js
 mode change 100644 => 100755 app/code/Magento/Payment/Api/Data/PaymentMethodInterface.php
 mode change 100644 => 100755 app/code/Magento/Payment/Api/PaymentMethodListInterface.php
 mode change 100644 => 100755 app/code/Magento/Payment/Api/PaymentVerificationInterface.php
 mode change 100644 => 100755 app/code/Magento/Payment/Block/Adminhtml/Transparent/Form.php
 mode change 100644 => 100755 app/code/Magento/Payment/Block/ConfigurableInfo.php
 mode change 100644 => 100755 app/code/Magento/Payment/Block/Form.php
 mode change 100644 => 100755 app/code/Magento/Payment/Block/Form/Cc.php
 mode change 100644 => 100755 app/code/Magento/Payment/Block/Form/Container.php
 mode change 100644 => 100755 app/code/Magento/Payment/Block/Info.php
 mode change 100644 => 100755 app/code/Magento/Payment/Block/Info/AbstractContainer.php
 mode change 100644 => 100755 app/code/Magento/Payment/Block/Info/Cc.php
 mode change 100644 => 100755 app/code/Magento/Payment/Block/Info/Instructions.php
 mode change 100644 => 100755 app/code/Magento/Payment/Block/Info/Substitution.php
 mode change 100644 => 100755 app/code/Magento/Payment/Block/Transparent/Form.php
 mode change 100644 => 100755 app/code/Magento/Payment/Block/Transparent/Iframe.php
 mode change 100644 => 100755 app/code/Magento/Payment/Block/Transparent/Info.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Command/CommandException.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Command/CommandManager.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Command/CommandManagerInterface.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Command/CommandManagerPool.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Command/CommandManagerPoolInterface.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Command/CommandPool.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Command/CommandPoolInterface.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Command/GatewayCommand.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Command/NullCommand.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Command/Result/ArrayResult.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Command/Result/BoolResult.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Command/ResultInterface.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/CommandInterface.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Config/Config.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Config/ConfigFactory.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Config/ConfigValueHandler.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Config/ValueHandlerInterface.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Config/ValueHandlerPool.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Config/ValueHandlerPoolInterface.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/ConfigFactoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/ConfigInterface.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Data/AddressAdapterInterface.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Data/Order/AddressAdapter.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Data/Order/OrderAdapter.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Data/OrderAdapterInterface.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Data/PaymentDataObject.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Data/PaymentDataObjectFactory.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Data/PaymentDataObjectFactoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Data/PaymentDataObjectInterface.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Data/Quote/AddressAdapter.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Data/Quote/QuoteAdapter.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/ErrorMapper/ErrorMessageMapper.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/ErrorMapper/ErrorMessageMapperInterface.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/ErrorMapper/MappingData.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/ErrorMapper/NullMappingData.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/ErrorMapper/XmlToArrayConverter.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Helper/ContextHelper.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Helper/SubjectReader.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Http/Client/Soap.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Http/Client/Zend.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Http/ClientException.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Http/ClientInterface.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Http/Converter/HtmlFormConverter.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Http/Converter/Soap/ObjectToArrayConverter.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Http/ConverterException.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Http/ConverterInterface.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Http/Transfer.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Http/TransferBuilder.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Http/TransferFactoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Http/TransferInterface.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Request/BuilderComposite.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Request/BuilderInterface.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Response/HandlerChain.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Response/HandlerInterface.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Validator/AbstractValidator.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Validator/CountryValidator.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Validator/Result.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Validator/ResultInterface.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Validator/ValidatorComposite.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Validator/ValidatorInterface.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Validator/ValidatorPool.php
 mode change 100644 => 100755 app/code/Magento/Payment/Gateway/Validator/ValidatorPoolInterface.php
 mode change 100644 => 100755 app/code/Magento/Payment/Helper/Data.php
 mode change 100644 => 100755 app/code/Magento/Payment/Helper/Formatter.php
 mode change 100644 => 100755 app/code/Magento/Payment/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Payment/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Payment/Model/Cart.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/Cart/SalesModel/Factory.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/Cart/SalesModel/Order.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/Cart/SalesModel/Quote.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/Cart/SalesModel/SalesModelInterface.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/CcConfig.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/CcConfigProvider.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/CcGenericConfigProvider.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/Checks/CanUseCheckout.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/Checks/CanUseForCountry.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/Checks/CanUseForCountry/CountryProvider.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/Checks/CanUseForCurrency.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/Checks/CanUseInternal.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/Checks/Composite.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/Checks/SpecificationFactory.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/Checks/SpecificationInterface.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/Checks/TotalMinMax.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/Checks/ZeroTotal.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/Config.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/Config/Converter.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/Config/Reader.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/Config/SchemaLocator.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/Config/Source/Allmethods.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/Config/Source/Allspecificcountries.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/Config/Source/Cctype.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/IframeConfigProvider.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/Info.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/InfoInterface.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/Method/AbstractMethod.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/Method/Adapter.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/Method/Cc.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/Method/ConfigInterface.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/Method/Factory.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/Method/Free.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/Method/InstanceFactory.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/Method/Logger.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/Method/Online/GatewayInterface.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/Method/Specification/AbstractSpecification.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/Method/Specification/Composite.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/Method/Specification/Factory.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/Method/SpecificationInterface.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/Method/Substitution.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/Method/TransparentInterface.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/MethodInterface.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/MethodList.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/Paygate/Result.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/PaymentMethod.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/PaymentMethodList.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/ResourceModel/Grid/GroupList.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/ResourceModel/Grid/TypeList.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/Source/Cctype.php
 mode change 100644 => 100755 app/code/Magento/Payment/Model/Source/Invoice.php
 mode change 100644 => 100755 app/code/Magento/Payment/Observer/AbstractDataAssignObserver.php
 mode change 100644 => 100755 app/code/Magento/Payment/Observer/SalesOrderBeforeSaveObserver.php
 mode change 100644 => 100755 app/code/Magento/Payment/Observer/UpdateOrderStatusForPaymentMethodsObserver.php
 mode change 100644 => 100755 app/code/Magento/Payment/Plugin/PaymentConfigurationProcess.php
 mode change 100644 => 100755 app/code/Magento/Payment/README.md
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Block/Adminhtml/Transparent/FormTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Block/Adminhtml/Transparent/FormTesting.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Block/Form/ContainerTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Block/FormTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Block/Info/CcTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Block/Info/ContainerAbstractTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Block/Info/InstructionsTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Block/Info/SubstitutionTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Block/InfoTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Block/Transparent/FormTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Block/Transparent/FormTesting.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Gateway/Command/CommandPoolTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Gateway/Command/GatewayCommandTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Gateway/Config/ConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Gateway/Config/ConfigValueHandlerTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Gateway/Config/ValueHandlerPoolTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Gateway/Data/Order/AddressAdapterTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Gateway/Data/Order/OrderAdapterTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Gateway/Data/PaymentDataObjectFactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Gateway/Data/PaymentDataObjectTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Gateway/Data/Quote/AddressAdapterTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Gateway/Data/Quote/QuoteAdapterTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Gateway/Http/Client/SoapTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Gateway/Http/Client/ZendTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Gateway/Http/Converter/HtmlFormConverterTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Gateway/Http/Converter/Soap/ObjectToArrayConverterTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Gateway/Http/TransferTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Gateway/Request/BuilderCompositeTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Gateway/Response/HandlerChainTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Gateway/Validator/CountryValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Gateway/Validator/ResultTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Gateway/Validator/ValidatorCompositeTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Gateway/Validator/ValidatorPoolTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Helper/DataTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Model/Cart/SalesModel/FactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Model/Cart/SalesModel/OrderTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Model/Cart/SalesModel/QuoteTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Model/CartTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Model/CcConfigProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Model/CcConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Model/CcGenericConfigProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Model/Checks/CanUseCheckoutTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Model/Checks/CanUseForCountry/CountryProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Model/Checks/CanUseForCountryTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Model/Checks/CanUseForCurrencyTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Model/Checks/CanUseInternalTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Model/Checks/CompositeTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Model/Checks/SpecificationFactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Model/Checks/TotalMinMaxTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Model/Checks/ZeroTotalTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Model/Config/ConverterTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Model/Config/SchemaLocatorTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Model/Config/Source/AllmethodsTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Model/Config/Source/AllspecificcountriesTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Model/Config/Source/CctypeTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Model/Config/_files/payment.xml
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Model/ConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Model/InfoTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Model/Method/AbstractMethod/Stub.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Model/Method/AbstractMethodTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Model/Method/AdapterTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Model/Method/CcTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Model/Method/FreeTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Model/Method/LoggerTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Model/Method/Specification/CompositeTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Model/Method/SubstitutionTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Model/MethodListTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Model/PaymentMethodListTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Model/ResourceModel/Grid/GroupListTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Model/ResourceModel/Grid/TypeListTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Model/Source/CctypeTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Model/Source/InvoiceTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Observer/SalesOrderBeforeSaveObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Observer/UpdateOrderStatusForPaymentMethodsObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Test/Unit/Plugin/PaymentConfigurationProcessTest.php
 mode change 100644 => 100755 app/code/Magento/Payment/Ui/Component/Listing/Column/Method/Options.php
 mode change 100644 => 100755 app/code/Magento/Payment/composer.json
 mode change 100644 => 100755 app/code/Magento/Payment/etc/acl.xml
 mode change 100644 => 100755 app/code/Magento/Payment/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/Payment/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/Payment/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Payment/etc/error_mapping.xsd
 mode change 100644 => 100755 app/code/Magento/Payment/etc/events.xml
 mode change 100644 => 100755 app/code/Magento/Payment/etc/frontend/di.xml
 mode change 100644 => 100755 app/code/Magento/Payment/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Payment/etc/payment.xml
 mode change 100644 => 100755 app/code/Magento/Payment/etc/payment.xsd
 mode change 100644 => 100755 app/code/Magento/Payment/etc/payment_file.xsd
 mode change 100644 => 100755 app/code/Magento/Payment/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Payment/registration.php
 mode change 100644 => 100755 app/code/Magento/Payment/view/adminhtml/templates/form/cc.phtml
 mode change 100644 => 100755 app/code/Magento/Payment/view/adminhtml/templates/info/default.phtml
 mode change 100644 => 100755 app/code/Magento/Payment/view/adminhtml/templates/info/instructions.phtml
 mode change 100644 => 100755 app/code/Magento/Payment/view/adminhtml/templates/info/pdf/default.phtml
 mode change 100644 => 100755 app/code/Magento/Payment/view/adminhtml/templates/info/substitution.phtml
 mode change 100644 => 100755 app/code/Magento/Payment/view/adminhtml/templates/transparent/form.phtml
 mode change 100644 => 100755 app/code/Magento/Payment/view/adminhtml/templates/transparent/iframe.phtml
 mode change 100644 => 100755 app/code/Magento/Payment/view/adminhtml/templates/transparent/info.phtml
 mode change 100644 => 100755 app/code/Magento/Payment/view/adminhtml/web/transparent.js
 mode change 100644 => 100755 app/code/Magento/Payment/view/base/web/images/cc/ae.png
 mode change 100644 => 100755 app/code/Magento/Payment/view/base/web/images/cc/di.png
 mode change 100644 => 100755 app/code/Magento/Payment/view/base/web/images/cc/dn.png
 mode change 100644 => 100755 app/code/Magento/Payment/view/base/web/images/cc/jcb.png
 mode change 100644 => 100755 app/code/Magento/Payment/view/base/web/images/cc/mc.png
 mode change 100644 => 100755 app/code/Magento/Payment/view/base/web/images/cc/md.png
 mode change 100644 => 100755 app/code/Magento/Payment/view/base/web/images/cc/mi.png
 mode change 100644 => 100755 app/code/Magento/Payment/view/base/web/images/cc/sm.png
 mode change 100644 => 100755 app/code/Magento/Payment/view/base/web/images/cc/so.png
 mode change 100644 => 100755 app/code/Magento/Payment/view/base/web/images/cc/un.png
 mode change 100644 => 100755 app/code/Magento/Payment/view/base/web/images/cc/vi.png
 mode change 100644 => 100755 app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/credit-card-data.js
 mode change 100644 => 100755 app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/credit-card-number-validator.js
 mode change 100644 => 100755 app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/credit-card-number-validator/credit-card-type.js
 mode change 100644 => 100755 app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/credit-card-number-validator/luhn10-validator.js
 mode change 100644 => 100755 app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/cvv-validator.js
 mode change 100644 => 100755 app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/expiration-date-validator.js
 mode change 100644 => 100755 app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/expiration-date-validator/expiration-month-validator.js
 mode change 100644 => 100755 app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/expiration-date-validator/expiration-year-validator.js
 mode change 100644 => 100755 app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/expiration-date-validator/parse-date.js
 mode change 100644 => 100755 app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/validator.js
 mode change 100644 => 100755 app/code/Magento/Payment/view/frontend/layout/checkout_index_index.xml
 mode change 100644 => 100755 app/code/Magento/Payment/view/frontend/layout/checkout_onepage_review.xml
 mode change 100644 => 100755 app/code/Magento/Payment/view/frontend/requirejs-config.js
 mode change 100644 => 100755 app/code/Magento/Payment/view/frontend/templates/form/cc.phtml
 mode change 100644 => 100755 app/code/Magento/Payment/view/frontend/templates/info/default.phtml
 mode change 100644 => 100755 app/code/Magento/Payment/view/frontend/templates/info/instructions.phtml
 mode change 100644 => 100755 app/code/Magento/Payment/view/frontend/templates/info/pdf/default.phtml
 mode change 100644 => 100755 app/code/Magento/Payment/view/frontend/templates/transparent/form.phtml
 mode change 100644 => 100755 app/code/Magento/Payment/view/frontend/templates/transparent/iframe.phtml
 mode change 100644 => 100755 app/code/Magento/Payment/view/frontend/templates/transparent/info.phtml
 mode change 100644 => 100755 app/code/Magento/Payment/view/frontend/web/cc-type.js
 mode change 100644 => 100755 app/code/Magento/Payment/view/frontend/web/js/view/payment/cc-form.js
 mode change 100644 => 100755 app/code/Magento/Payment/view/frontend/web/js/view/payment/iframe.js
 mode change 100644 => 100755 app/code/Magento/Payment/view/frontend/web/js/view/payment/method-renderer/free-method.js
 mode change 100644 => 100755 app/code/Magento/Payment/view/frontend/web/js/view/payment/payments.js
 mode change 100644 => 100755 app/code/Magento/Payment/view/frontend/web/template/payment/cc-form.html
 mode change 100644 => 100755 app/code/Magento/Payment/view/frontend/web/template/payment/free.html
 mode change 100644 => 100755 app/code/Magento/Payment/view/frontend/web/template/payment/iframe.html
 mode change 100644 => 100755 app/code/Magento/Payment/view/frontend/web/transparent.js
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Adminhtml/Billing/Agreement.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Adminhtml/Billing/Agreement/Grid.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Adminhtml/Billing/Agreement/View.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Adminhtml/Billing/Agreement/View/Form.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Adminhtml/Billing/Agreement/View/Tab/Info.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Adminhtml/Billing/Agreement/View/Tab/Orders.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Adminhtml/Billing/Agreement/View/Tabs.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Adminhtml/Customer/Edit/Tab/Agreement.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Adminhtml/Payflowpro/CcForm.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Adminhtml/Settlement/Details.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Adminhtml/Settlement/Details/Form.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Adminhtml/Settlement/Report.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Adminhtml/Store/SwitcherPlugin.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Adminhtml/System/Config/ApiWizard.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Adminhtml/System/Config/BmlApiWizard.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Country.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Depends/BmlApiSortOrder.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Depends/BmlSortOrder.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Depends/MerchantId.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Enable/AbstractEnable.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Enable/Bml.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Enable/BmlApi.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Enable/Express.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Enable/InContext.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Enable/InContextApi.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Enable/Payment.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Hidden.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Adminhtml/System/Config/Fieldset/Expanded.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Adminhtml/System/Config/Fieldset/Group.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Adminhtml/System/Config/Fieldset/Hint.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Adminhtml/System/Config/Fieldset/Payment.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Adminhtml/System/Config/Payflowlink/Advanced.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Adminhtml/System/Config/Payflowlink/Info.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Adminhtml/System/Config/ResolutionRules.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Billing/Agreement/View.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Billing/Agreements.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Bml/Banners.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Bml/Form.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Bml/Shortcut.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Cart/ValidationMessages.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Checkout/Onepage/Success/BillingAgreement.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Express/Form.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Express/InContext/Component.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Express/InContext/Minicart/Button.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Express/Review.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Express/Review/Billing.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Express/Review/Details.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Express/Review/Shipping.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Express/Shortcut.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Hosted/Pro/Form.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Hosted/Pro/Iframe.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Hosted/Pro/Info.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Iframe.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Logo.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Payflow/Advanced/Form.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Payflow/Advanced/Iframe.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Payflow/Advanced/Info.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Payflow/Bml/Form.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Payflow/Customer/CardRenderer.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Payflow/Info.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Payflow/Link/Form.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Payflow/Link/Iframe.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Payflow/Link/Info.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/PayflowExpress/Form.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Payment/Form/Billing/Agreement.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Payment/Info.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Block/Payment/Info/Billing/Agreement.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/Cancel.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/CustomerGrid.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/Delete.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/Grid.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/Index.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/OrdersGrid.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/View.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Adminhtml/Paypal/Reports.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Adminhtml/Paypal/Reports/Details.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Adminhtml/Paypal/Reports/Fetch.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Adminhtml/Paypal/Reports/Grid.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Adminhtml/Paypal/Reports/Index.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Adminhtml/Transparent/RequestSecureToken.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Adminhtml/Transparent/Response.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Billing/Agreement.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Billing/Agreement/Cancel.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Billing/Agreement/CancelWizard.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Billing/Agreement/Index.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Billing/Agreement/ReturnWizard.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Billing/Agreement/StartWizard.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Billing/Agreement/View.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Bml/Start.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Express/AbstractExpress.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Express/AbstractExpress/Cancel.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Express/AbstractExpress/Edit.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Express/AbstractExpress/PlaceOrder.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Express/AbstractExpress/ReturnAction.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Express/AbstractExpress/Review.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Express/AbstractExpress/SaveShippingMethod.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Express/AbstractExpress/ShippingOptionsCallback.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Express/AbstractExpress/Start.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Express/AbstractExpress/UpdateShippingMethods.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Express/Cancel.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Express/Edit.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Express/GetToken.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Express/PlaceOrder.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Express/ReturnAction.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Express/Review.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Express/SaveShippingMethod.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Express/ShippingOptionsCallback.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Express/Start.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Express/UpdateShippingMethods.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Hostedpro/Cancel.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Hostedpro/Redirect.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Hostedpro/ReturnAction.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Ipn/Index.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Payflow.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Payflow/CancelPayment.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Payflow/Form.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Payflow/ReturnUrl.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Payflow/SilentPost.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Payflowadvanced/CancelPayment.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Payflowadvanced/Form.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Payflowadvanced/ReturnUrl.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Payflowadvanced/SilentPost.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Payflowbml/Start.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Payflowexpress/Cancel.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Payflowexpress/Edit.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Payflowexpress/PlaceOrder.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Payflowexpress/ReturnAction.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Payflowexpress/Review.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Payflowexpress/SaveShippingMethod.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Payflowexpress/ShippingOptionsCallback.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Payflowexpress/Start.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Payflowexpress/UpdateShippingMethods.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Transparent/RequestSecureToken.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Controller/Transparent/Response.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Cron/FetchReports.php
 mode change 100644 => 100755 app/code/Magento/Paypal/CustomerData/BillingAgreement.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Gateway/Payflowpro/Command/AuthorizationCommand.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Gateway/Payflowpro/Command/SaleCommand.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Helper/Backend.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Helper/Checkout.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Helper/Data.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Helper/Hss.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Helper/Shortcut/CheckoutValidator.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Helper/Shortcut/Factory.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Helper/Shortcut/Validator.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Helper/Shortcut/ValidatorInterface.php
 mode change 100644 => 100755 app/code/Magento/Paypal/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Paypal/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/AbstractConfig.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/AbstractIpn.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Api/AbstractApi.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Api/Nvp.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Api/PayflowNvp.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Api/ProcessableException.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Api/Type/Factory.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Billing/AbstractAgreement.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Billing/Agreement.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Billing/Agreement/MethodInterface.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Billing/Agreement/OrdersUpdater.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/BillingAgreementConfigProvider.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Bml.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Cart.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Cert.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Config.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Config/Factory.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Config/Rules/Converter.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Config/Rules/FileResolver.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Config/Rules/Reader.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Config/Rules/SchemaLocator.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Config/Structure/Element/FieldPlugin.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Config/Structure/PaymentSectionModifier.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Config/StructurePlugin.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Direct.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Express.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Express/Checkout.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Express/Checkout/Factory.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Express/QuotePlugin.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/ExpressConfigProvider.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Hostedpro.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Hostedpro/Request.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/IframeConfigProvider.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Info.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/InstantPurchase/Payflow/Pro/TokenFormatter.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Ipn.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/IpnFactory.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/IpnInterface.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Method/Agreement.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Method/Checks/SpecificationPlugin.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Payflow/AvsEmsCodeMapper.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Payflow/Bml.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Payflow/CvvEmsCodeMapper.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Payflow/Pro.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Payflow/Request.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Payflow/Service/Gateway.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Payflow/Service/Request/SecureToken.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Payflow/Service/Response/Handler/CreditCardValidationHandler.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Payflow/Service/Response/Handler/FraudHandler.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Payflow/Service/Response/Handler/HandlerComposite.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Payflow/Service/Response/Handler/HandlerInterface.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Payflow/Service/Response/Transaction.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Payflow/Service/Response/Validator/AVSResponse.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Payflow/Service/Response/Validator/CVV2Match.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Payflow/Service/Response/Validator/IAVSResponse.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Payflow/Service/Response/Validator/ResponseValidator.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Payflow/Service/Response/Validator/SecureToken.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Payflow/Service/Response/ValidatorInterface.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Payflow/Transparent.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Payflow/Ui/Adminhtml/TokenUiComponentProvider.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Payflow/Ui/TokenUiComponentProvider.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/PayflowConfig.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/PayflowExpress.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/PayflowExpress/Checkout.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Payflowadvanced.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Payflowlink.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Payflowpro.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Payment/Method/Billing/AbstractAgreement.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Pro.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Report/Settlement.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/Report/Settlement/Row.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/ResourceModel/Billing/Agreement.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/ResourceModel/Billing/Agreement/Collection.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/ResourceModel/Cert.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/ResourceModel/Report/Settlement.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/ResourceModel/Report/Settlement/Options/TransactionEvents.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/ResourceModel/Report/Settlement/Row.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/ResourceModel/Report/Settlement/Row/Collection.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/System/Config/Backend/Cert.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/System/Config/Backend/Cron.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/System/Config/Backend/MerchantCountry.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/System/Config/Source/BmlPosition.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/System/Config/Source/BmlSize.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/System/Config/Source/BuyerCountry.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/System/Config/Source/FetchingSchedule.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/System/Config/Source/Logo.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/System/Config/Source/MerchantCountry.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/System/Config/Source/PaymentActions.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/System/Config/Source/PaymentActions/Express.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/System/Config/Source/RequireBillingAddress.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/System/Config/Source/UrlMethod.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Model/System/Config/Source/Yesnoshortcut.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Observer/AddBillingAgreementToSessionObserver.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Observer/AddPaypalShortcutsObserver.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Observer/HtmlTransactionIdObserver.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Observer/PayflowProAddCcData.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Observer/RestrictAdminBillingAgreementUsageObserver.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Observer/SaveOrderAfterSubmitObserver.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Observer/SetResponseAfterSaveOrderObserver.php
 mode change 100644 => 100755 app/code/Magento/Paypal/README.md
 mode change 100644 => 100755 app/code/Magento/Paypal/Setup/InstallData.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Setup/UpgradeSchema.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/Store/SwitcherPluginTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/System/Config/Field/CountryTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/System/Config/Field/Enable/AbstractEnable/Stub.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/System/Config/Field/Enable/AbstractEnableTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/System/Config/Fieldset/GroupTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/System/Config/Fieldset/HintTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/System/Config/Fieldset/PaymentTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/System/Config/ResolutionRulesTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Block/Billing/Agreement/ViewTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Block/Billing/AgreementsTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Block/Bml/ShortcutTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Block/Express/FormTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Block/Express/ReviewTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Block/Express/ShortcutTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Block/Payflow/Link/IframeTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Block/PayflowExpress/FormTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Controller/Billing/Agreement/CancelTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Controller/Express/PlaceOrderTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Controller/Express/ReturnActionTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Controller/Express/StartTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Controller/ExpressTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Controller/Ipn/IndexTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Controller/Payflow/ReturnUrlTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Controller/Transparent/RequestSecureTokenTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Controller/Transparent/ResponseTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Cron/FetchReportsTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/CustomerData/BillingAgreementTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Helper/BackendTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Helper/CheckoutTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Helper/DataTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Helper/Shortcut/CheckoutValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Helper/Shortcut/FactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Helper/Shortcut/ValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/AbstractConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/AbstractConfigTesting.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/Api/NvpTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/Api/ProcessableExceptionTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/Billing/AbstractAgreementTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/Billing/Agreement/OrdersUpdaterTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/Billing/AgreementTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/BillingAgreementConfigProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/CartTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/Config/Rules/ConverterTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/Config/Rules/ConvertibleContent/rules.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/Config/Rules/FileResolverTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/Config/Rules/ReaderTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/Config/Rules/SchemaLocatorTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/Config/Structure/Element/FieldPluginTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/Config/Structure/PaymentSectionModifierTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/Config/Structure/_files/payment_section_structure_variations.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/Config/StructurePluginTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/ConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/Express/CheckoutTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/ExpressConfigProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/ExpressTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/Hostedpro/RequestTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/IframeConfigProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/InfoTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/IpnTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/Method/AgreementTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/Method/Checks/SpecificationPluginTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/Payflow/AvsEmsCodeMapperTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/Payflow/CvvEmsCodeMapperTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/GatewayTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Request/SecureTokenTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Handler/CreditCardValidationHandlerTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Handler/FraudHandlerTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Handler/HandlerCompositeTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Handler/_files/fps_prexmldata.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Handler/_files/xxe-xml.txt
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Handler/_files/xxe_fps_prexmldata.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/TransactionTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Validator/AVSResponseTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Validator/CVV2MatchTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Validator/IAVSResponseTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Validator/ResponseValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Validator/SecureTokenTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/Payflow/TransparentTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/PayflowConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/PayflowExpressTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/PayflowadvancedTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/PayflowlinkTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/PayflowproTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/Payment/Method/Billing/AbstractAgreementStub.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/Payment/Method/Billing/AbstractAgreementTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/ProTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/Report/Settlement/RowTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/ResourceModel/Billing/AgreementTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/System/Config/Source/BmlPositionTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/System/Config/Source/YesnoshortcutTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Model/_files/additional_info_data.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Observer/AddBillingAgreementToSessionObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Observer/AddPaypalShortcutsObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Observer/HtmlTransactionIdObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Observer/RestrictAdminBillingAgreementUsageObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/Test/Unit/Observer/SetResponseAfterSaveOrderObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Paypal/composer.json
 mode change 100644 => 100755 app/code/Magento/Paypal/etc/acl.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/etc/adminhtml/events.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/etc/adminhtml/menu.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/etc/adminhtml/rules/payment_au.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/etc/adminhtml/rules/payment_ca.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/etc/adminhtml/rules/payment_de.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/etc/adminhtml/rules/payment_es.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/etc/adminhtml/rules/payment_fr.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/etc/adminhtml/rules/payment_gb.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/etc/adminhtml/rules/payment_hk.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/etc/adminhtml/rules/payment_it.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/etc/adminhtml/rules/payment_jp.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/etc/adminhtml/rules/payment_nz.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/etc/adminhtml/rules/payment_other.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/etc/adminhtml/rules/payment_us.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/etc/adminhtml/system/express_checkout.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/etc/adminhtml/system/payflow_advanced.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/etc/adminhtml/system/payflow_link.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/etc/adminhtml/system/payments_pro_hosted_solution.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/etc/adminhtml/system/payments_pro_hosted_solution_with_express_checkout.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/etc/adminhtml/system/paypal_payflowpro.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/etc/adminhtml/system/paypal_payflowpro_with_express_checkout.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/etc/crontab.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/etc/events.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/etc/frontend/di.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/etc/frontend/events.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/etc/frontend/page_types.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/etc/frontend/routes.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/etc/frontend/sections.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/etc/payment.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/etc/rules.xsd
 mode change 100644 => 100755 app/code/Magento/Paypal/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Paypal/registration.php
 mode change 100644 => 100755 app/code/Magento/Paypal/view/adminhtml/layout/adminhtml_paypal_reports_block.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/adminhtml/layout/adminhtml_system_config_edit.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/adminhtml/layout/paypal_billing_agreement_customergrid.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/adminhtml/layout/paypal_billing_agreement_grid.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/adminhtml/layout/paypal_billing_agreement_index.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/adminhtml/layout/paypal_billing_agreement_ordersgrid.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/adminhtml/layout/paypal_billing_agreement_view.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/adminhtml/layout/paypal_paypal_reports_grid.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/adminhtml/layout/paypal_paypal_reports_index.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/adminhtml/layout/sales_order_create_index.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/adminhtml/layout/sales_order_create_load_block_billing_method.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/adminhtml/layout/transparent_payment_response.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/adminhtml/templates/billing/agreement/form.phtml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/adminhtml/templates/billing/agreement/view/form.phtml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/adminhtml/templates/billing/agreement/view/tab/info.phtml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/adminhtml/templates/payflowpro/vault.phtml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/adminhtml/templates/payment/form/billing/agreement.phtml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/adminhtml/templates/system/config/api_wizard.phtml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/adminhtml/templates/system/config/bml_api_wizard.phtml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/adminhtml/templates/system/config/fieldset/hint.phtml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/adminhtml/templates/system/config/payflowlink/advanced.phtml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/adminhtml/templates/system/config/payflowlink/info.phtml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/adminhtml/templates/system/config/rules.phtml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/adminhtml/templates/transparent/form.phtml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/adminhtml/templates/transparent/iframe.phtml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/adminhtml/web/images/AM_mc_vs_dc_ae.jpg
 mode change 100644 => 100755 app/code/Magento/Paypal/view/adminhtml/web/images/logo-paypal.png
 mode change 100644 => 100755 app/code/Magento/Paypal/view/adminhtml/web/images/paypal-logo.png
 mode change 100644 => 100755 app/code/Magento/Paypal/view/adminhtml/web/images/pp-allinone.png
 mode change 100644 => 100755 app/code/Magento/Paypal/view/adminhtml/web/images/pp-alt.png
 mode change 100644 => 100755 app/code/Magento/Paypal/view/adminhtml/web/images/pp-gateways.png
 mode change 100644 => 100755 app/code/Magento/Paypal/view/adminhtml/web/images/pp-logo-200px.png
 mode change 100644 => 100755 app/code/Magento/Paypal/view/adminhtml/web/images/pp-payflow-mark.png
 mode change 100644 => 100755 app/code/Magento/Paypal/view/adminhtml/web/images/pp-uk.png
 mode change 100644 => 100755 app/code/Magento/Paypal/view/adminhtml/web/js/payflowpro/vault.js
 mode change 100644 => 100755 app/code/Magento/Paypal/view/adminhtml/web/js/predicate/confirm.js
 mode change 100644 => 100755 app/code/Magento/Paypal/view/adminhtml/web/js/rule.js
 mode change 100644 => 100755 app/code/Magento/Paypal/view/adminhtml/web/js/rules.js
 mode change 100644 => 100755 app/code/Magento/Paypal/view/adminhtml/web/js/solution.js
 mode change 100644 => 100755 app/code/Magento/Paypal/view/adminhtml/web/js/solutions.js
 mode change 100644 => 100755 app/code/Magento/Paypal/view/adminhtml/web/logo.gif
 mode change 100644 => 100755 app/code/Magento/Paypal/view/adminhtml/web/section.png
 mode change 100644 => 100755 app/code/Magento/Paypal/view/adminhtml/web/styles.css
 mode change 100644 => 100755 app/code/Magento/Paypal/view/base/requirejs-config.js
 mode change 100644 => 100755 app/code/Magento/Paypal/view/base/ui_component/customer_form.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/layout/catalog_category_view.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/layout/catalog_product_view.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/layout/checkout_cart_index.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/layout/checkout_index_index.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/layout/checkout_onepage_review.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/layout/checkout_onepage_success.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/layout/cms_index_index.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/layout/customer_account.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/layout/default.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/layout/paypal_billing_agreement_index.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/layout/paypal_billing_agreement_view.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/layout/paypal_express_review.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/layout/paypal_express_review_details.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/layout/paypal_payflow_cancelpayment.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/layout/paypal_payflow_form.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/layout/paypal_payflow_returnurl.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/layout/paypal_payflowadvanced_cancelpayment.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/layout/paypal_payflowadvanced_form.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/layout/paypal_payflowadvanced_returnurl.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/layout/paypal_payflowexpress_review.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/layout/transparent_payment_response.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/layout/vault_cards_listaction.xml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/requirejs-config.js
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/templates/billing/agreement/view.phtml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/templates/billing/agreements.phtml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/templates/bml.phtml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/templates/checkout/onepage/review/totals.phtml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/templates/checkout/onepage/success/billing_agreement.phtml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/templates/express/in-context/component.phtml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/templates/express/in-context/shortcut/button.phtml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/templates/express/review.phtml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/templates/express/review/details.phtml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/templates/express/review/shipping/method.phtml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/templates/express/shortcut.phtml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/templates/express/shortcut/container.phtml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/templates/hss/form.phtml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/templates/hss/iframe.phtml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/templates/hss/info.phtml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/templates/hss/js.phtml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/templates/hss/review/button.phtml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/templates/js/components.phtml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/templates/partner/logo.phtml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/templates/payflowadvanced/form.phtml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/templates/payflowadvanced/info.phtml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/templates/payflowlink/form.phtml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/templates/payflowlink/info.phtml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/templates/payflowlink/redirect.phtml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/templates/payment/form/billing/agreement.phtml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/templates/payment/mark.phtml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/templates/payment/redirect.phtml
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/web/js/action/set-payment-method.js
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/web/js/in-context/billing-agreement.js
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/web/js/in-context/button.js
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/web/js/in-context/express-checkout.js
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/web/js/model/iframe-redirect.js
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/web/js/model/iframe.js
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/web/js/paypal-checkout.js
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/iframe-methods.js
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/in-context/checkout-express.js
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/payflow-express-bml.js
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/payflow-express.js
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/payflowpro-method.js
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/payflowpro/vault.js
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/paypal-billing-agreement.js
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/paypal-express-abstract.js
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/paypal-express-bml.js
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/paypal-express.js
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/web/js/view/payment/paypal-payments.js
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/web/js/view/review/actions/iframe.js
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/web/order-review.js
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/web/template/payment/express/billing-agreement.html
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/web/template/payment/iframe-methods.html
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/web/template/payment/payflow-express-bml.html
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/web/template/payment/payflow-express.html
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/web/template/payment/payflowpro-form.html
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/web/template/payment/paypal-express-bml.html
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/web/template/payment/paypal-express-in-context.html
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/web/template/payment/paypal-express.html
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/web/template/payment/paypal_billing_agreement-form.html
 mode change 100644 => 100755 app/code/Magento/Paypal/view/frontend/web/template/payment/paypal_direct-form.html
 mode change 100644 => 100755 app/code/Magento/Persistent/Block/Form/Remember.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Block/Header/Additional.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Controller/Index.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Controller/Index/ExpressCheckout.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Controller/Index/SaveMethod.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Controller/Index/UnsetCookie.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Helper/Data.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Helper/Session.php
 mode change 100644 => 100755 app/code/Magento/Persistent/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Persistent/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Persistent/Model/Checkout/AddressDataProcessorPlugin.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Model/Checkout/ConfigProviderPlugin.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Model/Checkout/GuestPaymentInformationManagementPlugin.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Model/CheckoutConfigProvider.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Model/Factory.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Model/Layout/DepersonalizePlugin.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Model/Observer.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Model/Persistent/Config.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Model/Plugin/CustomerData.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Model/QuoteManager.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Model/ResourceModel/Session.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Model/Session.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Observer/ApplyBlockPersistentDataObserver.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Observer/ApplyPersistentDataObserver.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Observer/CheckExpirePersistentQuoteObserver.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Observer/ClearExpiredCronJobObserver.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Observer/CustomerAuthenticatedEventObserver.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Observer/EmulateCustomerObserver.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Observer/EmulateQuoteObserver.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Observer/MakePersistentQuoteGuestObserver.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Observer/PreventClearCheckoutSessionObserver.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Observer/PreventExpressCheckoutObserver.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Observer/RefreshCustomerData.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Observer/RemoveGuestPersistenceOnEmptyCartObserver.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Observer/RemovePersistentCookieOnRegisterObserver.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Observer/RenewCookieObserver.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Observer/SetLoadPersistentQuoteObserver.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Observer/SetQuotePersistentDataObserver.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Observer/SetRememberMeCheckedStatusObserver.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Observer/SetRememberMeStatusForAjaxLoginObserver.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Observer/SynchronizePersistentInfoObserver.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Observer/SynchronizePersistentOnLoginObserver.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Observer/SynchronizePersistentOnLogoutObserver.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Observer/UpdateCustomerCookiesObserver.php
 mode change 100644 => 100755 app/code/Magento/Persistent/README.md
 mode change 100644 => 100755 app/code/Magento/Persistent/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Test/Unit/Block/Header/AdditionalTest.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Test/Unit/Helper/DataTest.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Test/Unit/Model/Checkout/ConfigProviderPluginTest.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Test/Unit/Model/Checkout/GuestPaymentInformationManagementPluginTest.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Test/Unit/Model/FactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Test/Unit/Model/Layout/DepersonalizePluginTest.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Test/Unit/Model/ObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Test/Unit/Model/Plugin/CustomerDataTest.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Test/Unit/Model/QuoteManagerTest.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Test/Unit/Model/SessionTest.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Test/Unit/Observer/ApplyBlockPersistentDataObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Test/Unit/Observer/ApplyPersistentDataObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Test/Unit/Observer/CheckExpirePersistentQuoteObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Test/Unit/Observer/ClearExpiredCronJobObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Test/Unit/Observer/CustomerAuthenticatedEventObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Test/Unit/Observer/EmulateCustomerObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Test/Unit/Observer/EmulateQuoteObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Test/Unit/Observer/MakePersistentQuoteGuestObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Test/Unit/Observer/PreventClearCheckoutSessionObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Test/Unit/Observer/PreventExpressCheckoutObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Test/Unit/Observer/RefreshCustomerDataTest.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Test/Unit/Observer/RemoveGuestPersistenceOnEmptyCartObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Test/Unit/Observer/RemovePersistentCookieOnRegisterObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Test/Unit/Observer/RenewCookieObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Test/Unit/Observer/SetLoadPersistentQuoteObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Test/Unit/Observer/SetQuotePersistentDataObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Test/Unit/Observer/SetRememberMeCheckedStatusObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Test/Unit/Observer/SynchronizePersistentInfoObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Test/Unit/Observer/SynchronizePersistentOnLogoutObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Persistent/Test/Unit/Observer/UpdateCustomerCookiesObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Persistent/composer.json
 mode change 100644 => 100755 app/code/Magento/Persistent/etc/acl.xml
 mode change 100644 => 100755 app/code/Magento/Persistent/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/Persistent/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/Persistent/etc/crontab.xml
 mode change 100644 => 100755 app/code/Magento/Persistent/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Persistent/etc/extension_attributes.xml
 mode change 100644 => 100755 app/code/Magento/Persistent/etc/frontend/di.xml
 mode change 100644 => 100755 app/code/Magento/Persistent/etc/frontend/events.xml
 mode change 100644 => 100755 app/code/Magento/Persistent/etc/frontend/routes.xml
 mode change 100644 => 100755 app/code/Magento/Persistent/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Persistent/etc/persistent.xml
 mode change 100644 => 100755 app/code/Magento/Persistent/etc/persistent.xsd
 mode change 100644 => 100755 app/code/Magento/Persistent/etc/webapi_rest/di.xml
 mode change 100644 => 100755 app/code/Magento/Persistent/etc/webapi_rest/events.xml
 mode change 100644 => 100755 app/code/Magento/Persistent/etc/webapi_soap/di.xml
 mode change 100644 => 100755 app/code/Magento/Persistent/etc/webapi_soap/events.xml
 mode change 100644 => 100755 app/code/Magento/Persistent/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Persistent/registration.php
 mode change 100644 => 100755 app/code/Magento/Persistent/view/frontend/layout/customer_account_create.xml
 mode change 100644 => 100755 app/code/Magento/Persistent/view/frontend/layout/customer_account_login.xml
 mode change 100644 => 100755 app/code/Magento/Persistent/view/frontend/templates/remember_me.phtml
 mode change 100644 => 100755 app/code/Magento/Persistent/view/frontend/web/js/view/remember-me.js
 mode change 100644 => 100755 app/code/Magento/Persistent/view/frontend/web/template/remember-me.html
 mode change 100644 => 100755 app/code/Magento/ProductAlert/Block/Email/AbstractEmail.php
 mode change 100644 => 100755 app/code/Magento/ProductAlert/Block/Email/Price.php
 mode change 100644 => 100755 app/code/Magento/ProductAlert/Block/Email/Stock.php
 mode change 100644 => 100755 app/code/Magento/ProductAlert/Block/Product/View.php
 mode change 100644 => 100755 app/code/Magento/ProductAlert/Block/Product/View/Price.php
 mode change 100644 => 100755 app/code/Magento/ProductAlert/Block/Product/View/Stock.php
 mode change 100644 => 100755 app/code/Magento/ProductAlert/Controller/Add.php
 mode change 100644 => 100755 app/code/Magento/ProductAlert/Controller/Add/Price.php
 mode change 100644 => 100755 app/code/Magento/ProductAlert/Controller/Add/Stock.php
 mode change 100644 => 100755 app/code/Magento/ProductAlert/Controller/Unsubscribe.php
 mode change 100644 => 100755 app/code/Magento/ProductAlert/Controller/Unsubscribe/Price.php
 mode change 100644 => 100755 app/code/Magento/ProductAlert/Controller/Unsubscribe/PriceAll.php
 mode change 100644 => 100755 app/code/Magento/ProductAlert/Controller/Unsubscribe/Stock.php
 mode change 100644 => 100755 app/code/Magento/ProductAlert/Controller/Unsubscribe/StockAll.php
 mode change 100644 => 100755 app/code/Magento/ProductAlert/Helper/Data.php
 mode change 100644 => 100755 app/code/Magento/ProductAlert/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/ProductAlert/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/ProductAlert/Model/Email.php
 mode change 100644 => 100755 app/code/Magento/ProductAlert/Model/Observer.php
 mode change 100644 => 100755 app/code/Magento/ProductAlert/Model/Price.php
 mode change 100644 => 100755 app/code/Magento/ProductAlert/Model/ResourceModel/AbstractResource.php
 mode change 100644 => 100755 app/code/Magento/ProductAlert/Model/ResourceModel/Price.php
 mode change 100644 => 100755 app/code/Magento/ProductAlert/Model/ResourceModel/Price/Collection.php
 mode change 100644 => 100755 app/code/Magento/ProductAlert/Model/ResourceModel/Price/Customer/Collection.php
 mode change 100644 => 100755 app/code/Magento/ProductAlert/Model/ResourceModel/Stock.php
 mode change 100644 => 100755 app/code/Magento/ProductAlert/Model/ResourceModel/Stock/Collection.php
 mode change 100644 => 100755 app/code/Magento/ProductAlert/Model/ResourceModel/Stock/Customer/Collection.php
 mode change 100644 => 100755 app/code/Magento/ProductAlert/Model/Stock.php
 mode change 100644 => 100755 app/code/Magento/ProductAlert/README.md
 mode change 100644 => 100755 app/code/Magento/ProductAlert/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/ProductAlert/Setup/Recurring.php
 mode change 100644 => 100755 app/code/Magento/ProductAlert/Test/Unit/Block/Email/StockTest.php
 mode change 100644 => 100755 app/code/Magento/ProductAlert/Test/Unit/Block/Product/View/PriceTest.php
 mode change 100644 => 100755 app/code/Magento/ProductAlert/Test/Unit/Block/Product/View/StockTest.php
 mode change 100644 => 100755 app/code/Magento/ProductAlert/Test/Unit/Block/Product/ViewTest.php
 mode change 100644 => 100755 app/code/Magento/ProductAlert/Test/Unit/Model/ObserverTest.php
 mode change 100644 => 100755 app/code/Magento/ProductAlert/composer.json
 mode change 100644 => 100755 app/code/Magento/ProductAlert/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/ProductAlert/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/ProductAlert/etc/crontab.xml
 mode change 100644 => 100755 app/code/Magento/ProductAlert/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/ProductAlert/etc/email_templates.xml
 mode change 100644 => 100755 app/code/Magento/ProductAlert/etc/frontend/routes.xml
 mode change 100644 => 100755 app/code/Magento/ProductAlert/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/ProductAlert/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/ProductAlert/registration.php
 mode change 100644 => 100755 app/code/Magento/ProductAlert/view/adminhtml/email/cron_error.html
 mode change 100644 => 100755 app/code/Magento/ProductAlert/view/frontend/email/price_alert.html
 mode change 100644 => 100755 app/code/Magento/ProductAlert/view/frontend/email/stock_alert.html
 mode change 100644 => 100755 app/code/Magento/ProductAlert/view/frontend/layout/catalog_product_view.xml
 mode change 100644 => 100755 app/code/Magento/ProductAlert/view/frontend/templates/email/price.phtml
 mode change 100644 => 100755 app/code/Magento/ProductAlert/view/frontend/templates/email/stock.phtml
 mode change 100644 => 100755 app/code/Magento/ProductAlert/view/frontend/templates/product/view.phtml
 mode change 100644 => 100755 app/code/Magento/ProductVideo/Block/Adminhtml/Product/Edit/NewVideo.php
 mode change 100644 => 100755 app/code/Magento/ProductVideo/Block/Product/View/Gallery.php
 mode change 100644 => 100755 app/code/Magento/ProductVideo/Controller/Adminhtml/Product/Gallery/RetrieveImage.php
 mode change 100644 => 100755 app/code/Magento/ProductVideo/Helper/Media.php
 mode change 100644 => 100755 app/code/Magento/ProductVideo/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/ProductVideo/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/ProductVideo/Model/Plugin/Catalog/Product/Gallery/AbstractHandler.php
 mode change 100644 => 100755 app/code/Magento/ProductVideo/Model/Plugin/Catalog/Product/Gallery/CreateHandler.php
 mode change 100644 => 100755 app/code/Magento/ProductVideo/Model/Plugin/Catalog/Product/Gallery/ReadHandler.php
 mode change 100644 => 100755 app/code/Magento/ProductVideo/Model/Plugin/ExternalVideoResourceBackend.php
 mode change 100644 => 100755 app/code/Magento/ProductVideo/Model/Product/Attribute/Media/ExternalVideoEntryConverter.php
 mode change 100644 => 100755 app/code/Magento/ProductVideo/Model/Product/Attribute/Media/VideoEntry.php
 mode change 100644 => 100755 app/code/Magento/ProductVideo/Model/ResourceModel/Video.php
 mode change 100644 => 100755 app/code/Magento/ProductVideo/Model/VideoExtractor.php
 mode change 100644 => 100755 app/code/Magento/ProductVideo/Observer/ChangeTemplateObserver.php
 mode change 100644 => 100755 app/code/Magento/ProductVideo/README.md
 mode change 100644 => 100755 app/code/Magento/ProductVideo/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/ProductVideo/Test/Unit/Block/Adminhtml/Product/Edit/NewVideoTest.php
 mode change 100644 => 100755 app/code/Magento/ProductVideo/Test/Unit/Block/Product/View/GalleryTest.php
 mode change 100644 => 100755 app/code/Magento/ProductVideo/Test/Unit/Controller/Adminhtml/Product/Gallery/RetrieveImageTest.php
 mode change 100644 => 100755 app/code/Magento/ProductVideo/Test/Unit/Helper/MediaTest.php
 mode change 100644 => 100755 app/code/Magento/ProductVideo/Test/Unit/Model/Plugin/Catalog/Product/Gallery/CreateHandlerTest.php
 mode change 100644 => 100755 app/code/Magento/ProductVideo/Test/Unit/Model/Plugin/Catalog/Product/Gallery/ReadHandlerTest.php
 mode change 100644 => 100755 app/code/Magento/ProductVideo/Test/Unit/Model/Product/Attribute/Media/ExternalVideoEntryConverterTest.php
 mode change 100644 => 100755 app/code/Magento/ProductVideo/Test/Unit/Model/Product/Attribute/Media/VideoEntryTest.php
 mode change 100644 => 100755 app/code/Magento/ProductVideo/Test/Unit/Observer/ChangeTemplateObserverTest.php
 mode change 100644 => 100755 app/code/Magento/ProductVideo/composer.json
 mode change 100644 => 100755 app/code/Magento/ProductVideo/etc/adminhtml/events.xml
 mode change 100644 => 100755 app/code/Magento/ProductVideo/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/ProductVideo/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/ProductVideo/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/ProductVideo/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/ProductVideo/etc/extension_attributes.xml
 mode change 100644 => 100755 app/code/Magento/ProductVideo/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/ProductVideo/i18n/de_DE.csv
 mode change 100644 => 100755 app/code/Magento/ProductVideo/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/ProductVideo/i18n/es_ES.csv
 mode change 100644 => 100755 app/code/Magento/ProductVideo/i18n/fr_FR.csv
 mode change 100644 => 100755 app/code/Magento/ProductVideo/i18n/nl_NL.csv
 mode change 100644 => 100755 app/code/Magento/ProductVideo/i18n/pt_BR.csv
 mode change 100644 => 100755 app/code/Magento/ProductVideo/i18n/zh_Hans_CN.csv
 mode change 100644 => 100755 app/code/Magento/ProductVideo/registration.php
 mode change 100644 => 100755 app/code/Magento/ProductVideo/view/adminhtml/layout/catalog_product_new.xml
 mode change 100644 => 100755 app/code/Magento/ProductVideo/view/adminhtml/requirejs-config.js
 mode change 100644 => 100755 app/code/Magento/ProductVideo/view/adminhtml/templates/product/edit/base_image.phtml
 mode change 100644 => 100755 app/code/Magento/ProductVideo/view/adminhtml/templates/product/edit/slideout/form.phtml
 mode change 100644 => 100755 app/code/Magento/ProductVideo/view/adminhtml/ui_component/product_form.xml
 mode change 100644 => 100755 app/code/Magento/ProductVideo/view/adminhtml/web/images/camera.png
 mode change 100644 => 100755 app/code/Magento/ProductVideo/view/adminhtml/web/images/gallery-sprite.png
 mode change 100644 => 100755 app/code/Magento/ProductVideo/view/adminhtml/web/js/get-video-information.js
 mode change 100644 => 100755 app/code/Magento/ProductVideo/view/adminhtml/web/js/new-video-dialog.js
 mode change 100644 => 100755 app/code/Magento/ProductVideo/view/adminhtml/web/js/video-modal.js
 mode change 100644 => 100755 app/code/Magento/ProductVideo/view/frontend/layout/catalog_product_view.xml
 mode change 100644 => 100755 app/code/Magento/ProductVideo/view/frontend/requirejs-config.js
 mode change 100644 => 100755 app/code/Magento/ProductVideo/view/frontend/templates/product/view/gallery.phtml
 mode change 100644 => 100755 app/code/Magento/ProductVideo/view/frontend/web/img/gallery-sprite.png
 mode change 100644 => 100755 app/code/Magento/ProductVideo/view/frontend/web/js/fotorama-add-video-events.js
 mode change 100644 => 100755 app/code/Magento/ProductVideo/view/frontend/web/js/load-player.js
 mode change 100644 => 100755 app/code/Magento/Quote/Api/BillingAddressManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Quote/Api/CartItemRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Quote/Api/CartManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Quote/Api/CartRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Quote/Api/CartTotalManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Quote/Api/CartTotalRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Quote/Api/CouponManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Quote/Api/Data/AddressAdditionalDataInterface.php
 mode change 100644 => 100755 app/code/Magento/Quote/Api/Data/AddressInterface.php
 mode change 100644 => 100755 app/code/Magento/Quote/Api/Data/CartInterface.php
 mode change 100644 => 100755 app/code/Magento/Quote/Api/Data/CartItemInterface.php
 mode change 100644 => 100755 app/code/Magento/Quote/Api/Data/CartSearchResultsInterface.php
 mode change 100644 => 100755 app/code/Magento/Quote/Api/Data/CurrencyInterface.php
 mode change 100644 => 100755 app/code/Magento/Quote/Api/Data/EstimateAddressInterface.php
 mode change 100644 => 100755 app/code/Magento/Quote/Api/Data/PaymentInterface.php
 mode change 100644 => 100755 app/code/Magento/Quote/Api/Data/PaymentMethodInterface.php
 mode change 100644 => 100755 app/code/Magento/Quote/Api/Data/ProductOptionInterface.php
 mode change 100644 => 100755 app/code/Magento/Quote/Api/Data/ShippingAssignmentInterface.php
 mode change 100644 => 100755 app/code/Magento/Quote/Api/Data/ShippingInterface.php
 mode change 100644 => 100755 app/code/Magento/Quote/Api/Data/ShippingMethodInterface.php
 mode change 100644 => 100755 app/code/Magento/Quote/Api/Data/TotalSegmentInterface.php
 mode change 100644 => 100755 app/code/Magento/Quote/Api/Data/TotalsAdditionalDataInterface.php
 mode change 100644 => 100755 app/code/Magento/Quote/Api/Data/TotalsInterface.php
 mode change 100644 => 100755 app/code/Magento/Quote/Api/Data/TotalsItemInterface.php
 mode change 100644 => 100755 app/code/Magento/Quote/Api/GuestBillingAddressManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Quote/Api/GuestCartItemRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Quote/Api/GuestCartManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Quote/Api/GuestCartRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Quote/Api/GuestCartTotalManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Quote/Api/GuestCartTotalRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Quote/Api/GuestCouponManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Quote/Api/GuestPaymentMethodManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Quote/Api/GuestShipmentEstimationInterface.php
 mode change 100644 => 100755 app/code/Magento/Quote/Api/GuestShippingMethodManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Quote/Api/PaymentMethodManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Quote/Api/ShipmentEstimationInterface.php
 mode change 100644 => 100755 app/code/Magento/Quote/Api/ShippingMethodManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Quote/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Quote/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Quote/Model/AddressAdditionalData.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/AddressAdditionalDataProcessor.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/BillingAddressManagement.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Cart/CartTotalManagement.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Cart/CartTotalRepository.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Cart/Currency.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Cart/ShippingMethod.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Cart/ShippingMethodConverter.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Cart/TotalSegment.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Cart/Totals.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Cart/Totals/Item.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Cart/Totals/ItemConverter.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Cart/TotalsAdditionalData.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Cart/TotalsAdditionalDataProcessor.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Cart/TotalsConverter.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/CouponManagement.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/CustomerManagement.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/EstimateAddress.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/GuestCart/GuestBillingAddressManagement.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/GuestCart/GuestCartItemRepository.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/GuestCart/GuestCartManagement.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/GuestCart/GuestCartRepository.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/GuestCart/GuestCartTotalManagement.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/GuestCart/GuestCartTotalRepository.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/GuestCart/GuestCouponManagement.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/GuestCart/GuestPaymentMethodManagement.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/GuestCart/GuestShippingAddressManagement.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/GuestCart/GuestShippingAddressManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/GuestCart/GuestShippingMethodManagement.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/GuestCart/GuestShippingMethodManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/GuestCartManagement/Plugin/Authorization.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/PaymentMethodManagement.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Product/Plugin/RemoveQuoteItems.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Product/Plugin/UpdateQuoteItems.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Product/QuoteItemsCleaner.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Product/QuoteItemsCleanerInterface.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/QueryResolver.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/Address.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/Address/BillingAddressPersister.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/Address/CustomAttributeList.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/Address/CustomAttributeListInterface.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/Address/FreeShipping.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/Address/FreeShippingInterface.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/Address/Item.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/Address/Rate.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/Address/RateCollectorInterface.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/Address/RateCollectorInterfaceFactory.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/Address/RateRequest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/Address/RateResult/AbstractResult.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/Address/RateResult/Error.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/Address/RateResult/Method.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/Address/Relation.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/Address/ToOrder.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/Address/ToOrderAddress.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/Address/Total.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/Address/Total/AbstractTotal.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/Address/Total/Collector.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/Address/Total/CollectorInterface.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/Address/Total/Grand.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/Address/Total/ReaderInterface.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/Address/Total/Shipping.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/Address/Total/Subtotal.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/Address/TotalFactory.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/Address/Validator.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/Config.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/Item.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/Item/AbstractItem.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/Item/CartItemOptionsProcessor.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/Item/CartItemPersister.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/Item/CartItemProcessorInterface.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/Item/CartItemProcessorsPool.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/Item/Compare.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/Item/Option.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/Item/Processor.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/Item/RelatedProducts.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/Item/Repository.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/Item/ToOrderItem.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/Item/Updater.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/Payment.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/Payment/ToOrderPayment.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/ProductOption.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/Relation.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/ShippingAssignment/ShippingAssignmentPersister.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/ShippingAssignment/ShippingAssignmentProcessor.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/ShippingAssignment/ShippingProcessor.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/TotalsCollector.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/TotalsCollectorList.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/TotalsReader.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Quote/Validator/MinimumOrderAmount/ValidationMessage.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/QuoteAddressValidator.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/QuoteIdMask.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/QuoteManagement.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/QuoteRepository.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/QuoteRepository/LoadHandler.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/QuoteRepository/Plugin/AccessChangeQuoteControl.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/QuoteRepository/Plugin/Authorization.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/QuoteRepository/SaveHandler.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/QuoteValidator.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/ResourceModel/Quote.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/ResourceModel/Quote/Address.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Backend.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Backend/Child.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Backend/Region.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Frontend.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Frontend/Custbalance.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Frontend/Discount.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Frontend/Grand.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Frontend/Shipping.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Frontend/Subtotal.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Frontend/Tax.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Collection.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Item.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Item/Collection.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Rate.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Rate/Collection.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/ResourceModel/Quote/Collection.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/ResourceModel/Quote/Item.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/ResourceModel/Quote/Item/Collection.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/ResourceModel/Quote/Item/Option.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/ResourceModel/Quote/Item/Option/Collection.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/ResourceModel/Quote/Payment.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/ResourceModel/Quote/Payment/Collection.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/ResourceModel/Quote/QuoteIdMask.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Shipping.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/ShippingAddressAssignment.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/ShippingAddressManagement.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/ShippingAddressManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/ShippingAssignment.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/ShippingMethodManagement.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/ShippingMethodManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Quote/Model/Webapi/ParamOverriderCartId.php
 mode change 100644 => 100755 app/code/Magento/Quote/Observer/Backend/CustomerQuoteObserver.php
 mode change 100644 => 100755 app/code/Magento/Quote/Observer/Frontend/Quote/Address/CollectTotalsObserver.php
 mode change 100644 => 100755 app/code/Magento/Quote/Observer/Frontend/Quote/Address/VatValidator.php
 mode change 100644 => 100755 app/code/Magento/Quote/Observer/Webapi/SubmitObserver.php
 mode change 100644 => 100755 app/code/Magento/Quote/README.md
 mode change 100644 => 100755 app/code/Magento/Quote/Setup/ConvertSerializedDataToJson.php
 mode change 100644 => 100755 app/code/Magento/Quote/Setup/InstallData.php
 mode change 100644 => 100755 app/code/Magento/Quote/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/Quote/Setup/QuoteSetup.php
 mode change 100644 => 100755 app/code/Magento/Quote/Setup/UpgradeData.php
 mode change 100644 => 100755 app/code/Magento/Quote/Setup/UpgradeSchema.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/BillingAddressManagementTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/Cart/CartTotalManagementTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/Cart/CartTotalRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/Cart/ShippingMethodConverterTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/Cart/Totals/ItemConverterTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/CouponManagementTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/CustomerManagementTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestBillingAddressManagementTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestCartItemRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestCartManagementTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestCartRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestCartTestHelper.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestCartTotalRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestCouponManagementTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestPaymentMethodManagementTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestShippingAddressManagementTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestShippingMethodManagementTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/GuestCartManagement/Plugin/AuthorizationTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/PaymentMethodManagementTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/Product/Plugin/RemoveQuoteItemsTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/Product/Plugin/UpdateQuoteItemsTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/Product/QuoteItemsCleanerTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/QueryResolverTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/Quote/Address/RelationTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/Quote/Address/ToOrderAddressTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/Quote/Address/ToOrderTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/Quote/Address/Total/GrandTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/Quote/Address/Total/ShippingTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/Quote/Address/Total/SubtotalTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/Quote/Address/TotalTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/Quote/Address/ValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/Quote/AddressTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/Quote/ConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/Quote/Item/AbstractItemTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/Quote/Item/CompareTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/Quote/Item/ProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/Quote/Item/RelatedProductsTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/Quote/Item/RepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/Quote/Item/ToOrderItemTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/Quote/Item/UpdaterTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/Quote/ItemTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/Quote/Payment/ToOrderPaymentTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/Quote/PaymentTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/Quote/RelationTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/Quote/ShippingAssignment/ShippingAssignmentProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/Quote/ShippingAssignment/ShippingProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/Quote/TotalsReaderTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/Quote/Validator/MinimumOrderAmount/ValidationMessageTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/QuoteAddressValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/QuoteIdMaskTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/QuoteManagementTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/QuoteRepository/Plugin/AccessChangeQuoteControlTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/QuoteRepository/Plugin/AuthorizationTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/QuoteRepository/SaveHandlerTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/QuoteRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/QuoteTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/QuoteValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/ResourceModel/Quote/Item/CollectionTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/ResourceModel/Quote/ItemTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/ResourceModel/Quote/QuoteAddressTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/ResourceModel/QuoteTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/ShippingAddressAssignmentTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/ShippingAddressManagementTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/ShippingMethodManagementTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Model/Webapi/ParamOverriderCartIdTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Observer/Backend/CustomerQuoteObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Observer/Frontend/Quote/Address/CollectTotalsObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Observer/Frontend/Quote/Address/VatValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/Test/Unit/Observer/Webapi/SubmitObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Quote/composer.json
 mode change 100644 => 100755 app/code/Magento/Quote/etc/acl.xml
 mode change 100644 => 100755 app/code/Magento/Quote/etc/adminhtml/events.xml
 mode change 100644 => 100755 app/code/Magento/Quote/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Quote/etc/events.xml
 mode change 100644 => 100755 app/code/Magento/Quote/etc/extension_attributes.xml
 mode change 100644 => 100755 app/code/Magento/Quote/etc/fieldset.xml
 mode change 100644 => 100755 app/code/Magento/Quote/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Quote/etc/sales.xml
 mode change 100644 => 100755 app/code/Magento/Quote/etc/webapi.xml
 mode change 100644 => 100755 app/code/Magento/Quote/etc/webapi_rest/di.xml
 mode change 100644 => 100755 app/code/Magento/Quote/etc/webapi_rest/events.xml
 mode change 100644 => 100755 app/code/Magento/Quote/etc/webapi_soap/di.xml
 mode change 100644 => 100755 app/code/Magento/Quote/etc/webapi_soap/events.xml
 mode change 100644 => 100755 app/code/Magento/Quote/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Quote/registration.php
 mode change 100644 => 100755 app/code/Magento/QuoteAnalytics/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/QuoteAnalytics/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/QuoteAnalytics/README.md
 mode change 100644 => 100755 app/code/Magento/QuoteAnalytics/composer.json
 mode change 100644 => 100755 app/code/Magento/QuoteAnalytics/etc/analytics.xml
 mode change 100644 => 100755 app/code/Magento/QuoteAnalytics/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/QuoteAnalytics/etc/reports.xml
 mode change 100644 => 100755 app/code/Magento/QuoteAnalytics/registration.php
 mode change 100644 => 100755 app/code/Magento/ReleaseNotification/Controller/Adminhtml/Notification/MarkUserNotified.php
 mode change 100644 => 100755 app/code/Magento/ReleaseNotification/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/ReleaseNotification/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/ReleaseNotification/Model/Condition/CanViewNotification.php
 mode change 100644 => 100755 app/code/Magento/ReleaseNotification/Model/ResourceModel/Viewer/Logger.php
 mode change 100644 => 100755 app/code/Magento/ReleaseNotification/Model/Viewer/Log.php
 mode change 100644 => 100755 app/code/Magento/ReleaseNotification/README.md
 mode change 100644 => 100755 app/code/Magento/ReleaseNotification/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/ReleaseNotification/Test/Unit/Controller/Notification/MarkUserNotifiedTest.php
 mode change 100644 => 100755 app/code/Magento/ReleaseNotification/Test/Unit/Model/Condition/CanViewNotificationTest.php
 mode change 100644 => 100755 app/code/Magento/ReleaseNotification/Ui/DataProvider/DataProvider.php
 mode change 100644 => 100755 app/code/Magento/ReleaseNotification/composer.json
 mode change 100644 => 100755 app/code/Magento/ReleaseNotification/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/ReleaseNotification/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/ReleaseNotification/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/ReleaseNotification/registration.php
 mode change 100644 => 100755 app/code/Magento/ReleaseNotification/view/adminhtml/layout/adminhtml_dashboard_index.xml
 mode change 100644 => 100755 app/code/Magento/ReleaseNotification/view/adminhtml/ui_component/release_notification.xml
 mode change 100644 => 100755 app/code/Magento/ReleaseNotification/view/adminhtml/web/js/modal/component.js
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Config/Form/Field/MtdStart.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Config/Form/Field/YtdStart.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Customer/Accounts.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Customer/Orders.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Customer/Totals.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Filter/Form.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Grid.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Grid/AbstractGrid.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Grid/Column/Renderer/Blanknumber.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Grid/Column/Renderer/Currency.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Grid/Column/Renderer/Customer.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Grid/Column/Renderer/Product.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Grid/Shopcart.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Product.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Product/Downloads.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Product/Downloads/Grid.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Product/Downloads/Renderer/Purchases.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Product/Lowstock.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Product/Lowstock/Grid.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Product/Sold.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Product/Viewed.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Product/Viewed/Grid.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Refresh/Statistics.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Review/Customer.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Review/Detail.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Review/Detail/Grid.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Review/Product.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Sales/Bestsellers.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Sales/Bestsellers/Grid.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Sales/Coupons.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Sales/Coupons/Grid.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Sales/Grid/Column/Renderer/Date.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Sales/Invoiced.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Sales/Invoiced/Grid.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Sales/Refunded.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Sales/Refunded/Grid.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Sales/Sales.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Sales/Sales/Grid.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Sales/Shipping.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Sales/Shipping/Grid.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Sales/Tax.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Sales/Tax/Grid.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Shopcart/Abandoned.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Shopcart/Abandoned/Grid.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Shopcart/Customer.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Shopcart/Customer/Grid.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Shopcart/Product.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Shopcart/Product/Grid.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Wishlist.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Adminhtml/Wishlist/Grid.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Product/AbstractProduct.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Product/Compared.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Product/Viewed.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Product/Widget/Compared.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Product/Widget/Viewed.php
 mode change 100644 => 100755 app/code/Magento/Reports/Block/Product/Widget/Viewed/Item.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Index.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/AbstractReport.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Customer.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/Accounts.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/ExportAccountsCsv.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/ExportAccountsExcel.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/ExportOrdersCsv.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/ExportOrdersExcel.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/ExportTotalsCsv.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/ExportTotalsExcel.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/Orders.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/Totals.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Product.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Product/Downloads.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportDownloadsCsv.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportDownloadsExcel.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportLowstockCsv.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportLowstockExcel.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportSoldCsv.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportSoldExcel.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportViewedCsv.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportViewedExcel.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Product/Lowstock.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Product/Sold.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Product/Viewed.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Review.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Review/Customer.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Review/ExportCustomerCsv.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Review/ExportCustomerExcel.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Review/ExportProductCsv.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Review/ExportProductDetailCsv.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Review/ExportProductDetailExcel.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Review/ExportProductExcel.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Review/Product.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Review/ProductDetail.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Sales.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/Bestsellers.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/Coupons.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportBestsellersCsv.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportBestsellersExcel.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportCouponsCsv.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportCouponsExcel.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportInvoicedCsv.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportInvoicedExcel.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportRefundedCsv.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportRefundedExcel.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportSalesCsv.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportSalesExcel.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportShippingCsv.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportShippingExcel.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportTaxCsv.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportTaxExcel.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/Invoiced.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/RefreshLifetime.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/RefreshRecent.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/RefreshStatistics.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/Refunded.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/Sales.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/Shipping.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/Tax.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/Abandoned.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/Customer.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/ExportAbandonedCsv.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/ExportAbandonedExcel.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/ExportCustomerCsv.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/ExportCustomerExcel.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/ExportProductCsv.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/ExportProductExcel.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/Product.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Statistics.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Statistics/Index.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Statistics/RefreshLifetime.php
 mode change 100644 => 100755 app/code/Magento/Reports/Controller/Adminhtml/Report/Statistics/RefreshRecent.php
 mode change 100644 => 100755 app/code/Magento/Reports/Helper/Data.php
 mode change 100644 => 100755 app/code/Magento/Reports/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Reports/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Reports/Model/Config.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/Event.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/Event/Type.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/Flag.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/Grouped/Collection.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/Item.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/Plugin/Log.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/Product/Index/AbstractIndex.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/Product/Index/Compared.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/Product/Index/Factory.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/Product/Index/Viewed.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/ResourceModel/Accounts/Collection.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/ResourceModel/Accounts/Collection/Initial.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/ResourceModel/Customer/Collection.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/ResourceModel/Customer/Orders/Collection.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/ResourceModel/Customer/Orders/Collection/Initial.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/ResourceModel/Customer/Totals/Collection.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/ResourceModel/Customer/Totals/Collection/Initial.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/ResourceModel/Event.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/ResourceModel/Event/Collection.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/ResourceModel/Event/Type.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/ResourceModel/Event/Type/Collection.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/ResourceModel/Helper.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/ResourceModel/HelperInterface.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/ResourceModel/Order/Collection.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/ResourceModel/Product/Collection.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/ResourceModel/Product/Downloads/Collection.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/ResourceModel/Product/Index/AbstractIndex.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/ResourceModel/Product/Index/Collection/AbstractCollection.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/ResourceModel/Product/Index/Compared.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/ResourceModel/Product/Index/Compared/Collection.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/ResourceModel/Product/Index/Viewed.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/ResourceModel/Product/Index/Viewed/Collection.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/ResourceModel/Product/Lowstock/Collection.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/ResourceModel/Product/Sold/Collection.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/ResourceModel/Product/Sold/Collection/Initial.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/ResourceModel/Quote/Collection.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/ResourceModel/Quote/CollectionFactory.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/ResourceModel/Quote/CollectionFactoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/ResourceModel/Quote/Item/Collection.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/ResourceModel/Refresh/Collection.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/ResourceModel/Report/AbstractReport.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/ResourceModel/Report/Collection.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/ResourceModel/Report/Collection/AbstractCollection.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/ResourceModel/Report/Collection/Factory.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/ResourceModel/Report/Product/Viewed.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/ResourceModel/Report/Product/Viewed/Collection.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/ResourceModel/Review/Collection.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/ResourceModel/Review/Customer/Collection.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/ResourceModel/Review/Product/Collection.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/ResourceModel/Wishlist/Collection.php
 mode change 100644 => 100755 app/code/Magento/Reports/Model/ResourceModel/Wishlist/Product/Collection.php
 mode change 100644 => 100755 app/code/Magento/Reports/Observer/CatalogProductCompareAddProductObserver.php
 mode change 100644 => 100755 app/code/Magento/Reports/Observer/CatalogProductCompareClearObserver.php
 mode change 100644 => 100755 app/code/Magento/Reports/Observer/CatalogProductViewObserver.php
 mode change 100644 => 100755 app/code/Magento/Reports/Observer/CheckoutCartAddProductObserver.php
 mode change 100644 => 100755 app/code/Magento/Reports/Observer/CustomerLoginObserver.php
 mode change 100644 => 100755 app/code/Magento/Reports/Observer/CustomerLogoutObserver.php
 mode change 100644 => 100755 app/code/Magento/Reports/Observer/EventSaver.php
 mode change 100644 => 100755 app/code/Magento/Reports/Observer/SendfriendProductObserver.php
 mode change 100644 => 100755 app/code/Magento/Reports/Observer/WishlistAddProductObserver.php
 mode change 100644 => 100755 app/code/Magento/Reports/Observer/WishlistShareObserver.php
 mode change 100644 => 100755 app/code/Magento/Reports/README.md
 mode change 100644 => 100755 app/code/Magento/Reports/Setup/InstallData.php
 mode change 100644 => 100755 app/code/Magento/Reports/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/Reports/Setup/Recurring.php
 mode change 100644 => 100755 app/code/Magento/Reports/Test/Unit/Block/Adminhtml/Grid/AbstractGridTest.php
 mode change 100644 => 100755 app/code/Magento/Reports/Test/Unit/Block/Adminhtml/Sales/Grid/Column/Renderer/DateTest.php
 mode change 100644 => 100755 app/code/Magento/Reports/Test/Unit/Block/Product/ComparedTest.php
 mode change 100644 => 100755 app/code/Magento/Reports/Test/Unit/Block/Product/ViewedTest.php
 mode change 100644 => 100755 app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/AbstractControllerTest.php
 mode change 100644 => 100755 app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/AccountsTest.php
 mode change 100644 => 100755 app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/ExportAccountsCsvTest.php
 mode change 100644 => 100755 app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/ExportAccountsExcelTest.php
 mode change 100644 => 100755 app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/ExportOrdersCsvTest.php
 mode change 100644 => 100755 app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/ExportOrdersExcelTest.php
 mode change 100644 => 100755 app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/ExportTotalsCsvTest.php
 mode change 100644 => 100755 app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/ExportTotalsExcelTest.php
 mode change 100644 => 100755 app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/OrdersTest.php
 mode change 100644 => 100755 app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/TotalsTest.php
 mode change 100644 => 100755 app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/DownloadsTest.php
 mode change 100644 => 100755 app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportDownloadsCsvTest.php
 mode change 100644 => 100755 app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportDownloadsExcelTest.php
 mode change 100644 => 100755 app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportLowstockCsvTest.php
 mode change 100644 => 100755 app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportLowstockExcelTest.php
 mode change 100644 => 100755 app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportSoldCsvTest.php
 mode change 100644 => 100755 app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportSoldExcelTest.php
 mode change 100644 => 100755 app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportViewedCsvTest.php
 mode change 100644 => 100755 app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportViewedExcelTest.php
 mode change 100644 => 100755 app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/LowstockTest.php
 mode change 100644 => 100755 app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/SoldTest.php
 mode change 100644 => 100755 app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ViewedTest.php
 mode change 100644 => 100755 app/code/Magento/Reports/Test/Unit/Helper/DataTest.php
 mode change 100644 => 100755 app/code/Magento/Reports/Test/Unit/Model/Plugin/LogTest.php
 mode change 100644 => 100755 app/code/Magento/Reports/Test/Unit/Model/Product/Index/ComparedTest.php
 mode change 100644 => 100755 app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Event/CollectionTest.php
 mode change 100644 => 100755 app/code/Magento/Reports/Test/Unit/Model/ResourceModel/EventTest.php
 mode change 100644 => 100755 app/code/Magento/Reports/Test/Unit/Model/ResourceModel/HelperTest.php
 mode change 100644 => 100755 app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Order/CollectionTest.php
 mode change 100644 => 100755 app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Product/CollectionTest.php
 mode change 100644 => 100755 app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Product/Sold/Collection/CollectionTest.php
 mode change 100644 => 100755 app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Quote/CollectionTest.php
 mode change 100644 => 100755 app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Report/Collection/AbstractCollectionTest.php
 mode change 100644 => 100755 app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Report/CollectionTest.php
 mode change 100644 => 100755 app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Report/Product/ViewedTest.php
 mode change 100644 => 100755 app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Report/Quote/CollectionTest.php
 mode change 100644 => 100755 app/code/Magento/Reports/Test/Unit/Observer/CatalogProductCompareAddProductObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Reports/Test/Unit/Observer/CatalogProductViewObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Reports/Test/Unit/Observer/CustomerLoginObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Reports/Test/Unit/Observer/CustomerLogoutObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Reports/composer.json
 mode change 100644 => 100755 app/code/Magento/Reports/etc/acl.xml
 mode change 100644 => 100755 app/code/Magento/Reports/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/Reports/etc/adminhtml/menu.xml
 mode change 100644 => 100755 app/code/Magento/Reports/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/Reports/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/Reports/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/Reports/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Reports/etc/frontend/events.xml
 mode change 100644 => 100755 app/code/Magento/Reports/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Reports/etc/webapi_rest/events.xml
 mode change 100644 => 100755 app/code/Magento/Reports/etc/webapi_soap/events.xml
 mode change 100644 => 100755 app/code/Magento/Reports/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Reports/registration.php
 mode change 100644 => 100755 app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_accounts.xml
 mode change 100644 => 100755 app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_accounts_grid.xml
 mode change 100644 => 100755 app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_exportaccountscsv.xml
 mode change 100644 => 100755 app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_exportaccountsexcel.xml
 mode change 100644 => 100755 app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_exportorderscsv.xml
 mode change 100644 => 100755 app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_exportordersexcel.xml
 mode change 100644 => 100755 app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_exporttotalscsv.xml
 mode change 100644 => 100755 app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_exporttotalsexcel.xml
 mode change 100644 => 100755 app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_orders.xml
 mode change 100644 => 100755 app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_orders_grid.xml
 mode change 100644 => 100755 app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_totals.xml
 mode change 100644 => 100755 app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_totals_grid.xml
 mode change 100644 => 100755 app/code/Magento/Reports/view/adminhtml/layout/reports_report_grid.xml
 mode change 100644 => 100755 app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_downloads.xml
 mode change 100644 => 100755 app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_exportlowstockcsv.xml
 mode change 100644 => 100755 app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_exportlowstockexcel.xml
 mode change 100644 => 100755 app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_exportsoldcsv.xml
 mode change 100644 => 100755 app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_exportsoldexcel.xml
 mode change 100644 => 100755 app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_lowstock.xml
 mode change 100644 => 100755 app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_lowstock_grid.xml
 mode change 100644 => 100755 app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_sold.xml
 mode change 100644 => 100755 app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_sold_grid.xml
 mode change 100644 => 100755 app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_viewed.xml
 mode change 100644 => 100755 app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_customer.xml
 mode change 100644 => 100755 app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_customer_grid.xml
 mode change 100644 => 100755 app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_exportcustomercsv.xml
 mode change 100644 => 100755 app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_exportcustomerexcel.xml
 mode change 100644 => 100755 app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_exportproductcsv.xml
 mode change 100644 => 100755 app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_exportproductexcel.xml
 mode change 100644 => 100755 app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_product.xml
 mode change 100644 => 100755 app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_product_grid.xml
 mode change 100644 => 100755 app/code/Magento/Reports/view/adminhtml/layout/reports_report_sales_bestsellers.xml
 mode change 100644 => 100755 app/code/Magento/Reports/view/adminhtml/layout/reports_report_sales_coupons.xml
 mode change 100644 => 100755 app/code/Magento/Reports/view/adminhtml/layout/reports_report_sales_invoiced.xml
 mode change 100644 => 100755 app/code/Magento/Reports/view/adminhtml/layout/reports_report_sales_refunded.xml
 mode change 100644 => 100755 app/code/Magento/Reports/view/adminhtml/layout/reports_report_sales_sales.xml
 mode change 100644 => 100755 app/code/Magento/Reports/view/adminhtml/layout/reports_report_sales_shipping.xml
 mode change 100644 => 100755 app/code/Magento/Reports/view/adminhtml/layout/reports_report_sales_tax.xml
 mode change 100644 => 100755 app/code/Magento/Reports/view/adminhtml/layout/reports_report_shopcart_abandoned.xml
 mode change 100644 => 100755 app/code/Magento/Reports/view/adminhtml/layout/reports_report_statistics_index.xml
 mode change 100644 => 100755 app/code/Magento/Reports/view/adminhtml/layout/reports_sales.xml
 mode change 100644 => 100755 app/code/Magento/Reports/view/adminhtml/templates/grid.phtml
 mode change 100644 => 100755 app/code/Magento/Reports/view/adminhtml/templates/report/grid/container.phtml
 mode change 100644 => 100755 app/code/Magento/Reports/view/adminhtml/templates/report/refresh/statistics.phtml
 mode change 100644 => 100755 app/code/Magento/Reports/view/adminhtml/templates/report/wishlist.phtml
 mode change 100644 => 100755 app/code/Magento/Reports/view/adminhtml/templates/store/switcher.phtml
 mode change 100644 => 100755 app/code/Magento/Reports/view/adminhtml/templates/store/switcher/enhanced.phtml
 mode change 100644 => 100755 app/code/Magento/Reports/view/adminhtml/web/images/product_widget_compared.gif
 mode change 100644 => 100755 app/code/Magento/Reports/view/adminhtml/web/images/product_widget_viewed.gif
 mode change 100644 => 100755 app/code/Magento/Reports/view/frontend/layout/default.xml
 mode change 100644 => 100755 app/code/Magento/Reports/view/frontend/layout/print.xml
 mode change 100644 => 100755 app/code/Magento/Reports/view/frontend/requirejs-config.js
 mode change 100644 => 100755 app/code/Magento/Reports/view/frontend/templates/js/components.phtml
 mode change 100644 => 100755 app/code/Magento/Reports/view/frontend/templates/product/widget/viewed.phtml
 mode change 100644 => 100755 app/code/Magento/Reports/view/frontend/templates/product/widget/viewed/item.phtml
 mode change 100644 => 100755 app/code/Magento/Reports/view/frontend/templates/widget/compared/column/compared_default_list.phtml
 mode change 100644 => 100755 app/code/Magento/Reports/view/frontend/templates/widget/compared/column/compared_images_list.phtml
 mode change 100644 => 100755 app/code/Magento/Reports/view/frontend/templates/widget/compared/column/compared_names_list.phtml
 mode change 100644 => 100755 app/code/Magento/Reports/view/frontend/templates/widget/compared/content/compared_grid.phtml
 mode change 100644 => 100755 app/code/Magento/Reports/view/frontend/templates/widget/compared/content/compared_list.phtml
 mode change 100644 => 100755 app/code/Magento/Reports/view/frontend/templates/widget/viewed/column/viewed_default_list.phtml
 mode change 100644 => 100755 app/code/Magento/Reports/view/frontend/templates/widget/viewed/column/viewed_images_list.phtml
 mode change 100644 => 100755 app/code/Magento/Reports/view/frontend/templates/widget/viewed/column/viewed_names_list.phtml
 mode change 100644 => 100755 app/code/Magento/Reports/view/frontend/templates/widget/viewed/content/viewed_grid.phtml
 mode change 100644 => 100755 app/code/Magento/Reports/view/frontend/templates/widget/viewed/content/viewed_list.phtml
 mode change 100644 => 100755 app/code/Magento/Reports/view/frontend/web/js/recently-viewed.js
 mode change 100644 => 100755 app/code/Magento/RequireJs/Block/Html/Head/Config.php
 mode change 100644 => 100755 app/code/Magento/RequireJs/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/RequireJs/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/RequireJs/Model/FileManager.php
 mode change 100644 => 100755 app/code/Magento/RequireJs/README.md
 mode change 100644 => 100755 app/code/Magento/RequireJs/Test/Unit/Block/Html/Head/ConfigTest.php
 mode change 100644 => 100755 app/code/Magento/RequireJs/Test/Unit/Model/FileManagerTest.php
 mode change 100644 => 100755 app/code/Magento/RequireJs/composer.json
 mode change 100644 => 100755 app/code/Magento/RequireJs/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/RequireJs/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/RequireJs/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/RequireJs/registration.php
 mode change 100644 => 100755 app/code/Magento/Review/Block/Adminhtml/Add.php
 mode change 100644 => 100755 app/code/Magento/Review/Block/Adminhtml/Add/Form.php
 mode change 100644 => 100755 app/code/Magento/Review/Block/Adminhtml/Edit.php
 mode change 100644 => 100755 app/code/Magento/Review/Block/Adminhtml/Edit/Form.php
 mode change 100644 => 100755 app/code/Magento/Review/Block/Adminhtml/Grid.php
 mode change 100644 => 100755 app/code/Magento/Review/Block/Adminhtml/Grid/Filter/Type.php
 mode change 100644 => 100755 app/code/Magento/Review/Block/Adminhtml/Grid/Renderer/Type.php
 mode change 100644 => 100755 app/code/Magento/Review/Block/Adminhtml/Main.php
 mode change 100644 => 100755 app/code/Magento/Review/Block/Adminhtml/Product/Edit/Tab.php
 mode change 100644 => 100755 app/code/Magento/Review/Block/Adminhtml/Product/Edit/Tab/Reviews.php
 mode change 100644 => 100755 app/code/Magento/Review/Block/Adminhtml/Product/Grid.php
 mode change 100644 => 100755 app/code/Magento/Review/Block/Adminhtml/Rating.php
 mode change 100644 => 100755 app/code/Magento/Review/Block/Adminhtml/Rating/Detailed.php
 mode change 100644 => 100755 app/code/Magento/Review/Block/Adminhtml/Rating/Edit.php
 mode change 100644 => 100755 app/code/Magento/Review/Block/Adminhtml/Rating/Edit/Form.php
 mode change 100644 => 100755 app/code/Magento/Review/Block/Adminhtml/Rating/Edit/Tab/Form.php
 mode change 100644 => 100755 app/code/Magento/Review/Block/Adminhtml/Rating/Edit/Tabs.php
 mode change 100644 => 100755 app/code/Magento/Review/Block/Adminhtml/Rating/Summary.php
 mode change 100644 => 100755 app/code/Magento/Review/Block/Adminhtml/ReviewTab.php
 mode change 100644 => 100755 app/code/Magento/Review/Block/Adminhtml/Rss.php
 mode change 100644 => 100755 app/code/Magento/Review/Block/Adminhtml/Rss/Grid/Link.php
 mode change 100644 => 100755 app/code/Magento/Review/Block/Customer/ListCustomer.php
 mode change 100644 => 100755 app/code/Magento/Review/Block/Customer/Recent.php
 mode change 100644 => 100755 app/code/Magento/Review/Block/Customer/View.php
 mode change 100644 => 100755 app/code/Magento/Review/Block/Form.php
 mode change 100644 => 100755 app/code/Magento/Review/Block/Form/Configure.php
 mode change 100644 => 100755 app/code/Magento/Review/Block/Product/Compare/ListCompare/Plugin/Review.php
 mode change 100644 => 100755 app/code/Magento/Review/Block/Product/Review.php
 mode change 100644 => 100755 app/code/Magento/Review/Block/Product/ReviewRenderer.php
 mode change 100644 => 100755 app/code/Magento/Review/Block/Product/View.php
 mode change 100644 => 100755 app/code/Magento/Review/Block/Product/View/ListView.php
 mode change 100644 => 100755 app/code/Magento/Review/Block/Product/View/Other.php
 mode change 100644 => 100755 app/code/Magento/Review/Block/Rating/Entity/Detailed.php
 mode change 100644 => 100755 app/code/Magento/Review/Block/View.php
 mode change 100644 => 100755 app/code/Magento/Review/Controller/Adminhtml/Product.php
 mode change 100644 => 100755 app/code/Magento/Review/Controller/Adminhtml/Product/Delete.php
 mode change 100644 => 100755 app/code/Magento/Review/Controller/Adminhtml/Product/Edit.php
 mode change 100644 => 100755 app/code/Magento/Review/Controller/Adminhtml/Product/Index.php
 mode change 100644 => 100755 app/code/Magento/Review/Controller/Adminhtml/Product/JsonProductInfo.php
 mode change 100644 => 100755 app/code/Magento/Review/Controller/Adminhtml/Product/MassDelete.php
 mode change 100644 => 100755 app/code/Magento/Review/Controller/Adminhtml/Product/MassUpdateStatus.php
 mode change 100644 => 100755 app/code/Magento/Review/Controller/Adminhtml/Product/MassVisibleIn.php
 mode change 100644 => 100755 app/code/Magento/Review/Controller/Adminhtml/Product/NewAction.php
 mode change 100644 => 100755 app/code/Magento/Review/Controller/Adminhtml/Product/Pending.php
 mode change 100644 => 100755 app/code/Magento/Review/Controller/Adminhtml/Product/Post.php
 mode change 100644 => 100755 app/code/Magento/Review/Controller/Adminhtml/Product/ProductGrid.php
 mode change 100644 => 100755 app/code/Magento/Review/Controller/Adminhtml/Product/RatingItems.php
 mode change 100644 => 100755 app/code/Magento/Review/Controller/Adminhtml/Product/ReviewGrid.php
 mode change 100644 => 100755 app/code/Magento/Review/Controller/Adminhtml/Product/Reviews/Grid.php
 mode change 100644 => 100755 app/code/Magento/Review/Controller/Adminhtml/Product/Save.php
 mode change 100644 => 100755 app/code/Magento/Review/Controller/Adminhtml/Rating.php
 mode change 100644 => 100755 app/code/Magento/Review/Controller/Adminhtml/Rating/Delete.php
 mode change 100644 => 100755 app/code/Magento/Review/Controller/Adminhtml/Rating/Edit.php
 mode change 100644 => 100755 app/code/Magento/Review/Controller/Adminhtml/Rating/Index.php
 mode change 100644 => 100755 app/code/Magento/Review/Controller/Adminhtml/Rating/NewAction.php
 mode change 100644 => 100755 app/code/Magento/Review/Controller/Adminhtml/Rating/Save.php
 mode change 100644 => 100755 app/code/Magento/Review/Controller/Customer.php
 mode change 100644 => 100755 app/code/Magento/Review/Controller/Customer/Index.php
 mode change 100644 => 100755 app/code/Magento/Review/Controller/Customer/View.php
 mode change 100644 => 100755 app/code/Magento/Review/Controller/Product.php
 mode change 100644 => 100755 app/code/Magento/Review/Controller/Product/ListAction.php
 mode change 100644 => 100755 app/code/Magento/Review/Controller/Product/ListAjax.php
 mode change 100644 => 100755 app/code/Magento/Review/Controller/Product/Post.php
 mode change 100644 => 100755 app/code/Magento/Review/Controller/Product/View.php
 mode change 100644 => 100755 app/code/Magento/Review/CustomerData/Review.php
 mode change 100644 => 100755 app/code/Magento/Review/Helper/Action/Pager.php
 mode change 100644 => 100755 app/code/Magento/Review/Helper/Data.php
 mode change 100644 => 100755 app/code/Magento/Review/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Review/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Review/Model/Rating.php
 mode change 100644 => 100755 app/code/Magento/Review/Model/Rating/Entity.php
 mode change 100644 => 100755 app/code/Magento/Review/Model/Rating/Option.php
 mode change 100644 => 100755 app/code/Magento/Review/Model/Rating/Option/Vote.php
 mode change 100644 => 100755 app/code/Magento/Review/Model/ResourceModel/Rating.php
 mode change 100644 => 100755 app/code/Magento/Review/Model/ResourceModel/Rating/Collection.php
 mode change 100644 => 100755 app/code/Magento/Review/Model/ResourceModel/Rating/Entity.php
 mode change 100644 => 100755 app/code/Magento/Review/Model/ResourceModel/Rating/Grid/Collection.php
 mode change 100644 => 100755 app/code/Magento/Review/Model/ResourceModel/Rating/Option.php
 mode change 100644 => 100755 app/code/Magento/Review/Model/ResourceModel/Rating/Option/Collection.php
 mode change 100644 => 100755 app/code/Magento/Review/Model/ResourceModel/Rating/Option/Vote.php
 mode change 100644 => 100755 app/code/Magento/Review/Model/ResourceModel/Rating/Option/Vote/Collection.php
 mode change 100644 => 100755 app/code/Magento/Review/Model/ResourceModel/Review.php
 mode change 100644 => 100755 app/code/Magento/Review/Model/ResourceModel/Review/Collection.php
 mode change 100644 => 100755 app/code/Magento/Review/Model/ResourceModel/Review/Product/Collection.php
 mode change 100644 => 100755 app/code/Magento/Review/Model/ResourceModel/Review/Status.php
 mode change 100644 => 100755 app/code/Magento/Review/Model/ResourceModel/Review/Status/Collection.php
 mode change 100644 => 100755 app/code/Magento/Review/Model/ResourceModel/Review/Summary.php
 mode change 100644 => 100755 app/code/Magento/Review/Model/ResourceModel/Review/Summary/Collection.php
 mode change 100644 => 100755 app/code/Magento/Review/Model/Review.php
 mode change 100644 => 100755 app/code/Magento/Review/Model/Review/Status.php
 mode change 100644 => 100755 app/code/Magento/Review/Model/Review/Summary.php
 mode change 100644 => 100755 app/code/Magento/Review/Model/Rss.php
 mode change 100644 => 100755 app/code/Magento/Review/Observer/CatalogBlockProductCollectionBeforeToHtmlObserver.php
 mode change 100644 => 100755 app/code/Magento/Review/Observer/ProcessProductAfterDeleteEventObserver.php
 mode change 100644 => 100755 app/code/Magento/Review/Observer/TagProductCollectionLoadAfterObserver.php
 mode change 100644 => 100755 app/code/Magento/Review/README.md
 mode change 100644 => 100755 app/code/Magento/Review/Setup/InstallData.php
 mode change 100644 => 100755 app/code/Magento/Review/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/Review/Test/Unit/Block/Adminhtml/MainTest.php
 mode change 100644 => 100755 app/code/Magento/Review/Test/Unit/Block/Adminhtml/Rating/Edit/Tab/FormTest.php
 mode change 100644 => 100755 app/code/Magento/Review/Test/Unit/Block/Adminhtml/Rss/Grid/LinkTest.php
 mode change 100644 => 100755 app/code/Magento/Review/Test/Unit/Block/Adminhtml/RssTest.php
 mode change 100644 => 100755 app/code/Magento/Review/Test/Unit/Block/Customer/RecentTest.php
 mode change 100644 => 100755 app/code/Magento/Review/Test/Unit/Block/FormTest.php
 mode change 100644 => 100755 app/code/Magento/Review/Test/Unit/Block/Product/ReviewTest.php
 mode change 100644 => 100755 app/code/Magento/Review/Test/Unit/Controller/Adminhtml/Product/PostTest.php
 mode change 100644 => 100755 app/code/Magento/Review/Test/Unit/Controller/Product/PostTest.php
 mode change 100644 => 100755 app/code/Magento/Review/Test/Unit/Helper/Action/PagerTest.php
 mode change 100644 => 100755 app/code/Magento/Review/Test/Unit/Model/RatingTest.php
 mode change 100644 => 100755 app/code/Magento/Review/Test/Unit/Model/ResourceModel/Review/CollectionTest.php
 mode change 100644 => 100755 app/code/Magento/Review/Test/Unit/Model/ResourceModel/Review/Product/CollectionTest.php
 mode change 100644 => 100755 app/code/Magento/Review/Test/Unit/Model/ResourceModel/Review/Summary/CollectionTest.php
 mode change 100644 => 100755 app/code/Magento/Review/Test/Unit/Model/ReviewTest.php
 mode change 100644 => 100755 app/code/Magento/Review/Test/Unit/Model/RssTest.php
 mode change 100644 => 100755 app/code/Magento/Review/Test/Unit/Ui/Component/Listing/Columns/ReviewActionsTest.php
 mode change 100644 => 100755 app/code/Magento/Review/Test/Unit/Ui/Component/Listing/Columns/StatusTest.php
 mode change 100644 => 100755 app/code/Magento/Review/Test/Unit/Ui/Component/Listing/Columns/TypeTest.php
 mode change 100644 => 100755 app/code/Magento/Review/Test/Unit/Ui/Component/Listing/Columns/VisibilityTest.php
 mode change 100644 => 100755 app/code/Magento/Review/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ReviewTest.php
 mode change 100644 => 100755 app/code/Magento/Review/Test/Unit/Ui/DataProvider/Product/ReviewDataProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Review/Ui/Component/Listing/Columns/ReviewActions.php
 mode change 100644 => 100755 app/code/Magento/Review/Ui/Component/Listing/Columns/Status.php
 mode change 100644 => 100755 app/code/Magento/Review/Ui/Component/Listing/Columns/Type.php
 mode change 100644 => 100755 app/code/Magento/Review/Ui/Component/Listing/Columns/Visibility.php
 mode change 100644 => 100755 app/code/Magento/Review/Ui/DataProvider/Product/Form/Modifier/Review.php
 mode change 100644 => 100755 app/code/Magento/Review/Ui/DataProvider/Product/Listing/Collector/Review.php
 mode change 100644 => 100755 app/code/Magento/Review/Ui/DataProvider/Product/ReviewDataProvider.php
 mode change 100644 => 100755 app/code/Magento/Review/composer.json
 mode change 100644 => 100755 app/code/Magento/Review/etc/acl.xml
 mode change 100644 => 100755 app/code/Magento/Review/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/Review/etc/adminhtml/events.xml
 mode change 100644 => 100755 app/code/Magento/Review/etc/adminhtml/menu.xml
 mode change 100644 => 100755 app/code/Magento/Review/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/Review/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/Review/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/Review/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Review/etc/extension_attributes.xml
 mode change 100644 => 100755 app/code/Magento/Review/etc/frontend/di.xml
 mode change 100644 => 100755 app/code/Magento/Review/etc/frontend/events.xml
 mode change 100644 => 100755 app/code/Magento/Review/etc/frontend/page_types.xml
 mode change 100644 => 100755 app/code/Magento/Review/etc/frontend/routes.xml
 mode change 100644 => 100755 app/code/Magento/Review/etc/frontend/sections.xml
 mode change 100644 => 100755 app/code/Magento/Review/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Review/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Review/registration.php
 mode change 100644 => 100755 app/code/Magento/Review/view/adminhtml/layout/catalog_product_new.xml
 mode change 100644 => 100755 app/code/Magento/Review/view/adminhtml/layout/rating_block.xml
 mode change 100644 => 100755 app/code/Magento/Review/view/adminhtml/layout/review_product_edit.xml
 mode change 100644 => 100755 app/code/Magento/Review/view/adminhtml/layout/review_product_index.xml
 mode change 100644 => 100755 app/code/Magento/Review/view/adminhtml/layout/review_product_reviews_grid.xml
 mode change 100644 => 100755 app/code/Magento/Review/view/adminhtml/layout/review_rating_edit.xml
 mode change 100644 => 100755 app/code/Magento/Review/view/adminhtml/layout/review_rating_index.xml
 mode change 100644 => 100755 app/code/Magento/Review/view/adminhtml/templates/add.phtml
 mode change 100644 => 100755 app/code/Magento/Review/view/adminhtml/templates/rating/detailed.phtml
 mode change 100644 => 100755 app/code/Magento/Review/view/adminhtml/templates/rating/form.phtml
 mode change 100644 => 100755 app/code/Magento/Review/view/adminhtml/templates/rating/options.phtml
 mode change 100644 => 100755 app/code/Magento/Review/view/adminhtml/templates/rating/stars/detailed.phtml
 mode change 100644 => 100755 app/code/Magento/Review/view/adminhtml/templates/rating/stars/summary.phtml
 mode change 100644 => 100755 app/code/Magento/Review/view/adminhtml/templates/rss/grid/link.phtml
 mode change 100644 => 100755 app/code/Magento/Review/view/adminhtml/ui_component/review_listing.xml
 mode change 100644 => 100755 app/code/Magento/Review/view/adminhtml/web/js/rating.js
 mode change 100644 => 100755 app/code/Magento/Review/view/base/ui_component/customer_form.xml
 mode change 100644 => 100755 app/code/Magento/Review/view/frontend/layout/catalog_product_view.xml
 mode change 100644 => 100755 app/code/Magento/Review/view/frontend/layout/checkout_cart_configure.xml
 mode change 100644 => 100755 app/code/Magento/Review/view/frontend/layout/customer_account.xml
 mode change 100644 => 100755 app/code/Magento/Review/view/frontend/layout/customer_account_index.xml
 mode change 100644 => 100755 app/code/Magento/Review/view/frontend/layout/review_customer_index.xml
 mode change 100644 => 100755 app/code/Magento/Review/view/frontend/layout/review_customer_view.xml
 mode change 100644 => 100755 app/code/Magento/Review/view/frontend/layout/review_product_form_component.xml
 mode change 100644 => 100755 app/code/Magento/Review/view/frontend/layout/review_product_list.xml
 mode change 100644 => 100755 app/code/Magento/Review/view/frontend/layout/review_product_listajax.xml
 mode change 100644 => 100755 app/code/Magento/Review/view/frontend/layout/review_product_view.xml
 mode change 100644 => 100755 app/code/Magento/Review/view/frontend/layout/wishlist_index_configure.xml
 mode change 100644 => 100755 app/code/Magento/Review/view/frontend/templates/customer/list.phtml
 mode change 100644 => 100755 app/code/Magento/Review/view/frontend/templates/customer/recent.phtml
 mode change 100644 => 100755 app/code/Magento/Review/view/frontend/templates/customer/view.phtml
 mode change 100644 => 100755 app/code/Magento/Review/view/frontend/templates/detailed.phtml
 mode change 100644 => 100755 app/code/Magento/Review/view/frontend/templates/empty.phtml
 mode change 100644 => 100755 app/code/Magento/Review/view/frontend/templates/form.phtml
 mode change 100644 => 100755 app/code/Magento/Review/view/frontend/templates/helper/summary.phtml
 mode change 100644 => 100755 app/code/Magento/Review/view/frontend/templates/helper/summary_short.phtml
 mode change 100644 => 100755 app/code/Magento/Review/view/frontend/templates/product/view/count.phtml
 mode change 100644 => 100755 app/code/Magento/Review/view/frontend/templates/product/view/list.phtml
 mode change 100644 => 100755 app/code/Magento/Review/view/frontend/templates/product/view/other.phtml
 mode change 100644 => 100755 app/code/Magento/Review/view/frontend/templates/redirect.phtml
 mode change 100644 => 100755 app/code/Magento/Review/view/frontend/templates/review.phtml
 mode change 100644 => 100755 app/code/Magento/Review/view/frontend/templates/view.phtml
 mode change 100644 => 100755 app/code/Magento/Review/view/frontend/ui_component/widget_recently_compared.xml
 mode change 100644 => 100755 app/code/Magento/Review/view/frontend/ui_component/widget_recently_viewed.xml
 mode change 100644 => 100755 app/code/Magento/Review/view/frontend/web/js/error-placement.js
 mode change 100644 => 100755 app/code/Magento/Review/view/frontend/web/js/process-reviews.js
 mode change 100644 => 100755 app/code/Magento/Review/view/frontend/web/js/validate-review.js
 mode change 100644 => 100755 app/code/Magento/Review/view/frontend/web/js/view/review.js
 mode change 100644 => 100755 app/code/Magento/ReviewAnalytics/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/ReviewAnalytics/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/ReviewAnalytics/README.md
 mode change 100644 => 100755 app/code/Magento/ReviewAnalytics/composer.json
 mode change 100644 => 100755 app/code/Magento/ReviewAnalytics/etc/analytics.xml
 mode change 100644 => 100755 app/code/Magento/ReviewAnalytics/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/ReviewAnalytics/etc/reports.xml
 mode change 100644 => 100755 app/code/Magento/ReviewAnalytics/registration.php
 mode change 100644 => 100755 app/code/Magento/Robots/Block/Data.php
 mode change 100644 => 100755 app/code/Magento/Robots/Controller/Index/Index.php
 mode change 100644 => 100755 app/code/Magento/Robots/Controller/Router.php
 mode change 100644 => 100755 app/code/Magento/Robots/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Robots/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Robots/Model/Config/Value.php
 mode change 100644 => 100755 app/code/Magento/Robots/Model/Robots.php
 mode change 100644 => 100755 app/code/Magento/Robots/README.md
 mode change 100644 => 100755 app/code/Magento/Robots/Test/Unit/Block/DataTest.php
 mode change 100644 => 100755 app/code/Magento/Robots/Test/Unit/Controller/Index/IndexTest.php
 mode change 100644 => 100755 app/code/Magento/Robots/Test/Unit/Controller/RouterTest.php
 mode change 100644 => 100755 app/code/Magento/Robots/Test/Unit/Model/Config/ValueTest.php
 mode change 100644 => 100755 app/code/Magento/Robots/Test/Unit/Model/RobotsTest.php
 mode change 100644 => 100755 app/code/Magento/Robots/composer.json
 mode change 100644 => 100755 app/code/Magento/Robots/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Robots/etc/frontend/di.xml
 mode change 100644 => 100755 app/code/Magento/Robots/etc/frontend/routes.xml
 mode change 100644 => 100755 app/code/Magento/Robots/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Robots/registration.php
 mode change 100644 => 100755 app/code/Magento/Robots/view/frontend/layout/robots_index_index.xml
 mode change 100644 => 100755 app/code/Magento/Robots/view/frontend/page_layout/robots.xml
 mode change 100644 => 100755 app/code/Magento/Robots/view/frontend/templates/robots.phtml
 mode change 100644 => 100755 app/code/Magento/Rss/App/Action/Plugin/BackendAuthentication.php
 mode change 100644 => 100755 app/code/Magento/Rss/Block/Feeds.php
 mode change 100644 => 100755 app/code/Magento/Rss/Controller/Adminhtml/Feed.php
 mode change 100644 => 100755 app/code/Magento/Rss/Controller/Adminhtml/Feed/Index.php
 mode change 100644 => 100755 app/code/Magento/Rss/Controller/Feed.php
 mode change 100644 => 100755 app/code/Magento/Rss/Controller/Feed/Index.php
 mode change 100644 => 100755 app/code/Magento/Rss/Controller/Index.php
 mode change 100644 => 100755 app/code/Magento/Rss/Controller/Index/Index.php
 mode change 100644 => 100755 app/code/Magento/Rss/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Rss/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Rss/Model/Rss.php
 mode change 100644 => 100755 app/code/Magento/Rss/Model/RssManager.php
 mode change 100644 => 100755 app/code/Magento/Rss/Model/System/Config/Backend/Links.php
 mode change 100644 => 100755 app/code/Magento/Rss/Model/UrlBuilder.php
 mode change 100644 => 100755 app/code/Magento/Rss/README.md
 mode change 100644 => 100755 app/code/Magento/Rss/Test/Unit/App/Action/Plugin/BackendAuthenticationTest.php
 mode change 100644 => 100755 app/code/Magento/Rss/Test/Unit/Block/FeedsTest.php
 mode change 100644 => 100755 app/code/Magento/Rss/Test/Unit/Controller/Adminhtml/Feed/IndexTest.php
 mode change 100644 => 100755 app/code/Magento/Rss/Test/Unit/Controller/Feed/IndexTest.php
 mode change 100644 => 100755 app/code/Magento/Rss/Test/Unit/Model/RssManagerTest.php
 mode change 100644 => 100755 app/code/Magento/Rss/Test/Unit/Model/RssTest.php
 mode change 100644 => 100755 app/code/Magento/Rss/Test/Unit/Model/UrlBuilderTest.php
 mode change 100644 => 100755 app/code/Magento/Rss/composer.json
 mode change 100644 => 100755 app/code/Magento/Rss/etc/acl.xml
 mode change 100644 => 100755 app/code/Magento/Rss/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/Rss/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/Rss/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/Rss/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Rss/etc/frontend/page_types.xml
 mode change 100644 => 100755 app/code/Magento/Rss/etc/frontend/routes.xml
 mode change 100644 => 100755 app/code/Magento/Rss/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Rss/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Rss/registration.php
 mode change 100644 => 100755 app/code/Magento/Rss/view/frontend/layout/default.xml
 mode change 100644 => 100755 app/code/Magento/Rss/view/frontend/layout/rss_index_index.xml
 mode change 100644 => 100755 app/code/Magento/Rss/view/frontend/templates/feeds.phtml
 mode change 100644 => 100755 app/code/Magento/Rule/Block/Actions.php
 mode change 100644 => 100755 app/code/Magento/Rule/Block/Conditions.php
 mode change 100644 => 100755 app/code/Magento/Rule/Block/Editable.php
 mode change 100644 => 100755 app/code/Magento/Rule/Block/Newchild.php
 mode change 100644 => 100755 app/code/Magento/Rule/Block/Rule.php
 mode change 100644 => 100755 app/code/Magento/Rule/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Rule/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Rule/Model/AbstractModel.php
 mode change 100644 => 100755 app/code/Magento/Rule/Model/Action/AbstractAction.php
 mode change 100644 => 100755 app/code/Magento/Rule/Model/Action/ActionInterface.php
 mode change 100644 => 100755 app/code/Magento/Rule/Model/Action/Collection.php
 mode change 100644 => 100755 app/code/Magento/Rule/Model/ActionFactory.php
 mode change 100644 => 100755 app/code/Magento/Rule/Model/Condition/AbstractCondition.php
 mode change 100644 => 100755 app/code/Magento/Rule/Model/Condition/Combine.php
 mode change 100644 => 100755 app/code/Magento/Rule/Model/Condition/ConditionInterface.php
 mode change 100644 => 100755 app/code/Magento/Rule/Model/Condition/Context.php
 mode change 100644 => 100755 app/code/Magento/Rule/Model/Condition/Product/AbstractProduct.php
 mode change 100644 => 100755 app/code/Magento/Rule/Model/Condition/Sql/Builder.php
 mode change 100644 => 100755 app/code/Magento/Rule/Model/Condition/Sql/Expression.php
 mode change 100644 => 100755 app/code/Magento/Rule/Model/ConditionFactory.php
 mode change 100644 => 100755 app/code/Magento/Rule/Model/Renderer/Actions.php
 mode change 100644 => 100755 app/code/Magento/Rule/Model/Renderer/Conditions.php
 mode change 100644 => 100755 app/code/Magento/Rule/Model/ResourceModel/AbstractResource.php
 mode change 100644 => 100755 app/code/Magento/Rule/Model/ResourceModel/Rule/Collection/AbstractCollection.php
 mode change 100644 => 100755 app/code/Magento/Rule/README.md
 mode change 100644 => 100755 app/code/Magento/Rule/Test/Unit/Model/AbstractModelTest.php
 mode change 100644 => 100755 app/code/Magento/Rule/Test/Unit/Model/ActionFactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Rule/Test/Unit/Model/Condition/AbstractConditionTest.php
 mode change 100644 => 100755 app/code/Magento/Rule/Test/Unit/Model/Condition/CombineTest.php
 mode change 100644 => 100755 app/code/Magento/Rule/Test/Unit/Model/Condition/Product/AbstractProductTest.php
 mode change 100644 => 100755 app/code/Magento/Rule/Test/Unit/Model/Condition/Sql/BuilderTest.php
 mode change 100644 => 100755 app/code/Magento/Rule/Test/Unit/Model/Condition/Sql/ExpressionTest.php
 mode change 100644 => 100755 app/code/Magento/Rule/Test/Unit/Model/ConditionFactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Rule/Test/Unit/Model/Renderer/ActionsTest.php
 mode change 100644 => 100755 app/code/Magento/Rule/Test/Unit/Model/Renderer/ConditionsTest.php
 mode change 100644 => 100755 app/code/Magento/Rule/Test/Unit/Model/ResourceModel/Rule/Collection/AbstractCollectionTest.php
 mode change 100644 => 100755 app/code/Magento/Rule/composer.json
 mode change 100644 => 100755 app/code/Magento/Rule/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Rule/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Rule/registration.php
 mode change 100644 => 100755 app/code/Magento/Rule/view/adminhtml/web/rules.js
 mode change 100644 => 100755 app/code/Magento/Sales/Api/CreditmemoCommentRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/CreditmemoItemRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/CreditmemoManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/CreditmemoRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/CommentInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/CreditmemoCommentCreationInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/CreditmemoCommentInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/CreditmemoCommentSearchResultInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/CreditmemoCreationArgumentsInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/CreditmemoInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/CreditmemoItemCreationInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/CreditmemoItemInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/CreditmemoItemSearchResultInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/CreditmemoSearchResultInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/EntityInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/InvoiceCommentCreationInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/InvoiceCommentInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/InvoiceCommentSearchResultInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/InvoiceCreationArgumentsInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/InvoiceInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/InvoiceItemCreationInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/InvoiceItemInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/InvoiceItemSearchResultInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/InvoiceSearchResultInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/LineItemInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/OrderAddressInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/OrderAddressSearchResultInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/OrderInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/OrderItemInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/OrderItemSearchResultInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/OrderPaymentInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/OrderPaymentSearchResultInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/OrderSearchResultInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/OrderStatusHistoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/OrderStatusHistorySearchResultInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/ShipmentCommentCreationInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/ShipmentCommentInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/ShipmentCommentSearchResultInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/ShipmentCreationArgumentsInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/ShipmentInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/ShipmentItemCreationInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/ShipmentItemInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/ShipmentItemSearchResultInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/ShipmentPackageCreationInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/ShipmentPackageInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/ShipmentSearchResultInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/ShipmentTrackCreationInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/ShipmentTrackInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/ShipmentTrackSearchResultInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/ShippingAssignmentInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/ShippingInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/TotalInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/TrackInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/TransactionInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Data/TransactionSearchResultInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Exception/CouldNotInvoiceExceptionInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Exception/CouldNotRefundExceptionInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Exception/CouldNotShipExceptionInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/Exception/DocumentValidationExceptionInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/InvoiceCommentRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/InvoiceItemRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/InvoiceManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/InvoiceOrderInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/InvoiceRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/OrderAddressRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/OrderCustomerManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/OrderItemRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/OrderManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/OrderPaymentRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/OrderRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/OrderStatusHistoryRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/RefundInvoiceInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/RefundOrderInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/ShipOrderInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/ShipmentCommentRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/ShipmentItemRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/ShipmentManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/ShipmentRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/ShipmentTrackRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Api/TransactionRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Creditmemo.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/CustomerOrdersTab.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Invoice.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Items/AbstractItems.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Items/Column/DefaultColumn.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Items/Column/Name.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Items/Column/Qty.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Items/Renderer/DefaultRenderer.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/AbstractOrder.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Address.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Address/Form.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Comments/View.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create/AbstractCreate.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create/Billing/Address.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create/Billing/Method.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create/Billing/Method/Form.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create/Comment.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create/Coupons.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create/Coupons/Form.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create/Customer.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create/Data.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create/Form.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create/Form/AbstractForm.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create/Form/Account.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create/Form/Address.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create/Giftmessage.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create/Giftmessage/Form.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create/Header.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create/Items.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create/Items/Grid.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create/Load.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create/Messages.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create/Newsletter.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create/Newsletter/Form.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create/Search.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create/Search/Grid.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create/Search/Grid/Renderer/Price.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create/Search/Grid/Renderer/Product.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create/Search/Grid/Renderer/Qty.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create/Shipping/Address.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create/Shipping/Method.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create/Shipping/Method/Form.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/AbstractSidebar.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/Cart.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/Compared.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/Pcompared.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/Pviewed.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/Reorder.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/Viewed.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/Wishlist.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create/Store.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create/Store/Select.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/DefaultTotals.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/Discount.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/Grandtotal.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/Shipping.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/Subtotal.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/Table.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/Tax.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/Create.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/Create/Adjustments.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/Create/Form.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/Create/Items.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/Totals.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/View.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/View/Comments.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/View/Form.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/View/Items.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Details.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/Create.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/Create/Form.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/Create/Items.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/Totals.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/View.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/View/Comments.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/View/Form.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/View/Items.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Payment.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Status.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Status/Assign.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Status/Assign/Form.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Status/Edit.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Status/Edit/Form.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Status/NewStatus.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Status/NewStatus/Form.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Totalbar.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Totals.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Totals/Item.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/Totals/Tax.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/View.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/View/Form.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/View/Giftmessage.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/View/History.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/View/Info.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/View/Items.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/View/Items/Renderer/DefaultRenderer.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/View/Messages.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/View/Tab/Creditmemos.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/View/Tab/History.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/View/Tab/Info.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/View/Tab/Invoices.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/View/Tab/Shipments.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/View/Tab/Transactions.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Order/View/Tabs.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Reorder/Renderer/Action.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Report/Filter/Form.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Report/Filter/Form/Coupon.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Report/Filter/Form/Order.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Rss/Order/Grid/Link.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Shipment.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/System/Config/Form/Fieldset/Order/Statuses.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Totals.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Transactions.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Transactions/Detail.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Adminhtml/Transactions/Detail/Grid.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Guest/Link.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Items/AbstractItems.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Order/Comments.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Order/Creditmemo.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Order/Creditmemo/Items.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Order/Creditmemo/Totals.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Order/Email/Creditmemo/Items.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Order/Email/Invoice/Items.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Order/Email/Items.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Order/Email/Items/DefaultItems.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Order/Email/Items/Order/DefaultOrder.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Order/Email/Shipment/Items.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Order/History.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Order/History/Container.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Order/Info.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Order/Info/Buttons.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Order/Info/Buttons/Rss.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Order/Invoice.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Order/Invoice/Items.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Order/Invoice/Totals.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Order/Item/Renderer/DefaultRenderer.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Order/Items.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Order/Link.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Order/PrintOrder/Creditmemo.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Order/PrintOrder/Invoice.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Order/PrintOrder/Shipment.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Order/PrintShipment.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Order/Recent.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Order/Totals.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Order/View.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Reorder/Sidebar.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Status/Grid/Column/State.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Status/Grid/Column/Unassign.php
 mode change 100644 => 100755 app/code/Magento/Sales/Block/Widget/Guest/Form.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/AbstractController/Creditmemo.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/AbstractController/Invoice.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/AbstractController/OrderLoader.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/AbstractController/OrderLoaderInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/AbstractController/OrderViewAuthorization.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/AbstractController/OrderViewAuthorizationInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/AbstractController/PrintAction.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/AbstractController/PrintCreditmemo.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/AbstractController/PrintInvoice.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/AbstractController/PrintShipment.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/AbstractController/Reorder.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/AbstractController/Shipment.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/AbstractController/View.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/AbstractCreditmemo/Email.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/AbstractCreditmemo/Grid.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/AbstractCreditmemo/Index.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/AbstractCreditmemo/Pdfcreditmemos.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/AbstractCreditmemo/PrintAction.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/AbstractCreditmemo/View.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/Email.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/Grid.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/Index.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/Pdfcreditmemos.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/PrintAction.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/View.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Invoice/AbstractInvoice/Email.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Invoice/AbstractInvoice/Grid.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Invoice/AbstractInvoice/Index.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Invoice/AbstractInvoice/Pdfinvoices.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Invoice/AbstractInvoice/PrintAction.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Invoice/AbstractInvoice/View.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Invoice/Email.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Invoice/Grid.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Invoice/Index.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Invoice/Pdfinvoices.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Invoice/PrintAction.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Invoice/View.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/AbstractMassAction.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/AddComment.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Address.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/AddressSave.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Cancel.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/CommentsHistory.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Create.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Create/AddConfigured.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Create/Cancel.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Create/ConfigureProductToAdd.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Create/ConfigureQuoteItems.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Create/Index.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Create/LoadBlock.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Create/ProcessData.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Create/Reorder.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Create/Save.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Create/ShowUpdateResult.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Create/Start.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/AddComment.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Cancel.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Email.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Grid.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Index.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/NewAction.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Pdfcreditmemos.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/PrintAction.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Save.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Start.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/UpdateQty.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/View.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/VoidAction.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/CreditmemoLoader.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemos.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/AddConfigured.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/Cancel.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/ConfigureProductToAdd.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/ConfigureQuoteItems.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/Index.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/LoadBlock.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/ProcessData.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/Reorder.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/Save.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/ShowUpdateResult.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/Start.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Email.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Grid.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Hold.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Index.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/AddComment.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Cancel.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Capture.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Email.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Grid.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Index.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/NewAction.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Pdfinvoices.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/PrintAction.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Save.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Start.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/UpdateQty.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/View.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/VoidAction.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Invoices.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/MassCancel.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/MassHold.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/MassUnhold.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/PdfDocumentsMassAction.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Pdfcreditmemos.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Pdfdocs.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Pdfinvoices.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Pdfshipments.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/ReviewPayment.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Shipments.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Status.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Status/Assign.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Status/AssignPost.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Status/Edit.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Status/Index.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Status/NewAction.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Status/Save.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Status/Unassign.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Transactions.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/Unhold.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/View.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/View/Giftmessage.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/View/Giftmessage/Save.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Order/VoidPayment.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Shipment/AbstractShipment/Index.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Shipment/AbstractShipment/Pdfshipments.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Shipment/AbstractShipment/PrintAction.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Shipment/AbstractShipment/View.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Shipment/Index.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Shipment/Pdfshipments.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Shipment/PrintAction.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Shipment/View.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Transactions.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Transactions/Fetch.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Transactions/Grid.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Transactions/Index.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Adminhtml/Transactions/View.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Download/DownloadCustomOption.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Guest/Creditmemo.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Guest/Form.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Guest/Invoice.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Guest/OrderLoader.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Guest/OrderViewAuthorization.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Guest/PrintAction.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Guest/PrintCreditmemo.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Guest/PrintInvoice.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Guest/PrintShipment.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Guest/Reorder.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Guest/Shipment.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Guest/View.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Order/Creditmemo.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Order/History.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Order/Invoice.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Order/Plugin/Authentication.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Order/PrintAction.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Order/PrintCreditmemo.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Order/PrintInvoice.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Order/PrintShipment.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Order/Reorder.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Order/Shipment.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/Order/View.php
 mode change 100644 => 100755 app/code/Magento/Sales/Controller/OrderInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Cron/CleanExpiredQuotes.php
 mode change 100644 => 100755 app/code/Magento/Sales/Cron/GridAsyncInsert.php
 mode change 100644 => 100755 app/code/Magento/Sales/Cron/SendEmails.php
 mode change 100644 => 100755 app/code/Magento/Sales/CustomerData/LastOrderedItems.php
 mode change 100644 => 100755 app/code/Magento/Sales/Exception/CouldNotInvoiceException.php
 mode change 100644 => 100755 app/code/Magento/Sales/Exception/CouldNotRefundException.php
 mode change 100644 => 100755 app/code/Magento/Sales/Exception/CouldNotShipException.php
 mode change 100644 => 100755 app/code/Magento/Sales/Exception/DocumentValidationException.php
 mode change 100644 => 100755 app/code/Magento/Sales/Helper/Admin.php
 mode change 100644 => 100755 app/code/Magento/Sales/Helper/Data.php
 mode change 100644 => 100755 app/code/Magento/Sales/Helper/Guest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Helper/Reorder.php
 mode change 100644 => 100755 app/code/Magento/Sales/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Sales/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Sales/Model/AbstractModel.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/AbstractNotifier.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/AdminOrder/Create.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/AdminOrder/EmailSender.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/AdminOrder/Product/Quote/Initializer.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Config.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Config/Backend/Email/AsyncSending.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Config/Backend/Grid/AsyncIndexing.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Config/Converter.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Config/Data.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Config/Ordered.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Config/Reader.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Config/SchemaLocator.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Config/Source/Order/Status.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Config/Source/Order/Status/NewStatus.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Config/Source/Order/Status/Newprocessing.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Config/Source/Order/Status/Processing.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ConfigInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Convert/Order.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/CronJob/AggregateSalesReportBestsellersData.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/CronJob/AggregateSalesReportInvoicedData.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/CronJob/AggregateSalesReportOrderData.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/CronJob/AggregateSalesReportRefundedData.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/CronJob/CleanExpiredOrders.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/CustomerGroupRetriever.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Download.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/EmailSenderHandler.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/EntityInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/EntityStorage.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Grid/Child/CollectionUpdater.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Grid/CollectionUpdater.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/GridAsyncInsert.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Increment.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/InvoiceOrder.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Address.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Address/Renderer.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Address/Validator.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/AddressRepository.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Admin/Item.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Config.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Creditmemo.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Creditmemo/Comment.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Creditmemo/Comment/Validator.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Creditmemo/CommentCreation.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Creditmemo/CommentRepository.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Creditmemo/Config.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Creditmemo/CreationArguments.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Creditmemo/CreditmemoValidator.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Creditmemo/CreditmemoValidatorInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Creditmemo/Item.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Creditmemo/Item/Validation/CreationQuantityValidator.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Creditmemo/ItemCreation.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Creditmemo/ItemCreationValidator.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Creditmemo/ItemCreationValidatorInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Creditmemo/ItemRepository.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Creditmemo/Notifier.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Creditmemo/NotifierInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Creditmemo/RefundOperation.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Creditmemo/Sender/EmailSender.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Creditmemo/SenderInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Creditmemo/Total/AbstractTotal.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Creditmemo/Total/Cost.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Creditmemo/Total/Discount.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Creditmemo/Total/Grand.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Creditmemo/Total/Shipping.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Creditmemo/Total/Subtotal.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Creditmemo/Total/Tax.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Creditmemo/Validation/QuantityValidator.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Creditmemo/Validation/TotalsValidator.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/CreditmemoDocumentFactory.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/CreditmemoFactory.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/CreditmemoNotifier.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/CreditmemoRepository.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/CustomerManagement.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Email/Container/Container.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Email/Container/CreditmemoCommentIdentity.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Email/Container/CreditmemoIdentity.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Email/Container/IdentityInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Email/Container/InvoiceCommentIdentity.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Email/Container/InvoiceIdentity.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Email/Container/OrderCommentIdentity.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Email/Container/OrderIdentity.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Email/Container/ShipmentCommentIdentity.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Email/Container/ShipmentIdentity.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Email/Container/Template.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Email/NotifySender.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Email/Sender.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Email/Sender/CreditmemoCommentSender.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Email/Sender/CreditmemoSender.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Email/Sender/InvoiceCommentSender.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Email/Sender/InvoiceSender.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Email/Sender/OrderCommentSender.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Email/Sender/OrderSender.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Email/Sender/ShipmentCommentSender.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Email/Sender/ShipmentSender.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Email/SenderBuilder.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Grid/Massaction/ItemsUpdater.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Grid/Row/UrlGenerator.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Invoice.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Invoice/Comment.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Invoice/Comment/Validator.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Invoice/CommentCreation.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Invoice/CommentRepository.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Invoice/Config.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Invoice/CreationArguments.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Invoice/Grid/Row/UrlGenerator.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Invoice/InvoiceValidator.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Invoice/InvoiceValidatorInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Invoice/Item.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Invoice/ItemCreation.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Invoice/ItemRepository.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Invoice/Notifier.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Invoice/NotifierInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Invoice/PayOperation.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Invoice/Plugin/AddressUpdate.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Invoice/Sender/EmailSender.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Invoice/SenderInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Invoice/Total/AbstractTotal.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Invoice/Total/Cost.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Invoice/Total/Discount.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Invoice/Total/Grand.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Invoice/Total/Shipping.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Invoice/Total/Subtotal.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Invoice/Total/Tax.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Invoice/Validation/CanRefund.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/InvoiceDocumentFactory.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/InvoiceNotifier.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/InvoiceQuantityValidator.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/InvoiceRepository.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/InvoiceStatisticInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Item.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/ItemRepository.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/OrderStateResolverInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/OrderValidator.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/OrderValidatorInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Payment.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Payment/Info.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Payment/Operations/AbstractOperation.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Payment/Operations/AuthorizeOperation.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Payment/Operations/CaptureOperation.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Payment/Operations/OrderOperation.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Payment/Operations/RegisterCaptureNotificationOperation.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Payment/Processor.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Payment/Repository.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Payment/State/AuthorizeCommand.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Payment/State/CaptureCommand.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Payment/State/CommandInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Payment/State/OrderCommand.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Payment/State/RegisterCaptureNotificationCommand.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Payment/Transaction.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Payment/Transaction/Builder.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Payment/Transaction/BuilderInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Payment/Transaction/Manager.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Payment/Transaction/ManagerInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Payment/Transaction/Repository.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/PaymentAdapter.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/PaymentAdapterInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Pdf/AbstractPdf.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Pdf/Config.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Pdf/Config/Converter.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Pdf/Config/Reader.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Pdf/Config/SchemaLocator.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Pdf/Creditmemo.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Pdf/Invoice.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Pdf/Items/AbstractItems.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Pdf/Items/Creditmemo/DefaultCreditmemo.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Pdf/Items/Invoice/DefaultInvoice.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Pdf/Items/Shipment/DefaultShipment.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Pdf/ItemsFactory.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Pdf/Shipment.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Pdf/Total/DefaultTotal.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Pdf/Total/Factory.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/RefundAdapter.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/RefundAdapterInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Reorder/OrderedProductAvailabilityChecker.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Reorder/OrderedProductAvailabilityCheckerInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Reorder/UnavailableProductsProvider.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Shipment.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Shipment/Comment.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Shipment/Comment/Validator.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Shipment/CommentCreation.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Shipment/CommentRepository.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Shipment/CreationArguments.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Shipment/Item.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Shipment/ItemCreation.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Shipment/ItemRepository.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Shipment/Notifier.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Shipment/NotifierInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Shipment/OrderRegistrar.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Shipment/OrderRegistrarInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Shipment/Package.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Shipment/PackageCreation.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Shipment/Sender/EmailSender.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Shipment/SenderInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Shipment/ShipmentValidator.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Shipment/ShipmentValidatorInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Shipment/Track.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Shipment/Track/Validator.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Shipment/TrackCreation.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Shipment/TrackRepository.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Shipment/Validation/QuantityValidator.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Shipment/Validation/TrackValidator.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/ShipmentDocumentFactory.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/ShipmentFactory.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/ShipmentRepository.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Shipping.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/ShippingAssignment.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/ShippingAssignmentBuilder.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/ShippingBuilder.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/ShippingTotal.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/StateResolver.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Status.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Status/History.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Status/History/Validator.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Status/HistoryRepository.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/StatusResolver.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Tax.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Tax/Item.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Total.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Total/AbstractTotal.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Total/Config/Base.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/TotalFactory.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Validation/CanInvoice.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Validation/CanRefund.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Validation/CanShip.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Validation/InvoiceOrder.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Validation/InvoiceOrderInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Validation/RefundInvoice.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Validation/RefundInvoiceInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Validation/RefundOrder.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Validation/RefundOrderInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Validation/ShipOrder.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Order/Validation/ShipOrderInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/OrderIncrementIdChecker.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/OrderNotifier.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/OrderRepository.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/RefundInvoice.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/RefundOrder.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/AbstractGrid.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Attribute.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Collection/AbstractCollection.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/EntityAbstract.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Grid.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Grid/Collection.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/GridInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/GridPool.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Helper.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/HelperInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Metadata.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Address.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Address/Collection.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Attribute/Backend/Billing.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Attribute/Backend/Child.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Attribute/Backend/Shipping.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Collection.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Collection/AbstractCollection.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Collection/Factory.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/CollectionFactory.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/CollectionFactoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Comment/Collection/AbstractCollection.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Attribute/Backend/Child.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Collection.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Comment.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Comment/Collection.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Grid/Collection.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Grid/StatusList.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Item.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Item/Collection.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Order/Grid/Collection.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Relation.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Relation/Refund.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Customer/Collection.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Grid/Collection.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Handler/Address.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Handler/State.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Invoice.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Attribute/Backend/Child.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Attribute/Backend/Item.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Attribute/Backend/Order.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Collection.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Comment.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Comment/Collection.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Grid/Collection.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Grid/StatusList.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Item.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Item/Collection.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Orders/Grid/Collection.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Relation.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Item.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Item/Collection.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Payment.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Payment/Collection.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Payment/Transaction.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Payment/Transaction/Collection.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Plugin/Authorization.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Relation.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Rss/OrderStatus.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Shipment.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Attribute/Backend/Child.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Collection.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Comment.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Comment/Collection.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Grid/Collection.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Item.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Item/Collection.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Order/Grid/Collection.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Relation.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Track.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Track/Collection.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Status.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Status/Collection.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Status/History.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Status/History/Collection.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Tax.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Tax/Collection.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Order/Tax/Item.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Provider/NotSyncedDataProvider.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Provider/NotSyncedDataProviderInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Provider/UpdatedAtListProvider.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Provider/UpdatedIdListProvider.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Report.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Report/AbstractReport.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Report/Bestsellers.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Report/Bestsellers/Collection.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Report/Collection/AbstractCollection.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Report/Invoiced.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Report/Invoiced/Collection/Invoiced.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Report/Invoiced/Collection/Order.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Report/Order.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Report/Order/Collection.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Report/Order/Createdat.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Report/Order/Updatedat.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Report/Order/Updatedat/Collection.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Report/Refunded.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Report/Refunded/Collection/Order.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Report/Refunded/Collection/Refunded.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Report/Shipping.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Report/Shipping/Collection/Order.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Report/Shipping/Collection/Shipment.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Sale/Collection.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Status/Collection.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Transaction/Grid/Collection.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ResourceModel/Transaction/Grid/TypeList.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Rss/NewOrder.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Rss/OrderStatus.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Service/CreditmemoService.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Service/InvoiceService.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Service/OrderService.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Service/ShipmentService.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ShipOrder.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Spi/CreditmemoCommentResourceInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Spi/CreditmemoItemResourceInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Spi/CreditmemoResourceInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Spi/InvoiceCommentResourceInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Spi/InvoiceItemResourceInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Spi/InvoiceResourceInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Spi/OrderAddressResourceInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Spi/OrderItemResourceInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Spi/OrderPaymentResourceInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Spi/OrderResourceInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Spi/OrderStatusHistoryResourceInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Spi/ShipmentCommentResourceInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Spi/ShipmentItemResourceInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Spi/ShipmentResourceInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Spi/ShipmentTrackResourceInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Spi/TransactionResourceInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Status/ListFactory.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Status/ListStatus.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/Validator.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ValidatorInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ValidatorResult.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ValidatorResultInterface.php
 mode change 100644 => 100755 app/code/Magento/Sales/Model/ValidatorResultMerger.php
 mode change 100644 => 100755 app/code/Magento/Sales/Observer/Backend/CatalogPriceRule.php
 mode change 100644 => 100755 app/code/Magento/Sales/Observer/Backend/CatalogProductSaveAfterObserver.php
 mode change 100644 => 100755 app/code/Magento/Sales/Observer/Backend/SubtractQtyFromQuotesObserver.php
 mode change 100644 => 100755 app/code/Magento/Sales/Observer/Frontend/AddVatRequestParamsOrderComment.php
 mode change 100644 => 100755 app/code/Magento/Sales/Observer/Frontend/RestoreCustomerGroupId.php
 mode change 100644 => 100755 app/code/Magento/Sales/Observer/GridAsyncInsertObserver.php
 mode change 100644 => 100755 app/code/Magento/Sales/Observer/GridProcessAddressChange.php
 mode change 100644 => 100755 app/code/Magento/Sales/Observer/GridSyncInsertObserver.php
 mode change 100644 => 100755 app/code/Magento/Sales/Observer/GridSyncRemoveObserver.php
 mode change 100644 => 100755 app/code/Magento/Sales/Observer/Virtual/SendEmails.php
 mode change 100644 => 100755 app/code/Magento/Sales/README.md
 mode change 100644 => 100755 app/code/Magento/Sales/Setup/InstallData.php
 mode change 100644 => 100755 app/code/Magento/Sales/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/Sales/Setup/SalesOrderPaymentDataConverter.php
 mode change 100644 => 100755 app/code/Magento/Sales/Setup/SalesSetup.php
 mode change 100644 => 100755 app/code/Magento/Sales/Setup/SerializedDataConverter.php
 mode change 100644 => 100755 app/code/Magento/Sales/Setup/UpgradeData.php
 mode change 100644 => 100755 app/code/Magento/Sales/Setup/UpgradeSchema.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Items/AbstractItemsTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Items/AbstractTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Items/Column/DefaultColumnTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Address/FormTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Comments/ViewTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Create/AbstractCreateTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Create/CustomerTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Create/Items/GridTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Create/Search/Grid/Renderer/QtyTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Create/Sidebar/AbstractSidebarTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Create/TotalsTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Creditmemo/Create/ItemsTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Invoice/ViewTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Status/Assign/FormTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Totals/TaxTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/View/GiftmessageTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/View/HistoryTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/View/InfoTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/View/Tab/HistoryTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/View/Tab/Stub/OnlineMethod.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/View/Tab/TransactionsTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Rss/Order/Grid/LinkTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Block/Guest/LinkTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Block/Items/AbstractTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Block/Order/Create/TotalsTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Block/Order/Email/Items/DefaultItemsTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Block/Order/Email/Items/Order/DefaultOrderTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Block/Order/HistoryTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Block/Order/Info/Buttons/RssTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Block/Order/Item/Renderer/DefaultRendererTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Block/Order/PrintShipmentTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Block/Order/RecentTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Block/Reorder/SidebarTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Block/Status/Grid/Column/StateTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Creditmemo/AbstractCreditmemo/EmailTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Invoice/AbstractInvoice/EmailTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/CancelTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Create/ProcessDataTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Create/ReorderTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/AddCommentTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/CancelTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/NewActionTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/PrintActionTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/SaveTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/UpdateQtyTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/ViewTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/VoidActionTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/CreditmemoLoaderTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/EmailTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/HoldTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/AddCommentTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/CancelTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/CaptureTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/NewActionTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/PrintActionTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/SaveTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/UpdateQtyTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/ViewTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/VoidActionTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/MassCancelTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/MassHoldTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/MassUnholdTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/ReviewPaymentTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/UnholdTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/ViewTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/PdfDocumentsMassActionTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Controller/Download/DownloadCustomOptionTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Controller/Guest/ViewTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Cron/CleanExpiredQuotesTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/CustomerData/LastOrderedItemsTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Helper/AdminTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Helper/DataTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Helper/GuestTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Helper/ReorderTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/AbstractModelTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/AdminOrder/CreateTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/AdminOrder/EmailSenderTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/AdminOrder/Product/Quote/InitializerTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Config/Backend/Email/AsyncSendingTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Config/Backend/Grid/AsyncIndexingTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Config/ConverterTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Config/DataTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Config/ReaderTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Config/SchemaLocatorTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Config/Source/Order/StatusTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Config/XsdTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Config/_files/core_totals_config.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Config/_files/custom_totals_config.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Config/_files/sales_invalid.xml
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Config/_files/sales_invalid_duplicates.xml
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Config/_files/sales_invalid_root_node.xml
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Config/_files/sales_invalid_scope.xml
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Config/_files/sales_invalid_without_attributes.xml
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Config/_files/sales_valid.xml
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/ConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/CronJob/AggregateSalesReportBestsellersDataTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/CronJob/AggregateSalesReportInvoicedDataTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/CronJob/AggregateSalesReportOrderDataTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/CronJob/AggregateSalesReportRefundedDataTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/CronJob/CleanExpiredOrdersTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/CustomerGroupRetrieverTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/DownloadTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/EmailSenderHandlerTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Grid/Child/CollectionUpdaterTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Grid/CollectionUpdaterTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/GridAsyncInsertTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/IncrementTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/InvoiceOrderTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/InvoiceRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Address/RendererTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Address/ValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/AddressRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/AddressTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Admin/ItemTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/ConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Comment/ValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/CommentRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Item/Validation/CreateQuantityValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/ItemTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/RefundOperationTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Sender/EmailSenderTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Total/CostTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Total/DiscountTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Total/ShippingTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Total/SubtotalTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Total/TaxTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Validation/QuantityValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/CreditmemoDocumentFactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/CreditmemoNotifierTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/CreditmemoRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/CreditmemoTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/CustomerManagementTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/CreditmemoCommentIdentityTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/CreditmemoIdentityTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/InvoiceCommentIdentityTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/InvoiceIdentityTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/OrderCommentIdentityTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/OrderIdentityTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/ShipmentCommentIdentityTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/ShipmentIdentityTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/TemplateTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/AbstractSenderTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/CreditmemoCommentSenderTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/CreditmemoSenderTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/InvoiceCommentSenderTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/InvoiceSenderTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/OrderCommentSenderTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/OrderSenderTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/ShipmentCommentSenderTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/ShipmentSenderTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Email/SenderBuilderTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Email/Stub/TransportInterfaceMock.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Grid/Massaction/ItemsUpdaterTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Grid/Row/UrlGeneratorTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/Comment/ValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/CommentRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/Grid/Row/UrlGeneratorTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/ItemTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/PayOperationTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/Plugin/AddressUpdateTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/Sender/EmailSenderTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/Total/ShippingTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/Total/TaxTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/Validation/CanRefundTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/InvoiceDocumentFactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/InvoiceNotifierTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/InvoiceQuantityValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/InvoiceTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/ItemRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/ItemTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Payment/InfoTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Payment/Operations/CaptureOperationTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Payment/RepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Payment/State/AuthorizeCommandTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Payment/State/CaptureCommandTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Payment/State/OrderCommandTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Payment/State/RegisterCaptureNotificationCommandTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Payment/Transaction/BuilderTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Payment/Transaction/ManagerTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Payment/Transaction/RepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Payment/TransactionTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/PaymentAdapterTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/PaymentTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/AbstractTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/ConverterTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/ReaderTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/SchemaLocatorTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/XsdTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/_files/pdf_merged.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/_files/pdf_merged.xml
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/_files/pdf_one.xml
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/_files/pdf_two.xml
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/ConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/InvoiceTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Total/FactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/RefundAdapterTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Reorder/OrderProductAvailabilityCheckerTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Reorder/UnavailableProductsProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/Comment/ValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/CommentRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/OrderRegistrarTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/Sender/EmailSenderTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/Track/ValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/TrackTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/Validation/QuantityValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/Validation/TrackValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/ShipmentDocumentFactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/ShipmentFactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/ShipmentRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/ShipmentTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/StateResolverTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Status/History/ValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Status/HistoryTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/StatusResolverTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/StatusTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Total/Config/BaseTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Validation/CanInvoiceTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Validation/CanRefundTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Order/Validation/CanShipTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/OrderIncrementIdCheckerTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/OrderNotifierTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/OrderRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/OrderTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/RefundInvoiceTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/RefundOrderTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/ResourceModel/AttributeTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/ResourceModel/GridPoolTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/ResourceModel/HelperTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/AddressTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Creditmemo/CommentTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Creditmemo/Relation/RefundTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Creditmemo/RelationTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Handler/AddressTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Handler/StateTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Invoice/CommentTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Invoice/RelationTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Plugin/AuthorizationTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/RelationTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Shipment/CommentTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Shipment/RelationTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Shipment/TrackTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Status/History/CollectionTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Status/HistoryTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/StatusTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Tax/ItemTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/ResourceModel/OrderTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Provider/NotSyncedDataProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Rss/NewOrderTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Rss/OrderStatusTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Service/CreditmemoServiceTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Service/InvoiceServiceTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Service/OrderServiceTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Service/ShipmentServiceTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/ShipOrderTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Model/Status/ListStatusTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Observer/Backend/CatalogPriceRuleTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Observer/Backend/CatalogProductSaveAfterObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Observer/Backend/SubtractQtyFromQuotesObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Observer/Frontend/AddVatRequestParamsOrderCommentTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Observer/Frontend/RestoreCustomerGroupIdTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Observer/GridProcessAddressChangeTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Observer/GridSyncInsertObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Observer/GridSyncRemoveObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Setup/SalesOrderPaymentDataConverterTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Setup/SerializedDataConverterTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Ui/Component/DataProvider/DocumentTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/AddressTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/CustomerGroupTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/PaymentMethodTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/PriceTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/PurchasedPriceTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/Status/OptionsTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/StatusTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/ViewActionTest.php
 mode change 100644 => 100755 app/code/Magento/Sales/Ui/Component/Control/PdfAction.php
 mode change 100644 => 100755 app/code/Magento/Sales/Ui/Component/DataProvider/Document.php
 mode change 100644 => 100755 app/code/Magento/Sales/Ui/Component/Listing/Column/Address.php
 mode change 100644 => 100755 app/code/Magento/Sales/Ui/Component/Listing/Column/Creditmemo/State.php
 mode change 100644 => 100755 app/code/Magento/Sales/Ui/Component/Listing/Column/Creditmemo/State/Options.php
 mode change 100644 => 100755 app/code/Magento/Sales/Ui/Component/Listing/Column/CustomerGroup.php
 mode change 100644 => 100755 app/code/Magento/Sales/Ui/Component/Listing/Column/Invoice/State.php
 mode change 100644 => 100755 app/code/Magento/Sales/Ui/Component/Listing/Column/Invoice/State/Options.php
 mode change 100644 => 100755 app/code/Magento/Sales/Ui/Component/Listing/Column/PaymentMethod.php
 mode change 100644 => 100755 app/code/Magento/Sales/Ui/Component/Listing/Column/Price.php
 mode change 100644 => 100755 app/code/Magento/Sales/Ui/Component/Listing/Column/PurchasedPrice.php
 mode change 100644 => 100755 app/code/Magento/Sales/Ui/Component/Listing/Column/Status.php
 mode change 100644 => 100755 app/code/Magento/Sales/Ui/Component/Listing/Column/Status/Options.php
 mode change 100644 => 100755 app/code/Magento/Sales/Ui/Component/Listing/Column/ViewAction.php
 mode change 100644 => 100755 app/code/Magento/Sales/composer.json
 mode change 100644 => 100755 app/code/Magento/Sales/etc/acl.xml
 mode change 100644 => 100755 app/code/Magento/Sales/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/Sales/etc/adminhtml/events.xml
 mode change 100644 => 100755 app/code/Magento/Sales/etc/adminhtml/menu.xml
 mode change 100644 => 100755 app/code/Magento/Sales/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/Sales/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/Sales/etc/catalog_attributes.xml
 mode change 100644 => 100755 app/code/Magento/Sales/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/Sales/etc/crontab.xml
 mode change 100644 => 100755 app/code/Magento/Sales/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Sales/etc/email_templates.xml
 mode change 100644 => 100755 app/code/Magento/Sales/etc/events.xml
 mode change 100644 => 100755 app/code/Magento/Sales/etc/extension_attributes.xml
 mode change 100644 => 100755 app/code/Magento/Sales/etc/fieldset.xml
 mode change 100644 => 100755 app/code/Magento/Sales/etc/frontend/di.xml
 mode change 100644 => 100755 app/code/Magento/Sales/etc/frontend/events.xml
 mode change 100644 => 100755 app/code/Magento/Sales/etc/frontend/page_types.xml
 mode change 100644 => 100755 app/code/Magento/Sales/etc/frontend/routes.xml
 mode change 100644 => 100755 app/code/Magento/Sales/etc/frontend/sections.xml
 mode change 100644 => 100755 app/code/Magento/Sales/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Sales/etc/pdf.xml
 mode change 100644 => 100755 app/code/Magento/Sales/etc/pdf.xsd
 mode change 100644 => 100755 app/code/Magento/Sales/etc/pdf_file.xsd
 mode change 100644 => 100755 app/code/Magento/Sales/etc/resources.xml
 mode change 100644 => 100755 app/code/Magento/Sales/etc/sales.xml
 mode change 100644 => 100755 app/code/Magento/Sales/etc/sales.xsd
 mode change 100644 => 100755 app/code/Magento/Sales/etc/webapi.xml
 mode change 100644 => 100755 app/code/Magento/Sales/etc/webapi_rest/di.xml
 mode change 100644 => 100755 app/code/Magento/Sales/etc/webapi_rest/events.xml
 mode change 100644 => 100755 app/code/Magento/Sales/etc/webapi_soap/di.xml
 mode change 100644 => 100755 app/code/Magento/Sales/etc/webapi_soap/events.xml
 mode change 100644 => 100755 app/code/Magento/Sales/etc/widget.xml
 mode change 100644 => 100755 app/code/Magento/Sales/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Sales/registration.php
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_creditmemo_exportcsv.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_creditmemo_exportexcel.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_creditmemo_grid.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_creditmemo_index.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_creditmemo_item_price.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_invoice_exportcsv.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_invoice_exportexcel.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_invoice_grid.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_invoice_index.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_invoice_item_price.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_addcomment.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_address.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_customer_block.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_index.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_item_price.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_billing_address.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_billing_method.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_comment.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_customer_grid.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_data.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_form_account.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_giftmessage.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_header.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_items.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_json.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_message.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_newsletter.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_plain.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_search.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_search_grid.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_shipping_address.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_shipping_method.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar_cart.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar_compared.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar_pcompared.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar_pviewed.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar_reorder.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar_viewed.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar_wishlist.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_totals.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_creditmemo_addcomment.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_creditmemo_grid_block.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_creditmemo_new.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_creditmemo_updateqty.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_creditmemo_view.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_creditmemos.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_edit_index.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_exportcsv.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_exportexcel.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_grid.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_index.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_invoice_addcomment.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_invoice_grid_block.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_invoice_new.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_invoice_updateqty.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_invoice_view.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_invoices.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_item_price.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_shipment_grid_block.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_shipments.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_status_assign.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_status_edit.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_status_index.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_status_new.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_transactions.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_transactions_grid_block.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_order_view.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_shipment_exportcsv.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_shipment_exportexcel.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_shipment_index.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_transaction_child_block.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_transactions_grid.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_transactions_grid_block.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_transactions_index.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/layout/sales_transactions_view.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/requirejs-config.js
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/items/column/name.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/items/column/qty.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/items/price/row.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/items/price/total.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/items/price/unit.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/items/renderer/default.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/address/form.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/comments/view.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/create/abstract.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/create/billing/method/form.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/create/comment.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/create/coupons/form.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/create/data.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/create/form.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/create/form/account.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/create/form/address.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/create/giftmessage.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/create/items.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/create/items/grid.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/create/items/price/row.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/create/items/price/total.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/create/items/price/unit.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/create/js.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/create/newsletter/form.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/create/shipping/method/form.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/create/sidebar.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/create/sidebar/items.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/create/store/select.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/create/totals.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/create/totals/default.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/create/totals/grandtotal.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/create/totals/shipping.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/create/totals/subtotal.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/creditmemo/create/form.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/creditmemo/create/items.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/creditmemo/create/items/renderer/default.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/creditmemo/create/totals/adjustments.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/creditmemo/view/form.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/creditmemo/view/items.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/creditmemo/view/items/renderer/default.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/details.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/giftoptions.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/invoice/create/form.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/invoice/create/items.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/invoice/create/items/renderer/default.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/invoice/view/form.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/invoice/view/items.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/invoice/view/items/renderer/default.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/totalbar.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/totals.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/totals/discount.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/totals/due.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/totals/footer.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/totals/grand.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/totals/item.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/totals/main.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/totals/paid.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/totals/refunded.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/totals/shipping.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/totals/tax.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/view/form.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/view/giftmessage.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/view/history.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/view/info.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/view/items.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/view/items/renderer/default.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/view/tab/history.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/order/view/tab/info.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/page/js/components.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/rss/order/grid/link.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/templates/transactions/detail.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/ui_component/sales_order_creditmemo_grid.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/ui_component/sales_order_grid.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/ui_component/sales_order_invoice_grid.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/ui_component/sales_order_shipment_grid.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/ui_component/sales_order_view_creditmemo_grid.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/ui_component/sales_order_view_invoice_grid.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/ui_component/sales_order_view_shipment_grid.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/web/js/bootstrap/order-create-index.js
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/web/js/bootstrap/order-post-action.js
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/web/order/create/form.js
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/web/order/create/giftmessage.js
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/web/order/create/scripts.js
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/web/order/edit/address/form.js
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/web/order/edit/message.js
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/web/order/giftoptions_tooltip.js
 mode change 100644 => 100755 app/code/Magento/Sales/view/adminhtml/web/order/view/post-wrapper.js
 mode change 100644 => 100755 app/code/Magento/Sales/view/base/ui_component/customer_form.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/email/creditmemo_new.html
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/email/creditmemo_new_guest.html
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/email/creditmemo_update.html
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/email/creditmemo_update_guest.html
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/email/invoice_new.html
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/email/invoice_new_guest.html
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/email/invoice_update.html
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/email/invoice_update_guest.html
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/email/order_new.html
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/email/order_new_guest.html
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/email/order_update.html
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/email/order_update_guest.html
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/email/shipment_new.html
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/email/shipment_new_guest.html
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/email/shipment_update.html
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/email/shipment_update_guest.html
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/layout/checkout_index_index.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/layout/customer_account.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/layout/customer_account_index.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/layout/default.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/layout/sales_email_item_price.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/layout/sales_email_order_creditmemo_items.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/layout/sales_email_order_creditmemo_renderers.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/layout/sales_email_order_invoice_items.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/layout/sales_email_order_invoice_renderers.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/layout/sales_email_order_items.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/layout/sales_email_order_renderers.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/layout/sales_email_order_shipment_items.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/layout/sales_email_order_shipment_renderers.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/layout/sales_guest_creditmemo.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/layout/sales_guest_form.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/layout/sales_guest_invoice.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/layout/sales_guest_print.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/layout/sales_guest_printcreditmemo.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/layout/sales_guest_printinvoice.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/layout/sales_guest_printshipment.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/layout/sales_guest_reorder.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/layout/sales_guest_shipment.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/layout/sales_guest_view.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/layout/sales_order_creditmemo.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/layout/sales_order_creditmemo_renderers.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/layout/sales_order_guest_info_links.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/layout/sales_order_history.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/layout/sales_order_info_links.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/layout/sales_order_invoice.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/layout/sales_order_invoice_renderers.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/layout/sales_order_item_price.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/layout/sales_order_item_renderers.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/layout/sales_order_print.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/layout/sales_order_print_creditmemo_renderers.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/layout/sales_order_print_invoice_renderers.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/layout/sales_order_print_renderers.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/layout/sales_order_print_shipment_renderers.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/layout/sales_order_printcreditmemo.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/layout/sales_order_printinvoice.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/layout/sales_order_printshipment.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/layout/sales_order_reorder.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/layout/sales_order_shipment.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/layout/sales_order_shipment_renderers.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/layout/sales_order_view.xml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/requirejs-config.js
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/templates/email/creditmemo/items.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/templates/email/invoice/items.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/templates/email/items.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/templates/email/items/creditmemo/default.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/templates/email/items/invoice/default.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/templates/email/items/order/default.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/templates/email/items/price/row.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/templates/email/items/shipment/default.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/templates/email/shipment/items.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/templates/email/shipment/track.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/templates/guest/form.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/templates/items/price/row.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/templates/items/price/total_after_discount.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/templates/items/price/unit.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/templates/js/components.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/templates/order/comments.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/templates/order/creditmemo.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/templates/order/creditmemo/items.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/templates/order/creditmemo/items/renderer/default.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/templates/order/history.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/templates/order/info.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/templates/order/info/buttons.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/templates/order/info/buttons/rss.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/templates/order/invoice.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/templates/order/invoice/items.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/templates/order/invoice/items/renderer/default.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/templates/order/items.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/templates/order/items/renderer/default.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/templates/order/order_comments.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/templates/order/order_date.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/templates/order/order_status.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/templates/order/print/creditmemo.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/templates/order/print/invoice.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/templates/order/print/shipment.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/templates/order/recent.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/templates/order/shipment/items/renderer/default.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/templates/order/totals.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/templates/order/view.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/templates/reorder/sidebar.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/templates/widget/guest/form.phtml
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/web/gift-message.js
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/web/js/view/last-ordered-items.js
 mode change 100644 => 100755 app/code/Magento/Sales/view/frontend/web/orders-returns.js
 mode change 100644 => 100755 app/code/Magento/SalesAnalytics/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/SalesAnalytics/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/SalesAnalytics/README.md
 mode change 100644 => 100755 app/code/Magento/SalesAnalytics/composer.json
 mode change 100644 => 100755 app/code/Magento/SalesAnalytics/etc/analytics.xml
 mode change 100644 => 100755 app/code/Magento/SalesAnalytics/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/SalesAnalytics/etc/reports.xml
 mode change 100644 => 100755 app/code/Magento/SalesAnalytics/registration.php
 mode change 100644 => 100755 app/code/Magento/SalesInventory/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/SalesInventory/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/SalesInventory/Model/Order/ReturnProcessor.php
 mode change 100644 => 100755 app/code/Magento/SalesInventory/Model/Order/ReturnValidator.php
 mode change 100644 => 100755 app/code/Magento/SalesInventory/Model/Plugin/Order/ReturnToStockInvoice.php
 mode change 100644 => 100755 app/code/Magento/SalesInventory/Model/Plugin/Order/ReturnToStockOrder.php
 mode change 100644 => 100755 app/code/Magento/SalesInventory/Model/Plugin/Order/Validation/InvoiceRefundCreationArguments.php
 mode change 100644 => 100755 app/code/Magento/SalesInventory/Model/Plugin/Order/Validation/OrderRefundCreationArguments.php
 mode change 100644 => 100755 app/code/Magento/SalesInventory/Observer/RefundOrderInventoryObserver.php
 mode change 100644 => 100755 app/code/Magento/SalesInventory/README.md
 mode change 100644 => 100755 app/code/Magento/SalesInventory/Test/Unit/Model/Order/ReturnProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/SalesInventory/Test/Unit/Model/Order/ReturnValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/SalesInventory/Test/Unit/Model/Plugin/Order/ReturnToStockInvoiceTest.php
 mode change 100644 => 100755 app/code/Magento/SalesInventory/Test/Unit/Model/Plugin/Order/ReturnToStockOrderTest.php
 mode change 100644 => 100755 app/code/Magento/SalesInventory/Test/Unit/Model/Plugin/Order/Validation/InvoiceRefundCreationArgumentsTest.php
 mode change 100644 => 100755 app/code/Magento/SalesInventory/Test/Unit/Model/Plugin/Order/Validation/OrderRefundCreationArgumentsTest.php
 mode change 100644 => 100755 app/code/Magento/SalesInventory/Test/Unit/Observer/RefundOrderInventoryObserverTest.php
 mode change 100644 => 100755 app/code/Magento/SalesInventory/composer.json
 mode change 100644 => 100755 app/code/Magento/SalesInventory/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/SalesInventory/etc/events.xml
 mode change 100644 => 100755 app/code/Magento/SalesInventory/etc/extension_attributes.xml
 mode change 100644 => 100755 app/code/Magento/SalesInventory/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/SalesInventory/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/SalesInventory/registration.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Api/CouponManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Api/CouponRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Api/Data/ConditionInterface.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Api/Data/CouponGenerationSpecInterface.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Api/Data/CouponInterface.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Api/Data/CouponMassDeleteResultInterface.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Api/Data/CouponSearchResultInterface.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Api/Data/RuleInterface.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Api/Data/RuleLabelInterface.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Api/Data/RuleSearchResultInterface.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Api/RuleRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/DeleteButton.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/GenericButton.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/ResetButton.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/SaveAndContinueButton.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/SaveButton.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Actions.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Conditions.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Coupons.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Coupons/Form.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Coupons/Grid.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Coupons/Grid/Column/Renderer/Used.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Labels.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Block/Adminhtml/Promo/Widget/Chooser.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Block/Rss/Discounts.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Block/Widget/Form/Element/Dependence.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/ApplyRules.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/Chooser.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/CouponsGrid.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/CouponsMassDelete.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/Delete.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/Edit.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/ExportCouponsCsv.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/ExportCouponsXml.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/Generate.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/Index.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/NewAction.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/NewActionHtml.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/NewConditionHtml.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/Save.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Widget/Chooser.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Cron/AggregateSalesReportCouponsData.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Helper/Coupon.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/SalesRule/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/Converter/ToDataModel.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/Converter/ToModel.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/Coupon.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/Coupon/Codegenerator.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/Coupon/CodegeneratorInterface.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/Coupon/Massgenerator.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/CouponGenerator.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/CouponRepository.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/Data/Condition.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/Data/CouponGenerationSpec.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/Data/CouponMassDeleteResult.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/Data/Rule.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/Data/RuleLabel.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/Plugin/QuoteConfigProductAttributes.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/Plugin/ResourceModel/Rule.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/Plugin/Rule.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/Quote/Discount.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/RegistryConstants.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/ResourceModel/Coupon.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/ResourceModel/Coupon/Collection.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/ResourceModel/Coupon/Usage.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/ResourceModel/ReadHandler.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/ResourceModel/Report/Collection.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/ResourceModel/Report/Rule.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/ResourceModel/Report/Rule/Createdat.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/ResourceModel/Report/Rule/Updatedat.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/ResourceModel/Report/Updatedat/Collection.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/ResourceModel/Rule.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/ResourceModel/Rule/Collection.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/ResourceModel/Rule/Customer.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/ResourceModel/Rule/Customer/Collection.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/ResourceModel/Rule/DateApplier.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/ResourceModel/Rule/Quote/Collection.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/ResourceModel/SaveHandler.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/Rss/Discounts.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/Rule.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/Rule/Action/Collection.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/Rule/Action/Discount/AbstractDiscount.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/Rule/Action/Discount/BuyXGetY.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/Rule/Action/Discount/ByFixed.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/Rule/Action/Discount/ByPercent.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/Rule/Action/Discount/CalculatorFactory.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/Rule/Action/Discount/CartFixed.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/Rule/Action/Discount/Data.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/Rule/Action/Discount/DiscountInterface.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/Rule/Action/Discount/ToFixed.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/Rule/Action/Discount/ToPercent.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/Rule/Action/Product.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/Rule/Condition/Address.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/Rule/Condition/Combine.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/Rule/Condition/Product.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/Rule/Condition/Product/Combine.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/Rule/Condition/Product/Found.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/Rule/Condition/Product/Subselect.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/Rule/Customer.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/Rule/DataProvider.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/Rule/Metadata/ValueProvider.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/RuleRepository.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/RulesApplier.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/Service/CouponManagementService.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/Spi/CouponResourceInterface.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/System/Config/Source/Coupon/Format.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/Utility.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/Validator.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Model/Validator/Pool.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Observer/AddSalesRuleNameToOrderObserver.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Observer/CatalogAttributeDeleteAfterObserver.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Observer/CatalogAttributeSaveAfterObserver.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Observer/CheckSalesRulesAvailability.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Observer/SalesOrderAfterPlaceObserver.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Plugin/CartTotalRepository.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/README.md
 mode change 100644 => 100755 app/code/Magento/SalesRule/Setup/InstallData.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Setup/UpgradeData.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Setup/UpgradeSchema.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Test/Unit/Block/Adminhtml/Promo/Quote/Edit/DeleteButtonTest.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Test/Unit/Block/Adminhtml/Promo/Quote/Edit/GenericButtonTest.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Test/Unit/Block/Adminhtml/Promo/Quote/Edit/ResetButtonTest.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Test/Unit/Block/Adminhtml/Promo/Quote/Edit/SaveAndContinueButtonTest.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Test/Unit/Block/Adminhtml/Promo/Quote/Edit/SaveButtonTest.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Test/Unit/Block/Rss/DiscountsTest.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Test/Unit/Controller/Adminhtml/Promo/Quote/GenerateTest.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Test/Unit/Cron/AggregateSalesReportCouponsDataTest.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Test/Unit/Helper/CouponTest.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Test/Unit/Model/Converter/ToDataModelTest.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Test/Unit/Model/Converter/ToModelTest.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Test/Unit/Model/Coupon/CodegeneratorTest.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Test/Unit/Model/Coupon/MassgeneratorTest.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Test/Unit/Model/CouponRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Test/Unit/Model/CouponTest.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Test/Unit/Model/Plugin/QuoteConfigProductAttributesTest.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Test/Unit/Model/Plugin/ResourceModel/RuleTest.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Test/Unit/Model/Plugin/RuleTest.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Test/Unit/Model/Quote/DiscountTest.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Test/Unit/Model/ResourceModel/ReadHandlerTest.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Test/Unit/Model/ResourceModel/Report/CollectionTest.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Test/Unit/Model/ResourceModel/Report/RuleTest.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Test/Unit/Model/ResourceModel/Rule/DateApplierTest.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Test/Unit/Model/ResourceModel/RuleTest.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Test/Unit/Model/ResourceModel/SaveHandlerTest.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Test/Unit/Model/Rss/DiscountsTest.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Test/Unit/Model/Rule/Action/Discount/ByPercentTest.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Test/Unit/Model/Rule/Action/Discount/CartFixedTest.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Test/Unit/Model/Rule/Action/Discount/ToPercentTest.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Test/Unit/Model/Rule/Condition/ProductTest.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Test/Unit/Model/Rule/DataProviderTest.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Test/Unit/Model/Rule/Metadata/ValueProviderTest.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Test/Unit/Model/Rule/Metadata/_files/MetaData.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Test/Unit/Model/RuleRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Test/Unit/Model/RuleTest.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Test/Unit/Model/RulesApplierTest.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Test/Unit/Model/Service/CouponManagementServiceTest.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Test/Unit/Model/System/Config/Source/Coupon/FormatTest.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Test/Unit/Model/UtilityTest.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Test/Unit/Model/Validator/PoolTest.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Test/Unit/Model/ValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Test/Unit/Model/_files/quote_item_downloadable.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Test/Unit/Model/_files/quote_item_simple.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Test/Unit/Observer/AddSalesRuleNameToOrderObserverTest.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Test/Unit/Observer/CatalogAttributeDeleteAfterObserverTest.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Test/Unit/Observer/CatalogAttributeSaveAfterObserverTest.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/Test/Unit/Observer/SalesOrderAfterPlaceObserverTest.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/composer.json
 mode change 100644 => 100755 app/code/Magento/SalesRule/etc/acl.xml
 mode change 100644 => 100755 app/code/Magento/SalesRule/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/SalesRule/etc/adminhtml/events.xml
 mode change 100644 => 100755 app/code/Magento/SalesRule/etc/adminhtml/menu.xml
 mode change 100644 => 100755 app/code/Magento/SalesRule/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/SalesRule/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/SalesRule/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/SalesRule/etc/crontab.xml
 mode change 100644 => 100755 app/code/Magento/SalesRule/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/SalesRule/etc/events.xml
 mode change 100644 => 100755 app/code/Magento/SalesRule/etc/fieldset.xml
 mode change 100644 => 100755 app/code/Magento/SalesRule/etc/frontend/di.xml
 mode change 100644 => 100755 app/code/Magento/SalesRule/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/SalesRule/etc/sales.xml
 mode change 100644 => 100755 app/code/Magento/SalesRule/etc/webapi.xml
 mode change 100644 => 100755 app/code/Magento/SalesRule/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/SalesRule/registration.php
 mode change 100644 => 100755 app/code/Magento/SalesRule/view/adminhtml/layout/sales_rule_promo_quote_couponsgrid.xml
 mode change 100644 => 100755 app/code/Magento/SalesRule/view/adminhtml/layout/sales_rule_promo_quote_edit.xml
 mode change 100644 => 100755 app/code/Magento/SalesRule/view/adminhtml/layout/sales_rule_promo_quote_index.xml
 mode change 100644 => 100755 app/code/Magento/SalesRule/view/adminhtml/templates/promo/salesrulejs.phtml
 mode change 100644 => 100755 app/code/Magento/SalesRule/view/adminhtml/templates/tab/coupons.phtml
 mode change 100644 => 100755 app/code/Magento/SalesRule/view/adminhtml/ui_component/sales_rule_form.xml
 mode change 100644 => 100755 app/code/Magento/SalesRule/view/base/web/js/form/element/coupon-type.js
 mode change 100644 => 100755 app/code/Magento/SalesRule/view/base/web/js/form/element/manage-coupon-codes.js
 mode change 100644 => 100755 app/code/Magento/SalesRule/view/frontend/layout/checkout_cart_index.xml
 mode change 100644 => 100755 app/code/Magento/SalesRule/view/frontend/layout/checkout_index_index.xml
 mode change 100644 => 100755 app/code/Magento/SalesRule/view/frontend/web/js/action/cancel-coupon.js
 mode change 100644 => 100755 app/code/Magento/SalesRule/view/frontend/web/js/action/set-coupon-code.js
 mode change 100644 => 100755 app/code/Magento/SalesRule/view/frontend/web/js/model/payment/discount-messages.js
 mode change 100644 => 100755 app/code/Magento/SalesRule/view/frontend/web/js/view/cart/totals/discount.js
 mode change 100644 => 100755 app/code/Magento/SalesRule/view/frontend/web/js/view/payment/discount-messages.js
 mode change 100644 => 100755 app/code/Magento/SalesRule/view/frontend/web/js/view/payment/discount.js
 mode change 100644 => 100755 app/code/Magento/SalesRule/view/frontend/web/js/view/summary/discount.js
 mode change 100644 => 100755 app/code/Magento/SalesRule/view/frontend/web/template/cart/totals/discount.html
 mode change 100644 => 100755 app/code/Magento/SalesRule/view/frontend/web/template/payment/discount.html
 mode change 100644 => 100755 app/code/Magento/SalesRule/view/frontend/web/template/summary/discount.html
 mode change 100644 => 100755 app/code/Magento/SalesSequence/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/SalesSequence/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/SalesSequence/Model/Builder.php
 mode change 100644 => 100755 app/code/Magento/SalesSequence/Model/Config.php
 mode change 100644 => 100755 app/code/Magento/SalesSequence/Model/EntityPool.php
 mode change 100644 => 100755 app/code/Magento/SalesSequence/Model/Manager.php
 mode change 100644 => 100755 app/code/Magento/SalesSequence/Model/Meta.php
 mode change 100644 => 100755 app/code/Magento/SalesSequence/Model/Profile.php
 mode change 100644 => 100755 app/code/Magento/SalesSequence/Model/ResourceModel/Meta.php
 mode change 100644 => 100755 app/code/Magento/SalesSequence/Model/ResourceModel/Profile.php
 mode change 100644 => 100755 app/code/Magento/SalesSequence/Model/Sequence.php
 mode change 100644 => 100755 app/code/Magento/SalesSequence/Observer/SequenceCreatorObserver.php
 mode change 100644 => 100755 app/code/Magento/SalesSequence/README.md
 mode change 100644 => 100755 app/code/Magento/SalesSequence/Setup/InstallData.php
 mode change 100644 => 100755 app/code/Magento/SalesSequence/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/SalesSequence/Setup/RecurringData.php
 mode change 100644 => 100755 app/code/Magento/SalesSequence/Setup/SequenceCreator.php
 mode change 100644 => 100755 app/code/Magento/SalesSequence/Test/Unit/Model/BuilderTest.php
 mode change 100644 => 100755 app/code/Magento/SalesSequence/Test/Unit/Model/ManagerTest.php
 mode change 100644 => 100755 app/code/Magento/SalesSequence/Test/Unit/Model/ResourceModel/MetaTest.php
 mode change 100644 => 100755 app/code/Magento/SalesSequence/Test/Unit/Model/ResourceModel/ProfileTest.php
 mode change 100644 => 100755 app/code/Magento/SalesSequence/Test/Unit/Model/SequenceTest.php
 mode change 100644 => 100755 app/code/Magento/SalesSequence/composer.json
 mode change 100644 => 100755 app/code/Magento/SalesSequence/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/SalesSequence/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/SalesSequence/registration.php
 mode change 100644 => 100755 app/code/Magento/SampleData/Console/Command/SampleDataDeployCommand.php
 mode change 100644 => 100755 app/code/Magento/SampleData/Console/Command/SampleDataRemoveCommand.php
 mode change 100644 => 100755 app/code/Magento/SampleData/Console/Command/SampleDataResetCommand.php
 mode change 100644 => 100755 app/code/Magento/SampleData/Console/CommandList.php
 mode change 100644 => 100755 app/code/Magento/SampleData/Model/Dependency.php
 mode change 100644 => 100755 app/code/Magento/SampleData/README.md
 mode change 100644 => 100755 app/code/Magento/SampleData/Setup/InstallData.php
 mode change 100644 => 100755 app/code/Magento/SampleData/Test/Unit/Console/Command/AbstractSampleDataCommandTest.php
 mode change 100644 => 100755 app/code/Magento/SampleData/Test/Unit/Console/Command/SampleDataDeployCommandTest.php
 mode change 100644 => 100755 app/code/Magento/SampleData/Test/Unit/Console/Command/SampleDataRemoveCommandTest.php
 mode change 100644 => 100755 app/code/Magento/SampleData/cli_commands.php
 mode change 100644 => 100755 app/code/Magento/SampleData/composer.json
 mode change 100644 => 100755 app/code/Magento/SampleData/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/SampleData/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/SampleData/registration.php
 mode change 100644 => 100755 app/code/Magento/Search/Adapter/Query/Preprocessor/Synonyms.php
 mode change 100644 => 100755 app/code/Magento/Search/Api/Data/SynonymGroupInterface.php
 mode change 100644 => 100755 app/code/Magento/Search/Api/SearchInterface.php
 mode change 100644 => 100755 app/code/Magento/Search/Api/SynonymAnalyzerInterface.php
 mode change 100644 => 100755 app/code/Magento/Search/Api/SynonymGroupRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Search/Block/Adminhtml/Dashboard/Last.php
 mode change 100644 => 100755 app/code/Magento/Search/Block/Adminhtml/Dashboard/Top.php
 mode change 100644 => 100755 app/code/Magento/Search/Block/Adminhtml/Reports/Search.php
 mode change 100644 => 100755 app/code/Magento/Search/Block/Adminhtml/Synonyms.php
 mode change 100644 => 100755 app/code/Magento/Search/Block/Adminhtml/Synonyms/Edit/BackButton.php
 mode change 100644 => 100755 app/code/Magento/Search/Block/Adminhtml/Synonyms/Edit/DeleteButton.php
 mode change 100644 => 100755 app/code/Magento/Search/Block/Adminhtml/Synonyms/Edit/GenericButton.php
 mode change 100644 => 100755 app/code/Magento/Search/Block/Adminhtml/Synonyms/Edit/ResetButton.php
 mode change 100644 => 100755 app/code/Magento/Search/Block/Adminhtml/Synonyms/Edit/SaveAndContinueButton.php
 mode change 100644 => 100755 app/code/Magento/Search/Block/Adminhtml/Synonyms/Edit/SaveButton.php
 mode change 100644 => 100755 app/code/Magento/Search/Block/Adminhtml/Term.php
 mode change 100644 => 100755 app/code/Magento/Search/Block/Adminhtml/Term/Edit.php
 mode change 100644 => 100755 app/code/Magento/Search/Block/Adminhtml/Term/Edit/Form.php
 mode change 100644 => 100755 app/code/Magento/Search/Block/Term.php
 mode change 100644 => 100755 app/code/Magento/Search/Controller/Adminhtml/Synonyms/Delete.php
 mode change 100644 => 100755 app/code/Magento/Search/Controller/Adminhtml/Synonyms/Edit.php
 mode change 100644 => 100755 app/code/Magento/Search/Controller/Adminhtml/Synonyms/Index.php
 mode change 100644 => 100755 app/code/Magento/Search/Controller/Adminhtml/Synonyms/MassDelete.php
 mode change 100644 => 100755 app/code/Magento/Search/Controller/Adminhtml/Synonyms/NewAction.php
 mode change 100644 => 100755 app/code/Magento/Search/Controller/Adminhtml/Synonyms/ResultPageBuilder.php
 mode change 100644 => 100755 app/code/Magento/Search/Controller/Adminhtml/Synonyms/Save.php
 mode change 100644 => 100755 app/code/Magento/Search/Controller/Adminhtml/Term.php
 mode change 100644 => 100755 app/code/Magento/Search/Controller/Adminhtml/Term/Delete.php
 mode change 100644 => 100755 app/code/Magento/Search/Controller/Adminhtml/Term/Edit.php
 mode change 100644 => 100755 app/code/Magento/Search/Controller/Adminhtml/Term/ExportSearchCsv.php
 mode change 100644 => 100755 app/code/Magento/Search/Controller/Adminhtml/Term/ExportSearchExcel.php
 mode change 100644 => 100755 app/code/Magento/Search/Controller/Adminhtml/Term/Index.php
 mode change 100644 => 100755 app/code/Magento/Search/Controller/Adminhtml/Term/MassDelete.php
 mode change 100644 => 100755 app/code/Magento/Search/Controller/Adminhtml/Term/NewAction.php
 mode change 100644 => 100755 app/code/Magento/Search/Controller/Adminhtml/Term/Report.php
 mode change 100644 => 100755 app/code/Magento/Search/Controller/Adminhtml/Term/Save.php
 mode change 100644 => 100755 app/code/Magento/Search/Controller/Ajax/Suggest.php
 mode change 100644 => 100755 app/code/Magento/Search/Controller/RegistryConstants.php
 mode change 100644 => 100755 app/code/Magento/Search/Controller/Term/Popular.php
 mode change 100644 => 100755 app/code/Magento/Search/Helper/Data.php
 mode change 100644 => 100755 app/code/Magento/Search/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Search/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Search/Model/AdapterFactory.php
 mode change 100644 => 100755 app/code/Magento/Search/Model/Adminhtml/System/Config/Source/Engine.php
 mode change 100644 => 100755 app/code/Magento/Search/Model/Autocomplete.php
 mode change 100644 => 100755 app/code/Magento/Search/Model/Autocomplete/DataProviderInterface.php
 mode change 100644 => 100755 app/code/Magento/Search/Model/Autocomplete/Item.php
 mode change 100644 => 100755 app/code/Magento/Search/Model/Autocomplete/ItemFactory.php
 mode change 100644 => 100755 app/code/Magento/Search/Model/Autocomplete/ItemInterface.php
 mode change 100644 => 100755 app/code/Magento/Search/Model/AutocompleteInterface.php
 mode change 100644 => 100755 app/code/Magento/Search/Model/EngineResolver.php
 mode change 100644 => 100755 app/code/Magento/Search/Model/Query.php
 mode change 100644 => 100755 app/code/Magento/Search/Model/QueryFactory.php
 mode change 100644 => 100755 app/code/Magento/Search/Model/QueryFactoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Search/Model/QueryInterface.php
 mode change 100644 => 100755 app/code/Magento/Search/Model/QueryResult.php
 mode change 100644 => 100755 app/code/Magento/Search/Model/ResourceModel/Query.php
 mode change 100644 => 100755 app/code/Magento/Search/Model/ResourceModel/Query/Collection.php
 mode change 100644 => 100755 app/code/Magento/Search/Model/ResourceModel/SynonymGroup.php
 mode change 100644 => 100755 app/code/Magento/Search/Model/ResourceModel/SynonymGroup/Collection.php
 mode change 100644 => 100755 app/code/Magento/Search/Model/ResourceModel/SynonymReader.php
 mode change 100644 => 100755 app/code/Magento/Search/Model/Search.php
 mode change 100644 => 100755 app/code/Magento/Search/Model/SearchCollectionFactory.php
 mode change 100644 => 100755 app/code/Magento/Search/Model/SearchCollectionInterface.php
 mode change 100644 => 100755 app/code/Magento/Search/Model/SearchEngine.php
 mode change 100644 => 100755 app/code/Magento/Search/Model/SearchEngine/Config.php
 mode change 100644 => 100755 app/code/Magento/Search/Model/SearchEngine/Config/Data.php
 mode change 100644 => 100755 app/code/Magento/Search/Model/SearchEngine/MenuBuilder.php
 mode change 100644 => 100755 app/code/Magento/Search/Model/Synonym/DataProvider.php
 mode change 100644 => 100755 app/code/Magento/Search/Model/Synonym/MergeConflictException.php
 mode change 100644 => 100755 app/code/Magento/Search/Model/SynonymAnalyzer.php
 mode change 100644 => 100755 app/code/Magento/Search/Model/SynonymGroup.php
 mode change 100644 => 100755 app/code/Magento/Search/Model/SynonymGroupRepository.php
 mode change 100644 => 100755 app/code/Magento/Search/Model/SynonymReader.php
 mode change 100644 => 100755 app/code/Magento/Search/README.md
 mode change 100644 => 100755 app/code/Magento/Search/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/Search/Setup/UpgradeSchema.php
 mode change 100644 => 100755 app/code/Magento/Search/Test/Unit/Adapter/Query/Preprocessor/SynonymsTest.php
 mode change 100644 => 100755 app/code/Magento/Search/Test/Unit/Controller/Adminhtml/Ajax/SuggestTest.php
 mode change 100644 => 100755 app/code/Magento/Search/Test/Unit/Controller/Adminhtml/Synonyms/DeleteTest.php
 mode change 100644 => 100755 app/code/Magento/Search/Test/Unit/Controller/Adminhtml/Term/ExportSearchCsvTest.php
 mode change 100644 => 100755 app/code/Magento/Search/Test/Unit/Controller/Adminhtml/Term/IndexTest.php
 mode change 100644 => 100755 app/code/Magento/Search/Test/Unit/Controller/Adminhtml/Term/MassDeleteTest.php
 mode change 100644 => 100755 app/code/Magento/Search/Test/Unit/Controller/Adminhtml/Term/ReportTest.php
 mode change 100644 => 100755 app/code/Magento/Search/Test/Unit/Controller/Adminhtml/Term/SaveTest.php
 mode change 100644 => 100755 app/code/Magento/Search/Test/Unit/Helper/DataTest.php
 mode change 100644 => 100755 app/code/Magento/Search/Test/Unit/Model/AdapterFactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Search/Test/Unit/Model/AutocompleteTest.php
 mode change 100644 => 100755 app/code/Magento/Search/Test/Unit/Model/QueryFactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Search/Test/Unit/Model/QueryResultTest.php
 mode change 100644 => 100755 app/code/Magento/Search/Test/Unit/Model/QueryTest.php
 mode change 100644 => 100755 app/code/Magento/Search/Test/Unit/Model/ResourceModel/QueryTest.php
 mode change 100644 => 100755 app/code/Magento/Search/Test/Unit/Model/ResourceModel/SynonymGroupTest.php
 mode change 100644 => 100755 app/code/Magento/Search/Test/Unit/Model/SearchEngine/ConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Search/Test/Unit/Model/SearchEngine/MenuBuilderTest.php
 mode change 100644 => 100755 app/code/Magento/Search/Test/Unit/Model/SearchEngineTest.php
 mode change 100644 => 100755 app/code/Magento/Search/Test/Unit/Model/SynonymGroupRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/Search/Test/Unit/Model/SynonymGroupTest.php
 mode change 100644 => 100755 app/code/Magento/Search/Ui/Component/Listing/Column/Scope/Options.php
 mode change 100644 => 100755 app/code/Magento/Search/Ui/Component/Listing/Column/Store/Options.php
 mode change 100644 => 100755 app/code/Magento/Search/Ui/Component/Listing/Column/StoreView.php
 mode change 100644 => 100755 app/code/Magento/Search/Ui/Component/Listing/Column/SynonymActions.php
 mode change 100644 => 100755 app/code/Magento/Search/Ui/Component/Listing/Column/Website.php
 mode change 100644 => 100755 app/code/Magento/Search/Ui/Component/Listing/Column/Website/Options.php
 mode change 100644 => 100755 app/code/Magento/Search/composer.json
 mode change 100644 => 100755 app/code/Magento/Search/etc/acl.xml
 mode change 100644 => 100755 app/code/Magento/Search/etc/adminhtml/menu.xml
 mode change 100644 => 100755 app/code/Magento/Search/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/Search/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/Search/etc/frontend/page_types.xml
 mode change 100644 => 100755 app/code/Magento/Search/etc/frontend/routes.xml
 mode change 100644 => 100755 app/code/Magento/Search/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Search/etc/search_engine.xml
 mode change 100644 => 100755 app/code/Magento/Search/etc/webapi.xml
 mode change 100644 => 100755 app/code/Magento/Search/i18n/de_DE.csv
 mode change 100644 => 100755 app/code/Magento/Search/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Search/i18n/es_ES.csv
 mode change 100644 => 100755 app/code/Magento/Search/i18n/fr_FR.csv
 mode change 100644 => 100755 app/code/Magento/Search/i18n/nl_NL.csv
 mode change 100644 => 100755 app/code/Magento/Search/i18n/pt_BR.csv
 mode change 100644 => 100755 app/code/Magento/Search/i18n/zh_Hans_CN.csv
 mode change 100644 => 100755 app/code/Magento/Search/registration.php
 mode change 100644 => 100755 app/code/Magento/Search/view/adminhtml/layout/adminhtml_dashboard_index.xml
 mode change 100644 => 100755 app/code/Magento/Search/view/adminhtml/layout/search_synonyms_edit.xml
 mode change 100644 => 100755 app/code/Magento/Search/view/adminhtml/layout/search_synonyms_index.xml
 mode change 100644 => 100755 app/code/Magento/Search/view/adminhtml/layout/search_synonyms_new.xml
 mode change 100644 => 100755 app/code/Magento/Search/view/adminhtml/layout/search_term_block.xml
 mode change 100644 => 100755 app/code/Magento/Search/view/adminhtml/layout/search_term_edit.xml
 mode change 100644 => 100755 app/code/Magento/Search/view/adminhtml/layout/search_term_exportsearchcsv.xml
 mode change 100644 => 100755 app/code/Magento/Search/view/adminhtml/layout/search_term_exportsearchexcel.xml
 mode change 100644 => 100755 app/code/Magento/Search/view/adminhtml/layout/search_term_grid_block.xml
 mode change 100644 => 100755 app/code/Magento/Search/view/adminhtml/layout/search_term_index.xml
 mode change 100644 => 100755 app/code/Magento/Search/view/adminhtml/layout/search_term_report.xml
 mode change 100644 => 100755 app/code/Magento/Search/view/adminhtml/layout/search_term_report_block.xml
 mode change 100644 => 100755 app/code/Magento/Search/view/adminhtml/ui_component/search_synonyms_form.xml
 mode change 100644 => 100755 app/code/Magento/Search/view/adminhtml/ui_component/search_synonyms_grid.xml
 mode change 100644 => 100755 app/code/Magento/Search/view/frontend/layout/default.xml
 mode change 100644 => 100755 app/code/Magento/Search/view/frontend/layout/search_term_popular.xml
 mode change 100644 => 100755 app/code/Magento/Search/view/frontend/requirejs-config.js
 mode change 100644 => 100755 app/code/Magento/Search/view/frontend/templates/form.mini.phtml
 mode change 100644 => 100755 app/code/Magento/Search/view/frontend/templates/term.phtml
 mode change 100644 => 100755 app/code/Magento/Search/view/frontend/web/form-mini.js
 mode change 100644 => 100755 app/code/Magento/Security/Block/Adminhtml/Session/Activity.php
 mode change 100644 => 100755 app/code/Magento/Security/Controller/Adminhtml/Session/Activity.php
 mode change 100644 => 100755 app/code/Magento/Security/Controller/Adminhtml/Session/LogoutAll.php
 mode change 100644 => 100755 app/code/Magento/Security/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Security/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Security/Model/AdminSessionInfo.php
 mode change 100644 => 100755 app/code/Magento/Security/Model/AdminSessionsManager.php
 mode change 100644 => 100755 app/code/Magento/Security/Model/Config.php
 mode change 100644 => 100755 app/code/Magento/Security/Model/Config/Source/ResetMethod.php
 mode change 100644 => 100755 app/code/Magento/Security/Model/ConfigInterface.php
 mode change 100644 => 100755 app/code/Magento/Security/Model/PasswordResetRequestEvent.php
 mode change 100644 => 100755 app/code/Magento/Security/Model/Plugin/AccountManagement.php
 mode change 100644 => 100755 app/code/Magento/Security/Model/Plugin/Auth.php
 mode change 100644 => 100755 app/code/Magento/Security/Model/Plugin/AuthSession.php
 mode change 100644 => 100755 app/code/Magento/Security/Model/Plugin/LoginController.php
 mode change 100644 => 100755 app/code/Magento/Security/Model/ResourceModel/AdminSessionInfo.php
 mode change 100644 => 100755 app/code/Magento/Security/Model/ResourceModel/AdminSessionInfo/Collection.php
 mode change 100644 => 100755 app/code/Magento/Security/Model/ResourceModel/PasswordResetRequestEvent.php
 mode change 100644 => 100755 app/code/Magento/Security/Model/ResourceModel/PasswordResetRequestEvent/Collection.php
 mode change 100644 => 100755 app/code/Magento/Security/Model/ResourceModel/PasswordResetRequestEvent/CollectionFactory.php
 mode change 100644 => 100755 app/code/Magento/Security/Model/SecurityChecker/Frequency.php
 mode change 100644 => 100755 app/code/Magento/Security/Model/SecurityChecker/Quantity.php
 mode change 100644 => 100755 app/code/Magento/Security/Model/SecurityChecker/SecurityCheckerInterface.php
 mode change 100644 => 100755 app/code/Magento/Security/Model/SecurityCookie.php
 mode change 100644 => 100755 app/code/Magento/Security/Model/SecurityManager.php
 mode change 100644 => 100755 app/code/Magento/Security/README.md
 mode change 100644 => 100755 app/code/Magento/Security/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/Security/Setup/UpgradeSchema.php
 mode change 100644 => 100755 app/code/Magento/Security/Test/Unit/Block/Adminhtml/Session/ActivityTest.php
 mode change 100644 => 100755 app/code/Magento/Security/Test/Unit/Controller/Adminhtml/Session/ActivityTest.php
 mode change 100644 => 100755 app/code/Magento/Security/Test/Unit/Controller/Adminhtml/Session/LogoutAllTest.php
 mode change 100644 => 100755 app/code/Magento/Security/Test/Unit/Model/AdminSessionInfoTest.php
 mode change 100644 => 100755 app/code/Magento/Security/Test/Unit/Model/AdminSessionsManagerTest.php
 mode change 100644 => 100755 app/code/Magento/Security/Test/Unit/Model/Config/Source/ResetMethodTest.php
 mode change 100644 => 100755 app/code/Magento/Security/Test/Unit/Model/ConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Security/Test/Unit/Model/Plugin/AccountManagementTest.php
 mode change 100644 => 100755 app/code/Magento/Security/Test/Unit/Model/Plugin/AuthSessionTest.php
 mode change 100644 => 100755 app/code/Magento/Security/Test/Unit/Model/Plugin/AuthTest.php
 mode change 100644 => 100755 app/code/Magento/Security/Test/Unit/Model/Plugin/LoginControllerTest.php
 mode change 100644 => 100755 app/code/Magento/Security/Test/Unit/Model/ResourceModel/AdminSessionInfo/CollectionTest.php
 mode change 100644 => 100755 app/code/Magento/Security/Test/Unit/Model/ResourceModel/AdminSessionInfoTest.php
 mode change 100644 => 100755 app/code/Magento/Security/Test/Unit/Model/ResourceModel/PasswordResetRequestEvent/CollectionFactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Security/Test/Unit/Model/ResourceModel/PasswordResetRequestEvent/CollectionTest.php
 mode change 100644 => 100755 app/code/Magento/Security/Test/Unit/Model/ResourceModel/PasswordResetRequestEventTest.php
 mode change 100644 => 100755 app/code/Magento/Security/Test/Unit/Model/SecurityChecker/FrequencyTest.php
 mode change 100644 => 100755 app/code/Magento/Security/Test/Unit/Model/SecurityChecker/QuantityTest.php
 mode change 100644 => 100755 app/code/Magento/Security/Test/Unit/Model/SecurityCookieTest.php
 mode change 100644 => 100755 app/code/Magento/Security/Test/Unit/Model/SecurityManagerTest.php
 mode change 100644 => 100755 app/code/Magento/Security/composer.json
 mode change 100644 => 100755 app/code/Magento/Security/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/Security/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/Security/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/Security/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/Security/etc/crontab.xml
 mode change 100644 => 100755 app/code/Magento/Security/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Security/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Security/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Security/registration.php
 mode change 100644 => 100755 app/code/Magento/Security/view/adminhtml/layout/default.xml
 mode change 100644 => 100755 app/code/Magento/Security/view/adminhtml/layout/security_session_activity.xml
 mode change 100644 => 100755 app/code/Magento/Security/view/adminhtml/page_layout/admin-popup.xml
 mode change 100644 => 100755 app/code/Magento/Security/view/adminhtml/requirejs-config.js
 mode change 100644 => 100755 app/code/Magento/Security/view/adminhtml/templates/page/activity_link.phtml
 mode change 100644 => 100755 app/code/Magento/Security/view/adminhtml/templates/session/activity.phtml
 mode change 100644 => 100755 app/code/Magento/Security/view/adminhtml/web/css/activity.css
 mode change 100644 => 100755 app/code/Magento/Security/view/adminhtml/web/js/confirm-redirect.js
 mode change 100644 => 100755 app/code/Magento/SendFriend/Block/Plugin/Catalog/Product/View.php
 mode change 100644 => 100755 app/code/Magento/SendFriend/Block/Send.php
 mode change 100644 => 100755 app/code/Magento/SendFriend/Controller/Product.php
 mode change 100644 => 100755 app/code/Magento/SendFriend/Controller/Product/Send.php
 mode change 100644 => 100755 app/code/Magento/SendFriend/Controller/Product/Sendmail.php
 mode change 100644 => 100755 app/code/Magento/SendFriend/Helper/Data.php
 mode change 100644 => 100755 app/code/Magento/SendFriend/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/SendFriend/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/SendFriend/Model/ResourceModel/SendFriend.php
 mode change 100644 => 100755 app/code/Magento/SendFriend/Model/ResourceModel/SendFriend/Collection.php
 mode change 100644 => 100755 app/code/Magento/SendFriend/Model/SendFriend.php
 mode change 100644 => 100755 app/code/Magento/SendFriend/Model/Source/Checktype.php
 mode change 100644 => 100755 app/code/Magento/SendFriend/README.md
 mode change 100644 => 100755 app/code/Magento/SendFriend/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/SendFriend/Test/Unit/Block/Plugin/Catalog/Product/ViewTest.php
 mode change 100644 => 100755 app/code/Magento/SendFriend/Test/Unit/Block/SendTest.php
 mode change 100644 => 100755 app/code/Magento/SendFriend/Test/Unit/Controller/Product/SendTest.php
 mode change 100644 => 100755 app/code/Magento/SendFriend/Test/Unit/Controller/Product/SendmailTest.php
 mode change 100644 => 100755 app/code/Magento/SendFriend/Test/Unit/Model/SendFriendTest.php
 mode change 100644 => 100755 app/code/Magento/SendFriend/composer.json
 mode change 100644 => 100755 app/code/Magento/SendFriend/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/SendFriend/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/SendFriend/etc/email_templates.xml
 mode change 100644 => 100755 app/code/Magento/SendFriend/etc/frontend/di.xml
 mode change 100644 => 100755 app/code/Magento/SendFriend/etc/frontend/page_types.xml
 mode change 100644 => 100755 app/code/Magento/SendFriend/etc/frontend/routes.xml
 mode change 100644 => 100755 app/code/Magento/SendFriend/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/SendFriend/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/SendFriend/registration.php
 mode change 100644 => 100755 app/code/Magento/SendFriend/view/frontend/email/product_share.html
 mode change 100644 => 100755 app/code/Magento/SendFriend/view/frontend/layout/sendfriend_product_send.xml
 mode change 100644 => 100755 app/code/Magento/SendFriend/view/frontend/templates/send.phtml
 mode change 100644 => 100755 app/code/Magento/SendFriend/view/frontend/web/back-event.js
 mode change 100644 => 100755 app/code/Magento/Shipping/Block/Adminhtml/Create.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Block/Adminhtml/Create/Form.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Block/Adminhtml/Create/Items.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Block/Adminhtml/Order/Packaging.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Block/Adminhtml/Order/Packaging/Grid.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Block/Adminhtml/Order/Tracking.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Block/Adminhtml/Order/Tracking/Invoice.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Block/Adminhtml/Order/Tracking/View.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Block/Adminhtml/View.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Block/Adminhtml/View/Comments.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Block/Adminhtml/View/Form.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Block/Adminhtml/View/Items.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Block/Items.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Block/Order/Shipment.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Block/Tracking/Ajax.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Block/Tracking/Link.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Block/Tracking/Popup.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/AddComment.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/AddTrack.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/CreateLabel.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/Email.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/GetShippingItemsGrid.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/Index.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/MassPrintShippingLabel.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/NewAction.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/Pdfshipments.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/PrintAction.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/PrintLabel.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/PrintPackage.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/RemoveTrack.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/Save.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/Start.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/View.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Controller/Adminhtml/Order/ShipmentLoader.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Controller/Adminhtml/Shipment/MassPrintShippingLabel.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Controller/Tracking/Popup.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Helper/Carrier.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Helper/Data.php
 mode change 100644 => 100755 app/code/Magento/Shipping/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Shipping/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Shipping/Model/Carrier/AbstractCarrier.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Model/Carrier/AbstractCarrierInterface.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Model/Carrier/AbstractCarrierOnline.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Model/Carrier/CarrierInterface.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Model/Carrier/Source/GenericDefault.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Model/Carrier/Source/GenericInterface.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Model/CarrierFactory.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Model/CarrierFactoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Model/Config.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Model/Config/Source/Allmethods.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Model/Config/Source/Allspecificcountries.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Model/Config/Source/Online/Mode.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Model/Config/Source/Online/Requesttype.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Model/Info.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Model/Observer.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Model/Order/Pdf/Packaging.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Model/Order/Track.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Model/Rate/Result.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Model/ResourceModel/Order/Track/Collection.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Model/Shipment/Request.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Model/Shipment/ReturnShipment.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Model/ShipmentNotifier.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Model/Shipping.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Model/Shipping/LabelGenerator.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Model/Shipping/Labels.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Model/Simplexml/Element.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Model/Source/HandlingAction.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Model/Source/HandlingType.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Model/Tracking/Result.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Model/Tracking/Result/AbstractResult.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Model/Tracking/Result/Error.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Model/Tracking/Result/Status.php
 mode change 100644 => 100755 app/code/Magento/Shipping/README.md
 mode change 100644 => 100755 app/code/Magento/Shipping/Test/Unit/Block/Adminhtml/Order/TrackingTest.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/AddCommentTest.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/AddTrackTest.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/CreateLabelTest.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/EmailTest.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/GetShippingItemsGridTest.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/NewActionTest.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/PrintLabelTest.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/PrintPackageTest.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/RemoveTrackTest.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/SaveTest.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/ViewTest.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/ShipmentLoaderTest.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Test/Unit/Helper/CarrierTest.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Test/Unit/Model/Carrier/AbstractCarrierOnline/xxe-xml.txt
 mode change 100644 => 100755 app/code/Magento/Shipping/Test/Unit/Model/Carrier/AbstractCarrierOnlineTest.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Test/Unit/Model/Order/TrackTest.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Test/Unit/Model/ShipmentNotifierTest.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Test/Unit/Model/ShipmentTest.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Test/Unit/Model/Shipping/LabelGeneratorTest.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Test/Unit/Model/Shipping/LabelsTest.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Test/Unit/Model/ShippingTest.php
 mode change 100644 => 100755 app/code/Magento/Shipping/Test/Unit/Model/Simplexml/ElementTest.php
 mode change 100644 => 100755 app/code/Magento/Shipping/composer.json
 mode change 100644 => 100755 app/code/Magento/Shipping/etc/acl.xml
 mode change 100644 => 100755 app/code/Magento/Shipping/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/Shipping/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/Shipping/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/Shipping/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/Shipping/etc/crontab.xml
 mode change 100644 => 100755 app/code/Magento/Shipping/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Shipping/etc/frontend/page_types.xml
 mode change 100644 => 100755 app/code/Magento/Shipping/etc/frontend/routes.xml
 mode change 100644 => 100755 app/code/Magento/Shipping/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Shipping/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Shipping/registration.php
 mode change 100644 => 100755 app/code/Magento/Shipping/view/adminhtml/layout/adminhtml_order_shipment_addcomment.xml
 mode change 100644 => 100755 app/code/Magento/Shipping/view/adminhtml/layout/adminhtml_order_shipment_addtrack.xml
 mode change 100644 => 100755 app/code/Magento/Shipping/view/adminhtml/layout/adminhtml_order_shipment_new.xml
 mode change 100644 => 100755 app/code/Magento/Shipping/view/adminhtml/layout/adminhtml_order_shipment_removetrack.xml
 mode change 100644 => 100755 app/code/Magento/Shipping/view/adminhtml/layout/adminhtml_order_shipment_view.xml
 mode change 100644 => 100755 app/code/Magento/Shipping/view/adminhtml/layout/sales_order_invoice_new.xml
 mode change 100644 => 100755 app/code/Magento/Shipping/view/adminhtml/layout/sales_order_view.xml
 mode change 100644 => 100755 app/code/Magento/Shipping/view/adminhtml/templates/create/form.phtml
 mode change 100644 => 100755 app/code/Magento/Shipping/view/adminhtml/templates/create/items.phtml
 mode change 100644 => 100755 app/code/Magento/Shipping/view/adminhtml/templates/create/items/renderer/default.phtml
 mode change 100644 => 100755 app/code/Magento/Shipping/view/adminhtml/templates/order/packaging/grid.phtml
 mode change 100644 => 100755 app/code/Magento/Shipping/view/adminhtml/templates/order/packaging/packed.phtml
 mode change 100644 => 100755 app/code/Magento/Shipping/view/adminhtml/templates/order/packaging/popup.phtml
 mode change 100644 => 100755 app/code/Magento/Shipping/view/adminhtml/templates/order/packaging/popup_content.phtml
 mode change 100644 => 100755 app/code/Magento/Shipping/view/adminhtml/templates/order/tracking.phtml
 mode change 100644 => 100755 app/code/Magento/Shipping/view/adminhtml/templates/order/tracking/view.phtml
 mode change 100644 => 100755 app/code/Magento/Shipping/view/adminhtml/templates/order/view/info.phtml
 mode change 100644 => 100755 app/code/Magento/Shipping/view/adminhtml/templates/view/form.phtml
 mode change 100644 => 100755 app/code/Magento/Shipping/view/adminhtml/templates/view/items.phtml
 mode change 100644 => 100755 app/code/Magento/Shipping/view/adminhtml/templates/view/items/renderer/default.phtml
 mode change 100644 => 100755 app/code/Magento/Shipping/view/adminhtml/web/js/packages.js
 mode change 100644 => 100755 app/code/Magento/Shipping/view/adminhtml/web/order/packaging.js
 mode change 100644 => 100755 app/code/Magento/Shipping/view/frontend/layout/checkout_index_index.xml
 mode change 100644 => 100755 app/code/Magento/Shipping/view/frontend/layout/sales_guest_reorder.xml
 mode change 100644 => 100755 app/code/Magento/Shipping/view/frontend/layout/sales_guest_shipment.xml
 mode change 100644 => 100755 app/code/Magento/Shipping/view/frontend/layout/sales_guest_view.xml
 mode change 100644 => 100755 app/code/Magento/Shipping/view/frontend/layout/sales_order_reorder.xml
 mode change 100644 => 100755 app/code/Magento/Shipping/view/frontend/layout/sales_order_shipment.xml
 mode change 100644 => 100755 app/code/Magento/Shipping/view/frontend/layout/sales_order_view.xml
 mode change 100644 => 100755 app/code/Magento/Shipping/view/frontend/layout/shipping_tracking_popup.xml
 mode change 100644 => 100755 app/code/Magento/Shipping/view/frontend/templates/items.phtml
 mode change 100644 => 100755 app/code/Magento/Shipping/view/frontend/templates/order/shipment.phtml
 mode change 100644 => 100755 app/code/Magento/Shipping/view/frontend/templates/tracking/details.phtml
 mode change 100644 => 100755 app/code/Magento/Shipping/view/frontend/templates/tracking/link.phtml
 mode change 100644 => 100755 app/code/Magento/Shipping/view/frontend/templates/tracking/popup.phtml
 mode change 100644 => 100755 app/code/Magento/Shipping/view/frontend/templates/tracking/progress.phtml
 mode change 100644 => 100755 app/code/Magento/Shipping/view/frontend/web/js/model/config.js
 mode change 100644 => 100755 app/code/Magento/Shipping/view/frontend/web/js/view/checkout/shipping/shipping-policy.js
 mode change 100644 => 100755 app/code/Magento/Shipping/view/frontend/web/template/checkout/shipping/shipping-policy.html
 mode change 100644 => 100755 app/code/Magento/Signifyd/Api/CaseCreationServiceInterface.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Api/CaseManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Api/CaseRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Api/Data/CaseInterface.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Api/Data/CaseSearchResultsInterface.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Api/GuaranteeCancelingServiceInterface.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Api/GuaranteeCreationServiceInterface.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Block/Adminhtml/CaseInfo.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Block/Adminhtml/System/Config/Field/WebhookUrl.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Block/Adminhtml/System/Config/Fieldset/Info.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Block/Fingerprint.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Controller/Webhooks/Handler.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Signifyd/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/CaseEntity.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/CaseManagement.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/CaseRepository.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/CaseServices/CreationService.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/CaseServices/StubUpdatingService.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/CaseServices/UpdatingService.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/CaseServices/UpdatingServiceFactory.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/CaseServices/UpdatingServiceInterface.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/CommentsHistoryUpdater.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/Config.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/CustomerOrders.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/Guarantee/CancelGuaranteeAbility.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/Guarantee/CancelingService.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/Guarantee/CreateGuaranteeAbility.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/Guarantee/CreationService.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/MessageGenerators/CaseRescore.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/MessageGenerators/GeneratorException.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/MessageGenerators/GeneratorFactory.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/MessageGenerators/GeneratorInterface.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/MessageGenerators/PatternGenerator.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/OrderStateService.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/PaymentMethodMapper/PaymentMethodMapper.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/PaymentMethodMapper/XmlToArrayConfigConverter.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/PaymentVerificationFactory.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/PredefinedVerificationCode.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/QuoteSession/Adminhtml/BackendSession.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/QuoteSession/FrontendSession.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/QuoteSession/QuoteSessionInterface.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/ResourceModel/CaseEntity.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/ResourceModel/CaseEntity/Collection.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/SalesOrderGrid/NotSyncedOrderIdListProvider.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/SalesOrderGrid/OrderGridUpdater.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/SignifydGateway/ApiCallException.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/SignifydGateway/ApiClient.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/SignifydGateway/Client/HttpClientFactory.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/SignifydGateway/Client/RequestBuilder.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/SignifydGateway/Client/RequestSender.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/SignifydGateway/Client/ResponseHandler.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/SignifydGateway/Debugger/BlackHole.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/SignifydGateway/Debugger/DebuggerFactory.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/SignifydGateway/Debugger/DebuggerInterface.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/SignifydGateway/Debugger/Log.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/SignifydGateway/Gateway.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/SignifydGateway/GatewayException.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/SignifydGateway/Request/AddressBuilder.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/SignifydGateway/Request/CardBuilder.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/SignifydGateway/Request/ClientVersionBuilder.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/SignifydGateway/Request/CreateCaseBuilder.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/SignifydGateway/Request/CreateCaseBuilderInterface.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/SignifydGateway/Request/PurchaseBuilder.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/SignifydGateway/Request/RecipientBuilder.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/SignifydGateway/Request/SellerBuilder.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/SignifydGateway/Request/UserAccountBuilder.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/SignifydGateway/Response/WebhookMessage.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/SignifydGateway/Response/WebhookMessageReader.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/SignifydGateway/Response/WebhookRequest.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/SignifydGateway/Response/WebhookRequestValidator.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Model/SignifydOrderSessionId.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Observer/PlaceOrder.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Plugin/OrderPlugin.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Plugin/PaymentPlugin.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/README.md
 mode change 100644 => 100755 app/code/Magento/Signifyd/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Test/Unit/Block/Adminhtml/CaseInfoTest.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Test/Unit/Controller/Webhooks/HandlerTest.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Test/Unit/Model/CaseServices/UpdatingServiceFactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Test/Unit/Model/CaseServices/UpdatingServiceTest.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Test/Unit/Model/CommentsHistoryUpdaterTest.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Test/Unit/Model/CustomerOrdersTest.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Test/Unit/Model/Guarantee/CancelGuaranteeAbilityTest.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Test/Unit/Model/Guarantee/CancelingServiceTest.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Test/Unit/Model/Guarantee/CreateGuaranteeAbilityTest.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Test/Unit/Model/Guarantee/CreationServiceTest.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Test/Unit/Model/MessageGenerators/CaseRescoreTest.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Test/Unit/Model/MessageGenerators/GeneratorFactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Test/Unit/Model/MessageGenerators/PatternGeneratorTest.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Test/Unit/Model/OrderStateServiceTest.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Test/Unit/Model/PaymentMethodMapper/XmlToArrayConfigConverterTest.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Test/Unit/Model/PaymentMethodMapper/_files/expected_array.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Test/Unit/Model/PaymentMethodMapper/_files/signifyd_payment_mapping.xml
 mode change 100644 => 100755 app/code/Magento/Signifyd/Test/Unit/Model/PaymentVerificationFactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Test/Unit/Model/SalesOrderGrid/OrderGridUpdaterTest.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Test/Unit/Model/SignifydGateway/Client/HttpClientFactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Test/Unit/Model/SignifydGateway/Client/ResponseHandlerTest.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Test/Unit/Model/SignifydGateway/GatewayTest.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Test/Unit/Model/SignifydGateway/Response/WebhookMessageReaderTest.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Test/Unit/Model/SignifydGateway/Response/WebhookRequestValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Test/Unit/Model/SignifydOrderSessionIdTest.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Test/Unit/Observer/PlaceOrderTest.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/Ui/Component/Listing/Column/Guarantee/Options.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/composer.json
 mode change 100644 => 100755 app/code/Magento/Signifyd/etc/acl.xml
 mode change 100644 => 100755 app/code/Magento/Signifyd/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/Signifyd/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/Signifyd/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/Signifyd/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/Signifyd/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Signifyd/etc/events.xml
 mode change 100644 => 100755 app/code/Magento/Signifyd/etc/frontend/di.xml
 mode change 100644 => 100755 app/code/Magento/Signifyd/etc/frontend/routes.xml
 mode change 100644 => 100755 app/code/Magento/Signifyd/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Signifyd/etc/signifyd_payment_mapping.xml
 mode change 100644 => 100755 app/code/Magento/Signifyd/etc/signifyd_payment_mapping.xsd
 mode change 100644 => 100755 app/code/Magento/Signifyd/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Signifyd/registration.php
 mode change 100644 => 100755 app/code/Magento/Signifyd/view/adminhtml/layout/sales_order_view.xml
 mode change 100644 => 100755 app/code/Magento/Signifyd/view/adminhtml/templates/case_info.phtml
 mode change 100644 => 100755 app/code/Magento/Signifyd/view/adminhtml/ui_component/sales_order_grid.xml
 mode change 100644 => 100755 app/code/Magento/Signifyd/view/adminhtml/web/images/logo.png
 mode change 100644 => 100755 app/code/Magento/Signifyd/view/frontend/layout/checkout_cart_index.xml
 mode change 100644 => 100755 app/code/Magento/Signifyd/view/frontend/layout/checkout_index_index.xml
 mode change 100644 => 100755 app/code/Magento/Signifyd/view/frontend/templates/fingerprint.phtml
 mode change 100644 => 100755 app/code/Magento/Sitemap/Block/Adminhtml/Edit.php
 mode change 100644 => 100755 app/code/Magento/Sitemap/Block/Adminhtml/Edit/Form.php
 mode change 100644 => 100755 app/code/Magento/Sitemap/Block/Adminhtml/Grid/Renderer/Action.php
 mode change 100644 => 100755 app/code/Magento/Sitemap/Block/Adminhtml/Grid/Renderer/Link.php
 mode change 100644 => 100755 app/code/Magento/Sitemap/Block/Adminhtml/Grid/Renderer/Time.php
 mode change 100644 => 100755 app/code/Magento/Sitemap/Block/Adminhtml/Sitemap.php
 mode change 100644 => 100755 app/code/Magento/Sitemap/Block/Robots.php
 mode change 100644 => 100755 app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap.php
 mode change 100644 => 100755 app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap/Delete.php
 mode change 100644 => 100755 app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap/Edit.php
 mode change 100644 => 100755 app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap/Generate.php
 mode change 100644 => 100755 app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap/Index.php
 mode change 100644 => 100755 app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap/NewAction.php
 mode change 100644 => 100755 app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap/Save.php
 mode change 100644 => 100755 app/code/Magento/Sitemap/Helper/Data.php
 mode change 100644 => 100755 app/code/Magento/Sitemap/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Sitemap/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Sitemap/Model/Config/Backend/Priority.php
 mode change 100644 => 100755 app/code/Magento/Sitemap/Model/Config/Backend/Robots.php
 mode change 100644 => 100755 app/code/Magento/Sitemap/Model/Config/Source/Frequency.php
 mode change 100644 => 100755 app/code/Magento/Sitemap/Model/Observer.php
 mode change 100644 => 100755 app/code/Magento/Sitemap/Model/ResourceModel/Catalog/Category.php
 mode change 100644 => 100755 app/code/Magento/Sitemap/Model/ResourceModel/Catalog/Product.php
 mode change 100644 => 100755 app/code/Magento/Sitemap/Model/ResourceModel/Cms/Page.php
 mode change 100644 => 100755 app/code/Magento/Sitemap/Model/ResourceModel/Sitemap.php
 mode change 100644 => 100755 app/code/Magento/Sitemap/Model/ResourceModel/Sitemap/Collection.php
 mode change 100644 => 100755 app/code/Magento/Sitemap/Model/Sitemap.php
 mode change 100644 => 100755 app/code/Magento/Sitemap/Model/Source/Product/Image/IncludeImage.php
 mode change 100644 => 100755 app/code/Magento/Sitemap/README.md
 mode change 100644 => 100755 app/code/Magento/Sitemap/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/Sitemap/Test/Unit/Block/RobotsTest.php
 mode change 100644 => 100755 app/code/Magento/Sitemap/Test/Unit/Controller/Adminhtml/Sitemap/DeleteTest.php
 mode change 100644 => 100755 app/code/Magento/Sitemap/Test/Unit/Controller/Adminhtml/Sitemap/SaveTest.php
 mode change 100644 => 100755 app/code/Magento/Sitemap/Test/Unit/Helper/DataTest.php
 mode change 100644 => 100755 app/code/Magento/Sitemap/Test/Unit/Model/Config/Backend/RobotsTest.php
 mode change 100644 => 100755 app/code/Magento/Sitemap/Test/Unit/Model/ObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Sitemap/Test/Unit/Model/SitemapTest.php
 mode change 100644 => 100755 app/code/Magento/Sitemap/Test/Unit/Model/_files/sitemap-1-1.xml
 mode change 100644 => 100755 app/code/Magento/Sitemap/Test/Unit/Model/_files/sitemap-1-2.xml
 mode change 100644 => 100755 app/code/Magento/Sitemap/Test/Unit/Model/_files/sitemap-1-3.xml
 mode change 100644 => 100755 app/code/Magento/Sitemap/Test/Unit/Model/_files/sitemap-1-4.xml
 mode change 100644 => 100755 app/code/Magento/Sitemap/Test/Unit/Model/_files/sitemap-index.xml
 mode change 100644 => 100755 app/code/Magento/Sitemap/Test/Unit/Model/_files/sitemap-single.xml
 mode change 100644 => 100755 app/code/Magento/Sitemap/composer.json
 mode change 100644 => 100755 app/code/Magento/Sitemap/etc/acl.xml
 mode change 100644 => 100755 app/code/Magento/Sitemap/etc/adminhtml/menu.xml
 mode change 100644 => 100755 app/code/Magento/Sitemap/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/Sitemap/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/Sitemap/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/Sitemap/etc/crontab.xml
 mode change 100644 => 100755 app/code/Magento/Sitemap/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Sitemap/etc/email_templates.xml
 mode change 100644 => 100755 app/code/Magento/Sitemap/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Sitemap/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Sitemap/registration.php
 mode change 100644 => 100755 app/code/Magento/Sitemap/view/adminhtml/email/generate_warnings.html
 mode change 100644 => 100755 app/code/Magento/Sitemap/view/adminhtml/layout/adminhtml_sitemap_index.xml
 mode change 100644 => 100755 app/code/Magento/Sitemap/view/adminhtml/layout/adminhtml_sitemap_index_grid_block.xml
 mode change 100644 => 100755 app/code/Magento/Sitemap/view/frontend/layout/robots_index_index.xml
 mode change 100644 => 100755 app/code/Magento/Store/Api/Data/GroupInterface.php
 mode change 100644 => 100755 app/code/Magento/Store/Api/Data/StoreConfigInterface.php
 mode change 100644 => 100755 app/code/Magento/Store/Api/Data/StoreInterface.php
 mode change 100644 => 100755 app/code/Magento/Store/Api/Data/WebsiteInterface.php
 mode change 100644 => 100755 app/code/Magento/Store/Api/GroupRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Store/Api/StoreConfigManagerInterface.php
 mode change 100644 => 100755 app/code/Magento/Store/Api/StoreCookieManagerInterface.php
 mode change 100644 => 100755 app/code/Magento/Store/Api/StoreManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Store/Api/StoreRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Store/Api/StoreResolverInterface.php
 mode change 100644 => 100755 app/code/Magento/Store/Api/StoreWebsiteRelationInterface.php
 mode change 100644 => 100755 app/code/Magento/Store/Api/WebsiteManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Store/Api/WebsiteRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Store/App/Action/Plugin/Context.php
 mode change 100644 => 100755 app/code/Magento/Store/App/Action/Plugin/StoreCheck.php
 mode change 100644 => 100755 app/code/Magento/Store/App/Config/Source/InitialConfigSource.php
 mode change 100644 => 100755 app/code/Magento/Store/App/Config/Source/RuntimeConfigSource.php
 mode change 100644 => 100755 app/code/Magento/Store/App/Config/Type/Scopes.php
 mode change 100644 => 100755 app/code/Magento/Store/App/FrontController/Plugin/DefaultStore.php
 mode change 100644 => 100755 app/code/Magento/Store/App/FrontController/Plugin/RequestPreprocessor.php
 mode change 100644 => 100755 app/code/Magento/Store/App/Request/PathInfoProcessor.php
 mode change 100644 => 100755 app/code/Magento/Store/App/Response/Redirect.php
 mode change 100644 => 100755 app/code/Magento/Store/Block/Store/Switcher.php
 mode change 100644 => 100755 app/code/Magento/Store/Block/Switcher.php
 mode change 100644 => 100755 app/code/Magento/Store/Console/Command/StoreListCommand.php
 mode change 100644 => 100755 app/code/Magento/Store/Console/Command/WebsiteListCommand.php
 mode change 100644 => 100755 app/code/Magento/Store/Controller/Store/SwitchAction.php
 mode change 100644 => 100755 app/code/Magento/Store/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Store/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Store/Model/Address/Renderer.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/App/Emulation.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/Argument/Interpreter/ServiceUrl.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/BaseUrlChecker.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/Config/Converter.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/Config/Importer.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/Config/Importer/DataDifferenceCalculator.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/Config/Importer/Processor/Create.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/Config/Importer/Processor/Delete.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/Config/Importer/Processor/ProcessorFactory.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/Config/Importer/Processor/ProcessorInterface.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/Config/Importer/Processor/Update.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/Config/Placeholder.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/Config/Processor/Fallback.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/Config/Processor/Placeholder.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/Config/Reader/Source/Dynamic/DefaultScope.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/Config/Reader/Source/Dynamic/Store.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/Config/Reader/Source/Dynamic/Website.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/Config/Reader/Source/Initial/DefaultScope.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/Config/Reader/Source/Initial/Store.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/Config/Reader/Source/Initial/Website.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/Config/StoreView.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/Config/Validator.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/Data/StoreConfig.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/DefaultStoreScopeProvider.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/Group.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/GroupRepository.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/HeaderProvider/Hsts.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/HeaderProvider/UpgradeInsecure.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/Information.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/Message/EmptyGroupCategory.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/PathConfig.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/Plugin/StoreCookie.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/Resolver/Group.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/Resolver/Store.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/Resolver/Website.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/ResourceModel/Config/Collection/Scoped.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/ResourceModel/Group.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/ResourceModel/Group/Collection.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/ResourceModel/Store.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/ResourceModel/Store/Collection.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/ResourceModel/StoreWebsiteRelation.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/ResourceModel/Website.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/ResourceModel/Website/Collection.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/ResourceModel/Website/Grid/Collection.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/ScopeFallbackResolver.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/ScopeInterface.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/ScopeTreeProvider.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/ScopeTypeNormalizer.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/ScopeValidator.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/Service/StoreConfigManager.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/Store.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/StoreCookieManager.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/StoreIsInactiveException.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/StoreManagement.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/StoreManager.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/StoreManagerInterface.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/StoreRepository.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/StoreResolver.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/StoreResolver/Group.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/StoreResolver/ReaderInterface.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/StoreResolver/ReaderList.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/StoreResolver/Store.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/StoreResolver/Website.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/StoreScopeProvider.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/StoresConfig.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/System/Store.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/Website.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/WebsiteManagement.php
 mode change 100644 => 100755 app/code/Magento/Store/Model/WebsiteRepository.php
 mode change 100644 => 100755 app/code/Magento/Store/README.md
 mode change 100644 => 100755 app/code/Magento/Store/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/Store/Setup/UpgradeData.php
 mode change 100644 => 100755 app/code/Magento/Store/Setup/UpgradeSchema.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/App/Action/Plugin/ContextTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/App/Action/Plugin/StoreCheckTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/App/Config/Source/InitialConfigSourceTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/App/Config/Source/RuntimeConfigSourceTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/App/Config/Type/ScopesTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/App/FrontController/Plugin/RequestPreprocessorTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/App/Request/PathInfoProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/App/Response/RedirectTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Block/Store/SwitcherTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Block/SwitcherTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Console/Command/StoreListCommandTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Console/Command/WebsiteListCommandTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Controller/Store/SwitchActionTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Model/Address/RendererTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Model/App/EmulationTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Model/BaseUrlCheckerTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Model/Config/ConverterTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Model/Config/Importer/DataDifferenceCalculatorTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Model/Config/Importer/Processor/CreateTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Model/Config/Importer/Processor/DeleteTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Model/Config/Importer/Processor/ProcessorFactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Model/Config/Importer/Processor/UpdateTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Model/Config/ImporterTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Model/Config/PlaceholderTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Model/Config/Processor/PlaceholderTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Model/Config/Reader/Source/Dynamic/DefaultScopeTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Model/Config/Reader/Source/Dynamic/StoreTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Model/Config/Reader/Source/Dynamic/WebsiteTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Model/Config/Reader/Source/Initial/DefaultScopeTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Model/Config/Reader/Source/Initial/StoreTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Model/Config/Reader/Source/Initial/WebsiteTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Model/Config/ValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Model/HeaderProvider/HstsTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Model/HeaderProvider/UpgradeInsecureTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Model/InformationTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Model/Message/EmptyGroupCategoryTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Model/PathConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Model/Plugin/StoreCookieTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Model/Resolver/GroupTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Model/Resolver/StoreTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Model/Resolver/WebsiteTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Model/ResourceModel/StoreWebsiteRelationTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Model/ScopeFallbackResolverTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Model/ScopeTreeProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Model/ScopeTypeNormalizerTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Model/ScopeValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Model/Service/StoreConfigManagerTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Model/StoreManagementTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Model/StoreManagerTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Model/StoreRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Model/StoreTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Model/StoresConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Model/System/StoreTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Model/WebsiteManagementTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Model/WebsiteRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Model/WebsiteTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Setup/UpgradeDataTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Ui/Component/Listing/Column/StoreTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Url/Plugin/RouteParamsResolverTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Test/Unit/Url/Plugin/SecurityInfoTest.php
 mode change 100644 => 100755 app/code/Magento/Store/Ui/Component/Form/Fieldset/Websites.php
 mode change 100644 => 100755 app/code/Magento/Store/Ui/Component/Listing/Column/Store.php
 mode change 100644 => 100755 app/code/Magento/Store/Ui/Component/Listing/Column/Store/Options.php
 mode change 100644 => 100755 app/code/Magento/Store/Url/Plugin/RouteParamsResolver.php
 mode change 100644 => 100755 app/code/Magento/Store/Url/Plugin/SecurityInfo.php
 mode change 100644 => 100755 app/code/Magento/Store/composer.json
 mode change 100644 => 100755 app/code/Magento/Store/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/Store/etc/cache.xml
 mode change 100644 => 100755 app/code/Magento/Store/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/Store/etc/config.xsd
 mode change 100644 => 100755 app/code/Magento/Store/etc/data_source/website.xml
 mode change 100644 => 100755 app/code/Magento/Store/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Store/etc/frontend/di.xml
 mode change 100644 => 100755 app/code/Magento/Store/etc/frontend/routes.xml
 mode change 100644 => 100755 app/code/Magento/Store/etc/frontend/sections.xml
 mode change 100644 => 100755 app/code/Magento/Store/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Store/etc/webapi.xml
 mode change 100644 => 100755 app/code/Magento/Store/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Store/registration.php
 mode change 100644 => 100755 app/code/Magento/Store/view/frontend/templates/switch/flags.phtml
 mode change 100644 => 100755 app/code/Magento/Store/view/frontend/templates/switch/languages.phtml
 mode change 100644 => 100755 app/code/Magento/Store/view/frontend/templates/switch/stores.phtml
 mode change 100644 => 100755 app/code/Magento/Swagger/Block/Index.php
 mode change 100644 => 100755 app/code/Magento/Swagger/Controller/Index/Index.php
 mode change 100644 => 100755 app/code/Magento/Swagger/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Swagger/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Swagger/README.md
 mode change 100644 => 100755 app/code/Magento/Swagger/Test/Unit/Controller/Index/IndexTest.php
 mode change 100644 => 100755 app/code/Magento/Swagger/composer.json
 mode change 100644 => 100755 app/code/Magento/Swagger/etc/frontend/routes.xml
 mode change 100644 => 100755 app/code/Magento/Swagger/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Swagger/registration.php
 mode change 100644 => 100755 app/code/Magento/Swagger/view/frontend/layout/swagger_index_index.xml
 mode change 100644 => 100755 app/code/Magento/Swagger/view/frontend/templates/swagger-ui/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Swagger/view/frontend/templates/swagger-ui/index.phtml
 mode change 100644 => 100755 app/code/Magento/Swagger/view/frontend/web/swagger-ui/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Swagger/view/frontend/web/swagger-ui/css/print.css
 mode change 100644 => 100755 app/code/Magento/Swagger/view/frontend/web/swagger-ui/css/reset.css
 mode change 100644 => 100755 app/code/Magento/Swagger/view/frontend/web/swagger-ui/css/screen.css
 mode change 100644 => 100755 app/code/Magento/Swagger/view/frontend/web/swagger-ui/css/style.css
 mode change 100644 => 100755 app/code/Magento/Swagger/view/frontend/web/swagger-ui/css/typography.css
 mode change 100644 => 100755 app/code/Magento/Swagger/view/frontend/web/swagger-ui/fonts/droid-sans-v6-latin-700.eot
 mode change 100644 => 100755 app/code/Magento/Swagger/view/frontend/web/swagger-ui/fonts/droid-sans-v6-latin-700.svg
 mode change 100644 => 100755 app/code/Magento/Swagger/view/frontend/web/swagger-ui/fonts/droid-sans-v6-latin-700.ttf
 mode change 100644 => 100755 app/code/Magento/Swagger/view/frontend/web/swagger-ui/fonts/droid-sans-v6-latin-700.woff
 mode change 100644 => 100755 app/code/Magento/Swagger/view/frontend/web/swagger-ui/fonts/droid-sans-v6-latin-700.woff2
 mode change 100644 => 100755 app/code/Magento/Swagger/view/frontend/web/swagger-ui/fonts/droid-sans-v6-latin-regular.eot
 mode change 100644 => 100755 app/code/Magento/Swagger/view/frontend/web/swagger-ui/fonts/droid-sans-v6-latin-regular.svg
 mode change 100644 => 100755 app/code/Magento/Swagger/view/frontend/web/swagger-ui/fonts/droid-sans-v6-latin-regular.ttf
 mode change 100644 => 100755 app/code/Magento/Swagger/view/frontend/web/swagger-ui/fonts/droid-sans-v6-latin-regular.woff
 mode change 100644 => 100755 app/code/Magento/Swagger/view/frontend/web/swagger-ui/fonts/droid-sans-v6-latin-regular.woff2
 mode change 100644 => 100755 app/code/Magento/Swagger/view/frontend/web/swagger-ui/images/explorer_icons.png
 mode change 100644 => 100755 app/code/Magento/Swagger/view/frontend/web/swagger-ui/images/logo_small.png
 mode change 100644 => 100755 app/code/Magento/Swagger/view/frontend/web/swagger-ui/images/pet_store_api.png
 mode change 100644 => 100755 app/code/Magento/Swagger/view/frontend/web/swagger-ui/images/throbber.gif
 mode change 100644 => 100755 app/code/Magento/Swagger/view/frontend/web/swagger-ui/images/wordnik_api.png
 mode change 100644 => 100755 app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lang/en.js
 mode change 100644 => 100755 app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lang/es.js
 mode change 100644 => 100755 app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lang/pt.js
 mode change 100644 => 100755 app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lang/ru.js
 mode change 100644 => 100755 app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lang/translator.js
 mode change 100644 => 100755 app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lib/backbone-min.js
 mode change 100644 => 100755 app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lib/handlebars.min-v4.0.10.js
 mode change 100644 => 100755 app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lib/highlight.9.1.0.pack.js
 mode change 100644 => 100755 app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lib/highlight.9.1.0.pack_extended.js
 mode change 100644 => 100755 app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lib/jquery-1.8.0.min.js
 mode change 100644 => 100755 app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lib/jquery.ba-bbq.min.js
 mode change 100644 => 100755 app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lib/jquery.slideto.min.js
 mode change 100644 => 100755 app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lib/jquery.wiggle.min.js
 mode change 100644 => 100755 app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lib/jsoneditor.min.js
 mode change 100644 => 100755 app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lib/lodash.min.js
 mode change 100644 => 100755 app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lib/marked.js
 mode change 100644 => 100755 app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lib/object-assign-pollyfill.js
 mode change 100644 => 100755 app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lib/swagger-oauth.js
 mode change 100644 => 100755 app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lib/underscore-min.js
 mode change 100644 => 100755 app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lib/underscore-min.map
 mode change 100644 => 100755 app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/magento-swagger.js
 mode change 100644 => 100755 app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/swagger-ui.js
 mode change 100644 => 100755 app/code/Magento/Swatches/Block/Adminhtml/Attribute/Edit/Options/AbstractSwatch.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Block/Adminhtml/Attribute/Edit/Options/Text.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Block/Adminhtml/Attribute/Edit/Options/Visual.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Block/Adminhtml/Product/Attribute/Edit/Form.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Block/LayeredNavigation/RenderLayered.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Block/Product/Renderer/Configurable.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Block/Product/Renderer/Listing/Configurable.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Controller/Adminhtml/Iframe/Show.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Controller/Adminhtml/Product/Attribute/Plugin/Save.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Controller/Ajax/Media.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Helper/Data.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Helper/Media.php
 mode change 100644 => 100755 app/code/Magento/Swatches/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Swatches/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Swatches/Model/AttributesList.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Model/Form/Element/AbstractSwatch.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Model/Form/Element/SwatchText.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Model/Form/Element/SwatchVisual.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Model/Plugin/Configurable.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Model/Plugin/EavAttribute.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Model/Plugin/FilterRenderer.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Model/Plugin/Product.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Model/Plugin/ProductImage.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Model/ResourceModel/Swatch.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Model/ResourceModel/Swatch/Collection.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Model/Swatch.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Model/SwatchAttributeCodes.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Model/SwatchAttributesProvider.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Observer/AddFieldsToAttributeObserver.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Observer/AddSwatchAttributeTypeObserver.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Plugin/Catalog/CacheInvalidate.php
 mode change 100644 => 100755 app/code/Magento/Swatches/README.md
 mode change 100644 => 100755 app/code/Magento/Swatches/Setup/InstallData.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Setup/UpgradeData.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Test/Unit/Block/Adminhtml/Attribute/Edit/Options/AbstractSwatchTest.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Test/Unit/Block/Adminhtml/Product/Attribute/Edit/FormTest.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Test/Unit/Block/LayeredNavigation/RenderLayeredTest.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Test/Unit/Block/Product/Renderer/ConfigurableTest.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Test/Unit/Block/Product/Renderer/Listing/ConfigurableTest.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Test/Unit/Controller/Adminhtml/Iframe/ShowTest.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Test/Unit/Controller/Adminhtml/Product/Attribute/Plugin/SaveTest.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Test/Unit/Controller/Ajax/MediaTest.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Test/Unit/Helper/DataTest.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Test/Unit/Helper/MediaTest.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Test/Unit/Model/AttributesListTest.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Test/Unit/Model/Form/Element/AbstractSwatchTest.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Test/Unit/Model/Plugin/ConfigurableTest.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Test/Unit/Model/Plugin/EavAttributeTest.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Test/Unit/Model/Plugin/FilterRendererTest.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Test/Unit/Model/Plugin/ProductImageTest.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Test/Unit/Model/Plugin/ProductTest.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Test/Unit/Model/SwatchAttributeCodesTest.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Test/Unit/Model/SwatchAttributesProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Test/Unit/Observer/AddFieldsToAttributeObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Test/Unit/Observer/AddSwatchAttributeTypeObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Swatches/Test/Unit/Plugin/Catalog/CacheInvalidateTest.php
 mode change 100644 => 100755 app/code/Magento/Swatches/composer.json
 mode change 100644 => 100755 app/code/Magento/Swatches/etc/acl.xml
 mode change 100644 => 100755 app/code/Magento/Swatches/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/Swatches/etc/adminhtml/events.xml
 mode change 100644 => 100755 app/code/Magento/Swatches/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/Swatches/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/Swatches/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/Swatches/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Swatches/etc/frontend/routes.xml
 mode change 100644 => 100755 app/code/Magento/Swatches/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Swatches/etc/view.xml
 mode change 100644 => 100755 app/code/Magento/Swatches/i18n/de_DE.csv
 mode change 100644 => 100755 app/code/Magento/Swatches/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Swatches/i18n/es_ES.csv
 mode change 100644 => 100755 app/code/Magento/Swatches/i18n/fr_FR.csv
 mode change 100644 => 100755 app/code/Magento/Swatches/i18n/nl_NL.csv
 mode change 100644 => 100755 app/code/Magento/Swatches/i18n/pt_BR.csv
 mode change 100644 => 100755 app/code/Magento/Swatches/i18n/zh_Hans_CN.csv
 mode change 100644 => 100755 app/code/Magento/Swatches/registration.php
 mode change 100644 => 100755 app/code/Magento/Swatches/view/adminhtml/layout/catalog_product_attribute_edit.xml
 mode change 100644 => 100755 app/code/Magento/Swatches/view/adminhtml/layout/catalog_product_form.xml
 mode change 100644 => 100755 app/code/Magento/Swatches/view/adminhtml/layout/catalog_product_superconfig_config.xml
 mode change 100644 => 100755 app/code/Magento/Swatches/view/adminhtml/requirejs-config.js
 mode change 100644 => 100755 app/code/Magento/Swatches/view/adminhtml/templates/catalog/product/attribute/js.phtml
 mode change 100644 => 100755 app/code/Magento/Swatches/view/adminhtml/templates/catalog/product/attribute/text.phtml
 mode change 100644 => 100755 app/code/Magento/Swatches/view/adminhtml/templates/catalog/product/attribute/visual.phtml
 mode change 100644 => 100755 app/code/Magento/Swatches/view/adminhtml/templates/catalog/product/edit/attribute/steps/attributes_values.phtml
 mode change 100644 => 100755 app/code/Magento/Swatches/view/adminhtml/ui_component/design_config_form.xml
 mode change 100644 => 100755 app/code/Magento/Swatches/view/adminhtml/ui_component/product_attribute_add_form.xml
 mode change 100644 => 100755 app/code/Magento/Swatches/view/adminhtml/web/css/swatches.css
 mode change 100644 => 100755 app/code/Magento/Swatches/view/adminhtml/web/js/form/element/swatch-visual.js
 mode change 100644 => 100755 app/code/Magento/Swatches/view/adminhtml/web/js/product-attributes.js
 mode change 100644 => 100755 app/code/Magento/Swatches/view/adminhtml/web/js/text.js
 mode change 100644 => 100755 app/code/Magento/Swatches/view/adminhtml/web/js/type-change.js
 mode change 100644 => 100755 app/code/Magento/Swatches/view/adminhtml/web/js/visual.js
 mode change 100644 => 100755 app/code/Magento/Swatches/view/adminhtml/web/template/swatch-visual.html
 mode change 100644 => 100755 app/code/Magento/Swatches/view/frontend/layout/catalog_category_view.xml
 mode change 100644 => 100755 app/code/Magento/Swatches/view/frontend/layout/catalogsearch_advanced_result.xml
 mode change 100644 => 100755 app/code/Magento/Swatches/view/frontend/layout/catalogsearch_result_index.xml
 mode change 100644 => 100755 app/code/Magento/Swatches/view/frontend/layout/checkout_cart_configure_type_configurable.xml
 mode change 100644 => 100755 app/code/Magento/Swatches/view/frontend/layout/wishlist_index_configure_type_configurable.xml
 mode change 100644 => 100755 app/code/Magento/Swatches/view/frontend/templates/product/layered/renderer.phtml
 mode change 100644 => 100755 app/code/Magento/Swatches/view/frontend/templates/product/listing/renderer.phtml
 mode change 100644 => 100755 app/code/Magento/Swatches/view/frontend/templates/product/view/renderer.phtml
 mode change 100644 => 100755 app/code/Magento/Swatches/view/frontend/web/css/swatches.css
 mode change 100644 => 100755 app/code/Magento/Swatches/view/frontend/web/images/loader-2.gif
 mode change 100644 => 100755 app/code/Magento/Swatches/view/frontend/web/js/catalog-add-to-cart.js
 mode change 100644 => 100755 app/code/Magento/Swatches/view/frontend/web/js/configurable-customer-data.js
 mode change 100644 => 100755 app/code/Magento/Swatches/view/frontend/web/js/swatch-renderer.js
 mode change 100644 => 100755 app/code/Magento/SwatchesLayeredNavigation/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/SwatchesLayeredNavigation/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/SwatchesLayeredNavigation/README.md
 mode change 100644 => 100755 app/code/Magento/SwatchesLayeredNavigation/composer.json
 mode change 100644 => 100755 app/code/Magento/SwatchesLayeredNavigation/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/SwatchesLayeredNavigation/registration.php
 mode change 100644 => 100755 app/code/Magento/SwatchesLayeredNavigation/view/adminhtml/ui_component/product_attribute_add_form.xml
 mode change 100644 => 100755 app/code/Magento/Tax/Api/Data/AppliedTaxInterface.php
 mode change 100644 => 100755 app/code/Magento/Tax/Api/Data/AppliedTaxRateInterface.php
 mode change 100644 => 100755 app/code/Magento/Tax/Api/Data/GrandTotalDetailsInterface.php
 mode change 100644 => 100755 app/code/Magento/Tax/Api/Data/GrandTotalRatesInterface.php
 mode change 100644 => 100755 app/code/Magento/Tax/Api/Data/OrderTaxDetailsAppliedTaxInterface.php
 mode change 100644 => 100755 app/code/Magento/Tax/Api/Data/OrderTaxDetailsInterface.php
 mode change 100644 => 100755 app/code/Magento/Tax/Api/Data/OrderTaxDetailsItemInterface.php
 mode change 100644 => 100755 app/code/Magento/Tax/Api/Data/QuoteDetailsInterface.php
 mode change 100644 => 100755 app/code/Magento/Tax/Api/Data/QuoteDetailsItemInterface.php
 mode change 100644 => 100755 app/code/Magento/Tax/Api/Data/TaxClassInterface.php
 mode change 100644 => 100755 app/code/Magento/Tax/Api/Data/TaxClassKeyInterface.php
 mode change 100644 => 100755 app/code/Magento/Tax/Api/Data/TaxClassSearchResultsInterface.php
 mode change 100644 => 100755 app/code/Magento/Tax/Api/Data/TaxDetailsInterface.php
 mode change 100644 => 100755 app/code/Magento/Tax/Api/Data/TaxDetailsItemInterface.php
 mode change 100644 => 100755 app/code/Magento/Tax/Api/Data/TaxRateInterface.php
 mode change 100644 => 100755 app/code/Magento/Tax/Api/Data/TaxRateSearchResultsInterface.php
 mode change 100644 => 100755 app/code/Magento/Tax/Api/Data/TaxRateTitleInterface.php
 mode change 100644 => 100755 app/code/Magento/Tax/Api/Data/TaxRuleInterface.php
 mode change 100644 => 100755 app/code/Magento/Tax/Api/Data/TaxRuleSearchResultsInterface.php
 mode change 100644 => 100755 app/code/Magento/Tax/Api/OrderTaxManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Tax/Api/TaxAddressManagerInterface.php
 mode change 100644 => 100755 app/code/Magento/Tax/Api/TaxCalculationInterface.php
 mode change 100644 => 100755 app/code/Magento/Tax/Api/TaxClassManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Tax/Api/TaxClassRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Tax/Api/TaxRateManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Tax/Api/TaxRateRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Tax/Api/TaxRuleRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Tax/Block/Adminhtml/Frontend/Region/Updater.php
 mode change 100644 => 100755 app/code/Magento/Tax/Block/Adminhtml/Items/Price/Renderer.php
 mode change 100644 => 100755 app/code/Magento/Tax/Block/Adminhtml/Rate/Form.php
 mode change 100644 => 100755 app/code/Magento/Tax/Block/Adminhtml/Rate/Grid/Renderer/Data.php
 mode change 100644 => 100755 app/code/Magento/Tax/Block/Adminhtml/Rate/Title.php
 mode change 100644 => 100755 app/code/Magento/Tax/Block/Adminhtml/Rate/Title/Fieldset.php
 mode change 100644 => 100755 app/code/Magento/Tax/Block/Adminhtml/Rate/Toolbar/Add.php
 mode change 100644 => 100755 app/code/Magento/Tax/Block/Adminhtml/Rate/Toolbar/Save.php
 mode change 100644 => 100755 app/code/Magento/Tax/Block/Adminhtml/Rule.php
 mode change 100644 => 100755 app/code/Magento/Tax/Block/Adminhtml/Rule/Edit.php
 mode change 100644 => 100755 app/code/Magento/Tax/Block/Adminhtml/Rule/Edit/Form.php
 mode change 100644 => 100755 app/code/Magento/Tax/Block/Checkout/Discount.php
 mode change 100644 => 100755 app/code/Magento/Tax/Block/Checkout/Grandtotal.php
 mode change 100644 => 100755 app/code/Magento/Tax/Block/Checkout/Shipping.php
 mode change 100644 => 100755 app/code/Magento/Tax/Block/Checkout/Shipping/Price.php
 mode change 100644 => 100755 app/code/Magento/Tax/Block/Checkout/Subtotal.php
 mode change 100644 => 100755 app/code/Magento/Tax/Block/Checkout/Tax.php
 mode change 100644 => 100755 app/code/Magento/Tax/Block/Grid/Renderer/Codes.php
 mode change 100644 => 100755 app/code/Magento/Tax/Block/Item/Price/Renderer.php
 mode change 100644 => 100755 app/code/Magento/Tax/Block/Sales/Order/Tax.php
 mode change 100644 => 100755 app/code/Magento/Tax/Controller/Adminhtml/Rate.php
 mode change 100644 => 100755 app/code/Magento/Tax/Controller/Adminhtml/Rate/Add.php
 mode change 100644 => 100755 app/code/Magento/Tax/Controller/Adminhtml/Rate/AjaxDelete.php
 mode change 100644 => 100755 app/code/Magento/Tax/Controller/Adminhtml/Rate/AjaxLoad.php
 mode change 100644 => 100755 app/code/Magento/Tax/Controller/Adminhtml/Rate/AjaxSave.php
 mode change 100644 => 100755 app/code/Magento/Tax/Controller/Adminhtml/Rate/Delete.php
 mode change 100644 => 100755 app/code/Magento/Tax/Controller/Adminhtml/Rate/Edit.php
 mode change 100644 => 100755 app/code/Magento/Tax/Controller/Adminhtml/Rate/Index.php
 mode change 100644 => 100755 app/code/Magento/Tax/Controller/Adminhtml/Rate/Save.php
 mode change 100644 => 100755 app/code/Magento/Tax/Controller/Adminhtml/Rule.php
 mode change 100644 => 100755 app/code/Magento/Tax/Controller/Adminhtml/Rule/AjaxLoadRates.php
 mode change 100644 => 100755 app/code/Magento/Tax/Controller/Adminhtml/Rule/Delete.php
 mode change 100644 => 100755 app/code/Magento/Tax/Controller/Adminhtml/Rule/Edit.php
 mode change 100644 => 100755 app/code/Magento/Tax/Controller/Adminhtml/Rule/Index.php
 mode change 100644 => 100755 app/code/Magento/Tax/Controller/Adminhtml/Rule/NewAction.php
 mode change 100644 => 100755 app/code/Magento/Tax/Controller/Adminhtml/Rule/Save.php
 mode change 100644 => 100755 app/code/Magento/Tax/Controller/Adminhtml/Tax.php
 mode change 100644 => 100755 app/code/Magento/Tax/Controller/Adminhtml/Tax/AjaxDelete.php
 mode change 100644 => 100755 app/code/Magento/Tax/Controller/Adminhtml/Tax/AjaxSave.php
 mode change 100644 => 100755 app/code/Magento/Tax/Controller/Adminhtml/Tax/IgnoreTaxNotification.php
 mode change 100644 => 100755 app/code/Magento/Tax/Controller/RegistryConstants.php
 mode change 100644 => 100755 app/code/Magento/Tax/CustomerData/CheckoutTotalsJsLayoutDataProvider.php
 mode change 100644 => 100755 app/code/Magento/Tax/Helper/Data.php
 mode change 100644 => 100755 app/code/Magento/Tax/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Tax/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Tax/Model/AggregateSalesReportTaxData.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/Api/SearchCriteria/JoinProcessor/CalculationData.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/Api/SearchCriteria/JoinProcessor/CustomerTaxClass.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/Api/SearchCriteria/JoinProcessor/ProductTaxClass.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/Api/SearchCriteria/JoinProcessor/Rate.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/Api/SearchCriteria/JoinProcessor/RateCode.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/App/Action/ContextPlugin.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/Calculation.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/Calculation/AbstractAggregateCalculator.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/Calculation/AbstractCalculator.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/Calculation/CalculatorFactory.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/Calculation/GrandTotalDetails.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/Calculation/GrandTotalRates.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/Calculation/Rate.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/Calculation/Rate/Converter.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/Calculation/Rate/Title.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/Calculation/RateFactory.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/Calculation/RateRegistry.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/Calculation/RateRepository.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/Calculation/RowBaseCalculator.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/Calculation/Rule.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/Calculation/Rule/Validator.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/Calculation/TaxRuleRegistry.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/Calculation/TotalBaseCalculator.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/Calculation/UnitBaseCalculator.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/ClassModel.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/ClassModelRegistry.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/Config.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/Config/Notification.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/Config/Price/IncludePrice.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/Config/Source/Apply/On.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/Config/Source/Basedon.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/Config/Source/Catalog.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/Config/TaxClass.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/Layout/DepersonalizePlugin.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/Plugin/OrderSave.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/Quote/GrandTotalDetailsPlugin.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/Quote/ToOrderConverter.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/Rate/Provider.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/Rate/Source.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/ResourceModel/Calculation.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/ResourceModel/Calculation/Collection.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/ResourceModel/Calculation/Rate.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/ResourceModel/Calculation/Rate/Collection.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/ResourceModel/Calculation/Rate/Title.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/ResourceModel/Calculation/Rate/Title/Collection.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/ResourceModel/Calculation/Rule.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/ResourceModel/Calculation/Rule/Collection.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/ResourceModel/Report/Collection.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/ResourceModel/Report/Tax.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/ResourceModel/Report/Tax/Createdat.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/ResourceModel/Report/Tax/Updatedat.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/ResourceModel/Report/Updatedat/Collection.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/ResourceModel/Sales/Order/Tax.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/ResourceModel/Sales/Order/Tax/Collection.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/ResourceModel/TaxClass.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/ResourceModel/TaxClass/Collection.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/Sales/Order/Details.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/Sales/Order/Tax.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/Sales/Order/TaxManagement.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/Sales/Pdf/Grandtotal.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/Sales/Pdf/Shipping.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/Sales/Pdf/Subtotal.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/Sales/Pdf/Tax.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/Sales/Quote/ItemDetails.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/Sales/Quote/QuoteDetails.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/Sales/Total/Quote/CommonTaxCollector.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/Sales/Total/Quote/Shipping.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/Sales/Total/Quote/Subtotal.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/System/Config/Source/Algorithm.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/System/Config/Source/Apply.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/System/Config/Source/PriceType.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/System/Config/Source/Tax/Country.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/System/Config/Source/Tax/Display/Type.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/System/Config/Source/Tax/Region.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/System/Message/Notification/ApplyDiscountOnPrices.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/System/Message/Notification/DiscountErrors.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/System/Message/Notification/RoundingErrors.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/System/Message/NotificationInterface.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/System/Message/Notifications.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/TaxAddressManager.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/TaxCalculation.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/TaxClass/AbstractType.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/TaxClass/Factory.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/TaxClass/Key.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/TaxClass/Management.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/TaxClass/Repository.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/TaxClass/Source/Customer.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/TaxClass/Source/Product.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/TaxClass/Type/Customer.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/TaxClass/Type/Product.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/TaxClass/Type/TypeInterface.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/TaxConfigProvider.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/TaxDetails/AppliedTax.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/TaxDetails/AppliedTaxRate.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/TaxDetails/ItemDetails.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/TaxDetails/TaxDetails.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/TaxRateCollection.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/TaxRateManagement.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/TaxRuleCollection.php
 mode change 100644 => 100755 app/code/Magento/Tax/Model/TaxRuleRepository.php
 mode change 100644 => 100755 app/code/Magento/Tax/Observer/AfterAddressSaveObserver.php
 mode change 100644 => 100755 app/code/Magento/Tax/Observer/CustomerLoggedInObserver.php
 mode change 100644 => 100755 app/code/Magento/Tax/Observer/GetPriceConfigurationObserver.php
 mode change 100644 => 100755 app/code/Magento/Tax/Observer/UpdateProductOptionsObserver.php
 mode change 100644 => 100755 app/code/Magento/Tax/Plugin/Checkout/CustomerData/Cart.php
 mode change 100644 => 100755 app/code/Magento/Tax/Plugin/Ui/DataProvider/TaxSettings.php
 mode change 100644 => 100755 app/code/Magento/Tax/Pricing/Adjustment.php
 mode change 100644 => 100755 app/code/Magento/Tax/Pricing/Render/Adjustment.php
 mode change 100644 => 100755 app/code/Magento/Tax/README.md
 mode change 100644 => 100755 app/code/Magento/Tax/Setup/InstallData.php
 mode change 100644 => 100755 app/code/Magento/Tax/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/Tax/Setup/TaxSetup.php
 mode change 100644 => 100755 app/code/Magento/Tax/Setup/UpgradeData.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/App/Action/ContextPluginTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Block/Adminhtml/Items/Price/RendererTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Block/Adminhtml/Rule/Edit/FormTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Block/Checkout/Shipping/PriceTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Block/Checkout/ShippingTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Block/Grid/Renderer/CodesTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Block/Item/Price/RendererTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Controller/Adminhtml/Rate/AjaxLoadTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Controller/Adminhtml/Rule/AjaxLoadRatesTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Controller/Adminhtml/Tax/IgnoreTaxNotificationTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/GetterSetterTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Helper/DataTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Model/Calculation/CalculatorFactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Model/Calculation/Rate/ConverterTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Model/Calculation/RateRegistryTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Model/Calculation/RateRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Model/Calculation/RateTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Model/Calculation/RowBaseAndTotalBaseCalculatorTestCase.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Model/Calculation/RowBaseCalculatorTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Model/Calculation/TaxRuleRegistryTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Model/Calculation/TotalBaseCalculatorTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Model/Calculation/UnitBaseCalculatorTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Model/ClassModelRegistryTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Model/Config/TaxClassTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Model/ConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Model/Plugin/OrderSaveTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Model/Quote/GrandTotalDetailsPluginTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Model/Quote/ToOrderConverterTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Model/ResourceModel/CalculationTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Model/Sales/Order/TaxManagementTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Model/Sales/Total/Quote/CommonTaxCollectorTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Model/Sales/Total/Quote/ShippingTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Model/Sales/Total/Quote/SubtotalTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Model/Sales/Total/Quote/TaxTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Model/System/Message/Notification/ApplyDiscountOnPricesTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Model/System/Message/Notification/DiscountErrorsTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Model/System/Message/Notification/RoundingErrorsTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Model/System/Message/NotificationsTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Model/TaxAddressManagerTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Model/TaxCalculationTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Model/TaxClass/FactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Model/TaxClass/ManagementTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Model/TaxClass/RepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Model/TaxClass/Source/CustomerTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Model/TaxClass/Source/ProductTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Model/TaxClass/Type/CustomerTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Model/TaxClass/Type/ProductTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Model/TaxConfigProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Model/TaxRateCollectionTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Model/TaxRateManagementTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Model/TaxRuleCollectionTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Model/TaxRuleRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Observer/AfterAddressSaveObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Observer/CustomerLoggedInObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Observer/GetPriceConfigurationObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Observer/UpdateProductOptionsObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Plugin/Checkout/CustomerData/CartTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Pricing/AdjustmentTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Pricing/Render/AdjustmentTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Setup/TaxSetupTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Test/Unit/Ui/DataProvider/Product/Listing/Collector/TaxTest.php
 mode change 100644 => 100755 app/code/Magento/Tax/Ui/DataProvider/Product/Listing/Collector/Tax.php
 mode change 100644 => 100755 app/code/Magento/Tax/composer.json
 mode change 100644 => 100755 app/code/Magento/Tax/etc/acl.xml
 mode change 100644 => 100755 app/code/Magento/Tax/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/Tax/etc/adminhtml/menu.xml
 mode change 100644 => 100755 app/code/Magento/Tax/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/Tax/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/Tax/etc/catalog_attributes.xml
 mode change 100644 => 100755 app/code/Magento/Tax/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/Tax/etc/crontab.xml
 mode change 100644 => 100755 app/code/Magento/Tax/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Tax/etc/events.xml
 mode change 100644 => 100755 app/code/Magento/Tax/etc/extension_attributes.xml
 mode change 100644 => 100755 app/code/Magento/Tax/etc/fieldset.xml
 mode change 100644 => 100755 app/code/Magento/Tax/etc/frontend/di.xml
 mode change 100644 => 100755 app/code/Magento/Tax/etc/frontend/events.xml
 mode change 100644 => 100755 app/code/Magento/Tax/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Tax/etc/pdf.xml
 mode change 100644 => 100755 app/code/Magento/Tax/etc/sales.xml
 mode change 100644 => 100755 app/code/Magento/Tax/etc/webapi.xml
 mode change 100644 => 100755 app/code/Magento/Tax/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Tax/registration.php
 mode change 100644 => 100755 app/code/Magento/Tax/view/adminhtml/layout/sales_creditmemo_item_price.xml
 mode change 100644 => 100755 app/code/Magento/Tax/view/adminhtml/layout/sales_invoice_item_price.xml
 mode change 100644 => 100755 app/code/Magento/Tax/view/adminhtml/layout/sales_order_create_item_price.xml
 mode change 100644 => 100755 app/code/Magento/Tax/view/adminhtml/layout/sales_order_item_price.xml
 mode change 100644 => 100755 app/code/Magento/Tax/view/adminhtml/layout/tax_rate_block.xml
 mode change 100644 => 100755 app/code/Magento/Tax/view/adminhtml/layout/tax_rate_exportcsv.xml
 mode change 100644 => 100755 app/code/Magento/Tax/view/adminhtml/layout/tax_rate_exportxml.xml
 mode change 100644 => 100755 app/code/Magento/Tax/view/adminhtml/layout/tax_rate_index.xml
 mode change 100644 => 100755 app/code/Magento/Tax/view/adminhtml/layout/tax_rule_block.xml
 mode change 100644 => 100755 app/code/Magento/Tax/view/adminhtml/layout/tax_rule_edit.xml
 mode change 100644 => 100755 app/code/Magento/Tax/view/adminhtml/layout/tax_rule_index.xml
 mode change 100644 => 100755 app/code/Magento/Tax/view/adminhtml/templates/class/page/edit.phtml
 mode change 100644 => 100755 app/code/Magento/Tax/view/adminhtml/templates/items/price/row.phtml
 mode change 100644 => 100755 app/code/Magento/Tax/view/adminhtml/templates/items/price/total.phtml
 mode change 100644 => 100755 app/code/Magento/Tax/view/adminhtml/templates/items/price/unit.phtml
 mode change 100644 => 100755 app/code/Magento/Tax/view/adminhtml/templates/order/create/items/price/row.phtml
 mode change 100644 => 100755 app/code/Magento/Tax/view/adminhtml/templates/order/create/items/price/total.phtml
 mode change 100644 => 100755 app/code/Magento/Tax/view/adminhtml/templates/order/create/items/price/unit.phtml
 mode change 100644 => 100755 app/code/Magento/Tax/view/adminhtml/templates/rate/form.phtml
 mode change 100644 => 100755 app/code/Magento/Tax/view/adminhtml/templates/rate/js.phtml
 mode change 100644 => 100755 app/code/Magento/Tax/view/adminhtml/templates/rate/title.phtml
 mode change 100644 => 100755 app/code/Magento/Tax/view/adminhtml/templates/rule/edit.phtml
 mode change 100644 => 100755 app/code/Magento/Tax/view/adminhtml/templates/rule/rate/form.phtml
 mode change 100644 => 100755 app/code/Magento/Tax/view/adminhtml/templates/toolbar/class/add.phtml
 mode change 100644 => 100755 app/code/Magento/Tax/view/adminhtml/templates/toolbar/class/save.phtml
 mode change 100644 => 100755 app/code/Magento/Tax/view/adminhtml/templates/toolbar/rate/add.phtml
 mode change 100644 => 100755 app/code/Magento/Tax/view/adminhtml/templates/toolbar/rate/save.phtml
 mode change 100644 => 100755 app/code/Magento/Tax/view/adminhtml/templates/toolbar/rule/add.phtml
 mode change 100644 => 100755 app/code/Magento/Tax/view/adminhtml/templates/toolbar/rule/save.phtml
 mode change 100644 => 100755 app/code/Magento/Tax/view/adminhtml/web/js/bootstrap.js
 mode change 100644 => 100755 app/code/Magento/Tax/view/base/layout/catalog_product_prices.xml
 mode change 100644 => 100755 app/code/Magento/Tax/view/base/templates/pricing/adjustment.phtml
 mode change 100644 => 100755 app/code/Magento/Tax/view/base/templates/pricing/adjustment/bundle.phtml
 mode change 100644 => 100755 app/code/Magento/Tax/view/base/web/js/price/adjustment.js
 mode change 100644 => 100755 app/code/Magento/Tax/view/base/web/template/price/adjustment.html
 mode change 100644 => 100755 app/code/Magento/Tax/view/base/web/template/price/bundle/adjustment.html
 mode change 100644 => 100755 app/code/Magento/Tax/view/frontend/layout/checkout_cart_index.xml
 mode change 100644 => 100755 app/code/Magento/Tax/view/frontend/layout/checkout_cart_sidebar_total_renderers.xml
 mode change 100644 => 100755 app/code/Magento/Tax/view/frontend/layout/checkout_index_index.xml
 mode change 100644 => 100755 app/code/Magento/Tax/view/frontend/layout/checkout_item_price_renderers.xml
 mode change 100644 => 100755 app/code/Magento/Tax/view/frontend/layout/sales_email_item_price.xml
 mode change 100644 => 100755 app/code/Magento/Tax/view/frontend/layout/sales_order_item_price.xml
 mode change 100644 => 100755 app/code/Magento/Tax/view/frontend/templates/checkout/cart/item/price/sidebar.phtml
 mode change 100644 => 100755 app/code/Magento/Tax/view/frontend/templates/checkout/discount.phtml
 mode change 100644 => 100755 app/code/Magento/Tax/view/frontend/templates/checkout/grandtotal.phtml
 mode change 100644 => 100755 app/code/Magento/Tax/view/frontend/templates/checkout/shipping.phtml
 mode change 100644 => 100755 app/code/Magento/Tax/view/frontend/templates/checkout/shipping/price.phtml
 mode change 100644 => 100755 app/code/Magento/Tax/view/frontend/templates/checkout/subtotal.phtml
 mode change 100644 => 100755 app/code/Magento/Tax/view/frontend/templates/checkout/tax.phtml
 mode change 100644 => 100755 app/code/Magento/Tax/view/frontend/templates/email/items/price/row.phtml
 mode change 100644 => 100755 app/code/Magento/Tax/view/frontend/templates/item/price/row.phtml
 mode change 100644 => 100755 app/code/Magento/Tax/view/frontend/templates/item/price/total_after_discount.phtml
 mode change 100644 => 100755 app/code/Magento/Tax/view/frontend/templates/item/price/unit.phtml
 mode change 100644 => 100755 app/code/Magento/Tax/view/frontend/templates/order/tax.phtml
 mode change 100644 => 100755 app/code/Magento/Tax/view/frontend/ui_component/widget_recently_compared.xml
 mode change 100644 => 100755 app/code/Magento/Tax/view/frontend/ui_component/widget_recently_viewed.xml
 mode change 100644 => 100755 app/code/Magento/Tax/view/frontend/web/js/view/checkout/cart/totals/grand-total.js
 mode change 100644 => 100755 app/code/Magento/Tax/view/frontend/web/js/view/checkout/cart/totals/shipping.js
 mode change 100644 => 100755 app/code/Magento/Tax/view/frontend/web/js/view/checkout/cart/totals/tax.js
 mode change 100644 => 100755 app/code/Magento/Tax/view/frontend/web/js/view/checkout/minicart/subtotal/totals.js
 mode change 100644 => 100755 app/code/Magento/Tax/view/frontend/web/js/view/checkout/shipping_method/price.js
 mode change 100644 => 100755 app/code/Magento/Tax/view/frontend/web/js/view/checkout/summary/grand-total.js
 mode change 100644 => 100755 app/code/Magento/Tax/view/frontend/web/js/view/checkout/summary/item/details/subtotal.js
 mode change 100644 => 100755 app/code/Magento/Tax/view/frontend/web/js/view/checkout/summary/shipping.js
 mode change 100644 => 100755 app/code/Magento/Tax/view/frontend/web/js/view/checkout/summary/subtotal.js
 mode change 100644 => 100755 app/code/Magento/Tax/view/frontend/web/js/view/checkout/summary/tax.js
 mode change 100644 => 100755 app/code/Magento/Tax/view/frontend/web/template/checkout/cart/totals/grand-total.html
 mode change 100644 => 100755 app/code/Magento/Tax/view/frontend/web/template/checkout/cart/totals/shipping.html
 mode change 100644 => 100755 app/code/Magento/Tax/view/frontend/web/template/checkout/cart/totals/tax.html
 mode change 100644 => 100755 app/code/Magento/Tax/view/frontend/web/template/checkout/minicart/subtotal/totals.html
 mode change 100644 => 100755 app/code/Magento/Tax/view/frontend/web/template/checkout/shipping_method/price.html
 mode change 100644 => 100755 app/code/Magento/Tax/view/frontend/web/template/checkout/summary/grand-total.html
 mode change 100644 => 100755 app/code/Magento/Tax/view/frontend/web/template/checkout/summary/item/details/subtotal.html
 mode change 100644 => 100755 app/code/Magento/Tax/view/frontend/web/template/checkout/summary/shipping.html
 mode change 100644 => 100755 app/code/Magento/Tax/view/frontend/web/template/checkout/summary/subtotal.html
 mode change 100644 => 100755 app/code/Magento/Tax/view/frontend/web/template/checkout/summary/tax.html
 mode change 100644 => 100755 app/code/Magento/TaxImportExport/Block/Adminhtml/Rate/Grid/Renderer/Country.php
 mode change 100644 => 100755 app/code/Magento/TaxImportExport/Block/Adminhtml/Rate/ImportExport.php
 mode change 100644 => 100755 app/code/Magento/TaxImportExport/Block/Adminhtml/Rate/ImportExportHeader.php
 mode change 100644 => 100755 app/code/Magento/TaxImportExport/Controller/Adminhtml/Rate.php
 mode change 100644 => 100755 app/code/Magento/TaxImportExport/Controller/Adminhtml/Rate/ExportCsv.php
 mode change 100644 => 100755 app/code/Magento/TaxImportExport/Controller/Adminhtml/Rate/ExportPost.php
 mode change 100644 => 100755 app/code/Magento/TaxImportExport/Controller/Adminhtml/Rate/ExportXml.php
 mode change 100644 => 100755 app/code/Magento/TaxImportExport/Controller/Adminhtml/Rate/ImportExport.php
 mode change 100644 => 100755 app/code/Magento/TaxImportExport/Controller/Adminhtml/Rate/ImportPost.php
 mode change 100644 => 100755 app/code/Magento/TaxImportExport/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/TaxImportExport/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/TaxImportExport/Model/Rate/CsvImportHandler.php
 mode change 100644 => 100755 app/code/Magento/TaxImportExport/Test/Unit/Controller/Adminhtml/Rate/ExportPostTest.php
 mode change 100644 => 100755 app/code/Magento/TaxImportExport/composer.json
 mode change 100644 => 100755 app/code/Magento/TaxImportExport/etc/acl.xml
 mode change 100644 => 100755 app/code/Magento/TaxImportExport/etc/adminhtml/menu.xml
 mode change 100644 => 100755 app/code/Magento/TaxImportExport/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/TaxImportExport/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/TaxImportExport/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/TaxImportExport/registration.php
 mode change 100644 => 100755 app/code/Magento/TaxImportExport/view/adminhtml/layout/tax_rate_block.xml
 mode change 100644 => 100755 app/code/Magento/TaxImportExport/view/adminhtml/layout/tax_rule_edit.xml
 mode change 100644 => 100755 app/code/Magento/TaxImportExport/view/adminhtml/templates/importExport.phtml
 mode change 100644 => 100755 app/code/Magento/TaxImportExport/view/adminhtml/templates/importExportHeader.phtml
 mode change 100644 => 100755 app/code/Magento/Theme/Api/Data/DesignConfigDataInterface.php
 mode change 100644 => 100755 app/code/Magento/Theme/Api/Data/DesignConfigInterface.php
 mode change 100644 => 100755 app/code/Magento/Theme/Api/DesignConfigRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Theme/Block/Adminhtml/Design/Config/Edit/BackButton.php
 mode change 100644 => 100755 app/code/Magento/Theme/Block/Adminhtml/Design/Config/Edit/SaveAndContinueButton.php
 mode change 100644 => 100755 app/code/Magento/Theme/Block/Adminhtml/Design/Config/Edit/SaveButton.php
 mode change 100644 => 100755 app/code/Magento/Theme/Block/Adminhtml/Design/Config/Edit/Scope.php
 mode change 100644 => 100755 app/code/Magento/Theme/Block/Adminhtml/System/Design/Theme.php
 mode change 100644 => 100755 app/code/Magento/Theme/Block/Adminhtml/System/Design/Theme/Edit.php
 mode change 100644 => 100755 app/code/Magento/Theme/Block/Adminhtml/System/Design/Theme/Edit/AbstractTab.php
 mode change 100644 => 100755 app/code/Magento/Theme/Block/Adminhtml/System/Design/Theme/Edit/Form.php
 mode change 100644 => 100755 app/code/Magento/Theme/Block/Adminhtml/System/Design/Theme/Edit/Form/Element/File.php
 mode change 100644 => 100755 app/code/Magento/Theme/Block/Adminhtml/System/Design/Theme/Edit/Form/Element/Image.php
 mode change 100644 => 100755 app/code/Magento/Theme/Block/Adminhtml/System/Design/Theme/Edit/Form/Element/Links.php
 mode change 100644 => 100755 app/code/Magento/Theme/Block/Adminhtml/System/Design/Theme/Edit/Tab/Css.php
 mode change 100644 => 100755 app/code/Magento/Theme/Block/Adminhtml/System/Design/Theme/Edit/Tab/General.php
 mode change 100644 => 100755 app/code/Magento/Theme/Block/Adminhtml/System/Design/Theme/Edit/Tab/Js.php
 mode change 100644 => 100755 app/code/Magento/Theme/Block/Adminhtml/System/Design/Theme/Edit/Tabs.php
 mode change 100644 => 100755 app/code/Magento/Theme/Block/Adminhtml/Wysiwyg/Files/Content.php
 mode change 100644 => 100755 app/code/Magento/Theme/Block/Adminhtml/Wysiwyg/Files/Content/Files.php
 mode change 100644 => 100755 app/code/Magento/Theme/Block/Adminhtml/Wysiwyg/Files/Content/Uploader.php
 mode change 100644 => 100755 app/code/Magento/Theme/Block/Adminhtml/Wysiwyg/Files/Tree.php
 mode change 100644 => 100755 app/code/Magento/Theme/Block/Html/Breadcrumbs.php
 mode change 100644 => 100755 app/code/Magento/Theme/Block/Html/Footer.php
 mode change 100644 => 100755 app/code/Magento/Theme/Block/Html/Header.php
 mode change 100644 => 100755 app/code/Magento/Theme/Block/Html/Header/Logo.php
 mode change 100644 => 100755 app/code/Magento/Theme/Block/Html/Notices.php
 mode change 100644 => 100755 app/code/Magento/Theme/Block/Html/Pager.php
 mode change 100644 => 100755 app/code/Magento/Theme/Block/Html/Title.php
 mode change 100644 => 100755 app/code/Magento/Theme/Block/Html/Topmenu.php
 mode change 100644 => 100755 app/code/Magento/Theme/Block/Html/Welcome.php
 mode change 100644 => 100755 app/code/Magento/Theme/Console/Command/ThemeUninstallCommand.php
 mode change 100644 => 100755 app/code/Magento/Theme/Controller/Adminhtml/Design/Config/Edit.php
 mode change 100644 => 100755 app/code/Magento/Theme/Controller/Adminhtml/Design/Config/FileUploader/Save.php
 mode change 100644 => 100755 app/code/Magento/Theme/Controller/Adminhtml/Design/Config/Index.php
 mode change 100644 => 100755 app/code/Magento/Theme/Controller/Adminhtml/Design/Config/Save.php
 mode change 100644 => 100755 app/code/Magento/Theme/Controller/Adminhtml/System/Design/Theme.php
 mode change 100644 => 100755 app/code/Magento/Theme/Controller/Adminhtml/System/Design/Theme/Delete.php
 mode change 100644 => 100755 app/code/Magento/Theme/Controller/Adminhtml/System/Design/Theme/DownloadCss.php
 mode change 100644 => 100755 app/code/Magento/Theme/Controller/Adminhtml/System/Design/Theme/DownloadCustomCss.php
 mode change 100644 => 100755 app/code/Magento/Theme/Controller/Adminhtml/System/Design/Theme/Edit.php
 mode change 100644 => 100755 app/code/Magento/Theme/Controller/Adminhtml/System/Design/Theme/Grid.php
 mode change 100644 => 100755 app/code/Magento/Theme/Controller/Adminhtml/System/Design/Theme/Index.php
 mode change 100644 => 100755 app/code/Magento/Theme/Controller/Adminhtml/System/Design/Theme/NewAction.php
 mode change 100644 => 100755 app/code/Magento/Theme/Controller/Adminhtml/System/Design/Theme/Save.php
 mode change 100644 => 100755 app/code/Magento/Theme/Controller/Adminhtml/System/Design/Theme/UploadCss.php
 mode change 100644 => 100755 app/code/Magento/Theme/Controller/Adminhtml/System/Design/Theme/UploadJs.php
 mode change 100644 => 100755 app/code/Magento/Theme/Controller/Adminhtml/System/Design/Wysiwyg/Files.php
 mode change 100644 => 100755 app/code/Magento/Theme/Controller/Adminhtml/System/Design/Wysiwyg/Files/Contents.php
 mode change 100644 => 100755 app/code/Magento/Theme/Controller/Adminhtml/System/Design/Wysiwyg/Files/DeleteFiles.php
 mode change 100644 => 100755 app/code/Magento/Theme/Controller/Adminhtml/System/Design/Wysiwyg/Files/DeleteFolder.php
 mode change 100644 => 100755 app/code/Magento/Theme/Controller/Adminhtml/System/Design/Wysiwyg/Files/Index.php
 mode change 100644 => 100755 app/code/Magento/Theme/Controller/Adminhtml/System/Design/Wysiwyg/Files/NewFolder.php
 mode change 100644 => 100755 app/code/Magento/Theme/Controller/Adminhtml/System/Design/Wysiwyg/Files/OnInsert.php
 mode change 100644 => 100755 app/code/Magento/Theme/Controller/Adminhtml/System/Design/Wysiwyg/Files/PreviewImage.php
 mode change 100644 => 100755 app/code/Magento/Theme/Controller/Adminhtml/System/Design/Wysiwyg/Files/TreeJson.php
 mode change 100644 => 100755 app/code/Magento/Theme/Controller/Adminhtml/System/Design/Wysiwyg/Files/Upload.php
 mode change 100644 => 100755 app/code/Magento/Theme/Controller/Result/MessagePlugin.php
 mode change 100644 => 100755 app/code/Magento/Theme/CustomerData/Messages.php
 mode change 100644 => 100755 app/code/Magento/Theme/Helper/Storage.php
 mode change 100644 => 100755 app/code/Magento/Theme/Helper/Theme.php
 mode change 100644 => 100755 app/code/Magento/Theme/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Theme/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Config.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Config/Customization.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Config/Importer.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Config/Processor/DesignTheme.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/CopyService.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Data/Design/Config.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Data/Design/Config/Data.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Data/Design/ConfigFactory.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Design.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Design/Backend/Exceptions.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Design/Backend/Favicon.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Design/Backend/File.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Design/Backend/Image.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Design/Backend/Logo.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Design/Backend/Theme.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Design/BackendModelFactory.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Design/Config/DataProvider.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Design/Config/DataProvider/DataLoader.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Design/Config/DataProvider/MetadataLoader.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Design/Config/FileUploader/FileProcessor.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Design/Config/MetadataProvider.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Design/Config/MetadataProviderInterface.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Design/Config/Plugin.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Design/Config/Plugin/Dump.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Design/Config/Storage.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Design/Config/Validator.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Design/Config/ValueChecker.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Design/Config/ValueProcessor.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Design/Theme/Label.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/DesignConfigRepository.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Favicon/Favicon.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Indexer/Design/Config.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Indexer/Design/Config/FieldsProvider.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Indexer/Design/Config/Plugin/Store.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Indexer/Design/Config/Plugin/StoreGroup.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Indexer/Design/Config/Plugin/Website.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Layout/Config.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Layout/Config/Converter.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Layout/Config/Reader.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Layout/Config/SchemaLocator.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Layout/Source/Layout.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/PageLayout/Config/Builder.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/ResourceModel/Design.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/ResourceModel/Design/Collection.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/ResourceModel/Design/Config.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/ResourceModel/Design/Config/Collection.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/ResourceModel/Design/Config/Scope/Collection.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/ResourceModel/Theme.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/ResourceModel/Theme/Collection.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/ResourceModel/Theme/Customization/Update.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/ResourceModel/Theme/Data/Collection.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/ResourceModel/Theme/File.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/ResourceModel/Theme/File/Collection.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/ResourceModel/Theme/Grid/Collection.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Source/InitialThemeSource.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Theme.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Theme/Collection.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Theme/Customization/Config.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Theme/Customization/File/CustomCss.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Theme/Data.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Theme/Data/Collection.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Theme/Domain/Physical.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Theme/Domain/Staging.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Theme/Domain/Virtual.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Theme/File.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Theme/FileProvider.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Theme/Image/Path.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Theme/Plugin/Registration.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Theme/Registration.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Theme/Resolver.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Theme/SingleFile.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Theme/Source/Theme.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Theme/ThemeDependencyChecker.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Theme/ThemePackageInfo.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Theme/ThemeProvider.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Theme/ThemeUninstaller.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/ThemeValidator.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Uploader/Service.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Url/Plugin/Signature.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/View/Design.php
 mode change 100644 => 100755 app/code/Magento/Theme/Model/Wysiwyg/Storage.php
 mode change 100644 => 100755 app/code/Magento/Theme/Observer/ApplyThemeCustomizationObserver.php
 mode change 100644 => 100755 app/code/Magento/Theme/Observer/CheckThemeIsAssignedObserver.php
 mode change 100644 => 100755 app/code/Magento/Theme/Observer/CleanThemeRelatedContentObserver.php
 mode change 100644 => 100755 app/code/Magento/Theme/README.md
 mode change 100644 => 100755 app/code/Magento/Theme/Setup/InstallData.php
 mode change 100644 => 100755 app/code/Magento/Theme/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/Theme/Setup/RecurringData.php
 mode change 100644 => 100755 app/code/Magento/Theme/Setup/UpgradeData.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Block/Adminhtml/Design/Config/Edit/BackButtonTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Block/Adminhtml/Design/Config/Edit/SaveButtonTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Block/Adminhtml/Design/Config/Edit/ScopeTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Block/Adminhtml/System/Design/Theme/Edit/Form/Element/FileTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Block/Adminhtml/System/Design/Theme/Edit/FormTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Block/Adminhtml/System/Design/Theme/Tab/CssTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Block/Adminhtml/System/Design/Theme/Tab/JsTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Block/Adminhtml/System/Design/Theme/TabAbstractTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Block/Adminhtml/Wysiwyg/Files/ContentTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Block/Adminhtml/Wysiwyg/Files/TreeTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Block/Html/FooterTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Block/Html/Header/LogoTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Block/Html/HeaderTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Block/Html/TitleTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Block/Html/TopmenuTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Block/Html/_files/logo/default/image.gif
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Console/Command/ThemeUninstallCommandTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/Design/Config/EditTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/Design/Config/FileUploader/SaveTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/Design/Config/IndexTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/Design/Config/SaveTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/System/Design/Theme/DeleteTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/System/Design/Theme/DownloadCssTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/System/Design/Theme/DownloadCustomCssTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/System/Design/Theme/EditTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/System/Design/Theme/GridTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/System/Design/Theme/IndexTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/System/Design/Theme/SaveTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/System/Design/Theme/UploadCssTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/System/Design/Theme/UploadJsTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/System/Design/ThemeTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/System/Design/Wysiwyg/Files/ContentsTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/System/Design/Wysiwyg/Files/DeleteFilesTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/System/Design/Wysiwyg/Files/DeleteFolderTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/System/Design/Wysiwyg/Files/IndexTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/System/Design/Wysiwyg/Files/OnInsertTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Controller/Result/MessagePluginTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/CustomerData/MessagesTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Helper/StorageTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Helper/ThemeTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Config/CustomizationTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Config/ImporterTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Config/Processor/DesignThemeTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Config/ValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Config/_files/template_fixture.html
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/ConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/CopyServiceTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Data/Design/ConfigFactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Design/Backend/ExceptionsTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Design/Backend/FileTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Design/Backend/ThemeTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Design/BackendModelFactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Design/Config/DataProvider/DataLoaderTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Design/Config/DataProvider/MetadataLoaderTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Design/Config/DataProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Design/Config/FileUploader/FileProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Design/Config/Plugin/DumpTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Design/Config/PluginTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Design/Config/StorageTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Design/Config/ValueCheckerTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Design/Config/ValueProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/DesignConfigRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/DesignTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Favicon/FaviconTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Indexer/Design/Config/Plugin/StoreGroupTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Indexer/Design/Config/Plugin/StoreTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Indexer/Design/Config/Plugin/WebsiteTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Indexer/Design/ConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Layout/Config/ConverterTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Layout/Config/SchemaLocatorTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Layout/Config/_files/page_layouts.xml
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Layout/ConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Layout/Source/LayoutTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/PageLayout/Config/BuilderTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/ResourceModel/Design/Config/Scope/CollectionTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Source/InitialThemeSourceTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Theme/CollectionTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Theme/Customization/ConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Theme/Customization/File/CustomCssTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Theme/DataTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Theme/Domain/PhysicalTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Theme/Domain/StagingTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Theme/Domain/VirtualTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Theme/FileProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Theme/FileTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Theme/Image/PathTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Theme/Plugin/RegistrationTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Theme/RegistrationTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Theme/ResolverTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Theme/SingleFileTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Theme/Source/ThemeTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Theme/ThemeDependencyCheckerTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Theme/ThemePackageInfoTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Theme/ThemeProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Theme/ThemeUninstallerTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Theme/ValidationTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/ThemeTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/ThemeValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Uploader/ServiceTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Url/Plugin/SignatureTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/View/DesignTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/Wysiwyg/StorageTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/_files/frontend/magento_iphone/theme.xml
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Model/_files/frontend/magento_iphone/theme_invalid.xml
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Observer/ApplyThemeCustomizationObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Observer/CheckThemeIsAssignedObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Observer/CleanThemeRelatedContentObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Ui/Component/Design/Config/SearchRobots/ResetButtonTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Test/Unit/Ui/Component/Listing/Column/EditActionTest.php
 mode change 100644 => 100755 app/code/Magento/Theme/Ui/Component/Design/Config/DataProvider.php
 mode change 100644 => 100755 app/code/Magento/Theme/Ui/Component/Design/Config/SearchRobots/ResetButton.php
 mode change 100644 => 100755 app/code/Magento/Theme/Ui/Component/Listing/Column/EditAction.php
 mode change 100644 => 100755 app/code/Magento/Theme/composer.json
 mode change 100644 => 100755 app/code/Magento/Theme/etc/acl.xml
 mode change 100644 => 100755 app/code/Magento/Theme/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/Theme/etc/adminhtml/menu.xml
 mode change 100644 => 100755 app/code/Magento/Theme/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/Theme/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/Theme/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Theme/etc/events.xml
 mode change 100644 => 100755 app/code/Magento/Theme/etc/extension_attributes.xml
 mode change 100644 => 100755 app/code/Magento/Theme/etc/frontend/di.xml
 mode change 100644 => 100755 app/code/Magento/Theme/etc/frontend/events.xml
 mode change 100644 => 100755 app/code/Magento/Theme/etc/frontend/sections.xml
 mode change 100644 => 100755 app/code/Magento/Theme/etc/indexer.xml
 mode change 100644 => 100755 app/code/Magento/Theme/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Theme/etc/mview.xml
 mode change 100644 => 100755 app/code/Magento/Theme/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Theme/registration.php
 mode change 100644 => 100755 app/code/Magento/Theme/view/adminhtml/layout/adminhtml_system_design_theme_block.xml
 mode change 100644 => 100755 app/code/Magento/Theme/view/adminhtml/layout/adminhtml_system_design_theme_edit.xml
 mode change 100644 => 100755 app/code/Magento/Theme/view/adminhtml/layout/adminhtml_system_design_theme_grid.xml
 mode change 100644 => 100755 app/code/Magento/Theme/view/adminhtml/layout/adminhtml_system_design_theme_index.xml
 mode change 100644 => 100755 app/code/Magento/Theme/view/adminhtml/layout/adminhtml_system_design_wysiwyg_files_contents.xml
 mode change 100644 => 100755 app/code/Magento/Theme/view/adminhtml/layout/adminhtml_system_design_wysiwyg_files_index.xml
 mode change 100644 => 100755 app/code/Magento/Theme/view/adminhtml/layout/theme_design_config_edit.xml
 mode change 100644 => 100755 app/code/Magento/Theme/view/adminhtml/layout/theme_design_config_index.xml
 mode change 100644 => 100755 app/code/Magento/Theme/view/adminhtml/layouts.xml
 mode change 100644 => 100755 app/code/Magento/Theme/view/adminhtml/page_layout/admin-1column.xml
 mode change 100644 => 100755 app/code/Magento/Theme/view/adminhtml/page_layout/admin-2columns-left.xml
 mode change 100644 => 100755 app/code/Magento/Theme/view/adminhtml/page_layout/admin-empty.xml
 mode change 100644 => 100755 app/code/Magento/Theme/view/adminhtml/page_layout/admin-login.xml
 mode change 100644 => 100755 app/code/Magento/Theme/view/adminhtml/requirejs-config.js
 mode change 100644 => 100755 app/code/Magento/Theme/view/adminhtml/templates/browser/content.phtml
 mode change 100644 => 100755 app/code/Magento/Theme/view/adminhtml/templates/browser/content/files.phtml
 mode change 100644 => 100755 app/code/Magento/Theme/view/adminhtml/templates/browser/content/uploader.phtml
 mode change 100644 => 100755 app/code/Magento/Theme/view/adminhtml/templates/design/config/edit/scope.phtml
 mode change 100644 => 100755 app/code/Magento/Theme/view/adminhtml/templates/tabs/css.phtml
 mode change 100644 => 100755 app/code/Magento/Theme/view/adminhtml/templates/tabs/fieldset/js.phtml
 mode change 100644 => 100755 app/code/Magento/Theme/view/adminhtml/templates/tabs/js.phtml
 mode change 100644 => 100755 app/code/Magento/Theme/view/adminhtml/templates/title.phtml
 mode change 100644 => 100755 app/code/Magento/Theme/view/adminhtml/ui_component/design_config_form.xml
 mode change 100644 => 100755 app/code/Magento/Theme/view/adminhtml/ui_component/design_config_listing.xml
 mode change 100644 => 100755 app/code/Magento/Theme/view/adminhtml/web/calendar.png
 mode change 100644 => 100755 app/code/Magento/Theme/view/adminhtml/web/css/theme.css
 mode change 100644 => 100755 app/code/Magento/Theme/view/adminhtml/web/fam_book_open.png
 mode change 100644 => 100755 app/code/Magento/Theme/view/adminhtml/web/favicon.ico
 mode change 100644 => 100755 app/code/Magento/Theme/view/adminhtml/web/images/bkg_movable-arrows.png
 mode change 100644 => 100755 app/code/Magento/Theme/view/adminhtml/web/images/js_icon.gif
 mode change 100644 => 100755 app/code/Magento/Theme/view/adminhtml/web/js/bootstrap.js
 mode change 100644 => 100755 app/code/Magento/Theme/view/adminhtml/web/js/custom-js-list.js
 mode change 100644 => 100755 app/code/Magento/Theme/view/adminhtml/web/js/form.js
 mode change 100644 => 100755 app/code/Magento/Theme/view/adminhtml/web/js/form/component/robots-reset-button.js
 mode change 100644 => 100755 app/code/Magento/Theme/view/adminhtml/web/js/sortable.js
 mode change 100644 => 100755 app/code/Magento/Theme/view/adminhtml/web/prototype/magento.css
 mode change 100644 => 100755 app/code/Magento/Theme/view/adminhtml/web/template/form/button-field.html
 mode change 100644 => 100755 app/code/Magento/Theme/view/adminhtml/web/template/form/element/button.html
 mode change 100644 => 100755 app/code/Magento/Theme/view/adminhtml/web/theme/default_preview.jpg
 mode change 100644 => 100755 app/code/Magento/Theme/view/base/layouts.xml
 mode change 100644 => 100755 app/code/Magento/Theme/view/base/page_layout/empty.xml
 mode change 100644 => 100755 app/code/Magento/Theme/view/base/requirejs-config.js
 mode change 100644 => 100755 app/code/Magento/Theme/view/base/templates/root.phtml
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/layout/default.xml
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/layout/default_head_blocks.xml
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/layout/page_calendar.xml
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/layout/print.xml
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/layouts.xml
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/page_layout/1column.xml
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/page_layout/2columns-left.xml
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/page_layout/2columns-right.xml
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/page_layout/3columns.xml
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/requirejs-config.js
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/templates/callouts/left_col.phtml
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/templates/callouts/right_col.phtml
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/templates/html/absolute_footer.phtml
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/templates/html/block.phtml
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/templates/html/breadcrumbs.phtml
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/templates/html/bugreport.phtml
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/templates/html/collapsible.phtml
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/templates/html/container.phtml
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/templates/html/copyright.phtml
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/templates/html/footer.phtml
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/templates/html/header.phtml
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/templates/html/header/logo.phtml
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/templates/html/messages.phtml
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/templates/html/notices.phtml
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/templates/html/pager.phtml
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/templates/html/print.phtml
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/templates/html/sections.phtml
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/templates/html/skip.phtml
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/templates/html/skiptarget.phtml
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/templates/html/title.phtml
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/templates/html/topmenu.phtml
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/templates/js/calendar.phtml
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/templates/js/components.phtml
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/templates/js/cookie.phtml
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/templates/js/polyfill.phtml
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/templates/link.phtml
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/templates/messages.phtml
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/templates/page/js/require_js.phtml
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/templates/template.phtml
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/templates/text.phtml
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/web/calendar.png
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/web/css/tabs.css
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/web/css/validate.css
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/web/fam_book_open.png
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/web/favicon.ico
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/web/images/validation_advice_bg.gif
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/web/js/row-builder.js
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/web/js/truncate.js
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/web/js/view/messages.js
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/web/menu.js
 mode change 100644 => 100755 app/code/Magento/Theme/view/frontend/web/prototype/magento.css
 mode change 100644 => 100755 app/code/Magento/Theme/view/install/web/favicon.ico
 mode change 100644 => 100755 app/code/Magento/Translation/App/Config/Type/Translation.php
 mode change 100644 => 100755 app/code/Magento/Translation/Block/Html/Head/Config.php
 mode change 100644 => 100755 app/code/Magento/Translation/Block/Js.php
 mode change 100644 => 100755 app/code/Magento/Translation/Console/Command/UninstallLanguageCommand.php
 mode change 100644 => 100755 app/code/Magento/Translation/Controller/Ajax/Index.php
 mode change 100644 => 100755 app/code/Magento/Translation/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Translation/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Translation/Model/FileManager.php
 mode change 100644 => 100755 app/code/Magento/Translation/Model/Inline/CacheManager.php
 mode change 100644 => 100755 app/code/Magento/Translation/Model/Inline/Config.php
 mode change 100644 => 100755 app/code/Magento/Translation/Model/Inline/Parser.php
 mode change 100644 => 100755 app/code/Magento/Translation/Model/Js/Config.php
 mode change 100644 => 100755 app/code/Magento/Translation/Model/Js/Config/Source/Strategy.php
 mode change 100644 => 100755 app/code/Magento/Translation/Model/Js/DataProvider.php
 mode change 100644 => 100755 app/code/Magento/Translation/Model/Js/DataProviderInterface.php
 mode change 100644 => 100755 app/code/Magento/Translation/Model/Js/PreProcessor.php
 mode change 100644 => 100755 app/code/Magento/Translation/Model/Json/PreProcessor.php
 mode change 100644 => 100755 app/code/Magento/Translation/Model/ResourceModel/StringUtils.php
 mode change 100644 => 100755 app/code/Magento/Translation/Model/ResourceModel/Translate.php
 mode change 100644 => 100755 app/code/Magento/Translation/Model/Source/InitialTranslationSource.php
 mode change 100644 => 100755 app/code/Magento/Translation/Model/StringUtils.php
 mode change 100644 => 100755 app/code/Magento/Translation/README.md
 mode change 100644 => 100755 app/code/Magento/Translation/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/Translation/Test/Unit/App/Config/Type/TranslationTest.php
 mode change 100644 => 100755 app/code/Magento/Translation/Test/Unit/Block/JsTest.php
 mode change 100644 => 100755 app/code/Magento/Translation/Test/Unit/Console/Command/UninstallLanguageCommandTest.php
 mode change 100644 => 100755 app/code/Magento/Translation/Test/Unit/Model/FileManagerTest.php
 mode change 100644 => 100755 app/code/Magento/Translation/Test/Unit/Model/Inline/CacheManagerTest.php
 mode change 100644 => 100755 app/code/Magento/Translation/Test/Unit/Model/Inline/ConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Translation/Test/Unit/Model/Inline/ParserTest.php
 mode change 100644 => 100755 app/code/Magento/Translation/Test/Unit/Model/Inline/_files/datatranslate_fixture.html
 mode change 100644 => 100755 app/code/Magento/Translation/Test/Unit/Model/Js/Config/Source/StrategyTest.php
 mode change 100644 => 100755 app/code/Magento/Translation/Test/Unit/Model/Js/ConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Translation/Test/Unit/Model/Js/DataProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Translation/Test/Unit/Model/Js/PreProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/Translation/Test/Unit/Model/Json/PreProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/Translation/Test/Unit/Model/Source/InitialTranslationSourceTest.php
 mode change 100644 => 100755 app/code/Magento/Translation/composer.json
 mode change 100644 => 100755 app/code/Magento/Translation/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/Translation/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/Translation/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/Translation/etc/cache.xml
 mode change 100644 => 100755 app/code/Magento/Translation/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/Translation/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Translation/etc/frontend/routes.xml
 mode change 100644 => 100755 app/code/Magento/Translation/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Translation/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Translation/registration.php
 mode change 100644 => 100755 app/code/Magento/Translation/view/adminhtml/templates/translate_inline.phtml
 mode change 100644 => 100755 app/code/Magento/Translation/view/base/templates/translate.phtml
 mode change 100644 => 100755 app/code/Magento/Translation/view/base/web/js/i18n-config.js
 mode change 100644 => 100755 app/code/Magento/Translation/view/frontend/requirejs-config.js
 mode change 100644 => 100755 app/code/Magento/Translation/view/frontend/templates/translate_inline.phtml
 mode change 100644 => 100755 app/code/Magento/Translation/view/frontend/web/add-class.js
 mode change 100644 => 100755 app/code/Magento/Translation/view/frontend/web/translate_edit_icon.png
 mode change 100644 => 100755 app/code/Magento/Translation/view/frontend/web/translate_edit_icon_hover.png
 mode change 100644 => 100755 app/code/Magento/Ui/Api/BookmarkManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Ui/Api/BookmarkRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Ui/Api/Data/BookmarkExtensionInterface.php
 mode change 100644 => 100755 app/code/Magento/Ui/Api/Data/BookmarkInterface.php
 mode change 100644 => 100755 app/code/Magento/Ui/Api/Data/BookmarkSearchResultsInterface.php
 mode change 100644 => 100755 app/code/Magento/Ui/Block/Component/StepsWizard.php
 mode change 100644 => 100755 app/code/Magento/Ui/Block/Component/StepsWizard/StepAbstract.php
 mode change 100644 => 100755 app/code/Magento/Ui/Block/Component/StepsWizard/StepInterface.php
 mode change 100644 => 100755 app/code/Magento/Ui/Block/Logger.php
 mode change 100644 => 100755 app/code/Magento/Ui/Block/Wrapper.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/AbstractComponent.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Action.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Bookmark.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Container.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Control/Action.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Control/ActionPool.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Control/Button.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Control/Container.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Control/Item.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Control/Link.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Control/SplitButton.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/DataSource.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/DynamicRows.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/ExportButton.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Filters.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Filters/FilterModifier.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Filters/Type/AbstractFilter.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Filters/Type/Date.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Filters/Type/DateRange.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Filters/Type/Input.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Filters/Type/Range.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Filters/Type/Search.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Filters/Type/Select.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Form.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Form/AttributeMapper.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Form/Collection.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Form/Element/AbstractElement.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Form/Element/AbstractOptionsField.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Form/Element/ActionDelete.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Form/Element/Checkbox.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Form/Element/CheckboxSet.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Form/Element/DataType/AbstractDataType.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Form/Element/DataType/Boolean.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Form/Element/DataType/DataTypeInterface.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Form/Element/DataType/Date.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Form/Element/DataType/Email.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Form/Element/DataType/Media.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Form/Element/DataType/Number.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Form/Element/DataType/Password.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Form/Element/DataType/Price.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Form/Element/DataType/Text.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Form/Element/ElementInterface.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Form/Element/Hidden.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Form/Element/Input.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Form/Element/MultiSelect.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Form/Element/Multiline.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Form/Element/Radio.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Form/Element/RadioSet.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Form/Element/Range.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Form/Element/Select.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Form/Element/Textarea.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Form/Element/Wysiwyg.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Form/Field.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Form/Fieldset.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Form/Fieldset/Factory.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/HtmlContent.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Layout.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Layout/Tabs.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Layout/Tabs/Nav.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Layout/Tabs/Tab.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Layout/Tabs/TabInterface.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Layout/Tabs/TabWrapper.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Listing.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Listing/Columns.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Listing/Columns/Column.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Listing/Columns/ColumnInterface.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Listing/Columns/Date.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Listing/RowInterface.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/MassAction.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/MassAction/Columns/Column.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/MassAction/Filter.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Modal.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Paging.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Wrapper/Block.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Wrapper/UiComponent.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Wysiwyg/Config.php
 mode change 100644 => 100755 app/code/Magento/Ui/Component/Wysiwyg/ConfigInterface.php
 mode change 100644 => 100755 app/code/Magento/Ui/Config/Argument/Parser/ArrayType.php
 mode change 100644 => 100755 app/code/Magento/Ui/Config/Argument/Parser/Composite.php
 mode change 100644 => 100755 app/code/Magento/Ui/Config/Argument/Parser/ConfigurableObjectType.php
 mode change 100644 => 100755 app/code/Magento/Ui/Config/Argument/Parser/ConverterType.php
 mode change 100644 => 100755 app/code/Magento/Ui/Config/Argument/Parser/Url.php
 mode change 100644 => 100755 app/code/Magento/Ui/Config/Argument/Parser/XpathType.php
 mode change 100644 => 100755 app/code/Magento/Ui/Config/Argument/ParserInterface.php
 mode change 100644 => 100755 app/code/Magento/Ui/Config/Converter.php
 mode change 100644 => 100755 app/code/Magento/Ui/Config/Converter/Actions.php
 mode change 100644 => 100755 app/code/Magento/Ui/Config/Converter/AdditionalClasses.php
 mode change 100644 => 100755 app/code/Magento/Ui/Config/Converter/Buttons.php
 mode change 100644 => 100755 app/code/Magento/Ui/Config/Converter/Communication.php
 mode change 100644 => 100755 app/code/Magento/Ui/Config/Converter/Composite.php
 mode change 100644 => 100755 app/code/Magento/Ui/Config/Converter/Deps.php
 mode change 100644 => 100755 app/code/Magento/Ui/Config/Converter/HtmlContent.php
 mode change 100644 => 100755 app/code/Magento/Ui/Config/Converter/Item.php
 mode change 100644 => 100755 app/code/Magento/Ui/Config/Converter/Options.php
 mode change 100644 => 100755 app/code/Magento/Ui/Config/Converter/StorageConfig.php
 mode change 100644 => 100755 app/code/Magento/Ui/Config/Converter/Url.php
 mode change 100644 => 100755 app/code/Magento/Ui/Config/ConverterInterface.php
 mode change 100644 => 100755 app/code/Magento/Ui/Config/ConverterUtils.php
 mode change 100644 => 100755 app/code/Magento/Ui/Config/Data.php
 mode change 100644 => 100755 app/code/Magento/Ui/Config/Reader.php
 mode change 100644 => 100755 app/code/Magento/Ui/Config/Reader/Definition.php
 mode change 100644 => 100755 app/code/Magento/Ui/Config/Reader/Definition/Data.php
 mode change 100644 => 100755 app/code/Magento/Ui/Config/Reader/Definition/SchemaLocator.php
 mode change 100644 => 100755 app/code/Magento/Ui/Config/Reader/DefinitionMap.php
 mode change 100644 => 100755 app/code/Magento/Ui/Config/Reader/DefinitionMap/Converter.php
 mode change 100644 => 100755 app/code/Magento/Ui/Config/Reader/DefinitionMap/SchemaLocator.php
 mode change 100644 => 100755 app/code/Magento/Ui/Config/Reader/Dom.php
 mode change 100644 => 100755 app/code/Magento/Ui/Config/Reader/FileResolver.php
 mode change 100644 => 100755 app/code/Magento/Ui/Config/Reader/SchemaLocator.php
 mode change 100644 => 100755 app/code/Magento/Ui/Config/Reader/Template/SchemaLocator.php
 mode change 100644 => 100755 app/code/Magento/Ui/Controller/Adminhtml/AbstractAction.php
 mode change 100644 => 100755 app/code/Magento/Ui/Controller/Adminhtml/Bookmark/Delete.php
 mode change 100644 => 100755 app/code/Magento/Ui/Controller/Adminhtml/Bookmark/Save.php
 mode change 100644 => 100755 app/code/Magento/Ui/Controller/Adminhtml/Export/GridToCsv.php
 mode change 100644 => 100755 app/code/Magento/Ui/Controller/Adminhtml/Export/GridToXml.php
 mode change 100644 => 100755 app/code/Magento/Ui/Controller/Adminhtml/Index/Render.php
 mode change 100644 => 100755 app/code/Magento/Ui/Controller/Adminhtml/Index/Render/Handle.php
 mode change 100644 => 100755 app/code/Magento/Ui/Controller/Index/Render.php
 mode change 100644 => 100755 app/code/Magento/Ui/Controller/UiActionInterface.php
 mode change 100644 => 100755 app/code/Magento/Ui/DataProvider/AbstractDataProvider.php
 mode change 100644 => 100755 app/code/Magento/Ui/DataProvider/AddFieldToCollection.php
 mode change 100644 => 100755 app/code/Magento/Ui/DataProvider/AddFieldToCollectionInterface.php
 mode change 100644 => 100755 app/code/Magento/Ui/DataProvider/AddFilterToCollectionInterface.php
 mode change 100644 => 100755 app/code/Magento/Ui/DataProvider/EavValidationRules.php
 mode change 100644 => 100755 app/code/Magento/Ui/DataProvider/Mapper/FormElement.php
 mode change 100644 => 100755 app/code/Magento/Ui/DataProvider/Mapper/MapperInterface.php
 mode change 100644 => 100755 app/code/Magento/Ui/DataProvider/Mapper/MetaProperties.php
 mode change 100644 => 100755 app/code/Magento/Ui/DataProvider/Modifier/Dummy.php
 mode change 100644 => 100755 app/code/Magento/Ui/DataProvider/Modifier/ModifierFactory.php
 mode change 100644 => 100755 app/code/Magento/Ui/DataProvider/Modifier/ModifierInterface.php
 mode change 100644 => 100755 app/code/Magento/Ui/DataProvider/Modifier/Pool.php
 mode change 100644 => 100755 app/code/Magento/Ui/DataProvider/Modifier/PoolInterface.php
 mode change 100644 => 100755 app/code/Magento/Ui/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Ui/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Ui/Model/Bookmark.php
 mode change 100644 => 100755 app/code/Magento/Ui/Model/BookmarkManagement.php
 mode change 100644 => 100755 app/code/Magento/Ui/Model/Config.php
 mode change 100644 => 100755 app/code/Magento/Ui/Model/Export/ConvertToCsv.php
 mode change 100644 => 100755 app/code/Magento/Ui/Model/Export/ConvertToXml.php
 mode change 100644 => 100755 app/code/Magento/Ui/Model/Export/MetadataProvider.php
 mode change 100644 => 100755 app/code/Magento/Ui/Model/Export/SearchResultIterator.php
 mode change 100644 => 100755 app/code/Magento/Ui/Model/Manager.php
 mode change 100644 => 100755 app/code/Magento/Ui/Model/ResourceModel/Bookmark.php
 mode change 100644 => 100755 app/code/Magento/Ui/Model/ResourceModel/Bookmark/Collection.php
 mode change 100644 => 100755 app/code/Magento/Ui/Model/ResourceModel/BookmarkRepository.php
 mode change 100644 => 100755 app/code/Magento/Ui/Model/UiComponentGenerator.php
 mode change 100644 => 100755 app/code/Magento/Ui/README.md
 mode change 100644 => 100755 app/code/Magento/Ui/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/Ui/TemplateEngine/Xhtml/Compiler/Element/Content.php
 mode change 100644 => 100755 app/code/Magento/Ui/TemplateEngine/Xhtml/Compiler/Element/Form.php
 mode change 100644 => 100755 app/code/Magento/Ui/TemplateEngine/Xhtml/Compiler/Element/Render.php
 mode change 100644 => 100755 app/code/Magento/Ui/TemplateEngine/Xhtml/Result.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Component/AbstractComponentTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Component/Control/ActionPoolTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Component/Control/ActionTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Component/Control/ButtonTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Component/Control/ContainerTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Component/Control/LinkTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Component/ExportButtonTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Component/Filters/FilterModifierTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Component/Filters/Type/DateRangeTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Component/Filters/Type/DateTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Component/Filters/Type/InputTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Component/Filters/Type/RangeTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Component/Filters/Type/SelectTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Component/FiltersTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Component/Form/Element/AbstractElementTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Component/Form/Element/ActionDeleteTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Component/Form/Element/CheckboxSetTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Component/Form/Element/DataType/DateTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Component/Form/Element/DataType/MediaTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Component/Form/Element/MultiSelectTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Component/Form/Element/RadioSetTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Component/Form/Element/SelectTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Component/Form/Element/WysiwygTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Component/Form/Field/MultilineTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Component/Form/FieldTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Component/FormTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Component/Listing/Columns/ColumnTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Component/Listing/Columns/DateTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Component/Listing/ColumnsTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Component/ListingTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Component/MassAction/Columns/ColumnTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Component/MassAction/FilterTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Component/MassActionTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Component/PagingTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Config/Converter/ActionsTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Config/Converter/AdditionalClassesTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Config/Converter/ButtonsTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Config/Converter/CommunicationTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Config/Converter/CompositeTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Config/Converter/DepsTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Config/Converter/HtmlContentTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Config/Converter/ItemTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Config/Converter/OptionsTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Config/Converter/StorageConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Config/Converter/UrlTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Config/Converter/_files/test.xml
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Config/Converter/_files/testForm.xml
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Controller/Adminhtml/Export/GridToCsvTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Controller/Adminhtml/Export/GridToXmlTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Controller/Adminhtml/Index/Render/HandleTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Controller/Adminhtml/Index/RenderTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/DataProvider/EavValidationRulesTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/DataProvider/Modifier/PoolTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Model/BookmarkManagementTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Model/Export/ConvertToCsvTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Model/Export/ConvertToXmlTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Model/Export/MetadataProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Model/ManagerTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Model/ResourceModel/BookmarkRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/Model/UiComponentGeneratorTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/Test/Unit/TemplateEngine/Xhtml/ResultTest.php
 mode change 100644 => 100755 app/code/Magento/Ui/composer.json
 mode change 100644 => 100755 app/code/Magento/Ui/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/Ui/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/Ui/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/Ui/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/Ui/etc/data_source.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Ui/etc/frontend/routes.xml
 mode change 100644 => 100755 app/code/Magento/Ui/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Ui/etc/ui_components.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/etc/ui_configuration.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/etc/ui_definition.map.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/etc/ui_definition.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/etc/ui_template.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/i18n/de_DE.csv
 mode change 100644 => 100755 app/code/Magento/Ui/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Ui/i18n/es_ES.csv
 mode change 100644 => 100755 app/code/Magento/Ui/i18n/fr_FR.csv
 mode change 100644 => 100755 app/code/Magento/Ui/i18n/nl_NL.csv
 mode change 100644 => 100755 app/code/Magento/Ui/i18n/pt_BR.csv
 mode change 100644 => 100755 app/code/Magento/Ui/i18n/zh_Hans_CN.csv
 mode change 100644 => 100755 app/code/Magento/Ui/registration.php
 mode change 100644 => 100755 app/code/Magento/Ui/view/adminhtml/web/templates/modal/modal-prompt-content.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/layout/default.xml
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/requirejs-config.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/templates/container/content/default.phtml
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/templates/context/default.phtml
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/templates/control/button/default.phtml
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/templates/control/button/split.phtml
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/templates/form/default.phtml
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/templates/label/default.phtml
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/templates/layout/tabs/default.phtml
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/templates/layout/tabs/nav/default.phtml
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/templates/logger.phtml
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/templates/stepswizard.phtml
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition.map.xml
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/action.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/actionDelete.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/actions.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/actionsColumn.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/bookmark.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/boolean.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/button.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/checkbox.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/checkboxset.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/column.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/columns.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/columnsControls.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/component.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/container.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/dataProvider.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/dataSource.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/date.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/dynamicRows.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/email.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/exportButton.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/field.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/fieldset.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/file.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/fileUploader.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/filterRange.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/filters.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/form.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/hidden.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/htmlContent.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/inlineEditing.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/input.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/insertForm.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/insertListing.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/listing.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/listingToolbar.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/massaction.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/modal.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/multiline.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/multiselect.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/nav.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/number.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/paging.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/price.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/radioset.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/select.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/selectionsColumn.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/tab.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/text.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/textarea.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/ui_component.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/ui_settings.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/etc/definition/wysiwyg.xsd
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/templates/container/default.xhtml
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/templates/export/button.xhtml
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/templates/form/collapsible.xhtml
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/templates/form/default.xhtml
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/ui_component/templates/listing/default.xhtml
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/block-loader.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/core/app.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/core/renderer/layout.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/core/renderer/types.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/dynamic-rows/action-delete.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/dynamic-rows/dnd.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/dynamic-rows/dynamic-rows-grid.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/dynamic-rows/dynamic-rows.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/dynamic-rows/record.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/form/adapter.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/form/button-adapter.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/form/client.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/form/components/area.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/form/components/button.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/form/components/collection.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/form/components/collection/item.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/form/components/fieldset.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/form/components/group.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/form/components/html.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/form/components/insert-form.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/form/components/insert-listing.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/form/components/insert.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/form/components/tab.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/form/components/tab_group.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/form/element/boolean.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/form/element/checkbox-set.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/form/element/country.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/form/element/date.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/form/element/file-uploader.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/form/element/media.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/form/element/multiselect.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/form/element/post-code.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/form/element/region.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/form/element/select.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/form/element/single-checkbox-toggle-notice.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/form/element/single-checkbox-use-config.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/form/element/single-checkbox.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/form/element/text.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/form/element/textarea.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/form/element/ui-select.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/form/element/website.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/form/element/wysiwyg.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/form/form.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/form/provider.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/form/switcher.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/grid/columns/actions.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/grid/columns/column.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/grid/columns/date.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/grid/columns/expandable.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/grid/columns/link.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/grid/columns/multiselect.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/grid/columns/select.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/grid/columns/thumbnail.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/grid/controls/bookmarks/bookmarks.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/grid/controls/bookmarks/storage.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/grid/controls/columns.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/grid/data-storage.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/grid/dnd.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/grid/editing/bulk.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/grid/editing/client.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/grid/editing/editor-view.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/grid/editing/editor.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/grid/editing/record.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/grid/export.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/grid/filters/chips.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/grid/filters/filters.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/grid/filters/range.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/grid/listing.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/grid/massactions.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/grid/paging/paging.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/grid/paging/sizes.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/grid/provider.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/grid/resize.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/grid/search/search.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/grid/sticky/sticky.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/grid/toolbar.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/grid/tree-massactions.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/collapsible.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/core/class.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/core/collection.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/core/element/element.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/core/element/links.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/core/events.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/core/storage/local.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/key-codes.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/after-render.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/autoselect.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/bind-html.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/bootstrap.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/collapsible.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/datepicker.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/fadeVisible.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/i18n.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/keyboard.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/mage-init.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/optgroup.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/outer_click.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/range.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/resizable.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/scope.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/simple-checked.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/staticChecked.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/tooltip.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/knockout/bootstrap.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/knockout/extender/bound-nodes.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/knockout/extender/observable_array.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/knockout/template/engine.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/knockout/template/loader.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/knockout/template/observable_source.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/knockout/template/renderer.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/logger/console-logger.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/logger/console-output-handler.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/logger/entry-factory.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/logger/entry.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/logger/formatter.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/logger/levels-pool.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/logger/logger-utils.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/logger/logger.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/logger/message-pool.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/registry/registry.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/spinner.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/step-wizard.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/validation/rules.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/validation/utils.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/validation/validator.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/view/utils/async.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/view/utils/bindings.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/view/utils/dom-observer.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/lib/view/utils/raf.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/modal/alert.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/modal/confirm.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/modal/modal-component.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/modal/modal.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/modal/modalToggle.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/modal/prompt.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/timeline/timeline-view.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/js/timeline/timeline.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/area.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/block-loader.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/collection.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/content/content.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/dynamic-rows/cells/action-delete.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/dynamic-rows/cells/dnd.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/dynamic-rows/cells/text.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/dynamic-rows/cells/thumbnail.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/dynamic-rows/templates/collapsible.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/dynamic-rows/templates/default.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/dynamic-rows/templates/grid.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/form/collection.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/form/components/button/container.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/form/components/button/simple.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/form/components/collection.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/form/components/collection/preview.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/form/components/complex.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/form/components/single/checkbox.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/form/components/single/field.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/form/components/single/radio.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/form/components/single/switcher.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/form/element/button.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/form/element/checkbox-set.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/form/element/checkbox.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/form/element/date.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/form/element/email.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/form/element/helper/fallback-reset.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/form/element/helper/service.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/form/element/helper/tooltip.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/form/element/hidden.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/form/element/html.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/form/element/input.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/form/element/media.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/form/element/multiselect.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/form/element/preview.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/form/element/price.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/form/element/radio.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/form/element/select.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/form/element/split-button.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/form/element/switcher.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/form/element/text.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/form/element/textDate.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/form/element/textarea.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/form/element/uploader/preview.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/form/element/uploader/uploader.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/form/element/wysiwyg.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/form/field.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/form/fieldset.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/form/insert.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/grid/actions.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/grid/cells/actions.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/grid/cells/expandable.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/grid/cells/expandable/content.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/grid/cells/html.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/grid/cells/link.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/grid/cells/multiselect.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/grid/cells/onoff.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/grid/cells/text.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/grid/cells/thumbnail.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/grid/cells/thumbnail/preview.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/grid/columns/multiselect.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/grid/columns/onoff.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/grid/columns/text.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/grid/controls/bookmarks/bookmarks.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/grid/controls/bookmarks/view.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/grid/controls/columns.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/grid/editing/bulk.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/grid/editing/field.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/grid/editing/header-buttons.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/grid/editing/row-buttons.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/grid/editing/row.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/grid/exportButton.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/grid/filters/chips.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/grid/filters/elements/group.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/grid/filters/elements/ui-select-optgroup.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/grid/filters/elements/ui-select.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/grid/filters/field.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/grid/filters/filters.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/grid/listing.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/grid/paging-total.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/grid/paging/paging-detailed-total.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/grid/paging/paging.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/grid/paging/sizes.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/grid/search/search.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/grid/sticky/filters.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/grid/sticky/listing.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/grid/sticky/sticky.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/grid/submenu.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/grid/toolbar.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/grid/tree-massactions.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/grid/view-switcher.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/group/group.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/list/listing.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/modal/modal-component.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/modal/modal-custom.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/modal/modal-popup.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/modal/modal-prompt-content.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/modal/modal-slide.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/tab.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/timeline/record.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/timeline/timeline.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/base/web/templates/tooltip/tooltip.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/frontend/web/js/model/messageList.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/frontend/web/js/model/messages.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/frontend/web/js/view/messages.js
 mode change 100644 => 100755 app/code/Magento/Ui/view/frontend/web/template/messages.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/frontend/web/templates/form/element/checkbox.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/frontend/web/templates/form/element/date.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/frontend/web/templates/form/element/email.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/frontend/web/templates/form/element/helper/tooltip.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/frontend/web/templates/form/element/input.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/frontend/web/templates/form/element/password.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/frontend/web/templates/form/element/select.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/frontend/web/templates/form/field.html
 mode change 100644 => 100755 app/code/Magento/Ui/view/frontend/web/templates/group/group.html
 mode change 100644 => 100755 app/code/Magento/Ups/Block/Backend/System/CarrierConfig.php
 mode change 100644 => 100755 app/code/Magento/Ups/Helper/Config.php
 mode change 100644 => 100755 app/code/Magento/Ups/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Ups/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Ups/Model/Carrier.php
 mode change 100644 => 100755 app/code/Magento/Ups/Model/Config/Source/Container.php
 mode change 100644 => 100755 app/code/Magento/Ups/Model/Config/Source/DestType.php
 mode change 100644 => 100755 app/code/Magento/Ups/Model/Config/Source/Freemethod.php
 mode change 100644 => 100755 app/code/Magento/Ups/Model/Config/Source/Generic.php
 mode change 100644 => 100755 app/code/Magento/Ups/Model/Config/Source/Method.php
 mode change 100644 => 100755 app/code/Magento/Ups/Model/Config/Source/OriginShipment.php
 mode change 100644 => 100755 app/code/Magento/Ups/Model/Config/Source/Pickup.php
 mode change 100644 => 100755 app/code/Magento/Ups/Model/Config/Source/Type.php
 mode change 100644 => 100755 app/code/Magento/Ups/Model/Config/Source/Unitofmeasure.php
 mode change 100644 => 100755 app/code/Magento/Ups/README.md
 mode change 100644 => 100755 app/code/Magento/Ups/Test/Unit/Helper/ConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Ups/Test/Unit/Model/CarrierTest.php
 mode change 100644 => 100755 app/code/Magento/Ups/composer.json
 mode change 100644 => 100755 app/code/Magento/Ups/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/Ups/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/Ups/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Ups/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Ups/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Ups/registration.php
 mode change 100644 => 100755 app/code/Magento/Ups/view/adminhtml/layout/adminhtml_system_config_edit.xml
 mode change 100644 => 100755 app/code/Magento/Ups/view/adminhtml/templates/system/shipping/carrier_config.phtml
 mode change 100644 => 100755 app/code/Magento/Ups/view/frontend/layout/checkout_cart_index.xml
 mode change 100644 => 100755 app/code/Magento/Ups/view/frontend/layout/checkout_index_index.xml
 mode change 100644 => 100755 app/code/Magento/Ups/view/frontend/web/js/model/shipping-rates-validation-rules.js
 mode change 100644 => 100755 app/code/Magento/Ups/view/frontend/web/js/model/shipping-rates-validator.js
 mode change 100644 => 100755 app/code/Magento/Ups/view/frontend/web/js/view/shipping-rates-validation.js
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Block/Catalog/Category/Edit.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Block/Catalog/Category/Tree.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Block/Catalog/Edit/Form.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Block/Catalog/Product/Edit.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Block/Catalog/Product/Grid.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Block/Cms/Page/Edit.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Block/Cms/Page/Edit/Form.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Block/Cms/Page/Grid.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Block/Edit.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Block/Edit/Form.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Block/GridContainer.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Block/Link.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Block/Plugin/Store/Switcher/SetRedirectUrl.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Block/Selector.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Controller/Adminhtml/Url/Rewrite.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Controller/Adminhtml/Url/Rewrite/CategoriesJson.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Controller/Adminhtml/Url/Rewrite/CmsPageGrid.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Controller/Adminhtml/Url/Rewrite/Delete.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Controller/Adminhtml/Url/Rewrite/Edit.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Controller/Adminhtml/Url/Rewrite/Index.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Controller/Adminhtml/Url/Rewrite/ProductGrid.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Controller/Adminhtml/Url/Rewrite/Save.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Controller/Router.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Helper/UrlRewrite.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Model/Exception/UrlAlreadyExistsException.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Model/MergeDataProvider.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Model/Message/UrlRewriteExceptionMessageFactory.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Model/OptionProvider.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Model/ResourceModel/UrlRewrite.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Model/ResourceModel/UrlRewriteCollection.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Model/Storage/AbstractStorage.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Model/Storage/DbStorage.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Model/StorageInterface.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Model/UrlFinderInterface.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Model/UrlPersistInterface.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Model/UrlRewrite.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/README.md
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Service/V1/Data/UrlRewrite.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Setup/UpgradeData.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Test/Unit/Block/Catalog/Edit/FormTest.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Test/Unit/Block/Plugin/Store/Switcher/SetRedirectUrlTest.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Test/Unit/Controller/RouterTest.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Test/Unit/Helper/UrlRewriteTest.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Test/Unit/Model/Exception/UrlAlreadyExistsExceptionTest.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Test/Unit/Model/MergeDataProviderTest.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Test/Unit/Model/Message/UrlRewriteExceptionMessageFactoryTest.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Test/Unit/Model/ResourceModel/UrlRewriteCollectionTest.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Test/Unit/Model/Storage/AbstractStorageTest.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Test/Unit/Model/Storage/DbStorageTest.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Test/Unit/Model/UrlRewriteTest.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/Test/Unit/Service/V1/Data/UrlRewriteTest.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/composer.json
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/etc/acl.xml
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/etc/adminhtml/menu.xml
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/etc/frontend/di.xml
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/registration.php
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/view/adminhtml/layout/adminhtml_url_rewrite_index.xml
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/view/adminhtml/templates/categories.phtml
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/view/adminhtml/templates/edit.phtml
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/view/adminhtml/templates/messages/url_duplicate_message.phtml
 mode change 100644 => 100755 app/code/Magento/UrlRewrite/view/adminhtml/templates/selector.phtml
 mode change 100644 => 100755 app/code/Magento/User/Api/Data/UserInterface.php
 mode change 100644 => 100755 app/code/Magento/User/Block/Adminhtml/Locks.php
 mode change 100644 => 100755 app/code/Magento/User/Block/Buttons.php
 mode change 100644 => 100755 app/code/Magento/User/Block/Role.php
 mode change 100644 => 100755 app/code/Magento/User/Block/Role/Edit.php
 mode change 100644 => 100755 app/code/Magento/User/Block/Role/Grid/User.php
 mode change 100644 => 100755 app/code/Magento/User/Block/Role/Tab/Edit.php
 mode change 100644 => 100755 app/code/Magento/User/Block/Role/Tab/Info.php
 mode change 100644 => 100755 app/code/Magento/User/Block/Role/Tab/Users.php
 mode change 100644 => 100755 app/code/Magento/User/Block/User.php
 mode change 100644 => 100755 app/code/Magento/User/Block/User/Edit.php
 mode change 100644 => 100755 app/code/Magento/User/Block/User/Edit/Form.php
 mode change 100644 => 100755 app/code/Magento/User/Block/User/Edit/Tab/Main.php
 mode change 100644 => 100755 app/code/Magento/User/Block/User/Edit/Tab/Roles.php
 mode change 100644 => 100755 app/code/Magento/User/Block/User/Edit/Tabs.php
 mode change 100644 => 100755 app/code/Magento/User/Console/UnlockAdminAccountCommand.php
 mode change 100644 => 100755 app/code/Magento/User/Controller/Adminhtml/Auth.php
 mode change 100644 => 100755 app/code/Magento/User/Controller/Adminhtml/Auth/Forgotpassword.php
 mode change 100644 => 100755 app/code/Magento/User/Controller/Adminhtml/Auth/ResetPassword.php
 mode change 100644 => 100755 app/code/Magento/User/Controller/Adminhtml/Auth/ResetPasswordPost.php
 mode change 100644 => 100755 app/code/Magento/User/Controller/Adminhtml/Locks.php
 mode change 100644 => 100755 app/code/Magento/User/Controller/Adminhtml/Locks/Grid.php
 mode change 100644 => 100755 app/code/Magento/User/Controller/Adminhtml/Locks/Index.php
 mode change 100644 => 100755 app/code/Magento/User/Controller/Adminhtml/Locks/MassUnlock.php
 mode change 100644 => 100755 app/code/Magento/User/Controller/Adminhtml/User.php
 mode change 100644 => 100755 app/code/Magento/User/Controller/Adminhtml/User/Delete.php
 mode change 100644 => 100755 app/code/Magento/User/Controller/Adminhtml/User/Edit.php
 mode change 100644 => 100755 app/code/Magento/User/Controller/Adminhtml/User/Index.php
 mode change 100644 => 100755 app/code/Magento/User/Controller/Adminhtml/User/InvalidateToken.php
 mode change 100644 => 100755 app/code/Magento/User/Controller/Adminhtml/User/NewAction.php
 mode change 100644 => 100755 app/code/Magento/User/Controller/Adminhtml/User/Role.php
 mode change 100644 => 100755 app/code/Magento/User/Controller/Adminhtml/User/Role/Delete.php
 mode change 100644 => 100755 app/code/Magento/User/Controller/Adminhtml/User/Role/EditRole.php
 mode change 100644 => 100755 app/code/Magento/User/Controller/Adminhtml/User/Role/Editrolegrid.php
 mode change 100644 => 100755 app/code/Magento/User/Controller/Adminhtml/User/Role/Index.php
 mode change 100644 => 100755 app/code/Magento/User/Controller/Adminhtml/User/Role/RoleGrid.php
 mode change 100644 => 100755 app/code/Magento/User/Controller/Adminhtml/User/Role/SaveRole.php
 mode change 100644 => 100755 app/code/Magento/User/Controller/Adminhtml/User/RoleGrid.php
 mode change 100644 => 100755 app/code/Magento/User/Controller/Adminhtml/User/RolesGrid.php
 mode change 100644 => 100755 app/code/Magento/User/Controller/Adminhtml/User/Save.php
 mode change 100644 => 100755 app/code/Magento/User/Controller/Adminhtml/User/Validate.php
 mode change 100644 => 100755 app/code/Magento/User/Helper/Data.php
 mode change 100644 => 100755 app/code/Magento/User/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/User/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/User/Model/Authorization/AdminSessionUserContext.php
 mode change 100644 => 100755 app/code/Magento/User/Model/Backend/Config/ObserverConfig.php
 mode change 100644 => 100755 app/code/Magento/User/Model/Plugin/AuthorizationRole.php
 mode change 100644 => 100755 app/code/Magento/User/Model/ResourceModel/Role/User/Collection.php
 mode change 100644 => 100755 app/code/Magento/User/Model/ResourceModel/User.php
 mode change 100644 => 100755 app/code/Magento/User/Model/ResourceModel/User/Collection.php
 mode change 100644 => 100755 app/code/Magento/User/Model/ResourceModel/User/Locked/Collection.php
 mode change 100644 => 100755 app/code/Magento/User/Model/System/Config/Source/Password.php
 mode change 100644 => 100755 app/code/Magento/User/Model/User.php
 mode change 100644 => 100755 app/code/Magento/User/Model/UserValidationRules.php
 mode change 100644 => 100755 app/code/Magento/User/Observer/Backend/AuthObserver.php
 mode change 100644 => 100755 app/code/Magento/User/Observer/Backend/ForceAdminPasswordChangeObserver.php
 mode change 100644 => 100755 app/code/Magento/User/Observer/Backend/TrackAdminNewPasswordObserver.php
 mode change 100644 => 100755 app/code/Magento/User/README.md
 mode change 100644 => 100755 app/code/Magento/User/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/User/Setup/UpgradeData.php
 mode change 100644 => 100755 app/code/Magento/User/Setup/UpgradeSchema.php
 mode change 100644 => 100755 app/code/Magento/User/Test/Unit/Block/Role/EditTest.php
 mode change 100644 => 100755 app/code/Magento/User/Test/Unit/Block/Role/Grid/UserTest.php
 mode change 100644 => 100755 app/code/Magento/User/Test/Unit/Block/Role/Tab/EditTest.php
 mode change 100644 => 100755 app/code/Magento/User/Test/Unit/Block/Role/Tab/InfoTest.php
 mode change 100644 => 100755 app/code/Magento/User/Test/Unit/Block/Role/Tab/UsersTest.php
 mode change 100644 => 100755 app/code/Magento/User/Test/Unit/Console/UnlockAdminAccountCommandTest.php
 mode change 100644 => 100755 app/code/Magento/User/Test/Unit/Controller/Adminhtml/User/DeleteTest.php
 mode change 100644 => 100755 app/code/Magento/User/Test/Unit/Helper/DataTest.php
 mode change 100644 => 100755 app/code/Magento/User/Test/Unit/Model/Authorization/AdminSessionUserContextTest.php
 mode change 100644 => 100755 app/code/Magento/User/Test/Unit/Model/Plugin/AuthorizationRoleTest.php
 mode change 100644 => 100755 app/code/Magento/User/Test/Unit/Model/ResourceModel/UserTest.php
 mode change 100644 => 100755 app/code/Magento/User/Test/Unit/Model/UserTest.php
 mode change 100644 => 100755 app/code/Magento/User/Test/Unit/Model/UserValidationRulesTest.php
 mode change 100644 => 100755 app/code/Magento/User/Test/Unit/Observer/Backend/AuthObserverTest.php
 mode change 100644 => 100755 app/code/Magento/User/Test/Unit/Observer/Backend/ForceAdminPasswordChangeObserverTest.php
 mode change 100644 => 100755 app/code/Magento/User/Test/Unit/Observer/Backend/TrackAdminNewPasswordObserverTest.php
 mode change 100644 => 100755 app/code/Magento/User/composer.json
 mode change 100644 => 100755 app/code/Magento/User/etc/acl.xml
 mode change 100644 => 100755 app/code/Magento/User/etc/adminhtml/menu.xml
 mode change 100644 => 100755 app/code/Magento/User/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/User/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/User/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/User/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/User/etc/email_templates.xml
 mode change 100644 => 100755 app/code/Magento/User/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/User/etc/webapi_rest/di.xml
 mode change 100644 => 100755 app/code/Magento/User/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/User/registration.php
 mode change 100644 => 100755 app/code/Magento/User/view/adminhtml/email/password_reset_confirmation.html
 mode change 100644 => 100755 app/code/Magento/User/view/adminhtml/email/user_notification.html
 mode change 100644 => 100755 app/code/Magento/User/view/adminhtml/layout/adminhtml_auth_forgotpassword.xml
 mode change 100644 => 100755 app/code/Magento/User/view/adminhtml/layout/adminhtml_auth_login.xml
 mode change 100644 => 100755 app/code/Magento/User/view/adminhtml/layout/adminhtml_auth_resetpassword.xml
 mode change 100644 => 100755 app/code/Magento/User/view/adminhtml/layout/adminhtml_locks_block.xml
 mode change 100644 => 100755 app/code/Magento/User/view/adminhtml/layout/adminhtml_locks_grid.xml
 mode change 100644 => 100755 app/code/Magento/User/view/adminhtml/layout/adminhtml_locks_index.xml
 mode change 100644 => 100755 app/code/Magento/User/view/adminhtml/layout/adminhtml_user_edit.xml
 mode change 100644 => 100755 app/code/Magento/User/view/adminhtml/layout/adminhtml_user_grid_block.xml
 mode change 100644 => 100755 app/code/Magento/User/view/adminhtml/layout/adminhtml_user_index.xml
 mode change 100644 => 100755 app/code/Magento/User/view/adminhtml/layout/adminhtml_user_role_editrole.xml
 mode change 100644 => 100755 app/code/Magento/User/view/adminhtml/layout/adminhtml_user_role_editrolegrid.xml
 mode change 100644 => 100755 app/code/Magento/User/view/adminhtml/layout/adminhtml_user_role_grid_block.xml
 mode change 100644 => 100755 app/code/Magento/User/view/adminhtml/layout/adminhtml_user_role_index.xml
 mode change 100644 => 100755 app/code/Magento/User/view/adminhtml/layout/adminhtml_user_role_rolegrid.xml
 mode change 100644 => 100755 app/code/Magento/User/view/adminhtml/layout/adminhtml_user_rolegrid.xml
 mode change 100644 => 100755 app/code/Magento/User/view/adminhtml/layout/adminhtml_user_rolesgrid.xml
 mode change 100644 => 100755 app/code/Magento/User/view/adminhtml/requirejs-config.js
 mode change 100644 => 100755 app/code/Magento/User/view/adminhtml/templates/admin/forgotpassword.phtml
 mode change 100644 => 100755 app/code/Magento/User/view/adminhtml/templates/admin/forgotpassword_url.phtml
 mode change 100644 => 100755 app/code/Magento/User/view/adminhtml/templates/admin/resetforgottenpassword.phtml
 mode change 100644 => 100755 app/code/Magento/User/view/adminhtml/templates/role/edit.phtml
 mode change 100644 => 100755 app/code/Magento/User/view/adminhtml/templates/role/info.phtml
 mode change 100644 => 100755 app/code/Magento/User/view/adminhtml/templates/role/users.phtml
 mode change 100644 => 100755 app/code/Magento/User/view/adminhtml/templates/role/users_grid_js.phtml
 mode change 100644 => 100755 app/code/Magento/User/view/adminhtml/templates/user/roles_grid_js.phtml
 mode change 100644 => 100755 app/code/Magento/User/view/adminhtml/web/app-config.js
 mode change 100644 => 100755 app/code/Magento/User/view/adminhtml/web/js/delete-user-account.js
 mode change 100644 => 100755 app/code/Magento/User/view/adminhtml/web/js/roles-tree.js
 mode change 100644 => 100755 app/code/Magento/Usps/Block/Adminhtml/Order/Packaging/Plugin/DisplayGirth.php
 mode change 100644 => 100755 app/code/Magento/Usps/Helper/Data.php
 mode change 100644 => 100755 app/code/Magento/Usps/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Usps/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Usps/Model/Carrier.php
 mode change 100644 => 100755 app/code/Magento/Usps/Model/Source/Container.php
 mode change 100644 => 100755 app/code/Magento/Usps/Model/Source/Freemethod.php
 mode change 100644 => 100755 app/code/Magento/Usps/Model/Source/Generic.php
 mode change 100644 => 100755 app/code/Magento/Usps/Model/Source/Machinable.php
 mode change 100644 => 100755 app/code/Magento/Usps/Model/Source/Method.php
 mode change 100644 => 100755 app/code/Magento/Usps/Model/Source/Size.php
 mode change 100644 => 100755 app/code/Magento/Usps/README.md
 mode change 100644 => 100755 app/code/Magento/Usps/Setup/UpgradeData.php
 mode change 100644 => 100755 app/code/Magento/Usps/Test/Unit/Helper/DataTest.php
 mode change 100644 => 100755 app/code/Magento/Usps/Test/Unit/Model/CarrierTest.php
 mode change 100644 => 100755 app/code/Magento/Usps/Test/Unit/Model/Source/GenericTest.php
 mode change 100644 => 100755 app/code/Magento/Usps/Test/Unit/Model/_files/rates_request_data.php
 mode change 100644 => 100755 app/code/Magento/Usps/Test/Unit/Model/_files/response_rates.xml
 mode change 100644 => 100755 app/code/Magento/Usps/Test/Unit/Model/_files/return_shipment_request_data.php
 mode change 100644 => 100755 app/code/Magento/Usps/Test/Unit/Model/_files/success_usps_response_rates.xml
 mode change 100644 => 100755 app/code/Magento/Usps/Test/Unit/Model/_files/success_usps_response_return_shipment.xml
 mode change 100644 => 100755 app/code/Magento/Usps/composer.json
 mode change 100644 => 100755 app/code/Magento/Usps/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/Usps/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/Usps/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/Usps/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Usps/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Usps/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Usps/registration.php
 mode change 100644 => 100755 app/code/Magento/Usps/view/frontend/layout/checkout_cart_index.xml
 mode change 100644 => 100755 app/code/Magento/Usps/view/frontend/layout/checkout_index_index.xml
 mode change 100644 => 100755 app/code/Magento/Usps/view/frontend/web/js/model/shipping-rates-validation-rules.js
 mode change 100644 => 100755 app/code/Magento/Usps/view/frontend/web/js/model/shipping-rates-validator.js
 mode change 100644 => 100755 app/code/Magento/Usps/view/frontend/web/js/view/shipping-rates-validation.js
 mode change 100644 => 100755 app/code/Magento/Variable/Block/System/Variable.php
 mode change 100644 => 100755 app/code/Magento/Variable/Block/System/Variable/Edit.php
 mode change 100644 => 100755 app/code/Magento/Variable/Block/System/Variable/Edit/Form.php
 mode change 100644 => 100755 app/code/Magento/Variable/Controller/Adminhtml/System/Variable.php
 mode change 100644 => 100755 app/code/Magento/Variable/Controller/Adminhtml/System/Variable/Delete.php
 mode change 100644 => 100755 app/code/Magento/Variable/Controller/Adminhtml/System/Variable/Edit.php
 mode change 100644 => 100755 app/code/Magento/Variable/Controller/Adminhtml/System/Variable/Index.php
 mode change 100644 => 100755 app/code/Magento/Variable/Controller/Adminhtml/System/Variable/NewAction.php
 mode change 100644 => 100755 app/code/Magento/Variable/Controller/Adminhtml/System/Variable/Save.php
 mode change 100644 => 100755 app/code/Magento/Variable/Controller/Adminhtml/System/Variable/Validate.php
 mode change 100644 => 100755 app/code/Magento/Variable/Controller/Adminhtml/System/Variable/WysiwygPlugin.php
 mode change 100644 => 100755 app/code/Magento/Variable/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Variable/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Variable/Model/ResourceModel/Variable.php
 mode change 100644 => 100755 app/code/Magento/Variable/Model/ResourceModel/Variable/Collection.php
 mode change 100644 => 100755 app/code/Magento/Variable/Model/Variable.php
 mode change 100644 => 100755 app/code/Magento/Variable/Model/Variable/Config.php
 mode change 100644 => 100755 app/code/Magento/Variable/README.md
 mode change 100644 => 100755 app/code/Magento/Variable/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/Variable/Test/Unit/Controller/Adminhtml/System/Variable/ValidateTest.php
 mode change 100644 => 100755 app/code/Magento/Variable/Test/Unit/Model/Variable/ConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Variable/Test/Unit/Model/VariableTest.php
 mode change 100644 => 100755 app/code/Magento/Variable/composer.json
 mode change 100644 => 100755 app/code/Magento/Variable/etc/acl.xml
 mode change 100644 => 100755 app/code/Magento/Variable/etc/adminhtml/menu.xml
 mode change 100644 => 100755 app/code/Magento/Variable/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/Variable/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Variable/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Variable/registration.php
 mode change 100644 => 100755 app/code/Magento/Variable/view/adminhtml/layout/adminhtml_system_variable_edit.xml
 mode change 100644 => 100755 app/code/Magento/Variable/view/adminhtml/layout/adminhtml_system_variable_grid_block.xml
 mode change 100644 => 100755 app/code/Magento/Variable/view/adminhtml/layout/adminhtml_system_variable_index.xml
 mode change 100644 => 100755 app/code/Magento/Variable/view/adminhtml/templates/system/variable/js.phtml
 mode change 100644 => 100755 app/code/Magento/Variable/view/adminhtml/web/variables.js
 mode change 100644 => 100755 app/code/Magento/Vault/Api/Data/PaymentTokenFactoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Vault/Api/Data/PaymentTokenInterface.php
 mode change 100644 => 100755 app/code/Magento/Vault/Api/Data/PaymentTokenInterfaceFactory.php
 mode change 100644 => 100755 app/code/Magento/Vault/Api/Data/PaymentTokenSearchResultsInterface.php
 mode change 100644 => 100755 app/code/Magento/Vault/Api/PaymentMethodListInterface.php
 mode change 100644 => 100755 app/code/Magento/Vault/Api/PaymentTokenManagementInterface.php
 mode change 100644 => 100755 app/code/Magento/Vault/Api/PaymentTokenRepositoryInterface.php
 mode change 100644 => 100755 app/code/Magento/Vault/Block/AbstractCardRenderer.php
 mode change 100644 => 100755 app/code/Magento/Vault/Block/AbstractTokenRenderer.php
 mode change 100644 => 100755 app/code/Magento/Vault/Block/CardRendererInterface.php
 mode change 100644 => 100755 app/code/Magento/Vault/Block/Customer/AccountTokens.php
 mode change 100644 => 100755 app/code/Magento/Vault/Block/Customer/CreditCards.php
 mode change 100644 => 100755 app/code/Magento/Vault/Block/Customer/IconInterface.php
 mode change 100644 => 100755 app/code/Magento/Vault/Block/Customer/PaymentTokens.php
 mode change 100644 => 100755 app/code/Magento/Vault/Block/Form.php
 mode change 100644 => 100755 app/code/Magento/Vault/Block/TokenRendererInterface.php
 mode change 100644 => 100755 app/code/Magento/Vault/Controller/Cards/DeleteAction.php
 mode change 100644 => 100755 app/code/Magento/Vault/Controller/Cards/ListAction.php
 mode change 100644 => 100755 app/code/Magento/Vault/Controller/CardsManagement.php
 mode change 100644 => 100755 app/code/Magento/Vault/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Vault/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Vault/Model/AbstractPaymentTokenFactory.php
 mode change 100644 => 100755 app/code/Magento/Vault/Model/AccountPaymentTokenFactory.php
 mode change 100644 => 100755 app/code/Magento/Vault/Model/CreditCardTokenFactory.php
 mode change 100644 => 100755 app/code/Magento/Vault/Model/CustomerTokenManagement.php
 mode change 100644 => 100755 app/code/Magento/Vault/Model/Method/NullPaymentProvider.php
 mode change 100644 => 100755 app/code/Magento/Vault/Model/Method/Vault.php
 mode change 100644 => 100755 app/code/Magento/Vault/Model/PaymentMethodList.php
 mode change 100644 => 100755 app/code/Magento/Vault/Model/PaymentToken.php
 mode change 100644 => 100755 app/code/Magento/Vault/Model/PaymentTokenFactory.php
 mode change 100644 => 100755 app/code/Magento/Vault/Model/PaymentTokenManagement.php
 mode change 100644 => 100755 app/code/Magento/Vault/Model/PaymentTokenRepository.php
 mode change 100644 => 100755 app/code/Magento/Vault/Model/ResourceModel/PaymentToken.php
 mode change 100644 => 100755 app/code/Magento/Vault/Model/ResourceModel/PaymentToken/Collection.php
 mode change 100644 => 100755 app/code/Magento/Vault/Model/Ui/Adminhtml/TokensConfigProvider.php
 mode change 100644 => 100755 app/code/Magento/Vault/Model/Ui/TokenUiComponent.php
 mode change 100644 => 100755 app/code/Magento/Vault/Model/Ui/TokenUiComponentInterface.php
 mode change 100644 => 100755 app/code/Magento/Vault/Model/Ui/TokenUiComponentProviderInterface.php
 mode change 100644 => 100755 app/code/Magento/Vault/Model/Ui/TokensConfigProvider.php
 mode change 100644 => 100755 app/code/Magento/Vault/Model/Ui/VaultConfigProvider.php
 mode change 100644 => 100755 app/code/Magento/Vault/Model/VaultPaymentInterface.php
 mode change 100644 => 100755 app/code/Magento/Vault/Observer/AfterPaymentSaveObserver.php
 mode change 100644 => 100755 app/code/Magento/Vault/Observer/PaymentTokenAssigner.php
 mode change 100644 => 100755 app/code/Magento/Vault/Observer/VaultEnableAssigner.php
 mode change 100644 => 100755 app/code/Magento/Vault/Plugin/PaymentVaultAttributesLoad.php
 mode change 100644 => 100755 app/code/Magento/Vault/Plugin/PaymentVaultConfigurationProcess.php
 mode change 100644 => 100755 app/code/Magento/Vault/README.md
 mode change 100644 => 100755 app/code/Magento/Vault/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/Vault/Setup/UpgradeData.php
 mode change 100644 => 100755 app/code/Magento/Vault/Setup/UpgradeSchema.php
 mode change 100644 => 100755 app/code/Magento/Vault/Test/Unit/Block/Customer/AccountTokensTest.php
 mode change 100644 => 100755 app/code/Magento/Vault/Test/Unit/Model/AccountPaymentTokenFactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Vault/Test/Unit/Model/CreditCardTokenFactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Vault/Test/Unit/Model/CustomerTokenManagementTest.php
 mode change 100644 => 100755 app/code/Magento/Vault/Test/Unit/Model/Method/VaultTest.php
 mode change 100644 => 100755 app/code/Magento/Vault/Test/Unit/Model/PaymentMethodListTest.php
 mode change 100644 => 100755 app/code/Magento/Vault/Test/Unit/Model/PaymentTokenManagementTest.php
 mode change 100644 => 100755 app/code/Magento/Vault/Test/Unit/Model/PaymentTokenRepositoryTest.php
 mode change 100644 => 100755 app/code/Magento/Vault/Test/Unit/Model/Ui/Adminhtml/TokensConfigProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Vault/Test/Unit/Model/Ui/TokensConfigProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Vault/Test/Unit/Model/Ui/VaultConfigProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Vault/Test/Unit/Observer/AfterPaymentSaveObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Vault/Test/Unit/Observer/PaymentTokenAssignerTest.php
 mode change 100644 => 100755 app/code/Magento/Vault/Test/Unit/Observer/VaultEnableAssignerTest.php
 mode change 100644 => 100755 app/code/Magento/Vault/Test/Unit/Plugin/PaymentVaultConfigurationProcessTest.php
 mode change 100644 => 100755 app/code/Magento/Vault/composer.json
 mode change 100644 => 100755 app/code/Magento/Vault/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/Vault/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/Vault/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Vault/etc/events.xml
 mode change 100644 => 100755 app/code/Magento/Vault/etc/extension_attributes.xml
 mode change 100644 => 100755 app/code/Magento/Vault/etc/frontend/di.xml
 mode change 100644 => 100755 app/code/Magento/Vault/etc/frontend/routes.xml
 mode change 100644 => 100755 app/code/Magento/Vault/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Vault/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Vault/registration.php
 mode change 100644 => 100755 app/code/Magento/Vault/view/adminhtml/templates/form/vault.phtml
 mode change 100644 => 100755 app/code/Magento/Vault/view/adminhtml/web/js/vault.js
 mode change 100644 => 100755 app/code/Magento/Vault/view/frontend/layout/checkout_index_index.xml
 mode change 100644 => 100755 app/code/Magento/Vault/view/frontend/layout/customer_account.xml
 mode change 100644 => 100755 app/code/Magento/Vault/view/frontend/layout/vault_cards_listaction.xml
 mode change 100644 => 100755 app/code/Magento/Vault/view/frontend/templates/cards_list.phtml
 mode change 100644 => 100755 app/code/Magento/Vault/view/frontend/templates/customer_account/credit_card.phtml
 mode change 100644 => 100755 app/code/Magento/Vault/view/frontend/templates/token_list.phtml
 mode change 100644 => 100755 app/code/Magento/Vault/view/frontend/web/js/customer_account/deleteWidget.js
 mode change 100644 => 100755 app/code/Magento/Vault/view/frontend/web/js/view/payment/method-renderer/vault.js
 mode change 100644 => 100755 app/code/Magento/Vault/view/frontend/web/js/view/payment/vault-enabler.js
 mode change 100644 => 100755 app/code/Magento/Vault/view/frontend/web/js/view/payment/vault.js
 mode change 100644 => 100755 app/code/Magento/Vault/view/frontend/web/template/payment/form.html
 mode change 100644 => 100755 app/code/Magento/Version/Controller/Index/Index.php
 mode change 100644 => 100755 app/code/Magento/Version/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Version/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Version/README.md
 mode change 100644 => 100755 app/code/Magento/Version/composer.json
 mode change 100644 => 100755 app/code/Magento/Version/etc/frontend/routes.xml
 mode change 100644 => 100755 app/code/Magento/Version/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Version/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Version/registration.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Controller/PathProcessor.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Controller/Rest.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Controller/Rest/InputParamsResolver.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Controller/Rest/ParamOverriderCustomerId.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Controller/Rest/ParamsOverrider.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Controller/Rest/RequestValidator.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Controller/Rest/Router.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Controller/Rest/Router/Route.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Controller/Soap.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Controller/Soap/Request/Handler.php
 mode change 100644 => 100755 app/code/Magento/Webapi/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Webapi/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Webapi/Model/AbstractSchemaGenerator.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Model/Authorization/GuestUserContext.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Model/Authorization/OauthUserContext.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Model/Authorization/TokenUserContext.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Model/Cache/Type/Webapi.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Model/Config.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Model/Config/ClassReflector.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Model/Config/Converter.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Model/Config/Reader.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Model/Config/SchemaLocator.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Model/Plugin/Authorization/CustomerSessionUserContext.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Model/Plugin/GuestAuthorization.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Model/Plugin/Manager.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Model/Rest/Config.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Model/Rest/Swagger.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Model/Rest/Swagger/Generator.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Model/ServiceMetadata.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Model/Soap/Config.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Model/Soap/Fault.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Model/Soap/Server.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Model/Soap/ServerFactory.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Model/Soap/Wsdl.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Model/Soap/Wsdl/ComplexTypeStrategy.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Model/Soap/Wsdl/Generator.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Model/Soap/WsdlFactory.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Model/UrlDecoder.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Model/WebapiRoleLocator.php
 mode change 100644 => 100755 app/code/Magento/Webapi/README.md
 mode change 100644 => 100755 app/code/Magento/Webapi/Test/Unit/Controller/PathProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Test/Unit/Controller/Rest/ParamOverriderCustomerIdTest.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Test/Unit/Controller/Rest/ParamsOverriderTest.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Test/Unit/Controller/Rest/RequestValidatorTest.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Test/Unit/Controller/Rest/Router/RouteTest.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Test/Unit/Controller/Rest/RouterTest.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Test/Unit/Controller/RestTest.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Test/Unit/Controller/Soap/Request/HandlerTest.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Test/Unit/Controller/SoapTest.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Test/Unit/ExceptionTest.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Test/Unit/Model/Authorization/GuestUserContextTest.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Test/Unit/Model/Authorization/OauthUserContextTest.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Test/Unit/Model/Authorization/TokenUserContextTest.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Test/Unit/Model/Config/ClassReflectorTest.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Test/Unit/Model/Config/ConverterTest.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Test/Unit/Model/Config/TestServiceForClassReflector.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Test/Unit/Model/Config/_files/webapi.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Test/Unit/Model/Config/_files/webapi.xml
 mode change 100644 => 100755 app/code/Magento/Webapi/Test/Unit/Model/ConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Test/Unit/Model/DataObjectProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Test/Unit/Model/Plugin/ManagerTest.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Test/Unit/Model/Rest/Swagger/GeneratorTest.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Test/Unit/Model/ServiceMetadataTest.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Test/Unit/Model/Soap/FaultTest.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Test/Unit/Model/Soap/ServerTest.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Test/Unit/Model/Soap/Wsdl/ComplexTypeStrategyTest.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Test/Unit/Model/Soap/Wsdl/GeneratorTest.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Test/Unit/Model/Soap/WsdlFactoryTest.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Test/Unit/Model/WebapiRoleLocatorTest.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Test/Unit/Model/_files/acl.php
 mode change 100644 => 100755 app/code/Magento/Webapi/Test/Unit/Model/_files/acl.xml
 mode change 100644 => 100755 app/code/Magento/Webapi/Test/Unit/Model/_files/acl.xsd
 mode change 100644 => 100755 app/code/Magento/Webapi/Test/Unit/_files/soap_fault/soap_fault_expected_xmls.php
 mode change 100644 => 100755 app/code/Magento/Webapi/composer.json
 mode change 100644 => 100755 app/code/Magento/Webapi/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/Webapi/etc/cache.xml
 mode change 100644 => 100755 app/code/Magento/Webapi/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Webapi/etc/frontend/routes.xml
 mode change 100644 => 100755 app/code/Magento/Webapi/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Webapi/etc/webapi.xsd
 mode change 100644 => 100755 app/code/Magento/Webapi/etc/webapi_rest/di.xml
 mode change 100644 => 100755 app/code/Magento/Webapi/etc/webapi_soap/di.xml
 mode change 100644 => 100755 app/code/Magento/Webapi/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Webapi/registration.php
 mode change 100644 => 100755 app/code/Magento/Webapi/view/adminhtml/layout/adminhtml_integration_edit.xml
 mode change 100644 => 100755 app/code/Magento/Webapi/view/adminhtml/layout/adminhtml_integration_permissionsdialog.xml
 mode change 100644 => 100755 app/code/Magento/WebapiSecurity/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/WebapiSecurity/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/WebapiSecurity/Model/Plugin/AnonymousResourceSecurity.php
 mode change 100644 => 100755 app/code/Magento/WebapiSecurity/Model/Plugin/CacheInvalidator.php
 mode change 100644 => 100755 app/code/Magento/WebapiSecurity/README.md
 mode change 100644 => 100755 app/code/Magento/WebapiSecurity/composer.json
 mode change 100644 => 100755 app/code/Magento/WebapiSecurity/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/WebapiSecurity/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/WebapiSecurity/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/WebapiSecurity/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/WebapiSecurity/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/WebapiSecurity/registration.php
 mode change 100644 => 100755 app/code/Magento/Weee/Api/Data/ProductRender/WeeeAdjustmentAttributeInterface.php
 mode change 100644 => 100755 app/code/Magento/Weee/Block/Adminhtml/Items/Price/Renderer.php
 mode change 100644 => 100755 app/code/Magento/Weee/Block/Element/Weee/Tax.php
 mode change 100644 => 100755 app/code/Magento/Weee/Block/Renderer/Weee/Tax.php
 mode change 100644 => 100755 app/code/Magento/Weee/Block/Sales/Order/Totals.php
 mode change 100644 => 100755 app/code/Magento/Weee/Helper/Data.php
 mode change 100644 => 100755 app/code/Magento/Weee/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Weee/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Weee/Model/App/Action/ContextPlugin.php
 mode change 100644 => 100755 app/code/Magento/Weee/Model/Attribute/Backend/Weee/Tax.php
 mode change 100644 => 100755 app/code/Magento/Weee/Model/Config.php
 mode change 100644 => 100755 app/code/Magento/Weee/Model/Config/Source/Display.php
 mode change 100644 => 100755 app/code/Magento/Weee/Model/ProductRender/WeeeAdjustmentAttribute.php
 mode change 100644 => 100755 app/code/Magento/Weee/Model/ResourceModel/Attribute/Backend/Weee/Tax.php
 mode change 100644 => 100755 app/code/Magento/Weee/Model/ResourceModel/Tax.php
 mode change 100644 => 100755 app/code/Magento/Weee/Model/Sales/Pdf/Weee.php
 mode change 100644 => 100755 app/code/Magento/Weee/Model/Tax.php
 mode change 100644 => 100755 app/code/Magento/Weee/Model/Total/Creditmemo/Weee.php
 mode change 100644 => 100755 app/code/Magento/Weee/Model/Total/Invoice/Weee.php
 mode change 100644 => 100755 app/code/Magento/Weee/Model/Total/Quote/Weee.php
 mode change 100644 => 100755 app/code/Magento/Weee/Model/Total/Quote/WeeeTax.php
 mode change 100644 => 100755 app/code/Magento/Weee/Model/WeeeConfigProvider.php
 mode change 100644 => 100755 app/code/Magento/Weee/Observer/AddPaymentWeeeItem.php
 mode change 100644 => 100755 app/code/Magento/Weee/Observer/AddWeeeTaxAttributeTypeObserver.php
 mode change 100644 => 100755 app/code/Magento/Weee/Observer/AfterAddressSave.php
 mode change 100644 => 100755 app/code/Magento/Weee/Observer/AssignBackendModelToAttributeObserver.php
 mode change 100644 => 100755 app/code/Magento/Weee/Observer/CustomerLoggedIn.php
 mode change 100644 => 100755 app/code/Magento/Weee/Observer/GetPriceConfigurationObserver.php
 mode change 100644 => 100755 app/code/Magento/Weee/Observer/SetWeeeRendererInFormObserver.php
 mode change 100644 => 100755 app/code/Magento/Weee/Observer/UpdateElementTypesObserver.php
 mode change 100644 => 100755 app/code/Magento/Weee/Observer/UpdateExcludedFieldListObserver.php
 mode change 100644 => 100755 app/code/Magento/Weee/Observer/UpdateProductOptionsObserver.php
 mode change 100644 => 100755 app/code/Magento/Weee/Plugin/Checkout/CustomerData/Cart.php
 mode change 100644 => 100755 app/code/Magento/Weee/Plugin/Ui/DataProvider/WeeeSettings.php
 mode change 100644 => 100755 app/code/Magento/Weee/Pricing/Adjustment.php
 mode change 100644 => 100755 app/code/Magento/Weee/Pricing/Render/Adjustment.php
 mode change 100644 => 100755 app/code/Magento/Weee/Pricing/Render/TaxAdjustment.php
 mode change 100644 => 100755 app/code/Magento/Weee/Pricing/TaxAdjustment.php
 mode change 100644 => 100755 app/code/Magento/Weee/README.md
 mode change 100644 => 100755 app/code/Magento/Weee/Setup/InstallData.php
 mode change 100644 => 100755 app/code/Magento/Weee/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/Weee/Setup/Recurring.php
 mode change 100644 => 100755 app/code/Magento/Weee/Test/Unit/App/Action/ContextPluginTest.php
 mode change 100644 => 100755 app/code/Magento/Weee/Test/Unit/Block/Element/Weee/TaxTest.php
 mode change 100644 => 100755 app/code/Magento/Weee/Test/Unit/Block/Item/Price/RendererTest.php
 mode change 100644 => 100755 app/code/Magento/Weee/Test/Unit/Helper/DataTest.php
 mode change 100644 => 100755 app/code/Magento/Weee/Test/Unit/Model/Attribute/Backend/Weee/TaxTest.php
 mode change 100644 => 100755 app/code/Magento/Weee/Test/Unit/Model/ConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Weee/Test/Unit/Model/ResourceModel/Attribute/Backend/Weee/TaxTest.php
 mode change 100644 => 100755 app/code/Magento/Weee/Test/Unit/Model/ResourceModel/TaxTest.php
 mode change 100644 => 100755 app/code/Magento/Weee/Test/Unit/Model/TaxTest.php
 mode change 100644 => 100755 app/code/Magento/Weee/Test/Unit/Model/Total/Creditmemo/WeeeTest.php
 mode change 100644 => 100755 app/code/Magento/Weee/Test/Unit/Model/Total/Invoice/WeeeTest.php
 mode change 100644 => 100755 app/code/Magento/Weee/Test/Unit/Model/Total/Quote/WeeeTaxTest.php
 mode change 100644 => 100755 app/code/Magento/Weee/Test/Unit/Model/Total/Quote/WeeeTest.php
 mode change 100644 => 100755 app/code/Magento/Weee/Test/Unit/Model/WeeeConfigProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Weee/Test/Unit/Observer/AfterAddressSaveTest.php
 mode change 100644 => 100755 app/code/Magento/Weee/Test/Unit/Observer/CustomerLoggedInTest.php
 mode change 100644 => 100755 app/code/Magento/Weee/Test/Unit/Observer/GetPriceConfigurationObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Weee/Test/Unit/Observer/UpdateProductOptionsObserverTest.php
 mode change 100644 => 100755 app/code/Magento/Weee/Test/Unit/Pricing/AdjustmentTest.php
 mode change 100644 => 100755 app/code/Magento/Weee/Test/Unit/Pricing/Render/AdjustmentTest.php
 mode change 100644 => 100755 app/code/Magento/Weee/Test/Unit/Pricing/Render/TaxAdjustmentTest.php
 mode change 100644 => 100755 app/code/Magento/Weee/Test/Unit/Pricing/TaxAdjustmentTest.php
 mode change 100644 => 100755 app/code/Magento/Weee/Test/Unit/Ui/DataProvider/Product/Form/Modifier/Manager/WebsiteTest.php
 mode change 100644 => 100755 app/code/Magento/Weee/Test/Unit/Ui/DataProvider/Product/Form/Modifier/WeeeTest.php
 mode change 100644 => 100755 app/code/Magento/Weee/Test/Unit/Ui/DataProvider/Product/Listing/Collector/WeeeTest.php
 mode change 100644 => 100755 app/code/Magento/Weee/Ui/DataProvider/Product/Form/Modifier/Manager/Website.php
 mode change 100644 => 100755 app/code/Magento/Weee/Ui/DataProvider/Product/Form/Modifier/Weee.php
 mode change 100644 => 100755 app/code/Magento/Weee/Ui/DataProvider/Product/Listing/Collector/Weee.php
 mode change 100644 => 100755 app/code/Magento/Weee/composer.json
 mode change 100644 => 100755 app/code/Magento/Weee/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/Weee/etc/adminhtml/events.xml
 mode change 100644 => 100755 app/code/Magento/Weee/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/Weee/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/Weee/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Weee/etc/events.xml
 mode change 100644 => 100755 app/code/Magento/Weee/etc/extension_attributes.xml
 mode change 100644 => 100755 app/code/Magento/Weee/etc/fieldset.xml
 mode change 100644 => 100755 app/code/Magento/Weee/etc/frontend/di.xml
 mode change 100644 => 100755 app/code/Magento/Weee/etc/frontend/events.xml
 mode change 100644 => 100755 app/code/Magento/Weee/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Weee/etc/pdf.xml
 mode change 100644 => 100755 app/code/Magento/Weee/etc/sales.xml
 mode change 100644 => 100755 app/code/Magento/Weee/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Weee/registration.php
 mode change 100644 => 100755 app/code/Magento/Weee/view/adminhtml/layout/catalog_product_form.xml
 mode change 100644 => 100755 app/code/Magento/Weee/view/adminhtml/layout/sales_creditmemo_item_price.xml
 mode change 100644 => 100755 app/code/Magento/Weee/view/adminhtml/layout/sales_invoice_item_price.xml
 mode change 100644 => 100755 app/code/Magento/Weee/view/adminhtml/layout/sales_order_create_item_price.xml
 mode change 100644 => 100755 app/code/Magento/Weee/view/adminhtml/layout/sales_order_creditmemo_new.xml
 mode change 100644 => 100755 app/code/Magento/Weee/view/adminhtml/layout/sales_order_creditmemo_updateqty.xml
 mode change 100644 => 100755 app/code/Magento/Weee/view/adminhtml/layout/sales_order_creditmemo_view.xml
 mode change 100644 => 100755 app/code/Magento/Weee/view/adminhtml/layout/sales_order_invoice_new.xml
 mode change 100644 => 100755 app/code/Magento/Weee/view/adminhtml/layout/sales_order_invoice_updateqty.xml
 mode change 100644 => 100755 app/code/Magento/Weee/view/adminhtml/layout/sales_order_invoice_view.xml
 mode change 100644 => 100755 app/code/Magento/Weee/view/adminhtml/layout/sales_order_item_price.xml
 mode change 100644 => 100755 app/code/Magento/Weee/view/adminhtml/layout/sales_order_view.xml
 mode change 100644 => 100755 app/code/Magento/Weee/view/adminhtml/requirejs-config.js
 mode change 100644 => 100755 app/code/Magento/Weee/view/adminhtml/templates/items/price/row.phtml
 mode change 100644 => 100755 app/code/Magento/Weee/view/adminhtml/templates/items/price/total.phtml
 mode change 100644 => 100755 app/code/Magento/Weee/view/adminhtml/templates/items/price/unit.phtml
 mode change 100644 => 100755 app/code/Magento/Weee/view/adminhtml/templates/order/create/items/price/row.phtml
 mode change 100644 => 100755 app/code/Magento/Weee/view/adminhtml/templates/order/create/items/price/total.phtml
 mode change 100644 => 100755 app/code/Magento/Weee/view/adminhtml/templates/order/create/items/price/unit.phtml
 mode change 100644 => 100755 app/code/Magento/Weee/view/adminhtml/templates/renderer/tax.phtml
 mode change 100644 => 100755 app/code/Magento/Weee/view/adminhtml/ui_component/product_attribute_add_form.xml
 mode change 100644 => 100755 app/code/Magento/Weee/view/adminhtml/web/js/fpt-attribute.js
 mode change 100644 => 100755 app/code/Magento/Weee/view/adminhtml/web/js/fpt-group.js
 mode change 100644 => 100755 app/code/Magento/Weee/view/adminhtml/web/js/regions-tax-select.js
 mode change 100644 => 100755 app/code/Magento/Weee/view/adminhtml/web/styles.css
 mode change 100644 => 100755 app/code/Magento/Weee/view/base/layout/catalog_product_prices.xml
 mode change 100644 => 100755 app/code/Magento/Weee/view/base/templates/pricing/adjustment.phtml
 mode change 100644 => 100755 app/code/Magento/Weee/view/base/web/js/price/adjustment.js
 mode change 100644 => 100755 app/code/Magento/Weee/view/base/web/template/price/adjustment.html
 mode change 100644 => 100755 app/code/Magento/Weee/view/frontend/layout/checkout_cart_index.xml
 mode change 100644 => 100755 app/code/Magento/Weee/view/frontend/layout/checkout_index_index.xml
 mode change 100644 => 100755 app/code/Magento/Weee/view/frontend/layout/checkout_item_price_renderers.xml
 mode change 100644 => 100755 app/code/Magento/Weee/view/frontend/layout/default.xml
 mode change 100644 => 100755 app/code/Magento/Weee/view/frontend/layout/sales_email_item_price.xml
 mode change 100644 => 100755 app/code/Magento/Weee/view/frontend/layout/sales_email_order_creditmemo_items.xml
 mode change 100644 => 100755 app/code/Magento/Weee/view/frontend/layout/sales_email_order_invoice_items.xml
 mode change 100644 => 100755 app/code/Magento/Weee/view/frontend/layout/sales_email_order_items.xml
 mode change 100644 => 100755 app/code/Magento/Weee/view/frontend/layout/sales_guest_creditmemo.xml
 mode change 100644 => 100755 app/code/Magento/Weee/view/frontend/layout/sales_guest_invoice.xml
 mode change 100644 => 100755 app/code/Magento/Weee/view/frontend/layout/sales_guest_print.xml
 mode change 100644 => 100755 app/code/Magento/Weee/view/frontend/layout/sales_guest_printcreditmemo.xml
 mode change 100644 => 100755 app/code/Magento/Weee/view/frontend/layout/sales_guest_printinvoice.xml
 mode change 100644 => 100755 app/code/Magento/Weee/view/frontend/layout/sales_guest_view.xml
 mode change 100644 => 100755 app/code/Magento/Weee/view/frontend/layout/sales_order_creditmemo.xml
 mode change 100644 => 100755 app/code/Magento/Weee/view/frontend/layout/sales_order_invoice.xml
 mode change 100644 => 100755 app/code/Magento/Weee/view/frontend/layout/sales_order_item_price.xml
 mode change 100644 => 100755 app/code/Magento/Weee/view/frontend/layout/sales_order_print.xml
 mode change 100644 => 100755 app/code/Magento/Weee/view/frontend/layout/sales_order_printcreditmemo.xml
 mode change 100644 => 100755 app/code/Magento/Weee/view/frontend/layout/sales_order_printinvoice.xml
 mode change 100644 => 100755 app/code/Magento/Weee/view/frontend/layout/sales_order_view.xml
 mode change 100644 => 100755 app/code/Magento/Weee/view/frontend/requirejs-config.js
 mode change 100644 => 100755 app/code/Magento/Weee/view/frontend/templates/checkout/cart/item/price/sidebar.phtml
 mode change 100644 => 100755 app/code/Magento/Weee/view/frontend/templates/checkout/onepage/review/item/price/row_excl_tax.phtml
 mode change 100644 => 100755 app/code/Magento/Weee/view/frontend/templates/checkout/onepage/review/item/price/row_incl_tax.phtml
 mode change 100644 => 100755 app/code/Magento/Weee/view/frontend/templates/checkout/onepage/review/item/price/unit_excl_tax.phtml
 mode change 100644 => 100755 app/code/Magento/Weee/view/frontend/templates/checkout/onepage/review/item/price/unit_incl_tax.phtml
 mode change 100644 => 100755 app/code/Magento/Weee/view/frontend/templates/email/items/price/row.phtml
 mode change 100644 => 100755 app/code/Magento/Weee/view/frontend/templates/item/price/row.phtml
 mode change 100644 => 100755 app/code/Magento/Weee/view/frontend/templates/item/price/total_after_discount.phtml
 mode change 100644 => 100755 app/code/Magento/Weee/view/frontend/templates/item/price/unit.phtml
 mode change 100644 => 100755 app/code/Magento/Weee/view/frontend/ui_component/widget_recently_compared.xml
 mode change 100644 => 100755 app/code/Magento/Weee/view/frontend/ui_component/widget_recently_viewed.xml
 mode change 100644 => 100755 app/code/Magento/Weee/view/frontend/web/js/view/cart/totals/weee.js
 mode change 100644 => 100755 app/code/Magento/Weee/view/frontend/web/js/view/checkout/summary/item/price/row_excl_tax.js
 mode change 100644 => 100755 app/code/Magento/Weee/view/frontend/web/js/view/checkout/summary/item/price/row_incl_tax.js
 mode change 100644 => 100755 app/code/Magento/Weee/view/frontend/web/js/view/checkout/summary/item/price/weee.js
 mode change 100644 => 100755 app/code/Magento/Weee/view/frontend/web/js/view/checkout/summary/weee.js
 mode change 100644 => 100755 app/code/Magento/Weee/view/frontend/web/tax-toggle.js
 mode change 100644 => 100755 app/code/Magento/Weee/view/frontend/web/template/checkout/summary/item/price/row_excl_tax.html
 mode change 100644 => 100755 app/code/Magento/Weee/view/frontend/web/template/checkout/summary/item/price/row_incl_tax.html
 mode change 100644 => 100755 app/code/Magento/Weee/view/frontend/web/template/checkout/summary/weee.html
 mode change 100644 => 100755 app/code/Magento/Widget/Block/Adminhtml/Widget.php
 mode change 100644 => 100755 app/code/Magento/Widget/Block/Adminhtml/Widget/Catalog/Category/Chooser.php
 mode change 100644 => 100755 app/code/Magento/Widget/Block/Adminhtml/Widget/Chooser.php
 mode change 100644 => 100755 app/code/Magento/Widget/Block/Adminhtml/Widget/Form.php
 mode change 100644 => 100755 app/code/Magento/Widget/Block/Adminhtml/Widget/Instance.php
 mode change 100644 => 100755 app/code/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit.php
 mode change 100644 => 100755 app/code/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/Container.php
 mode change 100644 => 100755 app/code/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/DesignAbstraction.php
 mode change 100644 => 100755 app/code/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/Layout.php
 mode change 100644 => 100755 app/code/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/Template.php
 mode change 100644 => 100755 app/code/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Form.php
 mode change 100644 => 100755 app/code/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Tab/Main.php
 mode change 100644 => 100755 app/code/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Tab/Main/Layout.php
 mode change 100644 => 100755 app/code/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Tab/Properties.php
 mode change 100644 => 100755 app/code/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Tab/Settings.php
 mode change 100644 => 100755 app/code/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Tabs.php
 mode change 100644 => 100755 app/code/Magento/Widget/Block/Adminhtml/Widget/Options.php
 mode change 100644 => 100755 app/code/Magento/Widget/Block/BlockInterface.php
 mode change 100644 => 100755 app/code/Magento/Widget/Controller/Adminhtml/Widget/BuildWidget.php
 mode change 100644 => 100755 app/code/Magento/Widget/Controller/Adminhtml/Widget/Index.php
 mode change 100644 => 100755 app/code/Magento/Widget/Controller/Adminhtml/Widget/Instance.php
 mode change 100644 => 100755 app/code/Magento/Widget/Controller/Adminhtml/Widget/Instance/Blocks.php
 mode change 100644 => 100755 app/code/Magento/Widget/Controller/Adminhtml/Widget/Instance/Categories.php
 mode change 100644 => 100755 app/code/Magento/Widget/Controller/Adminhtml/Widget/Instance/Delete.php
 mode change 100644 => 100755 app/code/Magento/Widget/Controller/Adminhtml/Widget/Instance/Edit.php
 mode change 100644 => 100755 app/code/Magento/Widget/Controller/Adminhtml/Widget/Instance/Index.php
 mode change 100644 => 100755 app/code/Magento/Widget/Controller/Adminhtml/Widget/Instance/NewAction.php
 mode change 100644 => 100755 app/code/Magento/Widget/Controller/Adminhtml/Widget/Instance/Products.php
 mode change 100644 => 100755 app/code/Magento/Widget/Controller/Adminhtml/Widget/Instance/Save.php
 mode change 100644 => 100755 app/code/Magento/Widget/Controller/Adminhtml/Widget/Instance/Template.php
 mode change 100644 => 100755 app/code/Magento/Widget/Controller/Adminhtml/Widget/Instance/Validate.php
 mode change 100644 => 100755 app/code/Magento/Widget/Controller/Adminhtml/Widget/LoadOptions.php
 mode change 100644 => 100755 app/code/Magento/Widget/Helper/Conditions.php
 mode change 100644 => 100755 app/code/Magento/Widget/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Widget/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Widget/Model/Config/Converter.php
 mode change 100644 => 100755 app/code/Magento/Widget/Model/Config/Data.php
 mode change 100644 => 100755 app/code/Magento/Widget/Model/Config/FileResolver.php
 mode change 100644 => 100755 app/code/Magento/Widget/Model/Config/Reader.php
 mode change 100644 => 100755 app/code/Magento/Widget/Model/Config/SchemaLocator.php
 mode change 100644 => 100755 app/code/Magento/Widget/Model/Layout/Link.php
 mode change 100644 => 100755 app/code/Magento/Widget/Model/Layout/Update.php
 mode change 100644 => 100755 app/code/Magento/Widget/Model/NamespaceResolver.php
 mode change 100644 => 100755 app/code/Magento/Widget/Model/ResourceModel/Layout/Link.php
 mode change 100644 => 100755 app/code/Magento/Widget/Model/ResourceModel/Layout/Link/Collection.php
 mode change 100644 => 100755 app/code/Magento/Widget/Model/ResourceModel/Layout/Plugin.php
 mode change 100644 => 100755 app/code/Magento/Widget/Model/ResourceModel/Layout/Update.php
 mode change 100644 => 100755 app/code/Magento/Widget/Model/ResourceModel/Layout/Update/Collection.php
 mode change 100644 => 100755 app/code/Magento/Widget/Model/ResourceModel/Widget.php
 mode change 100644 => 100755 app/code/Magento/Widget/Model/ResourceModel/Widget/Instance.php
 mode change 100644 => 100755 app/code/Magento/Widget/Model/ResourceModel/Widget/Instance/Collection.php
 mode change 100644 => 100755 app/code/Magento/Widget/Model/ResourceModel/Widget/Instance/Options/ThemeId.php
 mode change 100644 => 100755 app/code/Magento/Widget/Model/ResourceModel/Widget/Instance/Options/Themes.php
 mode change 100644 => 100755 app/code/Magento/Widget/Model/ResourceModel/Widget/Instance/Options/Types.php
 mode change 100644 => 100755 app/code/Magento/Widget/Model/Template/Filter.php
 mode change 100644 => 100755 app/code/Magento/Widget/Model/Template/FilterEmulate.php
 mode change 100644 => 100755 app/code/Magento/Widget/Model/Widget.php
 mode change 100644 => 100755 app/code/Magento/Widget/Model/Widget/Config.php
 mode change 100644 => 100755 app/code/Magento/Widget/Model/Widget/Instance.php
 mode change 100644 => 100755 app/code/Magento/Widget/Model/Widget/Instance/OptionsFactory.php
 mode change 100644 => 100755 app/code/Magento/Widget/README.md
 mode change 100644 => 100755 app/code/Magento/Widget/Setup/InstallData.php
 mode change 100644 => 100755 app/code/Magento/Widget/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/Widget/Setup/LayoutUpdateConverter.php
 mode change 100644 => 100755 app/code/Magento/Widget/Setup/UpgradeData.php
 mode change 100644 => 100755 app/code/Magento/Widget/Test/Unit/Block/Adminhtml/Widget/Catalog/Category/ChooserTest.php
 mode change 100644 => 100755 app/code/Magento/Widget/Test/Unit/Block/Adminhtml/Widget/Instance/Edit/Chooser/AbstractContainerTest.php
 mode change 100644 => 100755 app/code/Magento/Widget/Test/Unit/Block/Adminhtml/Widget/Instance/Edit/Chooser/ContainerTest.php
 mode change 100644 => 100755 app/code/Magento/Widget/Test/Unit/Block/Adminhtml/Widget/Instance/Edit/Tab/PropertiesTest.php
 mode change 100644 => 100755 app/code/Magento/Widget/Test/Unit/Controller/Adminhtml/Widget/Instance/CategoriesTest.php
 mode change 100644 => 100755 app/code/Magento/Widget/Test/Unit/Controller/Adminhtml/Widget/LoadOptionsTest.php
 mode change 100644 => 100755 app/code/Magento/Widget/Test/Unit/Helper/ConditionsTest.php
 mode change 100644 => 100755 app/code/Magento/Widget/Test/Unit/Model/Config/ConverterTest.php
 mode change 100644 => 100755 app/code/Magento/Widget/Test/Unit/Model/Config/FileResolverTest.php
 mode change 100644 => 100755 app/code/Magento/Widget/Test/Unit/Model/NamespaceResolverTest.php
 mode change 100644 => 100755 app/code/Magento/Widget/Test/Unit/Model/ResourceModel/Layout/AbstractTestCase.php
 mode change 100644 => 100755 app/code/Magento/Widget/Test/Unit/Model/ResourceModel/Layout/Link/CollectionTest.php
 mode change 100644 => 100755 app/code/Magento/Widget/Test/Unit/Model/ResourceModel/Layout/Update/CollectionTest.php
 mode change 100644 => 100755 app/code/Magento/Widget/Test/Unit/Model/ResourceModel/Widget/Instance/Options/ThemesTest.php
 mode change 100644 => 100755 app/code/Magento/Widget/Test/Unit/Model/Template/FilterEmulateTest.php
 mode change 100644 => 100755 app/code/Magento/Widget/Test/Unit/Model/Template/FilterTest.php
 mode change 100644 => 100755 app/code/Magento/Widget/Test/Unit/Model/Widget/InstanceTest.php
 mode change 100644 => 100755 app/code/Magento/Widget/Test/Unit/Model/WidgetTest.php
 mode change 100644 => 100755 app/code/Magento/Widget/Test/Unit/Model/_files/mappedConfigArray1.php
 mode change 100644 => 100755 app/code/Magento/Widget/Test/Unit/Model/_files/mappedConfigArray2.php
 mode change 100644 => 100755 app/code/Magento/Widget/Test/Unit/Model/_files/mappedConfigArrayAll.php
 mode change 100644 => 100755 app/code/Magento/Widget/Test/Unit/Model/_files/widget.xml
 mode change 100644 => 100755 app/code/Magento/Widget/Test/Unit/Model/_files/widget_config.php
 mode change 100644 => 100755 app/code/Magento/Widget/composer.json
 mode change 100644 => 100755 app/code/Magento/Widget/etc/acl.xml
 mode change 100644 => 100755 app/code/Magento/Widget/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/Widget/etc/adminhtml/menu.xml
 mode change 100644 => 100755 app/code/Magento/Widget/etc/adminhtml/routes.xml
 mode change 100644 => 100755 app/code/Magento/Widget/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Widget/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Widget/etc/types.xsd
 mode change 100644 => 100755 app/code/Magento/Widget/etc/widget.xsd
 mode change 100644 => 100755 app/code/Magento/Widget/etc/widget_file.xsd
 mode change 100644 => 100755 app/code/Magento/Widget/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Widget/registration.php
 mode change 100644 => 100755 app/code/Magento/Widget/view/adminhtml/layout/adminhtml_widget_index.xml
 mode change 100644 => 100755 app/code/Magento/Widget/view/adminhtml/layout/adminhtml_widget_instance_block.xml
 mode change 100644 => 100755 app/code/Magento/Widget/view/adminhtml/layout/adminhtml_widget_instance_edit.xml
 mode change 100644 => 100755 app/code/Magento/Widget/view/adminhtml/layout/adminhtml_widget_instance_index.xml
 mode change 100644 => 100755 app/code/Magento/Widget/view/adminhtml/layout/adminhtml_widget_loadoptions.xml
 mode change 100644 => 100755 app/code/Magento/Widget/view/adminhtml/templates/catalog/category/widget/tree.phtml
 mode change 100644 => 100755 app/code/Magento/Widget/view/adminhtml/templates/instance/edit/layout.phtml
 mode change 100644 => 100755 app/code/Magento/Widget/view/adminhtml/templates/instance/js.phtml
 mode change 100644 => 100755 app/code/Magento/Widget/view/adminhtml/web/placeholder.gif
 mode change 100644 => 100755 app/code/Magento/Widget/view/frontend/layout/default.xml
 mode change 100644 => 100755 app/code/Magento/Widget/view/frontend/layout/print.xml
 mode change 100644 => 100755 app/code/Magento/Wishlist/Block/AbstractBlock.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Block/AddToWishlist.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Block/Adminhtml/Widget/Grid/Column/Filter/Text.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Block/Adminhtml/WishlistTab.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Block/Cart/Item/Renderer/Actions/MoveToWishlist.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Block/Catalog/Product/ProductList/Item/AddTo/Wishlist.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Block/Catalog/Product/View/AddTo/Wishlist.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Block/Customer/Sharing.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Block/Customer/Sidebar.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Block/Customer/Wishlist.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Block/Customer/Wishlist/Button.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Block/Customer/Wishlist/Item/Column.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Block/Customer/Wishlist/Item/Column/Actions.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Block/Customer/Wishlist/Item/Column/Cart.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Block/Customer/Wishlist/Item/Column/Comment.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Block/Customer/Wishlist/Item/Column/Edit.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Block/Customer/Wishlist/Item/Column/Image.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Block/Customer/Wishlist/Item/Column/Info.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Block/Customer/Wishlist/Item/Column/Remove.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Block/Customer/Wishlist/Item/Options.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Block/Customer/Wishlist/Items.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Block/Item/Configure.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Block/Link.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Block/Rss/EmailLink.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Block/Rss/Link.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Block/Share/Email/Items.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Block/Share/Wishlist.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Controller/AbstractIndex.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Controller/Index/Add.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Controller/Index/Allcart.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Controller/Index/Cart.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Controller/Index/Configure.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Controller/Index/DownloadCustomOption.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Controller/Index/Fromcart.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Controller/Index/Index.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Controller/Index/Plugin.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Controller/Index/Remove.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Controller/Index/Send.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Controller/Index/Share.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Controller/Index/Update.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Controller/Index/UpdateItemOptions.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Controller/IndexInterface.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Controller/Shared/Allcart.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Controller/Shared/Cart.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Controller/Shared/Index.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Controller/Shared/WishlistProvider.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Controller/WishlistProvider.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Controller/WishlistProviderInterface.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/CustomerData/Wishlist.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Helper/Data.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Helper/Rss.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/Wishlist/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/Wishlist/Model/AuthenticationState.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Model/AuthenticationStateInterface.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Model/Config.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Model/Config/Source/Summary.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Model/Item.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Model/Item/Option.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Model/ItemCarrier.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Model/LocaleQuantityProcessor.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Model/ResourceModel/Item.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Model/ResourceModel/Item/Collection.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Model/ResourceModel/Item/Collection/Grid.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Model/ResourceModel/Item/Option.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Model/ResourceModel/Item/Option/Collection.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Model/ResourceModel/Wishlist.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Model/ResourceModel/Wishlist/Collection.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Model/Rss/Wishlist.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Model/Wishlist.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Observer/AddToCart.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Observer/CartUpdateBefore.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Observer/CustomerLogin.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Observer/CustomerLogout.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Plugin/Ui/DataProvider/WishlistSettings.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Pricing/ConfiguredPrice/ConfigurableProduct.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Pricing/ConfiguredPrice/Downloadable.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Pricing/Render/ConfiguredPriceBox.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/README.md
 mode change 100644 => 100755 app/code/Magento/Wishlist/Setup/InstallSchema.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Setup/Recurring.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Setup/UpgradeData.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Test/Unit/Block/Adminhtml/Widget/Grid/Column/Filter/TextTest.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Test/Unit/Block/Cart/Item/Renderer/Actions/MoveToWishlistTest.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Test/Unit/Block/Customer/SidebarTest.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Test/Unit/Block/Customer/Wishlist/Item/OptionsTest.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Test/Unit/Block/Item/ConfigureTest.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Test/Unit/Block/Rss/EmailLinkTest.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Test/Unit/Block/Rss/LinkTest.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Test/Unit/Controller/Index/AllcartTest.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Test/Unit/Controller/Index/CartTest.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Test/Unit/Controller/Index/DownloadCustomOptionTest.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Test/Unit/Controller/Index/FromcartTest.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Test/Unit/Controller/Index/IndexTest.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Test/Unit/Controller/Index/PluginTest.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Test/Unit/Controller/Index/RemoveTest.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Test/Unit/Controller/Index/SendTest.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Test/Unit/Controller/Index/ShareTest.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Test/Unit/Controller/Index/UpdateItemOptionsTest.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Test/Unit/Controller/Shared/AllcartTest.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Test/Unit/Controller/Shared/CartTest.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Test/Unit/Controller/WishlistProviderTest.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Test/Unit/CustomerData/WishlistTest.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Test/Unit/DataProvider/Product/Collector/ButtonTest.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Test/Unit/Helper/DataTest.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Test/Unit/Helper/RssTest.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Test/Unit/Model/AuthenticationStateTest.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Test/Unit/Model/ConfigTest.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Test/Unit/Model/ItemCarrierTest.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Test/Unit/Model/ItemTest.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Test/Unit/Model/LocaleQuantityProcessorTest.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Test/Unit/Model/ResourceModel/Item/CollectionTest.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Test/Unit/Model/Rss/WishlistTest.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Test/Unit/Model/WishlistTest.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Test/Unit/Observer/AddToCartTest.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Test/Unit/Observer/CartUpdateBeforeTest.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Test/Unit/Observer/CustomerLoginTest.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Test/Unit/Observer/CustomerLogoutTest.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Test/Unit/Pricing/ConfiguredPrice/ConfigurableProductTest.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Test/Unit/Pricing/ConfiguredPrice/DownloadableTest.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Test/Unit/Pricing/Render/ConfiguredPriceBoxTest.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/Ui/DataProvider/Product/Collector/Button.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/composer.json
 mode change 100644 => 100755 app/code/Magento/Wishlist/etc/acl.xml
 mode change 100644 => 100755 app/code/Magento/Wishlist/etc/adminhtml/di.xml
 mode change 100644 => 100755 app/code/Magento/Wishlist/etc/adminhtml/system.xml
 mode change 100644 => 100755 app/code/Magento/Wishlist/etc/catalog_attributes.xml
 mode change 100644 => 100755 app/code/Magento/Wishlist/etc/config.xml
 mode change 100644 => 100755 app/code/Magento/Wishlist/etc/di.xml
 mode change 100644 => 100755 app/code/Magento/Wishlist/etc/email_templates.xml
 mode change 100644 => 100755 app/code/Magento/Wishlist/etc/events.xml
 mode change 100644 => 100755 app/code/Magento/Wishlist/etc/extension_attributes.xml
 mode change 100644 => 100755 app/code/Magento/Wishlist/etc/frontend/di.xml
 mode change 100644 => 100755 app/code/Magento/Wishlist/etc/frontend/events.xml
 mode change 100644 => 100755 app/code/Magento/Wishlist/etc/frontend/page_types.xml
 mode change 100644 => 100755 app/code/Magento/Wishlist/etc/frontend/routes.xml
 mode change 100644 => 100755 app/code/Magento/Wishlist/etc/frontend/sections.xml
 mode change 100644 => 100755 app/code/Magento/Wishlist/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/Wishlist/etc/view.xml
 mode change 100644 => 100755 app/code/Magento/Wishlist/i18n/en_US.csv
 mode change 100644 => 100755 app/code/Magento/Wishlist/registration.php
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/adminhtml/layout/customer_index_wishlist.xml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/adminhtml/templates/customer/edit/tab/wishlist.phtml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/base/layout/catalog_product_prices.xml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/base/ui_component/customer_form.xml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/email/share_notification.html
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/layout/catalog_category_view.xml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/layout/catalog_product_view.xml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/layout/catalogsearch_advanced_result.xml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/layout/catalogsearch_result_index.xml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/layout/checkout_cart_index.xml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/layout/checkout_cart_item_renderers.xml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/layout/customer_account.xml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/layout/default.xml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/layout/wishlist_email_items.xml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/layout/wishlist_email_rss.xml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/layout/wishlist_index_configure.xml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/layout/wishlist_index_configure_type_bundle.xml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/layout/wishlist_index_configure_type_configurable.xml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/layout/wishlist_index_configure_type_downloadable.xml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/layout/wishlist_index_configure_type_grouped.xml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/layout/wishlist_index_configure_type_simple.xml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/layout/wishlist_index_index.xml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/layout/wishlist_index_share.xml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/layout/wishlist_shared_index.xml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/requirejs-config.js
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/templates/addto.phtml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/templates/button/share.phtml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/templates/button/tocart.phtml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/templates/button/update.phtml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/templates/cart/item/renderer/actions/move_to_wishlist.phtml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/templates/catalog/product/list/addto/wishlist.phtml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/templates/catalog/product/view/addto/wishlist.phtml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/templates/email/items.phtml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/templates/item/column/actions.phtml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/templates/item/column/cart.phtml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/templates/item/column/comment.phtml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/templates/item/column/edit.phtml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/templates/item/column/image.phtml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/templates/item/column/name.phtml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/templates/item/column/price.phtml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/templates/item/column/remove.phtml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/templates/item/configure/addto.phtml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/templates/item/configure/addto/wishlist.phtml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/templates/item/list.phtml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/templates/js/components.phtml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/templates/link.phtml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/templates/messages/addProductSuccessMessage.phtml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/templates/options_list.phtml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/templates/rss/email.phtml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/templates/rss/wishlist.phtml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/templates/shared.phtml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/templates/sharing.phtml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/templates/sidebar.phtml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/templates/view.phtml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/ui_component/widget_recently_compared.xml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/ui_component/widget_recently_viewed.xml
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/web/js/add-to-wishlist.js
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/web/js/product/addtowishlist-button.js
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/web/js/search.js
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/web/js/view/wishlist.js
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/web/js/wishlist.js
 mode change 100644 => 100755 app/code/Magento/Wishlist/view/frontend/web/template/product/addtowishlist-button.html
 mode change 100644 => 100755 app/code/Magento/WishlistAnalytics/LICENSE.txt
 mode change 100644 => 100755 app/code/Magento/WishlistAnalytics/LICENSE_AFL.txt
 mode change 100644 => 100755 app/code/Magento/WishlistAnalytics/README.md
 mode change 100644 => 100755 app/code/Magento/WishlistAnalytics/composer.json
 mode change 100644 => 100755 app/code/Magento/WishlistAnalytics/etc/analytics.xml
 mode change 100644 => 100755 app/code/Magento/WishlistAnalytics/etc/module.xml
 mode change 100644 => 100755 app/code/Magento/WishlistAnalytics/etc/reports.xml
 mode change 100644 => 100755 app/code/Magento/WishlistAnalytics/registration.php
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/LICENSE.txt
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/LICENSE_AFL.txt
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_AdminNotification/web/css/source/_module.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_AdvancedCheckout/web/css/source/_module.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Analytics/web/css/source/_module.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Analytics/web/images/analytics-icon.svg
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Backend/layout/default.xml
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Backend/layout/styles.xml
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/_module-old.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/_module.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/_footer.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/_header.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/_main.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/_menu.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/header/_actions-group.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/header/_headings-group.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/header/actions-group/_notifications.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/header/actions-group/_search.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/header/actions-group/_user.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/header/headings-group/_breadcrumbs.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/main/_actions-bar.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/main/_collapsible-blocks.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/main/_page-nav.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/main/_store-scope.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/main/actions-bar/_store-switcher.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/pages/_access-denied.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/pages/_cache-management.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/pages/_dashboard.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/pages/_login.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Backend/web/images/logo-magento.png
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Banner/web/css/source/_module.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Braintree/web/css/source/_module.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Catalog/web/css/source/_module-old.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Catalog/web/css/source/_module.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_CatalogPermissions/web/css/source/_module.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Config/web/css/source/_module.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_ConfigurableProduct/web/css/source/_module-old.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_ConfigurableProduct/web/css/source/_module.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_ConfigurableProduct/web/css/source/module/components/_attributes_template_popup.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_ConfigurableProduct/web/css/source/module/components/_currency-addon.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_ConfigurableProduct/web/css/source/module/components/_grid.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_ConfigurableProduct/web/css/source/module/components/_navigation-bar.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_ConfigurableProduct/web/css/source/module/components/_steps-wizard.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_ConfigurableProduct/web/css/source/module/components/navigation-bar/_buttons.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_ConfigurableProduct/web/css/source/module/components/navigation-bar/_navigation-bar.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_ConfigurableProduct/web/css/source/module/steps/_attribute-values.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_ConfigurableProduct/web/css/source/module/steps/_bulk-images.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_ConfigurableProduct/web/css/source/module/steps/_select-attributes.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_ConfigurableProduct/web/css/source/module/steps/_summary.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_CurrencySymbol/web/css/source/_module.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Customer/web/css/source/_module.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_CustomerBalance/web/css/source/_module.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Developer/web/css/source/_module-old.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Downloadable/web/css/source/_module.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Enterprise/layout/default.xml
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Enterprise/web/css/source/_module-old.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_GiftCard/web/css/source/_module.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_GiftRegistry/web/css/source/_module-old.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_GiftRegistry/web/css/source/_module.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_GiftWrapping/web/css/source/_module.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Integration/web/css/source/_module.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Marketplace/web/css/source/_module.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Msrp/web/css/source/_module-old.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_ProductVideo/web/css/source/_module.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_ReleaseNotification/web/css/source/_module.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_ReleaseNotification/web/images/analytics-icon.svg
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_ReleaseNotification/web/images/email-marketing-icon.svg
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_ReleaseNotification/web/images/instant-purchase-icon.svg
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Review/web/css/source/_module.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Reward/web/css/source/_module.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Rma/web/css/source/_module.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Sales/web/css/source/_module.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Sales/web/css/source/module/_edit-order.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Sales/web/css/source/module/_order.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Sales/web/css/source/module/order/_address.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Sales/web/css/source/module/order/_discounts.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Sales/web/css/source/module/order/_gift-options.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Sales/web/css/source/module/order/_items.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Sales/web/css/source/module/order/_order-account.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Sales/web/css/source/module/order/_order-comments.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Sales/web/css/source/module/order/_payment-shipping.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Sales/web/css/source/module/order/_sidebar.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Sales/web/css/source/module/order/_sku.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Sales/web/css/source/module/order/_total.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Shipping/web/css/source/_module.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Signifyd/web/css/source/_module.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Signifyd/web/css/source/module/_config.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Signifyd/web/css/source/module/_order.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Staging/web/css/source/_module.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Staging/web/css/source/module/_scheduled-changes-modal.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Staging/web/css/source/module/_scheduled-changes.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Staging/web/css/source/module/_staging-data-tooltip.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Staging/web/css/source/module/_staging-preview.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Tax/web/css/source/_module-old.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Tax/web/css/source/_module.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Theme/web/css/source/_module-old.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Translation/web/css/source/_module.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Ui/web/css/source/_module-old.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Ui/web/css/source/_module.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Ui/web/css/source/module/_data-grid.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Ui/web/css/source/module/data-grid/_data-grid-header.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Ui/web/css/source/module/data-grid/_data-grid-static.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Ui/web/css/source/module/data-grid/data-grid-header/_data-grid-action-bookmarks.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Ui/web/css/source/module/data-grid/data-grid-header/_data-grid-action-columns.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Ui/web/css/source/module/data-grid/data-grid-header/_data-grid-action-export.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Ui/web/css/source/module/data-grid/data-grid-header/_data-grid-filters.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Ui/web/css/source/module/data-grid/data-grid-header/_data-grid-pager.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Ui/web/css/source/module/data-grid/data-grid-header/_data-grid-sticky-header.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Ui/web/images/choice_bkg.png
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_Vault/web/css/source/_module.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_VersionsCms/web/css/source/_module.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/Magento_VisualMerchandiser/web/css/source/_module.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/composer.json
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/etc/view.xml
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/registration.php
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/theme.xml
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/setup/styles/less/_setup.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/setup/styles/less/components/_messages.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/setup/styles/less/components/_navigation-bar.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/setup/styles/less/components/_progress-bars.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/setup/styles/less/components/_tooltips.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/setup/styles/less/components/tooltips/_password-strength.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/setup/styles/less/components/tooltips/_tooltips.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/_buttons.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/_classes.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/_collector.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/_extends.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/_forms.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/_icons.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/_lists.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/_structures.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/_utilities.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/_variables.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/forms/_checkbox-radio.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/forms/_forms.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/forms/_legends.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/forms/_multiselects.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/forms/_selects.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/forms/_validation.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/utilities/_animations.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/utilities/_grid-framework.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/utilities/_grid.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/utilities/_vendor-prefixes.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/setup/styles/less/pages/_common.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/setup/styles/less/pages/_customize-your-store.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/setup/styles/less/pages/_install.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/setup/styles/less/pages/_landing.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/setup/styles/less/pages/_license.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/setup/styles/less/pages/_readiness-check.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/setup/styles/less/pages/_web-configuration.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/updater/styles/less/components/_data-grid.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/updater/styles/less/components/_header.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/updater/styles/less/components/_menu.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/updater/styles/less/components/_modals.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/updater/styles/less/components/_navigation-bar_extend.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/updater/styles/less/components/_page-inner.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/updater/styles/less/pages/_common.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/updater/styles/less/pages/_extension-manager.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/updater/styles/less/pages/_home.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/updater/styles/less/pages/_login.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/updater/styles/less/source/_extends.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/updater/styles/less/source/_forms.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/updater/styles/less/source/_lists.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/updater/styles/less/source/_structure.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/updater/styles/less/source/_typography.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/app/updater/styles/less/source/_variables.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/_actions.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/_classes.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/_components.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/_extends.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/_forms.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/_grid.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/_icons.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/_lists.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/_reset.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/_responsive.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/_sources.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/_structure.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/_tables.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/_tabs.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/_theme.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/_typography.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/_utilities.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/_variables.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/actions/_actions-dropdown.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/actions/_actions-multicheck.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/actions/_actions-multiselect.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/actions/_actions-select.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/actions/_actions-split.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/actions/_actions-switcher.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/components/_calendar-temp.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/components/_data-tooltip.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/components/_file-insertion.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/components/_file-uploader.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/components/_media-gallery.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/components/_messages.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/components/_modals_extend.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/components/_popups-old.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/components/_popups.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/components/_resizable-block.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/components/_rules-temp.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/components/_slider.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/components/_spinner.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/components/_timeline.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/forms/_controls.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/forms/_extends.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/forms/_fields.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/forms/_form-wysiwyg.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/forms/_temp.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/forms/controls/_checkbox-radio.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/forms/fields/_control-collapsible.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/forms/fields/_control-table.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/forms/fields/_field-reset.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/forms/fields/_field-tooltips.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/utilities/_actions.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/utilities/_animations.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/utilities/_grid-framework.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/utilities/_grid.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/utilities/_spinner.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/variables/_actions.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/variables/_animations.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/variables/_colors.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/variables/_components.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/variables/_data-grid.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/variables/_forms.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/variables/_icons.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/variables/_spinner.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/variables/_structure.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/source/variables/_typography.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/styles-old.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/css/styles.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/images/ajax-loader-small.gif
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/images/ajax-loader-tr.gif
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/images/ajax-loader.gif
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/images/arrows-bg-light.svg
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/images/arrows-bg.svg
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/images/fam_application_form_delete.png
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/images/fam_bullet_disk.gif
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/images/fam_leaf.png
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/images/fam_link.gif
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/images/grouped_to_order_icon.png
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/images/magento-icon.svg
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/images/process_spinner.gif
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/images/rating-bg.png
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/images/rule_chooser_trigger.gif
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/images/rule_component_add.gif
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/images/rule_component_apply.gif
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/images/rule_component_remove.gif
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/images/select-bg.svg
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/images/subconfig-bg.png
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/images/switcher.png
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/js/theme.js
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/mui/clearless/_all.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/mui/clearless/_arrows.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/mui/clearless/_helpers.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/mui/clearless/_icons.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/mui/clearless/_settings.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/mui/clearless/_sprites.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/mui/images/ajax-loader-big.gif
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/mui/images/ajax-loader-small.gif
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/mui/images/ajax-loader-white.gif
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/mui/images/ajax-loader.gif
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/mui/images/ajax-loader.svg
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/mui/images/pagination-arrows-bg.png
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/mui/images/sorter-bg.png
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/mui/images/view-mode-bg.png
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/mui/styles/_abstract.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/mui/styles/_base.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/mui/styles/_table.less
 mode change 100644 => 100755 app/design/adminhtml/Magento/backend/web/mui/styles/_vars.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/LICENSE.txt
 mode change 100644 => 100755 app/design/frontend/Magento/blank/LICENSE_AFL.txt
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_AdvancedCheckout/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_AdvancedCheckout/web/css/source/_widgets.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Banner/web/css/source/_widgets.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Braintree/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Bundle/web/css/source/_email.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Bundle/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Catalog/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Catalog/web/css/source/_widgets.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Catalog/web/css/source/module/_listings.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Catalog/web/css/source/module/_toolbar.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_CatalogEvent/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_CatalogEvent/web/css/source/_widgets.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_CatalogSearch/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/_cart.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/_checkout.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/_minicart.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/checkout/_authentication.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/checkout/_checkout-agreements.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/checkout/_checkout.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/checkout/_estimated-total.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/checkout/_fields.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/checkout/_modals.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/checkout/_order-summary.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/checkout/_payment-options.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/checkout/_payments.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/checkout/_progress-bar.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/checkout/_shipping-policy.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/checkout/_shipping.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/checkout/_sidebar-shipping-information.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/checkout/_sidebar.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/checkout/_tooltip.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Cms/web/css/source/_widgets.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Customer/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Downloadable/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_GiftCard/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_GiftCardAccount/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_GiftMessage/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_GiftRegistry/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_GiftRegistry/web/css/source/_widgets.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_GiftWrapping/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_GroupedProduct/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Invitation/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_LayeredNavigation/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Msrp/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_MultipleWishlist/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_MultipleWishlist/web/css/source/_widgets.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Multishipping/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Newsletter/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Paypal/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Paypal/web/css/source/module/_billing.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Paypal/web/css/source/module/_paypal-button.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Paypal/web/css/source/module/_review.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_ProductVideo/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Reports/web/css/source/_widgets.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Review/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Reward/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Rma/web/css/source/_email.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Rma/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Sales/web/css/source/_email.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Sales/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Sales/web/css/source/_widgets.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_SalesRule/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_SendFriend/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Theme/layout/default_head_blocks.xml
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Theme/requirejs-config.js
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Theme/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Theme/web/js/responsive.js
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Theme/web/js/theme.js
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Vault/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_VersionsCms/web/css/source/_widgets.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Weee/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/Magento_Wishlist/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/composer.json
 mode change 100644 => 100755 app/design/frontend/Magento/blank/etc/view.xml
 mode change 100644 => 100755 app/design/frontend/Magento/blank/i18n/en_US.csv
 mode change 100644 => 100755 app/design/frontend/Magento/blank/media/preview.jpg
 mode change 100644 => 100755 app/design/frontend/Magento/blank/registration.php
 mode change 100644 => 100755 app/design/frontend/Magento/blank/theme.xml
 mode change 100644 => 100755 app/design/frontend/Magento/blank/web/css/_styles.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/web/css/email-fonts.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/web/css/email-inline.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/web/css/email.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/web/css/print.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/web/css/source/_actions-toolbar.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/web/css/source/_breadcrumbs.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/web/css/source/_buttons.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/web/css/source/_components.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/web/css/source/_email-base.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/web/css/source/_email-extend.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/web/css/source/_email-variables.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/web/css/source/_extends.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/web/css/source/_forms.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/web/css/source/_icons.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/web/css/source/_layout.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/web/css/source/_loaders.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/web/css/source/_messages.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/web/css/source/_navigation.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/web/css/source/_pages.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/web/css/source/_popups.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/web/css/source/_price.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/web/css/source/_reset.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/web/css/source/_sections.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/web/css/source/_sources.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/web/css/source/_tables.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/web/css/source/_theme.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/web/css/source/_tooltips.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/web/css/source/_typography.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/web/css/source/_variables.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/web/css/source/components/_modals_extend.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/web/css/styles-l.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/web/css/styles-m.less
 mode change 100644 => 100755 app/design/frontend/Magento/blank/web/images/logo.svg
 mode change 100644 => 100755 app/design/frontend/Magento/blank/web/js/navigation-menu.js
 mode change 100644 => 100755 app/design/frontend/Magento/luma/LICENSE.txt
 mode change 100644 => 100755 app/design/frontend/Magento/luma/LICENSE_AFL.txt
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_AdvancedCheckout/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_AdvancedCheckout/web/css/source/_widgets.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_AdvancedSearch/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Bundle/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Catalog/layout/catalog_product_view.xml
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Catalog/layout/default.xml
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Catalog/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Catalog/web/css/source/module/_listings.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Catalog/web/css/source/module/_toolbar.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_CatalogSearch/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Checkout/layout/checkout_cart_index.xml
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Checkout/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Checkout/web/css/source/module/_cart.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Checkout/web/css/source/module/_minicart.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Checkout/web/css/source/module/checkout/_checkout.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Checkout/web/css/source/module/checkout/_estimated-total.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Checkout/web/css/source/module/checkout/_fields.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Checkout/web/css/source/module/checkout/_modals.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Checkout/web/css/source/module/checkout/_order-summary.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Checkout/web/css/source/module/checkout/_payment-options.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Checkout/web/css/source/module/checkout/_payments.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Checkout/web/css/source/module/checkout/_progress-bar.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Checkout/web/css/source/module/checkout/_shipping.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Customer/email/account_new.html
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Customer/layout/customer_account.xml
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Customer/layout/default.xml
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Customer/web/css/source/_email.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Customer/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Customer/web/images/icn_address.png
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Customer/web/images/icn_checkout.png
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Customer/web/images/icn_history.png
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Customer/web/images/icn_status.png
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_CustomerBalance/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Downloadable/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Email/email/footer.html
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Email/web/logo_email.png
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_GiftCard/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_GiftCardAccount/layout/checkout_cart_index.xml
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_GiftCardAccount/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_GiftMessage/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_GiftRegistry/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_GiftWrapping/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_GroupedProduct/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_InstantPurchase/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Invitation/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_LayeredNavigation/templates/layer/state.phtml
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_LayeredNavigation/templates/layer/view.phtml
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_LayeredNavigation/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Msrp/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_MultipleWishlist/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Newsletter/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Paypal/web/css/source/module/_billing.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Paypal/web/css/source/module/_paypal-button.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Paypal/web/css/source/module/_review.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Review/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Reward/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Rma/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Sales/email/creditmemo_new.html
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Sales/email/creditmemo_new_guest.html
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Sales/email/creditmemo_update.html
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Sales/email/creditmemo_update_guest.html
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Sales/email/invoice_new.html
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Sales/email/invoice_new_guest.html
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Sales/email/invoice_update.html
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Sales/email/invoice_update_guest.html
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Sales/email/order_new.html
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Sales/email/order_new_guest.html
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Sales/email/order_update.html
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Sales/email/order_update_guest.html
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Sales/email/shipment_new.html
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Sales/email/shipment_new_guest.html
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Sales/email/shipment_update.html
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Sales/email/shipment_update_guest.html
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Sales/web/css/source/_email.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Sales/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_SendFriend/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Theme/layout/default.xml
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Theme/layout/default_head_blocks.xml
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Theme/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Theme/web/css/source/module/_collapsible_navigation.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Vault/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/Magento_Wishlist/web/css/source/_module.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/composer.json
 mode change 100644 => 100755 app/design/frontend/Magento/luma/etc/view.xml
 mode change 100644 => 100755 app/design/frontend/Magento/luma/i18n/en_US.csv
 mode change 100644 => 100755 app/design/frontend/Magento/luma/media/preview.jpg
 mode change 100644 => 100755 app/design/frontend/Magento/luma/registration.php
 mode change 100644 => 100755 app/design/frontend/Magento/luma/theme.xml
 mode change 100644 => 100755 app/design/frontend/Magento/luma/web/css/source/_actions-toolbar.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/web/css/source/_breadcrumbs.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/web/css/source/_buttons.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/web/css/source/_email-extend.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/web/css/source/_email-variables.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/web/css/source/_extends.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/web/css/source/_forms.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/web/css/source/_pages.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/web/css/source/_popups.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/web/css/source/_sections.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/web/css/source/_tables.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/web/css/source/_theme.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/web/css/source/_variables.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/web/css/source/components/_modals_extend.less
 mode change 100644 => 100755 app/design/frontend/Magento/luma/web/fonts/Luma-Icons.eot
 mode change 100644 => 100755 app/design/frontend/Magento/luma/web/fonts/Luma-Icons.svg
 mode change 100644 => 100755 app/design/frontend/Magento/luma/web/fonts/Luma-Icons.ttf
 mode change 100644 => 100755 app/design/frontend/Magento/luma/web/fonts/Luma-Icons.woff
 mode change 100644 => 100755 app/design/frontend/Magento/luma/web/fonts/Luma-Icons.woff2
 mode change 100644 => 100755 app/design/frontend/Magento/luma/web/fonts/selection.json
 mode change 100644 => 100755 app/design/frontend/Magento/luma/web/images/logo.svg
 mode change 100644 => 100755 app/design/frontend/Magento/luma/web/images/select-bg.svg
 mode change 100644 => 100755 app/etc/vendor_path.php
 mode change 100644 => 100755 app/functions.php
 mode change 100644 => 100755 app/i18n/Magento/de_DE/LICENSE.txt
 mode change 100644 => 100755 app/i18n/Magento/de_DE/LICENSE_AFL.txt
 mode change 100644 => 100755 app/i18n/Magento/de_DE/composer.json
 mode change 100644 => 100755 app/i18n/Magento/de_DE/language.xml
 mode change 100644 => 100755 app/i18n/Magento/de_DE/registration.php
 mode change 100644 => 100755 app/i18n/Magento/en_US/LICENSE.txt
 mode change 100644 => 100755 app/i18n/Magento/en_US/LICENSE_AFL.txt
 mode change 100644 => 100755 app/i18n/Magento/en_US/composer.json
 mode change 100644 => 100755 app/i18n/Magento/en_US/language.xml
 mode change 100644 => 100755 app/i18n/Magento/en_US/registration.php
 mode change 100644 => 100755 app/i18n/Magento/es_ES/LICENSE.txt
 mode change 100644 => 100755 app/i18n/Magento/es_ES/LICENSE_AFL.txt
 mode change 100644 => 100755 app/i18n/Magento/es_ES/composer.json
 mode change 100644 => 100755 app/i18n/Magento/es_ES/language.xml
 mode change 100644 => 100755 app/i18n/Magento/es_ES/registration.php
 mode change 100644 => 100755 app/i18n/Magento/fr_FR/LICENSE.txt
 mode change 100644 => 100755 app/i18n/Magento/fr_FR/LICENSE_AFL.txt
 mode change 100644 => 100755 app/i18n/Magento/fr_FR/composer.json
 mode change 100644 => 100755 app/i18n/Magento/fr_FR/language.xml
 mode change 100644 => 100755 app/i18n/Magento/fr_FR/registration.php
 mode change 100644 => 100755 app/i18n/Magento/nl_NL/LICENSE.txt
 mode change 100644 => 100755 app/i18n/Magento/nl_NL/LICENSE_AFL.txt
 mode change 100644 => 100755 app/i18n/Magento/nl_NL/composer.json
 mode change 100644 => 100755 app/i18n/Magento/nl_NL/language.xml
 mode change 100644 => 100755 app/i18n/Magento/nl_NL/registration.php
 mode change 100644 => 100755 app/i18n/Magento/pt_BR/LICENSE.txt
 mode change 100644 => 100755 app/i18n/Magento/pt_BR/LICENSE_AFL.txt
 mode change 100644 => 100755 app/i18n/Magento/pt_BR/composer.json
 mode change 100644 => 100755 app/i18n/Magento/pt_BR/language.xml
 mode change 100644 => 100755 app/i18n/Magento/pt_BR/registration.php
 mode change 100644 => 100755 app/i18n/Magento/zh_Hans_CN/LICENSE.txt
 mode change 100644 => 100755 app/i18n/Magento/zh_Hans_CN/LICENSE_AFL.txt
 mode change 100644 => 100755 app/i18n/Magento/zh_Hans_CN/composer.json
 mode change 100644 => 100755 app/i18n/Magento/zh_Hans_CN/language.xml
 mode change 100644 => 100755 app/i18n/Magento/zh_Hans_CN/registration.php
 mode change 100644 => 100755 auth.json.sample
 mode change 100644 => 100755 bin/.htaccess
 mode change 100644 => 100755 composer.json
 mode change 100644 => 100755 composer.lock
 create mode 100755 composer.phar
 mode change 100644 => 100755 dev/.htaccess
 mode change 100644 => 100755 dev/tests/acceptance/.env.example
 mode change 100644 => 100755 dev/tests/acceptance/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/RoboFile.php
 mode change 100644 => 100755 dev/tests/acceptance/codeception.dist.yml
 mode change 100644 => 100755 dev/tests/acceptance/pre-install.php
 mode change 100644 => 100755 dev/tests/acceptance/tests/_bootstrap.php
 mode change 100644 => 100755 dev/tests/acceptance/tests/_data/dump.sql
 mode change 100644 => 100755 dev/tests/acceptance/tests/_suite/sampleSuite.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional.suite.dist.yml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/AdminNotification/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/AdminNotification/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/AdminNotification/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/AdminNotification/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/AdvancedPricingImportExport/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/AdvancedPricingImportExport/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/AdvancedPricingImportExport/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/AdvancedPricingImportExport/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Analytics/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Analytics/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Analytics/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Analytics/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Authorization/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Authorization/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Authorization/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Authorization/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Authorizenet/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Authorizenet/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Authorizenet/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Authorizenet/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Backend/Cest/AdminLoginCest.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Backend/Data/BackenedData.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Backend/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Backend/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Backend/Page/AdminLoginPage.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Backend/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Backend/Section/AdminLoginFormSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Backend/Section/AdminMessagesSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Backend/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Backup/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Backup/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Backup/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Backup/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Braintree/Data/BraintreeData.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Braintree/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Braintree/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Braintree/Metadata/braintree_config-meta.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Braintree/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Braintree/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Bundle/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Bundle/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Bundle/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Bundle/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/BundleImportExport/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/BundleImportExport/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/BundleImportExport/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/BundleImportExport/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CacheInvalidate/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CacheInvalidate/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CacheInvalidate/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CacheInvalidate/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Captcha/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Captcha/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Captcha/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Captcha/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Cest/AdminCreateCategoryCest.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Cest/AdminCreateSimpleProductCest.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Data/CategoryData.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Data/CustomAttributeData.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Data/FrontendLabelData.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Data/ProductAttributeData.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Data/ProductAttributeOptionData.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Data/ProductAttributeSetData.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Data/ProductConfigurableAttributeData.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Data/ProductData.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Data/ProductExtensionAttributeData.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Data/StockItemData.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Data/StoreLabelData.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Metadata/category-meta.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Metadata/custom_attribute-meta.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Metadata/empty_extension_attribute-meta.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Metadata/frontend_label-meta.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Metadata/product-meta.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Metadata/product_attribute-meta.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Metadata/product_attribute_option-meta.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Metadata/product_attribute_set-meta.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Metadata/product_extension_attribute-meta.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Metadata/product_link-meta.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Metadata/product_link_extension_attribute-meta.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Metadata/product_option-meta.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Metadata/product_option_value-meta.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Metadata/stock_item-meta.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Metadata/store_label-meta.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Metadata/validation_rule-meta.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Page/AdminCategoryPage.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Page/AdminProductEditPage.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Page/AdminProductIndexPage.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Page/AdminProductPage.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Page/StorefrontCategoryPage.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/AdminCategoryBasicFieldSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/AdminCategoryMainActionsSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/AdminCategoryMessagesSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/AdminCategorySEOSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/AdminCategorySidebarActionSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/AdminCategorySidebarTreeSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/AdminProductFormActionSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/AdminProductFormSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/AdminProductGridActionSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/AdminProductGridSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/AdminProductMessagesSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/AdminProductSEOSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/StorefrontCategoryMainSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/StorefrontMessagesSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/StorefrontMiniCartSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/StorefrontProductInfoDetailsSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/StorefrontProductInfoMainSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogAnalytics/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogAnalytics/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogAnalytics/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogAnalytics/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogImportExport/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogImportExport/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogImportExport/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogImportExport/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogInventory/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogInventory/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogInventory/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogInventory/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogRule/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogRule/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogRule/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogRule/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogRuleConfigurable/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogRuleConfigurable/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogRuleConfigurable/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogRuleConfigurable/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogSearch/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogSearch/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogSearch/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogSearch/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogUrlRewrite/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogUrlRewrite/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogUrlRewrite/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogUrlRewrite/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogWidget/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogWidget/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogWidget/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogWidget/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/Cest/StorefrontCustomerCheckoutCest.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/Cest/StorefrontGuestCheckoutCest.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/Data/CouponData.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/Metadata/coupon-meta.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/Page/CheckoutPage.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/Page/CheckoutSuccessPage.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/Page/GuestCheckoutPage.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/Section/CheckoutOrderSummarySection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/Section/CheckoutPaymentSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/Section/CheckoutShippingGuestInfoSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/Section/CheckoutShippingMethodsSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/Section/CheckoutShippingSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/Section/CheckoutSuccessMainSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/Section/GuestCheckoutPaymentSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/Section/GuestCheckoutShippingSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CheckoutAgreements/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CheckoutAgreements/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CheckoutAgreements/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CheckoutAgreements/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cms/Cest/AdminCreateCmsPageCest.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cms/Data/CmsPageData.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cms/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cms/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cms/Page/CmsNewPagePage.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cms/Page/CmsPagesPage.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cms/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cms/Section/CmsNewPagePageActionsSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cms/Section/CmsNewPagePageBasicFieldsSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cms/Section/CmsNewPagePageContentSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cms/Section/CmsNewPagePageSeoSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cms/Section/CmsPagesPageActionsSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cms/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CmsUrlRewrite/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CmsUrlRewrite/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CmsUrlRewrite/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CmsUrlRewrite/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Config/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Config/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Config/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Config/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableImportExport/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableImportExport/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableImportExport/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableImportExport/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableProduct/Cest/AdminCreateConfigurableProductCest.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableProduct/Data/ConfigurableProductData.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableProduct/Data/ConfigurableProductOptionData.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableProduct/Data/ValueIndexData.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableProduct/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableProduct/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableProduct/Metadata/configurable_product_add_child-meta.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableProduct/Metadata/configurable_product_options-meta.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableProduct/Metadata/extension_attribute_configurable_product_options-meta.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableProduct/Metadata/valueIndex-meta.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableProduct/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableProduct/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableProductSales/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableProductSales/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableProductSales/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableProductSales/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Contact/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Contact/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Contact/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Contact/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cookie/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cookie/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cookie/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cookie/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cron/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cron/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cron/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cron/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CurrencySymbol/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CurrencySymbol/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CurrencySymbol/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CurrencySymbol/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Cest/AdminCreateCustomerCest.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Cest/StorefrontCreateCustomerCest.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Cest/StorefrontPersistedCustomerLoginCest.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Data/AddressData.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Data/CustomerData.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Data/ExtensionAttributeSimple.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Data/RegionData.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Metadata/address-meta.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Metadata/customer-meta.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Metadata/customer_extension_attribute-meta.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Metadata/customer_nested_extension_attribute-meta.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Metadata/region-meta.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Page/AdminCustomerPage.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Page/AdminEditCustomerPage.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Page/AdminNewCustomerPage.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Page/StorefrontCustomerCreatePage.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Page/StorefrontCustomerDashboardPage.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Page/StorefrontCustomerSignInPage.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Page/StorefrontHomePage.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Section/AdminCustomerFiltersSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Section/AdminCustomerGridSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Section/AdminCustomerMainActionsSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Section/AdminCustomerMessagesSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Section/AdminEditCustomerInformationSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Section/AdminEditCustomerOrdersSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Section/AdminNewCustomerAccountInformationSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Section/AdminNewCustomerMainActionsSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Section/StorefrontCustomerCreateFormSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Section/StorefrontCustomerDashboardAccountInformationSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Section/StorefrontCustomerSignInFormSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Section/StorefrontPanelHeaderSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CustomerAnalytics/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CustomerAnalytics/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CustomerAnalytics/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CustomerAnalytics/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CustomerImportExport/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CustomerImportExport/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CustomerImportExport/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CustomerImportExport/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Deploy/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Deploy/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Deploy/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Deploy/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Developer/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Developer/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Developer/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Developer/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Dhl/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Dhl/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Dhl/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Dhl/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Directory/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Directory/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Directory/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Directory/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Downloadable/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Downloadable/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Downloadable/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Downloadable/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/DownloadableImportExport/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/DownloadableImportExport/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/DownloadableImportExport/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/DownloadableImportExport/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Eav/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Eav/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Eav/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Eav/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Email/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Email/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Email/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Email/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/EncryptionKey/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/EncryptionKey/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/EncryptionKey/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/EncryptionKey/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Fedex/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Fedex/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Fedex/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Fedex/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GiftMessage/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GiftMessage/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GiftMessage/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GiftMessage/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GoogleAdwords/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GoogleAdwords/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GoogleAdwords/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GoogleAdwords/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GoogleAnalytics/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GoogleAnalytics/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GoogleAnalytics/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GoogleAnalytics/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GoogleOptimizer/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GoogleOptimizer/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GoogleOptimizer/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GoogleOptimizer/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GraphQl/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GraphQl/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GraphQl/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GraphQl/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GroupedImportExport/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GroupedImportExport/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GroupedImportExport/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GroupedImportExport/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GroupedProduct/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GroupedProduct/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GroupedProduct/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GroupedProduct/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ImportExport/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ImportExport/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ImportExport/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ImportExport/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Indexer/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Indexer/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Indexer/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Indexer/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/InstantPurchase/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/InstantPurchase/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/InstantPurchase/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/InstantPurchase/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Integration/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Integration/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Integration/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Integration/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/LayeredNavigation/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/LayeredNavigation/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/LayeredNavigation/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/LayeredNavigation/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Marketplace/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Marketplace/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Marketplace/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Marketplace/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/MediaStorage/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/MediaStorage/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/MediaStorage/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/MediaStorage/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Msrp/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Msrp/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Msrp/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Msrp/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Multishipping/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Multishipping/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Multishipping/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Multishipping/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/NewRelicReporting/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/NewRelicReporting/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/NewRelicReporting/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/NewRelicReporting/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Newsletter/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Newsletter/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Newsletter/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Newsletter/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/OfflinePayments/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/OfflinePayments/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/OfflinePayments/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/OfflinePayments/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/OfflineShipping/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/OfflineShipping/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/OfflineShipping/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/OfflineShipping/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/PageCache/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/PageCache/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/PageCache/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/PageCache/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Payment/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Payment/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Payment/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Payment/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Paypal/Data/PaypalData.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Paypal/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Paypal/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Paypal/Metadata/paypal_config-meta.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Paypal/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Paypal/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Persistent/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Persistent/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Persistent/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Persistent/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ProductAlert/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ProductAlert/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ProductAlert/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ProductAlert/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ProductVideo/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ProductVideo/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ProductVideo/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ProductVideo/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Quote/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Quote/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Quote/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Quote/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/QuoteAnalytics/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/QuoteAnalytics/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/QuoteAnalytics/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/QuoteAnalytics/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Reports/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Reports/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Reports/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Reports/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/RequireJs/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/RequireJs/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/RequireJs/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/RequireJs/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Review/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Review/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Review/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Review/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ReviewAnalytics/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ReviewAnalytics/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ReviewAnalytics/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ReviewAnalytics/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Robots/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Robots/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Robots/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Robots/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Rss/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Rss/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Rss/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Rss/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Rule/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Rule/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Rule/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Rule/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Cest/AdminCreateInvoiceCest.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Data/SalesData.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Page/InvoiceDetailsPage.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Page/InvoiceNewPage.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Page/InvoicesPage.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Page/OrderDetailsPage.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Page/OrdersPage.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Section/InvoiceDetailsInformationSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Section/InvoiceNewSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Section/InvoicesFiltersSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Section/InvoicesGridSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Section/OrderDetailsInformationSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Section/OrderDetailsInvoicesSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Section/OrderDetailsMainActionsSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Section/OrderDetailsMessagesSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Section/OrderDetailsOrderViewSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Section/OrdersGridSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesAnalytics/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesAnalytics/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesAnalytics/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesAnalytics/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesInventory/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesInventory/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesInventory/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesInventory/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesRule/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesRule/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesRule/Metadata/sales_rule-meta.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesRule/Metadata/sales_rule_store_label-meta.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesRule/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesRule/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesSequence/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesSequence/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesSequence/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesSequence/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleData/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleData/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleData/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleData/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTemplates/ActionGroup/TemplateActionGroupFile.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTemplates/Cest/TemplateCestFile.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTemplates/Data/TemplateDataFile.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTemplates/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTemplates/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTemplates/Metadata/TemplateMetaFile.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTemplates/Page/TemplatePageFile.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTemplates/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTemplates/Section/TemplateSectionFile.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTemplates/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/ActionGroup/SampleActionGroup.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/Cest/AdvancedSampleCest.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/Cest/AssertsCest.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/Cest/CreateConfigurableProductByApiCest.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/Cest/CreateSalesRuleByApiCest.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/Cest/MinimumTestCest.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/Cest/PersistMultipleEntitiesCest.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/Cest/SampleCest.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/Cest/SetPaymentConfigurationCest.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/Cest/UpdateSimpleProductByApiCest.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/Data/SampleData.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/Page/SamplePage.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/Section/SampleSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Search/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Search/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Search/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Search/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Security/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Security/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Security/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Security/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SendFriend/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SendFriend/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SendFriend/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SendFriend/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Shipping/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Shipping/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Shipping/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Shipping/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sitemap/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sitemap/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sitemap/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sitemap/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Store/Cest/AdminCreateStoreGroupCest.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Store/Data/StoreData.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Store/Data/StoreGroupData.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Store/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Store/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Store/Metadata/store-meta.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Store/Metadata/store_group-meta.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Store/Page/AdminSystemStorePage.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Store/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Store/Section/AdminNewStoreGroupSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Store/Section/AdminNewStoreSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Store/Section/AdminStoresGridSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Store/Section/AdminStoresMainActionsSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Store/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Swagger/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Swagger/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Swagger/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Swagger/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Swatches/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Swatches/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Swatches/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Swatches/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SwatchesLayeredNavigation/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SwatchesLayeredNavigation/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SwatchesLayeredNavigation/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SwatchesLayeredNavigation/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Tax/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Tax/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Tax/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Tax/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/TaxImportExport/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/TaxImportExport/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/TaxImportExport/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/TaxImportExport/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Theme/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Theme/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Theme/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Theme/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Translation/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Translation/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Translation/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Translation/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Ui/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Ui/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Ui/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Ui/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Ups/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Ups/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Ups/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Ups/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/UrlRewrite/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/UrlRewrite/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/UrlRewrite/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/UrlRewrite/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/User/Data/UserData.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/User/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/User/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/User/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/User/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Usps/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Usps/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Usps/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Usps/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Variable/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Variable/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Variable/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Variable/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Vault/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Vault/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Vault/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Vault/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Version/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Version/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Version/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Version/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Webapi/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Webapi/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Webapi/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Webapi/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/WebapiSecurity/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/WebapiSecurity/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/WebapiSecurity/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/WebapiSecurity/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Weee/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Weee/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Weee/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Weee/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Widget/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Widget/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Widget/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Widget/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Wishlist/Cest/StorefrontDeletePersistedWishlistCest.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Wishlist/Data/WishlistData.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Wishlist/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Wishlist/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Wishlist/Metadata/wishlist-meta.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Wishlist/Page/StorefrontCustomerWishlistPage.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Wishlist/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Wishlist/Section/StorefrontCustomerWishlistSection.xml
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Wishlist/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/WishlistAnalytics/LICENSE.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/WishlistAnalytics/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/WishlistAnalytics/README.md
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/Magento/FunctionalTest/WishlistAnalytics/composer.json
 mode change 100644 => 100755 dev/tests/acceptance/tests/functional/_bootstrap.php
 mode change 100644 => 100755 dev/tests/api-functional/.gitignore
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule1/Controller/CookieTester.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule1/Controller/CookieTester/DeleteCookie.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule1/Controller/CookieTester/SetPublicCookie.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule1/Controller/CookieTester/SetSensitiveCookie.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule1/Service/V1/AllSoapAndRest.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule1/Service/V1/AllSoapAndRestInterface.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule1/Service/V1/Entity/Item.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule1/Service/V2/AllSoapAndRest.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule1/Service/V2/AllSoapAndRestInterface.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule1/Service/V2/Entity/Item.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule1/etc/acl.xml
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule1/etc/di.xml
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule1/etc/extension_attributes.xml
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule1/etc/frontend/routes.xml
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule1/etc/module.xml
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule1/etc/webapi.xml
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule1/registration.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule2/Service/V1/Entity/Item.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule2/Service/V1/NoWebApiXml.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule2/Service/V1/NoWebApiXmlInterface.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule2/Service/V1/SubsetRest.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule2/Service/V1/SubsetRestInterface.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule2/etc/acl.xml
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule2/etc/di.xml
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule2/etc/module.xml
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule2/etc/schema/AllSoapNoRestV1.xsd
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule2/etc/schema/NoWebApiXmlV1.xsd
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule2/etc/schema/SubsetRestV1.xsd
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule2/etc/webapi.xml
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule2/registration.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule3/Service/V1/Entity/Parameter.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule3/Service/V1/Entity/WrappedErrorParameter.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule3/Service/V1/Error.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule3/Service/V1/ErrorInterface.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule3/etc/acl.xml
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule3/etc/di.xml
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule3/etc/module.xml
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule3/etc/webapi.xml
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule3/registration.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule4/Model/ResourceModel/Item.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule4/Service/V1/DataObjectService.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule4/Service/V1/DataObjectServiceInterface.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule4/Service/V1/Entity/DataObjectRequest.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule4/Service/V1/Entity/DataObjectResponse.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule4/Service/V1/Entity/ExtensibleRequest.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule4/Service/V1/Entity/ExtensibleRequestInterface.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule4/Service/V1/Entity/NestedDataObjectRequest.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule4/etc/acl.xml
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule4/etc/di.xml
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule4/etc/module.xml
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule4/etc/webapi.xml
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule4/registration.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule5/Service/V1/AllSoapAndRest.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule5/Service/V1/AllSoapAndRestInterface.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule5/Service/V1/Entity/AllSoapAndRest.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule5/Service/V1/OverrideService.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule5/Service/V1/OverrideServiceInterface.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule5/Service/V2/AllSoapAndRest.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule5/Service/V2/AllSoapAndRestInterface.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule5/Service/V2/Entity/AllSoapAndRest.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule5/etc/acl.xml
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule5/etc/di.xml
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule5/etc/module.xml
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule5/etc/webapi.xml
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModule5/registration.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModuleDefaultHydrator/Api/CustomerPersistenceInterface.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModuleDefaultHydrator/Api/Data/ExtensionAttributeInterface.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModuleDefaultHydrator/Model/Address/Mapper.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModuleDefaultHydrator/Model/CustomerPersistence.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModuleDefaultHydrator/Model/Data/ExtensionAttribute.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModuleDefaultHydrator/Model/ResourceModel/Address/ReadHandler.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModuleDefaultHydrator/Model/ResourceModel/Address/SaveHandler.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModuleDefaultHydrator/Model/ResourceModel/ReadHandler.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModuleDefaultHydrator/Model/ResourceModel/SaveHandler.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModuleDefaultHydrator/Setup/InstallSchema.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModuleDefaultHydrator/etc/di.xml
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModuleDefaultHydrator/etc/extension_attributes.xml
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModuleDefaultHydrator/etc/module.xml
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModuleDefaultHydrator/etc/webapi.xml
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModuleDefaultHydrator/registration.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModuleIntegrationFromConfig/composer.json
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModuleIntegrationFromConfig/etc/integration.xml
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModuleIntegrationFromConfig/etc/module.xml
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModuleIntegrationFromConfig/registration.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModuleJoinDirectives/Api/TestRepositoryInterface.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModuleJoinDirectives/Model/TestRepository.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModuleJoinDirectives/composer.json
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModuleJoinDirectives/etc/acl.xml
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModuleJoinDirectives/etc/di.xml
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModuleJoinDirectives/etc/extension_attributes.xml
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModuleJoinDirectives/etc/module.xml
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModuleJoinDirectives/etc/webapi.xml
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModuleJoinDirectives/registration.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModuleMSC/Api/AllSoapAndRestInterface.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModuleMSC/Api/Data/CustomAttributeDataObjectInterface.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModuleMSC/Api/Data/CustomAttributeNestedDataObjectInterface.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModuleMSC/Api/Data/ItemInterface.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModuleMSC/Model/AllSoapAndRest.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModuleMSC/Model/Data/CustomAttributeDataObject.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModuleMSC/Model/Data/CustomAttributeNestedDataObject.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModuleMSC/Model/Data/Eav/AttributeMetadata.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModuleMSC/Model/Data/Item.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModuleMSC/Model/ResourceModel/Item.php
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModuleMSC/etc/acl.xml
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModuleMSC/etc/di.xml
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModuleMSC/etc/extension_attributes.xml
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModuleMSC/etc/module.xml
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModuleMSC/etc/webapi.xml
 mode change 100644 => 100755 dev/tests/api-functional/_files/Magento/TestModuleMSC/registration.php
 mode change 100644 => 100755 dev/tests/api-functional/config/config-global.php.dist
 mode change 100644 => 100755 dev/tests/api-functional/config/install-config-mysql.php.dist
 mode change 100644 => 100755 dev/tests/api-functional/framework/Magento/TestFramework/Annotation/ApiDataFixture.php
 mode change 100644 => 100755 dev/tests/api-functional/framework/Magento/TestFramework/Authentication/OauthHelper.php
 mode change 100644 => 100755 dev/tests/api-functional/framework/Magento/TestFramework/Authentication/Rest/CurlClient.php
 mode change 100644 => 100755 dev/tests/api-functional/framework/Magento/TestFramework/Authentication/Rest/OauthClient.php
 mode change 100644 => 100755 dev/tests/api-functional/framework/Magento/TestFramework/Authentication/Rest/OauthClient/Signature.php
 mode change 100644 => 100755 dev/tests/api-functional/framework/Magento/TestFramework/Bootstrap/WebapiDocBlock.php
 mode change 100644 => 100755 dev/tests/api-functional/framework/Magento/TestFramework/Helper/Customer.php
 mode change 100644 => 100755 dev/tests/api-functional/framework/Magento/TestFramework/TestCase/Webapi/Adapter/Rest.php
 mode change 100644 => 100755 dev/tests/api-functional/framework/Magento/TestFramework/TestCase/Webapi/Adapter/Rest/CurlClient.php
 mode change 100644 => 100755 dev/tests/api-functional/framework/Magento/TestFramework/TestCase/Webapi/Adapter/Rest/DocumentationGenerator.php
 mode change 100644 => 100755 dev/tests/api-functional/framework/Magento/TestFramework/TestCase/Webapi/Adapter/Soap.php
 mode change 100644 => 100755 dev/tests/api-functional/framework/Magento/TestFramework/TestCase/Webapi/AdapterInterface.php
 mode change 100644 => 100755 dev/tests/api-functional/framework/Magento/TestFramework/TestCase/Webapi/Curl.php
 mode change 100644 => 100755 dev/tests/api-functional/framework/Magento/TestFramework/TestCase/WebapiAbstract.php
 mode change 100644 => 100755 dev/tests/api-functional/framework/Magento/TestFramework/WebApiApplication.php
 mode change 100644 => 100755 dev/tests/api-functional/framework/autoload.php
 mode change 100644 => 100755 dev/tests/api-functional/framework/bootstrap.php
 mode change 100644 => 100755 dev/tests/api-functional/phpunit.xml.dist
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Analytics/Api/LinkProviderTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Bundle/Api/CartItemRepositoryTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Bundle/Api/OrderInvoiceCreateTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Bundle/Api/OrderItemRepositoryTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Bundle/Api/ProductLinkManagementTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Bundle/Api/ProductOptionRepositoryTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Bundle/Api/ProductOptionTypeListTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Bundle/Api/ProductServiceTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Catalog/Api/AttributeSetManagementTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Catalog/Api/AttributeSetRepositoryTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Catalog/Api/BasePriceStorageTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Catalog/Api/CartItemRepositoryTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Catalog/Api/CategoryAttributeOptionManagementInterfaceTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Catalog/Api/CategoryAttributeRepositoryTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Catalog/Api/CategoryLinkManagementTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Catalog/Api/CategoryLinkRepositoryTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Catalog/Api/CategoryListTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Catalog/Api/CategoryManagementTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Catalog/Api/CategoryRepositoryTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Catalog/Api/CostStorageTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Catalog/Api/OrderItemRepositoryTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductAttributeGroupRepositoryTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductAttributeManagementTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductAttributeMediaGalleryManagementInterfaceTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductAttributeOptionManagementInterfaceTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductAttributeRepositoryTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductAttributeTypesListTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductCustomAttributeWrongTypeTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductCustomOptionRepositoryTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductCustomOptionTypeListTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductLinkManagementInterfaceTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductLinkRepositoryInterfaceTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductLinkTypeListTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductMediaAttributeManagementTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductRenderListInterfaceTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductRepositoryInterfaceTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductRepositoryMultiCurrencyTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductRepositoryMultiStoreTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductSwatchAttributeOptionManagementInterfaceTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductTierPriceManagementTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductTypeListTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Catalog/Api/SpecialPriceStorageTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Catalog/Api/TierPriceStorageTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Catalog/Api/_files/product_options.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Catalog/Api/_files/product_options_negative.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Catalog/Api/_files/product_options_update_negative.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Catalog/Api/_files/test_image.jpg
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/CatalogInventory/Api/LowStockItemsTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/CatalogInventory/Api/ProductRepositoryInterfaceTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/CatalogInventory/Api/StockItemTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/CatalogInventory/Api/StockStatusTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/CheckoutAgreements/Api/CheckoutAgreementsRepositoryTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Cms/Api/BlockRepositoryTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Cms/Api/PageRepositoryTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/ConfigurableProduct/Api/CartItemRepositoryTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/ConfigurableProduct/Api/ConfigurableProductManagementTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/ConfigurableProduct/Api/LinkManagementTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/ConfigurableProduct/Api/OptionRepositoryTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/ConfigurableProduct/Api/OrderItemRepositoryTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/ConfigurableProduct/Api/ProductRepositoryTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Customer/Api/AccountManagementCustomAttributesTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Customer/Api/AccountManagementMeTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Customer/Api/AccountManagementTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Customer/Api/AddressMetadataTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Customer/Api/AddressRepositoryTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Customer/Api/CustomerGroupConfigTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Customer/Api/CustomerMetadataTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Customer/Api/CustomerRepositoryTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Customer/Api/GroupManagementTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Customer/Api/GroupRepositoryTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Customer/Api/_files/buttons.png
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Customer/Api/_files/test_image.jpg
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Directory/Api/CountryInformationAcquirerTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Directory/Api/CurrencyInformationAcquirerTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Downloadable/Api/CartItemRepositoryTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Downloadable/Api/LinkRepositoryTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Downloadable/Api/OrderItemRepositoryTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Downloadable/Api/ProductRepositoryTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Downloadable/Api/SampleRepositoryTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Downloadable/Api/_files/test_image.jpg
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Eav/Api/AttributeSetManagementTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Eav/Api/AttributeSetRepositoryTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Framework/Api/Search/SearchTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Framework/Model/Entity/HydratorTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Framework/Stdlib/CookieManagerTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/GiftMessage/Api/CartRepositoryTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/GiftMessage/Api/GuestCartRepositoryTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/GiftMessage/Api/GuestItemRepositoryTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/GiftMessage/Api/ItemRepositoryTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/GroupedProduct/Api/ProductLinkManagementTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/GroupedProduct/Api/ProductLinkRepositoryTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/GroupedProduct/Api/ProductLinkTypeListTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/GroupedProduct/Api/ProductRepositoryInterfaceTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Integration/Model/AdminTokenServiceTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Integration/Model/CustomerTokenServiceTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Integration/Model/IntegrationTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Quote/Api/BillingAddressManagementTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Quote/Api/CartItemRepositoryTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Quote/Api/CartManagementTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Quote/Api/CartRepositoryTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Quote/Api/CartTotalRepositoryTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Quote/Api/CouponManagementTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Quote/Api/GuestBillingAddressManagementTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Quote/Api/GuestCartItemRepositoryTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Quote/Api/GuestCartManagementTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Quote/Api/GuestCartRepositoryTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Quote/Api/GuestCartTotalRepositoryTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Quote/Api/GuestCouponManagementTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Quote/Api/GuestPaymentMethodManagementTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Quote/Api/GuestShipmentEstimationTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Quote/Api/GuestShippingMethodManagementTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Quote/Api/PaymentMethodManagementTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Quote/Api/ShippingMethodManagementTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/CreditMemoCreateRefundTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/CreditmemoAddCommentTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/CreditmemoCancelTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/CreditmemoCommentsListTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/CreditmemoCreateTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/CreditmemoEmailTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/CreditmemoGetTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/CreditmemoListTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/InvoiceAddCommentTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/InvoiceCaptureTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/InvoiceCommentsListTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/InvoiceCreateTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/InvoiceEmailTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/InvoiceGetTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/InvoiceListTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/InvoiceVoidTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/OrderAddressUpdateTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/OrderCancelTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/OrderCommentsListTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/OrderEmailTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/OrderGetStatusTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/OrderGetTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/OrderHoldTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/OrderInvoiceCreateTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/OrderItemGetListTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/OrderItemGetTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/OrderListTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/OrderStatusHistoryAddTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/OrderUnHoldTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/RefundOrderTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/ShipOrderTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/ShipmentAddCommentTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/ShipmentAddTrackTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/ShipmentCommentsListTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/ShipmentCreateTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/ShipmentEmailTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/ShipmentGetTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/ShipmentLabelGetTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/ShipmentListTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/ShipmentRemoveTrackTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/TransactionTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/SalesInventory/Api/Service/V1/ReturnItemsAfterRefundOrderTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/SalesRule/Api/CouponManagementTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/SalesRule/Api/CouponRepositoryTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/SalesRule/Api/RuleRepositoryTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Store/Api/GroupRepositoryTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Store/Api/StoreConfigManagerTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Store/Api/StoreRepositoryTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Store/Api/WebsiteRepositoryTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Tax/Api/TaxClassRepositoryTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Tax/Api/TaxRateRepositoryTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Tax/Api/TaxRuleRepositoryInterfaceTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Webapi/Authentication/RestTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Webapi/CustomAttributeTypeWsdlGenerationTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Webapi/DataObjectSerialization/ServiceSerializationTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Webapi/DeserializationTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Webapi/JoinDirectivesTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Webapi/JsonGenerationFromDataObjectTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Webapi/PartialResponseTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Webapi/Routing/BaseService.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Webapi/Routing/CoreRoutingTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Webapi/Routing/GettersTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Webapi/Routing/NoWebApiXmlTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Webapi/Routing/RequestIdOverrideTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Webapi/Routing/RestErrorHandlingTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Webapi/Routing/ServiceVersionV1Test.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Webapi/Routing/ServiceVersionV2Test.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Webapi/Routing/SoapErrorHandlingTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Webapi/Routing/SubsetTest.php
 mode change 100644 => 100755 dev/tests/api-functional/testsuite/Magento/Webapi/WsdlGenerationFromDataObjectTest.php
 mode change 100644 => 100755 dev/tests/functional/.gitignore
 mode change 100644 => 100755 dev/tests/functional/.htaccess.sample
 mode change 100644 => 100755 dev/tests/functional/bootstrap.php
 mode change 100644 => 100755 dev/tests/functional/composer.json
 mode change 100644 => 100755 dev/tests/functional/credentials.xml.dist
 mode change 100644 => 100755 dev/tests/functional/etc/config.xml.dist
 mode change 100644 => 100755 dev/tests/functional/etc/config.xsd
 mode change 100644 => 100755 dev/tests/functional/etc/di.xml
 mode change 100644 => 100755 dev/tests/functional/etc/events.xml
 mode change 100644 => 100755 dev/tests/functional/etc/events.xsd
 mode change 100644 => 100755 dev/tests/functional/etc/repository_replacer.xml
 mode change 100644 => 100755 dev/tests/functional/etc/repository_replacer_payments.xml
 mode change 100644 => 100755 dev/tests/functional/isolation.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/App/State/AbstractState.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/App/State/State1.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/App/State/StateHandlerInterface.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Client/Element/ConditionsElement.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Client/Element/DatepickerElement.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Client/Element/DropdownmultiselectElement.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Client/Element/GlobalsearchElement.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Client/Element/JquerytreeElement.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Client/Element/LiselectstoreElement.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Client/Element/MultiselectgrouplistElement.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Client/Element/MultiselectlistElement.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Client/Element/MultisuggestElement.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Client/Element/OptgroupselectElement.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Client/Element/RadiobuttonElement.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Client/Element/SelectstoreElement.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Client/Element/SimplifiedselectElement.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Client/Element/SuggestElement.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Client/Element/SwitcherElement.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Client/Element/Tree.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Client/Element/TreeElement.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Config/FileResolver/ScopeConfig.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Constraint/AbstractAssertForm.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/EntryPoint/EntryPoint.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Handler/Webapi.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Page/BackendPage.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/System/Observer/AllureWebapiResponse.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/System/Observer/WebapiResponse.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Troubleshooting/AdminAnalyzer.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Troubleshooting/ConfigAnalyzer.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Troubleshooting/Configuration.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Troubleshooting/GlobalAnalyzer.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Troubleshooting/Helper/UrlAnalyzer.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Troubleshooting/HtaccessAnalyzer.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Troubleshooting/PhpUnitAnalyzer.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Troubleshooting/SeleniumSessionAnalyzer.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Troubleshooting/StaticClassesGenerator.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Troubleshooting/StorefrontAnalyzer.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Util/Command/Cli.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Util/Command/Cli/Cache.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Util/Command/Cli/Cron.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Util/Command/Cli/DeployMode.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Util/Command/Cli/Indexer.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Util/Command/Cli/Queue.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Util/Command/Cli/Setup.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Util/Command/Cli/StaticContent.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Util/Command/File/Export.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Util/Command/File/Export/Data.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Util/Command/File/Export/Reader.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Util/Command/File/Export/ReaderInterface.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Util/Command/File/ExportInterface.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Util/Command/File/Log.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Util/Command/GeneratedCode.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Util/Command/Locales.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Util/Command/PathChecker.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Util/Command/Website.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Util/Filesystem/FileHelper.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Util/Generate/Factory.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Util/Generate/Factory/AbstractFactory.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Util/Generate/Factory/Block.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Util/Generate/Factory/Fixture.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Util/Generate/Factory/Handler.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Util/Generate/Factory/Page.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Util/Generate/Factory/Repository.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Util/Generate/File/Generator.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Util/Generate/File/TemplateInterface.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Util/Generate/Fixture/FieldsProvider.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Util/Generate/Fixture/SchemaXml.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Util/Generate/Fixture/template.xml
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Util/Generate/Repository/RepositoryResource.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Util/Generate/Repository/TableCollection.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Util/ModuleResolver/SequenceSorter.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Util/Protocol/CurlTransport/BackendDecorator.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Util/Protocol/CurlTransport/FrontendDecorator.php
 mode change 100644 => 100755 dev/tests/functional/lib/Magento/Mtf/Util/Protocol/CurlTransport/WebapiDecorator.php
 mode change 100644 => 100755 dev/tests/functional/phpunit.xml.dist
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/AdminNotification/Test/Block/System/Messages.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/AdminNotification/Test/Block/System/Messages/System.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/AdminNotification/Test/TestCase/NavigateMenuTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/AdvancedPricingImportExport/Test/Constraint/AssertExportAdvancedPricing.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/AdvancedPricingImportExport/Test/Constraint/AssertImportAdvancedPricing.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/AdvancedPricingImportExport/Test/Repository/ExportData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/AdvancedPricingImportExport/Test/TestCase/ExportAdvancedPricingTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/AdvancedPricingImportExport/Test/TestCase/ExportAdvancedPricingTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/AdvancedPricingImportExport/Test/TestCase/ImportDataNegativeTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/AdvancedPricingImportExport/Test/TestCase/ImportDataTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/AdvancedPricingImportExport/Test/_files/template/pricing/advanced_incorrect.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/AdvancedPricingImportExport/Test/_files/template/pricing/advanced_price_variation_1.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/AdvancedPricingImportExport/Test/_files/template/pricing/advanced_price_variation_2.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/AdvancedPricingImportExport/Test/_files/template/pricing/advanced_price_variation_3.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/AdvancedPricingImportExport/Test/_files/template/pricing/advanced_price_variation_4.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/AdvancedPricingImportExport/Test/etc/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Analytics/Test/Block/Adminhtml/Dashboard/AdvancedReporting/ReportsSectionBlock.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Analytics/Test/Block/System/Config/AnalyticsForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Analytics/Test/Constraint/AssertAdvancedReportingPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Analytics/Test/Constraint/AssertAdvancedReportingSectionInvisible.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Analytics/Test/Constraint/AssertAdvancedReportingSectionVisible.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Analytics/Test/Constraint/AssertBIEssentialsLink.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Analytics/Test/Constraint/AssertConfigAnalyticsDisabled.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Analytics/Test/Constraint/AssertConfigAnalyticsEnabled.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Analytics/Test/Constraint/AssertConfigAnalyticsIndustryScope.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Analytics/Test/Constraint/AssertConfigAnalyticsSendingTimeAndZone.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Analytics/Test/Constraint/AssertEmptyIndustryCanNotBeSaved.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Analytics/Test/Constraint/AssertIndustryIsSet.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Analytics/Test/Page/Adminhtml/ConfigAnalytics.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Analytics/Test/Page/Adminhtml/Dashboard.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Analytics/Test/Repository/DefaultTimeZone.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Analytics/Test/Repository/Integration.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Analytics/Test/Repository/Role.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Analytics/Test/Repository/User.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Analytics/Test/TestCase/AdvancedReportingButtonTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Analytics/Test/TestCase/AdvancedReportingButtonTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Analytics/Test/TestCase/CustomAclPermissionTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Analytics/Test/TestCase/EnableDisableTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Analytics/Test/TestCase/EnableDisableTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Analytics/Test/TestCase/InstallTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Analytics/Test/TestCase/NavigateMenuTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Analytics/Test/TestCase/SetIndustryTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Analytics/Test/TestCase/SetIndustryTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Analytics/Test/TestCase/SetTimeToSendDataTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Analytics/Test/TestCase/SetTimeToSendDataTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Analytics/Test/TestStep/OpenAnalyticsConfigStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Analytics/Test/etc/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Authorizenet/Test/Block/Form/AuthorizenetCc.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Authorizenet/Test/Block/Form/AuthorizenetCc.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Authorizenet/Test/Block/Sandbox/AuthorizenetLogin.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Authorizenet/Test/Block/Sandbox/AuthorizenetLogin.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Authorizenet/Test/Block/Sandbox/GetStartedModal.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Authorizenet/Test/Block/Sandbox/Menu.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Authorizenet/Test/Block/Sandbox/SearchForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Authorizenet/Test/Block/Sandbox/SearchForm.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Authorizenet/Test/Block/Sandbox/TransactionsGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Authorizenet/Test/Constraint/AssertCreditCardNumberOnOnePageCheckout.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Authorizenet/Test/Fixture/AuthorizenetSandboxCustomer.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Authorizenet/Test/Fixture/TransactionSearch.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Authorizenet/Test/Page/CheckoutOnepage.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Authorizenet/Test/Page/Sandbox/Main.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Authorizenet/Test/Repository/AuthorizenetSandboxCustomer.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Authorizenet/Test/Repository/ConfigData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Authorizenet/Test/Repository/TransactionSearch.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Authorizenet/Test/TestCase/AuthorizenetFraudCheckoutTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Authorizenet/Test/TestCase/AuthorizenetFraudCheckoutTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Authorizenet/Test/TestCase/OnePageCheckoutDeclinedTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Authorizenet/Test/TestCase/OnePageCheckoutPaymentMethodDataPersistenceWithDiscountTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Authorizenet/Test/TestCase/OnePageCheckoutTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Authorizenet/Test/TestCase/ReorderOrderEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Authorizenet/Test/TestStep/AcceptTransactionOnAuthorizenetStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Authorizenet/Test/etc/testcase.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Block/Admin/Login.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Block/Admin/Login.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Block/Dashboard/StoreStats.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Block/Dashboard/StoreStats.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Block/Dashboard/Tab/Products.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Block/Dashboard/Tab/Products/Ordered.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Block/Denied.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Block/GridPageActions.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Block/Menu.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Block/Messages.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Block/Page/Error.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Block/Page/Header.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Block/Page/Main.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Block/PageActions.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Block/System/Config/Form.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Block/System/Config/Form/Group.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Block/System/Config/PageActions.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Block/System/Config/Payments.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Block/System/Config/Tabs.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Block/System/Store/Delete/Form.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Block/System/Store/Delete/Form.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Block/System/Store/Edit/Form/GroupForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Block/System/Store/Edit/Form/GroupForm.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Block/System/Store/Edit/Form/StoreForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Block/System/Store/Edit/Form/StoreForm.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Block/System/Store/Edit/Form/WebsiteForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Block/System/Store/Edit/Form/WebsiteForm.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Block/System/Store/FormPageActions.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Block/System/Store/GridPageActions.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Block/System/Store/StoreGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Block/Template.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Block/Version.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Block/Widget/FormTabs.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Block/Widget/Tab.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertAdminLoginPageIsAvailable.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertBackendPageIsAvailable.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertBestsellersOnDashboard.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertDeveloperSectionVisibility.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertGlobalSearchCustomerName.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertGlobalSearchNoRecordsFound.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertGlobalSearchOrderId.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertGlobalSearchPreview.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertGlobalSearchProductName.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertHttpUsedOnFrontend.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertHttpsHeaderOptionsAvailable.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertHttpsHeaderOptionsNotAvailable.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertHttpsUsedOnBackend.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertInterfaceLocaleAvailableOptions.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertLocaleCodeVisibility.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertMenuItemNotVisible.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertStoreCanBeLocalized.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Fixture/Admin/SuperAdmin.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Fixture/GlobalSearch.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Fixture/GlobalSearch/Query.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Fixture/Source/Date.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Handler/Conditions.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Handler/Extractor.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Handler/Ui/LoginUser.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Handler/Ui/LogoutUser.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Page/AdminAuthLogin.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Page/Adminhtml/Dashboard.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Page/Adminhtml/DeleteGroup.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Page/Adminhtml/DeleteWebsite.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Page/Adminhtml/EditGroup.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Page/Adminhtml/EditStore.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Page/Adminhtml/EditWebsite.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Page/Adminhtml/NewGroupIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Page/Adminhtml/NewWebsiteIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Page/Adminhtml/StoreDelete.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Page/Adminhtml/StoreIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Page/Adminhtml/StoreNew.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Page/Adminhtml/SystemAccount.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Page/Adminhtml/SystemConfig.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Page/Adminhtml/SystemConfigEdit.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Page/Adminhtml/SystemConfigEditSectionPayment.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/Repository/ConfigData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/ConfigPageVisibilityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/ConfigPageVisibilityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/ConfigureSecureUrlsTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/ConfigureSecureUrlsTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/ExpireSessionTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/ExpireSessionTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/GlobalSearchEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/GlobalSearchEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/HttpsHeadersDisableTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/HttpsHeadersDisableTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/HttpsHeadersEnableTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/HttpsHeadersEnableTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/LoginAfterJSMinificationTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/LoginAfterJSMinificationTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/NavigateMenuTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/NavigateMenuTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/VerifyInterfaceLocaleTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/VerifyInterfaceLocaleTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/TestStep/GetDashboardOrderStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/TestStep/OpenDashboardStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backend/Test/etc/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backup/Test/Block/Adminhtml/BackupGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backup/Test/Constraint/AssertBackupInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backup/Test/Page/Adminhtml/BackupIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Backup/Test/TestCase/NavigateMenuTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/Block/Adminhtml/Report/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/Block/Form/BraintreeCc.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/Block/Form/BraintreeCc.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/Block/Form/Secure3d.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/Block/Form/Secure3d.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/Block/System/Config/Braintree.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/Constraint/Assert3dSecureInfoIsPresent.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/Constraint/AssertCreditCardJsValidationMessagesArePresent.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/Constraint/AssertDeviceDataIsPresentInBraintreeRequest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/Constraint/AssertTransactionIsPresentInSettlementReport.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/Fixture/BraintreeSandboxCustomer.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/Fixture/Secure3dBraintree.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/Page/Adminhtml/BraintreeSettlementReport.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/Page/Adminhtml/SystemConfigEditSectionPayment.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/Page/CatalogProductView.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/Page/CheckoutCart.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/Page/CheckoutOnepage.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/Repository/BraintreeSandboxCustomer.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/Repository/ConfigData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/Repository/CreditCard.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/Repository/Secure3d.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/BraintreeSettlementReportTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/BraintreeSettlementReportTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/CheckoutWithBraintreePaypalCartTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/CheckoutWithBraintreePaypalCartTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/CheckoutWithBraintreePaypalMinicartTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/CheckoutWithBraintreePaypalMinicartTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/CreateOnlineCreditMemoBraintreePaypalTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/CreateOnlineCreditMemoBraintreePaypalTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/CreateOnlineCreditMemoBraintreeTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/CreateOnlineCreditMemoBraintreeTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/CreateOnlineInvoiceEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/CreateOrderBackendTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/CreateOrderWithPayPalBraintreeVaultBackendTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/CreateOrderWithPayPalBraintreeVaultBackendTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/CreateVaultOrderBackendTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/InvoicePayPalBraintreeTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/InvoicePaypalBraintreeTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/OnePageCheckoutAcceptPaymentTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/OnePageCheckoutAcceptPaymentTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/OnePageCheckoutDeclinedTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/OnePageCheckoutDenyPaymentTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/OnePageCheckoutDenyPaymentTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/OnePageCheckoutFromMiniShoppingCartTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/OnePageCheckoutTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/OnePageCheckoutWith3dSecureFailedTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/OnePageCheckoutWith3dSecureFailedTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/OnePageCheckoutWith3dSecureTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/OnePageCheckoutWith3dSecureTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/OnePageCheckoutWithBraintreePaypalTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/OnePageCheckoutWithBraintreePaypalTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/OnePageCheckoutWithDiscountTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/ReorderUsingVaultTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/SaveUseDeleteVaultForPaypalBraintreeTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/SaveUseDeleteVaultForPaypalBraintreeTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/UseVaultOnCheckoutTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/UseVaultWith3dSecureOnCheckoutTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/UseVaultWith3dSecureOnCheckoutTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/VerifyPaymentMethodOnCheckoutTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/TestStep/ChangeOrderStatusToPaymentReviewStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/TestStep/CheckBraintreeConfigStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/TestStep/CheckoutWithPaypalFromCartStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/TestStep/CheckoutWithPaypalFromMinicartStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/TestStep/ContinueToPaypalStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/TestStep/PlaceOrderWith3dSecureFailedStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/TestStep/PlaceOrderWith3dSecureStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/TestStep/PlaceOrderWithPaypalStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/TestStep/SettleTransactionStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/etc/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Braintree/Test/etc/testcase.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Adminhtml/Catalog/Product/Edit/Section/Bundle.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Adminhtml/Catalog/Product/Edit/Section/Bundle/Option.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Adminhtml/Catalog/Product/Edit/Section/Bundle/Option.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Adminhtml/Catalog/Product/Edit/Section/Bundle/Option/Search/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Adminhtml/Catalog/Product/Edit/Section/Bundle/Option/Selection.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Adminhtml/Catalog/Product/Edit/Section/Bundle/Option/Selection.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Adminhtml/Product/Composite/Configure.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Adminhtml/Product/Composite/Configure.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Adminhtml/Product/ProductForm.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Catalog/Product/View.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Catalog/Product/View/Summary.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Catalog/Product/View/Summary/ConfiguredPrice.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Catalog/Product/View/Type/Bundle.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Catalog/Product/View/Type/Option.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Catalog/Product/View/Type/Option/Checkbox.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Catalog/Product/View/Type/Option/Checkbox.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Catalog/Product/View/Type/Option/Dropdown.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Catalog/Product/View/Type/Option/Dropdown.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Catalog/Product/View/Type/Option/Element/Qty.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Catalog/Product/View/Type/Option/Hidden.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Catalog/Product/View/Type/Option/Hidden.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Catalog/Product/View/Type/Option/Multiple.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Catalog/Product/View/Type/Option/Multiple.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Catalog/Product/View/Type/Option/Radiobuttons.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Catalog/Product/View/Type/Option/Radiobuttons.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Constraint/AssertBundleInCategory.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Constraint/AssertBundleItemsOnProductPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Constraint/AssertBundleItemsSummaryOnProductPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Constraint/AssertBundleOptionTitleOnStorefront.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Constraint/AssertBundleOptionsDeleted.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Constraint/AssertBundlePriceCalculatedOnProductPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Constraint/AssertBundlePriceType.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Constraint/AssertBundlePriceView.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Constraint/AssertBundleProductForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Constraint/AssertBundleProductInCart.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Constraint/AssertBundleProductInCustomerWishlistOnBackendGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Constraint/AssertBundleProductOnConfigureCartPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Constraint/AssertBundleProductPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Constraint/AssertProductCustomOptionsOnBundleProductPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Constraint/AssertTierPriceOnBundleProductPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Fixture/BundleProduct.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Fixture/BundleProduct/BundleSelections.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Fixture/Cart/Item.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Handler/BundleProduct/BundleProductInterface.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Handler/BundleProduct/Curl.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Handler/BundleProduct/Webapi.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Page/Adminhtml/CustomerIndexEdit.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Page/Adminhtml/OrderCreateIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Page/Product/CatalogProductView.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Repository/BundleProduct.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Repository/BundleProduct/BundleSelections.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Repository/BundleProduct/CheckoutData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/Repository/BundleProduct/Price.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/BundleOptionsSummaryTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/BundleOptionsSummaryTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/CancelPartiallyInvoicedOrderTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/CancelPartiallyInvoicedOrderTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/CreateBundleDynamicProductEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/CreateBundleDynamicProductEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/CreateBundleProductEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/CreateBundleProductEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/DeleteProductEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/DeleteProductFromMiniShoppingCartTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/MoveRecentlyComparedProductsOnOrderPageTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/UpdateBundleOptionsShoppingCartTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/UpdateBundleOptionsShoppingCartTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/UpdateBundleOptionsTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/UpdateBundleOptionsTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/UpdateBundleProductEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/UpdateBundleProductEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/ValidateOrderOfProductTypeTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/TestStep/CreatePartialInvoiceStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/etc/curl/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/etc/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/etc/testcase.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Bundle/Test/etc/webapi/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/BundleImportExport/Test/Constraint/AssertImportedBundleProducts.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/BundleImportExport/Test/Fixture/Import/File.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/BundleImportExport/Test/TestCase/ExportProductsTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/BundleImportExport/Test/TestCase/ImportProductsTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Captcha/Test/Block/Adminhtml/LoginWithCaptcha.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Captcha/Test/Block/Adminhtml/LoginWithCaptcha.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Captcha/Test/Block/Form/ContactUs.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Captcha/Test/Block/Form/ContactUs.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Captcha/Test/Block/Form/CustomerForm.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Captcha/Test/Block/Form/LoginWithCaptcha.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Captcha/Test/Block/Form/LoginWithCaptcha.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Captcha/Test/Block/Form/Register.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Captcha/Test/Block/Form/Register.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Captcha/Test/Constraint/AssertCaptchaFieldOnBackend.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Captcha/Test/Constraint/AssertCaptchaFieldOnContactUsForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Captcha/Test/Constraint/AssertCaptchaFieldOnRegisterForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Captcha/Test/Constraint/AssertCaptchaFieldOnStorefront.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Captcha/Test/Fixture/Comment.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Captcha/Test/Fixture/Customer.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Captcha/Test/Fixture/User.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Captcha/Test/Page/Adminhtml/AdminAuthLoginWithCaptcha.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Captcha/Test/Page/ContactIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Captcha/Test/Page/CustomerAccountCreate.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Captcha/Test/Page/CustomerAccountLogin.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Captcha/Test/Repository/ConfigData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Captcha/Test/TestCase/CaptchaEditCustomerTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Captcha/Test/TestCase/CaptchaEditCustomerTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Captcha/Test/TestCase/CaptchaLockoutCustomerTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Captcha/Test/TestCase/CaptchaLockoutCustomerTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Captcha/Test/TestCase/CaptchaOnAdminLoginTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Captcha/Test/TestCase/CaptchaOnAdminLoginTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Captcha/Test/TestCase/CaptchaOnContactUsTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Captcha/Test/TestCase/CaptchaOnContactUsTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Captcha/Test/TestCase/CaptchaOnStoreFrontLoginTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Captcha/Test/TestCase/CaptchaOnStoreFrontLoginTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Captcha/Test/TestCase/CaptchaOnStoreFrontRegisterTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Captcha/Test/TestCase/CaptchaOnStoreFrontRegisterTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/AbstractConfigureBlock.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/AbstractPriceBlock.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Category/Edit/CategoryForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Category/Edit/CategoryForm.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Category/Edit/PageActions.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Category/Edit/Section/ProductGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Category/Edit/Section/Products.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Category/Tree.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Category/Widget/Chooser.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/AttributeForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/AttributeForm.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/CustomAttribute.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/Edit/AttributeForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/Edit/AttributeForm.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/Edit/Options.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/Edit/Tab/Advanced.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/Edit/Tab/Options.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/Edit/Tab/Options/Option.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/Edit/Tab/Options/Option.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/Set/FormPageActions.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/Set/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/Set/GridPageActions.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/Set/Main.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/Set/Main/AttributeSetForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/Set/Main/AttributeSetForm.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/Set/Main/EditForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/Set/Main/EditForm.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Composite/Configure.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Composite/Configure.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Action/FormPageActions.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Action/Tab/UpdateAttributeTab.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Action/UpdateAttributeForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Action/UpdateAttributeForm.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/AdvancedInventory.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/AdvancedPricing.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/AdvancedPricing/OptionTier.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/AdvancedPricing/OptionTier.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Attributes.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Attributes/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Attributes/Search.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/BlockGallery.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/AbstractOptions.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Row.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Search/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/Area.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/Area.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/Checkbox.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/Checkbox.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/Date.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/Date.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/DateTime.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/DateTime.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/DropDown.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/DropDown.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/Field.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/Field.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/File.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/File.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/MultipleSelect.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/MultipleSelect.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/RadioButtons.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/RadioButtons.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/Time.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/Time.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/ProductDetails.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/ProductDetails/AttributeSet.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/ProductDetails/CategoryIds.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/ProductDetails/NewCategoryIds.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/ProductDetails/NewCategoryIds.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Related.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Related/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Websites/StoreTree.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/FormPageActions.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/GridPageAction.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Modal/AddAttribute.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Modal/NewAttribute.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/ProductForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/ProductForm.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Widget/Chooser.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Category/ProductPagination.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Category/View.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Links/CompareLink.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/Additional.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/Compare/ListCompare.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/Compare/Sidebar.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/Grouped/AssociatedProducts.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/Grouped/AssociatedProducts/ListAssociatedProducts.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/Grouped/AssociatedProducts/ListAssociatedProducts/Product.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/Grouped/AssociatedProducts/Search/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/ListProduct.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/Price.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/ProductList/Crosssell.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/ProductList/PromotedSection.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/ProductList/Related.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/ProductList/Related/ProductItem.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/ProductList/Upsell.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/View.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/View/CustomOptions.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/View/CustomOptions.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Search.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertAbsenceDeleteAttributeButton.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertAddBeforeForPrice.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertAddToCartButtonAbsent.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertAddToCartButtonPresent.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertAddedProductAttributeOnProductForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertAdvancedPriceAbsentOnProductForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertAttributeForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertAttributeOptionsOnProductForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertAttributeSetForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertAttributeSetGroupOnProductForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertAttributeSetInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertAttributeSetNotInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertAttributeSetOnProductForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertAttributeSetSuccessDeleteMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertAttributeSetSuccessSaveMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCanSaveProduct.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryAbsenceOnBackend.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryAbsenceOnFrontend.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryBreadcrumbs.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryCannotBeDeleted.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryForAssignedProducts.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryInNavigationMenu.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryIncludeInNavigationMenu.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryIsNotActive.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryMovedMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryNavigationMenu.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryNotInNavigationMenu.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryOnCustomStore.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryOnCustomWebsite.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryRedirect.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategorySaveMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategorySuccessDeleteMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryWithCustomStoreOnFrontend.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertDateInvalidErrorMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertImagesAreVisibleOnProductPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertMassProductUpdateSuccessMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertPaginationCorrectOnStoreFront.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertPriceOnProductPageInterface.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAbsentCrossSells.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAbsentRelatedProducts.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAbsentUpSells.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeAbsenceInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeAbsenceInSearchOnProductForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeAbsenceInTemplateGroups.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeAbsenceInUnassignedAttributes.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeDisplayingOnFrontend.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeDisplayingOnSearchForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeIsComparable.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeIsFilterable.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeIsFilterableInSearch.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeIsGlobal.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeIsHtmlAllowed.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeIsRequired.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeIsUnique.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeIsUsedInSortOnFrontend.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeSaveMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeSuccessDeleteMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAutoincrementedSkuNoticeMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductCompareBlockOnCmsPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductCompareItemsLink.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductCompareItemsLinkIsAbsent.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductComparePage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductCompareRemoveLastProductMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductCompareSuccessAddMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductCompareSuccessRemoveAllProductsMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductCompareSuccessRemoveMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductCrossSells.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductCustomOptionsErrors.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductCustomOptionsOnProductPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductDuplicateForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductDuplicateIsNotDisplayingOnFrontend.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductDuplicateMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductDuplicatedInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductFormattingTierPrice.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductGridIsRendered.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductHasImageInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductInCart.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductInCategory.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductInCategoryOnCustomWebsite.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductInCustomStoreView.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductInStock.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductInventoryMaxAllowedQty.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductInventoryMinAllowedQty.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductInventoryThreshold.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductIsNotDisplayingOnFrontend.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductIsNotVisibleInCompareBlock.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductIsNotVisibleInComparePage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductNameOnDifferentStoreViews.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductNotInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductNotSearchableBySku.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductNotVisibleInCategory.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductOnCustomWebsite.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductOutOfStock.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductPriceOnDifferentStoreViews.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductRelatedProducts.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductSaveMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductSearchableBySku.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductSimpleDuplicateForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductSkuAutoGenerated.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductSpecialPriceOnProductPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductSuccessDeleteMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductTierPriceInCart.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductTierPriceOnProductPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductTierPriceOnProductPageWithCustomer.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductTypeOrderOnCreate.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductUpSells.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductView.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductVisibleInCategory.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductsInStock.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductsOutOfStock.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductsQtyAndStockStatusInAdminPanel.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertResetFilterMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertSubCategoryNotInNavigationMenu.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertUpdatedProductStatusInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertUsedSuperAttributeImpossibleDeleteMessages.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/Cart/Item.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/CatalogAttributeSet.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/CatalogAttributeSet/AssignedAttributes.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/CatalogAttributeSet/SkeletonSet.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/CatalogProductAttribute.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/CatalogProductSimple.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/CatalogProductSimple/CustomAttribute.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/CatalogProductVirtual.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/Category.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/Category/CategoryProducts.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/Category/LandingPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/Category/ParentId.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/Category/StoreId.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/Product/AttributeSetId.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/Product/CategoryIds.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/Product/CustomOptions.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/Product/Image.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/Product/Price.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/Product/RelatedProducts.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/Product/TaxClass.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/Product/TierPrice.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/Product/WebsiteIds.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Handler/CatalogAttributeSet/CatalogAttributeSetInterface.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Handler/CatalogAttributeSet/Curl.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Handler/CatalogProductAttribute/CatalogProductAttributeInterface.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Handler/CatalogProductAttribute/Curl.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Handler/CatalogProductSimple/CatalogProductSimpleInterface.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Handler/CatalogProductSimple/Curl.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Handler/CatalogProductSimple/Ui.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Handler/CatalogProductSimple/Webapi.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Handler/CatalogProductVirtual/CatalogProductVirtualInterface.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Handler/CatalogProductVirtual/Curl.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Handler/CatalogProductVirtual/Webapi.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Handler/Category/CategoryInterface.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Handler/Category/Curl.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Handler/Category/Webapi.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Page/Adminhtml/CatalogCategoryEdit.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Page/Adminhtml/CatalogCategoryIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Page/Adminhtml/CatalogProductActionAttributeEdit.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Page/Adminhtml/CatalogProductAttributeIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Page/Adminhtml/CatalogProductAttributeNew.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Page/Adminhtml/CatalogProductEdit.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Page/Adminhtml/CatalogProductIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Page/Adminhtml/CatalogProductNew.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Page/Adminhtml/CatalogProductSetAdd.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Page/Adminhtml/CatalogProductSetEdit.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Page/Adminhtml/CatalogProductSetIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Page/Category/CatalogCategory.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Page/Category/CatalogCategoryEdit.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Page/Category/CatalogCategoryView.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Page/CmsIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Page/Product/CatalogProductCompare.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Page/Product/CatalogProductView.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Repository/CatalogAttributeSet.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Repository/CatalogProductAttribute.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Repository/CatalogProductAttribute/Options.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Repository/CatalogProductSimple.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Repository/CatalogProductSimple/CheckoutData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Repository/CatalogProductSimple/Price.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Repository/CatalogProductSimple/WebsiteData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Repository/CatalogProductVirtual.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Repository/CatalogProductVirtual/CheckoutData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Repository/Category.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Repository/ConfigData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Repository/Product/CustomOptions.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Repository/Product/Fpt.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/Repository/Product/TierPrice.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/AdvancedMoveCategoryEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/AdvancedMoveCategoryEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/CreateCategoryEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/CreateCategoryEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/DeleteCategoryEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/DeleteCategoryEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/MoveCategoryEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/MoveCategoryEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/SubcategoryNotIncludeInNavigationMenuTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/SubcategoryNotIncludeInNavigationMenuTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/UpdateCategoryEntityFlatDataTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/UpdateCategoryEntityFlatDataTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/UpdateCategoryEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/UpdateCategoryEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/UpdateInactiveCategoryEntityFlatDataTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/UpdateInactiveCategoryEntityFlatDataTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/UpdateTopCategoryEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/UpdateTopCategoryEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/NavigateMenuTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/AbstractCompareProductsTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/AbstractProductPromotedProductsTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/AddCompareProductsTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/AddCompareProductsTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/AddToCartCrossSellTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/AddToCartCrossSellTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/ClearAllCompareProductsTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/ClearAllCompareProductsTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/CreateFlatCatalogProduct.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/CreateFlatCatalogProduct.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/CreateSimpleProductEntityByAttributeMaskSkuTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/CreateSimpleProductEntityByAttributeMaskSkuTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/CreateSimpleProductEntityPartOneTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/CreateSimpleProductEntityPartOneTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/CreateSimpleProductEntityPartTwoTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/CreateSimpleProductEntityPartTwoTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/CreateSimpleProductEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/CreateSimpleProductEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/CreateVirtualProductEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/CreateVirtualProductEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/DeleteCompareProductsTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/DeleteCompareProductsTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/DeleteProductEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/DeleteProductEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/DuplicateProductEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/DuplicateProductEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/GridFilteringDeletedEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/ManageProductsStockTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/ManageProductsStockTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/MassProductUpdateStatusTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/MassProductUpdateStatusTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/MassProductUpdateTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/MassProductUpdateTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/NavigateRelatedProductsTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/NavigateRelatedProductsTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/NavigateUpSellProductsTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/NavigateUpSellProductsTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/ProductTypeSwitchingOnCreationTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/ProductTypeSwitchingOnCreationTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/ProductTypeSwitchingOnUpdateTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/ProductTypeSwitchingOnUpdateTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/ReSavingProductAfterInitialSaveTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/ReSavingProductAfterInitialSaveTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/UpdateSimpleProductEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/UpdateSimpleProductEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/UpdateVirtualProductEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/UpdateVirtualProductEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/ValidateOrderOfProductTypeTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/ValidateOrderOfProductTypeTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/CreateAttributeSetEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/CreateAttributeSetEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/CreateProductAttributeEntityFromProductPageTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/CreateProductAttributeEntityFromProductPageTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/CreateProductAttributeEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/CreateProductAttributeEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/DeleteAssignedToTemplateProductAttributeTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/DeleteAssignedToTemplateProductAttributeTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/DeleteAttributeSetTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/DeleteAttributeSetTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/DeleteProductAttributeEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/DeleteProductAttributeEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/DeleteSystemProductAttributeTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/DeleteSystemProductAttributeTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/DeleteUsedInConfigurableProductAttributeTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/DeleteUsedInConfigurableProductAttributeTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/UpdateAttributeSetTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/UpdateAttributeSetTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/UpdateProductAttributeEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/UpdateProductAttributeEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/AddAttributeToAttributeSetStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/AddNewAttributeFromProductPageStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/AddNewAttributeStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/ConfigureProductOnProductPageStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/CreateAttributeSetStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/CreateProductStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/CreateProductWithAttributeSetStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/CreateProductsStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/DeleteAttributeStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/FillAttributeFormOnProductPageStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/FillAttributeFormStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/MergePreconditionProductsStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/OpenProductAttributesPageStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/OpenProductOnBackendStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/OpenProductOnFrontendStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/OpenProductsOnFrontendStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/SaveAttributeOnProductPageStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/SaveAttributeSetStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/SaveAttributeStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/SaveProductStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/SetDefaultAttributeValueStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/_files/test1.png
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/_files/test2.png
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/_files/test3.png
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/etc/curl/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/etc/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/etc/testcase.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/etc/ui/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Catalog/Test/etc/webapi/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogImportExport/Test/Constraint/AssertExportProduct.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogImportExport/Test/Constraint/AssertExportProductDate.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogImportExport/Test/Constraint/AssertImportedProducts.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogImportExport/Test/Constraint/AssertProductsInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogImportExport/Test/Constraint/AssertProductsOnStorefront.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogImportExport/Test/TestCase/ExportProductsTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogImportExport/Test/TestCase/ExportProductsTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogImportExport/Test/TestCase/ImportProductsTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogImportExport/Test/TestCase/ImportProductsTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogImportExport/Test/_files/template/products_variation_1.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogImportExport/Test/_files/template/products_variation_2.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogImportExport/Test/_files/template/products_variation_3.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogImportExport/Test/etc/testcase.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogInventory/Test/Repository/ConfigData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogRule/Test/Block/Adminhtml/FormPageActions.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogRule/Test/Block/Adminhtml/Promo/Catalog.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogRule/Test/Block/Adminhtml/Promo/Catalog/Edit/PromoForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogRule/Test/Block/Adminhtml/Promo/Catalog/Edit/PromoForm.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogRule/Test/Block/Adminhtml/Promo/Catalog/Edit/Section/Conditions.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogRule/Test/Block/Adminhtml/Promo/Catalog/Edit/Section/RuleInformation.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogRule/Test/Block/Adminhtml/Promo/GridPageActions.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogRule/Test/Block/Conditions.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogRule/Test/Constraint/AssertCatalogPriceRuleAppliedCatalogPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogRule/Test/Constraint/AssertCatalogPriceRuleAppliedProductPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogRule/Test/Constraint/AssertCatalogPriceRuleAppliedShoppingCart.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogRule/Test/Constraint/AssertCatalogPriceRuleForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogRule/Test/Constraint/AssertCatalogPriceRuleInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogRule/Test/Constraint/AssertCatalogPriceRuleNotAppliedCatalogPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogRule/Test/Constraint/AssertCatalogPriceRuleNotAppliedProductPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogRule/Test/Constraint/AssertCatalogPriceRuleNotAppliedShoppingCart.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogRule/Test/Constraint/AssertCatalogPriceRuleNotInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogRule/Test/Constraint/AssertCatalogPriceRuleNoticeMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogRule/Test/Constraint/AssertCatalogPriceRuleOnOnepageCheckout.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogRule/Test/Constraint/AssertCatalogPriceRuleSuccessDeleteMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogRule/Test/Constraint/AssertCatalogPriceRuleSuccessSaveMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogRule/Test/Constraint/AssertProductAttributeIsUsedPromoRules.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogRule/Test/Fixture/CatalogRule.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogRule/Test/Handler/CatalogRule/CatalogRuleInterface.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogRule/Test/Handler/CatalogRule/Curl.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogRule/Test/Page/Adminhtml/CatalogRuleEdit.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogRule/Test/Page/Adminhtml/CatalogRuleIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogRule/Test/Page/Adminhtml/CatalogRuleNew.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogRule/Test/Repository/CatalogRule.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogRule/Test/TestCase/AbstractCatalogRuleEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogRule/Test/TestCase/ApplyCatalogPriceRulesTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogRule/Test/TestCase/ApplyCatalogPriceRulesTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogRule/Test/TestCase/CreateCatalogPriceRuleEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogRule/Test/TestCase/CreateCatalogPriceRuleEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogRule/Test/TestCase/DeleteCatalogPriceRuleEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogRule/Test/TestCase/DeleteCatalogPriceRuleEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogRule/Test/TestCase/NavigateMenuTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogRule/Test/TestCase/UpdateCatalogPriceRuleEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogRule/Test/TestCase/UpdateCatalogPriceRuleEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogRule/Test/TestStep/CreateCatalogRuleStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogRule/Test/TestStep/DeleteAllCatalogRulesStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogRule/Test/etc/curl/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogRule/Test/etc/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogRule/Test/etc/ui/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogRuleConfigurable/Test/Constraint/AssertCatalogPriceRuleAppliedCatalogPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogRuleConfigurable/Test/TestCase/ApplyConfigurableProductCatalogPriceRulesTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogRuleConfigurable/Test/TestCase/ApplyConfigurableProductCatalogPriceRulesTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogRuleConfigurable/Test/TestCase/DeleteCatalogPriceRuleEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Block/Adminhtml/Edit/SearchTermForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Block/Adminhtml/Edit/SearchTermForm.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Block/Adminhtml/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Block/Advanced/CustomAttribute/Date.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Block/Advanced/CustomAttribute/Select.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Block/Advanced/CustomAttribute/Text.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Block/Advanced/Form.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Block/Advanced/Form.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Block/Advanced/Result.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Block/Advanced/SearchResultsTitle.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertAdvancedSearchAttributeIsAbsent.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertAdvancedSearchEmptyTerm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertAdvancedSearchNoResult.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertAdvancedSearchProductByAttribute.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertAdvancedSearchProductResult.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertAdvancedSearchProductsResult.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertAttributeSearchableByLabel.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertCatalogSearchNoResult.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertCatalogSearchNoResultMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertCatalogSearchQueryLength.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertCatalogSearchResult.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertCatalogSearchResultOrder.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertConfigurableWithDisabledOtpionCatalogSearchNoResult.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertProductAddedToCartFromSearchResults.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertProductCanBeOpenedFromSearchResult.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertSearchAttributeTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertSearchTermForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertSearchTermInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertSearchTermMassActionNotOnFrontend.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertSearchTermMassActionsNotInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertSearchTermNotInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertSearchTermNotOnFrontend.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertSearchTermOnFrontend.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertSearchTermSuccessDeleteMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertSearchTermSuccessMassDeleteMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertSearchTermSuccessSaveMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertSuggestSearchingResult.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Fixture/CatalogSearchQuery.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Fixture/CatalogSearchQuery/QueryText.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Handler/CatalogSearchQuery/CatalogSearchQueryInterface.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Handler/CatalogSearchQuery/Curl.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Page/Adminhtml/CatalogSearchEdit.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Page/Adminhtml/CatalogSearchIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Page/AdvancedResult.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Page/AdvancedSearch.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Page/CatalogsearchResult.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Repository/CatalogSearchQuery.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/TestCase/AdvancedSearchEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/TestCase/AdvancedSearchEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/TestCase/CreateSearchTermEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/TestCase/CreateSearchTermEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/TestCase/DeleteSearchTermEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/TestCase/DeleteSearchTermEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/TestCase/MassDeleteSearchTermEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/TestCase/MassDeleteSearchTermEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/TestCase/NavigateMenuTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/TestCase/SearchEntityResultsTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/TestCase/SearchEntityResultsTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/TestCase/SuggestSearchingResultEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/TestCase/SuggestSearchingResultEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/TestCase/UpdateSearchTermEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/TestCase/UpdateSearchTermEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/etc/curl/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogSearch/Test/etc/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogUrlRewrite/Test/Block/Adminhtml/Category/Edit/CategoryForm.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogUrlRewrite/Test/Constraint/AssertCategoryUrlDuplicateErrorMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogUrlRewrite/Test/Constraint/AssertProductUrlDuplicateErrorMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogUrlRewrite/Test/Fixture/Category.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogUrlRewrite/Test/TestCase/CreateDuplicateUrlCategoryEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogUrlRewrite/Test/TestCase/CreateDuplicateUrlCategoryEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogUrlRewrite/Test/TestCase/CreateDuplicateUrlProductEntity.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogUrlRewrite/Test/TestCase/CreateDuplicateUrlProductEntity.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CatalogUrlRewrite/Test/etc/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Cart.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Cart/AbstractCartItem.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Cart/CartEmpty.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Cart/CartItem.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Cart/DiscountCodes.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Cart/Pager.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Cart/Shipping.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Cart/Shipping.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Cart/Sidebar.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Cart/Sidebar/Item.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Cart/Totals.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/AbstractReview.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/CustomAddress.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/Link.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/Login.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/Login.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/Payment.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/Payment/DiscountCodes.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/Payment/Method.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/Payment/Method/Billing.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/Payment/Method/Billing.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/Registration.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/Review.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/Shipping.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/Shipping.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/Shipping/AddressModal.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/Shipping/AddressModal.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/Shipping/Method.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/ShippingPopup.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/ShippingPopup.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/Success.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertAddToCartButtonAbsentOnCategoryPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertAddToCartButtonAbsentOnProductPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertAddToCartButtonPresentOnCategoryPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertAddToCartButtonPresentOnProductPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertAddedProductToCartSuccessMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertBillingAddressAbsentInPayment.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertBillingAddressSameAsShippingCheckbox.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertCancelSuccessMessageInShoppingCart.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertCartBundleOptionTitle.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertCartIsEmpty.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertCartItemsOptions.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertCartPerCustomer.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertCheckoutErrorMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertCustomerIsRedirectedToCheckoutFromCart.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertDiscountInShoppingCart.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertEmailErrorValidationMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertEmailToolTips.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertEstimateShippingAndTax.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertGrandTotalInShoppingCart.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertGrandTotalOrderReview.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertItemsCounterInMiniShoppingCart.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertLinkGoToCartNotPresentInSummaryBlock.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertLinkGoToCartPresentInSummaryBlock.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertMinicartEmpty.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertMinicartItemsQty.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertMyCartLinkRedirect.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertOrderSuccessPlacedMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertPagersNotPresentInShoppingCart.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertPagersPresentInShoppingCart.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertPagersSummaryText.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertPaymentMethodIsAbsentOnPaymentPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertPaymentMethodPersistence.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertPriceInShoppingCart.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertProceedToCheckoutButton.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertProductAbsentInMiniShoppingCart.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertProductDataInMiniShoppingCart.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertProductIsNotEditable.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertProductOptionsAbsentInShoppingCart.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertProductPresentInMiniShoppingCart.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertProductPresentInShoppingCart.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertProductQtyInShoppingCart.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertProductsAbsentInShoppingCart.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertShippingAddressJsValidationMessagesIsAbsent.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertShippingInShoppingCart.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertShippingMethodAvailableInCart.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertShippingTotalOrderReview.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertSubTotalOrderReview.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertSubtotalInMiniShoppingCart.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertSubtotalInShoppingCart.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertTaxInShoppingCart.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertTaxTotalOrderReview.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertTopDestinationsInSelect.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertVisibleItemsQtyInCheckoutSummaryBlock.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertVisibleItemsQtyInMiniShoppingCart.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertVisibleItemsQtyMessageInMiniShoppingCart.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertVisibleItemsQtyMessageOnCheckoutSummaryBlock.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Fixture/Cart.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Fixture/Cart/Items.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Page/CheckoutCart.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Page/CheckoutOnepage.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Page/CheckoutOnepageSuccess.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Page/CmsIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/Repository/ConfigData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/AddProductsToShoppingCartEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/AddProductsToShoppingCartEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/DeleteProductFromMiniShoppingCartTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/DeleteProductFromMiniShoppingCartTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/DeleteProductsFromShoppingCartTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/DeleteProductsFromShoppingCartTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/EditShippingAddressOnePageCheckoutTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/EditShippingAddressOnePageCheckoutTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/OnePageCheckoutDeclinedTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/OnePageCheckoutFromMiniShoppingCartTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/OnePageCheckoutJsValidationTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/OnePageCheckoutJsValidationTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/OnePageCheckoutOfflinePaymentMethodsTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/OnePageCheckoutOfflinePaymentMethodsTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/OnePageCheckoutTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/OnePageCheckoutTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/ShoppingCartPagerTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/ShoppingCartPagerTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/ShoppingCartPerCustomerTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/ShoppingCartPerCustomerTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/UpdateProductFromMiniShoppingCartEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/UpdateProductFromMiniShoppingCartEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/UpdateShoppingCartTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/UpdateShoppingCartTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/ValidateEmailOnCheckoutTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/ValidateEmailOnCheckoutTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/VerifyPaymentMethodOnCheckoutTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/AddNewShippingAddressStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/AddProductsToTheCartStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/ClickPlaceOrderButtonStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/ClickProceedToCheckoutStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/CreateCustomerAccountStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/EditShippingAddressStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/EstimateShippingAndTaxStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/FillBillingInformationStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/FillShippingAddressStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/FillShippingMethodOnEstimateStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/FillShippingMethodStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/GetPlacedOrderIdStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/PlaceOrderStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/ProceedToCheckoutFromMiniShoppingCartStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/ProceedToCheckoutStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/RefreshPageStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/RemoveProductsFromTheCartStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/SelectCheckoutMethodStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/SelectPaymentMethodStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/etc/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Checkout/Test/etc/testcase.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Block/Adminhtml/AgreementGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Block/Adminhtml/Block/Agreement/Edit/AgreementsForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Block/Adminhtml/Block/Agreement/Edit/AgreementsForm.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Block/Multishipping/MultishippingAgreementReview.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Block/Onepage/AgreementReview.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Constraint/AssertTermAbsentInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Constraint/AssertTermAbsentOnCheckout.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Constraint/AssertTermInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Constraint/AssertTermOnCheckout.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Constraint/AssertTermRequireMessageOnMultishippingCheckout.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Constraint/AssertTermSuccessDeleteMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Constraint/AssertTermSuccessSaveMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Fixture/CheckoutAgreement.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Fixture/CheckoutAgreement/Stores.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Handler/CheckoutAgreement/CheckoutAgreementInterface.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Handler/CheckoutAgreement/Curl.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Page/Adminhtml/CheckoutAgreementIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Page/Adminhtml/CheckoutAgreementNew.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Page/CheckoutOnepage.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Page/MultishippingCheckoutOverview.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Repository/CheckoutAgreement.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Repository/ConfigData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/TestCase/CreateTermEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/TestCase/CreateTermEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/TestCase/DeleteTermEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/TestCase/DeleteTermEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/TestCase/NavigateMenuTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/TestCase/UpdateTermEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/TestCase/UpdateTermEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/TestStep/CheckTermOnMultishippingStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/TestStep/CreateTermEntityStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/TestStep/DeleteAllTermsEntityStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/TestStep/DeleteTermEntityStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/TestStep/SetupTermEntityStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/TestStep/UpdateTermEntityStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/etc/curl/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/etc/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/etc/testcase.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Block/Adminhtml/Block/CmsGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Block/Adminhtml/Block/Edit/BlockForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Block/Adminhtml/Block/Edit/CmsForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Block/Adminhtml/Block/Edit/CmsForm.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Block/Adminhtml/Page/Edit/PageForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Block/Adminhtml/Page/Edit/PageForm.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Block/Adminhtml/Page/Edit/Tab/Content.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Block/Adminhtml/Page/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Block/Adminhtml/Page/Widget/Chooser.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Block/Adminhtml/Wysiwyg/Config.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Block/Messages.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Block/Page.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertAuthorizationLinkIsVisibleOnStoreFront.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsBlockDeleteMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsBlockInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsBlockNotInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsBlockNotOnCategoryPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsBlockOnCategoryPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsBlockSuccessSaveMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsPageDeleteMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsPageDisabledOnFrontend.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsPageDuplicateErrorMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsPageForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsPageFormSingleStoreMode.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsPageInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsPageNotInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsPageOnFrontend.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsPagePreview.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsPageSuccessSaveMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsPagesDisabledOnFrontend.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsPagesInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsPagesOnFrontendMultipleStoreViews.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertUrlRewriteCmsPageRedirect.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Fixture/CmsBlock.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Fixture/CmsBlock/Stores.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Fixture/CmsPage.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Fixture/CmsPage/Content.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Fixture/CmsPage/StoreId.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Handler/CmsBlock/CmsBlockInterface.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Handler/CmsBlock/Curl.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Handler/CmsPage/CmsPageInterface.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Handler/CmsPage/Curl.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Page/Adminhtml/CmsBlockEdit.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Page/Adminhtml/CmsBlockIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Page/Adminhtml/CmsBlockNew.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Page/Adminhtml/CmsPageIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Page/Adminhtml/CmsPageNew.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Page/CmsIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Page/CmsPage.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Repository/CmsBlock.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Repository/CmsPage.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Repository/CmsPage/Content.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Repository/ConfigData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/Repository/UrlRewrite.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/AbstractCmsBlockEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/CmsPageMassActionTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/CmsPageMassActionTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/CreateCmsBlockEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/CreateCmsBlockEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/CreateCmsPageEntityMultipleStoreViewsTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/CreateCmsPageEntityMultipleStoreViewsTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/CreateCmsPageEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/CreateCmsPageEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/CreateCmsPageRewriteEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/CreateCmsPageRewriteEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/CreateCustomUrlRewriteEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/CreateDuplicateUrlCmsPageEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/CreateDuplicateUrlCmsPageEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/DeleteCmsBlockEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/DeleteCmsBlockEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/DeleteCmsPageEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/DeleteCmsPageEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/DeleteCmsPageUrlRewriteEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/DeleteCmsPageUrlRewriteEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/GridFilteringTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/GridFullTextSearchTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/GridSortingTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/NavigateMenuTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/UpdateCmsBlockEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/UpdateCmsBlockEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/UpdateCmsPageEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/UpdateCmsPageEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/UpdateCmsPageRewriteEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/UpdateCmsPageRewriteEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/etc/curl/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Cms/Test/etc/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Config/Test/Block/System/Config/AdminForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Config/Test/Constraint/AssertAdminAccountSharing.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Config/Test/Fixture/ConfigData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Config/Test/Fixture/ConfigData/Section.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Config/Test/Handler/ConfigData/ConfigDataInterface.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Config/Test/Handler/ConfigData/Curl.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Config/Test/Page/Adminhtml/AdminAccountSharing.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Config/Test/TestCase/VerifyAdminAccountSharingEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Config/Test/TestCase/VerifyAdminAccountSharingEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Config/Test/TestStep/SetupConfigurationStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Config/Test/etc/curl/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableImportExport/Test/Constraint/AssertImportedConfigurableProducts.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableImportExport/Test/Fixture/Import/File.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableImportExport/Test/TestCase/ExportProductsTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableImportExport/Test/TestCase/ImportProductsTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/AffectedAttributeSet.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/AffectedAttributeSet.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/AssociatedProductGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/AttributesGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/Composite/Configure.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/Composite/Configure.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/Edit/NewConfigurableAttributeForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/Edit/NewConfigurableAttributeForm.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/Edit/Section/Variations/Config.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/Edit/Section/Variations/Config/Attribute.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/Edit/Section/Variations/Config/Attribute.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/Edit/Section/Variations/Config/Attribute/AttributeSelector.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/Edit/Section/Variations/Config/Attribute/ToggleDropdown.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/Edit/Section/Variations/Config/Matrix.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/Edit/Section/Variations/Config/Matrix.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/FormPageActions.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/ProductForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/ProductForm.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Product/Price.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Product/View.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Product/View/ConfigurableOptions.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertChildProductIsNotDisplayedSeparately.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertChildProductsGeneratedSku.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertChildProductsInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertConfigurableAttributesAbsentOnProductPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertConfigurableAttributesBlockIsAbsentOnProductPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertConfigurableProductAttributeOptionInLayeredNavigation.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertConfigurableProductDuplicateForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertConfigurableProductForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertConfigurableProductImages.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertConfigurableProductInCart.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertConfigurableProductInCategory.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertConfigurableProductInCustomerWishlistOnBackendGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertConfigurableProductOutOfStockPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertConfigurableProductPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertConfigurableProductsQtyAfterReorder.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertCurrencyRateAppliedOnProductPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertOutOfStockOptionIsAbsentOnProductPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertProductAttributeAbsenceInVariationsSearch.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertProductAttributeIsConfigurable.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertProductQtyDecreasedAfterCreditmemo.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertProductTierPriceOnProductPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Fixture/Cart/Item.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Fixture/ConfigurableProduct.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Fixture/ConfigurableProduct/ConfigurableAttributesData.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Handler/ConfigurableProduct/ConfigurableProductInterface.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Handler/ConfigurableProduct/Curl.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Handler/ConfigurableProduct/Webapi.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Page/Adminhtml/CatalogProductEdit.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Page/Adminhtml/CatalogProductNew.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Page/Adminhtml/CustomerIndexEdit.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Page/Adminhtml/OrderCreateIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Page/Product/CatalogProductView.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Repository/ConfigData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Repository/ConfigurableProduct.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Repository/ConfigurableProduct/CheckoutData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Repository/ConfigurableProduct/ConfigurableAttributesData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Repository/ConfigurableProduct/Price.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/CreateConfigurableProductEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/CreateConfigurableProductEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/CreateCreditMemoEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/CreateCurrencyRateTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/DeleteChildConfigurableProductTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/DeleteChildConfigurableProductTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/DeleteProductEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/DeleteProductFromMiniShoppingCartTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/DuplicateProductEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/MassProductUpdateTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/MoveRecentlyComparedProductsOnOrderPageTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/TaxCalculationTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/UpdateConfigurableProductEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/UpdateConfigurableProductEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/ValidateOrderOfProductTypeTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/VerifyConfigurableProductEntityPriceTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/VerifyConfigurableProductEntityPriceTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/VerifyConfigurableProductLayeredNavigationTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/VerifyConfigurableProductLayeredNavigationTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestStep/UpdateChildProductStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestStep/UpdateConfigurableProductStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/etc/curl/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/etc/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/etc/testcase.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/etc/webapi/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Contact/Test/Block/Form/ContactUs.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Contact/Test/Block/Form/ContactUs.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Contact/Test/Block/Messages.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Contact/Test/Constraint/AssertContactUsSuccessMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Contact/Test/Fixture/Comment.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Contact/Test/Fixture/Comment/Customer.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Contact/Test/Page/ContactIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Block/Adminhtml/System/Currency/Rate/CurrencyRateForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Block/Adminhtml/System/Currency/Rate/CurrencyRateForm.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Block/Adminhtml/System/Currency/Rate/FormPageActions.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Block/Adminhtml/System/CurrencySymbolForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Block/Adminhtml/System/CurrencySymbolForm.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Block/Adminhtml/System/FormPageActions.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Constraint/AssertCurrencySymbolOnCatalogPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Constraint/AssertCurrencySymbolOnProductPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Constraint/AssertCurrencySymbolOnProductPageCustomWebsite.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Constraint/AssertCurrencySymbolOnProductPageMainWebsite.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Constraint/AssertCurrencySymbolSuccessSaveMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Fixture/CurrencySymbolEntity.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Handler/CurrencySymbolEntity/Curl.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Handler/CurrencySymbolEntity/CurrencySymbolEntityInterface.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Page/Adminhtml/ConfigCurrencySetUp.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Page/Adminhtml/SystemCurrencyIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Page/Adminhtml/SystemCurrencySymbolIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Repository/ConfigData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Repository/CurrencySymbolEntity.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/TestCase/AbstractCurrencySymbolEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/TestCase/EditCurrencyCustomWebsiteTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/TestCase/EditCurrencyCustomWebsiteTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/TestCase/EditCurrencySymbolEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/TestCase/EditCurrencySymbolEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/TestCase/NavigateMenuTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/TestCase/ResetCurrencySymbolEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/TestCase/ResetCurrencySymbolEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/etc/curl/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Block/Account/AddressesAdditional.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Block/Account/AddressesDefault.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Block/Account/AuthenticationPopup.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Block/Account/AuthenticationPopup.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Block/Account/AuthenticationWrapper.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Block/Account/AuthenticationWrapper.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Block/Account/Dashboard/Address.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Block/Account/Dashboard/Info.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Block/Account/Links.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Block/Address/Edit.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Block/Address/Edit.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Block/Address/Renderer.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Block/Adminhtml/CustomerGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Block/Adminhtml/Edit/CustomerForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Block/Adminhtml/Edit/CustomerForm.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Block/Adminhtml/Edit/FormPageActions.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Block/Adminhtml/Edit/Tab/Addresses.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Block/Adminhtml/Edit/Tab/Addresses.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Block/Adminhtml/Group/CustomerGroupGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Block/Adminhtml/Group/Edit/Form.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Block/Adminhtml/Group/Edit/Form.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Block/Form/CustomerForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Block/Form/CustomerForm.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Block/Form/ForgotPassword.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Block/Form/ForgotPassword.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Block/Form/Login.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Block/Form/Login.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Block/Form/Register.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Block/Form/Register.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertAdditionalAddressCreatedFrontend.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertAdditionalAddressDeletedFrontend.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertAddressDeletedBackend.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertAddressDeletedFrontend.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertChangePasswordFailMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertChangingWebsiteChangeCountries.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerAddressSuccessSaveMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerBackendBackButton.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerBackendDuplicateErrorMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerBackendFormTitle.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerBackendRequiredFields.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerDefaultAddressFrontendAddressBook.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerDefaultAddresses.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerDoesNotHaveDefaultAddresses.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerFailRegisterMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerForgotPasswordSuccessMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerGroupAlreadyExists.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerGroupChangedToDefaultOnCustomerForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerGroupFieldsDisabled.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerGroupForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerGroupInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerGroupNotInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerGroupNotOnCartPriceRuleForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerGroupNotOnCatalogPriceRuleForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerGroupNotOnProductForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerGroupOnCartPriceRuleForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerGroupOnCatalogPriceRuleForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerGroupOnCustomerForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerGroupOnProductForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerGroupSuccessDeleteMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerGroupSuccessSaveMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerInfoSuccessSavedMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerInvalidEmail.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerIsLockedOnBackend.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerLogin.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerLoginErrorMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerLogout.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerMassDeleteInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerMassDeleteNotInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerMassDeleteSuccessMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerNameFrontend.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerNotInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerPasswordAutocompleteOnAuthorizationPopup.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerPasswordAutocompleteOnSignIn.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerPasswordChanged.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerRedirectToDashboard.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerSuccessDeleteMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerSuccessRegisterMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerSuccessSaveMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertMassActionSuccessUpdateMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertNoDeleteForSystemCustomerGroup.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertWrongPassConfirmationMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Fixture/Address.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Fixture/Customer.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Fixture/Customer/Address.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Fixture/Customer/GroupId.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Fixture/Customer/WebsiteId.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Fixture/CustomerGroup.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Fixture/CustomerGroup/TaxClassIds.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Handler/Customer/Curl.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Handler/Customer/CustomerInterface.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Handler/Customer/Webapi.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Handler/CustomerGroup/Curl.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Handler/CustomerGroup/CustomerGroupInterface.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Page/Address/DefaultAddress.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Page/Adminhtml/CheckoutIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Page/Adminhtml/CustomerGroupEdit.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Page/Adminhtml/CustomerGroupIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Page/Adminhtml/CustomerGroupNew.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Page/Adminhtml/CustomerIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Page/Adminhtml/CustomerIndexEdit.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Page/Adminhtml/CustomerIndexNew.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Page/CustomerAccountAddress.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Page/CustomerAccountCreate.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Page/CustomerAccountEdit.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Page/CustomerAccountForgotPassword.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Page/CustomerAccountIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Page/CustomerAccountLogin.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Page/CustomerAccountLogout.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Page/CustomerAddressEdit.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Repository/Address.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Repository/Address.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Repository/ConfigData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Repository/Customer.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/Repository/CustomerGroup.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/AbstractApplyVatIdTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/ApplyVatIdTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/ApplyVatIdTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/ChangeCustomerPasswordTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/ChangeCustomerPasswordTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/CreateCustomerBackendEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/CreateCustomerBackendEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/CreateCustomerGroupEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/CreateCustomerGroupEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/CreateExistingCustomerBackendEntity.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/CreateExistingCustomerBackendEntity.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/CreateExistingCustomerFrontendEntity.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/CreateExistingCustomerFrontendEntity.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/DeleteCustomerAddressTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/DeleteCustomerAddressTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/DeleteCustomerBackendEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/DeleteCustomerBackendEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/DeleteCustomerGroupEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/DeleteCustomerGroupEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/DeleteSystemCustomerGroupTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/DeleteSystemCustomerGroupTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/ForgotPasswordOnFrontendTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/ForgotPasswordOnFrontendTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/GridFilteringTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/GridFullTextSearchTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/GridSortingTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/LoginOnFrontendFailTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/LoginOnFrontendFailTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/MassAssignCustomerGroupTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/MassAssignCustomerGroupTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/MassDeleteCustomerBackendEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/MassDeleteCustomerBackendEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/NavigateMenuTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/PasswordAutocompleteOffTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/PasswordAutocompleteOffTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/RegisterCustomerFrontendEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/RegisterCustomerFrontendEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/UpdateCustomerBackendEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/UpdateCustomerBackendEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/UpdateCustomerFrontendEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/UpdateCustomerFrontendEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/UpdateCustomerGroupEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/UpdateCustomerGroupEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/VerifyDisabledCustomerGroupFieldTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/VerifyDisabledCustomerGroupFieldTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestStep/CreateCustomerStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestStep/CreateOrderFromCustomerAccountStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestStep/DeleteCustomerStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestStep/LoginCustomerOnFrontendStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestStep/LogoutCustomerOnFrontendStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/TestStep/OpenCustomerOnBackendStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/etc/curl/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/etc/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/etc/testcase.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Customer/Test/etc/webapi/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CustomerImportExport/Test/Constraint/AssertExportCustomerAddresses.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CustomerImportExport/Test/Constraint/AssertImportCustomerAddresses.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CustomerImportExport/Test/Repository/ExportData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CustomerImportExport/Test/TestCase/ExportCustomerAddressesTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CustomerImportExport/Test/TestCase/ExportCustomerAddressesTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CustomerImportExport/Test/TestCase/ImportCustomerAddressTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CustomerImportExport/Test/TestCase/ImportCustomerAddressTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CustomerImportExport/Test/TestStep/FillCustomImportFormStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CustomerImportExport/Test/_files/template/address/customer_addresses_variation_1.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CustomerImportExport/Test/_files/template/address/customer_addresses_variation_2.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CustomerImportExport/Test/etc/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/CustomerImportExport/Test/etc/testcase.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Dhl/Test/Repository/ConfigData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Dhl/Test/TestCase/CityBasedShippingRateTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Dhl/Test/TestCase/OnePageCheckoutTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Directory/Test/Block/Currency/Switcher.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Directory/Test/Constraint/AssertCurrencyRateAppliedOnCatalogPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Directory/Test/Constraint/AssertCurrencyRateAppliedOnProductPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Directory/Test/Constraint/AssertCurrencyRateSuccessSaveMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Directory/Test/Constraint/AssertShippingPriceWithCustomCurrency.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Directory/Test/Fixture/CurrencyRate.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Directory/Test/Handler/CurrencyRate/Curl.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Directory/Test/Handler/CurrencyRate/CurrencyRateInterface.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Directory/Test/Repository/ConfigData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Directory/Test/Repository/CurrencyRate.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Directory/Test/TestCase/CreateCurrencyRateTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Directory/Test/TestCase/CreateCurrencyRateTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Directory/Test/etc/curl/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Directory/Test/etc/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/Block/Adminhtml/Catalog/Product/Edit/Section/Downloadable.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/Block/Adminhtml/Catalog/Product/Edit/Section/Downloadable/LinkRow.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/Block/Adminhtml/Catalog/Product/Edit/Section/Downloadable/LinkRow.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/Block/Adminhtml/Catalog/Product/Edit/Section/Downloadable/Links.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/Block/Adminhtml/Catalog/Product/Edit/Section/Downloadable/Links.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/Block/Adminhtml/Catalog/Product/Edit/Section/Downloadable/SampleRow.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/Block/Adminhtml/Catalog/Product/Edit/Section/Downloadable/SampleRow.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/Block/Adminhtml/Catalog/Product/Edit/Section/Downloadable/Samples.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/Block/Adminhtml/Catalog/Product/Edit/Section/Downloadable/Samples.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/Block/Adminhtml/Product/Composite/Configure.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/Block/Adminhtml/Product/Composite/Configure.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/Block/Adminhtml/Product/ProductForm.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/Block/Catalog/Product/View.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/Block/Catalog/Product/View/Links.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/Block/Catalog/Product/View/Samples.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/Block/Customer/Products/ListProducts.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/Constraint/AbstractAssertTaxCalculationAfterCheckoutDownloadable.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/Constraint/AbstractAssertTaxRuleIsAppliedToAllPricesDownloadable.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/Constraint/AssertDownloadableDuplicateForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/Constraint/AssertDownloadableLinksData.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/Constraint/AssertDownloadableProductForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/Constraint/AssertDownloadableProductInCustomerWishlistOnBackendGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/Constraint/AssertDownloadableSamplesData.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/Constraint/AssertTaxCalculationAfterCheckoutDownloadableExcludingIncludingTax.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/Constraint/AssertTaxCalculationAfterCheckoutDownloadableExcludingTax.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/Constraint/AssertTaxCalculationAfterCheckoutDownloadableIncludingTax.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/Constraint/AssertTaxRuleIsAppliedToAllPricesDownloadableExcludingIncludingTax.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/Constraint/AssertTaxRuleIsAppliedToAllPricesDownloadableExcludingTax.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/Constraint/AssertTaxRuleIsAppliedToAllPricesDownloadableIncludingTax.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/Fixture/Cart/Item.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/Fixture/DownloadableProduct.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/Handler/DownloadableProduct/Curl.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/Handler/DownloadableProduct/DownloadableProductInterface.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/Handler/DownloadableProduct/Webapi.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/Page/Adminhtml/CustomerIndexEdit.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/Page/Adminhtml/OrderCreateIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/Page/DownloadableCustomerProducts.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/Page/Product/CatalogProductView.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/Repository/DownloadableProduct.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/Repository/DownloadableProduct/CheckoutData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/Repository/DownloadableProduct/Links.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/Repository/DownloadableProduct/Samples.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/TestCase/CreateDownloadableProductEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/TestCase/CreateDownloadableProductEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/TestCase/DeleteProductEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/TestCase/DeleteProductFromMiniShoppingCartTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/TestCase/DuplicateProductEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/TestCase/TaxCalculationTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/TestCase/UpdateDownloadableProductEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/TestCase/UpdateDownloadableProductEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/TestCase/ValidateOrderOfProductTypeTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/etc/curl/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/etc/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Downloadable/Test/etc/webapi/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Email/Test/Block/Adminhtml/Template/Edit/TemplateForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Email/Test/Block/Adminhtml/Template/Edit/TemplateForm.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Email/Test/Constraint/AssertEmailTemplateSuccessSaveMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Email/Test/Fixture/EmailTemplate.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Email/Test/Page/Adminhtml/EmailTemplateIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Email/Test/Page/Adminhtml/EmailTemplateNew.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Email/Test/TestCase/CreateEmailTemplateEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Email/Test/TestCase/CreateEmailTemplateEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Email/Test/TestCase/NavigateMenuTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Fedex/Test/Repository/ConfigData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Fedex/Test/TestCase/CityBasedShippingRateTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Fedex/Test/TestCase/OnePageCheckoutTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Fedex/Test/TestCase/TrackingShipmentForPlacedOrderTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Adminhtml/Order/Create.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Adminhtml/Order/Create/Form.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Adminhtml/Order/Create/Form.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Adminhtml/Order/Create/GiftOptions.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Adminhtml/Order/Create/GiftOptions.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Adminhtml/Order/Create/Items.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Adminhtml/Order/Create/Items/ItemProduct.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Adminhtml/Order/View/Form.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Adminhtml/Order/View/Form.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Adminhtml/Order/View/GiftOptions.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Adminhtml/Order/View/GiftOptions.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Adminhtml/Order/View/Items.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Adminhtml/Order/View/Items/ItemProduct.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Cart/GiftOptions.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Cart/GiftOptions/GiftMessageForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Cart/GiftOptions/GiftMessageForm.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Cart/Item/GiftOptions.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Cart/Item/GiftOptions.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Message/Order/Items/View.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Message/Order/View.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GiftMessage/Test/Constraint/AssertGiftMessageInBackendOrder.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GiftMessage/Test/Constraint/AssertGiftMessageInFrontendOrder.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GiftMessage/Test/Constraint/AssertGiftMessageInFrontendOrderItems.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GiftMessage/Test/Fixture/GiftMessage.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GiftMessage/Test/Fixture/GiftMessage/Items.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GiftMessage/Test/Page/Adminhtml/OrderCreateIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GiftMessage/Test/Page/Adminhtml/OrderView.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GiftMessage/Test/Page/CheckoutCart.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GiftMessage/Test/Page/CustomerOrderView.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GiftMessage/Test/Repository/ConfigData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GiftMessage/Test/Repository/GiftMessage.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GiftMessage/Test/TestCase/CheckoutWithGiftMessagesTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GiftMessage/Test/TestCase/CheckoutWithGiftMessagesTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GiftMessage/Test/TestCase/CreateGiftMessageOnBackendTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GiftMessage/Test/TestCase/CreateGiftMessageOnBackendTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GiftMessage/Test/TestStep/AddGiftMessageBackendStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GiftMessage/Test/TestStep/AddGiftMessageStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GiftMessage/Test/etc/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GiftMessage/Test/etc/testcase.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedImportExport/Test/Constraint/AssertImportedGroupedProducts.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedImportExport/Test/Fixture/Import/File.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedImportExport/Test/TestCase/ExportProductsTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedImportExport/Test/TestCase/ImportProductsTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Block/Adminhtml/Product/Composite/Configure.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Block/Adminhtml/Product/Composite/Configure.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Block/Adminhtml/Product/Grouped/AssociatedProducts.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Block/Adminhtml/Product/Grouped/AssociatedProducts/ListAssociatedProducts.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Block/Adminhtml/Product/Grouped/AssociatedProducts/ListAssociatedProducts/Product.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Block/Adminhtml/Product/Grouped/AssociatedProducts/ListAssociatedProducts/Product.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Block/Adminhtml/Product/Grouped/AssociatedProducts/Search/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Block/Adminhtml/Product/ProductForm.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Block/Cart/Sidebar.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Block/Cart/Sidebar/Item.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Block/Catalog/Product/View.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Block/Catalog/Product/View/Type/Grouped.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Block/Checkout/Cart.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Block/Checkout/Cart/CartItem.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Constraint/AbstractAssertPriceOnGroupedProductPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Constraint/AbstractAssertTaxRuleIsAppliedToAllPricesOnGroupedProductPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Constraint/AssertGroupedProductForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Constraint/AssertGroupedProductInCustomerWishlistOnBackendGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Constraint/AssertGroupedProductInItemsOrderedGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Constraint/AssertGroupedProductsDefaultQty.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Constraint/AssertProductInItemsOrderedGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Constraint/AssertSpecialPriceOnGroupedProductPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Constraint/AssertTaxRuleIsAppliedToAllPricesGroupedExcludingIncludingTax.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Constraint/AssertTierPriceOnGroupedProductPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Fixture/Cart/Item.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Fixture/GroupedProduct.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Fixture/GroupedProduct/Associated.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Handler/GroupedProduct/Curl.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Handler/GroupedProduct/GroupedProductInterface.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Handler/GroupedProduct/Webapi.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Page/Adminhtml/CustomerIndexEdit.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Page/Adminhtml/OrderCreateIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Page/CheckoutCart.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Page/CmsIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Page/Product/CatalogProductView.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Repository/GroupedProduct.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Repository/GroupedProduct/Associated.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Repository/GroupedProduct/CheckoutData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Repository/GroupedProduct/Price.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/TestCase/CreateGroupedProductEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/TestCase/CreateGroupedProductEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/TestCase/DeleteProductEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/TestCase/DeleteProductFromMiniShoppingCartTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/TestCase/MoveRecentlyComparedProductsOnOrderPageTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/TestCase/TaxCalculationTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/TestCase/UpdateGroupedProductEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/TestCase/UpdateGroupedProductEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/TestCase/ValidateOrderOfProductTypeTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/etc/curl/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/etc/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/GroupedProduct/Test/etc/webapi/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ImportExport/Mtf/Util/Import/File/CsvTemplate.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ImportExport/Test/Block/Adminhtml/Export/Edit/Form.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ImportExport/Test/Block/Adminhtml/Export/Edit/Form.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ImportExport/Test/Block/Adminhtml/Export/Filter.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ImportExport/Test/Block/Adminhtml/Import/Edit/CustomForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ImportExport/Test/Block/Adminhtml/Import/Edit/CustomForm.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ImportExport/Test/Block/Adminhtml/Import/Edit/Form.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ImportExport/Test/Block/Adminhtml/Import/Edit/Form.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ImportExport/Test/Block/Adminhtml/Import/FormPageActions.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ImportExport/Test/Block/Adminhtml/Import/Frame/Result.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ImportExport/Test/Block/Adminhtml/Import/Messages.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ImportExport/Test/Constraint/AssertExportNoDataErrorMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ImportExport/Test/Constraint/AssertImportCheckData.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ImportExport/Test/Constraint/AssertImportCheckDataErrorMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ImportExport/Test/Constraint/AssertImportCheckDataErrorMessagesList.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ImportExport/Test/Constraint/AssertImportSuccessMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ImportExport/Test/Constraint/AssertProductAttributeAbsenceForExport.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ImportExport/Test/Fixture/ExportData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ImportExport/Test/Fixture/ExportData/DataExport.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ImportExport/Test/Fixture/Import/File.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ImportExport/Test/Fixture/ImportData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ImportExport/Test/Page/Adminhtml/AdminExportIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ImportExport/Test/Page/Adminhtml/AdminImportIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ImportExport/Test/Repository/ExportData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ImportExport/Test/TestCase/ImportDataNegativeTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ImportExport/Test/TestCase/ImportDataTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ImportExport/Test/TestCase/NavigateMenuTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ImportExport/Test/TestStep/ChangeCurrencyOnCustomWebsiteStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ImportExport/Test/TestStep/CheckResultMessageStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ImportExport/Test/TestStep/ClickCheckDataStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ImportExport/Test/TestStep/ClickImportDataStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ImportExport/Test/TestStep/FillImportFormStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ImportExport/Test/TestStep/OpenImportIndexStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ImportExport/Test/etc/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ImportExport/Test/etc/testcase.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Indexer/Test/Block/Adminhtml/IndexManagement/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Indexer/Test/Constraint/AssertIndexerStatus.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Indexer/Test/Constraint/AssertUpdateByScheduleSuccessSaveMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Indexer/Test/Page/Adminhtml/IndexManagement.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Indexer/Test/TestCase/CreateCatalogRulesIndexerTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Indexer/Test/TestCase/CreateCatalogRulesIndexerTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Indexer/Test/TestCase/NavigateMenuTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Indexer/Test/TestStep/ReindexStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Install/Test/Block/CreateAdmin.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Install/Test/Block/CreateAdmin.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Install/Test/Block/CustomizeStore.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Install/Test/Block/CustomizeStore.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Install/Test/Block/Database.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Install/Test/Block/Database.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Install/Test/Block/Devdocs.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Install/Test/Block/Install.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Install/Test/Block/Landing.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Install/Test/Block/License.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Install/Test/Block/Readiness.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Install/Test/Block/WebConfiguration.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Install/Test/Block/WebConfiguration.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Install/Test/Constraint/AssertAdminUriAutogenerated.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Install/Test/Constraint/AssertAgreementTextPresent.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Install/Test/Constraint/AssertCurrencySelected.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Install/Test/Constraint/AssertDevdocsLink.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Install/Test/Constraint/AssertGenerationFilePathCheck.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Install/Test/Constraint/AssertKeyCreated.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Install/Test/Constraint/AssertLanguageSelected.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Install/Test/Constraint/AssertRewritesEnabled.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Install/Test/Constraint/AssertSecureUrlEnabled.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Install/Test/Constraint/AssertSuccessInstall.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Install/Test/Constraint/AssertSuccessfulReadinessCheck.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Install/Test/Fixture/Install.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Install/Test/Page/DevdocsInstall.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Install/Test/Page/Install.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Install/Test/TestCase/InstallTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Install/Test/TestCase/InstallTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Install/Test/etc/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Integration/Test/Block/Adminhtml/Integration/Edit/IntegrationForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Integration/Test/Block/Adminhtml/Integration/Edit/IntegrationForm.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Integration/Test/Block/Adminhtml/Integration/Edit/IntegrationFormPageActions.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Integration/Test/Block/Adminhtml/Integration/Edit/Tab/Api.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Integration/Test/Block/Adminhtml/Integration/IntegrationGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Integration/Test/Block/Adminhtml/Integration/IntegrationGrid/DeleteDialog.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Integration/Test/Block/Adminhtml/Integration/IntegrationGrid/ResourcesPopup.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Integration/Test/Block/Adminhtml/Integration/IntegrationGrid/ResourcesPopup.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Integration/Test/Block/Adminhtml/Integration/IntegrationGrid/TokensPopup.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Integration/Test/Block/Adminhtml/Integration/IntegrationGrid/TokensPopup.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Integration/Test/Constraint/AssertEmailValidationErrorGenerated.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Integration/Test/Constraint/AssertIncorrectUserPassword.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Integration/Test/Constraint/AssertIntegrationForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Integration/Test/Constraint/AssertIntegrationInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Integration/Test/Constraint/AssertIntegrationNameDuplicationErrorMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Integration/Test/Constraint/AssertIntegrationNotInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Integration/Test/Constraint/AssertIntegrationResourcesPopup.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Integration/Test/Constraint/AssertIntegrationSuccessActivationMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Integration/Test/Constraint/AssertIntegrationSuccessDeleteMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Integration/Test/Constraint/AssertIntegrationSuccessReauthorizeMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Integration/Test/Constraint/AssertIntegrationSuccessSaveMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Integration/Test/Constraint/AssertIntegrationSuccessSaveMessageNotPresent.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Integration/Test/Constraint/AssertIntegrationTokensAfterReauthorize.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Integration/Test/Constraint/AssertIntegrationTokensPopup.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Integration/Test/Constraint/AssertNoAlertPopup.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Integration/Test/Fixture/Integration.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Integration/Test/Handler/Integration/Curl.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Integration/Test/Handler/Integration/IntegrationInterface.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Integration/Test/Page/Adminhtml/IntegrationIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Integration/Test/Page/Adminhtml/IntegrationNew.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Integration/Test/Repository/Integration.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Integration/Test/TestCase/ActivateIntegrationEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Integration/Test/TestCase/ActivateIntegrationEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Integration/Test/TestCase/CreateIntegrationEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Integration/Test/TestCase/CreateIntegrationEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Integration/Test/TestCase/CreateIntegrationWithDuplicatedNameTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Integration/Test/TestCase/CreateIntegrationWithDuplicatedNameTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Integration/Test/TestCase/DeleteIntegrationEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Integration/Test/TestCase/DeleteIntegrationEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Integration/Test/TestCase/NavigateMenuTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Integration/Test/TestCase/ReAuthorizeTokensIntegrationEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Integration/Test/TestCase/ReAuthorizeTokensIntegrationEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Integration/Test/TestCase/UpdateIntegrationEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Integration/Test/TestCase/UpdateIntegrationEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Integration/Test/etc/curl/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Integration/Test/etc/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/LayeredNavigation/Test/Block/Navigation.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/LayeredNavigation/Test/Constraint/AssertCategoryLayeredNavigation.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/LayeredNavigation/Test/Constraint/AssertCategorySortingOnFilteredProductList.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/LayeredNavigation/Test/Constraint/AssertFilterProductList.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/LayeredNavigation/Test/Constraint/AssertProductsCount.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/LayeredNavigation/Test/Page/Category/CatalogCategoryView.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/LayeredNavigation/Test/Repository/Category.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/LayeredNavigation/Test/Repository/ConfigData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/LayeredNavigation/Test/TestCase/FilterProductListTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/LayeredNavigation/Test/TestCase/FilterProductListTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/LayeredNavigation/Test/TestCase/ProductsCountInLayeredNavigationTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/LayeredNavigation/Test/TestCase/ProductsCountInLayeredNavigationTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Msrp/Test/Block/Product/ListProduct.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Msrp/Test/Block/Product/Map.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Msrp/Test/Block/Product/ProductList/ProductItem.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Msrp/Test/Block/Product/View.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Msrp/Test/Constraint/AssertMapOnCategoryPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Msrp/Test/Constraint/AssertMapOnProductView.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Msrp/Test/Constraint/AssertMsrpInShoppingCart.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Msrp/Test/Constraint/AssertMsrpOnCategoryPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Msrp/Test/Constraint/AssertMsrpOnProductView.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Msrp/Test/Constraint/AssertProductEditPageAdvancedPricingFields.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Msrp/Test/Page/Category/CatalogCategoryView.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Msrp/Test/Page/Product/CatalogProductView.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Msrp/Test/Repository/CatalogProductSimple.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Msrp/Test/Repository/ConfigData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Msrp/Test/Repository/ConfigurableProduct.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Msrp/Test/TestCase/ApplyMapTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Msrp/Test/TestCase/ApplyMapTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Multishipping/Test/Block/Checkout/Addresses.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Multishipping/Test/Block/Checkout/Billing.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Multishipping/Test/Block/Checkout/Link.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Multishipping/Test/Block/Checkout/Overview.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Multishipping/Test/Block/Checkout/Shipping.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Multishipping/Test/Block/Checkout/Success.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Multishipping/Test/Constraint/AssertMultishippingOrderSuccessPlacedMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Multishipping/Test/Page/CheckoutCart.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Multishipping/Test/Page/MultishippingCheckoutAddressNewShipping.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Multishipping/Test/Page/MultishippingCheckoutAddresses.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Multishipping/Test/Page/MultishippingCheckoutBilling.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Multishipping/Test/Page/MultishippingCheckoutCart.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Multishipping/Test/Page/MultishippingCheckoutLogin.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Multishipping/Test/Page/MultishippingCheckoutOverview.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Multishipping/Test/Page/MultishippingCheckoutRegister.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Multishipping/Test/Page/MultishippingCheckoutShipping.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Multishipping/Test/Page/MultishippingCheckoutSuccess.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Multishipping/Test/TestStep/FillCustomerAddressesStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Multishipping/Test/TestStep/FillShippingInformationStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Multishipping/Test/TestStep/PlaceOrderStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Multishipping/Test/TestStep/ProceedToMultipleAddressCheckoutStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Multishipping/Test/TestStep/SelectPaymentMethodStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Multishipping/Test/etc/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Newsletter/Test/Block/Adminhtml/Queue/Edit/QueueForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Newsletter/Test/Block/Adminhtml/Queue/Edit/QueueForm.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Newsletter/Test/Block/Adminhtml/Queue/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Newsletter/Test/Block/Adminhtml/Subscriber/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Newsletter/Test/Block/Adminhtml/Template/FormPageActions.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Newsletter/Test/Block/Adminhtml/Template/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Newsletter/Test/Block/Adminhtml/Template/GridPageActions.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Newsletter/Test/Block/Adminhtml/Template/Preview.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Newsletter/Test/Constraint/AssertCustomerIsSubscribedToNewsletter.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Newsletter/Test/Constraint/AssertNewsletterForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Newsletter/Test/Constraint/AssertNewsletterInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Newsletter/Test/Constraint/AssertNewsletterPreview.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Newsletter/Test/Constraint/AssertNewsletterQueue.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Newsletter/Test/Constraint/AssertNewsletterQueueForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Newsletter/Test/Constraint/AssertNewsletterQueueInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Newsletter/Test/Constraint/AssertNewsletterQueueSaveMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Newsletter/Test/Constraint/AssertNewsletterSuccessCreateMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Newsletter/Test/Fixture/Queue.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Newsletter/Test/Fixture/Queue/Stores.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Newsletter/Test/Fixture/Template.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Newsletter/Test/Handler/Template/Curl.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Newsletter/Test/Handler/Template/TemplateInterface.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Newsletter/Test/Page/Adminhtml/SubscriberIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Newsletter/Test/Page/Adminhtml/TemplateEdit.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Newsletter/Test/Page/Adminhtml/TemplateIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Newsletter/Test/Page/Adminhtml/TemplateNewIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Newsletter/Test/Page/Adminhtml/TemplatePreview.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Newsletter/Test/Page/Adminhtml/TemplateQueue.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Newsletter/Test/Page/Adminhtml/TemplateQueueIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Newsletter/Test/Repository/Customer.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Newsletter/Test/Repository/Queue.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Newsletter/Test/Repository/Template.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Newsletter/Test/TestCase/ActionNewsletterTemplateEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Newsletter/Test/TestCase/ActionNewsletterTemplateEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Newsletter/Test/TestCase/CreateNewsletterQueueTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Newsletter/Test/TestCase/CreateNewsletterQueueTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Newsletter/Test/TestCase/CreateNewsletterTemplateEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Newsletter/Test/TestCase/CreateNewsletterTemplateEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Newsletter/Test/TestCase/NavigateMenuTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Newsletter/Test/TestCase/PreviewNewsletterTemplateEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Newsletter/Test/TestCase/PreviewNewsletterTemplateEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Newsletter/Test/TestCase/UpdateNewsletterTemplateTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Newsletter/Test/TestCase/UpdateNewsletterTemplateTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Newsletter/Test/etc/curl/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/OfflinePayments/Test/Repository/ConfigData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/OfflineShipping/Test/Repository/ConfigData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/PageCache/Test/Block/Cache.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/PageCache/Test/Block/Cache/Additional.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/PageCache/Test/Block/Cache/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/PageCache/Test/Constraint/AssertCacheFlushSuccessMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/PageCache/Test/Constraint/AssertCacheInvalidateNotice.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/PageCache/Test/Constraint/AssertCacheInvalidatePopUp.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/PageCache/Test/Constraint/AssertCacheIsRefreshableAndInvalidated.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/PageCache/Test/Constraint/AssertCacheStatus.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/PageCache/Test/Constraint/AssertCategoryCaching.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/PageCache/Test/Constraint/AssertFlushStaticFilesCacheButtonVisibility.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/PageCache/Test/Page/Adminhtml/AdminCache.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/PageCache/Test/Repository/ConfigData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/PageCache/Test/TestCase/CacheInvalidationTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/PageCache/Test/TestCase/CacheInvalidationTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/PageCache/Test/TestCase/CacheStatusOnScheduledIndexingTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/PageCache/Test/TestCase/CacheStatusOnScheduledIndexingTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/PageCache/Test/TestCase/FlushAdditionalCachesTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/PageCache/Test/TestCase/FlushAdditionalCachesTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/PageCache/Test/TestCase/FlushStaticFilesCacheButtonVisibilityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/PageCache/Test/TestCase/FlushStaticFilesCacheButtonVisibilityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/PageCache/Test/etc/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Payment/Test/Block/Form/PaymentCc.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Payment/Test/Block/Form/PaymentCc.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Payment/Test/Constraint/AssertCardRequiredFields.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Payment/Test/Constraint/AssertFieldsAreActive.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Payment/Test/Constraint/AssertFieldsAreDisabled.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Payment/Test/Constraint/AssertFieldsAreEnabled.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Payment/Test/Constraint/AssertFieldsArePresent.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Payment/Test/Fixture/CreditCard.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Payment/Test/Page/CheckoutOnepage.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Payment/Test/Repository/CreditCard.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Payment/Test/TestCase/ConflictResolutionTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Payment/Test/TestCase/ConflictResolutionTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Payment/Test/etc/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Payment/Test/etc/fixture.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Express/Review.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Express/Review/ShippingoptgroupElement.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Form/HostedPro/Cc.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Form/HostedPro/Cc.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Form/PayflowLink/Cc.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Form/PayflowLink/Cc.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Form/PaymentsAdvanced/Cc.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Form/PaymentsAdvanced/Cc.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Onepage/Payment/HostedPro.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Onepage/Payment/PayflowLink.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Onepage/Payment/PaymentsAdvanced.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Onepage/Payment/PaypalIframe.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Sandbox/ExpressLogin.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Sandbox/ExpressLogin.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Sandbox/ExpressMainLogin.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Sandbox/ExpressMainReview.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Sandbox/ExpressOldLogin.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Sandbox/ExpressOldLogin.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Sandbox/ExpressOldReview.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Sandbox/ExpressReview.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Sandbox/SignupAddCard.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Sandbox/SignupAddCard.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Sandbox/SignupCreate.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Sandbox/SignupCreate.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Sandbox/SignupPersonalAccount.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Sandbox/SignupPersonalAccount.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/Block/System/Config/ExpressCheckout.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/Block/System/Config/PayflowLink.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/Block/System/Config/PayflowPro.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/Block/System/Config/PaymentsAdvanced.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/Block/System/Config/PaymentsPro.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/Constraint/AssertExpressCancelledMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/Constraint/Sandbox/AssertTotalPaypalReview.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/Fixture/SandboxCustomer.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/Page/Adminhtml/SystemConfigEditSectionPayment.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/Page/CheckoutOnepage.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/Page/OrderReviewExpress.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/Page/Sandbox/AccountSignup.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/Page/Sandbox/ExpressReview.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/Page/Sandbox/SignupAddCard.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/Page/Sandbox/SignupCreate.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/Repository/ConfigData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/Repository/CreditCard.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/Repository/SandboxCustomer.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/CloseOrderTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/CloseSalesWithHostedProTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/CloseSalesWithHostedProTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/CreateOnlineCreditMemoPayflowLinkTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/CreateOnlineCreditMemoPayflowLinkTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/CreateOnlineCreditMemoTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/CreatePayFlowOrderBackendNegativeTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/CreatePayFlowOrderBackendNegativeTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/CreateVaultOrderBackendTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/ExpressCheckoutFromProductPageTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/ExpressCheckoutFromProductPageTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/ExpressCheckoutFromShoppingCartTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/ExpressCheckoutFromShoppingCartTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/ExpressCheckoutOnePageTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/ExpressCheckoutOnePageTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/InContextExpressCheckoutFromShoppingCartTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/InContextExpressCheckoutFromShoppingCartTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/InContextExpressOnePageCheckoutTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/InContextExpressOnePageCheckoutTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/NavigateMenuTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/OnePageCheckoutDeclinedTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/OnePageCheckoutHostedProTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/OnePageCheckoutHostedProTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/OnePageCheckoutPayflowLinkTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/OnePageCheckoutPayflowLinkTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/OnePageCheckoutPaymentsAdvancedTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/OnePageCheckoutPaymentsAdvancedTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/OnePageCheckoutTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/ReorderUsingVaultTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/UseVaultOnCheckoutTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/CheckExpressConfigStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/CheckPayflowLinkConfigStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/CheckPayflowProConfigStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/CheckPaymentsAdvancedConfigStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/CheckPaymentsProConfigStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/CheckoutWithPaypalFromProductPageStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/CheckoutWithPaypalFromShoppingCartStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/ContinuePaypalCheckoutStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/ContinueToPaypalInContextStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/ContinueToPaypalStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/CreateSandboxCustomerStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/ExpressCheckoutOrderPlaceStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/InContextCheckoutWithPaypalFromShoppingCartStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/PlaceOrderWithHostedProStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/PlaceOrderWithPayflowLinkStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/PlaceOrderWithPaymentsAdvancedStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/etc/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Paypal/Test/etc/testcase.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Persistent/Test/Constraint/AssertCustomerIsRedirectedToCheckout.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Persistent/Test/Repository/ConfigData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Persistent/Test/TestCase/CheckoutWithPersistentShoppingCartTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Persistent/Test/TestCase/CheckoutWithPersistentShoppingCartTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ProductVideo/Test/TestCase/AddProductVideoTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ProductVideo/Test/TestCase/AddProductVideoTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ProductVideo/Test/TestCase/ConfigurableProductVideoTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ProductVideo/Test/TestCase/ConfigurableProductVideoTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ProductVideo/Test/TestCase/DeleteProductVideoTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ProductVideo/Test/TestCase/DeleteProductVideoTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ProductVideo/Test/TestCase/UpdateProductVideoTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ProductVideo/Test/TestCase/UpdateProductVideoTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ProductVideo/Test/etc/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ReleaseNotification/Test/Block/Adminhtml/Dashboard/ReleaseNotification/ReleaseNotificationBlock.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ReleaseNotification/Test/Constraint/AssertLoginAgainAfterFlushCacheReleaseNotificationPopupExist.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ReleaseNotification/Test/Constraint/AssertLoginAgainReleaseNotificationPopupNotExist.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ReleaseNotification/Test/Constraint/AssertReleaseNotificationPopupExist.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ReleaseNotification/Test/Page/Adminhtml/Dashboard.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ReleaseNotification/Test/TestCase/NotificationTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ReleaseNotification/Test/TestCase/NotificationTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/ReleaseNotification/Test/etc/testcase.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/AbstractFilter.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Customer/AccountsGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Customer/Counts/Filter.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Customer/Counts/Filter.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Customer/Counts/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Customer/Totals/Filter.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Customer/Totals/Filter.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Customer/Totals/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Product/Downloads/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Product/Lowstock/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Product/Sold/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Product/Viewed/Filter.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Product/Viewed/Filter.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Product/Viewed/ProductGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Refresh/Statistics/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Review/Customer/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Review/Products/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Review/Products/Viewed/Filter.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Review/Products/Viewed/Filter.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Review/Products/Viewed/ProductGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Sales/Coupons/Action.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Sales/Coupons/Filter.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Sales/Coupons/Filter.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Sales/Coupons/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Sales/Invoiced/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Sales/Orders/Viewed/FilterGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Sales/Refunded/FilterGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Sales/Shipping/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Sales/TaxRule/Action.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Sales/TaxRule/Filter.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Sales/TaxRule/Filter.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Sales/TaxRule/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/SearchTermsGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Shopcart/Abandoned/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Shopcart/Product/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Viewed/Action.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AbstractAssertCustomerOrderReportResult.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AbstractAssertInvoiceReportResult.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AbstractAssertSalesReportResult.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AbstractAssertShippingReportResult.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertAbandonedCartCustomerInfoResult.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertBestsellerReportResult.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertCouponReportResult.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertCustomerOrderCountReportResult.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertCustomerOrderTotalReportResult.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertDownloadsReportResult.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertInvoiceReportIntervalResult.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertInvoiceReportTotalResult.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertLifetimeStatisticsUpdatedMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertLowStockProductInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertNewAccountsReportTotalResult.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertOrderedProductReportForConfigurableProduct.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertOrderedProductResult.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertProductInCartResult.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertProductReportByCustomerInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertProductReportByCustomerNotInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertProductReviewIsAvailableForProduct.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertProductReviewReportIsVisibleInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertProductReviewsQtyByCustomer.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertProductViewsReportTotalResult.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertRecentStatisticsUpdatedMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertRefundReportIntervalResult.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertReportStatisticsNoticeMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertReportsUpdatedTimezone.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertSalesReportIntervalResult.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertSalesReportTotalResult.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertSearchTermReportForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertSearchTermsInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertShippingReportIntervalResult.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertShippingReportTotalResult.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertTaxReportInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertTaxReportNotInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/AbandonedCarts.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/Bestsellers.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/CustomerAccounts.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/CustomerOrdersReport.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/CustomerReportReview.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/CustomerTotalsReport.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/DownloadsReport.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/OrderedProductsReport.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/ProductLowStock.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/ProductReportReview.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/ProductReportView.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/RefundsReport.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/SalesCouponReportView.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/SalesInvoiceReport.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/SalesReport.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/SalesShippingReport.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/SalesTaxReport.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/SearchIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/ShopCartProductReport.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/Statistics.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/Repository/ConfigData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/AbandonedCartsReportEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/AbandonedCartsReportEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/BestsellerProductsReportEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/BestsellerProductsReportEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/CustomersOrderCountReportEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/CustomersOrderCountReportEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/CustomersOrderTotalReportEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/CustomersOrderTotalReportEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/DownloadProductsReportEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/DownloadProductsReportEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/LowStockProductsReportEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/LowStockProductsReportEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/NavigateMenuTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/NewAccountsReportEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/NewAccountsReportEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/OrderedProductsReportEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/OrderedProductsReportEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/ProductsInCartReportEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/ProductsInCartReportEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/RefreshReportsStatisticsTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/RefreshReportsStatisticsTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/ReviewReportEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/ReviewReportEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/SalesCouponReportEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/SalesCouponReportEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/SalesInvoiceReportEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/SalesInvoiceReportEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/SalesOrderReportEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/SalesOrderReportEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/SalesRefundsReportEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/SalesRefundsReportEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/SalesTaxReportEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/SalesTaxReportEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/SearchTermsReportEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/SearchTermsReportEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/ViewedProductsReportEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/ViewedProductsReportEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Reports/Test/etc/testcase.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Block/Adminhtml/Customer/Edit/Tab/Reviews.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Block/Adminhtml/Edit/CustomerForm.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Block/Adminhtml/Edit/Product/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Block/Adminhtml/Edit/RatingElement.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Block/Adminhtml/FormPageActions.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Block/Adminhtml/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Block/Adminhtml/Product/Edit/Section/Reviews.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Block/Adminhtml/Product/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Block/Adminhtml/Product/ProductForm.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Block/Adminhtml/Rating/Edit/RatingForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Block/Adminhtml/Rating/Edit/RatingForm.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Block/Adminhtml/Rating/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Block/Adminhtml/ReviewForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Block/Adminhtml/ReviewForm.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Block/Product/View.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Block/Product/View/Summary.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Block/ReviewForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Block/ReviewForm.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductRatingInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductRatingInProductPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductRatingNotInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductRatingNotInProductPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductRatingOnReviewPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductRatingSuccessDeleteMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductRatingSuccessSaveMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductReviewBackendSuccessSaveMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductReviewForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductReviewInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductReviewInGridOnCustomerPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductReviewIsAbsentOnProductPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductReviewMassActionSuccessDeleteMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductReviewMassActionSuccessMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductReviewNotInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductReviewNotOnProductPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductReviewOnProductPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertReviewCreationSuccessMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertReviewLinksIsPresentOnProductPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertReviewSuccessSaveMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertSetApprovedProductReview.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Fixture/Rating.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Fixture/Review.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Fixture/Review/EntityId.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Fixture/Review/Ratings.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Handler/Rating/Curl.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Handler/Rating/RatingInterface.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Handler/Review/Curl.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Handler/Review/ReviewInterface.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Page/Adminhtml/RatingEdit.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Page/Adminhtml/RatingIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Page/Adminhtml/RatingNew.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Page/Adminhtml/ReviewEdit.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Page/Adminhtml/ReviewIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Page/Product/CatalogProductView.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Repository/Rating.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/Repository/Review.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/TestCase/CreateProductRatingEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/TestCase/CreateProductRatingEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/TestCase/CreateProductReviewBackendEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/TestCase/CreateProductReviewBackendEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/TestCase/CreateProductReviewFrontendEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/TestCase/CreateProductReviewFrontendEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/TestCase/DeleteProductRatingEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/TestCase/DeleteProductRatingEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/TestCase/ManageProductReviewFromCustomerPageTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/TestCase/ManageProductReviewFromCustomerPageTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/TestCase/MassActionsProductReviewEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/TestCase/MassActionsProductReviewEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/TestCase/ModerateProductReviewEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/TestCase/ModerateProductReviewEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/TestCase/NavigateMenuTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/TestCase/UpdateProductReviewEntityOnProductPageTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/TestCase/UpdateProductReviewEntityOnProductPageTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/TestCase/UpdateProductReviewEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/TestCase/UpdateProductReviewEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/etc/curl/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Review/Test/etc/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/CreditMemo/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Invoice/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/AbstractForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/AbstractForm/Product.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/AbstractItems.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/AbstractItemsNewBlock.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Actions.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Billing/Address.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Billing/Address.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Billing/Method.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Coupons.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Customer.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/CustomerActivities.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/CustomerActivities/Sidebar.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/CustomerActivities/Sidebar/LastOrderedItems.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/CustomerActivities/Sidebar/ProductsInComparison.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/CustomerActivities/Sidebar/RecentlyComparedProducts.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/CustomerActivities/Sidebar/RecentlyViewedItems.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/CustomerActivities/Sidebar/RecentlyViewedProducts.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/CustomerActivities/Sidebar/ShoppingCartItems.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/CustomerActivities/Sidebar/Wishlist.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Form/Account.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Form/Account.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Items.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Items/ItemProduct.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Items/ItemProduct.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Search/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Shipping/Address.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Shipping/Address.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Shipping/Method.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Sidebar.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Store.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Totals.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Creditmemo/Form.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Creditmemo/Form.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Creditmemo/Form/Items.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Creditmemo/Form/Items/Product.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Creditmemo/Form/Items/Product.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Creditmemo/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Creditmemo/Totals.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Creditmemo/View/Items.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Invoice/Form.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Invoice/Form.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Invoice/Form/Items.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Invoice/Form/Items/Product.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Invoice/Form/Items/Product.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Invoice/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Invoice/Totals.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Invoice/View/Items.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Shipment/Totals.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Shipment/View/Items.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Status/Assign/AssignForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Status/Assign/AssignForm.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Status/GridPageActions.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/StatusGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Totals.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Transactions/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/Addresses.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/Info.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/Items.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/OrderForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/OrderForm.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/Tab/CreditMemos.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/Tab/CreditMemos/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/Tab/Info.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/Tab/Info/CommentsHistoryBlock.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/Tab/Info/PaymentInfoBlock.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/Tab/Info/ShippingInfoBlock.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/Tab/Invoices.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/Tab/Invoices/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/Tab/Shipments.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/Tab/Shipments/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/Tab/Transactions.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/Tab/Transactions/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Report/Filter/Form.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Report/Filter/Form.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Order/History.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Order/Info.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Order/Items.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Order/View.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Widget/Guest/Form.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Block/Widget/Guest/Form.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AbstractAssertItems.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AbstractAssertOrderOnFrontend.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertAcceptPaymentMessageInCommentsHistory.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertAcceptPaymentSuccessMessagePresent.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertAuthorizationInCommentsHistory.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertCancelInCommentsHistory.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertCaptureInCommentsHistory.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertCartSectionIsEmptyOnBackendOrderPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertCartSectionWithProductsOnBackendOrderPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertCreditMemoButton.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertCreditMemoItems.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertDenyPaymentMessageInCommentsHistory.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertDenyPaymentSuccessMessagePresent.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertInvoiceInInvoicesGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertInvoiceInInvoicesTab.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertInvoiceItems.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertInvoiceNotInInvoicesGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertInvoiceStatusInOrdersGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertInvoiceSuccessCreateMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertInvoiceWithShipmentSuccessMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertInvoicedAmountOnFrontend.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertInvoicedOrderOnDashboard.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertItemsOrderedSectionContainsProducts.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertItemsOrderedSectionOnBackendOrderIsEmpty.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertNoCreditMemoButton.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertNoInvoiceButton.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOnlineInvoiceCannotBeCreated.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderAddresses.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderBillingAndShippingAddressesAreDifferent.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderButtonsAvailable.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderButtonsUnavailable.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderByDateInOrdersGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderCancelMassActionFailMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderCancelMassActionSuccessMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderCancelSuccessMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderCommentsHistoryNotifyStatus.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderGrandTotal.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderGraphImageIsVisible.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderInOrdersGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderInOrdersGridOnFrontend.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderItemsPagerDisplayedOnFrontend.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderItemsPagerHiddenOnFrontend.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderMassOnHoldSuccessMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderNotInOrdersGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderNotVisibleOnMyAccount.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderOnHoldFailMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderOnHoldSuccessMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderPaymentInformation.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderReleaseFailMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderReleaseSuccessMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderStatusDuplicateStatus.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderStatusInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderStatusIsCanceled.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderStatusIsCorrect.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderStatusNotAssigned.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderStatusSuccessAssignMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderStatusSuccessCreateMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderStatusSuccessUnassignMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderSuccessCreateMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderSuccessVoidedMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderTotalPaid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrdersInOrdersGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertProductInCustomerShoppingCartOnBackendGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertProductInItemsOrderedGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertProductQtyDecreased.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertProductQtyDecreasedAfterCreditmemo.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertProductsQtyAfterOrderCancel.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertRefundInCommentsHistory.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertRefundInCreditMemoTab.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertRefundInRefundsGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertRefundNotInRefundsGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertRefundOrderStatusInCommentsHistory.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertRefundSuccessCreateMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertRefundedGrandTotalOnFrontend.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertReorderButtonIsNotVisibleOnFrontend.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertReorderStatusIsCorrect.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertSalesPrintOrderBillingAddress.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertSalesPrintOrderGrandTotal.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertSalesPrintOrderPaymentMethod.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertSalesPrintOrderProducts.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertTransactionStatus.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertUnholdButton.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertVoidInCommentsHistory.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Fixture/OrderInjectable.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Fixture/OrderInjectable/BillingAddressId.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Fixture/OrderInjectable/CouponCode.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Fixture/OrderInjectable/CustomerId.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Fixture/OrderInjectable/EntityId.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Fixture/OrderInjectable/StoreId.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Fixture/OrderStatus.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Handler/OrderInjectable/Curl.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Handler/OrderInjectable/OrderInjectableInterface.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Handler/OrderInjectable/Webapi.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Handler/OrderStatus/Curl.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Handler/OrderStatus/OrderStatusInterface.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Page/Adminhtml/CreditMemoIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Page/Adminhtml/InvoiceIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Page/Adminhtml/OrderCreateIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Page/Adminhtml/OrderCreditMemoNew.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Page/Adminhtml/OrderIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Page/Adminhtml/OrderInvoiceNew.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Page/Adminhtml/OrderInvoiceView.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Page/Adminhtml/OrderStatusAssign.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Page/Adminhtml/OrderStatusEdit.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Page/Adminhtml/OrderStatusIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Page/Adminhtml/OrderStatusNew.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Page/Adminhtml/SalesCreditMemoView.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Page/Adminhtml/SalesInvoiceView.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Page/Adminhtml/SalesOrderView.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Page/CreditMemoView.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Page/CustomerOrderView.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Page/InvoiceView.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Page/OrderHistory.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Page/SalesGuestForm.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Page/SalesGuestPrint.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Page/SalesGuestView.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Page/SalesOrderShipmentNew.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Repository/ConfigData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Repository/OrderInjectable.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Repository/OrderInjectable/Invoice.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Repository/OrderInjectable/Price.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/Repository/OrderStatus.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/AssignCustomOrderStatusTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/AssignCustomOrderStatusTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CancelCreatedOrderTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CancelCreatedOrderTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CloseOrderTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CreateCreditMemoEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CreateCreditMemoEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CreateCustomOrderStatusEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CreateCustomOrderStatusEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CreateInvoiceEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CreateInvoiceEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CreateOnlineCreditMemoTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CreateOnlineInvoiceEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CreateOrderBackendPartOneTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CreateOrderBackendPartOneTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CreateOrderBackendTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CreateOrderBackendTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CreateOrderFromEditCustomerPageTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CreateOrderFromEditCustomerPageTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/FrontendOrderPagerTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/FrontendOrderPagerTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/GridFilteringTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/GridFullTextSearchTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/GridSortingTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/HoldCreatedOrderTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/HoldCreatedOrderTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/MassOrdersUpdateTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/MassOrdersUpdateTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/MoveLastOrderedProductsOnOrderPageTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/MoveLastOrderedProductsOnOrderPageTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/MoveProductsInComparedOnOrderPageTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/MoveProductsInComparedOnOrderPageTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/MoveRecentlyComparedProductsOnOrderPageTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/MoveRecentlyComparedProductsOnOrderPageTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/MoveRecentlyViewedProductsOnOrderPageTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/MoveRecentlyViewedProductsOnOrderPageTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/MoveShoppingCartProductsOnOrderPageTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/MoveShoppingCartProductsOnOrderPageTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/NavigateMenuTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/PrintOrderFrontendGuestTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/PrintOrderFrontendGuestTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/ReorderOrderEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/ReorderOrderEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/UnassignCustomOrderStatusTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/UnassignCustomOrderStatusTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/UpdateCustomOrderStatusTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/UpdateCustomOrderStatusTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/VoidAuthorizationTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/AcceptPaymentStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/AddProductsStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/AddRecentlyViewedProductsToCartStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/CancelOrderStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/ConfigureProductsStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/CreateCreditMemoStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/CreateInvoiceStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/CreateNewOrderStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/CreateOnlineCreditMemoStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/CreateOrderStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/CreateShipmentStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/DenyPaymentStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/FillAccountInformationStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/FillBillingAddressStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/FillShippingAddressStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/GetPaymentUpdateStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/OnHoldStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/OpenOrderStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/OpenSalesOrderOnFrontendForGuestStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/OpenSalesOrdersStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/PrintOrderOnFrontendStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/ReorderStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/SelectCustomerOrderStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/SelectPaymentMethodForOrderStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/SelectShippingMethodForOrderStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/SelectStoreStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/SubmitOrderNegativeStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/SubmitOrderStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/SubmitOrderWithoutAdditionalInfoStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/UnholdOrderStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/UpdateProductsDataStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/Utils/CompareQtyTrait.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/VoidAuthorizationStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/etc/curl/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/etc/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/etc/testcase.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sales/Test/etc/webapi/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/Block/Adminhtml/Promo/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/Block/Adminhtml/Promo/Quote/Edit/PromoQuoteForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/Block/Adminhtml/Promo/Quote/Edit/PromoQuoteForm.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/Block/Adminhtml/Promo/Quote/Edit/Section/Conditions.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/Block/Adminhtml/Promo/Quote/Edit/Section/Labels.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/Block/Adminhtml/Promo/Quote/Edit/Section/ManageCouponCode.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/Block/Adminhtml/Promo/Quote/Edit/Section/RuleInformation.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/Block/Order/Items.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/Block/Order/View.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/Constraint/AssertCartPriceRuleApplying.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/Constraint/AssertCartPriceRuleConditionIsApplied.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/Constraint/AssertCartPriceRuleConditionIsNotApplied.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/Constraint/AssertCartPriceRuleForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/Constraint/AssertCartPriceRuleFreeShippingIsApplied.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/Constraint/AssertCartPriceRuleIsNotPresentedInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/Constraint/AssertCartPriceRuleSuccessDeleteMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/Constraint/AssertCartPriceRuleSuccessSaveMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/Constraint/AssertSalesRuleOnPrintOrder.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/Fixture/SalesRule.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/Fixture/SalesRule/ConditionsSerialized.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/Handler/SalesRule/Curl.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/Handler/SalesRule/SalesRuleInterface.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/Handler/SalesRule/Webapi.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/Page/Adminhtml/PromoQuoteEdit.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/Page/Adminhtml/PromoQuoteIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/Page/Adminhtml/PromoQuoteNew.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/Page/SalesGuestPrint.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/Repository/ConfigData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/Repository/SalesRule.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/ApplySeveralSalesRuleEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/ApplySeveralSalesRuleEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/CreateSalesRuleEntityPartOneTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/CreateSalesRuleEntityPartOneTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/CreateSalesRuleEntityPartTwoTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/CreateSalesRuleEntityPartTwoTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/CreateSalesRuleEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/CreateSalesRuleEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/DeleteSalesRuleEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/DeleteSalesRuleEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/NavigateMenuTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/OnePageCheckoutPaymentMethodDataPersistenceWithDiscountTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/OnePageCheckoutWithDiscountTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/ShoppingCartWithFreeShippingAndFlatRateTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/ShoppingCartWithFreeShippingAndFlatRateTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/ShoppingCartWithFreeShippingTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/ShoppingCartWithFreeShippingTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/UpdateSalesRuleEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/UpdateSalesRuleEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/TestStep/ApplySalesRuleOnBackendStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/TestStep/ApplySalesRuleOnCheckoutStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/TestStep/ApplySalesRuleOnFrontendStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/TestStep/CreateSalesRuleStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/TestStep/CreateSalesRuleThroughAdminStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/TestStep/DeleteAllSalesRuleStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/TestStep/DeleteSalesRulesStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/etc/curl/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/etc/testcase.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/SalesRule/Test/etc/webapi/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Search/Test/Block/Adminhtml/Block/Edit/SynonymGroupForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Search/Test/Block/Adminhtml/Block/Edit/SynonymGroupForm.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Search/Test/Block/Adminhtml/Block/SynonymGroupGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Search/Test/Constraint/AssertSynonymGroupDeleteMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Search/Test/Constraint/AssertSynonymGroupInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Search/Test/Constraint/AssertSynonymGroupSuccessSaveMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Search/Test/Constraint/AssertSynonymGroupsSearch.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Search/Test/Constraint/AssertSynonymMergeErrorMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Search/Test/Constraint/AssertSynonymRestrictedAccess.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Search/Test/Fixture/SynonymGroup.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Search/Test/Fixture/SynonymGroup/ScopeId.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Search/Test/Handler/SynonymGroup/Curl.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Search/Test/Handler/SynonymGroup/SynonymGroupInterface.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Search/Test/Page/Adminhtml/SynonymGroupIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Search/Test/Page/Adminhtml/SynonymGroupNew.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Search/Test/Repository/SynonymGroup.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Search/Test/TestCase/AdvancedSearchWithAttributeTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Search/Test/TestCase/AdvancedSearchWithAttributeTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Search/Test/TestCase/CreateMultipleSynonymGroupsTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Search/Test/TestCase/CreateMultipleSynonymGroupsTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Search/Test/TestCase/CreateSynonymGroupEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Search/Test/TestCase/CreateSynonymGroupEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Search/Test/TestCase/CustomAclPermissionTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Search/Test/TestCase/MergeSynonymGroupEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Search/Test/TestCase/MergeSynonymGroupEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Search/Test/TestCase/UpdateSynonymGroupEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Search/Test/TestCase/UpdateSynonymGroupEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Search/Test/TestStep/DeleteAllSynonymGroupsStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Search/Test/etc/curl/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Search/Test/etc/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Security/Test/Block/Form/ForgotPassword.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Security/Test/Block/Form/ForgotPassword.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Security/Test/Constraint/AssertCustomerEmailChanged.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Security/Test/Constraint/AssertCustomerIsLocked.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Security/Test/Constraint/AssertCustomerPasswordRequiredClasses.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Security/Test/Constraint/AssertCustomerResetPasswordFailed.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Security/Test/Constraint/AssertDefaultAccountInformation.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Security/Test/Constraint/AssertPasswordIsNotSecureEnoughMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Security/Test/Constraint/AssertPasswordLengthErrorMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Security/Test/Constraint/AssertUserIsLocked.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Security/Test/Constraint/AssertUserPasswordResetFailed.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Security/Test/Page/UserAccountForgotPassword.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Security/Test/Repository/ConfigData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Security/Test/TestCase/LockAdminUserWhenCreatingNewIntegrationTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Security/Test/TestCase/LockAdminUserWhenCreatingNewIntegrationTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Security/Test/TestCase/LockAdminUserWhenCreatingNewRoleTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Security/Test/TestCase/LockAdminUserWhenCreatingNewRoleTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Security/Test/TestCase/LockAdminUserWhenCreatingNewUserTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Security/Test/TestCase/LockAdminUserWhenCreatingNewUserTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Security/Test/TestCase/LockAdminUserWhenEditingIntegrationTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Security/Test/TestCase/LockAdminUserWhenEditingIntegrationTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Security/Test/TestCase/LockAdminUserWhenEditingRoleTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Security/Test/TestCase/LockAdminUserWhenEditingRoleTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Security/Test/TestCase/LockAdminUserWhenEditingUserTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Security/Test/TestCase/LockAdminUserWhenEditingUserTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Security/Test/TestCase/LockCustomerOnEditPageTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Security/Test/TestCase/LockCustomerOnEditPageTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Security/Test/TestCase/LockCustomerOnLoginPageTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Security/Test/TestCase/LockCustomerOnLoginPageTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Security/Test/TestCase/NewCustomerPasswordComplexityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Security/Test/TestCase/NewCustomerPasswordComplexityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Security/Test/TestCase/RegisterCustomerEntityWithDifferentPasswordClassesTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Security/Test/TestCase/RegisterCustomerEntityWithDifferentPasswordClassesTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Security/Test/TestCase/ResetCustomerPasswordFailedTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Security/Test/TestCase/ResetCustomerPasswordFailedTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Security/Test/TestCase/ResetUserPasswordFailedTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Security/Test/TestCase/ResetUserPasswordFailedTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Security/Test/TestCase/SecureChangingCustomerEmailTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Security/Test/TestCase/SecureChangingCustomerEmailTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Security/Test/TestCase/SecureChangingCustomerPasswordTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Security/Test/TestCase/SecureChangingCustomerPasswordTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Security/Test/etc/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/Block/Authentication.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/Block/Authentication.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/Block/CreateBackup.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/Block/CreateBackup.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/Block/Extension/AbstractGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/Block/Extension/DataOption.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/Block/Extension/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/Block/Extension/InstallGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/Block/Extension/UpdateGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/Block/Extension/Updater.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/Block/Home.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/Block/Module/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/Block/Module/Status.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/Block/Readiness.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/Block/SelectVersion.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/Block/SelectVersion.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/Block/SelectVersion/OtherComponentsGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/Block/SelectVersion/OtherComponentsGrid/Item.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/Block/SuccessMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/Block/SystemConfig.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/Block/SystemUpgrade.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/Constraint/AssertApplicationVersion.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/Constraint/AssertSuccessMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/Constraint/AssertSuccessfulReadinessCheck.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/Constraint/AssertVersionAndEditionCheck.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/Constraint/Extension/AssertExtensionAndVersionCheck.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/Constraint/Extension/AssertFindExtensionOnGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/Constraint/Extension/AssertMultipleExtensionAndVersionCheck.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/Constraint/Extension/AssertMultipleSuccessMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/Constraint/Extension/AssertSelectSeveralExtensions.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/Constraint/Extension/AssertSuccessMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/Constraint/Extension/AssertVersionOnGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/Constraint/Module/AssertModuleInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/Constraint/Module/AssertSuccessMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/Fixture/BackupOptions.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/Fixture/Extension.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/Fixture/Module.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/Fixture/RepoCredentials.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/Fixture/Upgrade.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/Page/Adminhtml/SetupWizard.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/Repository/BackupOptions.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/Repository/Extension.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/Repository/RepoCredentials.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/TestCase/AbstractExtensionTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/TestCase/EnableDisableModuleTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/TestCase/EnableDisableModuleTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/TestCase/ExtensionMultipleTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/TestCase/ExtensionMultipleTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/TestCase/ExtensionMultipleUpdateTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/TestCase/ExtensionMultipleUpdateTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/TestCase/ExtensionTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/TestCase/ExtensionTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/TestCase/UpgradeSystemTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Setup/Test/TestCase/UpgradeSystemTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Shipping/Test/Block/Adminhtml/Form.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Shipping/Test/Block/Adminhtml/Form.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Shipping/Test/Block/Adminhtml/Form/Items.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Shipping/Test/Block/Adminhtml/Form/Items/Product.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Shipping/Test/Block/Adminhtml/Form/Items/Product.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Shipping/Test/Block/Adminhtml/Order/Tracking.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Shipping/Test/Block/Adminhtml/Order/Tracking/Item.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Shipping/Test/Block/Adminhtml/Order/Tracking/Item.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Shipping/Test/Block/Adminhtml/Order/TrackingInfoTable.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Shipping/Test/Block/Adminhtml/Shipment/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Shipping/Test/Block/Adminhtml/View/Items.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Shipping/Test/Block/Order/Info.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Shipping/Test/Block/Order/Shipment.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Shipping/Test/Block/Order/Shipment/Items.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Shipping/Test/Constraint/AssertCityBasedShippingRateChanged.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Shipping/Test/Constraint/AssertNoShipButton.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Shipping/Test/Constraint/AssertShipTotalQuantity.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Shipping/Test/Constraint/AssertShipmentInShipmentsGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Shipping/Test/Constraint/AssertShipmentInShipmentsTab.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Shipping/Test/Constraint/AssertShipmentItems.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Shipping/Test/Constraint/AssertShipmentNotInShipmentsGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Shipping/Test/Constraint/AssertShipmentSuccessCreateMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Shipping/Test/Constraint/AssertShippingMethodOnPrintOrder.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Shipping/Test/Constraint/AssertTrackingDetailsIsPresent.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Shipping/Test/Fixture/Method.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Shipping/Test/Page/Adminhtml/OrderShipmentNew.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Shipping/Test/Page/Adminhtml/OrderShipmentView.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Shipping/Test/Page/Adminhtml/SalesShipmentView.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Shipping/Test/Page/Adminhtml/ShipmentIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Shipping/Test/Page/SalesGuestPrint.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Shipping/Test/Page/ShipmentView.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Shipping/Test/Repository/ConfigData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Shipping/Test/Repository/Method.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Shipping/Test/TestCase/CityBasedShippingRateTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Shipping/Test/TestCase/CreateShipmentEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Shipping/Test/TestCase/CreateShipmentEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Shipping/Test/TestCase/SalesShippingReportEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Shipping/Test/TestCase/SalesShippingReportEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Shipping/Test/TestCase/TrackingShipmentForPlacedOrderTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Shipping/Test/TestCase/TrackingShipmentForPlacedOrderTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Shipping/Test/TestStep/AddTrackingNumberStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Shipping/Test/TestStep/FillShippingAddressesStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Shipping/Test/etc/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Shipping/Test/etc/testcase.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Signifyd/Test/Block/Adminhtml/Order/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Signifyd/Test/Block/Adminhtml/Order/View/FraudProtection.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Signifyd/Test/Block/SignifydConsole/CaseInfo.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Signifyd/Test/Block/SignifydConsole/CaseSearch.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Signifyd/Test/Block/SignifydConsole/SignifydLogin.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Signifyd/Test/Block/SignifydConsole/Webhooks.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Signifyd/Test/Constraint/AssertAwaitingSignifydGuaranteeInCommentsHistory.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Signifyd/Test/Constraint/AssertCaseInfoOnAdmin.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Signifyd/Test/Constraint/AssertCaseInfoOnSignifydConsole.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Signifyd/Test/Constraint/AssertSignifydCaseInCommentsHistory.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Signifyd/Test/Constraint/AssertSignifydCaseInOrdersGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Signifyd/Test/Constraint/AssertSignifydGuaranteeCancelInCommentsHistory.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Signifyd/Test/Fixture/SignifydAccount.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Signifyd/Test/Fixture/SignifydAddress.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Signifyd/Test/Fixture/SignifydAddress/Firstname.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Signifyd/Test/Fixture/SignifydData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Signifyd/Test/Page/Adminhtml/OrdersGrid.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Signifyd/Test/Page/Adminhtml/SalesOrderView.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Signifyd/Test/Page/SignifydConsole/SignifydCases.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Signifyd/Test/Page/SignifydConsole/SignifydLogin.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Signifyd/Test/Page/SignifydConsole/SignifydNotifications.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Signifyd/Test/Repository/Address.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Signifyd/Test/Repository/ConfigData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Signifyd/Test/Repository/Customer.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Signifyd/Test/Repository/SignifydAccount.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Signifyd/Test/Repository/SignifydData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Signifyd/Test/TestCase/AcceptPaymentWithSignifydGuaranteeDeclinedTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Signifyd/Test/TestCase/AcceptPaymentWithSignifydGuaranteeDeclinedTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Signifyd/Test/TestCase/CreateSignifydGuaranteeAndCancelOrderTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Signifyd/Test/TestCase/CreateSignifydGuaranteeAndCancelOrderTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Signifyd/Test/TestCase/DenyPaymentWithSignifydGuaranteeDeclinedTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Signifyd/Test/TestCase/DenyPaymentWithSignifydGuaranteeDeclinedTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Signifyd/Test/TestStep/OpenOrderGridStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Signifyd/Test/TestStep/SignifydCancelOrderStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Signifyd/Test/TestStep/SignifydCreateCustomerStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Signifyd/Test/TestStep/SignifydFillShippingAddressStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Signifyd/Test/TestStep/SignifydLoginStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Signifyd/Test/TestStep/SignifydObserveCaseStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Signifyd/Test/TestStep/SignifydSetWebhookHandlersStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Signifyd/Test/TestStep/UnholdAndCancelOrderStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Signifyd/Test/etc/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Signifyd/Test/etc/testcase.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sitemap/Test/Block/Adminhtml/SitemapGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sitemap/Test/Block/Adminhtml/SitemapPageActions.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sitemap/Test/Constraint/AssertSitemapContent.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sitemap/Test/Constraint/AssertSitemapFailFolderSaveMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sitemap/Test/Constraint/AssertSitemapFailPathSaveMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sitemap/Test/Constraint/AssertSitemapInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sitemap/Test/Constraint/AssertSitemapNotInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sitemap/Test/Constraint/AssertSitemapSubmissionToRobotsTxt.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sitemap/Test/Constraint/AssertSitemapSuccessDeleteMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sitemap/Test/Constraint/AssertSitemapSuccessGenerateMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sitemap/Test/Constraint/AssertSitemapSuccessSaveAndGenerateMessages.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sitemap/Test/Constraint/AssertSitemapSuccessSaveMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sitemap/Test/Fixture/Sitemap.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sitemap/Test/Handler/Sitemap/Curl.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sitemap/Test/Handler/Sitemap/SitemapInterface.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sitemap/Test/Page/Adminhtml/SitemapEdit.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sitemap/Test/Page/Adminhtml/SitemapIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sitemap/Test/Page/Adminhtml/SitemapNew.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sitemap/Test/Repository/ConfigData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sitemap/Test/Repository/Sitemap.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sitemap/Test/TestCase/CreateSitemapEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sitemap/Test/TestCase/CreateSitemapEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sitemap/Test/TestCase/DeleteSitemapEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sitemap/Test/TestCase/DeleteSitemapEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sitemap/Test/TestCase/GenerateSitemapEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sitemap/Test/TestCase/GenerateSitemapEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sitemap/Test/TestCase/NavigateMenuTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sitemap/Test/TestCase/UpdateSitemapEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sitemap/Test/TestCase/UpdateSitemapEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sitemap/Test/etc/curl/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Sitemap/Test/etc/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/Block/Switcher.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreBackend.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreCodeInUrl.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreDisabledErrorSaveMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreFrontend.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreGroupForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreGroupInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreGroupNoDeleteButton.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreGroupNotInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreGroupOnStoreViewForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreGroupSuccessDeleteAndBackupMessages.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreGroupSuccessDeleteMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreGroupSuccessSaveMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreNoDeleteButton.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreNotInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreNotOnFrontend.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreSuccessDeleteAndBackupMessages.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreSuccessDeleteMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreSuccessSaveMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertWebsiteForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertWebsiteInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertWebsiteNotInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertWebsiteOnStoreForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertWebsiteSuccessDeleteAndBackupMessages.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertWebsiteSuccessDeleteMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertWebsiteSuccessSaveMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/Fixture/Store.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/Fixture/Store/GroupId.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/Fixture/StoreGroup.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/Fixture/StoreGroup/CategoryId.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/Fixture/StoreGroup/WebsiteId.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/Fixture/Website.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/Handler/Store/Curl.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/Handler/Store/StoreInterface.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/Handler/StoreGroup/Curl.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/Handler/StoreGroup/StoreGroupInterface.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/Handler/Website/Curl.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/Handler/Website/WebsiteInterface.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/Repository/ConfigData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/Repository/Store.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/Repository/StoreGroup.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/Repository/Website.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/TestCase/AccessAdminWithStoreCodeInUrlTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/TestCase/AccessAdminWithStoreCodeInUrlTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/TestCase/CreateStoreEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/TestCase/CreateStoreEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/TestCase/CreateStoreGroupEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/TestCase/CreateStoreGroupEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/TestCase/CreateWebsiteEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/TestCase/CreateWebsiteEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/TestCase/DeleteStoreEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/TestCase/DeleteStoreEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/TestCase/DeleteStoreGroupEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/TestCase/DeleteStoreGroupEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/TestCase/DeleteWebsiteEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/TestCase/DeleteWebsiteEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/TestCase/MoveStoreToOtherGroupSameWebsiteTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/TestCase/MoveStoreToOtherGroupSameWebsiteTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/TestCase/UpdateStoreEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/TestCase/UpdateStoreEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/TestCase/UpdateStoreGroupEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/TestCase/UpdateStoreGroupEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/TestCase/UpdateWebsiteEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/TestCase/UpdateWebsiteEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/TestStep/DeleteWebsitesEntityStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/TestStep/RestoreDefaultStoreViewStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/etc/curl/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Store/Test/etc/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Swagger/Test/Constraint/AssertApiInfoTitleOnPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Swagger/Test/Constraint/AssertEndpointContentDisplay.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Swagger/Test/Constraint/AssertServiceContentDisplay.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Swagger/Test/Constraint/AssertSwaggerSectionLoadOnPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Swagger/Test/Page/SwaggerUiPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Swagger/Test/TestCase/SwaggerUiForRestApiTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Swagger/Test/TestCase/SwaggerUiForRestApiTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Swatches/Test/Block/Product/ListProduct.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Swatches/Test/Block/Product/ViewWithSwatches.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Swatches/Test/Constraint/AssertProductPriceWithSelectedSwatchOnCategoryPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Swatches/Test/Constraint/AssertSelectedSwatchOptionsOnProductPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Swatches/Test/Constraint/AssertSwatchOptionsOnProductPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Swatches/Test/Constraint/AssertSwatchesAreNotVisibleOnCategoryPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Swatches/Test/Constraint/AssertSwatchesAreVisibleOnCategoryPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Swatches/Test/Fixture/Cart/Item.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Swatches/Test/Fixture/ConfigurableProduct.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Swatches/Test/Fixture/SwatchProductAttribute.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Swatches/Test/Handler/SwatchProductAttribute/Curl.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Swatches/Test/Handler/SwatchProductAttribute/SwatchProductAttributeInterface.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Swatches/Test/Page/Category/CatalogCategoryView.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Swatches/Test/Page/Product/CatalogProductView.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Swatches/Test/Repository/ConfigData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Swatches/Test/Repository/ConfigurableProduct.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Swatches/Test/Repository/ConfigurableProduct/CheckoutData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Swatches/Test/Repository/ConfigurableProduct/ConfigurableAttributesData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Swatches/Test/Repository/SwatchProductAttribute.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Swatches/Test/TestCase/AddConfigurableProductWithSwatchToShoppingCartTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Swatches/Test/TestCase/AddConfigurableProductWithSwatchToShoppingCartTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Swatches/Test/TestCase/CheckShowSwatchesInProductListOptionImpactTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Swatches/Test/TestCase/CheckShowSwatchesInProductListOptionImpactTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Swatches/Test/TestStep/AddProductToCartFromCatalogCategoryPageStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Swatches/Test/etc/curl/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Block/Adminhtml/Rate/Edit/Form.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Block/Adminhtml/Rate/Edit/Form.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Block/Adminhtml/Rate/Edit/FormPageActions.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Block/Adminhtml/Rate/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Block/Adminhtml/Rate/GridPageActions.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Block/Adminhtml/Rule/Edit/Form.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Block/Adminhtml/Rule/Edit/Form.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Block/Adminhtml/Rule/Edit/TaxRate.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Block/Adminhtml/Rule/Edit/TaxRate.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Block/Adminhtml/Rule/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AbstractAssertTaxCalculationAfterCheckout.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AbstractAssertTaxRuleIsAppliedToAllPrices.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AbstractAssertTaxWithCrossBorderApplying.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertOrderTaxOnBackendExcludingIncludingTax.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertOrderTaxOnBackendExcludingTax.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertOrderTaxOnBackendIncludingTax.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxCalculationAfterCheckoutExcludingIncludingTax.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxCalculationAfterCheckoutExcludingTax.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxCalculationAfterCheckoutIncludingTax.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRateForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRateInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRateInTaxRule.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRateNotInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRateNotInTaxRule.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRateSuccessDeleteMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRateSuccessSaveMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRuleApplying.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRuleForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRuleInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRuleIsApplied.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRuleIsAppliedToAllPricesExcludingIncludingTax.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRuleIsAppliedToAllPricesExcludingTax.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRuleIsAppliedToAllPricesIncludingTax.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRuleIsNotApplied.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRuleNotInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRuleSuccessDeleteMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRuleSuccessSaveMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxWithCrossBorderApplied.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxWithCrossBorderNotApplied.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Fixture/TaxClass.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Fixture/TaxRate.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Fixture/TaxRule.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Fixture/TaxRule/TaxClass.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Fixture/TaxRule/TaxRate.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Handler/Curl/RemoveTaxRule.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Handler/TaxClass/Curl.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Handler/TaxClass/TaxClassInterface.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Handler/TaxClass/Webapi.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Handler/TaxRate/Curl.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Handler/TaxRate/TaxRateInterface.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Handler/TaxRate/Webapi.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Handler/TaxRule/Curl.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Handler/TaxRule/TaxRuleInterface.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Handler/TaxRule/Webapi.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Page/Adminhtml/TaxRateIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Page/Adminhtml/TaxRateNew.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Page/Adminhtml/TaxRuleIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Page/Adminhtml/TaxRuleNew.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Repository/ConfigData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Repository/TaxClass.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Repository/TaxRate.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/Repository/TaxRule.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/ApplyTaxBasedOnVatIdTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/ApplyTaxBasedOnVatIdTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/CreateTaxRateEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/CreateTaxRateEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/CreateTaxRuleEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/CreateTaxRuleEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/DeleteTaxRateEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/DeleteTaxRateEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/DeleteTaxRuleEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/DeleteTaxRuleEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/NavigateMenuTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/TaxCalculationTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/TaxCalculationTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/TaxWithCrossBorderTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/TaxWithCrossBorderTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/UpdateTaxRateEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/UpdateTaxRateEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/UpdateTaxRuleEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/UpdateTaxRuleEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/TestStep/CreateTaxRuleStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/TestStep/DeleteAllTaxRulesStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/etc/curl/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/etc/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/etc/testcase.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Tax/Test/etc/webapi/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Theme/Test/Block/Html/Breadcrumbs.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Theme/Test/Block/Html/Footer.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Theme/Test/Block/Html/Logo.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Theme/Test/Block/Html/Title.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Theme/Test/Block/Html/Topmenu.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Theme/Test/Block/Links.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Theme/Test/Page/CheckoutOnepageSuccess.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Theme/Test/TestCase/NavigateMenuTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Ui/Test/Block/Adminhtml/AbstractContainer.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Ui/Test/Block/Adminhtml/AbstractFormContainers.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Ui/Test/Block/Adminhtml/DataGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Ui/Test/Block/Adminhtml/FormSections.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Ui/Test/Block/Adminhtml/Modal.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Ui/Test/Block/Adminhtml/Section.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Ui/Test/Block/Messages.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Ui/Test/Constraint/AssertGridFiltering.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Ui/Test/Constraint/AssertGridFullTextSearch.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Ui/Test/Constraint/AssertGridSorting.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Ui/Test/TestCase/GridFilteringDeletedEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Ui/Test/TestCase/GridFilteringTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Ui/Test/TestCase/GridFullTextSearchTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Ui/Test/TestCase/GridSortingTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Ui/Test/etc/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Ups/Test/Repository/ConfigData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Ups/Test/TestCase/OnePageCheckoutTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Block/Adminhtml/Catalog/Category/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Block/Adminhtml/Catalog/Category/Tree.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Block/Adminhtml/Catalog/Edit/UrlRewriteForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Block/Adminhtml/Catalog/Edit/UrlRewriteForm.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Block/Adminhtml/Catalog/Product/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Block/Adminhtml/Cms/Page/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Block/Adminhtml/Selector.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertCategoryUrlWithCustomStoreView.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertPageByUrlRewriteIsNotFound.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewriteAfterDeletingCategory.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewriteCategoryInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewriteCategoryNotInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewriteCategoryRedirect.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewriteCustomRedirect.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewriteCustomSearchRedirect.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewriteDeletedMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewriteInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewriteNotInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewriteProductInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewriteProductNotInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewriteProductRedirect.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewriteRedirectInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewriteSaveMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewriteSuccessOutsideRedirect.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewriteUpdatedProductInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewritesCategoriesInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewritesRedirectInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Fixture/UrlRewrite.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Fixture/UrlRewrite/StoreId.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Fixture/UrlRewrite/TargetPath.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Handler/UrlRewrite/Curl.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Handler/UrlRewrite/UrlRewriteInterface.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Page/Adminhtml/UrlRewriteEdit.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Page/Adminhtml/UrlRewriteIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Repository/UrlRewrite.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/CategoryUrlRewriteTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/CategoryUrlRewriteTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/CreateCategoryRewriteEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/CreateCategoryRewriteEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/CreateCustomUrlRewriteEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/CreateCustomUrlRewriteEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/CreateProductUrlRewriteEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/CreateProductUrlRewriteEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/CreateProductWithSeveralWebsitesUrlRewriteTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/CreateProductWithSeveralWebsitesUrlRewriteTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/DeleteCategoryUrlRewriteEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/DeleteCategoryUrlRewriteEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/DeleteCustomUrlRewriteEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/DeleteCustomUrlRewriteEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/DeleteProductUrlRewriteEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/DeleteProductUrlRewriteEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/NavigateMenuTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/UpdateCategoryUrlRewriteEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/UpdateCategoryUrlRewriteEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/UpdateCustomUrlRewriteEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/UpdateCustomUrlRewriteEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/UpdateProductUrlRewriteEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/UpdateProductUrlRewriteEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/UrlRewrite/Test/etc/curl/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Block/Adminhtml/LockedUsersGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Block/Adminhtml/Role/PageActions.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Block/Adminhtml/Role/RoleForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Block/Adminhtml/Role/RoleForm.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Block/Adminhtml/Role/Tab/Role.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Block/Adminhtml/Role/Tab/User/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Block/Adminhtml/RoleGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Block/Adminhtml/User/Edit/Form.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Block/Adminhtml/User/Edit/PageActions.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Block/Adminhtml/User/Edit/Tab/Roles.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Block/Adminhtml/User/Tab/Role.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Block/Adminhtml/User/Tab/Role/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Block/Adminhtml/User/UserForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Block/Adminhtml/User/UserForm.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Block/Adminhtml/UserGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertAccessTokensErrorRevokeMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertImpossibleDeleteYourOwnAccount.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertImpossibleDeleteYourOwnRole.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertIncorrectUserPassword.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertRoleInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertRoleNotInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertRoleSuccessDeleteMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertRoleSuccessSaveMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertUserDuplicateMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertUserFailedLoginByPermissionMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertUserFailedLoginMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertUserInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertUserInvalidEmailHostnameMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertUserInvalidEmailMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertUserNotInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertUserPasswordChangedSuccessfully.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertUserPermissionsOnlyConfigurationIndexPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertUserRoleRestrictedAccess.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertUserSuccessDeleteMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertUserSuccessLogOut.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertUserSuccessLogin.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertUserSuccessSaveMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Fixture/Role.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Fixture/Role/InRoleUsers.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Fixture/User.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Fixture/User/CurrentPassword.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Fixture/User/RoleId.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Handler/Role/Curl.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Handler/Role/RoleInterface.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Handler/User/Curl.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Handler/User/UserInterface.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Page/Adminhtml/UserEdit.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Page/Adminhtml/UserIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Page/Adminhtml/UserLocks.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Page/Adminhtml/UserRoleEditRole.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Page/Adminhtml/UserRoleIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Repository/ConfigData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Repository/Role.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/Repository/User.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/TestCase/CreateAdminUserEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/TestCase/CreateAdminUserEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/TestCase/CreateAdminUserRoleEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/TestCase/CreateAdminUserRoleEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/TestCase/CustomAclPermissionTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/TestCase/DeleteAdminUserEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/TestCase/DeleteAdminUserEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/TestCase/DeleteUserRoleEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/TestCase/DeleteUserRoleEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/TestCase/LockAdminUserEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/TestCase/LockAdminUserEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/TestCase/NavigateMenuTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/TestCase/RevokeAllAccessTokensForAdminWithoutTokensTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/TestCase/RevokeAllAccessTokensForAdminWithoutTokensTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/TestCase/UnlockAdminUserTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/TestCase/UnlockAdminUserTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/TestCase/UpdateAdminUserEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/TestCase/UpdateAdminUserEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/TestCase/UpdateAdminUserRoleEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/TestCase/UpdateAdminUserRoleEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/TestCase/UpdatePasswordUserEntityPciRequirementsTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/TestCase/UpdatePasswordUserEntityPciRequirementsTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/TestCase/UserLoginAfterChangingPermissionsTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/TestCase/UserLoginAfterChangingPermissionsTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/TestStep/CreateUserStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/TestStep/LoginUserOnBackendStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/TestStep/LogoutUserOnBackendStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/User/Test/etc/curl/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Usps/Test/Repository/ConfigData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Usps/Test/TestCase/OnePageCheckoutTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Variable/Test/Block/Adminhtml/System/Variable/Edit/VariableForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Variable/Test/Block/Adminhtml/System/Variable/Edit/VariableForm.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Variable/Test/Block/Adminhtml/System/Variable/FormPageActions.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Variable/Test/Block/Adminhtml/System/Variable/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Variable/Test/Constraint/AssertCustomVariableForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Variable/Test/Constraint/AssertCustomVariableInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Variable/Test/Constraint/AssertCustomVariableInPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Variable/Test/Constraint/AssertCustomVariableNotInCmsPageForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Variable/Test/Constraint/AssertCustomVariableNotInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Variable/Test/Constraint/AssertCustomVariableRestrictedAccess.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Variable/Test/Constraint/AssertCustomVariableSuccessDeleteMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Variable/Test/Constraint/AssertCustomVariableSuccessSaveMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Variable/Test/Fixture/SystemVariable.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Variable/Test/Handler/SystemVariable/Curl.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Variable/Test/Handler/SystemVariable/SystemVariableInterface.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Variable/Test/Page/Adminhtml/SystemVariableIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Variable/Test/Page/Adminhtml/SystemVariableNew.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Variable/Test/Repository/SystemVariable.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Variable/Test/TestCase/CreateCustomVariableEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Variable/Test/TestCase/CreateCustomVariableEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Variable/Test/TestCase/CustomAclPermissionTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Variable/Test/TestCase/DeleteCustomVariableEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Variable/Test/TestCase/DeleteCustomVariableEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Variable/Test/TestCase/NavigateMenuTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Variable/Test/TestCase/UpdateCustomVariableEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Variable/Test/TestCase/UpdateCustomVariableEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Variable/Test/etc/curl/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Vault/Test/Block/Onepage/Payment/Method/Vault.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Vault/Test/Block/StoredPayments.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Vault/Test/Constraint/AssertCreditCardNotPresentOnCheckout.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Vault/Test/Constraint/AssertSaveCreditCardOptionNotPresent.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Vault/Test/Constraint/AssertStoredPaymentDeletedMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Vault/Test/Page/CheckoutOnepage.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Vault/Test/Page/StoredPaymentMethods.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Vault/Test/TestCase/CreateVaultOrderBackendTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Vault/Test/TestCase/DeleteSavedCreditCardTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Vault/Test/TestCase/DeleteSavedCreditCardTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Vault/Test/TestCase/ReorderUsingVaultTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Vault/Test/TestCase/UseVaultOnCheckoutTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Vault/Test/TestStep/CheckSaveCreditCardOptionStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Vault/Test/TestStep/DeleteCreditCardFromMyAccountStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Vault/Test/TestStep/DeleteStoredPaymentStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Vault/Test/TestStep/SaveCreditCardOnBackendStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Vault/Test/TestStep/SaveCreditCardStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Vault/Test/TestStep/SubmitOrderWithVaultStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Vault/Test/TestStep/UseSavedPaymentMethodStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Vault/Test/TestStep/UseVaultPaymentTokenStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Vault/Test/etc/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Vault/Test/etc/testcase.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Weee/Test/Block/Adminhtml/Product/Edit/Section/ProductDetails/Fpt.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Weee/Test/Block/Cart.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Weee/Test/Block/Cart/CartItem.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Weee/Test/Block/Cart/CartItem/Fpt.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Weee/Test/Block/Cart/Totals.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Weee/Test/Block/Cart/Totals/Fpt.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Weee/Test/Block/Product/ListProduct.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Weee/Test/Block/Product/Price.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Weee/Test/Block/Product/ProductList/ProductItem.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Weee/Test/Block/Product/View.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Weee/Test/Constraint/AssertFptApplied.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Weee/Test/Page/Category/CatalogCategoryView.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Weee/Test/Page/CheckoutCart.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Weee/Test/Page/Product/CatalogProductView.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Weee/Test/Repository/ConfigData.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Weee/Test/TestCase/CreateTaxWithFptTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Weee/Test/TestCase/CreateTaxWithFptTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Weee/Test/etc/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/ChosenOption.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/Parameters.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/CatalogCategoryLink.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/CatalogCategoryLink.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/CatalogCategoryLink/Form.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/CatalogCategoryLink/Form.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/CatalogNewProductsList.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/CatalogNewProductsList.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/CatalogProductLink.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/CatalogProductLink.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/CatalogProductLink/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/CmsPageLink.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/CmsPageLink.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/CmsPageLink/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/CmsStaticBlock.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/CmsStaticBlock.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/CmsStaticBlock/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/ParametersForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/RecentlyComparedProducts.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/RecentlyComparedProducts.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/RecentlyViewedProducts.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/RecentlyViewedProducts.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/Settings.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/WidgetInstance.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/WidgetInstanceType/Categories.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/WidgetInstanceType/Categories.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/WidgetInstanceType/GenericPages.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/WidgetInstanceType/GenericPages.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/WidgetInstanceType/Product/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/WidgetInstanceType/Products.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/WidgetInstanceType/Products.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/WidgetInstanceType/WidgetInstanceForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/WidgetForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/WidgetForm.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/WidgetGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/WidgetForm.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/WidgetForm.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Block/WidgetView.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Constraint/AssertProductInCatalogNewProductsList.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Constraint/AssertThemeFilterValuesOnWidgetGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Constraint/AssertWidgetAbsentOnFrontendHome.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Constraint/AssertWidgetCatalogCategoryLink.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Constraint/AssertWidgetCatalogNewProductsList.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Constraint/AssertWidgetCmsPageLink.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Constraint/AssertWidgetInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Constraint/AssertWidgetOnFrontendInCatalog.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Constraint/AssertWidgetOnProductPage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Constraint/AssertWidgetProductLink.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Constraint/AssertWidgetRecentlyComparedProducts.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Constraint/AssertWidgetRecentlyViewedProducts.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Constraint/AssertWidgetSuccessDeleteMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Constraint/AssertWidgetSuccessSaveMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Constraint/AssertWidgetsInGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Fixture/Widget.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Fixture/Widget/Parameters.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Fixture/Widget/StoreIds.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Fixture/Widget/WidgetInstance.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Handler/Widget/Curl.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Handler/Widget/WidgetInterface.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Page/Adminhtml/WidgetInstanceEdit.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Page/Adminhtml/WidgetInstanceIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Page/Adminhtml/WidgetInstanceNew.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Repository/Widget.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Repository/Widget/Parameters.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/Repository/Widget/WidgetInstance.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/TestCase/AbstractCreateWidgetEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/TestCase/CreateWidgetEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/TestCase/CreateWidgetEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/TestCase/CreateWidgetsEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/TestCase/CreateWidgetsEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/TestCase/DeleteWidgetEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/TestCase/DeleteWidgetEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/TestCase/NavigateMenuTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/TestStep/DeleteAllWidgetsStep.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/etc/curl/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Widget/Test/etc/di.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Wishlist/Test/Block/Adminhtml/Customer/Edit/Tab/Wishlist.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Wishlist/Test/Block/Adminhtml/Customer/Edit/Tab/Wishlist/Grid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Wishlist/Test/Block/Adminhtml/Edit/CustomerForm.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Wishlist/Test/Block/Customer/Sharing.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Wishlist/Test/Block/Customer/Sharing.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Wishlist/Test/Block/Customer/Wishlist.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Wishlist/Test/Block/Customer/Wishlist/Items.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Wishlist/Test/Block/Customer/Wishlist/Items/Product.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Wishlist/Test/Block/Customer/Wishlist/Items/Product.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Wishlist/Test/Constraint/AbstractAssertWishlistProductDetails.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Wishlist/Test/Constraint/AssertAddProductToWishlistSuccessMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Wishlist/Test/Constraint/AssertCustomerWishlistOnBackendIsEmpty.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Wishlist/Test/Constraint/AssertMoveProductToWishlistSuccessMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Wishlist/Test/Constraint/AssertProductDetailsInWishlist.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Wishlist/Test/Constraint/AssertProductInCustomerWishlistOnBackendGrid.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Wishlist/Test/Constraint/AssertProductIsPresentInCustomerBackendWishlist.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Wishlist/Test/Constraint/AssertProductIsPresentInWishlist.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Wishlist/Test/Constraint/AssertProductPriceIsNotZero.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Wishlist/Test/Constraint/AssertProductsIsAbsentInWishlist.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Wishlist/Test/Constraint/AssertProductsIsPresentInCustomerBackendWishlist.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Wishlist/Test/Constraint/AssertWishlistIsEmpty.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Wishlist/Test/Constraint/AssertWishlistShareMessage.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Wishlist/Test/Page/WishlistIndex.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Wishlist/Test/Page/WishlistShare.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/AbstractWishlistTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/AddProductToWishlistEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/AddProductToWishlistEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/AddProductsToCartFromCustomerWishlistOnFrontendTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/AddProductsToCartFromCustomerWishlistOnFrontendTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/ConfigureProductInCustomerWishlistOnBackendTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/ConfigureProductInCustomerWishlistOnBackendTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/ConfigureProductInCustomerWishlistOnFrontendTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/ConfigureProductInCustomerWishlistOnFrontendTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/DeleteProductFromCustomerWishlistOnBackendTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/DeleteProductFromCustomerWishlistOnBackendTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/DeleteProductsFromWishlistOnFrontendTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/DeleteProductsFromWishlistOnFrontendTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/MoveProductFromShoppingCartToWishlistTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/MoveProductFromShoppingCartToWishlistTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/ShareWishlistEntityTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/ShareWishlistEntityTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/ViewProductInCustomerWishlistOnBackendTest.php
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/ViewProductInCustomerWishlistOnBackendTest.xml
 mode change 100644 => 100755 dev/tests/functional/tests/app/Magento/Wishlist/Test/TestStep/AddProductsToWishlistStep.php
 mode change 100644 => 100755 dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests.php
 mode change 100644 => 100755 dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests/3rd_party.xml
 mode change 100644 => 100755 dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests/3rd_party_single_flow.xml
 mode change 100644 => 100755 dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests/acceptance.xml
 mode change 100644 => 100755 dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests/acceptance_unstable.xml
 mode change 100644 => 100755 dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests/basic.xml
 mode change 100644 => 100755 dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests/basic_green.xml
 mode change 100644 => 100755 dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests/category.xml
 mode change 100644 => 100755 dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests/extended_acceptance.xml
 mode change 100644 => 100755 dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests/installation.xml
 mode change 100644 => 100755 dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests/mvp.xml
 mode change 100644 => 100755 dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests/setup.xml
 mode change 100644 => 100755 dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests/travis_acceptance.xml
 mode change 100644 => 100755 dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests/upgrade.xml
 mode change 100644 => 100755 dev/tests/functional/utils/bootstrap.php
 mode change 100644 => 100755 dev/tests/functional/utils/command.php
 mode change 100644 => 100755 dev/tests/functional/utils/deleteMagentoGeneratedCode.php
 mode change 100644 => 100755 dev/tests/functional/utils/export.php
 mode change 100644 => 100755 dev/tests/functional/utils/generate.php
 mode change 100644 => 100755 dev/tests/functional/utils/generate/factory.php
 mode change 100644 => 100755 dev/tests/functional/utils/generate/fixture.php
 mode change 100644 => 100755 dev/tests/functional/utils/generate/handler.php
 mode change 100644 => 100755 dev/tests/functional/utils/generate/page.php
 mode change 100644 => 100755 dev/tests/functional/utils/generate/repository.php
 mode change 100644 => 100755 dev/tests/functional/utils/generateAllureReport.php
 mode change 100644 => 100755 dev/tests/functional/utils/generateFixtureXml.php
 mode change 100644 => 100755 dev/tests/functional/utils/locales.php
 mode change 100644 => 100755 dev/tests/functional/utils/log.php
 mode change 100644 => 100755 dev/tests/functional/utils/mtf
 mode change 100644 => 100755 dev/tests/functional/utils/pathChecker.php
 mode change 100644 => 100755 dev/tests/functional/utils/website.php
 mode change 100644 => 100755 dev/tests/integration/.gitignore
 mode change 100644 => 100755 dev/tests/integration/_files/Magento/TestModuleDirectoryZipCodes/etc/module.xml
 mode change 100644 => 100755 dev/tests/integration/_files/Magento/TestModuleDirectoryZipCodes/etc/zip_codes.xml
 mode change 100644 => 100755 dev/tests/integration/_files/Magento/TestModuleDirectoryZipCodes/registration.php
 mode change 100644 => 100755 dev/tests/integration/_files/Magento/TestModuleFakePaymentMethod/Gateway/Command/DoNothingCommand.php
 mode change 100644 => 100755 dev/tests/integration/_files/Magento/TestModuleFakePaymentMethod/etc/config.xml
 mode change 100644 => 100755 dev/tests/integration/_files/Magento/TestModuleFakePaymentMethod/etc/di.xml
 mode change 100644 => 100755 dev/tests/integration/_files/Magento/TestModuleFakePaymentMethod/etc/module.xml
 mode change 100644 => 100755 dev/tests/integration/_files/Magento/TestModuleFakePaymentMethod/registration.php
 mode change 100644 => 100755 dev/tests/integration/_files/Magento/TestModuleSample/composer.json
 mode change 100644 => 100755 dev/tests/integration/_files/Magento/TestModuleSample/etc/module.xml
 mode change 100644 => 100755 dev/tests/integration/_files/Magento/TestModuleSample/registration.php
 mode change 100644 => 100755 dev/tests/integration/etc/config-global.php.dist
 mode change 100644 => 100755 dev/tests/integration/etc/di/preferences/ce.php
 mode change 100644 => 100755 dev/tests/integration/etc/install-config-mysql.php.dist
 mode change 100644 => 100755 dev/tests/integration/etc/install-config-mysql.travis.php.dist
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Annotation/AdminConfigFixture.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Annotation/AppArea.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Annotation/AppIsolation.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Annotation/Cache.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Annotation/ComponentRegistrarFixture.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Annotation/ConfigFixture.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Annotation/DataFixture.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Annotation/DataFixtureBeforeTransaction.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Annotation/DbIsolation.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Api/Config/Reader/FileResolver.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/App/Config.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/App/EnvironmentFactory.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/App/Filesystem.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/App/MutableScopeConfig.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/App/ObjectManager/Environment/Developer.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/App/ReinitableConfig.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/App/State.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Application.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Backend/App/Config.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Bootstrap.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Bootstrap/DocBlock.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Bootstrap/Environment.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Bootstrap/Memory.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Bootstrap/MemoryFactory.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Bootstrap/Profiler.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Bootstrap/Settings.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Config.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/CookieManager.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Db/AbstractDb.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Db/Adapter/Mysql.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Db/Adapter/TransactionInterface.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Db/ConnectionAdapter.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Db/Mysql.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Db/Sequence.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Db/Sequence/Builder.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Entity.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/ErrorLog/Listener.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/ErrorLog/Logger.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Event/Magento.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Event/Param/Transaction.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Event/PhpUnit.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Event/Transaction.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/EventManager.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Helper/Api.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Helper/Bootstrap.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Helper/CacheCleaner.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Helper/Config.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Helper/Eav.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Helper/Factory.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Helper/Memory.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Helper/Xpath.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Indexer/TestCase.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Interception/PluginList.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Isolation/AppConfig.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Isolation/DeploymentConfig.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Isolation/WorkingDirectory.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Listener/ExtededTestdox.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Mail/Template/TransportBuilderMock.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Mail/TransportInterfaceMock.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/MemoryLimit.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/ObjectManager.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/ObjectManager/Config.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/ObjectManager/Configurator.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/ObjectManagerFactory.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Profiler/OutputBamboo.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Request.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Response.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Store/StoreManager.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/TestCase/AbstractBackendController.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/TestCase/AbstractConfigFiles.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/TestCase/AbstractController.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/TestCase/AbstractIntegrity.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/View/Layout.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Workaround/Cleanup/StaticProperties.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Workaround/Cleanup/TestCaseProperties.php
 mode change 100644 => 100755 dev/tests/integration/framework/Magento/TestFramework/Workaround/Segfault.php
 mode change 100644 => 100755 dev/tests/integration/framework/autoload.php
 mode change 100644 => 100755 dev/tests/integration/framework/bootstrap.php
 mode change 100644 => 100755 dev/tests/integration/framework/deployTestModules.php
 mode change 100644 => 100755 dev/tests/integration/framework/tests/unit/framework/bootstrap.php
 mode change 100644 => 100755 dev/tests/integration/framework/tests/unit/phpunit.xml.dist
 mode change 100644 => 100755 dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/AdminConfigFixtureTest.php
 mode change 100644 => 100755 dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/AppAreaTest.php
 mode change 100644 => 100755 dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/AppIsolationTest.php
 mode change 100644 => 100755 dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/ComponentRegistrarFixtureTest.php
 mode change 100644 => 100755 dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/ConfigFixtureTest.php
 mode change 100644 => 100755 dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/DataFixtureTest.php
 mode change 100644 => 100755 dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/DbIsolationTest.php
 mode change 100644 => 100755 dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/_files/components/a/aa/aaa/registration.php
 mode change 100644 => 100755 dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/_files/components/a/aa/registration.php
 mode change 100644 => 100755 dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/_files/components/b/registration.php
 mode change 100644 => 100755 dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/_files/components/registration.php
 mode change 100644 => 100755 dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/_files/sample_fixture_two_rollback.php
 mode change 100644 => 100755 dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/App/ConfigTest.php
 mode change 100644 => 100755 dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/ApplicationTest.php
 mode change 100644 => 100755 dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Bootstrap/DocBlockTest.php
 mode change 100644 => 100755 dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Bootstrap/EnvironmentTest.php
 mode change 100644 => 100755 dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Bootstrap/MemoryTest.php
 mode change 100644 => 100755 dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Bootstrap/ProfilerTest.php
 mode change 100644 => 100755 dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Bootstrap/SettingsTest.php
 mode change 100644 => 100755 dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Bootstrap/_files/0
 mode change 100644 => 100755 dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Bootstrap/_files/1.xml
 mode change 100644 => 100755 dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Bootstrap/_files/1.xml.dist
 mode change 100644 => 100755 dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Bootstrap/_files/2.xml
 mode change 100644 => 100755 dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Bootstrap/_files/3.xml.dist
 mode change 100644 => 100755 dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Bootstrap/_files/4.php
 mode change 100644 => 100755 dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Bootstrap/_files/metrics.php
 mode change 100644 => 100755 dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/BootstrapTest.php
 mode change 100644 => 100755 dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Db/Adapter/TransactionInterfaceTest.php
 mode change 100644 => 100755 dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/EntityTest.php
 mode change 100644 => 100755 dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Event/MagentoTest.php
 mode change 100644 => 100755 dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Event/Param/TransactionTest.php
 mode change 100644 => 100755 dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Event/PhpUnitTest.php
 mode change 100644 => 100755 dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Event/TransactionTest.php
 mode change 100644 => 100755 dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/EventManagerTest.php
 mode change 100644 => 100755 dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Helper/BootstrapTest.php
 mode change 100644 => 100755 dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Helper/FactoryTest.php
 mode change 100644 => 100755 dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Helper/MemoryTest.php
 mode change 100644 => 100755 dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Isolation/AppConfigTest.php
 mode change 100644 => 100755 dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Isolation/WorkingDirectoryTest.php
 mode change 100644 => 100755 dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/MemoryLimitTest.php
 mode change 100644 => 100755 dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/ObjectManagerTest.php
 mode change 100644 => 100755 dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Profiler/OutputBambooTest.php
 mode change 100644 => 100755 dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Profiler/OutputBambooTestFilter.php
 mode change 100644 => 100755 dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/RequestTest.php
 mode change 100644 => 100755 dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/TestCase/ControllerAbstractTest.php
 mode change 100644 => 100755 dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Workaround/Cleanup/TestCasePropertiesTest.php
 mode change 100644 => 100755 dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Workaround/Cleanup/TestCasePropertiesTest/DummyTestCase.php
 mode change 100644 => 100755 dev/tests/integration/phpunit.xml.dist
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/AdminNotification/Controller/Adminhtml/Notification/MarkAsReadTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/AdminNotification/Controller/Adminhtml/Notification/MassMarkAsReadTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/AdminNotification/Controller/Adminhtml/Notification/MassRemoveTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/AdminNotification/Controller/Adminhtml/Notification/RemoveTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/AdminNotification/Model/ResourceModel/Inbox/Collection/CriticalTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/AdminNotification/_files/notifications.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/AdvancedPricingImportExport/Model/Export/AdvancedPricingTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/AdvancedPricingImportExport/Model/Import/AdvancedPricingTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/AdvancedPricingImportExport/Model/Import/_files/import_advanced_pricing.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/AdvancedPricingImportExport/_files/create_products.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/AdvancedPricingImportExport/_files/product_with_second_website.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Analytics/Model/Connector/Http/ReSignUpResponseResolverTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Analytics/Model/Plugin/BaseUrlConfigPluginTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Analytics/Model/ReportUrlProviderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Analytics/_files/create_link.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Analytics/_files/enabled_subscription_with_invalid_token.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Analytics/_files/enabled_subscription_with_invalid_token_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Authorization/Model/ResourceModel/Role/CollectionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Authorization/Model/ResourceModel/Role/Grid/CollectionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Authorization/Model/ResourceModel/RoleTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Authorization/Model/ResourceModel/Rules/CollectionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Authorization/Model/RoleTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Authorization/Model/RulesTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/PlaceTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/PlaceTesting.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Authorizenet/Controller/Directpost/Payment/BackendResponseTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Authorizenet/Controller/Directpost/Payment/ResponseTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Authorizenet/Controller/Directpost/PaymentTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Authorizenet/Model/Directpost/RequestTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Authorizenet/Model/DirectpostTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Authorizenet/_files/order.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Authorizenet/_files/transaction_details.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/App/AbstractActionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/App/RouterTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Block/Dashboard/GraphTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Block/Dashboard/Orders/GridTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Block/Dashboard/Tab/Products/ViewedTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Block/MenuTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Block/Page/FooterTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Block/Page/HeaderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Block/System/Account/Edit/FormTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Block/System/Design/Edit/Tab/GeneralTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Block/System/Store/DeleteTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Block/System/Store/Edit/Form/GroupTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Block/System/Store/Edit/Form/StoreTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Block/System/Store/Edit/Form/WebsiteTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Block/System/Store/EditTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Block/TemplateTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Block/Widget/ContainerTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Block/Widget/Form/ContainerTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Block/Widget/FormTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Block/Widget/Grid/Column/Renderer/TextTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Block/Widget/Grid/ColumnSetTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Block/Widget/Grid/ContainerTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Block/Widget/Grid/ExtendedTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Block/Widget/Grid/ItemTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Block/Widget/Grid/Massaction/AdditionalTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Block/Widget/Grid/MassactionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Block/Widget/GridTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Block/Widget/TabsTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Block/WidgetTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/Magento/test_default/Magento_Backend/layout/layout_test_grid_handle.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/Magento/test_default/registration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/Magento/test_default/theme.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/Magento/test_default/web/images/grid_sort_asc.gif
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/Magento/test_default/web/images/grid_sort_desc.gif
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/Magento/test_default/web/images/grid_th_bg.gif
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/Magento/test_default/web/images/grid_th_onclick_bg.gif
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/Magento/test_default/web/images/pager_arrow_left.gif
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/Magento/test_default/web/images/pager_arrow_left_off.gif
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/Magento/test_default/web/images/pager_arrow_right.gif
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/Magento/test_default/web/images/pager_arrow_right_off.gif
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Block/_files/form_key_disabled.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Block/_files/form_key_disabled_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Block/_files/menu/Magento/Backend/etc/adminhtml/menu.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Controller/Adminhtml/AuthTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Controller/Adminhtml/Cache/CleanStaticFilesTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Controller/Adminhtml/Cache/MassActionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Controller/Adminhtml/CacheTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Controller/Adminhtml/Dashboard/ProductsViewedTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Controller/Adminhtml/DashboardTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Controller/Adminhtml/IndexTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Controller/Adminhtml/System/AccountTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Controller/Adminhtml/System/DesignTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Controller/Adminhtml/System/StoreTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Controller/Adminhtml/UrlRewriteTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Helper/DataTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Model/Auth/SessionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Model/AuthTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Model/Locale/ResolverTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Model/MenuTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Model/Search/CustomerTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Model/Search/OrderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Model/Session/AdminConfigTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Model/Session/QuoteTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Model/SessionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Model/Translate/InlineTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/Model/UrlTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/controllers/_files/cache/all_types_invalidated.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/controllers/_files/cache/all_types_invalidated_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/controllers/_files/cache/application_cache.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/controllers/_files/cache/application_cache_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/controllers/_files/cache/empty_storage.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/controllers/_files/cache/non_application_cache.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Backend/controllers/_files/cache/non_application_cache_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Braintree/Block/Form/ContainerTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Braintree/Block/VaultTokenRendererTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Braintree/Controller/Adminhtml/Order/PaymentReviewTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Braintree/Controller/Adminhtml/Payment/GetClientTokenTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Braintree/Controller/Cards/DeleteActionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Braintree/Gateway/Config/ConfigTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Braintree/Model/Adminhtml/System/Config/CountryCreditCardTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Braintree/Model/PaymentMethodListTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Braintree/Model/Ui/Adminhtml/PayPal/TokenUiComponentProviderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Braintree/Model/Ui/TokensConfigProviderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Braintree/_files/fraud_order.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Braintree/_files/payment_configuration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Braintree/_files/payment_configuration_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Braintree/_files/payments.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Braintree/_files/paypal_quote.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Braintree/_files/paypal_vault_token.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Search/GridTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/SearchTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Bundle/Controller/Adminhtml/ProductTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Bundle/Controller/ProductTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Bundle/Model/Category/ProductIndexerTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Bundle/Model/Product/BundlePriceAbstract.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Bundle/Model/Product/DynamicBundlePriceCalculatorTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Bundle/Model/Product/DynamicBundleWithCatalogPriceRuleCalculatorTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Bundle/Model/Product/DynamicBundleWithSpecialPriceCalculatorTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Bundle/Model/Product/DynamicBundleWithTierPriceCalculatorTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Bundle/Model/Product/FixedBundlePriceCalculatorTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Bundle/Model/Product/FixedBundleWithCatalogPriceRuleCalculatorTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Bundle/Model/Product/FixedBundleWithSpecialPriceCalculatorTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Bundle/Model/Product/FixedBundleWithTierPriceCalculatorTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Bundle/Model/Product/IsSaleableTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Bundle/Model/Product/OptionListTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Bundle/Model/Product/PriceTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Bundle/Model/Product/TypeTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Bundle/Model/ProductTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Bundle/Model/ResourceModel/Indexer/StockTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Bundle/_files/PriceCalculator/dynamic_bundle_product.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Bundle/_files/PriceCalculator/dynamic_bundle_product_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Bundle/_files/PriceCalculator/dynamic_bundle_product_with_catalog_rule.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Bundle/_files/PriceCalculator/dynamic_bundle_product_with_catalog_rule_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Bundle/_files/PriceCalculator/dynamic_bundle_product_with_special_price.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Bundle/_files/PriceCalculator/dynamic_bundle_product_with_special_price_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Bundle/_files/PriceCalculator/fixed_bundle_product.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Bundle/_files/PriceCalculator/fixed_bundle_product_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Bundle/_files/PriceCalculator/fixed_bundle_product_with_catalog_rule.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Bundle/_files/PriceCalculator/fixed_bundle_product_with_catalog_rule_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Bundle/_files/PriceCalculator/fixed_bundle_product_with_special_price.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Bundle/_files/PriceCalculator/fixed_bundle_product_with_special_price_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Bundle/_files/issaleable_product.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Bundle/_files/issaleable_product_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Bundle/_files/multiple_products.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Bundle/_files/multiple_products_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Bundle/_files/order_item_with_bundle_and_options.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Bundle/_files/order_item_with_bundle_and_options_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Bundle/_files/order_items_simple_and_bundle.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Bundle/_files/order_items_simple_and_bundle_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Bundle/_files/order_with_bundle_shipped_separately.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Bundle/_files/order_with_bundle_shipped_separately_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Bundle/_files/product.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Bundle/_files/product_in_category.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Bundle/_files/product_in_category_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Bundle/_files/product_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Bundle/_files/product_with_multiple_options.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Bundle/_files/product_with_multiple_options_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Bundle/_files/product_with_tier_pricing.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/BundleImportExport/Model/BundleTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/BundleImportExport/Model/Export/RowCustomizerTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/BundleImportExport/Model/Import/Product/Type/BundleTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/BundleImportExport/Model/Import/_files/import_bundle.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/BundleImportExport/Model/Import/_files/import_bundle_multiple_store_views.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Captcha/Block/Adminhtml/Captcha/DefaultCaptchaTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Captcha/Block/Captcha/DefaultTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Captcha/Observer/CaseBackendLoginActionWithInvalidCaptchaReturnsErrorTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Captcha/Observer/CaseCaptchaIsRequiredAfterFailedLoginAttemptsTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Captcha/Observer/CaseCheckUnsuccessfulMessageWhenCaptchaFailedTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Captcha/Observer/CaseCheckUserForgotPasswordBackendWhenCaptchaFailedTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Captcha/_files/dummy_user.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Block/Adminhtml/Category/Checkboxes/TreeTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Block/Adminhtml/Category/TreeTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tab/FrontTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Toolbar/AddTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Block/Adminhtml/Product/Edit/JsTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/OptionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Type/SelectTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/CategoryTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Gallery/ContentTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/WeightTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Block/Adminhtml/Product/Options/AjaxTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Block/Product/AbstractTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Block/Product/ListTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Block/Product/NewTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Block/Product/ProductList/CrosssellTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Block/Product/ProductList/RelatedTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Block/Product/ProductList/ToolbarTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Block/Product/ProductList/UpsellTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Block/Product/View/AdditionalTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Block/Product/View/OptionsTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Block/Product/ViewTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Console/Command/ProductAttributesCleanUpTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Controller/Adminhtml/CategoryTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Controller/Adminhtml/Product/Action/AttributeTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Controller/Adminhtml/Product/AttributeTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Controller/Adminhtml/Product/ReviewTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Controller/Adminhtml/Product/Set/DeleteTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Controller/Adminhtml/Product/Set/SaveTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Controller/Adminhtml/ProductTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Controller/CategoryTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Controller/IndexTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Controller/Product/CompareTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Controller/Product/ViewTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Controller/ProductTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Cron/DeleteOutdatedPriceValuesTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Helper/CategoryTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Helper/DataTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Helper/OutputTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Helper/Product/CompareTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Helper/Product/CompositeTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Helper/Product/FlatTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Helper/Product/Stub/ProductControllerStub.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Helper/Product/ViewTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Helper/ProductTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/AbstractModel/Stub.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/AbstractTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Category/DataProviderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Category/_files/category_without_image.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Category/_files/service_category_create.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Category/_files/service_category_create_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/CategoryTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/CategoryTreeTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/ConfigTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/DesignTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Indexer/Category/ProductTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Indexer/FlatTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Indexer/Product/CategoryTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Indexer/Product/Eav/Action/FullTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Indexer/Product/Eav/Action/RowTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Indexer/Product/Eav/Action/RowsTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Indexer/Product/Flat/Action/FullTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Indexer/Product/Flat/Action/RowTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Indexer/Product/Flat/Action/RowsTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Indexer/Product/Flat/ProcessorTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Indexer/Product/Price/Action/FullTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Indexer/Product/Price/Action/RowTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Indexer/Product/Price/Action/RowsTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Indexer/Product/Price/SimpleWithOptionsTierPriceTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Layer/CategoryTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Layer/Filter/AttributeTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Layer/Filter/CategoryTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Layer/Filter/DataProvider/PriceTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Layer/Filter/DecimalTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Layer/Filter/Price/AlgorithmAdvancedTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Layer/Filter/Price/AlgorithmBaseTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Layer/Filter/Price/_files/_algorithm_base_data.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Layer/Filter/Price/_files/products_advanced.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Layer/Filter/Price/_files/products_advanced_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Layer/Filter/Price/_files/products_base.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Layer/Filter/Price/_files/products_base_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Layer/Filter/PriceTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Layer/Filter/_files/attribute_weight_filterable.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Layer/Filter/_files/attribute_with_option.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Layer/Filter/_files/attribute_with_option_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Product/ActionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Attribute/Backend/PriceTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Attribute/Backend/SkuTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Attribute/Backend/TierpriceTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Attribute/Source/CountryofmanufactureTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Attribute/_files/create_attribute_service.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Attribute/_files/create_attribute_service_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Attribute/_files/select_attribute.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Attribute/_files/select_attribute_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Compare/ListCompareTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Product/CopierTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Gallery/CreateHandlerTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Gallery/ProcessorTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Gallery/ReadHandlerTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Product/ImageTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Option/Type/DateTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Option/Type/File/ValidatorFileTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Option/Type/File/ValidatorInfoTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Type/AbstractTypeTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Type/PriceTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Type/VirtualTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Product/TypeTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Product/UrlTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Product/_files/service_product_create.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Product/_files/service_product_create_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/ProductExternalTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/ProductGettersTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/ProductPriceTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/ProductRepositoryTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/ProductTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/ResourceModel/Attribute/WebsiteAttributesSynchronizerTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/ResourceModel/Eav/AttributeTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/ResourceModel/Product/CollectionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/ResourceModel/Product/Indexer/Eav/SourceTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/ResourceModel/Product/Link/Product/CollectionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/ResourceModel/_files/product_simple.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/ResourceModel/_files/url_rewrites.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/ResourceModel/_files/website_attribute_sync.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/ResourceModel/_files/website_attribute_sync_flag.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/ResourceModel/_files/website_attribute_sync_flag_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/ResourceModel/_files/website_attribute_sync_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Model/Webapi/Product/Option/Type/File/ProcessorTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Observer/SwitchPriceAttributeScopeOnConfigChangeTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Plugin/Model/AttributeSetRepository/RemoveProductsTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Pricing/Render/FinalPriceBox/RenderingBasedOnIsProductListFlagTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Pricing/Render/FinalPriceBoxTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Ui/DataProvider/Product/Attributes/ListingTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/CategoriesTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/EavTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/_files/eav_expected_data_output.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/_files/eav_expected_meta_output.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/_files/eav_expected_meta_output_w_default.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/_files/expected_categories.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/_files/input_meta_for_categories.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/WidgetTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/attribute_set_with_image_attribute.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/attribute_set_with_image_attribute_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/attribute_set_with_product.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/attribute_set_with_product_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/attribute_set_with_renamed_group.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/catalog_category_with_apostrophe.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/catalog_category_with_apostrophe_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/categories.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/categories_no_products.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/categories_no_products_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/categories_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/category.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/category_attribute.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/category_attribute_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/category_backend.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/category_backend_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/category_duplicates.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/category_product.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/category_product_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/category_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/category_tree.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/category_tree_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/category_with_position.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/category_with_position_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/category_with_two_stores.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/category_with_two_stores_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/dropdown_attribute.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/empty_attribute_group.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/empty_attribute_group_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/enable_price_index_schedule.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/enable_price_index_schedule_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/enable_reindex_schedule.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/enable_reindex_schedule_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/etc/extension_attributes.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/filterable_attributes.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/indexer_catalog_category.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/indexer_catalog_category_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/indexer_catalog_product_categories.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/indexer_catalog_product_categories_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/indexer_catalog_products.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/indexer_catalog_products_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/magento_empty.jpg
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/magento_image.jpg
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/magento_small_image.jpg
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/magento_thumbnail.jpg
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/multiple_products.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/multiple_products_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/multiple_products_with_non_saleable_product.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/multiple_products_with_non_saleable_product_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/multiselect_attribute.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/multiselect_attribute_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/multiselect_attribute_with_incorrect_values.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/order_item_with_product_and_custom_options.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/order_item_with_product_and_custom_options_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/price_row_fixture.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/price_row_fixture_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/product_associated.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/product_associated_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/product_attribute.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/product_attribute_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/product_attribute_with_invalid_apply_to.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/product_different_store_prices.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/product_different_store_prices_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/product_group_prices_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/product_has_tier_price_show_as_low_as.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/product_has_tier_price_show_as_low_as_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/product_image.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/product_image_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_duplicated.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_duplicated_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_multistore.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_multistore_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_out_of_stock.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_out_of_stock_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_sku_with_slash.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_sku_with_slash_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_with_admin_store.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_with_custom_options.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_with_custom_options_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_with_decimal_qty.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_with_decimal_qty_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_with_url_key.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_xss.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/product_special_price.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/product_special_price_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/product_text_attribute.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/product_virtual.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/product_virtual_in_stock.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/product_virtual_in_stock_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/product_virtual_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/product_with_dropdown_option.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/product_with_dropdown_option_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/product_with_image.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/product_with_image_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/product_with_options.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/product_with_options_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/product_with_two_websites.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/product_with_two_websites_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/product_without_options.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/product_without_options_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/products.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/products_crosssell.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/products_crosssell_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/products_for_search.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/products_for_search_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/products_in_category.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/products_in_category_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/products_new.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/products_new_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/products_related.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/products_related_multiple.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/products_related_multiple_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/products_related_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/products_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/products_upsell.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/products_upsell_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/products_with_multiselect_attribute.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/products_with_multiselect_attribute_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/products_with_unique_input_attribute.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/products_with_websites_and_stores.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/products_with_websites_and_stores_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/quote_with_product_and_custom_options.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/quote_with_product_and_custom_options_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/row_fixture.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/row_fixture_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/second_product_simple.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/second_product_simple_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/second_website.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/second_website_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/text_attribute_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/unique_input_attribute.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/url_rewrites.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/url_rewrites_invalid.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/url_rewrites_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/validate_image.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/validate_image_info.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/validate_image_info_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/validate_image_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/_files/watermark.jpg
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/controllers/_files/attribute_system.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/controllers/_files/attribute_system_popup.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/controllers/_files/attribute_system_with_applyto_data.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/controllers/_files/attribute_user_defined.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/controllers/_files/product_image.png
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/controllers/_files/products.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Catalog/controllers/_files/products_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/AbstractProductExportImportTestCase.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Export/ProductTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/Product/Type/AbstractTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/ProductTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/custom_attributes.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/custom_attributes_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/import_media.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/import_media_existing_images.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/import_media_two_stores.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/import_new_categories_custom_separator.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/import_new_categories_default_separator.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/import_with_filesystem_images.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/import_with_filesystem_images_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/magento_additional_image_error.jpg
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/magento_additional_image_one.jpg
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/magento_additional_image_two.jpg
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/media_import_image.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/media_import_image_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/product_to_import_invalid_weight.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/product_with_custom_options.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/product_with_custom_options_and_multiple_store_views.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/product_with_custom_options_new.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_duplicate_category.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_multiple_stores.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_check_duplicated_names.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_check_duplicated_url_keys.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_check_valid_url_keys.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_check_valid_url_keys_multiple_stores.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_import.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_import_invalid_attribute_set.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_import_with_additional_attributes.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_import_with_changed_sku_case.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_import_with_datetime.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_import_with_multiple_store.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_import_with_new_attribute_set.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_import_with_product_links.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_import_with_qty.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_import_with_two_stores.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_import_with_use_config_settings.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_import_with_valid_url_keys.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_import_without_url_keys.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_with_invalid_multiselect_values.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/ProductTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/_files/product_export_data.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/_files/product_export_data_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/_files/product_export_data_special_chars.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/_files/product_export_data_special_chars_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/_files/product_export_with_categories.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/_files/product_export_with_images.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/_files/product_export_with_images_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/_files/product_export_with_product_links_data.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogImportExport/_files/product_export_with_product_links_data_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogInventory/Api/StockItemSaveTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogInventory/Block/Adminhtml/Form/Field/CustomergroupTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogInventory/Model/Indexer/Stock/Action/FullTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogInventory/Model/Indexer/Stock/Action/RowTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogInventory/Model/Indexer/Stock/Action/RowsTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogInventory/Model/Quote/Item/QuantityValidatorTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogInventory/Model/ResourceModel/Indexer/Stock/DefaultStockTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogInventory/Model/Stock/ItemTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogInventory/Model/StockItemSave/ByStockItemRepositoryTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogInventory/Model/StockItemSave/OnProductCreate/ByProductModel/ByQuantityAndStockStatusTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogInventory/Model/StockItemSave/OnProductCreate/ByProductModel/ByStockDataTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogInventory/Model/StockItemSave/OnProductCreate/ByProductModel/ByStockItemTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogInventory/Model/StockItemSave/OnProductCreate/ByProductRepository/ByQuantityAndStockStatusTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogInventory/Model/StockItemSave/OnProductCreate/ByProductRepository/ByStockDataTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogInventory/Model/StockItemSave/OnProductCreate/ByProductRepository/ByStockItemTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogInventory/Model/StockItemSave/OnProductUpdate/ByProductModel/ByQuantityAndStockStatusTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogInventory/Model/StockItemSave/OnProductUpdate/ByProductModel/ByStockDataTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogInventory/Model/StockItemSave/OnProductUpdate/ByProductModel/ByStockItemTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogInventory/Model/StockItemSave/OnProductUpdate/ByProductRepository/ByQuantityAndStockStatusTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogInventory/Model/StockItemSave/OnProductUpdate/ByProductRepository/ByStockDataTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogInventory/Model/StockItemSave/OnProductUpdate/ByProductRepository/ByStockItemTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogInventory/Model/StockItemSave/StockItemDataChecker.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogInventory/Model/System/Config/Backend/MinsaleqtyTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogInventory/Observer/AddStockItemsObserverTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogRule/Model/Indexer/BatchIndexTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogRule/Model/Indexer/IndexerBuilderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogRule/Model/Indexer/ProductRuleTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogRule/Model/Indexer/RuleProductTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogRule/Model/ResourceModel/Rule/CollectionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogRule/Model/RuleTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogRule/_files/attribute.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogRule/_files/attribute_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogRule/_files/catalog_rule_10_off_not_logged.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogRule/_files/catalog_rule_10_off_not_logged_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogRule/_files/rule_by_attribute.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogRule/_files/rule_by_attribute_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogRule/_files/rule_by_category_ids.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogRule/_files/two_rules.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogRule/_files/two_rules_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogSearch/Block/Advanced/ResultTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogSearch/Block/ResultTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogSearch/Block/TermTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogSearch/Controller/AjaxTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogSearch/Controller/ResultTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogSearch/Helper/DataTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogSearch/Model/Adapter/Mysql/BaseSelectStrategy/BaseSelectAttributesSearchStrategyTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogSearch/Model/Adapter/Mysql/BaseSelectStrategy/BaseSelectFullTextSearchStrategyTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogSearch/Model/Indexer/Fulltext/Action/DataProviderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogSearch/Model/Indexer/Fulltext/Action/FullTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogSearch/Model/Indexer/FulltextTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogSearch/Model/Indexer/IndexSwitcherMock.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogSearch/Model/Indexer/SwitcherUsedInFulltextTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogSearch/Model/Layer/Filter/AttributeTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogSearch/Model/Layer/Filter/CategoryTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogSearch/Model/Layer/Filter/DecimalTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogSearch/Model/Layer/Filter/PriceTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogSearch/Model/ResourceModel/Advanced/CollectionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogSearch/Model/ResourceModel/Fulltext/CollectionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogSearch/Model/Search/FilterMapper/CustomAttributeFilterTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogSearch/Model/Search/FilterMapper/StockStatusFilterTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogSearch/Model/Search/FilterMapper/VisibilityFilterTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogSearch/Model/Search/RequestGeneratorTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogSearch/_files/full_reindex.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogSearch/_files/indexer_fulltext.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogSearch/_files/indexer_fulltext_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogSearch/_files/product_configurable_not_available.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogSearch/_files/product_configurable_not_available_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogSearch/_files/product_configurable_with_single_child.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogSearch/_files/product_configurable_with_single_child_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogSearch/_files/product_for_search.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogSearch/_files/product_for_search_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogSearch/_files/products_for_index.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogSearch/_files/products_for_index_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogSearch/_files/query.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogSearch/_files/query_redirect.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogSearch/_files/search_attributes.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogSearch/_files/search_attributes_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogSearch/_files/searchable_attribute.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogUrlRewrite/Model/CategoryUrlRewriteGeneratorTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogUrlRewrite/Model/ProductUrlRewriteGeneratorTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogUrlRewrite/Observer/CategoryProcessUrlRewriteSavingObserverTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogUrlRewrite/Plugin/Catalog/Block/Adminhtml/Category/Tab/AttributesTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogUrlRewrite/_files/categories.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogUrlRewrite/_files/categories_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogUrlRewrite/_files/categories_with_product_ids.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogUrlRewrite/_files/categories_with_products.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogUrlRewrite/_files/categories_with_products_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogUrlRewrite/_files/product_simple.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogUrlRewrite/_files/product_with_category.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogUrlRewrite/_files/product_with_category_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogWidget/Block/Product/ProductListTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogWidget/Block/Product/Widget/ConditionsTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CatalogWidget/Model/Rule/Condition/ProductTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/Api/PaymentInformationManagementTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/Block/Cart/AbstractCartTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/Block/Cart/GridTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/Block/CartTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/Controller/Cart/Index/CouponPostTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/Controller/CartTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/Model/CartTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/Model/SessionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/ValidatorFileMock.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/active_quote.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/active_quote_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/cart.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/customers.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/discount_10percent.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/discount_10percent_generalusers.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/discount_10percent_generalusers_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/discount_10percent_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/order_items.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/orders.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/product_bundle.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/product_with_custom_option.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/products.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/quote.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_address.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_address_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_address_saved.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_address_saved_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_bundle_and_options.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_bundle_and_options_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_bundle_product.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_check_payment.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_check_payment_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_coupon_saved.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_coupon_saved_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_downloadable_product.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_items_and_custom_options_saved.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_items_and_custom_options_saved_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_items_saved.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_items_saved_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_payment_saved.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_payment_saved_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_product_and_payment.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_shipping_method.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_shipping_method_and_items_categories.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_shipping_method_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_simple_product.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_simple_product_and_custom_option.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_simple_product_and_image.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_simple_product_and_image_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_simple_product_saved.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_simple_product_saved_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_virtual_product_and_address.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_virtual_product_and_address_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_virtual_product_saved.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_virtual_product_saved_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/rollback_quote.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/set_product_min_in_cart.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Checkout/_files/simple_product.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CheckoutAgreements/Model/Checkout/Plugin/GuestValidationTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CheckoutAgreements/_files/agreement_active_with_html_content.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CheckoutAgreements/_files/agreement_active_with_html_content_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CheckoutAgreements/_files/agreement_inactive_with_text_content.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CheckoutAgreements/_files/agreement_inactive_with_text_content_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CheckoutAgreements/_files/multi_agreements_active_with_text.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CheckoutAgreements/_files/multi_agreements_active_with_text_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Cms/Block/BlockTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Cms/Block/PageTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Cms/Block/Widget/BlockTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/IndexTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/OnInsertTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Cms/Controller/Noroute/IndexTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Cms/Controller/PageTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Cms/Controller/RouterTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Cms/Helper/PageTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Cms/Helper/Wysiwyg/ImagesTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Cms/Model/BlockTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Cms/Model/PageTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Cms/Model/Wysiwyg/ConfigTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Cms/Model/Wysiwyg/Images/StorageTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Cms/Setup/ContentConverterTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Cms/_files/block.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Cms/_files/noroute.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Cms/_files/pages.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Config/App/Config/Type/SystemTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Config/Block/System/Config/FieldArray.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Config/Block/System/Config/FormStub.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Config/Block/System/Config/FormTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Config/Block/System/Config/_files/test_config.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Config/Block/System/Config/_files/test_system.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Config/Console/Command/ConfigSetCommandTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Config/Console/Command/ConfigShowCommandTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Config/Controller/Adminhtml/System/ConfigTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Config/Model/Config/Backend/Admin/RobotsTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Config/Model/Config/Backend/BaseurlTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Config/Model/Config/Backend/EncryptedTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Config/Model/Config/Backend/FileTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Config/Model/Config/Backend/Image/AdapterTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Config/Model/Config/Processor/EnvironmentPlaceholderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Config/Model/ConfigTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Config/Model/ResourceModel/ConfigTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Config/Model/_files/config_groups.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Config/Model/_files/config_section.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Config/Model/_files/no_robots_txt.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Config/Model/_files/robots.txt
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Config/Model/_files/robots_txt.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Config/_files/config.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Config/_files/config_data.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Config/_files/env.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ConfigurableImportExport/Model/ConfigurableTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ConfigurableImportExport/Model/Export/RowCustomizerTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ConfigurableImportExport/Model/Import/Product/Type/ConfigurableTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ConfigurableImportExport/Model/Import/_files/import_configurable.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ConfigurableImportExport/Model/Import/_files/import_configurable_12345.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ConfigurableProduct/Block/Adminhtml/Product/Edit/Tab/Variations/Config/MatrixTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ConfigurableProduct/Block/Product/View/Type/ConfigurableTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ConfigurableProduct/Controller/Adminhtml/ProductTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ConfigurableProduct/Controller/CartTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ConfigurableProduct/Model/Category/ProductIndexerTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ConfigurableProduct/Model/OptionRepositoryTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ConfigurableProduct/Model/Product/Type/Configurable/AttributeTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ConfigurableProduct/Model/Product/Type/Configurable/PriceTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ConfigurableProduct/Model/Product/Type/ConfigurableTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ConfigurableProduct/Model/Product/VariationHandlerTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ConfigurableProduct/Model/ResourceModel/Product/Indexer/Price/ConfigurableTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ConfigurableProduct/Model/ResourceModel/Product/Indexer/Stock/ConfigurableTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ConfigurableProduct/Pricing/Price/LowestPriceOptionProviderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ConfigurableProduct/Pricing/Price/SpecialPriceIndexerTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ConfigurableProduct/Pricing/Price/SpecialPriceTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ConfigurableProduct/Pricing/Render/FinalPriceBox/RenderingBasedOnIsProductListFlagTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/Data/AssociatedProductsTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/associated_products.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/configurable_attribute.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/configurable_attribute_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/configurable_products.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/configurable_products_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/delete_association.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/order_item_with_configurable_and_options.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/order_item_with_configurable_and_options_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/product_configurable.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/product_configurable_12345.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/product_configurable_12345_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/product_configurable_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/product_configurable_sku.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/product_configurable_sku_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/product_simple_77.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/quote_with_configurable_product.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/quote_with_configurable_product_last_variation.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/quote_with_configurable_product_last_variation_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/quote_with_configurable_product_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/tax_rule.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ConfigurableProduct/etc/extension_attributes.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Contact/Controller/IndexTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Contact/Helper/DataTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Contact/Model/ConfigTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Cookie/Model/Config/Backend/DomainTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Cookie/Model/Config/Backend/LifetimeTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Cookie/Model/Config/Backend/PathTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Cron/Model/ScheduleTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Cron/Observer/ProcessCronQueueObserverTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CurrencySymbol/Controller/Adminhtml/System/Currency/FetchRatesTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CurrencySymbol/Controller/Adminhtml/System/Currency/IndexTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CurrencySymbol/Controller/Adminhtml/System/Currency/SaveRatesTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CurrencySymbol/Controller/Adminhtml/System/Currencysymbol/IndexTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CurrencySymbol/Controller/Adminhtml/System/Currencysymbol/SaveTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CurrencySymbol/Model/System/CurrencysymbolTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Api/AddressRepositoryTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Block/Account/Dashboard/AddressTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Block/Account/Dashboard/InfoTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Block/Account/DashboardTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Block/Address/BookTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Block/Address/EditTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Block/Address/Renderer/DefaultRendererTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Block/Adminhtml/Edit/Tab/CartTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Block/Adminhtml/Edit/Tab/CartsTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Block/Adminhtml/Edit/Tab/NewsletterTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Block/Adminhtml/Edit/Tab/OrdersTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Block/Adminhtml/Edit/Tab/View/CartTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Block/Adminhtml/Edit/Tab/View/PersonalInfoTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Block/Adminhtml/Edit/Tab/View/SalesTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Block/Adminhtml/Edit/Tab/ViewTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Block/Adminhtml/EditTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Block/Adminhtml/Group/Edit/FormTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Block/Adminhtml/Group/EditTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Block/Form/RegisterTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Block/Widget/CompanyTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Block/Widget/DobTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Block/Widget/FaxTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Block/Widget/GenderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Block/Widget/NameTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Block/Widget/TaxvatTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Block/Widget/TelephoneTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Controller/AccountTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Controller/AddressTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Controller/Adminhtml/Cart/Product/Composite/CartTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Controller/Adminhtml/GroupTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Controller/Adminhtml/Index/MassAssignGroupTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Controller/Adminhtml/Index/MassDeleteTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Controller/Adminhtml/Index/MassSubscribeTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Controller/Adminhtml/Index/ResetPasswordTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Controller/Adminhtml/IndexTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Controller/AjaxLoginTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Controller/Section/LoadTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Helper/AddressTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Helper/ViewTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Model/AccountManagementTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Model/AddressMetadataTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Model/AddressRegistryTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Model/AddressTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Model/Config/ShareTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Model/Config/Source/Group/MultiselectTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Model/Config/Source/GroupTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Model/CustomerMetadataTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Model/CustomerRegistryTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Model/CustomerTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Model/FileResolverStub.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Model/FormTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Model/GroupManagementTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Model/GroupRegistryTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Model/GroupTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Model/Metadata/FormFactoryTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Model/Metadata/FormTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Model/ResourceModel/Address/CollectionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Model/ResourceModel/AddressRepositoryTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Model/ResourceModel/Customer/CollectionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Model/ResourceModel/CustomerRepositoryTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Model/ResourceModel/Grid/CollectionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Model/ResourceModel/Group/Grid/ServiceCollectionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Model/ResourceModel/GroupRepositoryTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Model/SessionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/Model/VisitorTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/_files/attribute_user_defined_address.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/_files/attribute_user_defined_address_custom_attribute.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/_files/attribute_user_defined_address_custom_attribute_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/_files/attribute_user_defined_address_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/_files/attribute_user_defined_custom_attribute.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/_files/attribute_user_defined_custom_attribute_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/_files/attribute_user_defined_customer.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/_files/attribute_user_defined_customer_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/_files/attribute_user_fullname.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/_files/customer.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/_files/customer_address.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/_files/customer_address_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/_files/customer_from_repository.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/_files/customer_grid_indexer_enabled_update_on_schedule.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/_files/customer_grid_indexer_enabled_update_on_schedule_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/_files/customer_group.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/_files/customer_no_address.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/_files/customer_non_default_website_id.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/_files/customer_non_default_website_id_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/_files/customer_primary_addresses.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/_files/customer_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/_files/customer_rp_token.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/_files/customer_sample.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/_files/customer_two_addresses.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/_files/customer_with_website.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/_files/etc/extension_attributes.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/_files/import_export/customer.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/_files/import_export/customer_with_addresses.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/_files/import_export/customers.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/_files/import_export/customers_for_address_import.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/_files/inactive_customer.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/_files/quote.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/_files/sales_order.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/_files/three_customers.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/_files/twenty_one_customers.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/_files/two_customers.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Customer/etc/extension_attributes.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CustomerImportExport/Model/Export/AddressTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CustomerImportExport/Model/Export/CustomerTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CustomerImportExport/Model/Import/AddressTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CustomerImportExport/Model/Import/CustomerCompositeTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CustomerImportExport/Model/Import/CustomerTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CustomerImportExport/Model/Import/_files/address_import_delete.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CustomerImportExport/Model/Import/_files/address_import_update.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CustomerImportExport/Model/Import/_files/customer_composite_delete.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CustomerImportExport/Model/Import/_files/customer_composite_update.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CustomerImportExport/Model/Import/_files/customer_to_import_with_one_additional_column.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CustomerImportExport/Model/Import/_files/customers_to_delete.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/CustomerImportExport/Model/Import/_files/customers_to_import.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/Console/Command/App/ApplicationDumpCommandTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/Console/Command/App/ConfigImportCommand/IntegrationTestImporter.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/Console/Command/App/ConfigImportCommand/IntegrationTestSecondImporter.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/Console/Command/App/ConfigImportCommandTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/Console/Command/App/SensitiveConfigSetCommandTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/DeployTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/_files/_config.local.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/_files/config.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/_files/config_data.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/_files/lib/web/test.js
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/_files/map.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/_files/requirejs-map.js
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/_files/scopes/config_with_changed_stores.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/_files/scopes/config_with_removed_stores.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/_files/scopes/config_with_stores.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/_files/theme.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/_files/theme_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/_files/zoom1/LICENSE.txt
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/_files/zoom1/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/_files/zoom1/composer.json
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/_files/zoom1/etc/view.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/_files/zoom1/registration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/_files/zoom1/theme.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/_files/zoom1/web/css/root.less
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/_files/zoom1/web/images/logo-magento-1.png
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/_files/zoom1/web/images/logo-magento-2.png
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/_files/zoom1/web/images/logo-magento-3.png
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/_files/zoom1/web/js/file1.js
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/_files/zoom1/web/js/file2.js
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/_files/zoom1/web/js/file3.js
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/_files/zoom1/web/js/file4.js
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/_files/zoom2/LICENSE.txt
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/_files/zoom2/LICENSE_AFL.txt
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/_files/zoom2/composer.json
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/_files/zoom2/etc/view.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/_files/zoom2/registration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/_files/zoom2/theme.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/_files/zoom2/web/css/_testA.less
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/_files/zoom2/web/css/_testB.less
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/_files/zoom2/web/css/root.less
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/_files/zoom2/web/images/logo-magento-2.png
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/_files/zoom2/web/js/file2.js
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/_files/zoom3/LICENSE.txt
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/_files/zoom3/composer.json
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/_files/zoom3/etc/view.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/_files/zoom3/registration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/_files/zoom3/theme.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/_files/zoom3/web/css/_testA.less
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/_files/zoom3/web/css/local.css
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/_files/zoom3/web/images/logo-magento-3.png
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Deploy/_files/zoom3/web/js/file3.js
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Developer/Console/Command/SourceThemeDeployCommandTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Developer/Helper/DataTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Developer/Model/Config/Backend/AllowedIpsTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Developer/Model/Logger/Handler/DebugTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Dhl/Block/Adminhtml/UnitofmeasureTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Directory/Block/DataTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Directory/Helper/DataTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Directory/Model/Country/Postcode/Config/ReaderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Directory/Model/Country/Postcode/ValidatorTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Directory/Model/CurrencyConfigTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Directory/Model/ObserverTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Directory/Model/PriceCurrencyTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/LinksTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/SamplesTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Downloadable/Controller/Adminhtml/_files/sample.txt
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Downloadable/Controller/ProductTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Downloadable/Model/Observer/SetLinkStatusObserverTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Downloadable/Model/Product/TypeTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Downloadable/Model/ResourceModel/Indexer/PriceTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Downloadable/_files/order_item_with_downloadable_and_options.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Downloadable/_files/order_item_with_downloadable_and_options_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Downloadable/_files/order_with_downloadable_product.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Downloadable/_files/order_with_downloadable_product_with_additional_options.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Downloadable/_files/product_downloadable.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Downloadable/_files/product_downloadable_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Downloadable/_files/product_downloadable_with_files.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Downloadable/_files/product_downloadable_with_files_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Downloadable/_files/quote_with_downloadable_product.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Downloadable/_files/quote_with_downloadable_product_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Downloadable/_files/test_image.jpg
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Downloadable/etc/extension_attributes.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/DownloadableImportExport/Model/DownloadableTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/DownloadableImportExport/Model/Import/Product/Type/DownloadableTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/DownloadableImportExport/Model/Import/_files/import_downloadable.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Eav/Block/Adminhtml/Attribute/Edit/Main/AbstractMainTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Eav/Model/Attribute/GroupRepositoryTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Eav/Model/AttributeManagementTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Eav/Model/AttributeRepositoryTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Eav/Model/ConfigTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Eav/Model/Entity/Attribute/Frontend/DefaultFrontendTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Eav/Model/Entity/AttributeLoaderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Eav/Model/ResourceModel/AttributeLoaderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Eav/Model/ResourceModel/Entity/Attribute/CollectionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Eav/Model/ResourceModel/UpdateHandlerTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Eav/Model/Validator/Attribute/BackendTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Eav/Setup/EavSetupTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Eav/_files/attribute_for_search.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Eav/_files/attribute_group_for_search.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Eav/_files/attribute_set_for_search.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Eav/_files/attribute_set_for_search_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Eav/_files/empty_attribute_set.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Eav/_files/empty_attribute_set_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Email/Block/Adminhtml/Template/Edit/FormTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Email/Controller/Adminhtml/Email/TemplateTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Email/Model/Template/FilterTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Email/Model/TemplateTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Email/Model/_files/code/Magento/Email/view/email/footer.html
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Email/Model/_files/code/Magento/Email/view/email/header.html
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Email/Model/_files/design/adminhtml/Magento/default/Magento_Email/layout/email_template_test_handle.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Email/Model/_files/design/adminhtml/Magento/default/Magento_Email/templates/sample_email_content.phtml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Email/Model/_files/design/adminhtml/Magento/default/Magento_ProductAlert/email/cron_error.html
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Email/Model/_files/design/adminhtml/Magento/default/registration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Email/Model/_files/design/adminhtml/Magento/default/theme.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Email/Model/_files/design/adminhtml/Vendor/custom_theme/registration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Email/Model/_files/design/adminhtml/Vendor/custom_theme/theme.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Email/Model/_files/design/adminhtml/Vendor/default/registration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Email/Model/_files/design/adminhtml/Vendor/default/theme.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Magento/default/Magento_Customer/email/account_new_confirmed.html
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Magento/default/Magento_Email/layout/email_template_test_handle.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Magento/default/Magento_Email/templates/sample_email_content.phtml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Magento/default/Magento_Email/templates/sample_email_content_custom.phtml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Magento/default/registration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Magento/default/theme.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Magento/default/web/css/email-3.less
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Magento/default/web/css/email-inline-3.less
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Magento/default/web/css/file-with-error.less
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Vendor/custom_theme/Magento_Customer/email/account_new.html
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Vendor/custom_theme/registration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Vendor/custom_theme/theme.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Vendor/custom_theme/web/css/email-1.less
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Vendor/custom_theme/web/css/email-inline-1.less
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Vendor/default/Magento_Customer/email/account_new_confirmation.html
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Vendor/default/registration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Vendor/default/theme.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Vendor/default/web/css/email-2.less
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Vendor/default/web/css/email-inline-2.less
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Email/Model/_files/email_template.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Email/Model/_files/template_fixture.html
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/EncryptionKey/Block/Adminhtml/Crypt/Key/EditTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/EncryptionKey/Block/Adminhtml/Crypt/Key/FormTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/EncryptionKey/Controller/Adminhtml/Crypt/Key/IndexTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/EncryptionKey/Controller/Adminhtml/Crypt/Key/SaveTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/EncryptionKey/Model/ResourceModel/Key/ChangeTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/EncryptionKey/_files/payment_info.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Fedex/Model/CarrierTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Fedex/Model/Source/UnitofmeasureTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Api/AbstractExtensibleObjectTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Api/ExtensionAttribute/Config/ReaderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Api/ExtensionAttribute/Config/_files/config_one.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Api/ExtensionAttribute/Config/_files/config_two.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Api/ExtensionAttribute/JoinProcessorTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Api/ExtensionAttributesFactoryTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Api/_files/Magento/Wonderland/Api/Data/FakeAddressInterface.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Api/_files/Magento/Wonderland/Api/Data/FakeExtensibleOneInterface.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Api/_files/Magento/Wonderland/Api/Data/FakeExtensibleTwoInterface.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Api/_files/Magento/Wonderland/Api/Data/FakeRegionInterface.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Api/_files/Magento/Wonderland/Model/Data/FakeAddress.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Api/_files/Magento/Wonderland/Model/Data/FakeExtensibleOne.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Api/_files/Magento/Wonderland/Model/Data/FakeExtensibleTwo.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Api/_files/Magento/Wonderland/Model/Data/FakeRegion.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Api/_files/Magento/Wonderland/Model/FakeAddress.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Api/_files/Magento/Wonderland/Model/FakeRegion.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Api/_files/extension_attributes.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Api/etc/extension_attributes.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/AreaTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/Config/BaseTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/Config/DataTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/Config/InitialTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/FrontControllerTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/Language/DictionaryTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/bar/en_gb/1.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/bar/en_gb/language.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/bar/en_gb/registration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/bar/en_us/a.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/bar/en_us/b.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/bar/en_us/language.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/bar/en_us/registration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/baz/en_gb/1.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/baz/en_gb/language.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/baz/en_gb/registration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/first/en_us/1.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/first/en_us/language.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/first/en_us/registration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/foo/en_au/1.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/foo/en_au/2.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/foo/en_au/language.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/foo/en_au/registration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/my/ru_ru/1.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/my/ru_ru/language.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/my/ru_ru/registration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/second/en_gb/1.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/second/en_gb/language.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/second/en_gb/registration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/theirs/ru_ru/1.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/theirs/ru_ru/language.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/theirs/ru_ru/registration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/ObjectManager/ConfigLoaderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/ResourceConnection/ConnectionFactoryTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/Response/HeaderProvider/AbstractHeaderTestCase.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/Response/HeaderProvider/HstsTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/Response/HeaderProvider/UpgradeInsecureTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/Response/HeaderProvider/XFrameOptionsTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/Route/ConfigTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/Router/BaseTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/Utility/FilesTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/Utility/_files/fixtures/language/One.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/Utility/_files/fixtures/language/one.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/Utility/_files/fixtures/language/registration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/Utility/_files/fixtures/library/One.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/Utility/_files/fixtures/library/registration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/Utility/_files/fixtures/module/One.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/Utility/_files/fixtures/module/registration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/Utility/_files/fixtures/theme/One.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/Utility/_files/fixtures/theme/registration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/Utility/_files/patterns/paths_one.txt
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/Utility/_files/patterns/paths_two.txt
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/App/View/Deployment/VersionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Backup/FilesystemTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Backup/_files/var/backups/1474538269_filesystem_code.tgz
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Cache/Backend/MongoDbTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Cache/CoreTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Code/GeneratorTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Code/GeneratorTest/ParentClassWithNamespace.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Code/GeneratorTest/SourceClassWithNamespace.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Code/GeneratorTest/SourceClassWithNamespaceExtension.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Code/Reader/SourceArgumentsReaderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Code/Reader/_files/SourceArgumentsReaderTest.php.sample
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Code/_expected/SourceClassWithNamespaceExtensionInterfaceFactory.php.sample
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Code/_expected/SourceClassWithNamespaceFactory.php.sample
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Code/_expected/SourceClassWithNamespaceInterceptor.php.sample
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Code/_expected/SourceClassWithNamespaceProxy.php.sample
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Code/_files/ClassToFind.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Communication/ConfigTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_incorrect_request_schema_type.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_invalid_topic_name.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_is_synchronous_is_not_boolean.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_missing_handler.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_missing_request.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_multiple_handlers_synchronous_mode.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_multiple_handlers_synchronous_mode.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_no_attributes.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_not_existing_handler_method.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_not_existing_handler_method.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_not_existing_service.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_not_existing_service_method.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_request_not_existing_service.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_request_not_existing_service.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_response_not_existing_service.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_response_not_existing_service.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_topic_with_excessive_keys.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_topic_with_missed_keys.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_topic_without_data.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_with_disabled_handler.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_with_non_matched_name.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Communication/_files/invalid_communication_numeric.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Communication/_files/valid_communication.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Communication/_files/valid_communication_expected.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Communication/_files/valid_communication_input.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Communication/_files/valid_communication_numeric.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Composer/ComposerInformationTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Composer/RemoveTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Composer/_files/testFromClone/.htaccess
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Composer/_files/testFromClone/cache/.htaccess
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Composer/_files/testFromClone/composer.json
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Composer/_files/testFromClone/composer.lock
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Composer/_files/testFromClone/vendor/README
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Composer/_files/testFromCreateProject/.htaccess
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Composer/_files/testFromCreateProject/cache/.htaccess
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Composer/_files/testFromCreateProject/composer.json
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Composer/_files/testFromCreateProject/composer.lock
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Composer/_files/testFromCreateProject/vendor/README
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Composer/_files/testSkeleton/.htaccess
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Composer/_files/testSkeleton/cache/.htaccess
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Composer/_files/testSkeleton/composer.json
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Composer/_files/testSkeleton/composer.lock
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Composer/_files/testSkeleton/vendor/README
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Composer/_files/vendor_path.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Config/ConverterTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/Adapter/CssInlinerTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/File/Collector/AggregatedTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/code/Magento/Other/registration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/code/Magento/Other/view/frontend/web/3.less
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/code/Magento/Third/registration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/code/Magento/Third/view/frontend/web/3.less
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/design/frontend/Test/default/MagentoFrameworkCssTest_Module/web/1.file
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/design/frontend/Test/default/MagentoFrameworkCssTest_Third/web/3.less
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/design/frontend/Test/default/registration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/design/frontend/Test/default/theme.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/design/frontend/Test/default/web/1.file
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/design/frontend/Test/parent/MagentoFrameworkCssTest_Module/web/1.file
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/design/frontend/Test/parent/MagentoFrameworkCssTest_Second/web/1.file
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/design/frontend/Test/parent/registration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/design/frontend/Test/parent/theme.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/lib/web/1.file
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/lib/web/2.file
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/lib/web/3.less
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/lib/web/some_dir/import_dir/import_in_magento_import.less
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/lib/web/some_dir/magento_import.less
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Css/_files/css/test-css-no-spaces.css
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Css/_files/css/test-css-with-spaces.css
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Css/_files/css/test-input.html
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/DB/Adapter/InterfaceTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/DB/Adapter/Pdo/MysqlTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/DB/DataConverter/DataConverterTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/DB/HelperTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/DB/TransactionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Data/Argument/Interpreter/BaseStringUtilsTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Data/Argument/Interpreter/StringUtilsTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Data/Form/Element/DateTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Data/Form/Element/FieldsetTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Data/Form/Element/ImageTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Data/Wysiwyg/NormalizerTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/DataObject/Copy/Config/ReaderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/DataObject/Copy/Config/_files/expectedArray.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/DataObject/Copy/Config/_files/fieldset.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/DataObject/Copy/Config/_files/partialFieldsetFirst.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/DataObject/Copy/Config/_files/partialFieldsetSecond.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/DataObject/CopyTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/DataObject/_files/Magento/Wonderland/Api/Data/FakeAttributeMetadataInterface.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/DataObject/_files/Magento/Wonderland/Api/Data/FakeCustomerInterface.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/DataObject/_files/Magento/Wonderland/Model/Data/FakeAttributeMetadata.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/DataObject/_files/Magento/Wonderland/Model/Data/FakeCustomer.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/DataObject/_files/Magento/Wonderland/Model/FakeAttributeMetadata.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/DataObject/_files/Magento/Wonderland/Model/FakeCustomer.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Encryption/EncryptorTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Encryption/ModelTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Error/ProcessorTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Exception/NoSuchEntityExceptionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/File/SizeTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Filesystem/Directory/ReadTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Filesystem/Directory/WriteTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Filesystem/Driver/FileTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Filesystem/File/ReadTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Filesystem/File/WriteTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Filesystem/FileResolverTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Filesystem/FilesystemTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Filesystem/_files/ClassToFind.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Filesystem/_files/data.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Filesystem/_files/foo/bar/baz/file_one.txt
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Filesystem/_files/foo/bar/file_two.txt
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Filesystem/_files/foo/file_three.txt
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Filesystem/_files/popup.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Filter/Template/Tokenizer/ParameterTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/HTTP/HeaderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/HTTP/PhpEnvironment/RemoteAddressTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/HTTP/PhpEnvironment/ServerAddressTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Image/Adapter/ConfigTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Image/Adapter/InterfaceTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Image/_files/image_adapters_test.png
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Image/_files/magento_thumbnail.jpg
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Image/_files/watermark.gif
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Image/_files/watermark.jpg
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Image/_files/watermark.png
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Interception/AbstractPlugin.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Interception/Fixture/Intercepted.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Interception/Fixture/Intercepted/FirstPlugin.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Interception/Fixture/Intercepted/InterfacePlugin.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Interception/Fixture/Intercepted/Plugin.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Interception/Fixture/InterceptedInterface.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Interception/Fixture/InterceptedParent.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Interception/Fixture/InterceptedParentInterface.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Interception/GeneralTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Interception/TwoPluginTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Json/Helper/DataTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Mail/MessageTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Message/CollectionFactoryTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Message/FactoryTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Message/ManagerTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Model/Entity/HydratorTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Model/ResourceModel/Db/AbstractTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Model/ResourceModel/Db/Collection/AbstractTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Model/ResourceModel/Db/ProfilerTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Model/ResourceModel/Entity/TableTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Model/ResourceModel/IteratorTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Model/ResourceModel/Type/Db/ConnectionFactoryTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Model/ResourceModel/Type/Db/Pdo/MysqlTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Model/ResourceTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Module/Plugin/DbStatusValidatorTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Mview/View/ChangelogTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/ObjectManager/Config/Reader/DomTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/ObjectManager/Factory/AbstractFactoryRuntimeDefinitionsTestCases.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/ObjectManager/Factory/CompiledTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/ObjectManager/Factory/Dynamic/DeveloperTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/ObjectManager/ObjectManagerTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/Basic.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/BasicInjection.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/ComplexDependencies.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/ConstructorEightArguments.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/ConstructorFiveArguments.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/ConstructorFourArguments.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/ConstructorNineArguments.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/ConstructorNoArguments.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/ConstructorOneArgument.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/ConstructorSevenArguments.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/ConstructorSixArguments.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/ConstructorTenArguments.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/ConstructorThreeArguments.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/ConstructorTwoArguments.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/DependsOnAlias.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/DependsOnInterface.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/HasOptionalParameters.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/InterfaceImplementation.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/InterfaceInjection.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/TestAssetInterface.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/ObjectManager/_files/config_merged.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/ObjectManager/_files/config_one.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/ObjectManager/_files/config_two.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Pricing/Helper/DataTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Profiler/Driver/Standard/Output/CsvfileTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Profiler/Driver/Standard/Output/HtmlTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Profiler/Driver/Standard/Output/_files/output.html
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Profiler/Driver/Standard/Output/_files/output_custom.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Profiler/Driver/Standard/Output/_files/output_default.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Profiler/Driver/Standard/Output/_files/timers.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/ProfilerTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Reflection/MethodsMapTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Search/Adapter/Mysql/AdapterTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Search/Adapter/Mysql/Builder/Query/MatchTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Search/Request/Config/ConverterTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Search/Request/Config/FileResolverStub.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Search/Request/Config/FileSystemReaderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Search/Request/MapperTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Search/_files/configurable_attribute.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Search/_files/configurable_attribute_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Search/_files/date_attribute.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Search/_files/date_attribute_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Search/_files/etc/search_request_1.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Search/_files/etc/search_request_2.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Search/_files/filterable_attribute.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Search/_files/filterable_attribute_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Search/_files/filterable_attributes.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Search/_files/filterable_attributes_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Search/_files/product_configurable.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Search/_files/product_configurable_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Search/_files/product_configurable_with_disabled_child.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Search/_files/product_configurable_with_disabled_child_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Search/_files/products.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Search/_files/products_multi_option.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Search/_files/products_multi_option_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Search/_files/products_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Search/_files/products_with_the_same_search_score.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Search/_files/products_with_the_same_search_score_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Search/_files/requests.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Search/_files/search_request.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Search/_files/search_request_config.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Search/_files/search_request_merged.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Search/_files/search_weight_products.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Search/_files/search_weight_products_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Session/Config/Validator/CookieDomainValidatorTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Session/Config/Validator/CookieLifetimeValidatorTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Session/Config/Validator/CookiePathValidatorTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Session/ConfigTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Session/SaveHandler/DbTableTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Session/SaveHandlerTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Session/SessionManagerTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Session/SidResolverTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Stdlib/Cookie/CookieScopeTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Stdlib/Cookie/PhpCookieManagerTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Stdlib/Cookie/PhpCookieReaderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Stdlib/DateTime/Filter/DateTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Stdlib/DateTime/Filter/DateTimeTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Translate/InlineTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Translate/_files/_inline_page_expected.html
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Translate/_files/_inline_page_original.html
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Translate/_files/_translation_data.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/TranslateCachingTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/TranslateTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Url/Helper/DataTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/UrlTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/Validator/FactoryTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/ValidatorFactoryTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/Asset/MinifierTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/Design/Fallback/RulePoolTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/Design/FileResolution/FallbackTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/Design/Theme/LabelTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/Design/Theme/ValidatorTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/Element/AbstractBlockTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/Element/TemplateTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/Element/Text/ListTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/Element/TextTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/Element/UiComponent/Config/Provider/TemplateTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/Element/_files/frontend/Magento/plushe/css/wrong.css
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/FileSystemTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/Fixture/Block/BrokenAction.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/Fixture/Block/BrokenConstructor.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/Fixture/Block/BrokenLayout.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/Layout/ElementTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/Layout/MergeTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/Layout/Reader/_files/_layout_update_block.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/Layout/Reader/_files/_layout_update_reference.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/catalog_category_default.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/catalog_category_layered.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/catalog_product_view.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/catalog_product_view_type_configurable.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/catalog_product_view_type_simple.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/checkout_index_index.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/customer_account.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/default.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/file_wrong.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/fixture_handle_one.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/fixture_handle_page_layout.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/fixture_handle_two.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/fixture_handle_with_page_layout.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/not_a_page_type.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/page_empty.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/print.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/sales_guest_print.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/sales_order_print.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/merged.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/LayoutArgumentObjectUpdater.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/LayoutArgumentSimpleUpdater.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/LayoutTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/LayoutTestWithExceptions.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/Model/Layout/MergeTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/Model/Layout/_files/layout/fixture_handle_one.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/Model/Layout/_files/layout/fixture_handle_two.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/Page/Config/Reader/HtmlTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/Page/Config/Reader/_files/_layout_update.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/Utility/Layout.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/Utility/LayoutTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/Utility/_files/layout/handle_one.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/Utility/_files/layout/handle_three.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/Utility/_files/layout/handle_two.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/Utility/_files/layout_merged/multiple_handles.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/Utility/_files/layout_merged/single_handle.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/Fixture_Module/registration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/Magento/ModuleA/view/adminhtml/product/product.css
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/Magento/ModuleB/view/adminhtml/images/gallery-image-base-label.png
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/Magento/ModuleC/view/adminhtml/images/allinone.png
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/Magento/ModuleC/view/adminhtml/images/logo.png
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/Magento/ModuleC/view/adminhtml/styles.css
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/UiComponent/expected/config.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/UiComponent/theme/Magento_Catalog/ui_component/test.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/UiComponent/theme/Magento_Customer/ui_component/test.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/UiComponent/theme/registration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/UiComponent/theme/theme.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/app/code/ViewTest_Module/registration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/custom_theme/ViewTest_Module/templates/fixture_template_two.phtml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/custom_theme/ViewTest_Module/web/fixture_script_two.js
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/custom_theme/i18n/en_US.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/custom_theme/registration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/custom_theme/templates/fixture_template_two.phtml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/custom_theme/theme.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/custom_theme/web/fixture_script_two.js
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/custom_theme/web/mage/script.js
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/custom_theme2/registration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/custom_theme2/theme.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/default/ViewTest_Module/templates/fixture_template.phtml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/default/ViewTest_Module/web/fixture_script.js
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/default/ViewTest_Module/web/i18n/ru_RU/fixture_script.js
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/default/i18n/en_US.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/default/registration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/default/templates/fixture_template.phtml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/default/theme.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/default/web/fixture_script.js
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/default/web/i18n/ru_RU/fixture_script.js
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/standalone_theme/registration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/standalone_theme/theme.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/lib/web/mage/script.js
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/layout/cacheable.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/layout/container_attributes.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/layout/non_cacheable.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/action_for_anonymous_parent_block.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/arguments.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/arguments_complex_values.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/arguments_object_type.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/arguments_object_type_updaters.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/arguments_url_type.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/get_block.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/group.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/ifconfig.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/move.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/move_alias_broken.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/move_broken.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/move_new_alias.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/move_the_same_alias.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/remove_cancellation.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/render.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/sort_after_after.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/sort_after_previous.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/sort_before_after.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/sort_before_before.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_with_exceptions/layout.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/static/expected/styles.magento.min.css
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/static/expected/test.min.js
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/static/theme/registration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/static/theme/theme.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/static/theme/web/css/preminified-styles.min.css
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/static/theme/web/css/styles.css
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Framework/View/_files/static/theme/web/js/test.js
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/GiftMessage/Model/OrderItemRepositoryTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/GiftMessage/Model/OrderRepositoryTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/GiftMessage/_files/empty_order.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/GiftMessage/_files/order_with_message.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/GiftMessage/_files/quote_with_customer_and_message.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/GiftMessage/_files/quote_with_customer_and_message_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/GiftMessage/_files/quote_with_item_message.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/GiftMessage/_files/quote_with_item_message_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/GiftMessage/_files/quote_with_message.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/GiftMessage/_files/quote_with_message_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/GiftMessage/_files/virtual_order.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/GoogleAdwords/Model/Validator/FactoryTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/GroupedImportExport/Model/GroupedTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/GroupedImportExport/Model/Import/Product/Type/GroupedTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/GroupedImportExport/Model/Import/_files/grouped_product.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/GroupedProduct/Model/Product/Type/GroupedTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/GroupedProduct/Model/ResourceModel/Product/Indexer/Price/GroupedTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/GroupedProduct/Model/ResourceModel/Product/Indexer/Stock/GroupedTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/GroupedProduct/Model/ResourceModel/Product/Type/Grouped/AssociatedProductsCollectionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/GroupedProduct/Pricing/Price/FinalPriceTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/GroupedProduct/_files/product_grouped.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/GroupedProduct/_files/product_grouped_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/GroupedProduct/_files/product_grouped_with_simple.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/GroupedProduct/_files/product_grouped_with_simple_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ImportExport/Block/Adminhtml/Export/Edit/FormTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ImportExport/Block/Adminhtml/Export/FilterTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ImportExport/Block/Adminhtml/Import/Edit/BeforeTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ImportExport/Block/Adminhtml/Import/Edit/FormTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ImportExport/Controller/Adminhtml/ExportTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ImportExport/Controller/Adminhtml/Import/HttpFactoryMock.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ImportExport/Controller/Adminhtml/Import/ValidateTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ImportExport/Controller/Adminhtml/Import/_files/catalog_product.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ImportExport/Controller/Adminhtml/Import/_files/incorrect_catalog_product_comma.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ImportExport/Controller/Adminhtml/Import/_files/incorrect_catalog_product_semicolon.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ImportExport/Controller/Adminhtml/Import/_files/test.txt
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ImportExport/Controller/Adminhtml/ImportTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ImportExport/Controller/Adminhtml/_files/products_duplicate_category.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ImportExport/Model/Export/AbstractStubEntity.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ImportExport/Model/Export/Entity/AbstractEavTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ImportExport/Model/Export/EntityAbstractTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ImportExport/Model/ExportTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ImportExport/Model/Import/Entity/EavAbstractTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ImportExport/Model/Import/Entity/_files/customers_for_validation_test.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ImportExport/Model/Import/EntityAbstractTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ImportExport/Model/ImportTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ImportExport/Model/ResourceModel/Import/DataTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ImportExport/Model/Source/Import/EntityTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ImportExport/_files/import_data.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ImportExport/_files/product.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Indexer/Controller/Adminhtml/IndexerTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Indexer/Model/Config/ConverterTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Indexer/Model/Config/_files/dependency_on_not_existing_indexer.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Indexer/Model/Config/_files/indexer.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Indexer/Model/Config/_files/indexer_with_circular_dependency.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Indexer/Model/Config/_files/result.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/InstantPurchase/CustomerData/InstantPurchaseTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/InstantPurchase/CustomerData/StubPaymentTokenFormatter.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/InstantPurchase/Model/InstantPurchaseTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/InstantPurchase/Model/PlaceOrderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/InstantPurchase/_files/fake_payment_token.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Integration/Block/Adminhtml/Integration/Activate/Permissions/Tab/WebapiTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Integration/Block/Adminhtml/Integration/Edit/FormTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Integration/Block/Adminhtml/Integration/Edit/Tab/InfoTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Integration/Block/Adminhtml/Integration/EditTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Integration/Block/Adminhtml/Integration/GridTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Integration/Block/Adminhtml/Integration/TokensTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Button/DeleteTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Button/EditTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Link/ActivateTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Integration/Controller/Adminhtml/IntegrationTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Integration/Model/AdminTokenServiceTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Integration/Model/AuthorizationServiceTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Integration/Model/Config/Consolidated/ReaderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Integration/Model/Config/Consolidated/_files/integration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Integration/Model/Config/Consolidated/_files/integrationA.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Integration/Model/Config/Consolidated/_files/integrationB.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Integration/Model/Config/Integration/ReaderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Integration/Model/Config/Integration/_files/api.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Integration/Model/Config/Integration/_files/apiA.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Integration/Model/Config/Integration/_files/apiB.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Integration/Model/Config/ReaderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Integration/Model/Config/_files/configA.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Integration/Model/Config/_files/configB.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Integration/Model/Config/_files/integration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Integration/Model/CustomerTokenServiceTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Integration/Model/ResourceModel/IntegrationTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Integration/Model/ResourceModel/Oauth/TokenTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Integration/_files/integration_all_permissions.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Integration/_files/integration_all_permissions_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/MediaStorage/Model/File/StorageTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/MemoryUsageTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Multishipping/Block/Checkout/Address/SelectTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Multishipping/Block/Checkout/AddressesTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Multishipping/Block/Checkout/OverviewTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Multishipping/Controller/CheckoutTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Multishipping/Model/Checkout/Type/MultishippingTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Newsletter/Block/Adminhtml/Queue/Edit/FormTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Newsletter/Block/Adminhtml/SubscriberTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Newsletter/Controller/Adminhtml/NewsletterQueueTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Newsletter/Controller/Adminhtml/NewsletterTemplateTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Newsletter/Controller/ManageTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Newsletter/Controller/SubscriberTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Newsletter/Helper/DataTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Newsletter/Model/Plugin/PluginTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Newsletter/Model/QueueTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Newsletter/Model/ResourceModel/Problem/CollectionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Newsletter/Model/ResourceModel/Subscriber/CollectionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Newsletter/Model/ResourceModel/SubscriberTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Newsletter/Model/SubscriberTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Newsletter/Model/TemplateTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Newsletter/_files/newsletter_sample.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Newsletter/_files/problems.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Newsletter/_files/queue.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Newsletter/_files/subscribers.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Newsletter/_files/subscribers_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Newsletter/_files/template.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/OfflineShipping/_files/tablerates.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/OfflineShipping/_files/tablerates_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/PageCache/Block/JavascriptTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/PageCache/Block/System/Config/Form/Field/ExportTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/PageCache/Model/ConfigTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/PageCache/Model/Layout/MergeTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/PageCache/Model/System/Config/Backend/TtlTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/PageCache/Model/System/Config/Backend/VarnishTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/PageCache/Model/_files/result.vcl
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/PageCache/Model/_files/test.vcl
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Payment/Block/InfoTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Payment/Block/Transparent/IframeTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Payment/Helper/DataTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Payment/Model/Config/ReaderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Payment/Model/ConfigTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Payment/Model/_files/payment.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Payment/Model/_files/payment2.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Payment/Observer/UpdateOrderStatusForPaymentMethodsObserverTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Payment/_files/order_status.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/Adminhtml/Paypal/ReportsTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/Block/Adminhtml/Billing/Agreement/View/Tab/InfoTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/Block/Billing/Agreement/ViewTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/Block/Bml/BannersTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/Block/Express/Review/BillingTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/Block/Express/ReviewTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/Block/Payment/Form/Billing/AgreementTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/CancelTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/DeleteTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/GridTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/IndexTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/ViewTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/Controller/Adminhtml/Billing/AgreementTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/Controller/Adminhtml/Paypal/Reports/DetailsTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/Controller/Adminhtml/Paypal/Reports/FetchTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/Controller/Adminhtml/Paypal/Reports/IndexTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/Controller/Billing/AgreementTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/Controller/ExpressTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/Controller/HostedproTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/Controller/Payflow/SilentPostTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/Controller/PayflowTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/Controller/PayflowadvancedTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/Helper/DataTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/Model/Api/NvpTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/Model/Api/PayflowNvpTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/Model/Config/Structure/Reader/ConverterStub.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/Model/Config/Structure/Reader/ReaderStub.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/Model/Config/Structure/Reader/ReaderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/Model/Config/Structure/Reader/_files/actual/config.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/Model/Config/Structure/Reader/_files/expected/config.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/Model/Express/CheckoutTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/Model/Hostedpro/RequestTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/Model/HostedproTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/Model/IpnTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/Model/PayflowproTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/Model/Payment/Method/Billing/AbstractAgreementTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/Model/Report/SettlementTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/Model/ResourceModel/Billing/Agreement/CollectionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/Model/VoidTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/_files/address_data.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/_files/billing_agreement.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/_files/configurable_attribute.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/_files/fixed_discount.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/_files/ipn.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/_files/ipn_refund.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/_files/order_express.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/_files/order_express_with_invoice_and_creditmemo.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/_files/order_express_with_invoice_and_shipping.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/_files/order_express_with_tax.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/_files/order_hostedpro.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/_files/order_payflow_link.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/_files/order_payflowpro.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/_files/product_configurable.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/_files/quote_express.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/_files/quote_express_configurable.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/_files/quote_express_with_customer.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/_files/quote_payflowpro.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/_files/quote_payment.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/_files/quote_payment_express.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/_files/quote_payment_express_with_customer.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/_files/quote_payment_payflow.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Paypal/_files/quote_with_fpt.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Persistent/Block/Header/AdditionalTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Persistent/Model/Checkout/GuestPaymentInformationManagementPluginTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Persistent/Model/ObserverTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Persistent/Model/Persistent/ConfigTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Persistent/Model/Persistent/_files/expectedArray.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Persistent/Model/Persistent/_files/expectedBlocksArray.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Persistent/Model/Persistent/_files/persistent.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Persistent/Model/SessionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Persistent/Observer/EmulateCustomerObserverTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Persistent/Observer/EmulateQuoteObserverTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Persistent/Observer/SynchronizePersistentOnLoginObserverTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Persistent/Observer/SynchronizePersistentOnLogoutObserverTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Persistent/_files/persistent.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ProductAlert/Model/EmailTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ProductAlert/Model/ObserverTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ProductAlert/_files/product_alert.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Quote/Model/Quote/Address/ConverterTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Quote/Model/Quote/AddressTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Quote/Model/Quote/Item/RepositoryTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Quote/Model/QuoteManagementTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Quote/Model/QuoteRepositoryTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Quote/Model/QuoteTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Quote/Model/ShippingMethodManagementTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Quote/Observer/Frontend/Quote/Address/CollectTotalsObserverTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Quote/_files/empty_quote.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Quote/_files/empty_quote_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Quote/_files/is_not_salable_product.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Quote/_files/is_salable_product.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Quote/etc/extension_attributes.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/ReleaseNotification/Model/ResourceModel/Viewer/LoggerTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Reports/Block/Adminhtml/Filter/FormTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Reports/Block/Adminhtml/GridTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Reports/Block/Adminhtml/Sales/Bestsellers/GridTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Reports/Block/Adminhtml/Sales/Coupons/GridTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Reports/Block/Adminhtml/Sales/Invoiced/GridTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Reports/Block/Adminhtml/Sales/Refunded/GridTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Reports/Block/Adminhtml/Sales/Sales/GridTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Reports/Block/Adminhtml/Sales/Shipping/GridTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Reports/Block/Adminhtml/Sales/Tax/GridTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Reports/Block/Adminhtml/Shopcart/Abandoned/GridTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Reports/Block/Adminhtml/Shopcart/GridTestAbstract.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Reports/Block/Adminhtml/Shopcart/Product/GridTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Reports/Controller/Adminhtml/Report/Product/SoldTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Reports/Controller/Adminhtml/Report/Product/ViewedTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Reports/Model/ResourceModel/Product/Lowstock/CollectionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Reports/Model/ResourceModel/Report/Product/Viewed/CollectionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Reports/Model/ResourceModel/Report/Sold/CollectionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Reports/Model/ResourceModel/Review/Customer/CollectionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Reports/Model/ResourceModel/Review/Product/CollectionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Reports/_files/orders.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Reports/_files/viewed_products.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Review/Block/Adminhtml/Edit/FormTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Review/Block/Adminhtml/Edit/Tab/FormTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Review/Block/Adminhtml/MainTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Review/Block/FormTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Review/Block/Product/ReviewRendererTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Review/Controller/ProductTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Review/Model/ResourceModel/Rating/CollectionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Review/Model/ResourceModel/RatingTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Review/Model/ResourceModel/Review/Product/CollectionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Review/Model/ResourceModel/Review/ReviewTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Review/_files/config.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Review/_files/customer_review.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Review/_files/customer_review_with_rating.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Review/_files/different_reviews.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Review/_files/review_xss.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Review/_files/reviews.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Rule/Model/Condition/AbstractTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Rule/Model/Condition/Product/AbstractProductTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Rule/Model/Condition/Sql/BuilderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Rule/_files/dropdown_attribute_with_html.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Rule/_files/dropdown_attribute_with_html_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Api/CreditmemoCommentRepositoryInterfaceTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Api/CreditmemoItemRepositoryInterfaceTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Api/InvoiceCommentRepositoryInterfaceTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Api/InvoiceItemRepositoryInterfaceTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Api/OrderStatusHistoryRepositoryInterfaceTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Api/ShipmentCommentRepositoryInterfaceTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Api/ShipmentItemRepositoryInterfaceTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Api/ShipmentTrackRepositoryInterfaceTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Block/Adminhtml/Items/AbstractTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Block/Adminhtml/Order/Create/Billing/Method/FormTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Block/Adminhtml/Order/Create/Form/AbstractTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Block/Adminhtml/Order/Create/Form/AccountTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Block/Adminhtml/Order/Create/Form/AddressTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Block/Adminhtml/Order/Create/FormTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Block/Adminhtml/Order/Create/Giftmessage/FormTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Block/Adminhtml/Order/Create/HeaderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Block/Adminhtml/Order/View/InfoTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Block/Adminhtml/Report/Filter/Form/CouponTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Block/Order/CommentsTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Block/Order/Creditmemo/ItemsTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Block/Order/Invoice/ItemsTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Block/Order/ItemsTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Block/Order/PrintOrder/CreditmemoTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Block/Order/PrintOrder/InvoiceTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Block/Order/TotalsTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Controller/Adminhtml/Order/AddCommentTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Controller/Adminhtml/Order/AddressSaveTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Controller/Adminhtml/Order/AddressTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Controller/Adminhtml/Order/AuthorizationMock.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Controller/Adminhtml/Order/CancelTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Controller/Adminhtml/Order/Create/SaveTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Controller/Adminhtml/Order/CreateTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Controller/Adminhtml/Order/CreditmemoTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Controller/Adminhtml/Order/EmailTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Controller/Adminhtml/Order/HoldTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Controller/Adminhtml/Order/ReviewPaymentTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Controller/Adminhtml/Order/Stub/OrderCreateStub.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Controller/Adminhtml/Order/UnholdTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Controller/Adminhtml/Order/ViewTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Controller/Adminhtml/Transactions/FetchTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Model/AbstractCollectorPositionsTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Model/AdminOrder/CreateTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Model/Convert/OrderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Model/CronJob/CleanExpiredOrdersTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Model/GridAsyncInsertTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Model/Order/Address/RendererTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Model/Order/AddressRepositoryTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Model/Order/AddressTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Model/Order/CreditmemoFactoryTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Model/Order/Email/Sender/CreditmemoSenderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Model/Order/Email/Sender/InvoiceSenderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Model/Order/Email/Sender/OrderSenderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Model/Order/Email/Sender/ShipmentSenderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Model/Order/InvoiceTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Model/Order/ItemTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Model/Order/Payment/RepositoryTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Model/Order/Payment/TransactionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Model/Order/Pdf/AbstractPdfTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Model/Order/Reorder/UnavailableProductsProviderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Model/Order/ShipmentTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Model/Order/StatusTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Model/OrderIncrementIdCheckerTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Model/ResourceModel/Order/StatusTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Model/ResourceModel/OrderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Model/ResourceModel/Report/Bestsellers/CollectionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Model/ResourceModel/Report/Invoiced/Collection/InvoicedTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Model/ResourceModel/Report/Invoiced/Collection/OrderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Model/ResourceModel/Report/Refunded/Collection/OrderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Model/ResourceModel/Report/Refunded/Collection/RefundedTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Model/ResourceModel/Report/Shipping/Collection/OrderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Model/ResourceModel/Report/Shipping/Collection/ShipmentTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Model/ResourceModel/Sale/CollectionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/Observer/Backend/CustomerQuoteTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/address.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/address_data.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/address_list.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/address_list_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/assign_status_to_state.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/creditmemo_comments_for_search.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/creditmemo_for_get.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/creditmemo_for_get_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/creditmemo_items_for_search.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/creditmemo_list.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/creditmemo_list_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/creditmemo_with_list.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/creditmemo_with_list_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/default_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/invoice.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/invoice_comments_for_search.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/invoice_fixture_store_order.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/invoice_items_for_search.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/invoice_list.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/invoice_list_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/invoice_payflowpro.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/invoice_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/order.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/order_alphanumeric_id.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/order_configurable_product.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/order_configurable_product_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/order_fixture_store.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/order_fixture_store_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/order_from_past.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/order_info.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/order_item_list.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/order_item_with_configurable_for_reorder.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/order_item_with_configurable_for_reorder_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/order_list.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/order_list_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/order_new.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/order_new_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/order_paid_with_payflowpro.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/order_payment_list.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/order_pending_payment.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/order_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/order_shipping.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/order_shipping_address_different_to_billing.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/order_shipping_address_same_as_billing.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/order_status.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/order_status_history_for_search.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/order_with_customer.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/order_with_dummy_item_and_invoiced.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/order_with_shipping_and_invoice.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/order_with_shipping_and_invoice_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/quote.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/quote_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/quote_with_bundle.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/quote_with_bundle_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/quote_with_customer.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/quote_with_customer_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/quote_with_new_customer.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/report_bestsellers.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/report_invoiced.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/report_refunded.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/report_shipping.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/shipment.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/shipment_comments_for_search.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/shipment_items_for_search.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/shipment_list.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/shipment_list_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/shipment_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/shipment_tracks_for_search.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/transactions.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/transactions_detailed.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/transactions_list.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/transactions_list_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/two_orders_for_one_of_two_customers.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sales/_files/two_orders_for_two_diff_customers.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/LabelsTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/SalesRule/Model/Quote/Address/Total/ShippingTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/SalesRule/Model/ResourceModel/Report/Rule/CreatedatTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/SalesRule/Model/ResourceModel/Rule/CollectionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/SalesRule/Model/ResourceModel/RuleTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/SalesRule/Model/Rule/Condition/ProductTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/SalesRule/_files/cart_rule_40_percent_off.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/SalesRule/_files/cart_rule_50_percent_off.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/SalesRule/_files/cart_rule_free_shipping.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/SalesRule/_files/cart_rule_free_shipping_by_cart.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/SalesRule/_files/cart_rule_free_shipping_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/SalesRule/_files/coupons.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/SalesRule/_files/coupons_advanced.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/SalesRule/_files/order_with_coupon.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/SalesRule/_files/report_coupons.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/SalesRule/_files/rule_custom_product_attribute.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/SalesRule/_files/rule_free_shipping_by_product_weight.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/SalesRule/_files/rule_specific_date.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/SalesRule/_files/rules.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/SalesRule/_files/rules_advanced.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/SalesRule/_files/rules_autogeneration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/SalesRule/_files/rules_autogeneration_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/SalesRule/_files/rules_categories.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/SalesRule/_files/rules_categories_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/SalesRule/_files/rules_category.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/SalesRule/_files/rules_category_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/SalesRule/_files/rules_group_all_categories.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/SalesRule/_files/rules_group_all_categories_price_attr_set.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/SalesRule/_files/rules_group_any_categories.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/SalesRule/_files/rules_group_any_categories_price_address.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/SalesRule/_files/rules_group_any_categories_price_attr_set.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/SalesRule/_files/rules_group_any_categories_price_attr_set_any.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/SalesRule/_files/rules_group_categories_price_sku_attr_set_any.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/SalesRule/_files/rules_group_not_categories_sku_attr.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/SalesRule/_files/rules_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/SampleData/Model/DependencyTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/SampleData/_files/Modules/FirstModule/composer.json
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/SampleData/_files/Modules/SecondModule/composer.json
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/SampleData/_files/Modules/ThirdModule/composer.json
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Search/Block/TermTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Search/Model/Adminhtml/System/Config/Source/EngineTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Search/Model/ResourceModel/SynonymGroupTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Search/Model/SearchEngine/ConfigTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Search/Model/SynonymAnalyzerTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Search/Model/SynonymGroupRepositoryTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Search/Model/SynonymReaderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Search/_files/query.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Search/_files/query_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Search/_files/search_engine.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Search/_files/synonym_reader.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Search/_files/synonym_reader_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Security/Controller/Adminhtml/Session/LogoutAllTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Security/Model/AdminSessionsManagerTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Security/Model/Plugin/AuthSessionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Security/Model/ResourceModel/AdminSessionInfo/CollectionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Security/Model/ResourceModel/AdminSessionInfoTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Security/Model/ResourceModel/PasswordResetRequestEvent/CollectionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Security/Model/ResourceModel/PasswordResetRequestEventTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Security/Model/SecurityManagerTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Security/_files/adminsession.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Security/_files/password_reset_request_events.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/SendFriend/Block/SendTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Console/Command/DependenciesShowFrameworkCommandTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Console/Command/DependenciesShowModulesCircularCommandTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Console/Command/DependenciesShowModulesCommandTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Console/Command/DeployStaticContentCommandTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Console/Command/I18nCollectPhrasesCommandTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Console/Command/I18nPackCommandTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/config/dump_config.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/expectedPhrases.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/i18n.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/output/.gitignore
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/phrases/TestPhrases.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/phrases/test_di.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/root/app/code/Magento/A/Model/Foo.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/root/app/code/Magento/A/composer.json
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/root/app/code/Magento/A/etc/module.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/root/app/code/Magento/A/registration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/root/app/code/Magento/B/Model/Foo.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/root/app/code/Magento/B/composer.json
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/root/app/code/Magento/B/etc/module.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/root/app/code/Magento/B/registration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/root/app/code/Magento/C/registration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/root/app/code/Magento/D/registration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/root/lib/internal/Magento/Framework/Test/Unit/View/Element/UiComponentFactoryTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Controller/UrlCheckTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Fixtures/FixtureModelTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Fixtures/FixturesAsserts/BundleProductsAssert.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Fixtures/FixturesAsserts/ConfigurableProductsAssert.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Fixtures/FixturesAsserts/ImagesAssert.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Fixtures/FixturesAsserts/ProductAssert.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Fixtures/FixturesAsserts/SimpleProductsAssert.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Fixtures/_files/attributeSets.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Fixtures/_files/small.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Fixtures/_files/tax_rates.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Model/ConfigOptionsListCollectorTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Model/Cron/MultipleStreamOutputTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Model/Cron/_files/a.txt
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Model/Cron/_files/b.txt
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Model/FixtureGenerator/ProductGeneratorTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Model/ObjectManagerProviderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Model/_files/testSkeleton/composer.json
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Model/_files/testSkeleton/composer.lock
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/DataSetupTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/CircularTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/Parser/Composer/JsonTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/Parser/Config/XmlTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/Report/CircularTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/Report/DependencyTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/Report/FrameworkTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/code/Magento/FirstModule/Helper/Helper.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/code/Magento/FirstModule/Model/Model.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/code/Magento/FirstModule/Model/WithoutDependencies.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/code/Magento/FirstModule/etc/module.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/code/Magento/FirstModule/view/frontend/template.phtml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/composer1.json
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/composer2.json
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/composer3.json
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/composer4.json
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/composer5.json
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/expected/circular-dependencies.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/expected/dependencies.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/expected/framework-dependencies.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/expected/without-circular-dependencies.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/expected/without-dependencies.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/expected/without-framework-dependencies.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/module1.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/module2.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Dictionary/GeneratorTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Dictionary/_files/expected/with_context.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Dictionary/_files/expected/without_context.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Dictionary/_files/source/app/code/Magento/FirstModule/Helper/Helper.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Dictionary/_files/source/app/code/Magento/FirstModule/Model/Model.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Dictionary/_files/source/app/code/Magento/FirstModule/view/frontend/default.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Dictionary/_files/source/app/code/Magento/FirstModule/view/frontend/file.js
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Dictionary/_files/source/app/code/Magento/FirstModule/view/frontend/template.phtml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Dictionary/_files/source/app/code/Magento/SecondModule/Model/Model.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Dictionary/_files/source/app/design/adminhtml/default/backend/default.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Dictionary/_files/source/app/design/adminhtml/default/backend/template.phtml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Dictionary/_files/source/lib/web/mage/file.js
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Dictionary/_files/source/lib/web/varien/file.js
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Dictionary/_files/source/not_magento_dir/Model.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Dictionary/_files/source/not_magento_dir/file.js
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Dictionary/_files/source/not_magento_dir/template.phtml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Pack/GeneratorTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Pack/_files/expected/app/code/Magento/FirstModule/i18n/de_DE.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Pack/_files/expected/app/code/Magento/SecondModule/i18n/de_DE.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Pack/_files/expected/app/design/adminhtml/default/i18n/de_DE.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Pack/_files/expected/lib/web/i18n/de_DE.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Pack/_files/source.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Parser/Adapter/JsTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Parser/Adapter/Php/Tokenizer/PhraseCollectorTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Parser/Adapter/Php/Tokenizer/Translate/MethodCollectorTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Parser/Adapter/Php/Tokenizer/_files/methodsCode.php.txt
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Parser/Adapter/Php/Tokenizer/_files/objectsCode.php.txt
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Parser/Adapter/XmlTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Parser/Adapter/_files/jsPhrasesForTest.js
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Parser/Adapter/_files/xmlPhrasesForTest.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Shipping/Block/ItemsTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Shipping/Helper/DataTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Shipping/Model/ShippingTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Signifyd/Block/Adminhtml/CaseInfoTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Signifyd/Block/FingerprintTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Signifyd/Controller/Webhooks/HandlerTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Signifyd/Model/CaseManagementTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Signifyd/Model/CaseRepositoryTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Signifyd/Model/CaseServices/CreationServiceTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Signifyd/Model/CaseServices/UpdatingServiceTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Signifyd/Model/Guarantee/CancelingServiceTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Signifyd/Model/Guarantee/CreationServiceTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Signifyd/Model/SignifydGateway/Request/CreateCaseBuilderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Signifyd/Observer/PlaceOrderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Signifyd/Plugin/CancelOrderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Signifyd/Plugin/DenyPaymentTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Signifyd/_files/approved_case.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Signifyd/_files/case.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Signifyd/_files/customer.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Signifyd/_files/declined_case.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Signifyd/_files/multiple_cases.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Signifyd/_files/order_with_customer_and_two_simple_products.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Signifyd/_files/order_with_guest_and_virtual_product.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Signifyd/_files/store.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Signifyd/_files/webhook_body.json
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sitemap/Helper/DataTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sitemap/Model/ResourceModel/Catalog/ProductTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sitemap/_files/magento_image_sitemap.png
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sitemap/_files/second_image.png
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sitemap/_files/sitemap_products.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Sitemap/_files/sitemap_products_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Store/App/FrontController/Plugin/RequestPreprocessorTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Store/App/Request/PathInfoProcessorTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Store/Block/SwitcherTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Store/Controller/Store/SwitchActionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Store/Model/App/EmulationTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Store/Model/DataSource.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Store/Model/GroupTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Store/Model/ResourceModel/Store/CollectionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Store/Model/ResourceModel/StoreTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Store/Model/ResourceModel/WebsiteTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Store/Model/StoreCookieManagerTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Store/Model/StoreManagerTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Store/Model/StoreResolverTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Store/Model/StoreTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Store/Model/WebsiteTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Store/_files/core_fixturestore.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Store/_files/core_fixturestore_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Store/_files/core_second_third_fixturestore.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Store/_files/fixture_store_with_catalogsearch_index.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Store/_files/fixture_store_with_catalogsearch_index_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Store/_files/scope.config.fixture.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Store/_files/second_store.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Store/_files/second_store_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Store/_files/second_website_with_second_currency.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Store/_files/second_website_with_second_currency_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Store/_files/second_website_with_two_stores.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Store/_files/second_website_with_two_stores_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Store/_files/store.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Store/_files/store_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Store/_files/website.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Store/_files/website_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Swatches/Controller/Adminhtml/Iframe/ShowTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Swatches/Model/AttributeCreateTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Swatches/Model/SwatchAttributeCodesTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Swatches/Model/SwatchAttributeOptionAddTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Swatches/_files/swatch_attribute.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Swatches/_files/swatch_attribute_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/Block/Adminhtml/Rate/TitleTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/Controller/Adminhtml/RateTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/Controller/Adminhtml/RuleTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/Controller/Adminhtml/TaxTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/Helper/DataTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/Model/Calculation/RateRepositoryTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/Model/CalculationTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/Model/ClassTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/Model/ConfigTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/Model/Rate/ProviderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/Model/Rate/SourceTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/Model/ResourceModel/Calculation/Rule/CollectionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/Model/ResourceModel/CalculationTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/Model/ResourceModel/Report/CollectionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/Model/Sales/Total/Quote/SetupUtil.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/Model/Sales/Total/Quote/SubtotalTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/Model/Sales/Total/Quote/TaxTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/Model/TaxCalculationTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/Model/TaxClass/ManagementTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/Model/TaxClass/RepositoryTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/Model/TaxClass/Source/CustomerTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/Model/TaxClass/Source/ProductTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/Model/TaxClass/Type/CustomerTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/Model/TaxRateCollectionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/Model/TaxRateManagementTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/Model/TaxRuleCollectionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/Model/TaxRuleFixtureFactory.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/Model/TaxRuleRepositoryTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/Pricing/AdjustmentTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/_files/order_with_tax.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/_files/report_tax.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/excluding_tax_apply_tax_after_discount.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/excluding_tax_apply_tax_after_discount_discount_tax.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/excluding_tax_apply_tax_before_discount.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/excluding_tax_multi_item_row.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/excluding_tax_multi_item_total.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/excluding_tax_multi_item_unit.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/excluding_tax_row.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/excluding_tax_total.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/excluding_tax_unit.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/including_tax_cross_border_trade_disabled.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/including_tax_cross_border_trade_enabled.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/including_tax_row.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/including_tax_total.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/including_tax_unit.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/multi_tax_rule_total_calculate_subtotal_no.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/multi_tax_rule_total_calculate_subtotal_yes.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/multi_tax_rule_two_row_calculate_subtotal_yes_row.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/multi_tax_rule_two_row_calculate_subtotal_yes_total.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/multi_tax_rule_unit_calculate_subtotal_no.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/multi_tax_rule_unit_calculate_subtotal_yes.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/_files/tax_calculation_data_aggregated.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Tax/_files/tax_classes.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/TaxImportExport/Block/Adminhtml/Rate/ImportExportTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/TaxImportExport/Controller/Adminhtml/Rate/ExportPostTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/TaxImportExport/Controller/Adminhtml/Rate/ImportExportTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/TaxImportExport/Controller/Adminhtml/Rate/ImportPostTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/TaxImportExport/Model/Rate/CsvImportHandlerTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/TaxImportExport/Model/Rate/_files/correct_rates_import_file.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/TaxImportExport/Model/Rate/_files/rates_import_file_incorrect_country.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Test/Integrity/DatabaseTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Test/Integrity/LayoutTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Test/Integrity/Magento/Payment/MethodsTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Test/Integrity/Magento/Widget/SkinFilesTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Test/Integrity/Magento/Widget/TemplateFilesTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/AbstractMergedConfigTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/AclConfigFilesTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/BlockInstantiationTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/CacheFilesTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/CarrierConfigFilesTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/CrontabConfigFilesTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/DiConfigFilesTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/EavAttributesConfigFilesTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/EventConfigFilesTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/ExportConfigFilesTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/FieldsetConfigFilesTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/ImportConfigFilesTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/IndexerConfigFilesTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/LayoutFilesTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/Magento/Catalog/AttributeConfigFilesTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/Magento/Customer/AddressFormatsFilesTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/Magento/Email/EmailTemplateConfigFilesTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/Magento/Sales/PdfConfigFilesTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/MenuConfigFilesTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/MviewConfigFilesTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/PaymentConfigFilesTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/ProductOptionsConfigFilesTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/ProductTypesConfigFilesTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/ResourcesConfigFilesTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/RouteConfigFilesTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/SalesConfigFilesTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/SystemConfigFilesTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/TemplateFilesTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/ThemeConfigFilesTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/ViewConfigFilesTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/WidgetConfigFilesTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/_files/skip_blocks_ce.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/_files/skip_template_blocks_ce.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Test/Integrity/StaticFilesTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Test/Integrity/Theme/TemplateFilesTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Test/Integrity/Theme/XmlFilesTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Test/Integrity/ViewFileReferenceTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/TestFixture/Controller/Adminhtml/Noroute.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/TestModuleSample/ModuleInstallationTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Block/Adminhtml/System/Design/Theme/Edit/Tab/GeneralTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Block/Html/BreadcrumbsTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Block/Html/FooterTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Controller/Adminhtml/System/Design/Config/SaveTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Controller/Adminhtml/System/Design/ThemeControllerTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Controller/Adminhtml/System/Design/_files/simple-js-file.js
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/Config/Processor/DesignThemeTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/Config/ValidatorTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/Design/Backend/ExceptionsTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/Design/ConfigTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/DesignTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/Layout/Config/ReaderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/Layout/ConfigTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/Layout/_files/page_layouts.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/Layout/_files/page_layouts2.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/ResourceModel/Theme/CollectionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/Theme/CollectionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/Theme/Domain/VirtualTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/Theme/FileTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/Theme/RegistrationTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/Theme/Source/ThemeTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/Theme/Source/_files/design/frontend/a_d/theme.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/Theme/Source/_files/design/frontend/b_e/theme.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/Theme/Source/_files/design/frontend/magento_default/theme.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/Theme/Source/_files/design/frontend/magento_g/theme.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/Theme/ThemeProviderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/ThemeTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/View/DesignTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/adminhtml/Vendor/test/registration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/adminhtml/Vendor/test/theme.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/area_two/Vendor/theme_one/registration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/area_two/Vendor/theme_one/theme.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/area_two/Vendor/theme_one/web/file
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/design_area/Vendor/theme_one/registration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/design_area/Vendor/theme_one/theme.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/design_area/Vendor/theme_one/web/file
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Magento/default/registration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Magento/default/theme.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Magento/default_iphone/images/preview_image.jpg
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Magento/default_iphone/registration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Magento/default_iphone/theme.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/cache_test_theme/registration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/cache_test_theme/theme.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/Magento_Catalog/catalog_category_view.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/Magento_Catalog/catalog_category_view_type_default.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/Magento_Catalog/catalog_product_view.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/Magento_Catalog/catalog_product_view_type_simple.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/Magento_Catalog/templates/theme_template.phtml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/Magento_Catalog/theme_file.txt
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/Magento_Catalog/theme_file_with_2_dots..txt
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/Magento_Cms/layout_test_handle_extra.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/Magento_Core/layout_test_handle_sample.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/Namespace_Module/web/favicon.ico
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/etc/view.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/i18n/en_US.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/registration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/theme.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/web/css/styles.css
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/web/i18n/fr_FR/logo.gif
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/web/images/logo.gif
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/web/images/logo_email.gif
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/web/js/tabs.js
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/web/result_source.css
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/web/result_source_dev.css
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/web/source.less
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/publication/registration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/publication/theme.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/test_theme/registration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/test_theme/theme.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/custom_theme/Fixture_Module/web/fixture_script.js
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/custom_theme/registration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/custom_theme/theme.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/default/Namespace_Module/web/absolute_valid_module.gif
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/default/access_violation.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/default/registration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/default/theme.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/default/web/css/1.gif
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/default/web/css/base64.css
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/default/web/css/body.gif
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/default/web/css/deep/recursive.css
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/default/web/css/exception.css
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/default/web/css/file.css
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/default/web/h1.gif
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/default/web/images/h2.gif
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/default/web/recursive.css
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/default/web/recursive.gif
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/default/web/recursive2.gif
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/default/web/scripts.js
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/access_violation.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/_files/config_data.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/_files/config_data_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/_files/design_change.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/_files/design_change_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/_files/design_change_timezone.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Theme/_files/design_change_timezone_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Translation/Controller/AjaxTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Translation/Model/InlineParserTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Translation/Model/StringTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Translation/Model/_files/Magento/Catalog/i18n/en_US.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Translation/Model/_files/Magento/Store/i18n/en_AU.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Translation/Model/_files/Magento/Store/i18n/en_UK.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Translation/Model/_files/Magento/Store/i18n/en_US.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Translation/Model/_files/Magento/design/Magento/theme/i18n/en_US.csv
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Translation/Model/_files/local_config/local_config/custom/local.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Translation/Model/_files/local_config/local_config/custom/prohibited.filename.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Translation/Model/_files/local_config/local_config/local.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Translation/Model/_files/local_config/local_config/z.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Translation/Model/_files/local_config/no_local_config/a.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Translation/Model/_files/local_config/no_local_config/b.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Translation/Model/_files/local_config/no_local_config/custom/local.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Translation/Model/_files/locale/en_AU/config.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Translation/Model/_files/media/some_file.txt
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Translation/_files/db_translate.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Translation/_files/db_translate_admin_store.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/Api/BookmarkRepositoryTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/Component/ConfigurationTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/Config/ConverterTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/Config/FileResolverStub.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/Config/Reader/DomTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/Config/ReaderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/bookmarks.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/expected_result_configuration.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/module_one/ui_component/etc/test_definition.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/module_one/ui_component/parent_component.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/module_one/ui_component/test_component.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/module_two/ui_component/etc/test_definition.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/module_two/ui_component/parent_component.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/module_two/ui_component/test_component.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/action.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/actionDelete.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/actions.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/actionsColumn.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/bookmark.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/boolean.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/button.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/checkbox.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/checkboxset.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/column.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/columns.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/columnsControls.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/component.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/dataSource.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/date.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/dynamicRows.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/email.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/exportButton.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/field.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/fieldset.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/file.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/fileUploader.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/filterDate.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/filterInput.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/filterRange.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/filters.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/form.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/hidden.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/htmlContent.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/input.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/insertForm.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/insertListing.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/listing.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/listingToolbar.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/massaction.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/modal.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/multiline.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/multiselect.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/paging.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/radioset.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/range.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/select.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/selectionsColumn.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/tab.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/text.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/textarea.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/wysiwyg.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/etc/test_definition_merged.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/action.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/actionDelete.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/actions.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/actionsColumn.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/bookmark.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/boolean.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/button.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/checkbox.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/checkboxset.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/column.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/columns.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/columnsControls.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/component.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/dataSource.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/date.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/dynamicRows.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/email.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/exportButton.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/field.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/fieldset.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/file.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/fileUploader.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/filterDate.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/filterInput.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/filterRange.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/filters.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/form.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/hidden.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/htmlContent.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/input.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/insertForm.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/insertListing.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/listing.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/massaction.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/modal.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/multiline.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/multiselect.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/paging.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/radioset.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/range.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/select.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/selectionsColumn.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/tab.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/text.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/textarea.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/wysiwyg.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/action.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/actionDelete.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/actions.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/actionsColumn.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/bookmark.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/boolean.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/button.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/checkbox.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/checkboxset.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/column.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/columns.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/columnsControls.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/component.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/container.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/dataProvider.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/dataSource.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/date.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/dynamicRows.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/email.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/exportButton.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/field.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/fieldset.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/file.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/fileUploader.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/filterDate.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/filterInput.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/filterRange.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/filters.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/form.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/hidden.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/htmlContent.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/input.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/insertForm.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/insertListing.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/listing.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/listingToolbar.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/massaction.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/modal.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/multiline.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/multiselect.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/nav.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/number.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/paging.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/price.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/radioset.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/range.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/select.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/selectionsColumn.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/tab.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/text.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/textarea.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/wysiwyg.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/action.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/actionDelete.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/actions.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/actionsColumn.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/bookmark.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/boolean.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/button.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/checkbox.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/checkboxset.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/column.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/columns.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/columnsControls.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/component.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/container.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/dataProvider.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/dataSource.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/date.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/dynamicRows.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/email.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/exportButton.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/field.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/fieldset.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/file.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/fileUploader.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/filterDate.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/filterInput.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/filterRange.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/filters.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/form.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/hidden.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/htmlContent.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/input.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/insertForm.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/insertListing.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/listing.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/listingToolbar.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/massaction.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/modal.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/multiline.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/multiselect.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/nav.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/number.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/paging.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/price.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/radioset.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/range.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/select.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/selectionsColumn.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/tab.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/text.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/textarea.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/wysiwyg.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/test_component_merged.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Ups/Model/CarrierTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/UrlRewrite/Block/Catalog/Category/EditTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/UrlRewrite/Block/Catalog/Category/TreeTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/UrlRewrite/Block/Catalog/Edit/FormTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/UrlRewrite/Block/Catalog/Product/EditTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/UrlRewrite/Block/Catalog/Product/GridTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/UrlRewrite/Block/Cms/Page/Edit/FormTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/UrlRewrite/Block/Cms/Page/EditTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/UrlRewrite/Block/Cms/Page/GridTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/UrlRewrite/Block/Edit/FormTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/UrlRewrite/Block/EditTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/UrlRewrite/Block/SelectorTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/UrlRewrite/Controller/UrlRewriteTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/UrlRewrite/_files/url_rewrite.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/User/Block/Role/Grid/UserTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/User/Block/Role/Tab/EditTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/User/Block/User/Edit/Tab/MainTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/User/Controller/Adminhtml/AuthTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/User/Controller/Adminhtml/Locks/GridTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/User/Controller/Adminhtml/Locks/IndexTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/User/Controller/Adminhtml/Locks/MassUnlockTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/User/Controller/Adminhtml/User/DeleteTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/User/Controller/Adminhtml/User/InvalidateTokenTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/User/Controller/Adminhtml/User/RoleTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/User/Controller/Adminhtml/UserTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/User/Helper/DataTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/User/Model/ResourceModel/Role/User/CollectionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/User/Model/ResourceModel/UserTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/User/Model/UserTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/User/_files/dummy_user.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/User/_files/locked_users.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/User/_files/user_with_role.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Variable/Block/System/Variable/EditTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Variable/Controller/Adminhtml/System/VariableTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Variable/Model/VariableTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Variable/_files/variable.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Vault/Model/PaymentTokenRepositoryTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Vault/Model/ResourceModel/PaymentTokenTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Vault/_files/customer.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Vault/_files/payment_tokens.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Vault/_files/token.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Version/Controller/Index/IndexTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Webapi/Controller/PathProcessorTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Webapi/Controller/SoapTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Webapi/Model/Config/ReaderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Webapi/Model/Config/_files/webapi.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Webapi/Model/Config/_files/webapiA.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Webapi/Model/Config/_files/webapiB.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Webapi/Model/ServiceMetadataTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Webapi/Model/Soap/ConfigTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Webapi/Service/Entity/TestService.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Webapi/ServiceNameCollisionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Webapi/_files/webapi_user.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Webapi/_files/webapi_user_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Weee/Model/TaxTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Weee/_files/product_with_fpt.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Weee/_files/product_with_fpt_rollback.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/ContainerTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/DesignAbstractionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/LayoutTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/_files/design-abstraction_select.html
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/_files/layout/child_page_with_inherited_containers.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/_files/layout/child_page_with_inherited_imported_containers.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/_files/layout/child_page_with_own_containers.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/_files/layout/child_page_without_containers.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/_files/layout/customer_account.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/_files/layout/non_page_handle_with_own_containers.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/_files/layout/page_empty.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/_files/layout/root_page_with_imported_containers.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/_files/layout/root_page_with_own_containers.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/_files/layout/root_page_without_containers.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/_files/layout/root_page_without_own_containers.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/_files/page_types_select.html
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Tab/Main/LayoutTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Tab/MainTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/EditTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Widget/Controller/Adminhtml/Widget/InstanceTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Widget/Controller/Adminhtml/WidgetTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Widget/Model/Config/DataTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Widget/Model/Config/ReaderTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Widget/Model/Config/_files/catalog_new_products_list.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Widget/Model/Config/_files/expectedGlobalArray.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Widget/Model/Config/_files/expectedGlobalDesignArray.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Widget/Model/Config/_files/expectedMergedArray.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Widget/Model/Config/_files/orders_and_returns.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Widget/Model/Config/_files/orders_and_returns_customized.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Widget/Model/Layout/UpdateTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Widget/Model/ResourceModel/Layout/UpdateTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Widget/Model/Template/FilterTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Widget/Model/Widget/ConfigTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Widget/Model/Widget/InstanceTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Widget/Model/WidgetTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Widget/Setup/LayoutUpdateConverterTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Widget/_files/design/adminhtml/magento_basic/Magento_Catalog/web/images/product_widget_new.png
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Widget/_files/design/adminhtml/magento_basic/composer.json
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Widget/_files/design/adminhtml/magento_basic/theme.xml
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Widget/_files/layout_cache.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Widget/_files/layout_update.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Widget/_files/new_widget.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Wishlist/Block/Customer/Wishlist/Item/ColumnTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Wishlist/Block/Customer/Wishlist/Item/OptionsTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Wishlist/Block/Customer/Wishlist/ItemsTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Wishlist/Block/Share/WishlistTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Wishlist/Controller/IndexTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Wishlist/Controller/SharedTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Wishlist/Controller/UpdateTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Wishlist/Helper/DataTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Wishlist/Model/ItemTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Wishlist/Model/ResourceModel/Item/CollectionTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Wishlist/Model/WishlistTest.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Wishlist/_files/wishlist.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Wishlist/_files/wishlist_shared.php
 mode change 100644 => 100755 dev/tests/integration/testsuite/Magento/Wishlist/_files/wishlist_with_product_qty_increments.php
 mode change 100644 => 100755 dev/tests/integration/tmp/.gitignore
 mode change 100644 => 100755 dev/tests/js/JsTestDriver/.gitignore
 mode change 100644 => 100755 dev/tests/js/JsTestDriver/framework/qunit/qunit-1.14.0.css
 mode change 100644 => 100755 dev/tests/js/JsTestDriver/framework/qunit/qunit-1.14.0.js
 mode change 100644 => 100755 dev/tests/js/JsTestDriver/framework/requirejs-util.js
 mode change 100644 => 100755 dev/tests/js/JsTestDriver/framework/stub.js
 mode change 100644 => 100755 dev/tests/js/JsTestDriver/jsTestDriver.php.dist
 mode change 100644 => 100755 dev/tests/js/JsTestDriver/jsTestDriverOrder.php
 mode change 100644 => 100755 dev/tests/js/JsTestDriver/run_js_tests.php
 mode change 100644 => 100755 dev/tests/js/JsTestDriver/testsuite/lib/ko/datepicker/datepicker.js
 mode change 100644 => 100755 dev/tests/js/JsTestDriver/testsuite/lib/ko/datepicker/index.html
 mode change 100644 => 100755 dev/tests/js/JsTestDriver/testsuite/lib/storage/index.html
 mode change 100644 => 100755 dev/tests/js/JsTestDriver/testsuite/lib/storage/test-storage.js
 mode change 100644 => 100755 dev/tests/js/JsTestDriver/testsuite/mage/_demo/index.html
 mode change 100644 => 100755 dev/tests/js/JsTestDriver/testsuite/mage/_demo/test.js
 mode change 100644 => 100755 dev/tests/js/JsTestDriver/testsuite/mage/button/button-test.js
 mode change 100644 => 100755 dev/tests/js/JsTestDriver/testsuite/mage/edit_trigger/edit-trigger-test.js
 mode change 100644 => 100755 dev/tests/js/JsTestDriver/testsuite/mage/list/index.html
 mode change 100644 => 100755 dev/tests/js/JsTestDriver/testsuite/mage/list/jquery-list-test.js
 mode change 100644 => 100755 dev/tests/js/JsTestDriver/testsuite/mage/mage-test.js
 mode change 100644 => 100755 dev/tests/js/JsTestDriver/testsuite/mage/search/regular-search-test.js
 mode change 100644 => 100755 dev/tests/js/JsTestDriver/testsuite/mage/translate_inline_vde/translate-inline-vde-dialog-test.js
 mode change 100644 => 100755 dev/tests/js/JsTestDriver/testsuite/mage/translate_inline_vde/translate-inline-vde-test.js
 mode change 100644 => 100755 dev/tests/js/JsTestDriver/testsuite/mage/webapi-test.js
 mode change 100644 => 100755 dev/tests/js/JsTestDriver/testsuite/mage/zoom/zoom-test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/assets/apply/components/fn.js
 mode change 100644 => 100755 dev/tests/js/jasmine/assets/apply/config.json
 mode change 100644 => 100755 dev/tests/js/jasmine/assets/apply/index.js
 mode change 100644 => 100755 dev/tests/js/jasmine/assets/apply/templates/node.html
 mode change 100644 => 100755 dev/tests/js/jasmine/assets/gallery/config.json
 mode change 100644 => 100755 dev/tests/js/jasmine/assets/jsbuild/config.js
 mode change 100644 => 100755 dev/tests/js/jasmine/assets/jsbuild/external.js
 mode change 100644 => 100755 dev/tests/js/jasmine/assets/jsbuild/local.js
 mode change 100644 => 100755 dev/tests/js/jasmine/assets/lib/web/mage/menu.html
 mode change 100644 => 100755 dev/tests/js/jasmine/assets/lib/web/mage/tabs.html
 mode change 100644 => 100755 dev/tests/js/jasmine/assets/lib/web/mage/translate-inline.html
 mode change 100644 => 100755 dev/tests/js/jasmine/assets/script/config.json
 mode change 100644 => 100755 dev/tests/js/jasmine/assets/script/index.js
 mode change 100644 => 100755 dev/tests/js/jasmine/assets/script/templates/selector.html
 mode change 100644 => 100755 dev/tests/js/jasmine/assets/script/templates/virtual.html
 mode change 100644 => 100755 dev/tests/js/jasmine/assets/text/config.js
 mode change 100644 => 100755 dev/tests/js/jasmine/assets/text/external.html
 mode change 100644 => 100755 dev/tests/js/jasmine/assets/text/local.html
 mode change 100644 => 100755 dev/tests/js/jasmine/assets/tools.js
 mode change 100644 => 100755 dev/tests/js/jasmine/require.conf.js
 mode change 100644 => 100755 dev/tests/js/jasmine/spec_runner/index.js
 mode change 100644 => 100755 dev/tests/js/jasmine/spec_runner/settings.json
 mode change 100644 => 100755 dev/tests/js/jasmine/spec_runner/tasks/connect.js
 mode change 100644 => 100755 dev/tests/js/jasmine/spec_runner/tasks/jasmine.js
 mode change 100644 => 100755 dev/tests/js/jasmine/spec_runner/template.html
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Backend/view/adminhtml/web/js/validate-store.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Braintree/frontend/js/paypal/button.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Braintree/frontend/js/view/payment/method-renderer/cc-form.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Braintree/frontend/js/view/payment/method-renderer/paypal.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Bundle/adminhtml/js/components/bundle-checkbox.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Catalog/adminhtml/js/components/dynamic-rows-import-custom-options.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Catalog/adminhtml/js/disable-on-option/yesno.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Catalog/adminhtml/js/utils/percentage-price-calculator.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Catalog/base/js/product/list/columns/final-price.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Catalog/base/js/product/list/columns/image.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Catalog/frontend/js/product/storage/data-storage.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Catalog/frontend/js/product/storage/ids-storage-compare.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Catalog/frontend/js/product/storage/ids-storage.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Catalog/frontend/js/product/storage/storage-service.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Catalog/frontend/js/storage-manager.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Checkout/base/web/js/model/default-post-code-resolver.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Checkout/frontend/js/action/redirect-on-success.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Checkout/frontend/js/model/cart/cache.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Checkout/frontend/js/model/cart/estimate-service.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Checkout/frontend/js/model/cart/totals-processor/default.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Checkout/frontend/js/model/new-customer-address.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Checkout/frontend/js/view/cart/shipping-estimation.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Checkout/frontend/js/view/minicart.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Checkout/frontend/js/view/shipping.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Checkout/frontend/js/view/summary/cart-items.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/CheckoutAgreements/frontend/js/model/agreement-validator.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/CheckoutAgreements/frontend/js/model/place-order-mixin.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/CheckoutAgreements/frontend/js/model/set-payment-information-mixin.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Customer/frontend/js/invalidation-processor.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Customer/frontend/js/model/customer/address.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Customer/frontend/js/view/authentication-popup.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/InstantPurchase/frontend/web/js/view/instant-purchase.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Msrp/frontend/js/msrp.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/PageCache/frontend/js/page-cache.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Payment/base/js/model/credit-card-validation/validator.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Paypal/frontend/js/in-context/express-checkout.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Paypal/frontend/js/view/payment/method-renderer/in-context/checkout-express.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Paypal/frontend/js/view/payment/method-renderer/paypal-express-abstract.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Review/view/base/web/js/product/summary.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Review/view/base/web/template/product/summary.html
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Review/view/base/web/template/product/summary_short.html
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Review/view/frontend/web/js/process-review.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Signifyd/frontend/js/Fingerprint.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Tax/view/frontend/web/js/view/checkout/summary/grand-total.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/core/layout.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/dynamic-rows/dynamic-rows.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/dynamic-rows/record.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/adapter.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/client.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/components/area.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/components/button.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/components/collection.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/components/collection/item.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/components/group.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/components/html.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/components/tab.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/components/tab_group.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/element/abstract.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/element/boolean.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/element/date-time.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/element/date.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/element/file-uploader.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/element/multiselect.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/element/post-code.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/element/region.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/element/select.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/element/textarea.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/form.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/provider.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/ui-select.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/columns/actions.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/columns/column.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/columns/date.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/columns/expandable.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/columns/multiselect.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/columns/select.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/controls/bookmarks/storage.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/controls/columns.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/data-storage.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/editing/bulk.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/filters/filters.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/filters/range.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/paging/paging.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/resize.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/search/search.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/sticky/sticky.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/tree-massactions.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/lib/component/links.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/lib/events.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/lib/ko/bind/datepicker.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/lib/ko/bind/i18n.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/lib/logger/console-logger.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/lib/logger/console-output-handler.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/lib/logger/entry.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/lib/logger/formatter.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/lib/logger/logger.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/lib/registry/registry.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/lib/validation/rules.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/modal/alert.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/modal/confirm.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/modal/modal.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/modal/prompt.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/timeline/timeline.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/app/code/Magento/Wishlist/view/frontend/web/js/add-to-wishlist.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/lib/mage/accordion.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/lib/mage/apply.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/lib/mage/backend/bootstrap.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/lib/mage/backend/suggest.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/lib/mage/backend/tree-suggest.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/lib/mage/calendar.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/lib/mage/collapsible.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/lib/mage/decorate.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/lib/mage/dropdown.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/lib/mage/form.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/lib/mage/loader.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/lib/mage/menu.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/lib/mage/misc.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/lib/mage/multiselect.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/lib/mage/requirejs/static-jsbuild.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/lib/mage/requirejs/static-text.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/lib/mage/requirejs/statistician.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/lib/mage/scripts.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/lib/mage/tabs.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/lib/mage/template.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/lib/mage/translate-inline.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/lib/mage/translate.test.js
 mode change 100644 => 100755 dev/tests/js/jasmine/tests/lib/mage/validation.test.js
 mode change 100644 => 100755 dev/tests/static/.gitignore
 mode change 100644 => 100755 dev/tests/static/framework/Magento/CodeMessDetector/Rule/Design/FinalImplementation.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/CodeMessDetector/Test/Unit/Rule/Design/FinalImplementationTest.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/CodeMessDetector/resources/rulesets/design.xml
 mode change 100644 => 100755 dev/tests/static/framework/Magento/Sniffs/Arrays/ShortArraySyntaxSniff.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/Sniffs/EchoTags/ShortEchoSyntaxSniff.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/Sniffs/Files/LineLengthSniff.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/Sniffs/Less/AvoidIdSniff.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/Sniffs/Less/BracesFormattingSniff.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/Sniffs/Less/ClassNamingSniff.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/Sniffs/Less/ColonSpacingSniff.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/Sniffs/Less/ColourDefinitionSniff.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/Sniffs/Less/CombinatorIndentationSniff.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/Sniffs/Less/CommentLevelsSniff.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/Sniffs/Less/ImportantPropertySniff.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/Sniffs/Less/IndentationSniff.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/Sniffs/Less/PropertiesLineBreakSniff.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/Sniffs/Less/PropertiesSortingSniff.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/Sniffs/Less/QuotesSniff.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/Sniffs/Less/SelectorDelimiterSniff.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/Sniffs/Less/SemicolonSpacingSniff.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/Sniffs/Less/TokenizerSymbolsInterface.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/Sniffs/Less/TypeSelectorConcatenationSniff.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/Sniffs/Less/TypeSelectorsSniff.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/Sniffs/Less/VariablesSniff.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/Sniffs/Less/ZeroUnitsSniff.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/Sniffs/LiteralNamespaces/LiteralNamespacesSniff.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/Sniffs/MicroOptimizations/IsNullSniff.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/Sniffs/NamingConventions/InterfaceNameSniff.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/Sniffs/NamingConventions/ReservedWordsSniff.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/Sniffs/Translation/ConstantUsageSniff.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/Sniffs/Whitespace/EmptyLineMissedSniff.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/Sniffs/Whitespace/MultipleEmptyLinesSniff.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/TestFramework/CodingStandard/Tool/BlacklistInterface.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/TestFramework/CodingStandard/Tool/CodeMessDetector.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/TestFramework/CodingStandard/Tool/CodeSniffer.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/TestFramework/CodingStandard/Tool/CodeSniffer/LessWrapper.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/TestFramework/CodingStandard/Tool/CodeSniffer/Wrapper.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/TestFramework/CodingStandard/Tool/CopyPasteDetector.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/TestFramework/CodingStandard/Tool/ExtensionInterface.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/TestFramework/CodingStandard/ToolInterface.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/TestFramework/Dependency/DbRule.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/TestFramework/Dependency/DiRule.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/TestFramework/Dependency/LayoutRule.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/TestFramework/Dependency/PhpRule.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/TestFramework/Dependency/ReportsConfigRule.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/TestFramework/Dependency/RuleInterface.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/TestFramework/Dependency/VirtualType/VirtualTypeMapper.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/TestFramework/Inspection/AbstractCommand.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/TestFramework/Inspection/Exception.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/TestFramework/Inspection/WordsFinder.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/TestFramework/Integrity/AbstractConfig.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/TestFramework/Integrity/Library/Injectable.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/TestFramework/Integrity/Library/PhpParser/DependenciesCollectorInterface.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/TestFramework/Integrity/Library/PhpParser/ParserFactory.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/TestFramework/Integrity/Library/PhpParser/ParserInterface.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/TestFramework/Integrity/Library/PhpParser/StaticCalls.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/TestFramework/Integrity/Library/PhpParser/Throws.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/TestFramework/Integrity/Library/PhpParser/Tokens.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/TestFramework/Integrity/Library/PhpParser/Uses.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/TestFramework/Integrity/PluginValidator.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/TestFramework/Utility/AutogeneratedClassNotInConstructorFinder.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/TestFramework/Utility/ChangedFiles.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/TestFramework/Utility/ClassNameExtractor.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/TestFramework/Utility/CodeCheck.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/TestFramework/Utility/File/RegexIteratorFactory.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/TestFramework/Utility/FunctionDetector.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/TestFramework/Utility/XssOutputValidator.php
 mode change 100644 => 100755 dev/tests/static/framework/Magento/ruleset.xml
 mode change 100644 => 100755 dev/tests/static/framework/autoload.php
 mode change 100644 => 100755 dev/tests/static/framework/bootstrap.php
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/phpunit.xml.dist
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/Sniffs/EchoTags/ShortEchoSyntaxSniffTest.php
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/Sniffs/EchoTags/_files/correct_echotag.txt
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/Sniffs/EchoTags/_files/correct_noecho.txt
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/Sniffs/EchoTags/_files/incorrect_echotag.txt
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/Sniffs/Translation/ConstantUsageSniffTest.php
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/Sniffs/Translation/_files/correct_arguments.txt
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/Sniffs/Translation/_files/incorrect_arguments.txt
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Integrity/Library/InjectableTest.php
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Integrity/Library/PhpParser/ParserFactoryTest.php
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Integrity/Library/PhpParser/StaticCallsTest.php
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Integrity/Library/PhpParser/ThrowsTest.php
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Integrity/Library/PhpParser/TokensTest.php
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Integrity/Library/PhpParser/UsesTest.php
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Utility/File/CodeCheckTest.php
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Utility/File/_files/class_name_in_namespace_and_variable_name.txt
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Utility/File/_files/create_new_instance.txt
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Utility/File/_files/create_new_instance2.txt
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Utility/File/_files/create_new_instance3.txt
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Utility/File/_files/extends.txt
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Utility/File/_files/extends2.txt
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Utility/File/_files/implements.txt
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Utility/File/_files/implements2.txt
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Utility/File/_files/use.txt
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Utility/File/_files/use2.txt
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/CodingStandard/Tool/CodeMessDetectorTest.php
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/CodingStandard/Tool/CodeSniffer/WrapperTest.php
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/CodingStandard/Tool/CodeSnifferTest.php
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Dependency/DbRuleTest.php
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Dependency/DiRuleTest.php
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Dependency/LayoutRuleTest.php
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Dependency/PhpRuleTest.php
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Dependency/VirtualType/VirtualTypeMapperTest.php
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Dependency/VirtualType/_files/etc/adminhtml/di.xml
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Dependency/VirtualType/_files/etc/di.xml
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Dependency/_files/di_external_dependency.xml
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Dependency/_files/di_in_module_dependency.xml
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Dependency/_files/di_no_dependency.xml
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Dependency/_files/di_virtual_dependency.xml
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Dependency/_files/layout_handle.xml
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Dependency/_files/layout_handle_parent.xml
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Dependency/_files/layout_handle_update.xml
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Dependency/_files/layout_reference.xml
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Inspection/WordsFinderTest.php
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Inspection/_files/broken_config.xml
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Inspection/_files/config.xml
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Inspection/_files/config_additional.xml
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Inspection/_files/empty_whitelist_path.xml
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Inspection/_files/empty_words_config.xml
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Inspection/_files/words_finder/buffy.php
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Inspection/_files/words_finder/buffy.zip
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Inspection/_files/words_finder/interview_with_the_vampire.php
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Inspection/_files/words_finder/interview_with_the_vampire.zip
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Inspection/_files/words_finder/self_tested_config.xml
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Inspection/_files/words_finder/twilight/eclipse.php
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Inspection/_files/words_finder/twilight/newmoon.php
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/AutogeneratedClassNotInConstructorFinderTest.php
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/Bar.php
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/ClassNameExtractorTest.php
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/Foo.php
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/FunctionDetectorTest.php
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/PartialNamespace/Bar.php
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/XssOutputValidatorTest.php
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/_files/class_implements_interface.txt
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/_files/class_with_comment.txt
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/_files/class_with_namespace.txt
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/_files/class_without_namespace.txt
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/_files/extra_whitespaces.txt
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/_files/implements_keyword_on_different_line.txt
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/_files/missing_class_keyword.txt
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/_files/test.txt
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/_files/xss_safe.phtml
 mode change 100644 => 100755 dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/_files/xss_unsafe.phtml
 mode change 100644 => 100755 dev/tests/static/get_github_changes.php
 mode change 100644 => 100755 dev/tests/static/phpunit-all.xml.dist
 mode change 100644 => 100755 dev/tests/static/phpunit.xml.dist
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/App/Language/CircularDependencyTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/App/Language/ConfigTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/App/Language/TranslationFiles.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/App/Language/TranslationFilesTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/App/Language/_files/known_invalid.xml
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/App/Language/_files/known_valid.xml
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/CircularDependencyTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/ClassesTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/ComposerLockTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/ComposerTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/ConfigTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/DependencyTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Di/CompilerTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/ExceptionHierarchyTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/HhvmCompatibilityTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Layout/BlockNamesTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Layout/BlocksTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Layout/HandlesTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Layout/TemplatesTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Layout/ThemeHandlesTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Library/DependencyTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Library/_files/blacklist.txt
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Backend/ControllerAclTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Backend/SystemConfigTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Backend/_files/controller_acl_test_whitelist_ce.txt
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Core/Model/Fieldset/FieldsetConfigTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Core/Model/Fieldset/_files/fieldset.xml
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Core/Model/Fieldset/_files/fieldset_file.xml
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Core/Model/Fieldset/_files/invalid_fieldset.xml
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Framework/Api/ExtensibleInterfacesTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Framework/Api/_files/ExtensibleInterfacesTest/blacklist_ce.txt
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Framework/Search/RequestConfigTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Framework/Search/SearchEngineConfigTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Framework/Search/_files/request/invalid.xml
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Framework/Search/_files/request/invalid_partial.xml
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Framework/Search/_files/request/valid.xml
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Framework/Search/_files/request/valid_partial.xml
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Framework/Search/_files/search_engine/invalid.xml
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Framework/Search/_files/search_engine/valid.xml
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Indexer/ConfigTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Indexer/_files/invalid.xml
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Indexer/_files/valid.xml
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Indexer/_files/valid_partial.xml
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Payment/Config/ReferentialTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Payment/Model/ConfigTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Payment/Model/_files/invalid_payment.xml
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Payment/Model/_files/invalid_payment_partial.xml
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Payment/Model/_files/payment.xml
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Payment/Model/_files/payment_partial.xml
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Persistent/ConfigTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Persistent/_files/invalid_persistent.xml
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Persistent/_files/valid_persistent.xml
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Webapi/Model/ConfigTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Webapi/Model/_files/invalid_webapi.xml
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Webapi/Model/_files/webapi.xml
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Widget/WidgetConfigTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Widget/_files/invalid_widget.xml
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Widget/_files/widget.xml
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Widget/_files/widget_file.xml
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/ObserverImplementationTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Phrase/AbstractTestCase.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Phrase/ArgumentsTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Phrase/Legacy/SignatureTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/PublicCodeTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Readme/ReadmeTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Readme/_files/blacklist/ce.txt
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Readme/_files/scan_list.txt
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/TestPlacementTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/Xml/SchemaTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/_files/blacklist/exception_hierarchy.txt
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/_files/blacklist/observers.txt
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/_files/blacklist/reference.txt
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Integrity/_files/dependency_test/tables_ce.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Js/_files/blacklist/magento.txt
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Js/_files/eslint/.eslintrc
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Js/_files/eslint/.eslintrc-magento
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Js/_files/eslint/.eslintrc-reset
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Js/_files/jscs/.jscsrc
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Js/_files/whitelist/magento.txt
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Legacy/AutogeneratedClassNotInConstructorTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Legacy/ClassesTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Legacy/ConfigTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Legacy/CopyrightTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Legacy/EmailTemplateTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Legacy/FilesystemTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Legacy/InstallUpgradeTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Legacy/LayoutTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Legacy/LibraryLocationTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Legacy/LicenseTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Legacy/Magento/Core/Block/AbstractBlockTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Legacy/Magento/Framework/Module/ModuleXMLTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Legacy/Magento/Framework/ObjectManager/DiConfigTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Legacy/Magento/Widget/XmlTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Legacy/ModuleDBChangeTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Legacy/ObsoleteAclTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Legacy/ObsoleteCodeTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Legacy/ObsoleteConnectionTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Legacy/ObsoleteMenuTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Legacy/ObsoleteResponseTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Legacy/ObsoleteSystemConfigurationTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Legacy/ObsoleteThemeLocalXmlTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Legacy/PhtmlTemplateTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Legacy/RestrictedCodeTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Legacy/TableTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Legacy/UnsecureFunctionsUsageTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Legacy/WordsTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Legacy/_files/autogenerated_class_not_in_constructor_whitelist.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Legacy/_files/blacklist/obsolete_mage.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Legacy/_files/connection/blacklist/files_list.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Legacy/_files/connection/whitelist/refactored_modules.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Legacy/_files/copyright/blacklist.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Legacy/_files/obsolete_config_nodes.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Legacy/_files/obsolete_constants.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Legacy/_files/obsolete_methods.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Legacy/_files/obsolete_namespaces.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Legacy/_files/obsolete_paths.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Legacy/_files/obsolete_properties.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Legacy/_files/response/blacklist/files_list.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Legacy/_files/response/obsolete_response_methods.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Legacy/_files/response/whitelist/refactored_modules.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Legacy/_files/restricted_classes.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Legacy/_files/security/unsecure_php_functions.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Legacy/_files/security/whitelist.txt
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Legacy/_files/words_ce.xml
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Less/LiveCodeTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Less/_files/blacklist/old.txt
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Less/_files/lesscs/ruleset.xml
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Less/_files/whitelist/common.txt
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Php/LiveCodeTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Php/XssPhtmlTemplateTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Php/_files/phpcpd/blacklist/common.txt
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Php/_files/phpmd/ruleset.xml
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Php/_files/whitelist/common.txt
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Php/_files/whitelist/exempt_modules/ce.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/Tools/Composer/RootComposerMappingTest.php
 mode change 100644 => 100755 dev/tests/static/testsuite/Magento/Test/_files/.gitignore
 mode change 100644 => 100755 dev/tests/unit/.gitignore
 mode change 100644 => 100755 dev/tests/unit/framework/autoload.php
 mode change 100644 => 100755 dev/tests/unit/framework/bootstrap.php
 mode change 100644 => 100755 dev/tests/unit/phpunit.xml.dist
 mode change 100644 => 100755 dev/tests/unit/tmp/.gitignore
 mode change 100644 => 100755 dev/tools/Magento/Tools/Layout/processors/addItemRenderer.xsl
 mode change 100644 => 100755 dev/tools/Magento/Tools/Layout/processors/addToParentGroup.xsl
 mode change 100644 => 100755 dev/tools/Magento/Tools/Layout/processors/headBlocks.xsl
 mode change 100644 => 100755 dev/tools/Magento/Tools/Layout/processors/layoutArguments.xsl
 mode change 100644 => 100755 dev/tools/Magento/Tools/Layout/processors/layoutGridContainer.xsl
 mode change 100644 => 100755 dev/tools/Magento/Tools/Layout/processors/layoutHandles.xsl
 mode change 100644 => 100755 dev/tools/Magento/Tools/Layout/processors/layoutLabels.xsl
 mode change 100644 => 100755 dev/tools/Magento/Tools/Layout/processors/layoutReferences.xsl
 mode change 100644 => 100755 dev/tools/Magento/Tools/Layout/processors/layoutTranslate.xsl
 mode change 100644 => 100755 dev/tools/Magento/Tools/StaticReview/PhpCsFixerReview.php
 mode change 100644 => 100755 dev/tools/bootstrap.php
 mode change 100644 => 100755 dev/tools/dynamicReturnTypeMeta.json
 mode change 100644 => 100755 dev/tools/grunt/assets/legacy-build/shim.js
 mode change 100644 => 100755 dev/tools/grunt/configs/autoprefixer.json
 mode change 100644 => 100755 dev/tools/grunt/configs/clean.js
 mode change 100644 => 100755 dev/tools/grunt/configs/combo.js
 mode change 100644 => 100755 dev/tools/grunt/configs/concat.json
 mode change 100644 => 100755 dev/tools/grunt/configs/cssmin.json
 mode change 100644 => 100755 dev/tools/grunt/configs/eslint.json
 mode change 100644 => 100755 dev/tools/grunt/configs/exec.js
 mode change 100644 => 100755 dev/tools/grunt/configs/imagemin.js
 mode change 100644 => 100755 dev/tools/grunt/configs/jscs.json
 mode change 100644 => 100755 dev/tools/grunt/configs/less.js
 mode change 100644 => 100755 dev/tools/grunt/configs/mage-minify.json
 mode change 100644 => 100755 dev/tools/grunt/configs/path.js
 mode change 100644 => 100755 dev/tools/grunt/configs/replace.js
 mode change 100644 => 100755 dev/tools/grunt/configs/styledocco.json
 mode change 100644 => 100755 dev/tools/grunt/configs/themes.js
 mode change 100644 => 100755 dev/tools/grunt/configs/usebanner.js
 mode change 100644 => 100755 dev/tools/grunt/configs/watch.js
 mode change 100644 => 100755 dev/tools/grunt/tasks/black-list-generator.js
 mode change 100644 => 100755 dev/tools/grunt/tasks/clean-black-list.js
 mode change 100644 => 100755 dev/tools/grunt/tasks/deploy.js
 mode change 100644 => 100755 dev/tools/grunt/tasks/mage-minify.js
 mode change 100644 => 100755 dev/tools/grunt/tasks/static.js
 mode change 100644 => 100755 dev/tools/grunt/tools/collect-validation-files.js
 mode change 100644 => 100755 dev/tools/grunt/tools/files-router.js
 mode change 100644 => 100755 dev/tools/grunt/tools/fs-tools.js
 mode change 100644 => 100755 dev/travis/config/apache_virtual_host
 mode change 100644 => 100755 dev/travis/config/www.conf
 mode change 100644 => 100755 generated/.htaccess
 mode change 100644 => 100755 grunt-config.json.sample
 mode change 100644 => 100755 index.php
 mode change 100644 => 100755 lib/.htaccess
 mode change 100644 => 100755 lib/internal/LinLibertineFont/Bugs
 mode change 100644 => 100755 lib/internal/LinLibertineFont/ChangeLog.txt
 mode change 100644 => 100755 lib/internal/LinLibertineFont/GPL.txt
 mode change 100644 => 100755 lib/internal/LinLibertineFont/LICENCE.txt
 mode change 100644 => 100755 lib/internal/LinLibertineFont/LinLibertineC_Re-2.8.0.ttf
 mode change 100644 => 100755 lib/internal/LinLibertineFont/LinLibertine_Bd-2.8.1.ttf
 mode change 100644 => 100755 lib/internal/LinLibertineFont/LinLibertine_It-2.8.2.ttf
 mode change 100644 => 100755 lib/internal/LinLibertineFont/LinLibertine_Re-4.4.1.ttf
 mode change 100644 => 100755 lib/internal/LinLibertineFont/OFL.txt
 mode change 100644 => 100755 lib/internal/LinLibertineFont/Readme
 mode change 100644 => 100755 lib/internal/LinLibertineFont/Readme-TEX.txt
 mode change 100644 => 100755 lib/internal/Magento/Framework/Acl.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Acl/AclResource.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Acl/AclResource/Config/Converter/Dom.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Acl/AclResource/Config/Reader/Filesystem.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Acl/AclResource/Config/SchemaLocator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Acl/AclResource/Provider.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Acl/AclResource/ProviderInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Acl/AclResource/TreeBuilder.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Acl/AclResourceFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Acl/Builder.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Acl/Data/Cache.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Acl/Data/CacheInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Acl/Loader/DefaultLoader.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Acl/Loader/ResourceLoader.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Acl/LoaderInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Acl/Role/Registry.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Acl/RootResource.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Acl/Test/Unit/AclResource/Config/Converter/DomTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Acl/Test/Unit/AclResource/Config/Converter/_files/converted_valid_acl.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Acl/Test/Unit/AclResource/Config/Converter/_files/valid_acl.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Acl/Test/Unit/AclResource/Config/MergedXsdTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Acl/Test/Unit/AclResource/Config/SchemaLocatorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Acl/Test/Unit/AclResource/Config/XsdTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Acl/Test/Unit/AclResource/Config/_files/invalidAclXmlArray.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Acl/Test/Unit/AclResource/Config/_files/invalidMergedAclXmlArray.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Acl/Test/Unit/AclResource/Config/_files/valid_acl.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Acl/Test/Unit/AclResource/Config/_files/valid_merged_acl.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Acl/Test/Unit/AclResource/ProviderTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Acl/Test/Unit/AclResource/TreeBuilderTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Acl/Test/Unit/BuilderTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Acl/Test/Unit/Loader/DefaultTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Acl/Test/Unit/Loader/ResourceLoaderTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Acl/Test/Unit/ResourceFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Acl/Test/Unit/Role/RegistryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Acl/Test/Unit/_files/resourceList.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Acl/Test/Unit/_files/result.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Acl/etc/acl.xsd
 mode change 100644 => 100755 lib/internal/Magento/Framework/Acl/etc/acl_merged.xsd
 mode change 100644 => 100755 lib/internal/Magento/Framework/AclFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/AbstractExtensibleObject.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/AbstractServiceCollection.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/AbstractSimpleObject.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/AbstractSimpleObjectBuilder.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/ArrayObjectSearch.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/AttributeInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/AttributeMetadata.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/AttributeTypeResolverInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/AttributeValue.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/AttributeValueFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Code/Generator/ExtensionAttributesGenerator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Code/Generator/ExtensionAttributesInterfaceFactoryGenerator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Code/Generator/ExtensionAttributesInterfaceGenerator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Code/Generator/Mapper.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Code/Generator/SearchResults.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/CriteriaInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/CustomAttributesDataInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Data/ImageContentInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Data/VideoContentInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/DataObjectHelper.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/DefaultMetadataService.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/ExtensibleDataInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/ExtensibleDataObjectConverter.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/ExtensionAttribute/Config.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/ExtensionAttribute/Config/Converter.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/ExtensionAttribute/Config/Reader.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/ExtensionAttribute/Config/SchemaLocator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/ExtensionAttribute/JoinData.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/ExtensionAttribute/JoinDataInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/ExtensionAttribute/JoinDataInterfaceFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/ExtensionAttribute/JoinProcessor.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/ExtensionAttribute/JoinProcessorHelper.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/ExtensionAttribute/JoinProcessorInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/ExtensionAttributesFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/ExtensionAttributesInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Filter.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/FilterBuilder.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/ImageContent.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/ImageContentValidator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/ImageContentValidatorInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/ImageProcessor.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/ImageProcessorInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/MetadataObjectInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/MetadataServiceInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/ObjectFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Search/AggregationInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Search/AggregationValueInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Search/BucketInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Search/Document.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Search/DocumentFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Search/DocumentInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Search/FilterGroup.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Search/FilterGroupBuilder.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Search/ReportingInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Search/SearchCriteria.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Search/SearchCriteriaBuilder.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Search/SearchCriteriaFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Search/SearchCriteriaInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Search/SearchInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Search/SearchResult.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Search/SearchResultFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Search/SearchResultInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/SearchCriteria.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/SearchCriteria/CollectionProcessor.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/SearchCriteria/CollectionProcessor/FilterProcessor.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/SearchCriteria/CollectionProcessor/FilterProcessor/CustomFilterInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/SearchCriteria/CollectionProcessor/JoinProcessor.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/SearchCriteria/CollectionProcessor/JoinProcessor/CustomJoinInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/SearchCriteria/CollectionProcessor/PaginationProcessor.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/SearchCriteria/CollectionProcessor/SortingProcessor.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/SearchCriteria/CollectionProcessorInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/SearchCriteriaBuilder.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/SearchCriteriaInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/SearchResults.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/SearchResultsInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/SimpleBuilderInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/SimpleDataObjectConverter.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/SortOrder.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/SortOrderBuilder.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Test/Unit/Api/ImageContentValidatorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Test/Unit/Api/ImageProcessorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Test/Unit/Api/_files/image.jpg
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Test/Unit/Code/Generator/EntityChildTestAbstract.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Test/Unit/Code/Generator/ExtensibleSample.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Test/Unit/Code/Generator/ExtensibleSampleInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Test/Unit/Code/Generator/ExtensionAttributesGeneratorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Test/Unit/Code/Generator/ExtensionAttributesInterfaceGeneratorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Test/Unit/Code/Generator/GenerateMapperTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Test/Unit/Code/Generator/GenerateSearchResultsTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Test/Unit/Code/Generator/Sample.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Test/Unit/Code/Generator/_files/SampleEmptyExtension.txt
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Test/Unit/Code/Generator/_files/SampleExtension.txt
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Test/Unit/Code/Generator/_files/SampleExtensionInterface.txt
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Test/Unit/Code/Generator/_files/SampleMapper.txt
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Test/Unit/Code/Generator/_files/SampleSearchResults.txt
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Test/Unit/Data/AttributeValueTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Test/Unit/DataObjectHelperTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Test/Unit/ExtensibleDataObjectConverterTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Test/Unit/ExtensionAttribute/Config/ConverterTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Test/Unit/ExtensionAttribute/Config/ReaderTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Test/Unit/ExtensionAttribute/Config/SchemaLocatorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Test/Unit/ExtensionAttribute/Config/XsdTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Test/Unit/ExtensionAttribute/Config/_files/extension_attributes.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Test/Unit/ExtensionAttribute/Config/_files/extension_attributes_with_join_directives.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Test/Unit/Search/SearchResultTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Test/Unit/SearchCriteria/CollectionProcessor/FilterProcessorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Test/Unit/SearchCriteria/CollectionProcessor/JoinProcessorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Test/Unit/SearchCriteria/CollectionProcessor/PaginationProcessorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Test/Unit/SearchCriteria/CollectionProcessor/SortingProcessorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Test/Unit/SearchCriteria/CollectionProcessorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Test/Unit/SortOrderTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Test/Unit/StubAbstractSimpleObject.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/Uploader.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Api/etc/extension_attributes.xsd
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Action/AbstractAction.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Action/Action.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Action/Context.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Action/Forward.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Action/Plugin/Design.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Action/Redirect.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/ActionFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/ActionFlag.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/ActionInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Area.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Area/FrontNameResolverFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Area/FrontNameResolverInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/AreaInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/AreaList.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/AreaList/Proxy.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Arguments/ArgumentInterpreter.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Arguments/FileResolver/Primary.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Arguments/ValidationState.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Bootstrap.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Cache.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Cache/FlushCacheByTags.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Cache/Frontend/Factory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Cache/Frontend/Pool.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Cache/InstanceFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Cache/Manager.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Cache/Proxy.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Cache/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Cache/State.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Cache/StateInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Cache/Tag/Resolver.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Cache/Tag/Strategy/Dummy.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Cache/Tag/Strategy/Factory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Cache/Tag/Strategy/Identifier.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Cache/Tag/StrategyInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Cache/Type/AccessProxy.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Cache/Type/Block.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Cache/Type/Collection.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Cache/Type/Config.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Cache/Type/Dummy.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Cache/Type/FrontendPool.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Cache/Type/Layout.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Cache/Type/Reflection.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Cache/Type/Translate.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Cache/TypeList.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Cache/TypeListInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/CacheInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Config.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Config/Base.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Config/BaseFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Config/CommentInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Config/CommentParserInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Config/ConfigPathResolver.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Config/ConfigResource/ConfigInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Config/ConfigSourceAggregated.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Config/ConfigSourceInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Config/ConfigTypeInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Config/Data.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Config/Data/ProcessorFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Config/Data/ProcessorInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Config/DataFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Config/DataInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Config/Element.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Config/FileResolver.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Config/Initial.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Config/Initial/Converter.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Config/Initial/Reader.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Config/Initial/SchemaLocator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Config/InitialConfigSource.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Config/MetadataConfigTypeProcessor.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Config/MetadataProcessor.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Config/MutableScopeConfigInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Config/PostProcessorComposite.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Config/PreProcessorComposite.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Config/Reader/Source/SourceInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Config/ReinitableConfigInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Config/Scope/Converter.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Config/Scope/ReaderInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Config/Scope/Validator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Config/ScopeCodeResolver.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Config/ScopeConfigInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Config/Spi/PostProcessorInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Config/Spi/PreProcessorInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Config/Storage/Writer.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Config/Storage/WriterInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Config/Value.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Config/ValueFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Config/ValueInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Console/MaintenanceModeEnabler.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Console/Request.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Console/Response.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Cron.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/DefaultPath/DefaultPath.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/DefaultPathInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/DeploymentConfig.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/DeploymentConfig/CommentParser.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/DeploymentConfig/FileReader.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/DeploymentConfig/ImporterInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/DeploymentConfig/Reader.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/DeploymentConfig/ValidatorInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/DeploymentConfig/Writer.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/DeploymentConfig/Writer/FormatterInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/DeploymentConfig/Writer/PhpFormatter.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/DesignInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/DocRootLocator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/EnvironmentFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/EnvironmentInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/ErrorHandler.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Filesystem/DirectoryList.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Filesystem/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/FrontController.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/FrontControllerInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Helper/AbstractHelper.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Helper/Context.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Http.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Http/Context.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Interception/Cache/CompiledConfig.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Language/Config.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Language/ConfigFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Language/Dictionary.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Language/package.xsd
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/MaintenanceMode.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/MutableScopeConfig.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/ObjectManager.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/ObjectManager/ConfigCache.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/ObjectManager/ConfigLoader.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/ObjectManager/ConfigLoader/Compiled.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/ObjectManager/Environment/AbstractEnvironment.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/ObjectManager/Environment/Compiled.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/ObjectManager/Environment/Developer.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/ObjectManagerFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/PageCache/Cache.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/PageCache/FormKey.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/PageCache/Identifier.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/PageCache/Kernel.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/PageCache/NotCacheableInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/PageCache/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/PageCache/Version.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/PlainTextRequestInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/ProductMetadata.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/ProductMetadataInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/ReinitableConfig.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Request/DataPersistor.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Request/DataPersistorInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Request/Http.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Request/PathInfoProcessorInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/RequestContentInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/RequestFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/RequestInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/RequestSafetyInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/ResourceConnection.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/ResourceConnection/Config.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/ResourceConnection/Config/Converter.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/ResourceConnection/Config/Reader.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/ResourceConnection/Config/SchemaLocator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/ResourceConnection/ConfigInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/ResourceConnection/ConnectionAdapterInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/ResourceConnection/ConnectionFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/ResourceConnection/SourceFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/ResourceConnection/SourceProviderInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Response/FileInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Response/HeaderManager.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Response/HeaderProvider/AbstractHeaderProvider.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Response/HeaderProvider/HeaderProviderInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Response/HeaderProvider/XContentTypeOptions.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Response/HeaderProvider/XFrameOptions.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Response/HeaderProvider/XssProtection.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Response/Http.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Response/Http/FileFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Response/HttpInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Response/RedirectInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/ResponseFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/ResponseInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Route/Config.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Route/Config/Converter.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Route/Config/Reader.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Route/Config/SchemaLocator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Route/ConfigInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Route/ConfigInterface/Proxy.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Router/ActionList.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Router/Base.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Router/DefaultRouter.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Router/NoRouteHandler.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Router/NoRouteHandlerInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Router/NoRouteHandlerList.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Router/PathConfigInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/RouterInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/RouterList.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/RouterListInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Rss/DataProviderInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Rss/RssManagerInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Rss/UrlBuilder.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Rss/UrlBuilderInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Scope/Source.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Scope/Validator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Scope/ValidatorInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/ScopeDefault.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/ScopeFallbackResolverInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/ScopeInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/ScopeResolver.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/ScopeResolverInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/ScopeResolverPool.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/ScopeTreeProviderInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/ScopeValidatorInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/SetupInfo.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Shell.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/State.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/State/CleanupFiles.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/StaticResource.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/TemplateTypesInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/AclResourceTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Action/AbstractActionTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Action/ActionFake.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Action/ActionTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Action/ForwardTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Action/Plugin/DesignTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Action/Stub/ActionStub.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/ActionFlagTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/AreaListTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/AreaTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Arguments/ArgumentInterpreterTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Arguments/FileResolver/PrimaryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Arguments/FileResolver/_files/app/etc/config.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Arguments/FileResolver/_files/app/etc/custom/config.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Arguments/FileResolver/_files/primary/app/etc/di.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Arguments/FileResolver/_files/primary/app/etc/some_config/di.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/BootstrapTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Cache/FlushCacheByTagsTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Cache/Frontend/FactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Cache/Frontend/FactoryTest/CacheDecoratorDummy.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Cache/Frontend/PoolTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Cache/ManagerTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Cache/StateTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Cache/Tag/ResolverTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Cache/Tag/Strategy/DummyTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Cache/Tag/Strategy/FactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Cache/Tag/Strategy/IdentifierTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Cache/Type/AccessProxyTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Cache/Type/ConfigTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Cache/Type/FrontendPoolTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Cache/Type/GenericTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Cache/TypeListTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/CacheTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Config/BaseFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Config/ConfigPathResolverTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Config/ConfigSourceAggregatedTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Config/Data/ProcessorFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Config/DataFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Config/DataTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Config/ElementTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Config/FileResolverTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Config/Initial/ConverterTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Config/Initial/ReaderTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Config/Initial/SchemaLocatorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Config/Initial/XsdTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Config/Initial/_files/config.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Config/Initial/_files/config.xsd
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Config/Initial/_files/converted_config.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Config/Initial/_files/initial_config1.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Config/Initial/_files/initial_config2.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Config/Initial/_files/initial_config_merged.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Config/Initial/_files/invalidConfigXmlArray.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Config/Initial/_files/invalid_config.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Config/Initial/_files/valid_config.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Config/InitialConfigSourceTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Config/InitialTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Config/MetadataConfigTypeProcessorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Config/MetadataProcessorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Config/PreProcessorCompositeTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Config/Scope/ConverterTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Config/Scope/ValidatorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Config/ScopeCodeResolverTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Config/Storage/WriterTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Config/ValueFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Config/ValueTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Config/XsdTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Config/_files/element.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Config/_files/invalidRoutesXmlArray.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Config/_files/valid_routes.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/ConfigTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Console/CommandListTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Console/MaintenanceModeEnablerTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Console/ResponseTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/CronTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/DefaultClass.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/DefaultPath/DefaultPathTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/DeploymentConfig/CommentParserTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/DeploymentConfig/FileReaderTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/DeploymentConfig/ReaderTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/DeploymentConfig/Writer/PhpFormatterTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/DeploymentConfig/WriterTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/DeploymentConfig/_files/config.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/DeploymentConfig/_files/custom.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/DeploymentConfig/_files/duplicateConfig.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/DeploymentConfig/_files/env.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/DeploymentConfig/_files/mergeOne.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/DeploymentConfig/_files/mergeTwo.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/DeploymentConfigTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/DocRootLocatorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/ErrorHandlerTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Filesystem/DirectoryListTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/FrontClass.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/FrontControllerTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Http/ContextTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/HttpTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Language/ConfigTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Language/DictionaryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Language/_files/language.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/MaintenanceModeTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/ObjectManager/ConfigCacheTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/ObjectManager/ConfigLoaderTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/ObjectManager/Environment/CompiledTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/ObjectManager/Environment/CompiledTesting.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/ObjectManager/Environment/ConfigTesting.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/ObjectManager/Environment/DeveloperTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/ObjectManager/FactoryStub.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/ObjectManagerFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/PageCache/FormKeyTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/PageCache/IdentifierTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/PageCache/KernelTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/PageCache/PageCacheTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/PageCache/VersionTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/ProductMetadataTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Request/HttpTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/RequestFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/ResourceConnection/Config/ConverterTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/ResourceConnection/Config/ReaderTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/ResourceConnection/Config/SchemaLocatorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/ResourceConnection/Config/XsdTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/ResourceConnection/Config/_files/invalidResourcesXmlArray.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/ResourceConnection/Config/_files/resources.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/ResourceConnection/Config/_files/resources.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/ResourceConnection/Config/_files/valid_resources.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/ResourceConnection/ConfigTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/ResourceConnection/ConnectionFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Response/HeaderProvider/XFrameOptionsTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Response/HeaderProvider/XssProtectionTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Response/Http/FileFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Response/HttpTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/ResponseFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Route/Config/ConverterTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Route/Config/SchemaLocatorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Route/Config/_files/routes.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Route/Config/_files/routes.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Route/ConfigInterface/ProxyTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Route/ConfigTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Router/ActionListTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Router/BaseTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Router/DefaultRouterTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Router/NoRouteHandlerListTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Router/NoRouteHandlerTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/RouterListTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Scope/ValidatorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/ScopeResolverPoolTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/SetupInfoTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/ShellTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/State/CleanupFilesTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/StateTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/StaticResourceTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Utility/AggregateInvokerTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Utility/FilesTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Utility/_files/foo/bar/one.txt
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Utility/_files/foo/bar/recursive/one.txt
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Utility/_files/foo/bar/recursive/two.txt
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Utility/_files/foo/bar/two.txt
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Utility/_files/foo/baz/one.txt
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Utility/_files/foo/baz/two.txt
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Utility/_files/foo/one.txt
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Utility/_files/foo/two.txt
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Utility/_files/list_corrupted_dir.txt
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Utility/_files/list_corrupted_file.txt
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/Utility/_files/list_good.txt
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/View/Asset/MaterializationStrategy/CopyTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/View/Asset/MaterializationStrategy/FactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/View/Asset/MaterializationStrategy/SymlinkTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/View/Asset/PublisherTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/View/Deployment/Version/Storage/FileTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/View/Deployment/VersionTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/ViewTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/_files/app/etc/di.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/_files/config.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/_files/other/local_developer.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/_files/other/local_developer_merged.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/_files/pub/index.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/_files/setup/index.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Test/Unit/_files/test.composer.json
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Utility/AggregateInvoker.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Utility/Classes.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Utility/Files.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/Utility/RegexIteratorFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/View.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/View/Asset/MaterializationStrategy/Copy.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/View/Asset/MaterializationStrategy/Factory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/View/Asset/MaterializationStrategy/StrategyInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/View/Asset/MaterializationStrategy/Symlink.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/View/Asset/Publisher.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/View/Deployment/Version.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/View/Deployment/Version/Storage/File.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/View/Deployment/Version/StorageInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/ViewInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/etc/resources.xsd
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/etc/routes.xsd
 mode change 100644 => 100755 lib/internal/Magento/Framework/App/etc/routes_merged.xsd
 mode change 100644 => 100755 lib/internal/Magento/Framework/AppInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Archive.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Archive/AbstractArchive.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Archive/ArchiveInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Archive/Bz.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Archive/Gz.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Archive/Helper/File.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Archive/Helper/File/Bz.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Archive/Helper/File/Gz.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Archive/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/Archive/Tar.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Archive/Test/Unit/ZipTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Archive/Zip.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Authorization.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Authorization/Factory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Authorization/Policy/Acl.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Authorization/Policy/DefaultPolicy.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Authorization/PolicyInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Authorization/RoleLocator/DefaultRoleLocator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Authorization/RoleLocatorInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Authorization/Test/Unit/Policy/AclTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Authorization/Test/Unit/Policy/DefaultTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/AuthorizationInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Autoload/AutoloaderInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Autoload/AutoloaderRegistry.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Autoload/ClassLoaderWrapper.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Autoload/ClassMap.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Autoload/Populator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Autoload/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/Autoload/Test/Unit/ClassLoaderWrapperTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Autoload/Test/Unit/PopulatorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Backup/AbstractBackup.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Backup/Archive/Tar.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Backup/BackupException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Backup/BackupInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Backup/Db.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Backup/Db/BackupDbInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Backup/Db/BackupFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Backup/Db/BackupInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Backup/Exception/CantLoadSnapshot.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Backup/Exception/FtpConnectionFailed.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Backup/Exception/FtpValidationFailed.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Backup/Exception/NotEnoughFreeSpace.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Backup/Exception/NotEnoughPermissions.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Backup/Factory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Backup/Filesystem.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Backup/Filesystem/Helper.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Backup/Filesystem/Iterator/File.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Backup/Filesystem/Iterator/Filter.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Backup/Filesystem/Rollback/AbstractRollback.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Backup/Filesystem/Rollback/Fs.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Backup/Filesystem/Rollback/Ftp.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Backup/Media.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Backup/Nomedia.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Backup/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/Backup/Snapshot.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Backup/Test/Unit/FactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Backup/Test/Unit/Filesystem/Helper.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Backup/Test/Unit/Filesystem/Rollback/Fs.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Backup/Test/Unit/Filesystem/Rollback/FsTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Backup/Test/Unit/Filesystem/Rollback/Ftp.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Backup/Test/Unit/Filesystem/Rollback/_files/ioMock.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Backup/Test/Unit/FilesystemTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Backup/Test/Unit/MediaTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Backup/Test/Unit/NomediaTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Backup/Test/Unit/SnapshotTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Backup/Test/Unit/_files/app_dirs.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Backup/Test/Unit/_files/app_dirs_rollback.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Backup/Test/Unit/_files/io.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Cache/Backend/Database.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Cache/Backend/Decorator/AbstractDecorator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Cache/Backend/Decorator/Compression.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Cache/Backend/Eaccelerator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Cache/Backend/Memcached.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Cache/Backend/MongoDb.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Cache/Config.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Cache/Config/Converter.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Cache/Config/Data.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Cache/Config/Reader.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Cache/Config/SchemaLocator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Cache/ConfigInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Cache/Core.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Cache/Frontend/Adapter/Zend.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Cache/Frontend/Decorator/Bare.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Cache/Frontend/Decorator/Logger.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Cache/Frontend/Decorator/Profiler.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Cache/Frontend/Decorator/TagScope.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Cache/FrontendInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Cache/InvalidateLogger.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Cache/Test/Unit/Backend/DatabaseTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Cache/Test/Unit/Backend/Decorator/CompressionTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Cache/Test/Unit/Backend/Decorator/DecoratorAbstractTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Cache/Test/Unit/Backend/MongoDbTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Cache/Test/Unit/Backend/_files/MongoBinData.txt
 mode change 100644 => 100755 lib/internal/Magento/Framework/Cache/Test/Unit/Config/ConverterTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Cache/Test/Unit/Config/SchemaLocatorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Cache/Test/Unit/Config/_files/cache_config.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Cache/Test/Unit/Config/_files/cache_config.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Cache/Test/Unit/ConfigTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Cache/Test/Unit/CoreTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Cache/Test/Unit/CoreTestMock.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Cache/Test/Unit/Frontend/Adapter/ZendTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Cache/Test/Unit/Frontend/Decorator/BareTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Cache/Test/Unit/Frontend/Decorator/ProfilerTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Cache/Test/Unit/Frontend/Decorator/TagScopeTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Cache/Test/Unit/InvalidateLoggerTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Cache/etc/cache.xsd
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/GeneratedFiles.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Generator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Generator/Autoloader.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Generator/ClassGenerator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Generator/CodeGeneratorInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Generator/DefinedClasses.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Generator/EntityAbstract.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Generator/InterfaceGenerator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Generator/InterfaceMethodGenerator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Generator/Io.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Minifier/Adapter/Css/CSSmin.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Minifier/Adapter/Js/JShrink.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Minifier/AdapterInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/NameBuilder.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Reader/ArgumentsReader.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Reader/ClassReader.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Reader/ClassReaderInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Reader/NamespaceResolver.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Reader/ScalarTypesProvider.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Reader/SourceArgumentsReader.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Test/Unit/GeneratedFilesTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Test/Unit/Generator/ClassGeneratorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Test/Unit/Generator/DefinedClassesTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Test/Unit/Generator/EntityAbstractTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Test/Unit/Generator/InterfaceGeneratorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Test/Unit/Generator/IoTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Test/Unit/Generator/TestAsset/ParentClass.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Test/Unit/Generator/TestAsset/SourceClass.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Test/Unit/Generator/TestAsset/TestGenerationClass.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Test/Unit/GeneratorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Test/Unit/Minifier/Adapter/Css/CssMinTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Test/Unit/Minifier/Adapter/Js/JShrinkTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Test/Unit/Minifier/_files/js/original.js
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Test/Unit/Model/File/Validator/NotProtectedExtensionTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Test/Unit/NameBuilderTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Test/Unit/Reader/ArgumentsReaderTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Test/Unit/Reader/_files/ClassesForArgumentsReader.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Test/Unit/Validator/ArgumentSequenceTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Test/Unit/Validator/ConstructorArgumentTypesTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Test/Unit/Validator/ConstructorIntegrityTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Test/Unit/Validator/TypeDuplicationTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Test/Unit/Validator/_files/ClassesForArgumentSequence.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Test/Unit/Validator/_files/ClassesForConstructorIntegrity.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Test/Unit/Validator/_files/ClassesForTypeDuplication.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Test/Unit/ValidatorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Test/Unit/_files/app/code/Magento/SomeModule/Model/ElementFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Test/Unit/_files/app/code/Magento/SomeModule/Model/Five/Test.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Test/Unit/_files/app/code/Magento/SomeModule/Model/Four/Test.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Test/Unit/_files/app/code/Magento/SomeModule/Model/One/Test.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Test/Unit/_files/app/code/Magento/SomeModule/Model/Proxy.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Test/Unit/_files/app/code/Magento/SomeModule/Model/SevenInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Test/Unit/_files/app/code/Magento/SomeModule/Model/Six/Test.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Test/Unit/_files/app/code/Magento/SomeModule/Model/Three/Test.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Test/Unit/_files/app/code/Magento/SomeModule/Model/Two/Test.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Validator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Validator/ArgumentSequence.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Validator/ConstructorArgumentTypes.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Validator/ConstructorIntegrity.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/Validator/TypeDuplication.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Code/ValidatorInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Communication/Config.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Communication/Config/CompositeReader.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Communication/Config/ConfigParser.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Communication/Config/Data.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Communication/Config/Reader/EnvReader.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Communication/Config/Reader/EnvReader/Validator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Communication/Config/Reader/XmlReader.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Communication/Config/Reader/XmlReader/Converter.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Communication/Config/Reader/XmlReader/SchemaLocator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Communication/Config/Reader/XmlReader/Validator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Communication/Config/ReflectionGenerator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Communication/Config/Validator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Communication/ConfigInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Communication/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/Communication/etc/communication.xsd
 mode change 100644 => 100755 lib/internal/Magento/Framework/Component/ComponentFile.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Component/ComponentRegistrar.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Component/ComponentRegistrarInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Component/DirSearch.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Component/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/Component/Test/Unit/ComponentFileTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Component/Test/Unit/ComponentRegistrarTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Component/Test/Unit/DirSearchTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Composer/BufferIoFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Composer/ComposerFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Composer/ComposerJsonFinder.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Composer/DependencyChecker.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Composer/MagentoComposerApplicationFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Composer/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/Composer/Remove.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Composer/Test/Unit/ComposerFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Composer/Test/Unit/ComposerInformationTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Composer/Test/Unit/DependencyCheckerTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Composer/Test/Unit/_files/composer.json
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/AbstractXml.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/CacheInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Composer/Package.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/ConfigOptionsListConstants.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Converter.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Converter/Dom.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Converter/Dom/Flat.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/ConverterInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Data.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Data/ConfigData.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Data/ConfigDataFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Data/Scoped.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/DataInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/DesignResolverInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Dom.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Dom/ArrayNodeConfig.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Dom/NodeMergingConfig.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Dom/NodePathMatcher.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Dom/UrnResolver.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Dom/ValidationException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Dom/ValidationSchemaException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/DomFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/File/ConfigFilePool.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/FileIterator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/FileIteratorFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/FileResolver.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/FileResolverInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/GenericSchemaLocator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Reader.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Reader/Filesystem.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/ReaderInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/SchemaLocator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/SchemaLocatorInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Scope.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/ScopeInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/ScopeListInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/Composer/PackageTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/Converter/Dom/FlatTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/Converter/DomTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/Data/ConfigDataTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/Data/ScopedTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/DataTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/Dom/ArrayNodeConfigTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/Dom/NodeMergingConfigTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/Dom/NodePathMatcherTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/Dom/UrnResolverTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/DomTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/File/ConfigFilePoolTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/FileIteratorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/GenericSchemaLocatorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/Reader/FilesystemTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/ReaderTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/ScopeTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/ThemeTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/ValidationStateTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/ViewFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/XsdTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/area/default_default/theme.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/area/default_test/theme.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/area/default_test2/theme.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/area/test_default/theme.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/area/test_external_package_descendant/theme.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/converter/dom/attributes.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/converter/dom/attributes.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/converter/dom/cdata.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/converter/dom/cdata.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/converter/dom/flat/result.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/converter/dom/flat/source.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/converter/dom/flat/source_notuniq.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/converter/dom/flat/source_wrongarray.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/ambiguous_merged.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/ambiguous_new_one.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/ambiguous_new_two.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/ambiguous_one.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/ambiguous_two.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/attributes.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/attributes_merged.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/attributes_new.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/converter/cdata.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/converter/cdata.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/converter/no_attributes.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/converter/no_attributes.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/converter/with_attributes.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/converter/with_attributes.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/ids.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/ids_merged.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/ids_new.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/namespaced.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/namespaced_merged.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/namespaced_new.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/no_ids.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/no_ids_merged.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/no_ids_new.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/override_node.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/override_node_merged.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/override_node_new.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/recursive.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/recursive_deep.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/recursive_deep_merged.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/recursive_deep_new.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/recursive_merged.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/recursive_new.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/text_node.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/text_node_merged.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/text_node_new.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/types.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/types_merged.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/types_new.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/reader/config.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/reader/schema.xsd
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/sample.xsd
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/theme_invalid.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/view_invalid.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/view_one.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Test/Unit/_files/view_two.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/Theme.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/ValidationStateInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/View.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/ViewFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/etc/theme.xsd
 mode change 100644 => 100755 lib/internal/Magento/Framework/Config/etc/view.xsd
 mode change 100644 => 100755 lib/internal/Magento/Framework/Console/Cli.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Console/CommandList.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Console/CommandListInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Console/CommandLocator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Console/Exception/GenerationDirectoryAccessException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Console/GenerationDirectoryAccess.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Console/QuestionPerformer/YesNo.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Console/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/Console/Test/Unit/Exception/GenerationDirectoryAccessExceptionTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Console/Test/Unit/QuestionPerformer/YesNoTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Controller/AbstractResult.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Controller/Index/Index.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Controller/Noroute/Index.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Controller/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/Controller/Result/Forward.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Controller/Result/Json.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Controller/Result/JsonFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Controller/Result/Raw.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Controller/Result/Redirect.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Controller/Result/RedirectFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Controller/ResultFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Controller/ResultInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Controller/Router/Route/Factory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Controller/Test/Unit/Controller/Index/IndexTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Controller/Test/Unit/Controller/NorouteTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Controller/Test/Unit/Result/ForwardTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Controller/Test/Unit/Result/JsonTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Controller/Test/Unit/Result/RawTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Controller/Test/Unit/Result/RedirectFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Controller/Test/Unit/Result/RedirectTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Controller/Test/Unit/Router/Route/FactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Convert/ConvertArray.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Convert/DataObject.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Convert/DataSize.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Convert/Excel.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Convert/ExcelFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Convert/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/Convert/Test/Unit/ConvertArrayTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Convert/Test/Unit/DataSizeTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Convert/Test/Unit/ExcelFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Convert/Test/Unit/ExcelTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Convert/Test/Unit/ObjectTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Convert/Test/Unit/XmlTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Convert/Test/Unit/_files/sample.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Convert/Xml.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Crontab/CrontabManager.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Crontab/CrontabManagerInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Crontab/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/Crontab/TasksProvider.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Crontab/TasksProviderInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Crontab/Test/Unit/CrontabManagerTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Crontab/Test/Unit/TasksProviderTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Css/PreProcessor/Adapter/CssInliner.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Css/PreProcessor/Adapter/Less/Processor.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Css/PreProcessor/Config.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Css/PreProcessor/ErrorHandler.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Css/PreProcessor/ErrorHandlerInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Css/PreProcessor/File/Collector/Aggregated.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Css/PreProcessor/File/Collector/Library.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Css/PreProcessor/File/FileList/Collator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Css/PreProcessor/File/Temporary.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Css/PreProcessor/FileGenerator/RelatedGenerator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Css/PreProcessor/Instruction/Import.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Css/PreProcessor/Instruction/MagentoImport.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Css/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/Css/Test/Unit/PreProcessor/Adapter/Less/ProcessorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Css/Test/Unit/PreProcessor/Adapter/Less/_file/test.css
 mode change 100644 => 100755 lib/internal/Magento/Framework/Css/Test/Unit/PreProcessor/Adapter/Less/_file/test.less
 mode change 100644 => 100755 lib/internal/Magento/Framework/Css/Test/Unit/PreProcessor/File/Collector/AggregatedTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Css/Test/Unit/PreProcessor/File/Collector/LibraryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Css/Test/Unit/PreProcessor/File/FileList/CollatorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Css/Test/Unit/PreProcessor/Instruction/ImportTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Css/Test/Unit/PreProcessor/Instruction/MagentoImportTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Css/Test/Unit/PreProcessor/_files/invalid.less
 mode change 100644 => 100755 lib/internal/Magento/Framework/Css/Test/Unit/PreProcessor/_files/valid.less
 mode change 100644 => 100755 lib/internal/Magento/Framework/Currency.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/CurrencyFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/CurrencyInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/AbstractMapper.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Adapter/AdapterInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Adapter/ConnectionException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Adapter/DdlCache.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Adapter/DeadlockException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Adapter/DuplicateException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Adapter/LockWaitException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Adapter/Pdo/Mysql.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Adapter/Pdo/MysqlFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/AggregatedFieldDataConverter.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/DataConverter/DataConversionException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/DataConverter/DataConverterInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/DataConverter/SerializedToJson.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Ddl/Sequence.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Ddl/Table.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Ddl/Trigger.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Ddl/TriggerFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/ExpressionConverter.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/FieldDataConversionException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/FieldDataConverter.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/FieldDataConverterFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/FieldToConvert.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/GenericMapper.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Helper.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Helper/AbstractHelper.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Helper/Mysql/Fulltext.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Logger/File.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Logger/LoggerAbstract.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Logger/LoggerProxy.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Logger/Quiet.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/LoggerInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/MapperFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/MapperInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Platform/Quote.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Profiler.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Query.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Query/BatchIterator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Query/BatchIteratorFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Query/BatchIteratorInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Query/BatchRangeIterator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Query/Generator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/QueryBuilder.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/QueryFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/QueryInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Select.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Select/ColumnsRenderer.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Select/CompositeQueryModifier.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Select/DistinctRenderer.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Select/ForUpdateRenderer.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Select/FromRenderer.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Select/GroupRenderer.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Select/HavingRenderer.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Select/InQueryModifier.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Select/LikeQueryModifier.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Select/LimitRenderer.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Select/OrderRenderer.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Select/QueryModifierFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Select/QueryModifierInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Select/RendererInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Select/RendererProxy.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Select/SelectRenderer.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Select/UnionRenderer.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Select/WhereRenderer.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/SelectFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Sequence/SequenceInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Sql/ColumnValueExpression.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Sql/ConcatExpression.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Sql/Expression.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Sql/ExpressionInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Sql/LimitExpression.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Sql/LookupExpression.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Sql/UnionExpression.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Statement/Parameter.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Statement/Pdo/Mysql.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/SubSelect.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/TemporaryTableService.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Test/Unit/AbstractMapperTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Test/Unit/Adapter/Pdo/MysqlFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Test/Unit/Adapter/Pdo/MysqlTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Test/Unit/DB/Logger/LoggerProxyTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Test/Unit/DataConverter/SerializedToJsonTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Test/Unit/Ddl/SequenceTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Test/Unit/Ddl/TriggerTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Test/Unit/ExpressionConverterTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Test/Unit/FieldDataConverterFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Test/Unit/FieldDataConverterTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Test/Unit/GenericMapperTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Test/Unit/Helper/AbstractHelperTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Test/Unit/Helper/Mysql/FulltextTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Test/Unit/Logger/FileTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Test/Unit/Platform/QuoteTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Test/Unit/ProfilerTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Test/Unit/QueryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Test/Unit/Select/ColumnsRendererTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Test/Unit/Select/CompositeQueryModifierTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Test/Unit/Select/DistinctRendererTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Test/Unit/Select/ForUpdateRendererTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Test/Unit/Select/FromRendererTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Test/Unit/Select/GroupRendererTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Test/Unit/Select/HavingRendererTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Test/Unit/Select/LikeQueryModifierTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Test/Unit/Select/LimitRendererTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Test/Unit/Select/OrderRendererTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Test/Unit/Select/QueryModifierFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Test/Unit/Select/RendererProxyTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Test/Unit/Select/SelectRendererTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Test/Unit/Select/UnionRendererTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Test/Unit/Select/WhereRendererTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Test/Unit/SelectFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Test/Unit/SelectTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Test/Unit/Sql/LimitExpressionTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Test/Unit/Sql/UnionExpressionTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Test/Unit/TemporaryTableServiceTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Test/Unit/Tree/NodeTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Transaction.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Tree.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Tree/Node.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DB/Tree/NodeSet.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/AbstractCriteria.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/AbstractDataObject.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/AbstractSearchCriteriaBuilder.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/AbstractSearchResult.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Argument/Interpreter/ArrayType.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Argument/Interpreter/BaseStringUtils.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Argument/Interpreter/Boolean.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Argument/Interpreter/Composite.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Argument/Interpreter/Constant.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Argument/Interpreter/DataObject.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Argument/Interpreter/NullType.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Argument/Interpreter/Number.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Argument/Interpreter/StringUtils.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Argument/InterpreterInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Collection.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Collection/AbstractDb.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Collection/Db/FetchStrategy/Cache.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Collection/Db/FetchStrategy/Query.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Collection/Db/FetchStrategyInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Collection/EntityFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Collection/EntityFactoryInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Collection/Filesystem.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Collection/ModelFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/CollectionDataSourceInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/CollectionModifier.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/CollectionModifierInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/DataArray.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Form.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Form/AbstractForm.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Form/Element/AbstractElement.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Form/Element/Button.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Form/Element/Checkbox.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Form/Element/Checkboxes.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Form/Element/Collection.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Form/Element/CollectionFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Form/Element/Column.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Form/Element/Date.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Form/Element/Editablemultiselect.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Form/Element/Editor.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Form/Element/Factory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Form/Element/Fieldset.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Form/Element/File.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Form/Element/Gallery.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Form/Element/Hidden.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Form/Element/Image.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Form/Element/Imagefile.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Form/Element/Label.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Form/Element/Link.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Form/Element/Multiline.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Form/Element/Multiselect.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Form/Element/Note.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Form/Element/Obscure.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Form/Element/Password.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Form/Element/Radio.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Form/Element/Radios.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Form/Element/Renderer/RendererInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Form/Element/Reset.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Form/Element/Select.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Form/Element/Submit.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Form/Element/Text.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Form/Element/Textarea.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Form/Element/Time.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Form/ElementFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Form/Filter/Date.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Form/Filter/Escapehtml.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Form/Filter/FilterInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Form/Filter/Striptags.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Form/Filter/Trim.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Form/FilterFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Form/FormKey.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Form/FormKey/Validator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/FormFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Graph.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Helper/PostHelper.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/ObjectFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/OptionSourceInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Schema.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/SearchResultInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/SearchResultIterator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/SearchResultIteratorFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/SearchResultProcessor.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/SearchResultProcessorFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/SearchResultProcessorInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Structure.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/AbstractCriteriaTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/AbstractDataObjectTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/AbstractSearchResultTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Argument/Interpreter/ArrayTypeTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Argument/Interpreter/BooleanTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Argument/Interpreter/CompositeTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Argument/Interpreter/ConstantTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Argument/Interpreter/NullTypeTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Argument/Interpreter/NumberTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Argument/XsdTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Argument/_files/typesInvalidArray.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Argument/_files/types_schema.xsd
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Argument/_files/types_valid.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Collection/Db/FetchStrategy/CacheTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Collection/Db/FetchStrategy/QueryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Collection/DbCollection.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Collection/DbTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Collection/FilesystemTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/CollectionTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Criteria/Sample.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Form/AbstractFormTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/AbstractElementTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/ButtonTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/CheckboxTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/CollectionFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/ColumnTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/DateTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/EditablemultiselectTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/EditorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/FactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/FileTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/HiddenTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/ImageTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/ImagefileTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/LabelTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/LinkTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/MultilineTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/MultiselectTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/NoteTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/ObscureTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/PasswordTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/RadioTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/ResetTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/SubmitTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/TextTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/TextareaTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Form/FilterFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Form/FormKey/ValidatorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Form/FormKeyTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/FormFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/FormTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/GraphTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Helper/PostHelperTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/SearchCriteriaBuilderTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/SearchResultProcessorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/StructureTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Stub/DataObject.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Stub/SearchCriteriaBuilder.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Stub/SearchResult.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/Tree/Node/CollectionTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Test/Unit/TreeTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Tree.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Tree/Db.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Tree/Dbp.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Tree/Node.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Tree/Node/Collection.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Tree/NodeFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/TreeFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/ValueSourceInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/Wysiwyg/Normalizer.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Data/etc/argument/types.xsd
 mode change 100644 => 100755 lib/internal/Magento/Framework/DataObject.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DataObject/Cache.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DataObject/Copy.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DataObject/Copy/Config.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DataObject/Copy/Config/Converter.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DataObject/Copy/Config/Data.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DataObject/Copy/Config/Data/Proxy.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DataObject/Copy/Config/Reader.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DataObject/Copy/Config/SchemaLocator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DataObject/Factory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DataObject/IdentityGeneratorInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DataObject/IdentityInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DataObject/IdentityService.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DataObject/KeyValueObjectInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DataObject/Mapper.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DataObject/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/DataObject/Test/Unit/CacheTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DataObject/Test/Unit/Copy/Config/ConverterTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DataObject/Test/Unit/Copy/Config/SchemaLocatorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DataObject/Test/Unit/Copy/Config/_files/fieldset.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/DataObject/Test/Unit/Copy/Config/_files/fieldset_config.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DataObject/Test/Unit/Copy/ConfigTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DataObject/Test/Unit/CopyTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DataObject/Test/Unit/MapperTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DataObject/etc/fieldset.xsd
 mode change 100644 => 100755 lib/internal/Magento/Framework/DataObject/etc/fieldset_file.xsd
 mode change 100644 => 100755 lib/internal/Magento/Framework/Debug.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/DomDocument/DomDocumentFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Encryption/Crypt.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Encryption/Encryptor.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Encryption/EncryptorInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Encryption/Helper/Security.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Encryption/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/Encryption/Test/Unit/Crypt/_files/_cipher_info.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Encryption/Test/Unit/Crypt/_files/_crypt_fixtures.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Encryption/Test/Unit/CryptTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Encryption/Test/Unit/EncryptorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Encryption/Test/Unit/Helper/SecurityTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Encryption/Test/Unit/UrlCoderTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Encryption/UrlCoder.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/AbstractModelHydrator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/CallbackHandler.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/CompositeMapper.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Db/CreateRow.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Db/DeleteRow.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Db/ReadRow.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Db/UpdateRow.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/EntityManager.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/EntityMetadata.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/EntityMetadataInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/EventManager.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Hydrator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/HydratorInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/HydratorPool.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Mapper.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/MapperInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/MapperPool.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/MetadataPool.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Observer/AfterEntityDelete.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Observer/AfterEntityLoad.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Observer/AfterEntitySave.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Observer/BeforeEntityDelete.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Observer/BeforeEntityLoad.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Observer/BeforeEntitySave.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Operation/AttributeInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Operation/AttributePool.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Operation/CheckIfExists.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Operation/CheckIfExistsInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Operation/Create.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Operation/Create/CreateAttributes.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Operation/Create/CreateExtensions.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Operation/Create/CreateMain.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Operation/CreateInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Operation/Delete.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Operation/Delete/DeleteAttributes.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Operation/Delete/DeleteExtensions.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Operation/Delete/DeleteMain.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Operation/DeleteInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Operation/ExtensionInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Operation/ExtensionPool.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Operation/Read.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Operation/Read/ReadAttributes.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Operation/Read/ReadExtensions.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Operation/Read/ReadMain.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Operation/ReadInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Operation/Update.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Operation/Update/UpdateAttributes.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Operation/Update/UpdateExtensions.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Operation/Update/UpdateMain.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Operation/UpdateInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Operation/ValidatorPool.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/OperationInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/OperationPool.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Sequence/Sequence.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Sequence/SequenceApplier.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Sequence/SequenceFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Sequence/SequenceManager.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Sequence/SequenceRegistry.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Test/Unit/Db/UpdateRowTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Test/Unit/MapperTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Test/Unit/Operation/CreateTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Test/Unit/Operation/UpdateTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Test/Unit/OperationPoolTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Test/Unit/Sequence/SequenceApplierTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/Test/Unit/TypeResolverTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/EntityManager/TypeResolver.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Escaper.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Event.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Event/Collection.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Event/Config.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Event/Config/Converter.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Event/Config/Data.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Event/Config/Reader.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Event/Config/SchemaLocator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Event/ConfigInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Event/Invoker/InvokerDefault.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Event/InvokerInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Event/Manager.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Event/ManagerInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Event/Observer.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Event/Observer/Collection.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Event/Observer/Cron.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Event/Observer/Regex.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Event/ObserverFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Event/ObserverInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Event/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/Event/Test/Unit/CollectionTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Event/Test/Unit/Config/ConverterTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Event/Test/Unit/Config/SchemaLocatorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Event/Test/Unit/Config/XsdTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Event/Test/Unit/Config/_files/event_config.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Event/Test/Unit/Config/_files/event_config.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Event/Test/Unit/Config/_files/event_invalid_config.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Event/Test/Unit/Config/_files/invalidEventsXmlArray.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Event/Test/Unit/Config/_files/valid_events.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Event/Test/Unit/ConfigTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Event/Test/Unit/Invoker/InvokerDefaultTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Event/Test/Unit/Invoker/ObserverExample.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Event/Test/Unit/ManagerStub.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Event/Test/Unit/ManagerTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Event/Test/Unit/Observer/CollectionTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Event/Test/Unit/Observer/CronTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Event/Test/Unit/Observer/RegexTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Event/Test/Unit/ObserverFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Event/Test/Unit/ObserverTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Event/Test/Unit/WrapperFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Event/WrapperFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Event/etc/events.xsd
 mode change 100644 => 100755 lib/internal/Magento/Framework/EventFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Exception/AbstractAggregateException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Exception/AlreadyExistsException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Exception/AuthenticationException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Exception/AuthorizationException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Exception/ConfigurationMismatchException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Exception/CouldNotDeleteException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Exception/CouldNotSaveException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Exception/CronException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Exception/EmailNotConfirmedException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Exception/FileSystemException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Exception/InputException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Exception/IntegrationException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Exception/InvalidEmailOrPasswordException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Exception/LocalizedException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Exception/MailException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Exception/NoSuchEntityException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Exception/NotFoundException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Exception/PaymentException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Exception/Plugin/AuthenticationException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Exception/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/Exception/RemoteServiceUnavailableException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Exception/RuntimeException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Exception/SecurityViolationException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Exception/SerializationException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Exception/SessionException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Exception/State/ExpiredException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Exception/State/InitException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Exception/State/InputMismatchException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Exception/State/InvalidTransitionException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Exception/State/UserLockedException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Exception/StateException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Exception/TemporaryState/CouldNotSaveException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Exception/TemporaryStateExceptionInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Exception/Test/Unit/AuthenticationExceptionTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Exception/Test/Unit/AuthorizationExceptionTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Exception/Test/Unit/EmailNotConfirmedExceptionTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Exception/Test/Unit/InputExceptionTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Exception/Test/Unit/LocalizedExceptionTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Exception/Test/Unit/NoSuchEntityExceptionTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Exception/Test/Unit/State/ExpiredExceptionTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Exception/Test/Unit/State/InputMismatchExceptionTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Exception/Test/Unit/State/InvalidTransitionExceptionTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Exception/Test/Unit/StateExceptionTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Exception/ValidatorException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/File/Csv.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/File/CsvMulty.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/File/Mime.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/File/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/File/Size.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/File/Test/Unit/CsvTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/File/Test/Unit/MimeTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/File/Test/Unit/Transfer/Adapter/HttpTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/File/Test/Unit/_files/UPPERCASE.WEIRD
 mode change 100644 => 100755 lib/internal/Magento/Framework/File/Test/Unit/_files/file.weird
 mode change 100644 => 100755 lib/internal/Magento/Framework/File/Test/Unit/_files/javascript.js
 mode change 100644 => 100755 lib/internal/Magento/Framework/File/Transfer/Adapter/Http.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/File/Uploader.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/File/UploaderFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filesystem.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filesystem/Directory/Read.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filesystem/Directory/ReadFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filesystem/Directory/ReadInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filesystem/Directory/Write.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filesystem/Directory/WriteFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filesystem/Directory/WriteInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filesystem/DirectoryList.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filesystem/Driver/File.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filesystem/Driver/Http.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filesystem/Driver/Https.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filesystem/Driver/Zlib.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filesystem/DriverInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filesystem/DriverPool.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filesystem/File/Read.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filesystem/File/ReadFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filesystem/File/ReadInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filesystem/File/Write.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filesystem/File/WriteFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filesystem/File/WriteInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filesystem/FileResolver.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filesystem/Filter/ExcludeFilter.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filesystem/Glob.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filesystem/Io/AbstractIo.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filesystem/Io/File.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filesystem/Io/Ftp.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filesystem/Io/IoInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filesystem/Io/Sftp.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filesystem/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filesystem/Test/Unit/Directory/ReadTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filesystem/Test/Unit/Directory/WriteTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filesystem/Test/Unit/DirectoryListTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filesystem/Test/Unit/Driver/FileTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filesystem/Test/Unit/Driver/HttpTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filesystem/Test/Unit/Driver/HttpsTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filesystem/Test/Unit/DriverPoolTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filesystem/Test/Unit/File/ExcludeFilterTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filesystem/Test/Unit/File/ReadFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filesystem/Test/Unit/File/ReadTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filesystem/Test/Unit/File/WriteFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filesystem/Test/Unit/File/WriteTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filesystem/Test/Unit/FileResolverTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filesystem/Test/Unit/_files/http_mock.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/AbstractFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/ArrayFilter.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/DataObject.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/DataObject/Grid.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/Decrypt.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/Email.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/Encrypt.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/Encrypt/AdapterInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/Encrypt/Basic.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/Factory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/FactoryInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/FilterManager.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/FilterManager/Config.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/FilterManager/ConfigInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/Input.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/Input/MaliciousCode.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/LocalizedToNormalized.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/Money.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/RemoveAccents.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/RemoveTags.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/SplitWords.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/Sprintf.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/StripTags.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/Template.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/Template/Simple.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/Template/Tokenizer/AbstractTokenizer.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/Template/Tokenizer/Parameter.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/Template/Tokenizer/Variable.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/Test/Unit/AbstractFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/Test/Unit/ArrayFilterTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/Test/Unit/DataObject/GridTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/Test/Unit/FilterManager/ConfigTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/Test/Unit/FilterManagerTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/Test/Unit/Input/MaliciousCodeTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/Test/Unit/InputTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/Test/Unit/RemoveAccentsTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/Test/Unit/RemoveTagsTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/Test/Unit/SplitWordsTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/Test/Unit/SprintfTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/Test/Unit/StripTagsTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/Test/Unit/Template/SimpleTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/Test/Unit/Template/Tokenizer/ParameterTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/Test/Unit/Template/Tokenizer/VariableTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/Test/Unit/TemplateTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/Test/Unit/TranslitTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/Test/Unit/TranslitUrlTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/Test/Unit/TruncateTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/Translit.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/TranslitUrl.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/Truncate.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Filter/ZendFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Flag.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Flag/FlagResource.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Flag/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/FlagFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/FlagManager.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/HTTP/Adapter/Curl.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/HTTP/Adapter/FileTransferFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/HTTP/Authentication.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/HTTP/Client/Curl.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/HTTP/Client/Socket.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/HTTP/ClientFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/HTTP/ClientInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/HTTP/Header.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/HTTP/PhpEnvironment/RemoteAddress.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/HTTP/PhpEnvironment/Request.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/HTTP/PhpEnvironment/Response.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/HTTP/PhpEnvironment/ServerAddress.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/HTTP/Test/Unit/Adapter/CurlTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/HTTP/Test/Unit/Adapter/_files/curl_exec_mock.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/HTTP/Test/Unit/Adapter/_files/curl_response1.txt
 mode change 100644 => 100755 lib/internal/Magento/Framework/HTTP/Test/Unit/Adapter/_files/curl_response2.txt
 mode change 100644 => 100755 lib/internal/Magento/Framework/HTTP/Test/Unit/Adapter/_files/curl_response_expected.txt
 mode change 100644 => 100755 lib/internal/Magento/Framework/HTTP/Test/Unit/AuthenticationTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/HTTP/Test/Unit/HeaderTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/HTTP/Test/Unit/PhpEnvironment/RemoteAddressTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/HTTP/Test/Unit/PhpEnvironment/RequestTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/HTTP/Test/Unit/PhpEnvironment/ResponseTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/HTTP/Test/Unit/PhpEnvironment/ServerAddressTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/HTTP/ZendClient.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Image.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Image/Adapter/AbstractAdapter.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Image/Adapter/AdapterInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Image/Adapter/Config.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Image/Adapter/ConfigInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Image/Adapter/Gd2.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Image/Adapter/ImageMagick.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Image/AdapterFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Image/Factory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Image/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/Image/Test/Unit/Adapter/AbstractTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Image/Test/Unit/Adapter/Gd2Test.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Image/Test/Unit/Adapter/ImageMagickTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Image/Test/Unit/Adapter/_files/global_php_mock.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Image/Test/Unit/Adapter/_files/invalid_image.jpg
 mode change 100644 => 100755 lib/internal/Magento/Framework/Image/Test/Unit/AdapterFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/AbstractProcessor.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/Action/Base.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/Action/Dummy.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/Action/Entity.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/ActionFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/ActionInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/BatchProvider.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/BatchProviderInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/BatchSizeManagement.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/BatchSizeManagementInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/CacheContext.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/Config/Converter.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/Config/DependencyInfoProvider.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/Config/DependencyInfoProviderInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/Config/Reader.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/Config/SchemaLocator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/ConfigInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/FieldsetInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/FieldsetPool.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/GridStructure.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/Handler/AttributeHandler.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/Handler/ConcatHandler.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/Handler/DefaultHandler.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/HandlerInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/HandlerPool.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/IndexStructure.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/IndexStructureInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/IndexTableRowSizeEstimator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/IndexTableRowSizeEstimatorInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/IndexerInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/IndexerRegistry.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/SaveHandler/Batch.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/SaveHandler/Grid.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/SaveHandler/IndexerHandler.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/SaveHandler/IndexerInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/SaveHandlerFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/ScopeResolver/FlatScopeResolver.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/ScopeResolver/IndexScopeResolver.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/StateInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/StructureFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/Table/Strategy.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/Table/StrategyInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/Test/Unit/ActionFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/Test/Unit/BatchProviderTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/Test/Unit/BatchSizeManagementTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/Test/Unit/BatchTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/Test/Unit/Config/ConverterTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/Test/Unit/Config/DependencyInfoProviderTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/Test/Unit/Config/ReaderTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/Test/Unit/Config/SchemaLocatorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/Test/Unit/GridStructureTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/Test/Unit/Handler/AttributeHandlerTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/Test/Unit/IndexStructureTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/Test/Unit/IndexTableRowSizeEstimatorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/Test/Unit/IndexerRegistryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/Test/Unit/ScopeResolver/IndexScopeResolverTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/Test/Unit/StrategyTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/Test/Unit/XsdTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/Test/Unit/_files/indexer_config.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/Test/Unit/_files/indexer_merged_one.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/Test/Unit/_files/indexer_merged_two.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/Test/Unit/_files/indexer_one.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/Test/Unit/_files/indexer_three.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/Test/Unit/_files/indexer_two.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/Test/Unit/_files/invalidIndexerXmlArray.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/Test/Unit/_files/valid_indexer.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/etc/indexer.xsd
 mode change 100644 => 100755 lib/internal/Magento/Framework/Indexer/etc/indexer_merged.xsd
 mode change 100644 => 100755 lib/internal/Magento/Framework/Interception/Code/Generator/Interceptor.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Interception/Code/InterfaceValidator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Interception/Config/Config.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Interception/ConfigInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Interception/Definition/Runtime.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Interception/DefinitionInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Interception/Interceptor.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Interception/InterceptorInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Interception/ObjectManager/Config/Compiled.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Interception/ObjectManager/Config/Developer.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Interception/ObjectManager/ConfigInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Interception/PluginList/PluginList.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Interception/PluginListInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Interception/Test/Unit/Code/Generator/InterceptorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Interception/Test/Unit/Code/Generator/_files/Interceptor.txt
 mode change 100644 => 100755 lib/internal/Magento/Framework/Interception/Test/Unit/Code/Generator/_files/Sample.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Interception/Test/Unit/Code/Generator/_files/TInterceptor.txt
 mode change 100644 => 100755 lib/internal/Magento/Framework/Interception/Test/Unit/Code/Generator/_files/TSample.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Interception/Test/Unit/Code/InterfaceValidatorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Interception/Test/Unit/Config/ConfigTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/InterfaceValidator/Item.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/InterfaceValidator/ItemPlugin/ExtraParameters.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/InterfaceValidator/ItemPlugin/IncompatibleArgumentsCount.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/InterfaceValidator/ItemPlugin/IncompatibleArgumentsType.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/InterfaceValidator/ItemPlugin/IncompatibleInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/InterfaceValidator/ItemPlugin/IncorrectSubject.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/InterfaceValidator/ItemPlugin/InvalidProceed.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/InterfaceValidator/ItemPlugin/ValidPlugin.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/InterfaceValidator/ItemWithArguments.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/Item.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/Item/Enhanced.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/ItemContainer.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/ItemContainer/Enhanced.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/ItemContainerPlugin/Simple.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/ItemPlugin/Advanced.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/ItemPlugin/Simple.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/StartingBackslash.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/StartingBackslash/Plugin.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Interception/Test/Unit/ObjectManager/Config/DeveloperTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Interception/Test/Unit/PluginList/PluginListTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Interception/Test/Unit/_files/reader_mock_map.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Intl/DateTimeFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Intl/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/Json/Decoder.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Json/DecoderInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Json/Encoder.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Json/EncoderInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Json/Helper/Data.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Json/Test/Unit/Helper/DataTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/LICENSE.txt
 mode change 100644 => 100755 lib/internal/Magento/Framework/LICENSE_AFL.txt
 mode change 100644 => 100755 lib/internal/Magento/Framework/Locale/AvailableLocalesInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Locale/Bundle/CurrencyBundle.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Locale/Bundle/DataBundle.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Locale/Bundle/LanguageBundle.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Locale/Bundle/RegionBundle.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Locale/Bundle/TimezoneBundle.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Locale/Config.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Locale/ConfigInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Locale/Currency.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Locale/CurrencyInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Locale/Deployed/Codes.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Locale/Deployed/Options.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Locale/Format.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Locale/FormatInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Locale/ListsInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Locale/OptionInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Locale/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/Locale/Resolver.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Locale/ResolverInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Locale/Test/Unit/ConfigTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Locale/Test/Unit/CurrencyTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Locale/Test/Unit/Deployed/CodesTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Locale/Test/Unit/Deployed/OptionsTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Locale/Test/Unit/FormatTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Locale/Test/Unit/TranslatedListsTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Locale/TranslatedLists.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Logger/Handler/Base.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Logger/Handler/Debug.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Logger/Handler/Exception.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Logger/Handler/System.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Logger/Monolog.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Logger/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/Logger/Test/Unit/Handler/BaseTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Logger/Test/Unit/Handler/SystemTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Logger/Test/Unit/MonologTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mail/Message.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mail/MessageInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mail/Template/ConfigInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mail/Template/Factory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mail/Template/FactoryInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mail/Template/SenderResolverInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mail/Template/TransportBuilder.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mail/Template/TransportBuilderByStore.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mail/TemplateInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mail/Test/Unit/MessageTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mail/Test/Unit/Template/FactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mail/Test/Unit/Template/TransportBuilderByStoreTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mail/Test/Unit/Template/TransportBuilderTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mail/Test/Unit/TransportTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mail/Transport.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mail/TransportInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mail/TransportInterfaceFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Math/Calculator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Math/Division.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Math/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/Math/Random.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Math/Test/Unit/CalculatorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Math/Test/Unit/DivisionTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Math/Test/Unit/RandomTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Message/AbstractMessage.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Message/Collection.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Message/CollectionFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Message/Error.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Message/ExceptionMessageFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Message/ExceptionMessageFactoryInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Message/ExceptionMessageFactoryPool.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Message/ExceptionMessageLookupFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Message/Factory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Message/Manager.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Message/ManagerInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Message/MessageInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Message/Notice.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Message/PhraseFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Message/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/Message/Session.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Message/Success.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Message/Test/Unit/AbstractMessageTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Message/Test/Unit/CollectionTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Message/Test/Unit/ErrorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Message/Test/Unit/ExceptionMessageFactoryPoolTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Message/Test/Unit/ExceptionMessageFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Message/Test/Unit/ExceptionMessageLookupFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Message/Test/Unit/FactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Message/Test/Unit/ManagerTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Message/Test/Unit/NoticeTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Message/Test/Unit/SuccessTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Message/Test/Unit/TestingMessage.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Message/Test/Unit/WarningTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Message/Warning.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/AbstractExtensibleModel.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/AbstractModel.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/ActionValidator/RemoveAction.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/ActionValidator/RemoveAction/Allowed.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/CallbackPool.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/Context.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/Entity/RepositoryFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/Entity/Scope.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/Entity/ScopeFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/Entity/ScopeInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/Entity/ScopeProviderInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/Entity/ScopeResolver.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/EntityRegistry.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/EntitySnapshot.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/EntitySnapshot/AttributeProvider.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/EntitySnapshot/AttributeProviderInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/Operation/ReadInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/Operation/WriteInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/ResourceModel/AbstractResource.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/ResourceModel/Db/AbstractDb.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/ResourceModel/Db/Collection/AbstractCollection.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/ResourceModel/Db/Context.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/ResourceModel/Db/ObjectRelationProcessor.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/ResourceModel/Db/Profiler.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/ResourceModel/Db/ReadEntityRow.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/ResourceModel/Db/Relation/ActionPool.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/ResourceModel/Db/TransactionManager.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/ResourceModel/Db/TransactionManagerInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/ResourceModel/Db/ValidateDataIntegrity.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/ResourceModel/Db/VersionControl/AbstractDb.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/ResourceModel/Db/VersionControl/Collection.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/ResourceModel/Db/VersionControl/Metadata.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/ResourceModel/Db/VersionControl/RelationComposite.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/ResourceModel/Db/VersionControl/RelationInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/ResourceModel/Db/VersionControl/Snapshot.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/ResourceModel/Entity/AbstractEntity.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/ResourceModel/Entity/Table.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/ResourceModel/Iterator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/ResourceModel/Type/AbstractType.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/ResourceModel/Type/Db.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/ResourceModel/Type/Db/ConnectionFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/ResourceModel/Type/Db/ConnectionFactoryInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/ResourceModel/Type/Db/Pdo/Mysql.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/Test/Unit/AbstractExtensibleModelTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/Test/Unit/AbstractModelTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/Test/Unit/ActionValidator/RemoveActionTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/Test/Unit/EntitySnapshot/AttributeProviderTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/AbstractResourceStub.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/AbstractResourceTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/Db/AbstractDbTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/Db/Collection/AbstractCollectionTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/Db/Collection/Uut.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/Db/CreateEntityRowTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/Db/DeleteEntityRowTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/Db/ReadEntityRowTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/Db/Relation/ActionPoolTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/Db/UpdateEntityRowTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/Db/VersionControl/MetadataTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/Db/VersionControl/RelationCompositeTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/Db/VersionControl/SnapshotTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/Type/Db/ConnectionFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/Type/Db/Pdo/MysqlTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/ConflictChecker.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/DbVersionInfo.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/Declaration/Converter/Dom.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/DependencyChecker.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/Dir.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/Dir/Reader.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/Dir/ReverseResolver.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/FullModuleList.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/Manager.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/ModuleList.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/ModuleList/Loader.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/ModuleListInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/ModuleResource.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/Output/Config.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/Output/ConfigInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/PackageInfo.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/PackageInfoFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/Plugin/DbStatusValidator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/ResourceInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/Setup.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/Setup/Context.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/Setup/Migration.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/Setup/MigrationData.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/Setup/MigrationFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/Status.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/Test/Unit/ConflictCheckerTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/Test/Unit/DbVersionInfoTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/Test/Unit/Declaration/Converter/DomTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/Test/Unit/Declaration/Converter/_files/converted_valid_module.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/Test/Unit/Declaration/Converter/_files/valid_module.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/Test/Unit/DependencyCheckerTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/Test/Unit/Dir/ReaderTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/Test/Unit/Dir/ReverseResolverTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/Test/Unit/DirTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/Test/Unit/FullModuleListTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/Test/Unit/ManagerTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/Test/Unit/ModuleList/LoaderTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/Test/Unit/ModuleListTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/Test/Unit/PackageInfoFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/Test/Unit/PackageInfoTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/Test/Unit/Plugin/DbStatusValidatorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/Test/Unit/Setup/MigrationTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/Test/Unit/Setup/_files/data_content_plain_model.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/Test/Unit/Setup/_files/data_content_plain_pk_fields.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/Test/Unit/Setup/_files/data_content_plain_resource.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/Test/Unit/Setup/_files/data_content_serialized.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/Test/Unit/Setup/_files/data_content_wiki.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/Test/Unit/Setup/_files/data_content_xml.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/Test/Unit/SetupTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/Test/Unit/StatusTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/Test/Unit/_files/Module/data/module_first_setup/.gitignore
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/Test/Unit/_files/Module/data/module_second_setup/.gitignore
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/Test/Unit/_files/Module/sql/module_first_setup/.gitignore
 mode change 100644 => 100755 lib/internal/Magento/Framework/Module/etc/module.xsd
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mview/ActionFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mview/ActionInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mview/Config.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mview/Config/Converter.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mview/Config/Data.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mview/Config/Data/Proxy.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mview/Config/Reader.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mview/Config/SchemaLocator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mview/ConfigInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mview/Processor.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mview/ProcessorInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mview/Test/Unit/ActionFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mview/Test/Unit/Config/ConverterTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mview/Test/Unit/Config/Data/ProxyTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mview/Test/Unit/Config/DataTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mview/Test/Unit/Config/ReaderTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mview/Test/Unit/ConfigTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mview/Test/Unit/ProcessorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mview/Test/Unit/View/ChangelogTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mview/Test/Unit/View/CollectionTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mview/Test/Unit/View/SubscriptionFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mview/Test/Unit/View/SubscriptionTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mview/Test/Unit/ViewTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mview/Test/Unit/XsdTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mview/Test/Unit/_files/invalidMviewXmlArray.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mview/Test/Unit/_files/mview_config.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mview/Test/Unit/_files/mview_merged_one.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mview/Test/Unit/_files/mview_merged_two.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mview/Test/Unit/_files/mview_one.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mview/Test/Unit/_files/mview_three.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mview/Test/Unit/_files/mview_two.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mview/Test/Unit/_files/valid_mview.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mview/View.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mview/View/AbstractFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mview/View/Changelog.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mview/View/ChangelogInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mview/View/ChangelogTableNotExistsException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mview/View/Collection.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mview/View/CollectionFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mview/View/CollectionInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mview/View/State/CollectionFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mview/View/State/CollectionInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mview/View/StateInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mview/View/Subscription.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mview/View/SubscriptionFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mview/View/SubscriptionInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mview/ViewInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Mview/etc/mview.xsd
 mode change 100644 => 100755 lib/internal/Magento/Framework/Notification/MessageInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Notification/MessageList.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Notification/NotifierInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Notification/NotifierList.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Notification/NotifierPool.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Notification/Test/Unit/NotifierListTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Notification/Test/Unit/NotifierPoolTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Oauth/ConsumerInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Oauth/Exception.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Oauth/Helper/Oauth.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Oauth/Helper/Request.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Oauth/NonceGeneratorInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Oauth/Oauth.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Oauth/OauthInputException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Oauth/OauthInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Oauth/Test/Unit/Helper/RequestTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Oauth/Test/Unit/OauthInputExceptionTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Oauth/TokenProviderInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Code/Generator/Converter.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Code/Generator/Factory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Code/Generator/Persistor.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Code/Generator/Proxy.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Code/Generator/Repository.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Config/Compiled.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Config/Config.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Config/Mapper/ArgumentParser.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Config/Mapper/Dom.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Config/Reader/Dom.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Config/Reader/DomFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Config/SchemaLocator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/ConfigCacheInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/ConfigInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/ConfigLoaderInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/ContextInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Definition/Runtime.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/DefinitionFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/DefinitionInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/DynamicConfigInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Factory/AbstractFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Factory/Compiled.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Factory/Dynamic/Developer.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Factory/Dynamic/Production.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/FactoryInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Helper/Composite.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/InterceptableValidator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/NoninterceptableInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/ObjectManager.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Profiler/Code/Generator/Logger.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Profiler/FactoryDecorator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Profiler/Log.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Profiler/Tree/Item.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Relations/Runtime.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/RelationsInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/TMap.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/TMapFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/Code/Generator/ConverterTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/Code/Generator/FactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/Code/Generator/GenerateRepositoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/Code/Generator/ProxyTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/Code/Generator/RepositoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/Code/Generator/_files/Sample.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/Code/Generator/_files/SampleFactory.txt
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/Code/Generator/_files/SampleProxy.txt
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/Code/Generator/_files/SampleRepository.txt
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/Code/Generator/_files/SampleRepositoryInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/Code/Generator/_files/TSampleInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/Code/Generator/_files/TSampleRepository.txt
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/Code/Generator/_files/TSampleRepositoryInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/Config/CompiledTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/Config/ConfigTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/Config/Mapper/ArgumentParserTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/Config/Mapper/DomTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/Config/Mapper/_files/argument_parser.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/Config/Mapper/_files/mapped_simple_di_config.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/Config/Mapper/_files/simple_di_config.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/Config/Reader/DomFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/Config/Reader/DomTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/Config/Reader/_files/ConfigDomMock.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/Config/SchemaLocatorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/Config/XsdTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/Config/_files/invalidConfigXmlArray.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/Config/_files/valid_config.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/DefinitionFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/Factory/CompiledTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/Factory/FactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/Factory/Fixture/CircularOne.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/Factory/Fixture/CircularThree.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/Factory/Fixture/CircularTwo.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/Factory/Fixture/Compiled/DependencySharedTesting.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/Factory/Fixture/Compiled/DependencyTesting.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/Factory/Fixture/Compiled/SimpleClassTesting.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/Factory/Fixture/OneScalar.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/Factory/Fixture/Polymorphous.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/Factory/Fixture/Two.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/Helper/CompositeTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/InterceptableValidatorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/ObjectManagerTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/Profiler/FactoryDecoratorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/Relations/RuntimeTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/TMapTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/Aggregate/AggregateInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/Aggregate/AggregateParent.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/Aggregate/Child.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/Aggregate/WithOptional.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/Child.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/Child/A.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/Child/Circular.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/Child/Interceptor.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/Child/Interceptor/A.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/Child/Interceptor/B.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/ChildInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/DiInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/DiParent.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/Proxy.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/TMap/TClass.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/TMap/TInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/logger_classes.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManager/etc/config.xsd
 mode change 100644 => 100755 lib/internal/Magento/Framework/ObjectManagerInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Option/ArrayInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Option/ArrayPool.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Option/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/OsInfo.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Parse/Zip.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Phrase.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Phrase/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/Phrase/Renderer/Composite.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Phrase/Renderer/Inline.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Phrase/Renderer/Placeholder.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Phrase/Renderer/Translate.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Phrase/RendererInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Phrase/Test/Unit/Renderer/CompositeTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Phrase/Test/Unit/Renderer/InlineTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Phrase/Test/Unit/Renderer/PlaceholderTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Phrase/Test/Unit/Renderer/TranslateTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/Adjustment/AdjustmentInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/Adjustment/Calculator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/Adjustment/CalculatorInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/Adjustment/Collection.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/Adjustment/Factory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/Adjustment/Pool.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/Amount/AmountFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/Amount/AmountInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/Amount/Base.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/Helper/Data.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/Price/AbstractPrice.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/Price/BasePriceProviderInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/Price/Collection.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/Price/Factory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/Price/Pool.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/Price/PriceInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/PriceComposite.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/PriceCurrencyInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/PriceInfo/Base.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/PriceInfo/Factory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/PriceInfoInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/Render.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/Render/AbstractAdjustment.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/Render/AdjustmentRenderInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/Render/Amount.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/Render/AmountRenderInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/Render/Layout.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/Render/PriceBox.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/Render/PriceBoxRenderInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/Render/RendererPool.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/SaleableInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/Test/Unit/Adjustment/CalculatorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/Test/Unit/Adjustment/CollectionTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/Test/Unit/Adjustment/FactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/Test/Unit/Adjustment/PoolTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/Test/Unit/Amount/AmountFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/Test/Unit/Amount/BaseTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/Test/Unit/Helper/DataTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/Test/Unit/Price/AbstractPriceTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/Test/Unit/Price/CollectionTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/Test/Unit/Price/FactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/Test/Unit/Price/PoolTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/Test/Unit/Price/Stub.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/Test/Unit/PriceInfo/BaseTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/Test/Unit/PriceInfo/FactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/Test/Unit/Render/AbstractAdjustmentTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/Test/Unit/Render/AmountTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/Test/Unit/Render/LayoutTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/Test/Unit/Render/PriceBoxTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/Test/Unit/Render/RendererPoolTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Pricing/Test/Unit/RenderTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Process/PhpExecutableFinderFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Process/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/Profiler.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Profiler/Driver/Factory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Profiler/Driver/Standard.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Profiler/Driver/Standard/AbstractOutput.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Profiler/Driver/Standard/Output/Csvfile.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Profiler/Driver/Standard/Output/Factory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Profiler/Driver/Standard/Output/Html.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Profiler/Driver/Standard/OutputInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Profiler/Driver/Standard/Stat.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Profiler/DriverInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Profiler/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/Profiler/Test/Unit/Driver/FactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Profiler/Test/Unit/Driver/Standard/Output/CsvfileTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Profiler/Test/Unit/Driver/Standard/Output/FactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Profiler/Test/Unit/Driver/Standard/OutputAbstractTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Profiler/Test/Unit/Driver/Standard/StatTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Profiler/Test/Unit/Driver/StandardTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Reflection/AttributeTypeResolver.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Reflection/CustomAttributesProcessor.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Reflection/DataObjectProcessor.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Reflection/ExtensionAttributesProcessor.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Reflection/FieldNamer.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Reflection/MethodsMap.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Reflection/NameFinder.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Reflection/Test/Unit/AttributeTypeResolverTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Reflection/Test/Unit/DataObject.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Reflection/Test/Unit/DataObjectProcessorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Reflection/Test/Unit/ExtensionAttributesObject.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Reflection/Test/Unit/ExtensionAttributesProcessorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Reflection/Test/Unit/FieldNamerTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Reflection/Test/Unit/Fixture/TSample.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Reflection/Test/Unit/Fixture/TSampleInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Reflection/Test/Unit/MethodsMapTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Reflection/Test/Unit/NameFinderTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Reflection/Test/Unit/TestDataInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Reflection/Test/Unit/TestDataObject.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Reflection/Test/Unit/TypeCasterTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Reflection/Test/Unit/TypeProcessorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Reflection/TypeCaster.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Reflection/TypeProcessor.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Registry.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/RequireJs/Config.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/RequireJs/Config/File/Collector/Aggregated.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/RequireJs/Test/Unit/ConfigTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/AbstractKeyValuePair.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Adapter/Aggregation/AggregationResolver.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Adapter/Aggregation/AggregationResolverInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Adapter/Mysql/Adapter.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Adapter/Mysql/Aggregation/Builder.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Adapter/Mysql/Aggregation/Builder/BucketInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Adapter/Mysql/Aggregation/Builder/Container.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Adapter/Mysql/Aggregation/Builder/Dynamic.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Adapter/Mysql/Aggregation/Builder/Metrics.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Adapter/Mysql/Aggregation/Builder/Range.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Adapter/Mysql/Aggregation/Builder/Term.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Adapter/Mysql/Aggregation/DataProviderContainer.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Adapter/Mysql/Aggregation/DataProviderInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Adapter/Mysql/Aggregation/Interval.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Adapter/Mysql/AggregationFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Adapter/Mysql/ConditionManager.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Adapter/Mysql/DocumentFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Adapter/Mysql/Field/Field.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Adapter/Mysql/Field/FieldFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Adapter/Mysql/Field/FieldInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Adapter/Mysql/Field/Resolver.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Adapter/Mysql/Field/ResolverInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Adapter/Mysql/Filter/Builder.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Adapter/Mysql/Filter/Builder/FilterInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Adapter/Mysql/Filter/Builder/Range.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Adapter/Mysql/Filter/Builder/Term.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Adapter/Mysql/Filter/Builder/Wildcard.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Adapter/Mysql/Filter/BuilderInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Adapter/Mysql/Filter/Preprocessor.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Adapter/Mysql/Filter/PreprocessorInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Adapter/Mysql/IndexBuilderInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Adapter/Mysql/Mapper.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Adapter/Mysql/Query/Builder/Match.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Adapter/Mysql/Query/Builder/QueryInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Adapter/Mysql/Query/MatchContainer.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Adapter/Mysql/Query/MatchContainerFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Adapter/Mysql/Query/QueryContainer.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Adapter/Mysql/Query/QueryContainerFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Adapter/Mysql/ResponseFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Adapter/Mysql/ScoreBuilder.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Adapter/Mysql/ScoreBuilderFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Adapter/Mysql/TemporaryStorage.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Adapter/Mysql/TemporaryStorageFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Adapter/OptionsInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Adapter/Preprocessor/PreprocessorInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/AdapterInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Dynamic/Algorithm.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Dynamic/Algorithm/AlgorithmInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Dynamic/Algorithm/Auto.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Dynamic/Algorithm/Improved.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Dynamic/Algorithm/Manual.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Dynamic/Algorithm/Repository.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Dynamic/DataProviderFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Dynamic/DataProviderInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Dynamic/EntityStorage.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Dynamic/EntityStorageFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Dynamic/IntervalFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Dynamic/IntervalInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/EntityMetadata.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Request.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Request/Aggregation/DynamicBucket.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Request/Aggregation/Metric.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Request/Aggregation/Range.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Request/Aggregation/RangeBucket.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Request/Aggregation/Status.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Request/Aggregation/StatusInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Request/Aggregation/TermBucket.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Request/Binder.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Request/BucketInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Request/Builder.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Request/Cleaner.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Request/Config.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Request/Config/Converter.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Request/Config/FilesystemReader.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Request/Config/SchemaLocator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Request/Dimension.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Request/EmptyRequestDataException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Request/Filter/BoolExpression.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Request/Filter/Range.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Request/Filter/Term.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Request/Filter/Wildcard.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Request/FilterInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Request/IndexScopeResolverInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Request/Mapper.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Request/NonExistingRequestNameException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Request/Query/BoolExpression.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Request/Query/Filter.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Request/Query/Match.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Request/QueryInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/RequestInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Response/Aggregation.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Response/Aggregation/Value.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Response/Bucket.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Response/QueryResponse.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/ResponseInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Search.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/SearchEngine/Config/Converter.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/SearchEngine/Config/Reader.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/SearchEngine/Config/SchemaLocator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/SearchEngine/ConfigInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/SearchEngineInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/SearchResponseBuilder.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Aggregation/AggregationResolverTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/AdapterTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/Aggregation/Builder/ContainerTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/Aggregation/Builder/MetricsTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/Aggregation/Builder/RangeTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/Aggregation/Builder/TermTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/Aggregation/BuilderTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/Aggregation/DataProviderContainerTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/ConditionManagerTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/Filter/Builder/RangeTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/Filter/Builder/TermTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/Filter/Builder/WildcardTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/Filter/BuilderTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/MapperTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/Query/Builder/MatchTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/Query/QueryContainerTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/ResponseFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/ScoreBuilderTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/TemporaryStorageTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Test/Unit/Dynamic/IntervalFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Test/Unit/Request/Aggregation/StatusTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Test/Unit/Request/BinderTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Test/Unit/Request/BuilderTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Test/Unit/Request/CleanerTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Test/Unit/Request/Config/SchemaLocatorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Test/Unit/Request/MapperTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Test/Unit/Response/AggregationTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Test/Unit/Response/QueryResponseTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Test/Unit/SearchEngine/Config/ConverterTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Test/Unit/SearchEngine/Config/SchemaLocatorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Test/Unit/SearchResponseBuilderTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Test/Unit/SearchTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/Test/Unit/_files/search_engine.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/etc/requests.xsd
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/etc/search_engine.xsd
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/etc/search_request.xsd
 mode change 100644 => 100755 lib/internal/Magento/Framework/Search/etc/search_request_merged.xsd
 mode change 100644 => 100755 lib/internal/Magento/Framework/Serialize/JsonConverter.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Serialize/JsonValidator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Serialize/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/Serialize/Serializer/Base64Json.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Serialize/Serializer/Json.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Serialize/Serializer/Serialize.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Serialize/SerializerInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Serialize/Test/Unit/JsonValidatorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Serialize/Test/Unit/Serializer/Base64JsonTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Serialize/Test/Unit/Serializer/JsonConverterTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Serialize/Test/Unit/Serializer/JsonTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Serialize/Test/Unit/Serializer/SerializeTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Session/Config.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Session/Config/ConfigInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Session/Config/Validator/CookieDomainValidator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Session/Config/Validator/CookieLifetimeValidator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Session/Config/Validator/CookiePathValidator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Session/Generic.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Session/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/Session/SaveHandler.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Session/SaveHandler/DbTable.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Session/SaveHandler/Native.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Session/SaveHandler/Redis.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Session/SaveHandler/Redis/Config.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Session/SaveHandler/Redis/Logger.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Session/SaveHandlerFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Session/SaveHandlerInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Session/SessionManager.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Session/SessionManagerInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Session/SidResolver.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Session/SidResolverInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Session/Storage.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Session/StorageInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Session/Test/Unit/ConfigTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Session/Test/Unit/SaveHandler/DbTableTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Session/Test/Unit/SaveHandler/Redis/ConfigTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Session/Test/Unit/SaveHandler/Redis/LoggerTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Session/Test/Unit/SaveHandlerFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Session/Test/Unit/SessionManagerTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Session/Test/Unit/_files/mock_ini_set.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Session/Test/Unit/_files/mock_session_regenerate_id.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Session/Validator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Session/ValidatorInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Setup/BackendFrontnameGenerator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Setup/BackupRollback.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Setup/BackupRollbackFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Setup/ConfigOptionsListInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Setup/ConsoleLogger.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Setup/DataCacheInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Setup/ExternalFKSetup.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Setup/FilePermissions.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Setup/InstallDataInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Setup/InstallSchemaInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Setup/Lists.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Setup/LoggerInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Setup/ModuleContextInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Setup/ModuleDataSetupInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Setup/Option/AbstractConfigOption.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Setup/Option/FlagConfigOption.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Setup/Option/MultiSelectConfigOption.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Setup/Option/SelectConfigOption.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Setup/Option/TextConfigOption.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Setup/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/Setup/SampleData/Context.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Setup/SampleData/Executor.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Setup/SampleData/FixtureManager.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Setup/SampleData/InstallerInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Setup/SampleData/State.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Setup/SampleData/StateInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Setup/SchemaSetupInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Setup/SetupInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Setup/Test/Unit/BackendFrontnameGeneratorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Setup/Test/Unit/BackupRollbackFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Setup/Test/Unit/BackupRollbackTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Setup/Test/Unit/ConsoleLoggerTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Setup/Test/Unit/FilePermissionsTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Setup/Test/Unit/ListsTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Setup/Test/Unit/Option/FlagConfigOptionTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Setup/Test/Unit/Option/MultiSelectConfigOptionTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Setup/Test/Unit/Option/SelectConfigOptionTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Setup/Test/Unit/Option/TextConfigOptionTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Setup/Test/Unit/SampleData/StateTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Setup/UninstallInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Setup/UpgradeDataInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Setup/UpgradeSchemaInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Shell.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Shell/CommandRenderer.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Shell/CommandRendererBackground.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Shell/CommandRendererInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Shell/ComplexParameter.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Shell/Driver.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Shell/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/Shell/Response.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Shell/Test/Unit/CommandRendererBackgroundTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Shell/Test/Unit/CommandRendererTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Shell/Test/Unit/ComplexParameterTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ShellInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Simplexml/Config.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Simplexml/Element.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Simplexml/Test/Unit/ConfigTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Simplexml/Test/Unit/ElementTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Simplexml/Test/Unit/_files/data.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Simplexml/Test/Unit/_files/extend_data.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Simplexml/Test/Unit/_files/mixed_data.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Stdlib/ArrayManager.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Stdlib/ArrayUtils.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Stdlib/BooleanUtils.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Stdlib/Cookie/CookieMetadata.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Stdlib/Cookie/CookieMetadataFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Stdlib/Cookie/CookieReaderInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Stdlib/Cookie/CookieScope.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Stdlib/Cookie/CookieScopeInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Stdlib/Cookie/CookieSizeLimitReachedException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Stdlib/Cookie/FailureToSendException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Stdlib/Cookie/PhpCookieManager.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Stdlib/Cookie/PhpCookieReader.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Stdlib/Cookie/PublicCookieMetadata.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Stdlib/Cookie/SensitiveCookieMetadata.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Stdlib/CookieManagerInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Stdlib/DateTime.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Stdlib/DateTime/DateTime.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Stdlib/DateTime/DateTimeFormatter.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Stdlib/DateTime/DateTimeFormatterInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Stdlib/DateTime/Filter/Date.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Stdlib/DateTime/Filter/DateTime.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Stdlib/DateTime/Timezone.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Stdlib/DateTime/Timezone/Validator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Stdlib/DateTime/TimezoneInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Stdlib/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/Stdlib/StringUtils.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Stdlib/Test/Unit/ArrayManagerTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Stdlib/Test/Unit/ArrayUtilsTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Stdlib/Test/Unit/BooleanUtilsTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Stdlib/Test/Unit/Cookie/CookieScopeTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Stdlib/Test/Unit/Cookie/PhpCookieManagerTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Stdlib/Test/Unit/Cookie/PublicCookieMetadataTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Stdlib/Test/Unit/Cookie/SensitiveCookieMetadataTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Stdlib/Test/Unit/Cookie/_files/setcookie_mock.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Stdlib/Test/Unit/DateTime/DateTimeFormatterTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Stdlib/Test/Unit/DateTime/DateTimeTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Stdlib/Test/Unit/DateTime/Filter/DateTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Stdlib/Test/Unit/DateTime/Timezone/ValidatorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Stdlib/Test/Unit/DateTime/TimezoneTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Stdlib/Test/Unit/StringUtilsTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Stdlib/Test/Unit/_files/gmdate_mock.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/System/Dirs.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/System/Ftp.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Test/Unit/App/ResourceConnectionTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Test/Unit/App/Scope/SourceTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Test/Unit/ArchiveTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Test/Unit/AuthorizationTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Test/Unit/CurrencyTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Test/Unit/DB/AggregatedFieldDataConverterTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Test/Unit/DB/Query/BatchIteratorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Test/Unit/DB/Query/BatchRangeIteratorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Test/Unit/DB/Query/GeneratorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Test/Unit/Data/CollectionTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Test/Unit/DataObjectTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Test/Unit/DomDocument/DomDocumentFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Test/Unit/EscaperTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Test/Unit/EventFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Test/Unit/EventTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Test/Unit/FilesystemTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Test/Unit/FlagManagerTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Test/Unit/FlagTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Test/Unit/Interception/InterceptorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Test/Unit/Interception/Sample/Entity.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Test/Unit/Interception/Sample/Interceptor.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Test/Unit/Interception/Sample/Plugin1.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Test/Unit/Interception/Sample/Plugin2.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Test/Unit/Interception/Sample/Plugin3.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Test/Unit/Interception/Sample/Plugin4.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Test/Unit/Message/PhraseFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Test/Unit/Module/Plugin/DbStatusValidatorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Test/Unit/PhraseTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Test/Unit/ProfilerTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Test/Unit/RegistryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Test/Unit/ShellTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Test/Unit/Translate/Js/ConfigTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Test/Unit/TranslateTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Test/Unit/UrlTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Test/Unit/UtilTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Test/Unit/ValidatorFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Test/Unit/ValidatorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Test/Unit/View/Design/Theme/Label/OptionsTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Test/Unit/_files/archives/.gitignore
 mode change 100644 => 100755 lib/internal/Magento/Framework/Test/Unit/_files/source.txt
 mode change 100644 => 100755 lib/internal/Magento/Framework/TestFramework/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/TestFramework/Test/Unit/Autoloader/ExtensionAttributesGeneratorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/TestFramework/Test/Unit/Autoloader/ExtensionAttributesInterfaceGeneratorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/TestFramework/Test/Unit/Autoloader/FactoryGeneratorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/TestFramework/Test/Unit/Unit/Helper/ProxyTestingTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/TestFramework/Test/Unit/Unit/Matcher/MethodInvokedAtIndexTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/TestFramework/Test/Unit/Unit/Utility/XsdValidatorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/TestFramework/Test/Unit/Unit/Utility/_files/invalid.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/TestFramework/Test/Unit/Unit/Utility/_files/valid.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/TestFramework/Test/Unit/Unit/Utility/_files/valid.xsd
 mode change 100644 => 100755 lib/internal/Magento/Framework/TestFramework/Unit/AbstractFactoryTestCase.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/TestFramework/Unit/Autoloader/ExtensionAttributesGenerator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/TestFramework/Unit/Autoloader/ExtensionAttributesInterfaceGenerator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/TestFramework/Unit/Autoloader/FactoryGenerator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/TestFramework/Unit/Autoloader/GeneratedClassesAutoloader.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/TestFramework/Unit/Autoloader/GeneratorInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/TestFramework/Unit/BaseTestCase.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/TestFramework/Unit/Block/Adminhtml.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/TestFramework/Unit/Helper/ObjectManager.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/TestFramework/Unit/Helper/ProxyTesting.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/TestFramework/Unit/Helper/SelectRendererTrait.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/TestFramework/Unit/Listener/GarbageCleanup.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/TestFramework/Unit/Listener/ReplaceObjectManager.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/TestFramework/Unit/Matcher/MethodInvokedAtIndex.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/TestFramework/Unit/Module/Config.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/TestFramework/Unit/Utility/XsdValidator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Translate.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Translate/AbstractAdapter.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Translate/Adapter.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Translate/AdapterInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Translate/Inline.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Translate/Inline/ConfigInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Translate/Inline/ParserFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Translate/Inline/ParserInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Translate/Inline/Provider.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Translate/Inline/ProviderInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Translate/Inline/Proxy.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Translate/Inline/State.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Translate/Inline/StateInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Translate/InlineInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Translate/Js/Config.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Translate/Locale/Resolver/Plugin.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Translate/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/Translate/ResourceInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Translate/Test/Unit/AdapterAbstractTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Translate/Test/Unit/AdapterTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Translate/Test/Unit/Inline/ProxyTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Translate/Test/Unit/Inline/StateTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Translate/Test/Unit/InlineTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/TranslateInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Unserialize/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/Unserialize/Test/Unit/UnserializeTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Unserialize/Unserialize.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Url.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Url/Decoder.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Url/DecoderInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Url/Encoder.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Url/EncoderInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Url/Helper/Data.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Url/HostChecker.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Url/ModifierComposite.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Url/ModifierInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Url/QueryParamsResolver.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Url/QueryParamsResolverInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Url/RouteParamsPreprocessorComposite.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Url/RouteParamsPreprocessorInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Url/RouteParamsResolver.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Url/RouteParamsResolverFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Url/RouteParamsResolverInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Url/ScopeInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Url/ScopeResolver.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Url/ScopeResolverInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Url/SecurityInfo.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Url/SecurityInfoInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Url/Test/Unit/DecoderTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Url/Test/Unit/Helper/DataTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Url/Test/Unit/HostCheckerTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Url/Test/Unit/QueryParamsResolverTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Url/Test/Unit/RouteParamsResolverFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Url/Test/Unit/ScopeResolverTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Url/Test/Unit/SecurityInfoTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Url/Test/Unit/ValidatorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Url/Validator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/UrlFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/UrlInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Util.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/AbstractValidator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/AllowedProtocols.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Alnum.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Builder.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Config.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Constraint.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Constraint/Option.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Constraint/Option/Callback.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Constraint/OptionInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Constraint/Property.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/ConstraintFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Currency.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/DataObject.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/EmailAddress.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Entity/Properties.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Exception.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Factory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/File/Extension.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/File/ImageSize.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/File/IsImage.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/File/Size.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/FloatUtils.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/IntUtils.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Ip.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Locale.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/NotEmpty.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Regex.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/StringLength.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Test/Unit/BuilderTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Test/Unit/ConfigTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Test/Unit/Constraint/Option/CallbackTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Test/Unit/Constraint/OptionTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Test/Unit/Constraint/PropertyTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Test/Unit/ConstraintTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Test/Unit/CurrencyTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Test/Unit/EmailAddressTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Test/Unit/Entity/PropertiesTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Test/Unit/ExceptionTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Test/Unit/FactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Test/Unit/LocaleTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Test/Unit/ObjectTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Test/Unit/StringLengthTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Test/Unit/Test/Alnum.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Test/Unit/Test/Callback.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Test/Unit/Test/IsInt.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Test/Unit/Test/IsTrue.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Test/Unit/Test/NotEmpty.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Test/Unit/Test/StringLength.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Test/Unit/TimezoneTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Test/Unit/UrlTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Test/Unit/ValidatorAbstractTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/negative/invalid_builder_class.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/negative/invalid_builder_instance.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/negative/invalid_child_for_option.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/negative/invalid_constraint.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/negative/invalid_content_for_callback.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/negative/invalid_entity_callback.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/negative/invalid_method.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/negative/invalid_method_callback.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/negative/multiple_callback_in_argument.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/negative/no_class_for_constraint.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/negative/no_constraint.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/negative/no_name_for_entity.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/negative/no_name_for_group.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/negative/no_name_for_rule.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/negative/no_rule_for_reference.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/negative/not_unique_use.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/positive/builder/validation.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/positive/module_a/validation.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/positive/module_b/validation.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Timezone.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/UniversalFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/Url.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/ValidatorInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Validator/etc/validation.xsd
 mode change 100644 => 100755 lib/internal/Magento/Framework/ValidatorFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/AssetInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/Bundle.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/Bundle/Config.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/Bundle/ConfigInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/Bundle/Manager.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/Collection.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/Config.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/ConfigInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/ContentProcessorException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/ContentProcessorInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/ContextInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/File.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/File/Context.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/File/ContextFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/File/FallbackContext.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/File/FallbackContextFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/File/NotFoundException.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/FileFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/GroupedCollection.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/LocalInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/LockerProcess.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/LockerProcessInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/MergeService.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/MergeStrategy/Checksum.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/MergeStrategy/Direct.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/MergeStrategy/FileExists.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/MergeStrategyInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/MergeableInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/Merged.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/Minification.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/NotationResolver/Module.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/NotationResolver/Variable.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/PreProcessor/AlternativeSource.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/PreProcessor/AlternativeSource/AssetBuilder.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/PreProcessor/AlternativeSourceInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/PreProcessor/Chain.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/PreProcessor/ChainFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/PreProcessor/ChainFactoryInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/PreProcessor/FileNameResolver.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/PreProcessor/FilenameResolverInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/PreProcessor/Helper/Sort.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/PreProcessor/Helper/SortInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/PreProcessor/MinificationFilenameResolver.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/PreProcessor/Minify.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/PreProcessor/ModuleNotation.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/PreProcessor/Passthrough.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/PreProcessor/Pool.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/PreProcessor/VariableNotation.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/PreProcessorInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/PropertyGroup.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/PropertyGroupFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/Remote.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/RemoteFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/Repository.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/RepositoryMap.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/Source.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/SourceFileGeneratorInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Asset/SourceFileGeneratorPool.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/BlockPool.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Config.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/ConfigInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Context.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/DataSourcePool.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/Fallback/Rule/Composite.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/Fallback/Rule/ModularSwitch.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/Fallback/Rule/ModularSwitchFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/Fallback/Rule/Module.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/Fallback/Rule/ModuleFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/Fallback/Rule/RuleInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/Fallback/Rule/Simple.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/Fallback/Rule/SimpleFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/Fallback/Rule/Theme.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/Fallback/Rule/ThemeFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/Fallback/RulePool.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/FileResolution/Fallback/EmailTemplateFile.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/FileResolution/Fallback/File.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/FileResolution/Fallback/LocaleFile.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/FileResolution/Fallback/Resolver/Alternative.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/FileResolution/Fallback/Resolver/Minification.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/FileResolution/Fallback/Resolver/Simple.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/FileResolution/Fallback/ResolverInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/FileResolution/Fallback/StaticFile.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/FileResolution/Fallback/TemplateFile.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/Theme/Customization.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/Theme/Customization/AbstractFile.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/Theme/Customization/ConfigInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/Theme/Customization/File/Css.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/Theme/Customization/File/Js.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/Theme/Customization/FileAssetInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/Theme/Customization/FileInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/Theme/Customization/FileServiceFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/Theme/Customization/Path.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/Theme/CustomizationInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/Theme/Domain/Factory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/Theme/Domain/PhysicalInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/Theme/Domain/StagingInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/Theme/Domain/VirtualInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/Theme/File/CollectionInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/Theme/FileFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/Theme/FileInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/Theme/FileProviderInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/Theme/FlyweightFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/Theme/Image.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/Theme/Image/PathInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/Theme/Image/Uploader.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/Theme/ImageFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/Theme/Label.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/Theme/Label/ListInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/Theme/Label/Options.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/Theme/LabelFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/Theme/ListInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/Theme/ResolverInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/Theme/ThemeList.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/Theme/ThemePackage.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/Theme/ThemePackageFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/Theme/ThemePackageList.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/Theme/ThemeProvider.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/Theme/ThemeProviderInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/Theme/Validator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/ThemeFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Design/ThemeInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/DesignExceptions.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/DesignInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/DesignLoader.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/AbstractBlock.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/Block/ArgumentInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/BlockFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/BlockInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/Context.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/ExceptionHandlerBlock.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/ExceptionHandlerBlockFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/FormKey.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/Html/Calendar.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/Html/Date.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/Html/Link.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/Html/Link/Current.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/Html/Links.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/Html/Select.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/Js/Components.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/Js/Cookie.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/Message/InterpretationMediator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/Message/InterpretationStrategy.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/Message/InterpretationStrategyInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/Message/MessageConfigurationsPool.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/Message/Renderer/BlockRenderer.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/Message/Renderer/BlockRenderer/Template.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/Message/Renderer/EscapeRenderer.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/Message/Renderer/PoolInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/Message/Renderer/RendererInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/Message/Renderer/RenderersPool.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/Messages.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/Redirect.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/RendererInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/RendererList.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/Template.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/Template/Context.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/Template/File/Resolver.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/Template/File/Validator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/Text.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/Text/ListText.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/Text/TextList/Item.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/Text/TextList/Link.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/Argument/Interpreter/ConfigurableObject.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/ArrayObjectFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/BlockWrapperInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/Config/Converter.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/Config/DomMerger.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/Config/DomMergerInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/Config/FileCollector/AggregatedFileCollector.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/Config/FileCollector/AggregatedFileCollectorFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/Config/FileCollectorInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/Config/ManagerInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/Config/Provider/Component/Definition.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/Config/Provider/Template.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/Config/Reader.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/Config/ReaderFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/Config/UiReaderInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/ContainerInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/ContentType/AbstractContentType.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/ContentType/ContentTypeFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/ContentType/ContentTypeInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/ContentType/Html.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/ContentType/Json.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/ContentType/Xml.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/Context.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/ContextFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/ContextInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/Control/ActionPoolFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/Control/ActionPoolInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/Control/ButtonProviderFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/Control/ButtonProviderInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/Control/ControlInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/Control/DummyButton.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/DataProvider/CollectionFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/DataProvider/DataProvider.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/DataProvider/DataProviderInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/DataProvider/Document.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/DataProvider/FilterApplierInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/DataProvider/FilterPool.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/DataProvider/FulltextFilter.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/DataProvider/RegularFilter.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/DataProvider/Reporting.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/DataProvider/SearchResult.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/DataSourceInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/Factory/ComponentFactoryInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/Factory/HtmlContentFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/JsConfigInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/LayoutInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/ObserverInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/PoolInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/Processor.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponent/SubjectInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Element/UiComponentInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/EntitySpecificHandlesList.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/File.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/File/Collector/Base.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/File/Collector/Decorator/ModuleDependency.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/File/Collector/Decorator/ModuleOutput.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/File/Collector/Override/Base.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/File/Collector/Override/ThemeModular.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/File/Collector/Theme.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/File/Collector/ThemeModular.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/File/CollectorInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/File/Factory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/File/FileList.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/File/FileList/CollateInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/File/FileList/Collator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/File/FileList/Factory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/FileSystem.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Helper/Js.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Helper/PathPattern.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/AclCondition.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/Argument/Interpreter/DataObject.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/Argument/Interpreter/Decorator/Updater.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/Argument/Interpreter/HelperMethod.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/Argument/Interpreter/NamedParams.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/Argument/Interpreter/Options.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/Argument/Interpreter/Passthrough.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/Argument/Interpreter/Url.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/Argument/Parser.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/Argument/UpdaterInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/Builder.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/BuilderFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/BuilderInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/Condition/Condition.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/Condition/ConditionFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/Condition/VisibilityConditionInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/ConfigCondition.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/Data/Structure.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/Element.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/File/Collector/Aggregated.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/Generator/Container.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/Generator/Context.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/Generator/ContextFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/Generator/Structure.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/Generator/UiComponent.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/GeneratorInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/GeneratorPool.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/Generic.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/PageType/Config.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/PageType/Config/Converter.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/PageType/Config/Reader.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/PageType/Config/SchemaLocator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/Pool.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/ProcessorFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/ProcessorInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/Proxy.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/Reader/Context.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/Reader/ContextFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/Reader/Move.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/Reader/UiComponent.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/Reader/Visibility/Condition.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/ReaderFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/ReaderInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/ReaderPool.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/ScheduledStructure.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/ScheduledStructure/Helper.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/etc/head.xsd
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/etc/html.xsd
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/etc/layout_merged.xsd
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/etc/page_configuration.xsd
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Layout/etc/page_types.xsd
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/LayoutFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/LayoutInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Model/Layout/Merge.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Model/Layout/Translator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Model/Layout/Update/Validator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Model/PageLayout/Config/BuilderInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Page/Builder.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Page/Config.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Page/Config/Generator/Body.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Page/Config/Generator/Head.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Page/Config/Reader/Body.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Page/Config/Reader/Head.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Page/Config/Reader/Html.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Page/Config/Renderer.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Page/Config/RendererFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Page/Config/RendererInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Page/Config/Structure.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Page/ConfigFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Page/FaviconInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Page/Layout/Reader.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Page/Title.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/PageLayout/Config.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/PageLayout/File/Collector/Aggregated.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/PageLayout/etc/layouts.xsd
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Render/RenderFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/RenderInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Result/Layout.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Result/LayoutFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Result/Page.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Result/PageFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Template/Html/Minifier.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Template/Html/MinifierInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/TemplateEngine/Php.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/TemplateEngine/Xhtml.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/Compiler.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/Compiler/Attribute.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/Compiler/AttributeInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/Compiler/Cdata.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/Compiler/CdataInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/Compiler/Comment.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/Compiler/CommentInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/Compiler/Directive/CallableMethod.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/Compiler/Directive/DirectiveInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/Compiler/Directive/Variable.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/Compiler/Element/ElementInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/Compiler/Text.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/Compiler/TextInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/CompilerFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/CompilerInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/ResultFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/ResultInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/Template.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/TemplateFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/TemplateEngineFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/TemplateEngineInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/TemplateEnginePool.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Asset/Bundle/ManagerTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Asset/BundleTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Asset/CollectionTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Asset/ConfigTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Asset/File/FallbackContextTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Asset/FileTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Asset/GroupedCollectionTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Asset/LockerProcessTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Asset/MergeServiceTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Asset/MergeStrategy/ChecksumTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Asset/MergeStrategy/DirectTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Asset/MergeStrategy/FileExistsTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Asset/MergedTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Asset/MinificationTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Asset/NotationResolver/ModuleTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Asset/NotationResolver/VariableTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Asset/PreProcessor/AlternativeSourceTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Asset/PreProcessor/ChainTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Asset/PreProcessor/Helper/SortTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Asset/PreProcessor/MinificationFilenameResolverTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Asset/PreProcessor/MinifyTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Asset/PreProcessor/PoolTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Asset/PropertyGroupTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Asset/RemoteTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Asset/RepositoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Asset/SourceTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/BlockPoolTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/BlockPoolTestBlock.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/ConfigTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/ContextTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/DataSourcePoolTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/DataSourcePoolTestBlock.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Design/Fallback/Rule/CompositeTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Design/Fallback/Rule/ModularSwitchTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Design/Fallback/Rule/ModuleTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Design/Fallback/Rule/SimpleTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Design/Fallback/Rule/ThemeTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Design/Fallback/RulePoolTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Design/FileResolution/Fallback/FileTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Design/FileResolution/Fallback/LocaleFileTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Design/FileResolution/Fallback/Resolver/AlternativeTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Design/FileResolution/Fallback/Resolver/MinificationTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Design/FileResolution/Fallback/Resolver/SimpleTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Design/FileResolution/Fallback/StaticFileTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Design/FileResolution/Fallback/TemplateFileTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Design/Theme/Customization/AbstractFileTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Design/Theme/Customization/PathTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Design/Theme/CustomizationTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Design/Theme/Domain/FactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Design/Theme/FlyweightFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Design/Theme/Image/UploaderTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Design/Theme/ImageTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Design/Theme/LabelTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Design/Theme/ThemePackageListTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Design/Theme/ThemePackageTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/DesignExceptionsTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/DesignLoaderTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Element/AbstractBlockTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Element/BlockFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Element/FormKeyTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Element/Html/CalendarTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Element/Html/Link/CurrentTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Element/Html/LinkTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Element/Html/LinksTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Element/Html/SelectTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Element/Js/CookieTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Element/Message/InterpretationMediatorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Element/Message/InterpretationStrategyTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Element/Message/MessageConfigurationsPoolTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Element/Message/Renderer/BlockRenderer/TemplateTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Element/Message/Renderer/BlockRendererTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Element/Message/Renderer/EscapeRendererTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Element/Message/Renderer/RenderersPoolTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Element/MessagesTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Element/RendererListTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Element/Template/File/ResolverTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Element/Template/File/ValidatorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Element/TemplateTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Element/Text/TextList/ItemTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Element/Text/TextList/LinkTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Element/TextTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Element/UiComponent/ContextTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Element/UiComponent/Control/DummyButtonTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Element/UiComponent/DataProvider/FulltextFilterTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Element/UiComponent/ProcessorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/EntitySpecificHandlesListTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/File/Collector/BaseTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/File/Collector/Decorator/ModuleDependencyTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/File/Collector/Decorator/ModuleOutputTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/File/Collector/Override/BaseTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/File/Collector/Override/ThemeModularTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/File/Collector/ThemeModularTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/File/Collector/ThemeTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/File/FactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/File/FileList/CollatorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/File/FileList/FactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/File/FileListTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/FileSystemTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/FileTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Helper/JsTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Helper/PathPatternTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Layout/Argument/Interpreter/Decorator/UpdaterTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Layout/Argument/Interpreter/HelperMethodTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Layout/Argument/Interpreter/NamedParamsTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Layout/Argument/Interpreter/ObjectTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Layout/Argument/Interpreter/OptionsTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Layout/Argument/Interpreter/PassthroughTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Layout/Argument/Interpreter/UrlTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Layout/Argument/ParserTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Layout/Argument/_files/arguments.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Layout/BuilderFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Layout/BuilderTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Layout/Condition/AclConditionTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Layout/Data/StructureTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Layout/ElementTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Layout/File/Collector/AggregateTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Layout/Generator/BlockTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Layout/Generator/ContainerTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Layout/Generator/UiComponentTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Layout/GeneratorPoolTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Layout/Reader/FactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Layout/Reader/MoveTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Layout/Reader/UiComponentTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Layout/ScheduledStructure/HelperTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Layout/ScheduledStructureTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Layout/XsdTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Layout/_files/action.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Layout/_files/arguments.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Layout/_files/invalidLayoutArgumentsXmlArray.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/LayoutFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Model/Layout/MergeTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Model/Layout/TranslatorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Model/Layout/Update/ValidatorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Page/BuilderTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Page/Config/Generator/BodyTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Page/Config/Generator/HeadTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Page/Config/Reader/HeadTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Page/Config/RendererTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Page/Config/StructureTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Page/Config/_files/template_body.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Page/Config/_files/template_head.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Page/Config/_files/template_html.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Page/ConfigTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Page/Layout/ReaderTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Page/TitleTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/PageLayout/ConfigTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/PageLayout/_files/layouts_one.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/PageLayout/_files/layouts_two.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Render/RenderFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Result/LayoutTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Result/PageFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Result/PageTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Template/Html/MinifierTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/TemplateEngine/PhpTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/TemplateEngine/_files/simple.phtml
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/TemplateEngineFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/TemplateEnginePoolTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/UiComponent/Factory/HtmlContentFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Url/ConfigTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Url/CssResolverTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Url/_files/result.css
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Url/_files/resultImport.css
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Url/_files/resultNormalized.css
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Url/_files/source.css
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Test/Unit/Url/_files/sourceImport.css
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Url/Config.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Url/ConfigInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Url/CssResolver.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Xsd/Media/TypeDataExtractorInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/View/Xsd/Media/TypeDataExtractorPool.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Webapi/Authorization.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Webapi/CustomAttributeTypeLocatorInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Webapi/ErrorProcessor.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Webapi/Exception.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Webapi/README.md
 mode change 100644 => 100755 lib/internal/Magento/Framework/Webapi/Request.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Webapi/Response.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Webapi/Rest/Request.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Webapi/Rest/Request/Deserializer/Json.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Webapi/Rest/Request/Deserializer/Xml.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Webapi/Rest/Request/DeserializerFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Webapi/Rest/Request/DeserializerInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Webapi/Rest/Request/ParamOverriderInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Webapi/Rest/Response.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Webapi/Rest/Response/FieldsFilter.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Webapi/Rest/Response/Renderer/Json.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Webapi/Rest/Response/Renderer/Xml.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Webapi/Rest/Response/RendererFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Webapi/Rest/Response/RendererInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Webapi/ServiceInputProcessor.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Webapi/ServiceOutputProcessor.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Webapi/ServicePayloadConverterInterface.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Webapi/Soap/ClientFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Webapi/Test/Unit/ErrorProcessorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Webapi/Test/Unit/RequestTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Webapi/Test/Unit/ResponseTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Webapi/Test/Unit/Rest/Request/Deserializer/JsonTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Webapi/Test/Unit/Rest/Request/Deserializer/XmlTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Webapi/Test/Unit/Rest/Request/DeserializerFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Webapi/Test/Unit/Rest/RequestTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Webapi/Test/Unit/Rest/Response/FieldsFilterTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Webapi/Test/Unit/Rest/Response/Renderer/JsonTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Webapi/Test/Unit/Rest/Response/Renderer/XmlTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Webapi/Test/Unit/Rest/Response/RendererFactoryTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Webapi/Test/Unit/Rest/ResponseTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Webapi/Test/Unit/ServiceInputProcessor/AssociativeArray.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Webapi/Test/Unit/ServiceInputProcessor/DataArray.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Webapi/Test/Unit/ServiceInputProcessor/Nested.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Webapi/Test/Unit/ServiceInputProcessor/ObjectWithCustomAttributes.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Webapi/Test/Unit/ServiceInputProcessor/Simple.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Webapi/Test/Unit/ServiceInputProcessor/SimpleArray.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Webapi/Test/Unit/ServiceInputProcessor/TestService.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Webapi/Test/Unit/ServiceInputProcessorTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Xml/Generator.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Xml/Parser.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Xml/Security.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Xml/Test/Unit/ParserTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Xml/Test/Unit/SecurityTest.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/Xml/Test/Unit/_files/data.xml
 mode change 100644 => 100755 lib/internal/Magento/Framework/XsltProcessor/XsltProcessorFactory.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/ZendEscaper.php
 mode change 100644 => 100755 lib/internal/Magento/Framework/composer.json
 mode change 100644 => 100755 lib/internal/Magento/Framework/registration.php
 mode change 100644 => 100755 lib/web/FormData.js
 mode change 100644 => 100755 lib/web/MutationObserver.js
 mode change 100644 => 100755 lib/web/blank.html
 mode change 100644 => 100755 lib/web/css/docs/actions-toolbar.html
 mode change 100644 => 100755 lib/web/css/docs/breadcrumbs.html
 mode change 100644 => 100755 lib/web/css/docs/buttons.html
 mode change 100644 => 100755 lib/web/css/docs/components.html
 mode change 100644 => 100755 lib/web/css/docs/docs.css
 mode change 100644 => 100755 lib/web/css/docs/docs.html
 mode change 100644 => 100755 lib/web/css/docs/dropdowns.html
 mode change 100644 => 100755 lib/web/css/docs/forms.html
 mode change 100644 => 100755 lib/web/css/docs/icons.html
 mode change 100644 => 100755 lib/web/css/docs/index.html
 mode change 100644 => 100755 lib/web/css/docs/layout.html
 mode change 100644 => 100755 lib/web/css/docs/lib.html
 mode change 100644 => 100755 lib/web/css/docs/loaders.html
 mode change 100644 => 100755 lib/web/css/docs/messages.html
 mode change 100644 => 100755 lib/web/css/docs/pages.html
 mode change 100644 => 100755 lib/web/css/docs/popups.html
 mode change 100644 => 100755 lib/web/css/docs/rating.html
 mode change 100644 => 100755 lib/web/css/docs/resets.html
 mode change 100644 => 100755 lib/web/css/docs/responsive.html
 mode change 100644 => 100755 lib/web/css/docs/sections.html
 mode change 100644 => 100755 lib/web/css/docs/source/README.md
 mode change 100644 => 100755 lib/web/css/docs/source/_actions-toolbar.less
 mode change 100644 => 100755 lib/web/css/docs/source/_breadcrumbs.less
 mode change 100644 => 100755 lib/web/css/docs/source/_buttons.less
 mode change 100644 => 100755 lib/web/css/docs/source/_components.less
 mode change 100644 => 100755 lib/web/css/docs/source/_dropdowns.less
 mode change 100644 => 100755 lib/web/css/docs/source/_forms.less
 mode change 100644 => 100755 lib/web/css/docs/source/_icons.less
 mode change 100644 => 100755 lib/web/css/docs/source/_layout.less
 mode change 100644 => 100755 lib/web/css/docs/source/_lib.less
 mode change 100644 => 100755 lib/web/css/docs/source/_loaders.less
 mode change 100644 => 100755 lib/web/css/docs/source/_messages.less
 mode change 100644 => 100755 lib/web/css/docs/source/_pages.less
 mode change 100644 => 100755 lib/web/css/docs/source/_popups.less
 mode change 100644 => 100755 lib/web/css/docs/source/_rating.less
 mode change 100644 => 100755 lib/web/css/docs/source/_resets.less
 mode change 100644 => 100755 lib/web/css/docs/source/_responsive.less
 mode change 100644 => 100755 lib/web/css/docs/source/_sections.less
 mode change 100644 => 100755 lib/web/css/docs/source/_tables.less
 mode change 100644 => 100755 lib/web/css/docs/source/_tooltips.less
 mode change 100644 => 100755 lib/web/css/docs/source/_typography.less
 mode change 100644 => 100755 lib/web/css/docs/source/_utilities.less
 mode change 100644 => 100755 lib/web/css/docs/source/_variables.less
 mode change 100644 => 100755 lib/web/css/docs/source/docs.less
 mode change 100644 => 100755 lib/web/css/docs/source/js/dropdown.js
 mode change 100644 => 100755 lib/web/css/docs/tables.html
 mode change 100644 => 100755 lib/web/css/docs/tooltips.html
 mode change 100644 => 100755 lib/web/css/docs/typography.html
 mode change 100644 => 100755 lib/web/css/docs/utilities.html
 mode change 100644 => 100755 lib/web/css/docs/variables.html
 mode change 100644 => 100755 lib/web/css/source/_email-variables.less
 mode change 100644 => 100755 lib/web/css/source/_extend.less
 mode change 100644 => 100755 lib/web/css/source/_theme.less
 mode change 100644 => 100755 lib/web/css/source/_variables.less
 mode change 100644 => 100755 lib/web/css/source/_widgets.less
 mode change 100644 => 100755 lib/web/css/source/components/_modals.less
 mode change 100644 => 100755 lib/web/css/source/lib/_actions-toolbar.less
 mode change 100644 => 100755 lib/web/css/source/lib/_breadcrumbs.less
 mode change 100644 => 100755 lib/web/css/source/lib/_buttons.less
 mode change 100644 => 100755 lib/web/css/source/lib/_dropdowns.less
 mode change 100644 => 100755 lib/web/css/source/lib/_forms.less
 mode change 100644 => 100755 lib/web/css/source/lib/_grids.less
 mode change 100644 => 100755 lib/web/css/source/lib/_icons.less
 mode change 100644 => 100755 lib/web/css/source/lib/_layout.less
 mode change 100644 => 100755 lib/web/css/source/lib/_lib.less
 mode change 100644 => 100755 lib/web/css/source/lib/_loaders.less
 mode change 100644 => 100755 lib/web/css/source/lib/_messages.less
 mode change 100644 => 100755 lib/web/css/source/lib/_navigation.less
 mode change 100644 => 100755 lib/web/css/source/lib/_pages.less
 mode change 100644 => 100755 lib/web/css/source/lib/_popups.less
 mode change 100644 => 100755 lib/web/css/source/lib/_rating.less
 mode change 100644 => 100755 lib/web/css/source/lib/_resets.less
 mode change 100644 => 100755 lib/web/css/source/lib/_responsive.less
 mode change 100644 => 100755 lib/web/css/source/lib/_sections.less
 mode change 100644 => 100755 lib/web/css/source/lib/_tables.less
 mode change 100644 => 100755 lib/web/css/source/lib/_tooltips.less
 mode change 100644 => 100755 lib/web/css/source/lib/_typography.less
 mode change 100644 => 100755 lib/web/css/source/lib/_utilities.less
 mode change 100644 => 100755 lib/web/css/source/lib/_variables.less
 mode change 100644 => 100755 lib/web/css/source/lib/variables/_actions-toolbar.less
 mode change 100644 => 100755 lib/web/css/source/lib/variables/_breadcrumbs.less
 mode change 100644 => 100755 lib/web/css/source/lib/variables/_buttons.less
 mode change 100644 => 100755 lib/web/css/source/lib/variables/_colors.less
 mode change 100644 => 100755 lib/web/css/source/lib/variables/_components.less
 mode change 100644 => 100755 lib/web/css/source/lib/variables/_dropdowns.less
 mode change 100644 => 100755 lib/web/css/source/lib/variables/_email.less
 mode change 100644 => 100755 lib/web/css/source/lib/variables/_forms.less
 mode change 100644 => 100755 lib/web/css/source/lib/variables/_icons.less
 mode change 100644 => 100755 lib/web/css/source/lib/variables/_layout.less
 mode change 100644 => 100755 lib/web/css/source/lib/variables/_loaders.less
 mode change 100644 => 100755 lib/web/css/source/lib/variables/_messages.less
 mode change 100644 => 100755 lib/web/css/source/lib/variables/_navigation.less
 mode change 100644 => 100755 lib/web/css/source/lib/variables/_pages.less
 mode change 100644 => 100755 lib/web/css/source/lib/variables/_popups.less
 mode change 100644 => 100755 lib/web/css/source/lib/variables/_rating.less
 mode change 100644 => 100755 lib/web/css/source/lib/variables/_responsive.less
 mode change 100644 => 100755 lib/web/css/source/lib/variables/_sections.less
 mode change 100644 => 100755 lib/web/css/source/lib/variables/_structure.less
 mode change 100644 => 100755 lib/web/css/source/lib/variables/_tables.less
 mode change 100644 => 100755 lib/web/css/source/lib/variables/_tooltips.less
 mode change 100644 => 100755 lib/web/css/source/lib/variables/_typography.less
 mode change 100644 => 100755 lib/web/es6-collections.js
 mode change 100644 => 100755 lib/web/extjs/defaults.js
 mode change 100644 => 100755 lib/web/extjs/ext-tree-checkbox.js
 mode change 100644 => 100755 lib/web/extjs/ext-tree.js
 mode change 100644 => 100755 lib/web/extjs/resources/css/README.txt
 mode change 100644 => 100755 lib/web/extjs/resources/css/ext-all.css
 mode change 100644 => 100755 lib/web/extjs/resources/css/ytheme-magento.css
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/basic-dialog/aero-close-over.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/basic-dialog/aero-close.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/basic-dialog/bg-center.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/basic-dialog/bg-left.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/basic-dialog/bg-right.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/basic-dialog/close.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/basic-dialog/collapse-over.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/basic-dialog/collapse.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/basic-dialog/e-handle.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/basic-dialog/expand-over.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/basic-dialog/expand.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/basic-dialog/hd-sprite.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/basic-dialog/s-handle.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/basic-dialog/se-handle.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/basic-dialog/w-handle.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/gradient-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/grid/grid-blue-split.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/grid/grid-hrow.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/grid/grid-split.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/grid/grid-vista-hd.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/grid/pspbrwse.jbf
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/grid/sort-col-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/grid/sort_asc.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/grid/sort_desc.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/layout/collapse.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/layout/expand.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/layout/gradient-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/layout/ns-collapse.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/layout/ns-expand.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/layout/panel-close.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/layout/panel-title-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/layout/panel-title-light-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/layout/tab-close-on.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/layout/tab-close.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/menu/checked.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/menu/item-over.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/menu/menu.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/menu/unchecked.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/qtip/bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/s.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/sizer/e-handle-dark.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/sizer/e-handle.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/sizer/ne-handle-dark.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/sizer/ne-handle.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/sizer/nw-handle-dark.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/sizer/nw-handle.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/sizer/s-handle-dark.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/sizer/s-handle.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/sizer/se-handle-dark.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/sizer/se-handle.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/sizer/sw-handle-dark.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/sizer/sw-handle.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/tabs/tab-btm-inactive-left-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/tabs/tab-btm-inactive-right-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/tabs/tab-btm-left-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/tabs/tab-btm-right-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/tabs/tab-sprite.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/tabs/tab-strip-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/tabs/tab-strip-bg.png
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/tabs/tab-strip-btm-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/toolbar/bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/aero/toolbar/tb-btn-sprite.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/basic-dialog/btn-arrow.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/basic-dialog/btn-sprite.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/basic-dialog/close.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/basic-dialog/collapse.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/basic-dialog/e-handle.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/basic-dialog/expand.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/basic-dialog/hd-sprite.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/basic-dialog/progress.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/basic-dialog/progress2.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/basic-dialog/s-handle.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/basic-dialog/se-handle.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/box/corners-blue.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/box/corners.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/box/l-blue.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/box/l.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/box/r-blue.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/box/r.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/box/tb-blue.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/box/tb.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/dd/drop-add.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/dd/drop-no.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/dd/drop-yes.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/editor/tb-sprite.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/form/clear-trigger.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/form/date-trigger.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/form/error-tip-corners.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/form/exclamation.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/form/search-trigger.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/form/text-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/form/trigger-tpl.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/form/trigger.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/gradient-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/grid/arrow-left-white.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/grid/arrow-right-white.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/grid/col-move-bottom.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/grid/col-move-top.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/grid/dirty.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/grid/done.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/grid/drop-no.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/grid/drop-yes.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/grid/footer-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/grid/grid-blue-hd.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/grid/grid-blue-split.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/grid/grid-hrow.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/grid/grid-loading.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/grid/grid-split.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/grid/grid-vista-hd.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/grid/grid3-hd-btn.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/grid/grid3-hrow-over.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/grid/grid3-hrow.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/grid/grid3-special-col-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/grid/grid3-special-col-sel-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/grid/hd-pop.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/grid/hmenu-asc.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/grid/hmenu-desc.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/grid/hmenu-lock.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/grid/hmenu-lock.png
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/grid/hmenu-unlock.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/grid/hmenu-unlock.png
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/grid/invalid_line.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/grid/loading.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/grid/mso-hd.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/grid/nowait.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/grid/page-first-disabled.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/grid/page-first.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/grid/page-last-disabled.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/grid/page-last.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/grid/page-next-disabled.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/grid/page-next.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/grid/page-prev-disabled.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/grid/page-prev.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/grid/pick-button.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/grid/refresh.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/grid/row-check-sprite.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/grid/row-expand-sprite.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/grid/row-over.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/grid/row-sel.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/grid/sort_asc.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/grid/sort_desc.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/grid/wait.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/layout/collapse.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/layout/expand.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/layout/gradient-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/layout/ns-collapse.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/layout/ns-expand.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/layout/panel-close.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/layout/panel-title-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/layout/panel-title-light-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/layout/stick.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/layout/stuck.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/layout/tab-close-on.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/layout/tab-close.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/menu/checked.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/menu/group-checked.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/menu/menu-parent.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/menu/menu.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/menu/unchecked.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/panel/corners-sprite.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/panel/left-right.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/panel/tool-sprite-tpl.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/panel/tool-sprites.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/panel/top-bottom.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/panel/white-corners-sprite.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/panel/white-left-right.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/panel/white-top-bottom.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/qtip/bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/qtip/close.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/qtip/tip-sprite.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/s.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/shadow-c.png
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/shadow-lr.png
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/shadow.png
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/shared/calendar.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/shared/glass-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/shared/left-btn.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/shared/right-btn.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/shared/warning.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/sizer/e-handle-dark.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/sizer/e-handle.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/sizer/ne-handle-dark.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/sizer/ne-handle.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/sizer/nw-handle-dark.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/sizer/nw-handle.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/sizer/s-handle-dark.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/sizer/s-handle.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/sizer/se-handle-dark.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/sizer/se-handle.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/sizer/square.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/sizer/sw-handle-dark.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/sizer/sw-handle.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/tabs/tab-btm-inactive-left-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/tabs/tab-btm-inactive-right-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/tabs/tab-btm-left-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/tabs/tab-btm-right-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/tabs/tab-sprite.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/toolbar/btn-arrow-light.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/toolbar/btn-arrow.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/toolbar/btn-over-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/toolbar/gray-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/toolbar/tb-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/toolbar/tb-btn-sprite.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/tree/drop-add.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/tree/drop-between.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/tree/drop-no.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/tree/drop-over.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/tree/drop-under.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/tree/drop-yes.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/tree/elbow-end-minus-nl.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/tree/elbow-end-minus.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/tree/elbow-end-plus-nl.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/tree/elbow-end-plus.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/tree/elbow-end.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/tree/elbow-line.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/tree/elbow-minus-nl.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/tree/elbow-minus.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/tree/elbow-plus-nl.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/tree/elbow-plus.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/tree/elbow.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/tree/folder-open.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/tree/folder.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/tree/leaf.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/tree/loading.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/tree/s.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/window/corners-sprite.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/window/left-right.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/default/window/top-bottom.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/basic-dialog/close-over.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/basic-dialog/close.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/basic-dialog/collapse-over.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/basic-dialog/collapse.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/basic-dialog/e-handle.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/basic-dialog/expand-over.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/basic-dialog/expand.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/basic-dialog/gradient-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/basic-dialog/hd-sprite.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/basic-dialog/s-handle.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/basic-dialog/se-handle.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/basic-dialog/sw-handle.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/form/choose-trigger.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/form/date-trigger.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/form/trigger.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/grid/col-move-bottom.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/grid/col-move-top.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/grid/done.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/grid/fondoCabeceraHover.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/grid/grid-hrow.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/grid/loading.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/grid/page-first.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/grid/page-last.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/grid/page-next.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/grid/page-prev.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/layout/collapse.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/layout/e-handle.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/layout/expand.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/layout/gradient-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/layout/ns-collapse.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/layout/ns-expand.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/layout/panel-close.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/layout/panel-title-light-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/layout/s-handle.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/layout/stick.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/layout/tab-close-on.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/layout/tab-close.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/menu/checked.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/menu/group-checked.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/menu/menu-parent.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/menu/menu.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/menu/unchecked.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/qtip/tip-sprite.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/shared/left-btn.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/shared/right-btn.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/sizer/ne-handle.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/sizer/nw-handle.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/sizer/s-handle.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/sizer/se-handle.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/sizer/sw-handle.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/tabs/tab-btm-inactive-left-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/tabs/tab-btm-inactive-right-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/tabs/tab-btm-left-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/tabs/tab-btm-right-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/tabs/tab-sprite.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/toolbar/btn-arrow.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/toolbar/btn-over-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/toolbar/fondoToolbar.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/galdaka/toolbar/tb-btn-sprite.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/gray/basic-dialog/close.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/gray/basic-dialog/collapse.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/gray/basic-dialog/dlg-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/gray/basic-dialog/e-handle.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/gray/basic-dialog/expand.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/gray/basic-dialog/hd-sprite.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/gray/basic-dialog/s-handle.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/gray/basic-dialog/se-handle.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/gray/gradient-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/gray/grid/grid-hrow.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/gray/layout/collapse.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/gray/layout/expand.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/gray/layout/gradient-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/gray/layout/ns-collapse.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/gray/layout/ns-expand.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/gray/layout/panel-close.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/gray/layout/panel-title-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/gray/layout/panel-title-light-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/gray/layout/stick.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/gray/layout/tab-close-on.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/gray/layout/tab-close.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/gray/menu/checked.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/gray/menu/group-checked.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/gray/menu/menu-parent.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/gray/menu/menu.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/gray/menu/unchecked.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/gray/qtip/bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/gray/qtip/tip-sprite.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/gray/s.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/gray/sizer/e-handle-dark.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/gray/sizer/e-handle.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/gray/sizer/ne-handle-dark.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/gray/sizer/ne-handle.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/gray/sizer/nw-handle-dark.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/gray/sizer/nw-handle.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/gray/sizer/s-handle-dark.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/gray/sizer/s-handle.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/gray/sizer/se-handle-dark.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/gray/sizer/se-handle.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/gray/sizer/sw-handle-dark.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/gray/sizer/sw-handle.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/gray/tabs/tab-btm-inactive-left-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/gray/tabs/tab-btm-inactive-right-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/gray/tabs/tab-btm-left-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/gray/tabs/tab-btm-right-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/gray/tabs/tab-sprite.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/gray/toolbar/gray-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/gray/toolbar/tb-btn-sprite.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/magento/basic-dialog/collapse-on.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/magento/basic-dialog/collapse.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/magento/basic-dialog/expand-on.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/magento/basic-dialog/expand.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/magento/basic-dialog/hd-sprite.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/magento/basic-dialog/ns-collapse-on.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/magento/basic-dialog/ns-collapse.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/magento/basic-dialog/ns-expand-on.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/magento/basic-dialog/ns-expand.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/magento/basic-dialog/panel_close.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/magento/basic-dialog/pop_close.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/magento/basic-dialog/pop_collapse.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/magento/grid/grid-body-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/magento/grid/grid-split.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/magento/layout/checkered-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/magento/layout/icon-catalog.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/magento/layout/icon-category.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/magento/layout/icon-my-tasks.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/magento/layout/icon-product.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/magento/loading_bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/magento/tabs/tab-sprite.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/magento/toolbar/btn-arrow.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/magento/toolbar/header_bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/magento/toolbar/toolbar-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/magento/tree/elbow-end-minus-nl.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/magento/tree/elbow-end-minus.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/magento/tree/elbow-end-plus-nl.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/magento/tree/elbow-end-plus.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/magento/tree/elbow-end.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/magento/tree/elbow-line.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/magento/tree/elbow-minus-nl.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/magento/tree/elbow-minus.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/magento/tree/elbow-plus-nl.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/magento/tree/elbow-plus.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/magento/tree/elbow.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/magento/tree/folder-open.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/magento/tree/folder.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/magento/tree/leaf.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/magento/tree/s.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/vista/basic-dialog/bg-center.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/vista/basic-dialog/bg-left.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/vista/basic-dialog/bg-right.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/vista/basic-dialog/close.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/vista/basic-dialog/collapse.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/vista/basic-dialog/dlg-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/vista/basic-dialog/e-handle.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/vista/basic-dialog/expand.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/vista/basic-dialog/hd-sprite.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/vista/basic-dialog/s-handle.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/vista/basic-dialog/se-handle.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/vista/basic-dialog/w-handle.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/vista/gradient-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/vista/grid/grid-split.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/vista/grid/grid-vista-hd.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/vista/layout/collapse.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/vista/layout/expand.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/vista/layout/gradient-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/vista/layout/ns-collapse.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/vista/layout/ns-expand.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/vista/layout/panel-close.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/vista/layout/panel-title-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/vista/layout/panel-title-light-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/vista/layout/stick.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/vista/layout/tab-close-on.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/vista/layout/tab-close.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/vista/qtip/bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/vista/qtip/tip-sprite.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/vista/s.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/vista/sizer/e-handle-dark.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/vista/sizer/e-handle.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/vista/sizer/ne-handle-dark.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/vista/sizer/ne-handle.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/vista/sizer/nw-handle-dark.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/vista/sizer/nw-handle.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/vista/sizer/s-handle-dark.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/vista/sizer/s-handle.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/vista/sizer/se-handle-dark.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/vista/sizer/se-handle.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/vista/sizer/sw-handle-dark.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/vista/sizer/sw-handle.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/vista/tabs/tab-btm-inactive-left-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/vista/tabs/tab-btm-inactive-right-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/vista/tabs/tab-btm-left-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/vista/tabs/tab-btm-right-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/vista/tabs/tab-sprite.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/vista/toolbar/gray-bg.gif
 mode change 100644 => 100755 lib/web/extjs/resources/images/vista/toolbar/tb-btn-sprite.gif
 mode change 100644 => 100755 lib/web/fonts/Blank-Theme-Icons/Blank-Theme-Icons.eot
 mode change 100644 => 100755 lib/web/fonts/Blank-Theme-Icons/Blank-Theme-Icons.svg
 mode change 100644 => 100755 lib/web/fonts/Blank-Theme-Icons/Blank-Theme-Icons.ttf
 mode change 100644 => 100755 lib/web/fonts/Blank-Theme-Icons/Blank-Theme-Icons.woff
 mode change 100644 => 100755 lib/web/fonts/Blank-Theme-Icons/Blank-Theme-Icons.woff2
 mode change 100644 => 100755 lib/web/fonts/Blank-Theme-Icons/selection.json
 mode change 100644 => 100755 lib/web/fonts/MUI-Icons/MUI-Icons.eot
 mode change 100644 => 100755 lib/web/fonts/MUI-Icons/MUI-Icons.svg
 mode change 100644 => 100755 lib/web/fonts/MUI-Icons/MUI-Icons.ttf
 mode change 100644 => 100755 lib/web/fonts/MUI-Icons/MUI-Icons.woff
 mode change 100644 => 100755 lib/web/fonts/MUI-Icons/MUI-Icons.woff2
 mode change 100644 => 100755 lib/web/fonts/UX-Icons/UX-Icons.eot
 mode change 100644 => 100755 lib/web/fonts/UX-Icons/UX-Icons.svg
 mode change 100644 => 100755 lib/web/fonts/UX-Icons/UX-Icons.ttf
 mode change 100644 => 100755 lib/web/fonts/UX-Icons/UX-Icons.woff
 mode change 100644 => 100755 lib/web/fonts/opensans/bold/opensans-700.eot
 mode change 100644 => 100755 lib/web/fonts/opensans/bold/opensans-700.svg
 mode change 100644 => 100755 lib/web/fonts/opensans/bold/opensans-700.ttf
 mode change 100644 => 100755 lib/web/fonts/opensans/bold/opensans-700.woff
 mode change 100644 => 100755 lib/web/fonts/opensans/bold/opensans-700.woff2
 mode change 100644 => 100755 lib/web/fonts/opensans/light/opensans-300.eot
 mode change 100644 => 100755 lib/web/fonts/opensans/light/opensans-300.svg
 mode change 100644 => 100755 lib/web/fonts/opensans/light/opensans-300.ttf
 mode change 100644 => 100755 lib/web/fonts/opensans/light/opensans-300.woff
 mode change 100644 => 100755 lib/web/fonts/opensans/light/opensans-300.woff2
 mode change 100644 => 100755 lib/web/fonts/opensans/regular/opensans-400.eot
 mode change 100644 => 100755 lib/web/fonts/opensans/regular/opensans-400.svg
 mode change 100644 => 100755 lib/web/fonts/opensans/regular/opensans-400.ttf
 mode change 100644 => 100755 lib/web/fonts/opensans/regular/opensans-400.woff
 mode change 100644 => 100755 lib/web/fonts/opensans/regular/opensans-400.woff2
 mode change 100644 => 100755 lib/web/fonts/opensans/semibold/opensans-600.eot
 mode change 100644 => 100755 lib/web/fonts/opensans/semibold/opensans-600.svg
 mode change 100644 => 100755 lib/web/fonts/opensans/semibold/opensans-600.ttf
 mode change 100644 => 100755 lib/web/fonts/opensans/semibold/opensans-600.woff
 mode change 100644 => 100755 lib/web/fonts/opensans/semibold/opensans-600.woff2
 mode change 100644 => 100755 lib/web/fotorama/fotorama.js
 mode change 100644 => 100755 lib/web/fotorama/fotorama.min.js
 mode change 100644 => 100755 lib/web/i18n/en_US.csv
 mode change 100644 => 100755 lib/web/images/bkg_gallery_thumbs.png
 mode change 100644 => 100755 lib/web/images/blank-theme-icons.png
 mode change 100644 => 100755 lib/web/images/cards.png
 mode change 100644 => 100755 lib/web/images/debug_bkg.png
 mode change 100644 => 100755 lib/web/images/loader-1.gif
 mode change 100644 => 100755 lib/web/images/loader-2.gif
 mode change 100644 => 100755 lib/web/images/logo.svg
 mode change 100644 => 100755 lib/web/images/magento-logo.svg
 mode change 100644 => 100755 lib/web/images/spacer.gif
 mode change 100644 => 100755 lib/web/images/sprite-gallery.png
 mode change 100644 => 100755 lib/web/images/sprite-gallery.svg
 mode change 100644 => 100755 lib/web/jquery.js
 mode change 100644 => 100755 lib/web/jquery/colorpicker/css/colorpicker.css
 mode change 100644 => 100755 lib/web/jquery/colorpicker/images/blank.gif
 mode change 100644 => 100755 lib/web/jquery/colorpicker/images/colorpicker_background.png
 mode change 100644 => 100755 lib/web/jquery/colorpicker/images/colorpicker_hex.png
 mode change 100644 => 100755 lib/web/jquery/colorpicker/images/colorpicker_hsb_b.png
 mode change 100644 => 100755 lib/web/jquery/colorpicker/images/colorpicker_hsb_h.png
 mode change 100644 => 100755 lib/web/jquery/colorpicker/images/colorpicker_hsb_s.png
 mode change 100644 => 100755 lib/web/jquery/colorpicker/images/colorpicker_indic.gif
 mode change 100644 => 100755 lib/web/jquery/colorpicker/images/colorpicker_overlay.png
 mode change 100644 => 100755 lib/web/jquery/colorpicker/images/colorpicker_rgb_b.png
 mode change 100644 => 100755 lib/web/jquery/colorpicker/images/colorpicker_rgb_g.png
 mode change 100644 => 100755 lib/web/jquery/colorpicker/images/colorpicker_rgb_r.png
 mode change 100644 => 100755 lib/web/jquery/colorpicker/images/colorpicker_select.gif
 mode change 100644 => 100755 lib/web/jquery/colorpicker/images/colorpicker_submit.png
 mode change 100644 => 100755 lib/web/jquery/colorpicker/images/custom_background.png
 mode change 100644 => 100755 lib/web/jquery/colorpicker/images/custom_hex.png
 mode change 100644 => 100755 lib/web/jquery/colorpicker/images/custom_hsb_b.png
 mode change 100644 => 100755 lib/web/jquery/colorpicker/images/custom_hsb_h.png
 mode change 100644 => 100755 lib/web/jquery/colorpicker/images/custom_hsb_s.png
 mode change 100644 => 100755 lib/web/jquery/colorpicker/images/custom_indic.gif
 mode change 100644 => 100755 lib/web/jquery/colorpicker/images/custom_rgb_b.png
 mode change 100644 => 100755 lib/web/jquery/colorpicker/images/custom_rgb_g.png
 mode change 100644 => 100755 lib/web/jquery/colorpicker/images/custom_rgb_r.png
 mode change 100644 => 100755 lib/web/jquery/colorpicker/images/custom_submit.png
 mode change 100644 => 100755 lib/web/jquery/colorpicker/images/select.png
 mode change 100644 => 100755 lib/web/jquery/colorpicker/images/select2.png
 mode change 100644 => 100755 lib/web/jquery/colorpicker/images/slider.png
 mode change 100644 => 100755 lib/web/jquery/colorpicker/js/colorpicker.js
 mode change 100644 => 100755 lib/web/jquery/editableMultiselect/css/jquery.multiselect.css
 mode change 100644 => 100755 lib/web/jquery/editableMultiselect/js/jquery.editable.js
 mode change 100644 => 100755 lib/web/jquery/editableMultiselect/js/jquery.multiselect.js
 mode change 100644 => 100755 lib/web/jquery/fileUploader/canvas-to-blob.js
 mode change 100644 => 100755 lib/web/jquery/fileUploader/cors/jquery.postmessage-transport.js
 mode change 100644 => 100755 lib/web/jquery/fileUploader/cors/jquery.xdr-transport.js
 mode change 100644 => 100755 lib/web/jquery/fileUploader/css/jquery.fileupload-ui.css
 mode change 100644 => 100755 lib/web/jquery/fileUploader/img/loading.gif
 mode change 100644 => 100755 lib/web/jquery/fileUploader/img/progressbar.gif
 mode change 100644 => 100755 lib/web/jquery/fileUploader/jquery.fileupload-fp.js
 mode change 100644 => 100755 lib/web/jquery/fileUploader/jquery.fileupload-ui.js
 mode change 100644 => 100755 lib/web/jquery/fileUploader/jquery.fileupload.js
 mode change 100644 => 100755 lib/web/jquery/fileUploader/jquery.iframe-transport.js
 mode change 100644 => 100755 lib/web/jquery/fileUploader/load-image.js
 mode change 100644 => 100755 lib/web/jquery/fileUploader/locale.js
 mode change 100644 => 100755 lib/web/jquery/fileUploader/main.js
 mode change 100644 => 100755 lib/web/jquery/fileUploader/vendor/jquery.ui.widget.js
 mode change 100644 => 100755 lib/web/jquery/jquery-migrate.js
 mode change 100644 => 100755 lib/web/jquery/jquery-ui-1.9.2.js
 mode change 100644 => 100755 lib/web/jquery/jquery-ui-timepicker-addon.js
 mode change 100644 => 100755 lib/web/jquery/jquery-ui.js
 mode change 100644 => 100755 lib/web/jquery/jquery.ba-hashchange.min.js
 mode change 100644 => 100755 lib/web/jquery/jquery.cookie.js
 mode change 100644 => 100755 lib/web/jquery/jquery.details.js
 mode change 100644 => 100755 lib/web/jquery/jquery.hoverIntent.js
 mode change 100644 => 100755 lib/web/jquery/jquery.metadata.js
 mode change 100644 => 100755 lib/web/jquery/jquery.min.js
 mode change 100644 => 100755 lib/web/jquery/jquery.mobile.custom.js
 mode change 100644 => 100755 lib/web/jquery/jquery.parsequery.js
 mode change 100644 => 100755 lib/web/jquery/jquery.storageapi.min.js
 mode change 100644 => 100755 lib/web/jquery/jquery.tabs.js
 mode change 100644 => 100755 lib/web/jquery/jquery.validate.js
 mode change 100644 => 100755 lib/web/jquery/jstree/jquery.hotkeys.js
 mode change 100644 => 100755 lib/web/jquery/jstree/jquery.jstree.js
 mode change 100644 => 100755 lib/web/jquery/jstree/themes/apple/bg.jpg
 mode change 100644 => 100755 lib/web/jquery/jstree/themes/apple/d.png
 mode change 100644 => 100755 lib/web/jquery/jstree/themes/apple/dot_for_ie.gif
 mode change 100644 => 100755 lib/web/jquery/jstree/themes/apple/style.css
 mode change 100644 => 100755 lib/web/jquery/jstree/themes/apple/throbber.gif
 mode change 100644 => 100755 lib/web/jquery/jstree/themes/classic/d.gif
 mode change 100644 => 100755 lib/web/jquery/jstree/themes/classic/d.png
 mode change 100644 => 100755 lib/web/jquery/jstree/themes/classic/dot_for_ie.gif
 mode change 100644 => 100755 lib/web/jquery/jstree/themes/classic/style.css
 mode change 100644 => 100755 lib/web/jquery/jstree/themes/classic/throbber.gif
 mode change 100644 => 100755 lib/web/jquery/jstree/themes/default-rtl/d.gif
 mode change 100644 => 100755 lib/web/jquery/jstree/themes/default-rtl/d.png
 mode change 100644 => 100755 lib/web/jquery/jstree/themes/default-rtl/dots.gif
 mode change 100644 => 100755 lib/web/jquery/jstree/themes/default-rtl/style.css
 mode change 100644 => 100755 lib/web/jquery/jstree/themes/default-rtl/throbber.gif
 mode change 100644 => 100755 lib/web/jquery/jstree/themes/default/d.gif
 mode change 100644 => 100755 lib/web/jquery/jstree/themes/default/d.png
 mode change 100644 => 100755 lib/web/jquery/jstree/themes/default/style.css
 mode change 100644 => 100755 lib/web/jquery/jstree/themes/default/throbber.gif
 mode change 100644 => 100755 lib/web/knockoutjs/knockout-es5.js
 mode change 100644 => 100755 lib/web/knockoutjs/knockout-fast-foreach.js
 mode change 100644 => 100755 lib/web/knockoutjs/knockout-repeat.js
 mode change 100644 => 100755 lib/web/knockoutjs/knockout.js
 mode change 100644 => 100755 lib/web/legacy-build.min.js
 mode change 100644 => 100755 lib/web/less/config.less.js
 mode change 100644 => 100755 lib/web/less/less.min.js
 mode change 100644 => 100755 lib/web/lib/ccard.js
 mode change 100644 => 100755 lib/web/lib/storage.js
 mode change 100644 => 100755 lib/web/mage/accordion.js
 mode change 100644 => 100755 lib/web/mage/adminhtml/accordion.js
 mode change 100644 => 100755 lib/web/mage/adminhtml/backup.js
 mode change 100644 => 100755 lib/web/mage/adminhtml/browser.js
 mode change 100644 => 100755 lib/web/mage/adminhtml/events.js
 mode change 100644 => 100755 lib/web/mage/adminhtml/form.js
 mode change 100644 => 100755 lib/web/mage/adminhtml/globals.js
 mode change 100644 => 100755 lib/web/mage/adminhtml/grid.js
 mode change 100644 => 100755 lib/web/mage/adminhtml/tools.js
 mode change 100644 => 100755 lib/web/mage/adminhtml/varienLoader.js
 mode change 100644 => 100755 lib/web/mage/adminhtml/wysiwyg/tiny_mce/html5-schema.js
 mode change 100644 => 100755 lib/web/mage/adminhtml/wysiwyg/tiny_mce/plugins/magentovariable/editor_plugin.js
 mode change 100644 => 100755 lib/web/mage/adminhtml/wysiwyg/tiny_mce/plugins/magentovariable/img/icon.gif
 mode change 100644 => 100755 lib/web/mage/adminhtml/wysiwyg/tiny_mce/plugins/magentowidget/editor_plugin.js
 mode change 100644 => 100755 lib/web/mage/adminhtml/wysiwyg/tiny_mce/plugins/magentowidget/img/icon.gif
 mode change 100644 => 100755 lib/web/mage/adminhtml/wysiwyg/tiny_mce/themes/advanced/skins/default/content.css
 mode change 100644 => 100755 lib/web/mage/adminhtml/wysiwyg/tiny_mce/themes/advanced/skins/default/dialog.css
 mode change 100644 => 100755 lib/web/mage/adminhtml/wysiwyg/widget.js
 mode change 100644 => 100755 lib/web/mage/app/config.js
 mode change 100644 => 100755 lib/web/mage/apply/main.js
 mode change 100644 => 100755 lib/web/mage/apply/scripts.js
 mode change 100644 => 100755 lib/web/mage/backend/action-link.js
 mode change 100644 => 100755 lib/web/mage/backend/bootstrap.js
 mode change 100644 => 100755 lib/web/mage/backend/button.js
 mode change 100644 => 100755 lib/web/mage/backend/editablemultiselect.js
 mode change 100644 => 100755 lib/web/mage/backend/floating-header.js
 mode change 100644 => 100755 lib/web/mage/backend/form.js
 mode change 100644 => 100755 lib/web/mage/backend/jstree-mixin.js
 mode change 100644 => 100755 lib/web/mage/backend/menu.js
 mode change 100644 => 100755 lib/web/mage/backend/notification.js
 mode change 100644 => 100755 lib/web/mage/backend/suggest.js
 mode change 100644 => 100755 lib/web/mage/backend/tabs.js
 mode change 100644 => 100755 lib/web/mage/backend/tree-suggest.js
 mode change 100644 => 100755 lib/web/mage/backend/validation.js
 mode change 100644 => 100755 lib/web/mage/bootstrap.js
 mode change 100644 => 100755 lib/web/mage/calendar.css
 mode change 100644 => 100755 lib/web/mage/calendar.js
 mode change 100644 => 100755 lib/web/mage/captcha.js
 mode change 100644 => 100755 lib/web/mage/collapsible.js
 mode change 100644 => 100755 lib/web/mage/common.js
 mode change 100644 => 100755 lib/web/mage/cookies.js
 mode change 100644 => 100755 lib/web/mage/dataPost.js
 mode change 100644 => 100755 lib/web/mage/decorate.js
 mode change 100644 => 100755 lib/web/mage/deletable-item.js
 mode change 100644 => 100755 lib/web/mage/dialog.js
 mode change 100644 => 100755 lib/web/mage/dropdown.js
 mode change 100644 => 100755 lib/web/mage/dropdown_old.js
 mode change 100644 => 100755 lib/web/mage/dropdowns.js
 mode change 100644 => 100755 lib/web/mage/edit-trigger.js
 mode change 100644 => 100755 lib/web/mage/fieldset-controls.js
 mode change 100644 => 100755 lib/web/mage/gallery/gallery.html
 mode change 100644 => 100755 lib/web/mage/gallery/gallery.js
 mode change 100644 => 100755 lib/web/mage/gallery/gallery.less
 mode change 100644 => 100755 lib/web/mage/gallery/gallery.png
 mode change 100644 => 100755 lib/web/mage/gallery/module/_extends.less
 mode change 100644 => 100755 lib/web/mage/gallery/module/_focus.less
 mode change 100644 => 100755 lib/web/mage/gallery/module/_fullscreen.less
 mode change 100644 => 100755 lib/web/mage/gallery/module/_mixins.less
 mode change 100644 => 100755 lib/web/mage/gallery/module/_variables.less
 mode change 100644 => 100755 lib/web/mage/ie-class-fixer.js
 mode change 100644 => 100755 lib/web/mage/item-table.js
 mode change 100644 => 100755 lib/web/mage/layout.js
 mode change 100644 => 100755 lib/web/mage/list.js
 mode change 100644 => 100755 lib/web/mage/loader.js
 mode change 100644 => 100755 lib/web/mage/loader_old.js
 mode change 100644 => 100755 lib/web/mage/mage.js
 mode change 100644 => 100755 lib/web/mage/menu.js
 mode change 100644 => 100755 lib/web/mage/multiselect.html
 mode change 100644 => 100755 lib/web/mage/multiselect.js
 mode change 100644 => 100755 lib/web/mage/popup-window.js
 mode change 100644 => 100755 lib/web/mage/redirect-url.js
 mode change 100644 => 100755 lib/web/mage/requirejs/baseUrlResolver.js
 mode change 100644 => 100755 lib/web/mage/requirejs/mixins.js
 mode change 100644 => 100755 lib/web/mage/requirejs/resolver.js
 mode change 100644 => 100755 lib/web/mage/requirejs/static.js
 mode change 100644 => 100755 lib/web/mage/requirejs/text.js
 mode change 100644 => 100755 lib/web/mage/smart-keyboard-handler.js
 mode change 100644 => 100755 lib/web/mage/sticky.js
 mode change 100644 => 100755 lib/web/mage/storage.js
 mode change 100644 => 100755 lib/web/mage/tabs.js
 mode change 100644 => 100755 lib/web/mage/template.js
 mode change 100644 => 100755 lib/web/mage/terms.js
 mode change 100644 => 100755 lib/web/mage/toggle.js
 mode change 100644 => 100755 lib/web/mage/tooltip.js
 mode change 100644 => 100755 lib/web/mage/translate-inline-vde.css
 mode change 100644 => 100755 lib/web/mage/translate-inline-vde.js
 mode change 100644 => 100755 lib/web/mage/translate-inline.css
 mode change 100644 => 100755 lib/web/mage/translate-inline.js
 mode change 100644 => 100755 lib/web/mage/translate.js
 mode change 100644 => 100755 lib/web/mage/url.js
 mode change 100644 => 100755 lib/web/mage/utils/arrays.js
 mode change 100644 => 100755 lib/web/mage/utils/compare.js
 mode change 100644 => 100755 lib/web/mage/utils/main.js
 mode change 100644 => 100755 lib/web/mage/utils/misc.js
 mode change 100644 => 100755 lib/web/mage/utils/objects.js
 mode change 100644 => 100755 lib/web/mage/utils/strings.js
 mode change 100644 => 100755 lib/web/mage/utils/template.js
 mode change 100644 => 100755 lib/web/mage/utils/wrapper.js
 mode change 100644 => 100755 lib/web/mage/validation.js
 mode change 100644 => 100755 lib/web/mage/validation/url.js
 mode change 100644 => 100755 lib/web/mage/validation/validation.js
 mode change 100644 => 100755 lib/web/mage/view/composite.js
 mode change 100644 => 100755 lib/web/mage/webapi.js
 mode change 100644 => 100755 lib/web/mage/zoom.js
 mode change 100644 => 100755 lib/web/magnifier/magnifier.js
 mode change 100644 => 100755 lib/web/magnifier/magnify.js
 mode change 100644 => 100755 lib/web/matchMedia.js
 mode change 100644 => 100755 lib/web/modernizr/modernizr.2.0.6.js
 mode change 100644 => 100755 lib/web/modernizr/modernizr.details.js
 mode change 100644 => 100755 lib/web/modernizr/modernizr.js
 mode change 100644 => 100755 lib/web/moment-timezone-with-data.js
 mode change 100644 => 100755 lib/web/moment.js
 mode change 100644 => 100755 lib/web/prototype/prototype-amd.js
 mode change 100644 => 100755 lib/web/prototype/prototype.js
 mode change 100644 => 100755 lib/web/prototype/validation.js
 mode change 100644 => 100755 lib/web/prototype/window.js
 mode change 100644 => 100755 lib/web/prototype/window_readme.txt
 mode change 100644 => 100755 lib/web/prototype/windows/MIT-LICENSE
 mode change 100644 => 100755 lib/web/prototype/windows/README
 mode change 100644 => 100755 lib/web/prototype/windows/themes/alert.css
 mode change 100644 => 100755 lib/web/prototype/windows/themes/alert/bottom.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/alert/bottom_left.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/alert/bottom_right.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/alert/left.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/alert/overlay.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/alert/progress.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/alert/right.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/alert/top.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/alert/top_left.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/alert/top_right.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/alert_lite.css
 mode change 100644 => 100755 lib/web/prototype/windows/themes/alphacube.css
 mode change 100644 => 100755 lib/web/prototype/windows/themes/alphacube/bottom-left-c.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/alphacube/bottom-middle.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/alphacube/bottom-right-c.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/alphacube/button-close-focus.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/alphacube/button-max-focus.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/alphacube/button-min-focus.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/alphacube/frame-left.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/alphacube/frame-right.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/alphacube/left-top.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/alphacube/right-top.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/alphacube/top-middle.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/behavior.htc
 mode change 100644 => 100755 lib/web/prototype/windows/themes/darkX.css
 mode change 100644 => 100755 lib/web/prototype/windows/themes/darkX/button-close-focused.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/darkX/button-maximize-focused.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/darkX/button-minimize-focused.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/darkX/frame-bottom-left-focused.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/darkX/frame-bottom-mid-focused.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/darkX/frame-bottom-right-focused.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/darkX/frame-left-focused.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/darkX/frame-right-focused.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/darkX/titlebar-left-focused.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/darkX/titlebar-mid-focused.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/darkX/titlebar-right-focused.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/debug.css
 mode change 100644 => 100755 lib/web/prototype/windows/themes/default.css
 mode change 100644 => 100755 lib/web/prototype/windows/themes/default/bottom_left.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/default/bottom_mid.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/default/bottom_right.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/default/bottom_right_resize.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/default/center_left.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/default/center_right.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/default/clear.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/default/close.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/default/inspect.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/default/maximize.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/default/minimize.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/default/overlay.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/default/resize.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/default/sizer.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/default/top_left.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/default/top_mid.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/default/top_right.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/iefix/blank.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/iefix/iepngfix.css
 mode change 100644 => 100755 lib/web/prototype/windows/themes/iefix/iepngfix.htc
 mode change 100644 => 100755 lib/web/prototype/windows/themes/lighting.css
 mode change 100644 => 100755 lib/web/prototype/windows/themes/lighting/background_buttons.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/lighting/bottom-left-blue.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/lighting/bottom-left-darkblue.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/lighting/bottom-left-green.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/lighting/bottom-left-grey.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/lighting/bottom-middle-blue.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/lighting/bottom-middle-darkblue.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/lighting/bottom-middle-green.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/lighting/bottom-middle-grey.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/lighting/bottom-right-blue.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/lighting/bottom-right-darkblue.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/lighting/bottom-right-green.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/lighting/bottom-right-grey.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/lighting/button-close-blue.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/lighting/button-close-darkblue.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/lighting/button-close-green.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/lighting/button-close-grey.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/lighting/button-maximize-blue.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/lighting/button-maximize-darkblue.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/lighting/button-maximize-green.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/lighting/button-maximize-grey.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/lighting/button-minimize-blue.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/lighting/button-minimize-darkblue.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/lighting/button-minimize-green.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/lighting/button-minimize-grey.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/lighting/left-blue.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/lighting/left-darkblue.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/lighting/left-green.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/lighting/left-grey.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/lighting/pngbehavior.htc
 mode change 100644 => 100755 lib/web/prototype/windows/themes/lighting/right-blue.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/lighting/right-darkblue.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/lighting/right-green.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/lighting/right-grey.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/lighting/spinner.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/lighting/top-left-blue.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/lighting/top-left-darkblue.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/lighting/top-left-green.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/lighting/top-left-grey.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/lighting/top-middle-blue.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/lighting/top-middle-darkblue.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/lighting/top-middle-green.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/lighting/top-middle-grey.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/lighting/top-right-blue.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/lighting/top-right-darkblue.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/lighting/top-right-green.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/lighting/top-right-grey.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/mac_os_x.css
 mode change 100644 => 100755 lib/web/prototype/windows/themes/mac_os_x_dialog.css
 mode change 100644 => 100755 lib/web/prototype/windows/themes/nuncio.css
 mode change 100644 => 100755 lib/web/prototype/windows/themes/nuncio/bottom_left.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/nuncio/bottom_mid.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/nuncio/bottom_right.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/nuncio/center_left.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/nuncio/center_right.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/nuncio/close.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/nuncio/minimize.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/nuncio/overlay.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/nuncio/top_left.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/nuncio/top_mid.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/nuncio/top_right.png
 mode change 100644 => 100755 lib/web/prototype/windows/themes/spread.css
 mode change 100644 => 100755 lib/web/prototype/windows/themes/spread/.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/spread/bottom-left-c.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/spread/bottom-middle.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/spread/bottom-right-c.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/spread/button-close-focus.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/spread/button-max-focus.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/spread/button-min-focus.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/spread/frame-left.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/spread/frame-right.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/spread/left-top.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/spread/right-top.gif
 mode change 100644 => 100755 lib/web/prototype/windows/themes/spread/top-middle.gif
 mode change 100644 => 100755 lib/web/requirejs/domReady.js
 mode change 100644 => 100755 lib/web/requirejs/require.js
 mode change 100644 => 100755 lib/web/requirejs/text.js
 mode change 100644 => 100755 lib/web/scriptaculous/builder.js
 mode change 100644 => 100755 lib/web/scriptaculous/effects.js
 mode change 100644 => 100755 lib/web/spacer.gif
 mode change 100644 => 100755 lib/web/tiny_mce/classes/AddOnManager.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/ControlManager.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/Editor.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/EditorCommands.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/EditorManager.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/ForceBlocks.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/Formatter.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/LegacyInput.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/Popup.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/UndoManager.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/WindowManager.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/adapter/jquery/adapter.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/adapter/jquery/jquery.tinymce.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/adapter/prototype/adapter.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/dom/DOMUtils.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/dom/Element.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/dom/EventUtils.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/dom/Range.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/dom/RangeUtils.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/dom/ScriptLoader.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/dom/Selection.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/dom/Serializer.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/dom/Sizzle.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/dom/TreeWalker.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/dom/TridentSelection.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/firebug/FIREBUG.LICENSE
 mode change 100644 => 100755 lib/web/tiny_mce/classes/firebug/firebug-lite.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/html/DomParser.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/html/Entities.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/html/Node.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/html/SaxParser.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/html/Schema.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/html/Serializer.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/html/Styles.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/html/Writer.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/tinymce.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/ui/Button.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/ui/ColorSplitButton.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/ui/Container.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/ui/Control.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/ui/DropMenu.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/ui/KeyboardNavigation.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/ui/ListBox.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/ui/Menu.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/ui/MenuButton.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/ui/MenuItem.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/ui/NativeListBox.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/ui/Separator.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/ui/SplitButton.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/ui/Toolbar.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/ui/ToolbarGroup.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/util/Cookie.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/util/Dispatcher.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/util/JSON.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/util/JSONP.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/util/JSONRequest.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/util/Quirks.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/util/URI.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/util/VK.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/util/XHR.js
 mode change 100644 => 100755 lib/web/tiny_mce/classes/xml/Parser.js
 mode change 100644 => 100755 lib/web/tiny_mce/jquery.tinymce.js
 mode change 100644 => 100755 lib/web/tiny_mce/langs/en.js
 mode change 100644 => 100755 lib/web/tiny_mce/license.txt
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/advhr/css/advhr.css
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/advhr/editor_plugin.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/advhr/editor_plugin_src.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/advhr/js/rule.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/advhr/langs/en_dlg.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/advhr/rule.htm
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/advimage/css/advimage.css
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/advimage/editor_plugin.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/advimage/editor_plugin_src.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/advimage/image.htm
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/advimage/img/sample.gif
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/advimage/js/image.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/advimage/langs/en_dlg.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/advlink/css/advlink.css
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/advlink/editor_plugin.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/advlink/editor_plugin_src.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/advlink/js/advlink.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/advlink/langs/en_dlg.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/advlink/link.htm
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/advlist/editor_plugin.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/advlist/editor_plugin_src.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/autolink/editor_plugin.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/autolink/editor_plugin_src.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/autoresize/editor_plugin.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/autoresize/editor_plugin_src.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/autosave/editor_plugin.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/autosave/editor_plugin_src.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/autosave/langs/en.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/bbcode/editor_plugin.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/bbcode/editor_plugin_src.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/contextmenu/editor_plugin.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/contextmenu/editor_plugin_src.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/directionality/editor_plugin.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/directionality/editor_plugin_src.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/emotions/editor_plugin.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/emotions/editor_plugin_src.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/emotions/emotions.htm
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/emotions/img/smiley-cool.gif
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/emotions/img/smiley-cry.gif
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/emotions/img/smiley-embarassed.gif
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/emotions/img/smiley-frown.gif
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/emotions/img/smiley-innocent.gif
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/emotions/img/smiley-kiss.gif
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/emotions/img/smiley-laughing.gif
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/emotions/img/smiley-sealed.gif
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/emotions/img/smiley-smile.gif
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/emotions/img/smiley-surprised.gif
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/emotions/img/smiley-undecided.gif
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/emotions/img/smiley-wink.gif
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/emotions/img/smiley-yell.gif
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/emotions/js/emotions.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/emotions/langs/en_dlg.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/example/dialog.htm
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/example/editor_plugin.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/example/editor_plugin_src.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/example/img/example.gif
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/example/js/dialog.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/example/langs/en.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/example/langs/en_dlg.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/example_dependency/editor_plugin.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/example_dependency/editor_plugin_src.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/fullpage/css/fullpage.css
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/fullpage/editor_plugin.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/fullpage/editor_plugin_src.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/fullpage/fullpage.htm
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/fullpage/js/fullpage.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/fullpage/langs/en_dlg.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/fullscreen/editor_plugin.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/fullscreen/editor_plugin_src.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/fullscreen/fullscreen.htm
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/iespell/editor_plugin.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/iespell/editor_plugin_src.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/inlinepopups/editor_plugin.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/inlinepopups/editor_plugin_src.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/button.gif
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/inlinepopups/skins/clearlooks2/window.css
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/inlinepopups/template.htm
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/insertdatetime/editor_plugin.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/insertdatetime/editor_plugin_src.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/layer/editor_plugin.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/layer/editor_plugin_src.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/legacyoutput/editor_plugin.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/legacyoutput/editor_plugin_src.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/lists/editor_plugin.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/lists/editor_plugin_src.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/media/css/media.css
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/media/editor_plugin.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/media/editor_plugin_src.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/media/img/flash.gif
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/media/img/quicktime.gif
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/media/img/realmedia.gif
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/media/img/shockwave.gif
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/media/img/trans.gif
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/media/img/windowsmedia.gif
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/media/js/embed.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/media/js/media.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/media/langs/en_dlg.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/media/media.htm
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/media/moxieplayer.swf
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/nonbreaking/editor_plugin.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/nonbreaking/editor_plugin_src.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/noneditable/editor_plugin.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/noneditable/editor_plugin_src.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/pagebreak/css/content.css
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/pagebreak/editor_plugin.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/pagebreak/editor_plugin_src.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/pagebreak/img/pagebreak.gif
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/pagebreak/img/trans.gif
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/paste/editor_plugin.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/paste/editor_plugin_src.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/paste/js/pastetext.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/paste/js/pasteword.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/paste/langs/en_dlg.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/paste/pastetext.htm
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/paste/pasteword.htm
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/preview/editor_plugin.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/preview/editor_plugin_src.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/preview/example.html
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/preview/jscripts/embed.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/preview/preview.html
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/print/editor_plugin.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/print/editor_plugin_src.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/save/editor_plugin.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/save/editor_plugin_src.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/searchreplace/css/searchreplace.css
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/searchreplace/editor_plugin.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/searchreplace/editor_plugin_src.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/searchreplace/js/searchreplace.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/searchreplace/langs/en_dlg.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/searchreplace/searchreplace.htm
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/spellchecker/css/content.css
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/spellchecker/editor_plugin.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/spellchecker/editor_plugin_src.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/spellchecker/img/wline.gif
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/style/css/props.css
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/style/editor_plugin.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/style/editor_plugin_src.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/style/js/props.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/style/langs/en_dlg.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/style/props.htm
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/tabfocus/editor_plugin.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/tabfocus/editor_plugin_src.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/table/cell.htm
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/table/css/cell.css
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/table/css/row.css
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/table/css/table.css
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/table/editor_plugin.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/table/editor_plugin_src.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/table/js/cell.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/table/js/merge_cells.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/table/js/row.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/table/js/table.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/table/langs/en_dlg.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/table/merge_cells.htm
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/table/row.htm
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/table/table.htm
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/template/blank.htm
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/template/css/template.css
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/template/editor_plugin.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/template/editor_plugin_src.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/template/js/template.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/template/langs/en_dlg.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/template/template.htm
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/visualchars/editor_plugin.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/visualchars/editor_plugin_src.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/wordcount/editor_plugin.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/wordcount/editor_plugin_src.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/xhtmlxtras/abbr.htm
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/xhtmlxtras/acronym.htm
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/xhtmlxtras/attributes.htm
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/xhtmlxtras/cite.htm
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/xhtmlxtras/css/attributes.css
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/xhtmlxtras/css/popup.css
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/xhtmlxtras/del.htm
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/xhtmlxtras/editor_plugin.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/xhtmlxtras/editor_plugin_src.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/xhtmlxtras/ins.htm
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/xhtmlxtras/js/abbr.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/xhtmlxtras/js/acronym.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/xhtmlxtras/js/attributes.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/xhtmlxtras/js/cite.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/xhtmlxtras/js/del.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/xhtmlxtras/js/element_common.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/xhtmlxtras/js/ins.js
 mode change 100644 => 100755 lib/web/tiny_mce/plugins/xhtmlxtras/langs/en_dlg.js
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/about.htm
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/anchor.htm
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/charmap.htm
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/color_picker.htm
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/editor_template.js
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/editor_template_src.js
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/image.htm
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/img/colorpicker.jpg
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/img/flash.gif
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/img/icons.png
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/img/iframe.gif
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/img/pagebreak.gif
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/img/quicktime.gif
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/img/realmedia.gif
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/img/shockwave.gif
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/img/trans.gif
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/img/video.gif
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/img/windowsmedia.gif
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/js/about.js
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/js/anchor.js
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/js/charmap.js
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/js/color_picker.js
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/js/image.js
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/js/link.js
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/js/source_editor.js
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/langs/en.js
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/langs/en_dlg.js
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/link.htm
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/shortcuts.htm
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/skins/default/content.css
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/skins/default/dialog.css
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/skins/default/img/buttons.png
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/skins/default/img/items.gif
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/skins/default/img/menu_check.gif
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/skins/default/img/progress.gif
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/skins/default/img/tabs.gif
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/skins/default/ui.css
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/skins/highcontrast/content.css
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/skins/highcontrast/dialog.css
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/skins/highcontrast/ui.css
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/skins/o2k7/content.css
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/skins/o2k7/dialog.css
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_silver.png
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/skins/o2k7/ui.css
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/skins/o2k7/ui_black.css
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/skins/o2k7/ui_silver.css
 mode change 100644 => 100755 lib/web/tiny_mce/themes/advanced/source_editor.htm
 mode change 100644 => 100755 lib/web/tiny_mce/themes/simple/editor_template.js
 mode change 100644 => 100755 lib/web/tiny_mce/themes/simple/editor_template_src.js
 mode change 100644 => 100755 lib/web/tiny_mce/themes/simple/img/icons.png
 mode change 100644 => 100755 lib/web/tiny_mce/themes/simple/langs/en.js
 mode change 100644 => 100755 lib/web/tiny_mce/themes/simple/skins/default/content.css
 mode change 100644 => 100755 lib/web/tiny_mce/themes/simple/skins/default/ui.css
 mode change 100644 => 100755 lib/web/tiny_mce/themes/simple/skins/o2k7/content.css
 mode change 100644 => 100755 lib/web/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png
 mode change 100644 => 100755 lib/web/tiny_mce/themes/simple/skins/o2k7/ui.css
 mode change 100644 => 100755 lib/web/tiny_mce/tiny_mce.js
 mode change 100644 => 100755 lib/web/tiny_mce/tiny_mce_dev.js
 mode change 100644 => 100755 lib/web/tiny_mce/tiny_mce_jquery.js
 mode change 100644 => 100755 lib/web/tiny_mce/tiny_mce_jquery_src.js
 mode change 100644 => 100755 lib/web/tiny_mce/tiny_mce_popup.js
 mode change 100644 => 100755 lib/web/tiny_mce/tiny_mce_prototype.js
 mode change 100644 => 100755 lib/web/tiny_mce/tiny_mce_prototype_src.js
 mode change 100644 => 100755 lib/web/tiny_mce/tiny_mce_src.js
 mode change 100644 => 100755 lib/web/tiny_mce/utils/editable_selects.js
 mode change 100644 => 100755 lib/web/tiny_mce/utils/form_utils.js
 mode change 100644 => 100755 lib/web/tiny_mce/utils/mctabs.js
 mode change 100644 => 100755 lib/web/tiny_mce/utils/validate.js
 mode change 100644 => 100755 lib/web/underscore.js
 mode change 100644 => 100755 lib/web/varien/form.js
 mode change 100644 => 100755 lib/web/varien/js.js
 mode change 100644 => 100755 nginx.conf.sample
 mode change 100644 => 100755 package.json.sample
 mode change 100644 => 100755 php.ini.sample
 mode change 100644 => 100755 phpserver/.htaccess
 mode change 100644 => 100755 phpserver/README.md
 mode change 100644 => 100755 phpserver/router.php
 mode change 100644 => 100755 pub/.htaccess
 mode change 100644 => 100755 pub/.user.ini
 mode change 100644 => 100755 pub/cron.php
 mode change 100644 => 100755 pub/errors/.htaccess
 mode change 100644 => 100755 pub/errors/404.php
 mode change 100644 => 100755 pub/errors/503.php
 mode change 100644 => 100755 pub/errors/default/404.phtml
 mode change 100644 => 100755 pub/errors/default/503.phtml
 mode change 100644 => 100755 pub/errors/default/css/styles.css
 mode change 100644 => 100755 pub/errors/default/images/favicon.ico
 mode change 100644 => 100755 pub/errors/default/images/i_msg-error.gif
 mode change 100644 => 100755 pub/errors/default/images/i_msg-note.gif
 mode change 100644 => 100755 pub/errors/default/images/i_msg-success.gif
 mode change 100644 => 100755 pub/errors/default/images/logo.gif
 mode change 100644 => 100755 pub/errors/default/nocache.phtml
 mode change 100644 => 100755 pub/errors/default/page.phtml
 mode change 100644 => 100755 pub/errors/default/report.phtml
 mode change 100644 => 100755 pub/errors/design.xml
 mode change 100644 => 100755 pub/errors/local.xml.sample
 mode change 100644 => 100755 pub/errors/noCache.php
 mode change 100644 => 100755 pub/errors/processor.php
 mode change 100644 => 100755 pub/errors/processorFactory.php
 mode change 100644 => 100755 pub/errors/report.php
 mode change 100644 => 100755 pub/get.php
 mode change 100644 => 100755 pub/health_check.php
 mode change 100644 => 100755 pub/index.php
 mode change 100644 => 100755 pub/media/.htaccess
 mode change 100644 => 100755 pub/media/customer/.htaccess
 mode change 100644 => 100755 pub/media/downloadable/.htaccess
 mode change 100644 => 100755 pub/media/import/.htaccess
 mode change 100644 => 100755 pub/media/theme_customization/.htaccess
 mode change 100644 => 100755 pub/opt/magento/var/resource_config.json
 mode change 100644 => 100755 pub/static.php
 mode change 100644 => 100755 pub/static/.htaccess
 mode change 100644 => 100755 setup/.htaccess
 mode change 100644 => 100755 setup/config/.htaccess
 mode change 100644 => 100755 setup/config/application.config.php
 mode change 100644 => 100755 setup/config/autoload/global.php
 mode change 100644 => 100755 setup/config/di.config.php
 mode change 100644 => 100755 setup/config/languages.config.php
 mode change 100644 => 100755 setup/config/marketplace.config.php
 mode change 100644 => 100755 setup/config/module.config.php
 mode change 100644 => 100755 setup/config/router.config.php
 mode change 100644 => 100755 setup/config/states.disable.config.php
 mode change 100644 => 100755 setup/config/states.enable.config.php
 mode change 100644 => 100755 setup/config/states.extensionManager.config.php
 mode change 100644 => 100755 setup/config/states.home.config.php
 mode change 100644 => 100755 setup/config/states.install.config.php
 mode change 100644 => 100755 setup/config/states.uninstall.config.php
 mode change 100644 => 100755 setup/config/states.update.config.php
 mode change 100644 => 100755 setup/config/states.upgrade.config.php
 mode change 100644 => 100755 setup/index.php
 mode change 100644 => 100755 setup/performance-toolkit/.htaccess
 mode change 100644 => 100755 setup/performance-toolkit/README.md
 mode change 100644 => 100755 setup/performance-toolkit/benchmark.jmx
 mode change 100644 => 100755 setup/performance-toolkit/benchmark_2015.jmx
 mode change 100644 => 100755 setup/performance-toolkit/config/attributeSets.xml
 mode change 100644 => 100755 setup/performance-toolkit/config/customerConfig.xml
 mode change 100644 => 100755 setup/performance-toolkit/config/description.xml
 mode change 100644 => 100755 setup/performance-toolkit/config/di.xml
 mode change 100644 => 100755 setup/performance-toolkit/config/searchConfig.xml
 mode change 100644 => 100755 setup/performance-toolkit/config/searchTerms.xml
 mode change 100644 => 100755 setup/performance-toolkit/config/searchTermsLarge.xml
 mode change 100644 => 100755 setup/performance-toolkit/config/shortDescription.xml
 mode change 100644 => 100755 setup/performance-toolkit/files/downloadable_original.txt
 mode change 100644 => 100755 setup/performance-toolkit/files/downloadable_sample.txt
 mode change 100644 => 100755 setup/performance-toolkit/files/search_terms.csv
 mode change 100644 => 100755 setup/performance-toolkit/profiles/ce/extra_large.xml
 mode change 100644 => 100755 setup/performance-toolkit/profiles/ce/large.xml
 mode change 100644 => 100755 setup/performance-toolkit/profiles/ce/medium.xml
 mode change 100644 => 100755 setup/performance-toolkit/profiles/ce/medium_msite.xml
 mode change 100644 => 100755 setup/performance-toolkit/profiles/ce/small.xml
 mode change 100644 => 100755 setup/pub/.htaccess
 mode change 100644 => 100755 setup/pub/angular-clickout/angular-clickout.min.js
 mode change 100644 => 100755 setup/pub/angular-ng-dialog/angular-ng-dialog.min.js
 mode change 100644 => 100755 setup/pub/angular-ng-storage/angular-ng-storage.min.js
 mode change 100644 => 100755 setup/pub/angular-sanitize/angular-sanitize.js
 mode change 100644 => 100755 setup/pub/angular-sanitize/angular-sanitize.min.js
 mode change 100644 => 100755 setup/pub/angular-sanitize/angular-sanitize.min.js.map
 mode change 100644 => 100755 setup/pub/angular-ui-bootstrap/angular-ui-bootstrap.min.js
 mode change 100644 => 100755 setup/pub/angular-ui-router/angular-ui-router.min.js
 mode change 100644 => 100755 setup/pub/angular/angular.js
 mode change 100644 => 100755 setup/pub/angular/angular.min.js
 mode change 100644 => 100755 setup/pub/angular/angular.min.js.map
 mode change 100644 => 100755 setup/pub/bootstrap/js/bootstrap.js
 mode change 100644 => 100755 setup/pub/bootstrap/js/bootstrap.min.js
 mode change 100644 => 100755 setup/pub/fonts/icons/icons.eot
 mode change 100644 => 100755 setup/pub/fonts/icons/icons.svg
 mode change 100644 => 100755 setup/pub/fonts/icons/icons.ttf
 mode change 100644 => 100755 setup/pub/fonts/icons/icons.woff
 mode change 100644 => 100755 setup/pub/fonts/icons/icons.woff2
 mode change 100644 => 100755 setup/pub/fonts/icons/selection.json
 mode change 100644 => 100755 setup/pub/fonts/opensans/bold/opensans-700.eot
 mode change 100644 => 100755 setup/pub/fonts/opensans/bold/opensans-700.svg
 mode change 100644 => 100755 setup/pub/fonts/opensans/bold/opensans-700.ttf
 mode change 100644 => 100755 setup/pub/fonts/opensans/bold/opensans-700.woff
 mode change 100644 => 100755 setup/pub/fonts/opensans/bold/opensans-700.woff2
 mode change 100644 => 100755 setup/pub/fonts/opensans/light/opensans-300.eot
 mode change 100644 => 100755 setup/pub/fonts/opensans/light/opensans-300.svg
 mode change 100644 => 100755 setup/pub/fonts/opensans/light/opensans-300.ttf
 mode change 100644 => 100755 setup/pub/fonts/opensans/light/opensans-300.woff
 mode change 100644 => 100755 setup/pub/fonts/opensans/light/opensans-300.woff2
 mode change 100644 => 100755 setup/pub/fonts/opensans/regular/opensans-400.eot
 mode change 100644 => 100755 setup/pub/fonts/opensans/regular/opensans-400.svg
 mode change 100644 => 100755 setup/pub/fonts/opensans/regular/opensans-400.ttf
 mode change 100644 => 100755 setup/pub/fonts/opensans/regular/opensans-400.woff
 mode change 100644 => 100755 setup/pub/fonts/opensans/regular/opensans-400.woff2
 mode change 100644 => 100755 setup/pub/fonts/opensans/semibold/opensans-600.eot
 mode change 100644 => 100755 setup/pub/fonts/opensans/semibold/opensans-600.svg
 mode change 100644 => 100755 setup/pub/fonts/opensans/semibold/opensans-600.ttf
 mode change 100644 => 100755 setup/pub/fonts/opensans/semibold/opensans-600.woff
 mode change 100644 => 100755 setup/pub/fonts/opensans/semibold/opensans-600.woff2
 mode change 100644 => 100755 setup/pub/images/ajax-loader.gif
 mode change 100644 => 100755 setup/pub/images/arrows-bg.svg
 mode change 100644 => 100755 setup/pub/images/favicon/favicon-16x16.png
 mode change 100644 => 100755 setup/pub/images/favicon/favicon-32x32.png
 mode change 100644 => 100755 setup/pub/images/favicon/favicon-96x96.png
 mode change 100644 => 100755 setup/pub/images/favicon/favicon.ico
 mode change 100644 => 100755 setup/pub/images/loader-1.gif
 mode change 100644 => 100755 setup/pub/images/loader-2.gif
 mode change 100644 => 100755 setup/pub/images/logo.svg
 mode change 100644 => 100755 setup/pub/images/magento-icon.svg
 mode change 100644 => 100755 setup/pub/images/magento-logo.svg
 mode change 100644 => 100755 setup/pub/magento/setup/add-database.js
 mode change 100644 => 100755 setup/pub/magento/setup/app.js
 mode change 100644 => 100755 setup/pub/magento/setup/auth-dialog.js
 mode change 100644 => 100755 setup/pub/magento/setup/complete-backup.js
 mode change 100644 => 100755 setup/pub/magento/setup/create-admin-account.js
 mode change 100644 => 100755 setup/pub/magento/setup/create-backup.js
 mode change 100644 => 100755 setup/pub/magento/setup/customize-your-store.js
 mode change 100644 => 100755 setup/pub/magento/setup/data-option.js
 mode change 100644 => 100755 setup/pub/magento/setup/extension-grid.js
 mode change 100644 => 100755 setup/pub/magento/setup/home.js
 mode change 100644 => 100755 setup/pub/magento/setup/install-extension-grid.js
 mode change 100644 => 100755 setup/pub/magento/setup/install.js
 mode change 100644 => 100755 setup/pub/magento/setup/landing.js
 mode change 100644 => 100755 setup/pub/magento/setup/main.js
 mode change 100644 => 100755 setup/pub/magento/setup/marketplace-credentials.js
 mode change 100644 => 100755 setup/pub/magento/setup/module-grid.js
 mode change 100644 => 100755 setup/pub/magento/setup/readiness-check.js
 mode change 100644 => 100755 setup/pub/magento/setup/remove-dialog.js
 mode change 100644 => 100755 setup/pub/magento/setup/select-version.js
 mode change 100644 => 100755 setup/pub/magento/setup/start-updater.js
 mode change 100644 => 100755 setup/pub/magento/setup/success.js
 mode change 100644 => 100755 setup/pub/magento/setup/system-config.js
 mode change 100644 => 100755 setup/pub/magento/setup/update-extension-grid.js
 mode change 100644 => 100755 setup/pub/magento/setup/updater-success.js
 mode change 100644 => 100755 setup/pub/magento/setup/view/pagination.html
 mode change 100644 => 100755 setup/pub/magento/setup/web-configuration.js
 mode change 100644 => 100755 setup/pub/styles/setup.css
 mode change 100644 => 100755 setup/src/.htaccess
 mode change 100644 => 100755 setup/src/Magento/Setup/Application.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Console/Command/AbstractDependenciesCommand.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Console/Command/AbstractMaintenanceCommand.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Console/Command/AbstractModuleCommand.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Console/Command/AbstractModuleManageCommand.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Console/Command/AbstractSetupCommand.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Console/Command/AdminUserCreateCommand.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Console/Command/BackupCommand.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Console/Command/ConfigSetCommand.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Console/Command/CronRunCommand.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Console/Command/DbDataUpgradeCommand.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Console/Command/DbSchemaUpgradeCommand.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Console/Command/DbStatusCommand.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Console/Command/DependenciesShowFrameworkCommand.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Console/Command/DependenciesShowModulesCircularCommand.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Console/Command/DependenciesShowModulesCommand.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Console/Command/DeployStaticContentCommand.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Console/Command/DiCompileCommand.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Console/Command/GenerateFixturesCommand.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Console/Command/I18nCollectPhrasesCommand.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Console/Command/I18nPackCommand.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Console/Command/InfoAdminUriCommand.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Console/Command/InfoBackupsListCommand.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Console/Command/InfoCurrencyListCommand.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Console/Command/InfoLanguageListCommand.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Console/Command/InfoTimezoneListCommand.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Console/Command/InstallCommand.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Console/Command/InstallStoreConfigurationCommand.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Console/Command/MaintenanceAllowIpsCommand.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Console/Command/MaintenanceDisableCommand.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Console/Command/MaintenanceEnableCommand.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Console/Command/MaintenanceStatusCommand.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Console/Command/ModuleDisableCommand.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Console/Command/ModuleEnableCommand.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Console/Command/ModuleStatusCommand.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Console/Command/ModuleUninstallCommand.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Console/Command/RollbackCommand.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Console/Command/UninstallCommand.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Console/Command/UpgradeCommand.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Console/CommandList.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Console/CompilerPreparation.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Controller/AddDatabase.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Controller/BackupActionItems.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Controller/CompleteBackup.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Controller/CreateAdminAccount.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Controller/CreateBackup.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Controller/CustomizeYourStore.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Controller/DataOption.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Controller/DatabaseCheck.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Controller/DependencyCheck.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Controller/Environment.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Controller/ExtensionGrid.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Controller/Home.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Controller/Index.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Controller/Install.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Controller/InstallExtensionGrid.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Controller/LandingInstaller.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Controller/LandingUpdater.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Controller/License.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Controller/Maintenance.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Controller/Marketplace.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Controller/MarketplaceCredentials.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Controller/ModuleGrid.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Controller/Modules.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Controller/Navigation.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Controller/OtherComponentsGrid.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Controller/ReadinessCheckInstaller.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Controller/ReadinessCheckUpdater.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Controller/ResponseTypeInterface.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Controller/SelectVersion.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Controller/Session.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Controller/StartUpdater.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Controller/Success.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Controller/SystemConfig.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Controller/UpdateExtensionGrid.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Controller/UpdaterSuccess.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Controller/UrlCheck.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Controller/ValidateAdminCredentials.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Controller/WebConfiguration.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Exception.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Fixtures/AdminUsersFixture.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Fixtures/AttributeSet/AttributeSetFixture.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Fixtures/AttributeSet/Pattern.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Fixtures/AttributeSet/SwatchesGenerator.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Fixtures/AttributeSetsFixture.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Fixtures/BundleProductsFixture.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Fixtures/CatalogPriceRulesFixture.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Fixtures/CategoriesFixture.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Fixtures/CategoryResolver.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Fixtures/ConfigsApplyFixture.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Fixtures/ConfigurableProductsFixture.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Fixtures/CustomerGroupsFixture.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Fixtures/CustomersFixture.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Fixtures/EavVariationsFixture.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Fixtures/Fixture.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Fixtures/FixtureConfig.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Fixtures/FixtureModel.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Fixtures/ImagesFixture.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Fixtures/ImagesGenerator/ImagesGenerator.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Fixtures/IndexersStatesApplyFixture.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Fixtures/OrdersFixture.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Fixtures/PriceProvider.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Fixtures/ProductsAmountProvider.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Fixtures/Quote/QuoteConfiguration.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Fixtures/Quote/QuoteGenerator.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Fixtures/Quote/QuoteGeneratorFactory.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Fixtures/SimpleProductsFixture.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Fixtures/StoresFixture.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Fixtures/TaxRatesFixture.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Fixtures/TaxRulesFixture.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Fixtures/WebsiteCategoryProvider.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Fixtures/_files/dictionary.csv
 mode change 100644 => 100755 setup/src/Magento/Setup/Fixtures/_files/orders_fixture_data.json
 mode change 100644 => 100755 setup/src/Magento/Setup/Fixtures/_files/tax_rates.csv
 mode change 100644 => 100755 setup/src/Magento/Setup/Fixtures/_files/tax_rates_small.csv
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/Address/AddressDataGenerator.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/AdminAccount.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/AdminAccountFactory.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/BasePackageInfo.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/BatchInsert.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/Bootstrap.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/Complex/Generator.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/Complex/Pattern.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/ConfigGenerator.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/ConfigModel.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/ConfigOptionsList.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/ConfigOptionsList/Cache.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/ConfigOptionsList/PageCache.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/ConfigOptionsList/Session.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/ConfigOptionsListCollector.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/Cron/AbstractJob.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/Cron/Helper/ModuleUninstall.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/Cron/Helper/ThemeUninstall.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/Cron/JobComponentUninstall.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/Cron/JobDbRollback.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/Cron/JobFactory.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/Cron/JobModule.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/Cron/JobSetCache.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/Cron/JobSetMaintenanceMode.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/Cron/JobStaticRegenerate.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/Cron/JobUpgrade.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/Cron/MultipleStreamOutput.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/Cron/Queue.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/Cron/Queue/Reader.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/Cron/Queue/Writer.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/Cron/ReadinessCheck.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/Cron/SetupLoggerFactory.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/Cron/SetupStreamHandler.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/Cron/Status.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/CronScriptReadinessCheck.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/CryptKeyGenerator.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/CryptKeyGeneratorInterface.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/Customer/CustomerDataGenerator.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/Customer/CustomerDataGeneratorFactory.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/DataGenerator.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/DateTime/DateTimeProvider.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/DateTime/TimeZoneProvider.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/DefaultDescriptionGenerator.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/DependencyReadinessCheck.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/Description/DescriptionGenerator.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/Description/DescriptionParagraphGenerator.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/Description/DescriptionSentenceGenerator.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/Description/Mixin/BoldMixin.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/Description/Mixin/BrakeMixin.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/Description/Mixin/DescriptionMixinInterface.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/Description/Mixin/HeaderMixin.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/Description/Mixin/Helper/RandomWordSelector.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/Description/Mixin/Helper/WordWrapper.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/Description/Mixin/ItalicMixin.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/Description/Mixin/MixinFactory.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/Description/Mixin/ParagraphMixin.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/Description/Mixin/SpanMixin.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/Description/MixinManager.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/DescriptionGeneratorInterface.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/Dictionary.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/FixtureGenerator/AutoIncrement.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/FixtureGenerator/BundleProductGenerator.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/FixtureGenerator/BundleProductTemplateGenerator.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/FixtureGenerator/ConfigurableProductGenerator.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/FixtureGenerator/ConfigurableProductTemplateGenerator.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/FixtureGenerator/CustomerGenerator.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/FixtureGenerator/CustomerTemplateGenerator.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/FixtureGenerator/EntityGenerator.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/FixtureGenerator/ProductGenerator.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/FixtureGenerator/ProductTemplateGeneratorFactory.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/FixtureGenerator/SimpleProductTemplateGenerator.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/FixtureGenerator/SqlCollector.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/FixtureGenerator/TemplateEntityGeneratorInterface.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/Generator.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/Grid/Extension.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/Grid/Module.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/Grid/TypeMapper.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/Installer.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/Installer/Progress.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/Installer/ProgressFactory.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/InstallerFactory.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/License.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/ModuleContext.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/ModuleRegistryUninstaller.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/ModuleStatus.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/ModuleStatusFactory.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/ModuleUninstaller.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/Navigation.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/ObjectManagerProvider.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/PackagesAuth.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/PackagesData.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/PayloadValidator.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/PhpInformation.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/PhpReadinessCheck.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/RequestDataConverter.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/SearchTermDescriptionGenerator.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/SearchTermDescriptionGeneratorFactory.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/SearchTermManager.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/StoreConfigurationDataMapper.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/ThemeDependencyCheckerFactory.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/UninstallCollector.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/UninstallDependencyCheck.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/Updater.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/UpdaterTaskCreator.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Model/WebLogger.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/ConnectionFactory.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/DataSetup.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/DataSetupFactory.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Dependency/Circular.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Dependency/Parser/Code.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Dependency/Parser/Composer/Json.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Dependency/Parser/Config/Xml.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Dependency/ParserInterface.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Dependency/Report/Builder/AbstractBuilder.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Dependency/Report/BuilderInterface.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Dependency/Report/Circular/Builder.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Dependency/Report/Circular/Data/Chain.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Dependency/Report/Circular/Data/Config.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Dependency/Report/Circular/Data/Module.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Dependency/Report/Circular/Writer.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Dependency/Report/Data/Config/AbstractConfig.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Dependency/Report/Data/ConfigInterface.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Dependency/Report/Dependency/Builder.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Dependency/Report/Dependency/Data/Config.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Dependency/Report/Dependency/Data/Dependency.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Dependency/Report/Dependency/Data/Module.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Dependency/Report/Dependency/Writer.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Dependency/Report/Framework/Builder.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Dependency/Report/Framework/Data/Config.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Dependency/Report/Framework/Data/Dependency.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Dependency/Report/Framework/Data/Module.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Dependency/Report/Framework/Writer.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Dependency/Report/Writer/Csv/AbstractWriter.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Dependency/Report/WriterInterface.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Dependency/ServiceLocator.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/App/Task/Manager.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/App/Task/Operation/ApplicationCodeGenerator.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/App/Task/Operation/Area.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/App/Task/Operation/Interception.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/App/Task/Operation/InterceptionCache.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/App/Task/Operation/ProxyGenerator.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/App/Task/Operation/RepositoryGenerator.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/App/Task/Operation/ServiceDataAttributesGenerator.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/App/Task/OperationException.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/App/Task/OperationFactory.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/App/Task/OperationInterface.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/Code/Generator.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/Code/Generator/InterceptionConfigurationBuilder.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/Code/Generator/Interceptor.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/Code/Generator/PluginList.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/Code/GeneratorFactory.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/Code/Reader/ClassReaderDecorator.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/Code/Reader/ClassesScanner.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/Code/Reader/ClassesScannerInterface.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/Code/Reader/Decorator/Area.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/Code/Reader/Decorator/Directory.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/Code/Reader/Decorator/Interceptions.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/Code/Reader/FileClassScanner.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/Code/Reader/FileScanner.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/Code/Reader/InvalidFileException.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/Code/Reader/Type.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/Code/Scanner/ArrayScanner.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/Code/Scanner/CompositeScanner.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/Code/Scanner/ConfigurationScanner.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/Code/Scanner/DirectoryScanner.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/Code/Scanner/InheritanceInterceptorScanner.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/Code/Scanner/InterceptedInstancesScanner.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/Code/Scanner/PhpScanner.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/Code/Scanner/PluginScanner.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/Code/Scanner/RepositoryScanner.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/Code/Scanner/ScannerInterface.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/Code/Scanner/ServiceDataAttributesScanner.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/Code/Scanner/XmlInterceptorScanner.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/Code/Scanner/XmlScanner.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/Compiler/ArgumentsResolver.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/Compiler/ArgumentsResolverFactory.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/Compiler/Config/Chain/ArgumentsSerialization.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/Compiler/Config/Chain/BackslashTrim.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/Compiler/Config/Chain/InterceptorSubstitution.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/Compiler/Config/Chain/PreferencesResolving.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/Compiler/Config/ModificationChain.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/Compiler/Config/ModificationInterface.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/Compiler/Config/Reader.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/Compiler/Config/Writer/Filesystem.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/Compiler/Config/WriterInterface.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/Compiler/ConstructorArgument.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/Compiler/Log/Log.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/Compiler/Log/Writer/Console.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Di/Definition/Collection.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/I18n/Context.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/I18n/Dictionary.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/I18n/Dictionary/Generator.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/I18n/Dictionary/Loader/File/AbstractFile.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/I18n/Dictionary/Loader/File/Csv.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/I18n/Dictionary/Loader/FileInterface.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/I18n/Dictionary/Options/Resolver.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/I18n/Dictionary/Options/ResolverFactory.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/I18n/Dictionary/Options/ResolverInterface.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/I18n/Dictionary/Phrase.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/I18n/Dictionary/Writer/Csv.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/I18n/Dictionary/Writer/Csv/Stdo.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/I18n/Dictionary/WriterInterface.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/I18n/Factory.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/I18n/FilesCollector.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/I18n/Locale.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/I18n/Pack/Generator.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/I18n/Pack/Writer/File/AbstractFile.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/I18n/Pack/Writer/File/Csv.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/I18n/Pack/WriterInterface.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/I18n/Parser/AbstractParser.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/I18n/Parser/Adapter/AbstractAdapter.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/I18n/Parser/Adapter/Html.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/I18n/Parser/Adapter/Js.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/I18n/Parser/Adapter/Php.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/I18n/Parser/Adapter/Php/Tokenizer.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/I18n/Parser/Adapter/Php/Tokenizer/PhraseCollector.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/I18n/Parser/Adapter/Php/Tokenizer/Token.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/I18n/Parser/Adapter/Php/Tokenizer/Translate/MethodCollector.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/I18n/Parser/Adapter/Xml.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/I18n/Parser/AdapterInterface.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/I18n/Parser/Contextual.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/I18n/Parser/Parser.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/I18n/ParserInterface.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/I18n/ServiceLocator.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/ResourceFactory.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Setup.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Setup/ResourceConfig.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/Setup/SetupCache.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Module/SetupFactory.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Mvc/Bootstrap/InitParamListener.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Mvc/View/Http/InjectTemplateListener.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Console/Command/AdminUserCreateCommandTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Console/Command/BackupCommandTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Console/Command/ConfigSetCommandTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Console/Command/CronRunCommandTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Console/Command/DbDataUpgradeCommandTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Console/Command/DbSchemaUpgradeCommandTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Console/Command/DbStatusCommandTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Console/Command/DeployStaticContentCommandTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Console/Command/DiCompileCommandTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Console/Command/FunctionExistMock.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Console/Command/GenerateFixturesCommandTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Console/Command/InfoAdminUriCommandTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Console/Command/InfoBackupsListCommandTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Console/Command/InfoCurrencyListCommandTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Console/Command/InfoLanguageListCommandTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Console/Command/InfoTimezoneListCommandTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Console/Command/InstallCommandTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Console/Command/InstallStoreConfigurationCommandTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Console/Command/MaintenanceAllowIpsCommandTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Console/Command/MaintenanceDisableCommandTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Console/Command/MaintenanceEnableCommandTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Console/Command/MaintenanceStatusCommandTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Console/Command/ModuleEnableDisableCommandTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Console/Command/ModuleStatusCommandTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Console/Command/ModuleUninstallCommandTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Console/Command/RollbackCommandTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Console/Command/UninstallCommandTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Console/Command/UpgradeCommandTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Console/CommandListTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Console/CompilerPreparationTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Controller/AddDatabaseTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Controller/BackupActionItemsTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Controller/CompleteBackupTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Controller/CreateAdminAccountTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Controller/CreateBackupTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Controller/CustomizeYourStoreTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Controller/DataOptionTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Controller/EnvironmentTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Controller/ExtensionGridTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Controller/IndexTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Controller/InstallExtensionGridTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Controller/InstallTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Controller/LandingInstallerTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Controller/LandingUpdaterTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Controller/LicenseTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Controller/MaintenanceTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Controller/MarketplaceTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Controller/ModuleGridTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Controller/ModulesTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Controller/NavigationTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Controller/OtherComponentsGridTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Controller/ReadinessCheckInstallerTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Controller/ReadinessCheckUpdaterTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Controller/SelectVersionTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Controller/SessionTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Controller/StartUpdaterTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Controller/SuccessTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Controller/SystemConfigTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Controller/UpdateExtensionGridTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Controller/UpdaterSuccessTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Controller/UrlCheckTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Controller/WebConfigurationTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Fixtures/AttributeSet/AttributeSetFixtureTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Fixtures/AttributeSet/PatternTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Fixtures/AttributeSet/SwatchesGeneratorTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Fixtures/AttributeSetsFixtureTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Fixtures/CatalogPriceRulesFixtureTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Fixtures/CategoriesFixtureTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Fixtures/ConfigsApplyFixtureTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Fixtures/ConfigurableProductsFixtureTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Fixtures/CustomerGroupsFixtureTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Fixtures/CustomersFixtureTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Fixtures/EavVariationsFixtureTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Fixtures/FixtureConfigTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Fixtures/FixtureModelTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Fixtures/IndexersStatesApplyFixtureTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Fixtures/OrdersFixtureTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Fixtures/Quote/QuoteConfigurationTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Fixtures/Quote/QuoteGeneratorFactoryTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Fixtures/Quote/QuoteGeneratorTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Fixtures/StoresFixtureTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Fixtures/TaxRatesFixtureTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Fixtures/TaxRulesFixtureTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/Address/AddressDataGeneratorTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/AdminAccountFactoryTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/AdminAccountTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/BasePackageInfoTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/Complex/ComplexGeneratorTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/Complex/PatternTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/ConfigGeneratorTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/ConfigModelTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/ConfigOptionsList/CacheTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/ConfigOptionsList/PageCacheTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/ConfigOptionsList/SessionTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/ConfigOptionsListTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/Cron/Helper/ModuleUninstallTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/Cron/Helper/ThemeUninstallTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/Cron/JobComponentUninstallTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/Cron/JobDbRollbackTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/Cron/JobFactoryTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/Cron/JobModuleTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/Cron/JobSetCacheTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/Cron/JobSetMaintenanceModeTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/Cron/JobStaticRegenerateTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/Cron/JobUpgradeTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/Cron/Queue/ReaderTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/Cron/Queue/WriterTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/Cron/QueueTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/Cron/ReadinessCheckTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/Cron/StatusTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/CronScriptReadinessCheckTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/CryptKeyGeneratorTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/Customer/CustomerDataGeneratorTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/DataGeneratorTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/DateTime/DateTimeProviderTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/DateTime/TimeZoneProviderTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/DependencyReadinessCheckTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/Description/DescriptionGeneratorTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/Description/DescriptionParagraphGeneratorTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/Description/DescriptionSentenceGeneratorTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/Description/Mixin/BoldMixinTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/Description/Mixin/BrakeMixinTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/Description/Mixin/HeaderMixinTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/Description/Mixin/Helper/RandomWordSelectorTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/Description/Mixin/Helper/WordWrapperTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/Description/Mixin/ItalicMixinTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/Description/Mixin/ParagraphMixinTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/Description/Mixin/SpanMixinTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/Description/MixinManagerTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/DictionaryTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/FixtureGenerator/SqlCollectorTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/GeneratorTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/Grid/ExtensionTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/Grid/ModuleTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/Grid/TypeMapperTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/Installer/ProgressFactoryTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/Installer/ProgressTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/InstallerFactoryTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/InstallerTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/LicenseTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/ModuleContextTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/ModuleRegistryUninstallerTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/ModuleStatusFactoryTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/ModuleStatusTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/ModuleUninstallerTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/NavigationTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/ObjectManagerProviderTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/PackagesAuthTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/PackagesDataTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/PayloadValidatorTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/PhpInformationTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/PhpReadinessCheckTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/SearchTermDescriptionGeneratorTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/SearchTermManagerTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/StoreConfigurationDataMapperTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/SystemPackageTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/ThemeDependencyCheckerFactoryTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/UninstallCollectorTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/UninstallDependencyCheckTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/UpdaterTaskCreatorTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/UpdaterTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/WebLoggerTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Model/_files/dictionary.csv
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/ConfigGeneratorTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/ConnectionFactoryTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/DataSetupFactoryTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Dependency/Parser/CodeTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Dependency/Parser/Composer/JsonTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Dependency/Parser/Config/XmlTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Dependency/Report/Builder/AbstractBuilderTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Dependency/Report/Circular/Data/ChainTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Dependency/Report/Circular/Data/ConfigTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Dependency/Report/Circular/Data/ModuleTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Dependency/Report/Data/Config/AbstractConfigTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Dependency/Report/Dependency/Data/ConfigTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Dependency/Report/Dependency/Data/DependencyTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Dependency/Report/Dependency/Data/ModuleTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Dependency/Report/Framework/BuilderTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Dependency/Report/Framework/Data/ConfigTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Dependency/Report/Framework/Data/DependencyTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Dependency/Report/Framework/Data/ModuleTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Dependency/Report/Writer/Csv/AbstractWriterTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/App/Task/ApplicationCodeGeneratorTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/App/Task/AreaTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/App/Task/InterceptionCacheTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/App/Task/OperationFactoryTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/App/Task/ProxyGeneratorTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/App/Task/RepositoryGeneratorTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/App/Task/ServiceDataAttributesGeneratorTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Generator/InterceptionConfigurationBuilderTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Reader/ClassReaderDecoratorTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Reader/ClassesScannerTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Reader/FileClassScannerTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Reader/FileScannerTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Reader/InstancesNamesList/AreaTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Reader/InstancesNamesList/DirectoryTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Reader/InstancesNamesList/InterceptionsTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Reader/_files/classes.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Scanner/ArrayScannerTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Scanner/CompositeScannerTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Scanner/ConfigurationScannerTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Scanner/DirectoryScannerTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Scanner/PhpScannerTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Scanner/PluginScannerTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Scanner/ServiceDataAttributesScannerTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Scanner/XmlInterceptorScannerTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Scanner/XmlScannerTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/Compiler/ArgumentsResolverTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/Compiler/Config/Chain/ArgumentsSerializationTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/Compiler/Config/Chain/BackslashTrimTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/Compiler/Config/Chain/InterceptorSubstitutionTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/Compiler/Config/Chain/PreferencesResolvingTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/Compiler/Config/ModificationChainTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/Compiler/Config/ReaderTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/Compiler/ConstructorArgumentTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/Definition/CollectionTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/_files/additional.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/_files/app/bootstrap.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/_files/app/code/Magento/SomeModule/Api/Data/SomeInterface.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/_files/app/code/Magento/SomeModule/Element.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/_files/app/code/Magento/SomeModule/ElementFactory.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/_files/app/code/Magento/SomeModule/Helper/Test.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/_files/app/code/Magento/SomeModule/Model/DoubleColon.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/_files/app/code/Magento/SomeModule/Model/Test.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/_files/app/code/Magento/SomeModule/etc/adminhtml/system.xml
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/_files/app/code/Magento/SomeModule/etc/di.xml
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/_files/app/code/Magento/SomeModule/etc/source/PhpExt.php/content
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/_files/app/code/Magento/SomeModule/view/frontend/default.xml
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/_files/app/design/adminhtml/default/backend/layout.xml
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/_files/app/etc/additional.xml
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/_files/app/etc/config.xml
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/_files/app/etc/di/config.xml
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/_files/extension_attributes.xml
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Di/_files/var/generation/.keep
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/I18n/ContextTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/I18n/Dictionary/GeneratorTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/I18n/Dictionary/Loader/File/AbstractFileTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/I18n/Dictionary/Options/ResolverFactoryTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/I18n/Dictionary/Options/ResolverTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/I18n/Dictionary/Options/_files/source/app/code/module1/.gitignore
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/I18n/Dictionary/Options/_files/source/app/code/module2/.gitignore
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/I18n/Dictionary/Options/_files/source/app/design/.gitignore
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/I18n/Dictionary/Options/_files/source/lib/web/mage/.gitignore
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/I18n/Dictionary/Options/_files/source/lib/web/varien/.gitignore
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/I18n/Dictionary/PhraseTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/I18n/Dictionary/Writer/Csv/StdoTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/I18n/Dictionary/Writer/CsvTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/I18n/Dictionary/Writer/_files/.gitignore
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/I18n/DictionaryTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/I18n/FactoryTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/I18n/FilesCollectorTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/I18n/LocaleTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/I18n/Pack/GeneratorTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/I18n/Pack/Writer/File/CsvTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/I18n/Pack/Writer/File/_files/ioMock.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/I18n/Parser/AbstractParserTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/I18n/Parser/Adapter/AbstractAdapterTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/I18n/Parser/Adapter/HtmlTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/I18n/Parser/Adapter/JsTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/I18n/Parser/Adapter/Php/Tokenizer/PhraseCollectorTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/I18n/Parser/Adapter/Php/Tokenizer/TokenTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/I18n/Parser/Adapter/Php/TokenizerTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/I18n/Parser/Adapter/Php/_files/objectsCode.php.txt
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/I18n/Parser/Adapter/PhpTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/I18n/Parser/Adapter/XmlTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/I18n/Parser/Adapter/_files/default.xml
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/I18n/Parser/Adapter/_files/default_di.xml
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/I18n/Parser/Adapter/_files/email.html
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/I18n/Parser/Adapter/_files/file.js
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/I18n/Parser/ParserTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/I18n/_files/files_collector/default.xml
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/I18n/_files/files_collector/file.js
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/ResourceFactoryTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Setup/ResourceConfigTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/Setup/SetupCacheTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/SetupFactoryTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Module/SetupTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Mvc/Bootstrap/InitParamListenerTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Validator/DbValidatorTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Test/Unit/Validator/IpValidatorTest.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Validator/AdminCredentialsValidator.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Validator/DbValidator.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Validator/IpValidator.php
 mode change 100644 => 100755 setup/src/Magento/Setup/Validator/RedisConnectionValidator.php
 mode change 100644 => 100755 setup/view/.htaccess
 mode change 100644 => 100755 setup/view/error/401.phtml
 mode change 100644 => 100755 setup/view/error/404.phtml
 mode change 100644 => 100755 setup/view/error/index.phtml
 mode change 100644 => 100755 setup/view/layout/layout.phtml
 mode change 100644 => 100755 setup/view/magento/setup/add-database.phtml
 mode change 100644 => 100755 setup/view/magento/setup/complete-backup/progress.phtml
 mode change 100644 => 100755 setup/view/magento/setup/create-admin-account.phtml
 mode change 100644 => 100755 setup/view/magento/setup/create-backup.phtml
 mode change 100644 => 100755 setup/view/magento/setup/customize-your-store.phtml
 mode change 100644 => 100755 setup/view/magento/setup/data-option.phtml
 mode change 100644 => 100755 setup/view/magento/setup/extension-grid.phtml
 mode change 100644 => 100755 setup/view/magento/setup/home.phtml
 mode change 100644 => 100755 setup/view/magento/setup/index.phtml
 mode change 100644 => 100755 setup/view/magento/setup/install-extension-grid.phtml
 mode change 100644 => 100755 setup/view/magento/setup/install.phtml
 mode change 100644 => 100755 setup/view/magento/setup/landing.phtml
 mode change 100644 => 100755 setup/view/magento/setup/license.phtml
 mode change 100644 => 100755 setup/view/magento/setup/marketplace-credentials.phtml
 mode change 100644 => 100755 setup/view/magento/setup/module-grid.phtml
 mode change 100644 => 100755 setup/view/magento/setup/navigation/header-bar.phtml
 mode change 100644 => 100755 setup/view/magento/setup/navigation/menu.phtml
 mode change 100644 => 100755 setup/view/magento/setup/navigation/side-menu.phtml
 mode change 100644 => 100755 setup/view/magento/setup/popupauth.phtml
 mode change 100644 => 100755 setup/view/magento/setup/readiness-check.phtml
 mode change 100644 => 100755 setup/view/magento/setup/select-version.phtml
 mode change 100644 => 100755 setup/view/magento/setup/start-updater.phtml
 mode change 100644 => 100755 setup/view/magento/setup/success.phtml
 mode change 100644 => 100755 setup/view/magento/setup/system-config.phtml
 mode change 100644 => 100755 setup/view/magento/setup/update-extension-grid.phtml
 mode change 100644 => 100755 setup/view/magento/setup/updater-success.phtml
 mode change 100644 => 100755 setup/view/magento/setup/web-configuration.phtml
 mode change 100644 => 100755 setup/view/styles/lib/variables/_buttons.less
 mode change 100644 => 100755 setup/view/styles/lib/variables/_colors.less
 mode change 100644 => 100755 setup/view/styles/lib/variables/_typography.less
 mode change 100644 => 100755 vendor/.htaccess

diff --git a/.github/.htaccess b/.github/.htaccess
old mode 100644
new mode 100755
diff --git a/.github/CODE_OF_CONDUCT.md b/.github/CODE_OF_CONDUCT.md
old mode 100644
new mode 100755
diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md
old mode 100644
new mode 100755
diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md
old mode 100644
new mode 100755
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
old mode 100644
new mode 100755
diff --git a/.gitignore b/.gitignore
old mode 100644
new mode 100755
diff --git a/.htaccess b/.htaccess
old mode 100644
new mode 100755
diff --git a/.htaccess.sample b/.htaccess.sample
old mode 100644
new mode 100755
diff --git a/.php_cs.dist b/.php_cs.dist
old mode 100644
new mode 100755
diff --git a/.travis.yml b/.travis.yml
old mode 100644
new mode 100755
diff --git a/.user.ini b/.user.ini
old mode 100644
new mode 100755
diff --git a/CHANGELOG.md b/CHANGELOG.md
old mode 100644
new mode 100755
diff --git a/COPYING.txt b/COPYING.txt
old mode 100644
new mode 100755
diff --git a/Gruntfile.js.sample b/Gruntfile.js.sample
old mode 100644
new mode 100755
diff --git a/LICENSE.txt b/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/LICENSE_AFL.txt b/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/MessageSystem/chatlist.php b/MessageSystem/chatlist.php
old mode 100644
new mode 100755
diff --git a/MessageSystem/chatroom.php b/MessageSystem/chatroom.php
index 59412fe8577..08f2f2103ce 100755
--- a/MessageSystem/chatroom.php
+++ b/MessageSystem/chatroom.php
@@ -3,94 +3,85 @@
 <head>
   <title>Title</title>
   <script src='http://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js'></script>
-  <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
-  <script>
+  <script src="https://www.gstatic.com/firebasejs/4.6.2/firebase.js"></script>
+<script src="firebase-conf.js"></script>
 
-      var chatbox1 = angular.module('chatbox',[]);
-      chatbox1.directive('scrollBottom', function () {
-            return {
-                scope: {
-                    scrollBottom: "="
-                },
-                link: function (scope, element) {
-                    scope.$watchCollection('scrollBottom', function (newValue) {
-                        if (newValue) {
-                            $(element).scrollTop($(element)[0].scrollHeight);
-                        }
-                    });
-                }
-            }
-        })  
-      chatbox1.controller('controller', ['$scope', function ($scope) {
-          $scope.chat = [];
-          $scope.submit1 = function () {
-              if($scope.pesan1){
-                var msg = new Object();
-                msg.message = $scope.pesan1;
-                msg.type = 1;
-                $scope.chat.push(msg);
-                $scope.pesan1="";
-              }
-          };
-          $scope.submit2 = function () {
-              if($scope.pesan2){
-                var msg = new Object();
-                msg.message = $scope.pesan2;
-                msg.type = 2;
-                $scope.chat.push(msg);
-                $scope.pesan2="";
-              }
-          };
-        
-    
-      }]);
-      
-                                
-
-
-  </script>
   <link rel="stylesheet" href="chat.css">
 </head>
-<body ng-app="chatbox" ng-controller="controller">
+<body>
 <div class="box" >
     <div class = "chat-title">
         <span class="name">Person 1 Name</span>
     </div>
     <div class="chat-form" >
-        <div  class="chat-box" scroll-bottom="chat">
-                <div ng-repeat="pesan in chat" >
-                    <p ng-if="pesan.type==1" class="sendermessage">{{pesan.message}}</p>
-                    <p ng-if="pesan.type==2" class="receivemessage">{{pesan.message}}</p>
-                </div>
+        <div id="chatbox" class="chat-box">
         </div>
         <div class="chat-input">
-            <form ng-submit="submit1()">
-                <input type="text" name="chattext" ng-model="pesan1" class="message-content">
-                <input type="submit" name="send" value="Kirim" class="send-button">
-            </form>
+            <div>
+                <input id="username" type="hidden" value="person1">
+                <input id="message" type="text" name="chattext" class="message-content">
+                <input id="send" type="submit" class="send-button" onclick="send()">
+            </div>
         </div>
     </div>
 </div>
-
-<div class="box">
-    <div class = "chat-title">
-        <span class="name">Person 2 Name</span>
+<!-- Bagian ini cuma buat test front end, yang dipake yg atas aja -->
+<div class="box" >
+<div class = "chat-title">
+    <span class="name">Person 1 Name</span>
+</div>
+<div class="chat-form" >
+    <div id="chatbox2" class="chat-box">
     </div>
-    <div class="chat-form">
-        <div class="chat-box" scroll-bottom="chat">
-                <div ng-repeat="pesan in chat">
-                    <p ng-if="pesan.type==2" class="sendermessage">{{pesan.message}}</p>
-                    <p ng-if="pesan.type==1" class="receivemessage">{{pesan.message}}</p>
-                </div>
-        </div>
-        <div class="chat-input">
-            <form ng-submit="submit2()">
-                <input type="text" name="chattext" ng-model="pesan2" class="message-content">
-                <input type="submit" name="send" value="Send" class="send-button">
-            </form>
+    <div class="chat-input">
+        <div>
+            <input id="username2" type="hidden" value="person2">
+            <input id="message2" type="text" name="chattext" class="message-content">
+            <input id="send2" type="submit" class="send-button" onclick="send2()">
         </div>
     </div>
 </div>
+</div>
+<script>
+  function send() {
+      console.log("masuk");
+        var username = document.getElementById("username").value;
+        var message = document.getElementById("message").value;
+        firebase.database().ref().push().set({
+            username: username,
+            message: message
+        });
+        document.getElementById("message").value = "";
+  }
+  function send2() {
+      console.log("masuk");
+        var username = document.getElementById("username2").value;
+        var message = document.getElementById("message2").value;
+        firebase.database().ref().push().set({
+            username: username,
+            message: message
+        });
+        document.getElementById("message2").value = "";
+  }
+
+  var startListening = function() {
+        firebase.database().ref().on('child_added', function(snapshot) {
+            var msg = snapshot.val();
+            
+            var msgTextElement = document.createElement("p");
+            msgTextElement.textContent = msg.message;
+    
+            if (msg.username=="person1"){
+                msgTextElement.classList.add('sendermessage');
+            } else {
+                msgTextElement.classList.add('receivemessage');
+            }
+            document.getElementById("chatbox").appendChild(msgTextElement);
+        });
+    }
+    startListening();
+
+</script>
 </body>
 </html>
 
diff --git a/MessageSystem/firebase-conf.js b/MessageSystem/firebase-conf.js
new file mode 100755
index 00000000000..c176cda97cd
--- /dev/null
+++ b/MessageSystem/firebase-conf.js
@@ -0,0 +1,8 @@
+const config = {
+    projectId: "magentochat",
+    apiKey: "AIzaSyAuWbHi2A1CljLjLdXxxI0sFY0jqPWxZHs",
+    authDomain: "magentochat.firebaseapp.com",
+    databaseURL: "https://magentochat.firebaseio.com/",
+    storageBucket: ""
+};
+firebase.initializeApp(config);
\ No newline at end of file
diff --git a/README.md b/README.md
old mode 100644
new mode 100755
diff --git a/app/.htaccess b/app/.htaccess
old mode 100644
new mode 100755
diff --git a/app/autoload.php b/app/autoload.php
old mode 100644
new mode 100755
diff --git a/app/bootstrap.php b/app/bootstrap.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/Block/Grid/Renderer/Actions.php b/app/code/Magento/AdminNotification/Block/Grid/Renderer/Actions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/Block/Grid/Renderer/Notice.php b/app/code/Magento/AdminNotification/Block/Grid/Renderer/Notice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/Block/Grid/Renderer/Severity.php b/app/code/Magento/AdminNotification/Block/Grid/Renderer/Severity.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/Block/Inbox.php b/app/code/Magento/AdminNotification/Block/Inbox.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/Block/System/Messages.php b/app/code/Magento/AdminNotification/Block/System/Messages.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/Block/System/Messages/UnreadMessagePopup.php b/app/code/Magento/AdminNotification/Block/System/Messages/UnreadMessagePopup.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/Block/ToolbarEntry.php b/app/code/Magento/AdminNotification/Block/ToolbarEntry.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/Block/Window.php b/app/code/Magento/AdminNotification/Block/Window.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/Controller/Adminhtml/Notification.php b/app/code/Magento/AdminNotification/Controller/Adminhtml/Notification.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/Controller/Adminhtml/Notification/AjaxMarkAsRead.php b/app/code/Magento/AdminNotification/Controller/Adminhtml/Notification/AjaxMarkAsRead.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/Controller/Adminhtml/Notification/Index.php b/app/code/Magento/AdminNotification/Controller/Adminhtml/Notification/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/Controller/Adminhtml/Notification/MarkAsRead.php b/app/code/Magento/AdminNotification/Controller/Adminhtml/Notification/MarkAsRead.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/Controller/Adminhtml/Notification/MassMarkAsRead.php b/app/code/Magento/AdminNotification/Controller/Adminhtml/Notification/MassMarkAsRead.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/Controller/Adminhtml/Notification/MassRemove.php b/app/code/Magento/AdminNotification/Controller/Adminhtml/Notification/MassRemove.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/Controller/Adminhtml/Notification/Remove.php b/app/code/Magento/AdminNotification/Controller/Adminhtml/Notification/Remove.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/Controller/Adminhtml/System/Message/ListAction.php b/app/code/Magento/AdminNotification/Controller/Adminhtml/System/Message/ListAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/LICENSE.txt b/app/code/Magento/AdminNotification/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/LICENSE_AFL.txt b/app/code/Magento/AdminNotification/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/Model/Config/Source/Frequency.php b/app/code/Magento/AdminNotification/Model/Config/Source/Frequency.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/Model/Feed.php b/app/code/Magento/AdminNotification/Model/Feed.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/Model/Inbox.php b/app/code/Magento/AdminNotification/Model/Inbox.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/Model/InboxInterface.php b/app/code/Magento/AdminNotification/Model/InboxInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/Model/NotificationService.php b/app/code/Magento/AdminNotification/Model/NotificationService.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/Model/ResourceModel/Grid/Collection.php b/app/code/Magento/AdminNotification/Model/ResourceModel/Grid/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/Model/ResourceModel/Inbox.php b/app/code/Magento/AdminNotification/Model/ResourceModel/Inbox.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/Model/ResourceModel/Inbox/Collection.php b/app/code/Magento/AdminNotification/Model/ResourceModel/Inbox/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/Model/ResourceModel/Inbox/Collection/Critical.php b/app/code/Magento/AdminNotification/Model/ResourceModel/Inbox/Collection/Critical.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/Model/ResourceModel/Inbox/Collection/Unread.php b/app/code/Magento/AdminNotification/Model/ResourceModel/Inbox/Collection/Unread.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/Model/ResourceModel/System/Message.php b/app/code/Magento/AdminNotification/Model/ResourceModel/System/Message.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/Model/ResourceModel/System/Message/Collection.php b/app/code/Magento/AdminNotification/Model/ResourceModel/System/Message/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/Model/ResourceModel/System/Message/Collection/Synchronized.php b/app/code/Magento/AdminNotification/Model/ResourceModel/System/Message/Collection/Synchronized.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/Model/System/Message.php b/app/code/Magento/AdminNotification/Model/System/Message.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/Model/System/Message/Baseurl.php b/app/code/Magento/AdminNotification/Model/System/Message/Baseurl.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/Model/System/Message/CacheOutdated.php b/app/code/Magento/AdminNotification/Model/System/Message/CacheOutdated.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/Model/System/Message/Media/AbstractSynchronization.php b/app/code/Magento/AdminNotification/Model/System/Message/Media/AbstractSynchronization.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/Model/System/Message/Media/Synchronization/Error.php b/app/code/Magento/AdminNotification/Model/System/Message/Media/Synchronization/Error.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/Model/System/Message/Media/Synchronization/Success.php b/app/code/Magento/AdminNotification/Model/System/Message/Media/Synchronization/Success.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/Model/System/Message/Security.php b/app/code/Magento/AdminNotification/Model/System/Message/Security.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/Observer/PredispatchAdminActionControllerObserver.php b/app/code/Magento/AdminNotification/Observer/PredispatchAdminActionControllerObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/README.md b/app/code/Magento/AdminNotification/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/Setup/InstallSchema.php b/app/code/Magento/AdminNotification/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/Test/Unit/Block/ToolbarEntryTest.php b/app/code/Magento/AdminNotification/Test/Unit/Block/ToolbarEntryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/Test/Unit/Model/FeedTest.php b/app/code/Magento/AdminNotification/Test/Unit/Model/FeedTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/Test/Unit/Model/NotificationServiceTest.php b/app/code/Magento/AdminNotification/Test/Unit/Model/NotificationServiceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/Test/Unit/Model/System/Message/CacheOutdatedTest.php b/app/code/Magento/AdminNotification/Test/Unit/Model/System/Message/CacheOutdatedTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/Test/Unit/Model/System/Message/Media/Synchronization/ErrorTest.php b/app/code/Magento/AdminNotification/Test/Unit/Model/System/Message/Media/Synchronization/ErrorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/Test/Unit/Model/System/Message/SecurityTest.php b/app/code/Magento/AdminNotification/Test/Unit/Model/System/Message/SecurityTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/Ui/Component/DataProvider/DataProvider.php b/app/code/Magento/AdminNotification/Ui/Component/DataProvider/DataProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/composer.json b/app/code/Magento/AdminNotification/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/etc/acl.xml b/app/code/Magento/AdminNotification/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/etc/adminhtml/di.xml b/app/code/Magento/AdminNotification/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/etc/adminhtml/events.xml b/app/code/Magento/AdminNotification/etc/adminhtml/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/etc/adminhtml/menu.xml b/app/code/Magento/AdminNotification/etc/adminhtml/menu.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/etc/adminhtml/routes.xml b/app/code/Magento/AdminNotification/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/etc/adminhtml/system.xml b/app/code/Magento/AdminNotification/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/etc/config.xml b/app/code/Magento/AdminNotification/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/etc/di.xml b/app/code/Magento/AdminNotification/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/etc/module.xml b/app/code/Magento/AdminNotification/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/i18n/en_US.csv b/app/code/Magento/AdminNotification/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/registration.php b/app/code/Magento/AdminNotification/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/view/adminhtml/layout/adminhtml_notification_block.xml b/app/code/Magento/AdminNotification/view/adminhtml/layout/adminhtml_notification_block.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/view/adminhtml/layout/adminhtml_notification_index.xml b/app/code/Magento/AdminNotification/view/adminhtml/layout/adminhtml_notification_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/view/adminhtml/layout/default.xml b/app/code/Magento/AdminNotification/view/adminhtml/layout/default.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/view/adminhtml/requirejs-config.js b/app/code/Magento/AdminNotification/view/adminhtml/requirejs-config.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/view/adminhtml/templates/notification/window.phtml b/app/code/Magento/AdminNotification/view/adminhtml/templates/notification/window.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/view/adminhtml/templates/system/messages.phtml b/app/code/Magento/AdminNotification/view/adminhtml/templates/system/messages.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/view/adminhtml/templates/system/messages/popup.phtml b/app/code/Magento/AdminNotification/view/adminhtml/templates/system/messages/popup.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/view/adminhtml/templates/toolbar_entry.phtml b/app/code/Magento/AdminNotification/view/adminhtml/templates/toolbar_entry.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/view/adminhtml/ui_component/notification_area.xml b/app/code/Magento/AdminNotification/view/adminhtml/ui_component/notification_area.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/view/adminhtml/web/js/grid/columns/message.js b/app/code/Magento/AdminNotification/view/adminhtml/web/js/grid/columns/message.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/view/adminhtml/web/js/grid/listing.js b/app/code/Magento/AdminNotification/view/adminhtml/web/js/grid/listing.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/view/adminhtml/web/system/notification.js b/app/code/Magento/AdminNotification/view/adminhtml/web/system/notification.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/view/adminhtml/web/template/grid/cells/message.html b/app/code/Magento/AdminNotification/view/adminhtml/web/template/grid/cells/message.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/view/adminhtml/web/template/grid/listing.html b/app/code/Magento/AdminNotification/view/adminhtml/web/template/grid/listing.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdminNotification/view/adminhtml/web/toolbar_entry.js b/app/code/Magento/AdminNotification/view/adminhtml/web/toolbar_entry.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdvancedPricingImportExport/Controller/Adminhtml/Export/GetFilter.php b/app/code/Magento/AdvancedPricingImportExport/Controller/Adminhtml/Export/GetFilter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdvancedPricingImportExport/LICENSE.txt b/app/code/Magento/AdvancedPricingImportExport/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdvancedPricingImportExport/LICENSE_AFL.txt b/app/code/Magento/AdvancedPricingImportExport/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdvancedPricingImportExport/Model/Export/AdvancedPricing.php b/app/code/Magento/AdvancedPricingImportExport/Model/Export/AdvancedPricing.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdvancedPricingImportExport/Model/Import/AdvancedPricing.php b/app/code/Magento/AdvancedPricingImportExport/Model/Import/AdvancedPricing.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdvancedPricingImportExport/Model/Import/AdvancedPricing/Validator.php b/app/code/Magento/AdvancedPricingImportExport/Model/Import/AdvancedPricing/Validator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdvancedPricingImportExport/Model/Import/AdvancedPricing/Validator/TierPrice.php b/app/code/Magento/AdvancedPricingImportExport/Model/Import/AdvancedPricing/Validator/TierPrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdvancedPricingImportExport/Model/Import/AdvancedPricing/Validator/TierPriceType.php b/app/code/Magento/AdvancedPricingImportExport/Model/Import/AdvancedPricing/Validator/TierPriceType.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdvancedPricingImportExport/Model/Import/AdvancedPricing/Validator/Website.php b/app/code/Magento/AdvancedPricingImportExport/Model/Import/AdvancedPricing/Validator/Website.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdvancedPricingImportExport/Model/Indexer/Product/Price/Plugin/Import.php b/app/code/Magento/AdvancedPricingImportExport/Model/Indexer/Product/Price/Plugin/Import.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdvancedPricingImportExport/README.md b/app/code/Magento/AdvancedPricingImportExport/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Export/AdvancedPricingTest.php b/app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Export/AdvancedPricingTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Import/AdvancedPricing/Validator/TierPriceTest.php b/app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Import/AdvancedPricing/Validator/TierPriceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Import/AdvancedPricing/Validator/TierPriceTypeTest.php b/app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Import/AdvancedPricing/Validator/TierPriceTypeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Import/AdvancedPricing/Validator/WebsiteTest.php b/app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Import/AdvancedPricing/Validator/WebsiteTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Import/AdvancedPricing/ValidatorTest.php b/app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Import/AdvancedPricing/ValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Import/AdvancedPricingTest.php b/app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Import/AdvancedPricingTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Indexer/Product/Price/Plugin/ImportTest.php b/app/code/Magento/AdvancedPricingImportExport/Test/Unit/Model/Indexer/Product/Price/Plugin/ImportTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdvancedPricingImportExport/composer.json b/app/code/Magento/AdvancedPricingImportExport/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdvancedPricingImportExport/etc/adminhtml/routes.xml b/app/code/Magento/AdvancedPricingImportExport/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdvancedPricingImportExport/etc/di.xml b/app/code/Magento/AdvancedPricingImportExport/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdvancedPricingImportExport/etc/export.xml b/app/code/Magento/AdvancedPricingImportExport/etc/export.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdvancedPricingImportExport/etc/import.xml b/app/code/Magento/AdvancedPricingImportExport/etc/import.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdvancedPricingImportExport/etc/module.xml b/app/code/Magento/AdvancedPricingImportExport/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdvancedPricingImportExport/i18n/en_US.csv b/app/code/Magento/AdvancedPricingImportExport/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/AdvancedPricingImportExport/registration.php b/app/code/Magento/AdvancedPricingImportExport/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Api/Data/LinkInterface.php b/app/code/Magento/Analytics/Api/Data/LinkInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Api/LinkProviderInterface.php b/app/code/Magento/Analytics/Api/LinkProviderInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Block/Adminhtml/System/Config/AdditionalComment.php b/app/code/Magento/Analytics/Block/Adminhtml/System/Config/AdditionalComment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Block/Adminhtml/System/Config/CollectionTimeLabel.php b/app/code/Magento/Analytics/Block/Adminhtml/System/Config/CollectionTimeLabel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Block/Adminhtml/System/Config/SubscriptionStatusLabel.php b/app/code/Magento/Analytics/Block/Adminhtml/System/Config/SubscriptionStatusLabel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Block/Adminhtml/System/Config/Vertical.php b/app/code/Magento/Analytics/Block/Adminhtml/System/Config/Vertical.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Controller/Adminhtml/BIEssentials/SignUp.php b/app/code/Magento/Analytics/Controller/Adminhtml/BIEssentials/SignUp.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Controller/Adminhtml/Reports/Show.php b/app/code/Magento/Analytics/Controller/Adminhtml/Reports/Show.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Controller/Adminhtml/Subscription/Retry.php b/app/code/Magento/Analytics/Controller/Adminhtml/Subscription/Retry.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Cron/CollectData.php b/app/code/Magento/Analytics/Cron/CollectData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Cron/SignUp.php b/app/code/Magento/Analytics/Cron/SignUp.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Cron/Update.php b/app/code/Magento/Analytics/Cron/Update.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/LICENSE.txt b/app/code/Magento/Analytics/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/LICENSE_AFL.txt b/app/code/Magento/Analytics/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Model/AnalyticsToken.php b/app/code/Magento/Analytics/Model/AnalyticsToken.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Model/Config.php b/app/code/Magento/Analytics/Model/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Model/Config/Backend/Baseurl/SubscriptionUpdateHandler.php b/app/code/Magento/Analytics/Model/Config/Backend/Baseurl/SubscriptionUpdateHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Model/Config/Backend/CollectionTime.php b/app/code/Magento/Analytics/Model/Config/Backend/CollectionTime.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Model/Config/Backend/Enabled.php b/app/code/Magento/Analytics/Model/Config/Backend/Enabled.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Model/Config/Backend/Enabled/SubscriptionHandler.php b/app/code/Magento/Analytics/Model/Config/Backend/Enabled/SubscriptionHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Model/Config/Backend/Vertical.php b/app/code/Magento/Analytics/Model/Config/Backend/Vertical.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Model/Config/Mapper.php b/app/code/Magento/Analytics/Model/Config/Mapper.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Model/Config/Reader.php b/app/code/Magento/Analytics/Model/Config/Reader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Model/Config/Source/Vertical.php b/app/code/Magento/Analytics/Model/Config/Source/Vertical.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Model/ConfigInterface.php b/app/code/Magento/Analytics/Model/ConfigInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Model/Connector.php b/app/code/Magento/Analytics/Model/Connector.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Model/Connector/CommandInterface.php b/app/code/Magento/Analytics/Model/Connector/CommandInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Model/Connector/Http/Client/Curl.php b/app/code/Magento/Analytics/Model/Connector/Http/Client/Curl.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Model/Connector/Http/ClientInterface.php b/app/code/Magento/Analytics/Model/Connector/Http/ClientInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Model/Connector/Http/ConverterInterface.php b/app/code/Magento/Analytics/Model/Connector/Http/ConverterInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Model/Connector/Http/JsonConverter.php b/app/code/Magento/Analytics/Model/Connector/Http/JsonConverter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Model/Connector/Http/ResponseFactory.php b/app/code/Magento/Analytics/Model/Connector/Http/ResponseFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Model/Connector/Http/ResponseHandlerInterface.php b/app/code/Magento/Analytics/Model/Connector/Http/ResponseHandlerInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Model/Connector/Http/ResponseResolver.php b/app/code/Magento/Analytics/Model/Connector/Http/ResponseResolver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Model/Connector/NotifyDataChangedCommand.php b/app/code/Magento/Analytics/Model/Connector/NotifyDataChangedCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Model/Connector/OTPRequest.php b/app/code/Magento/Analytics/Model/Connector/OTPRequest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Model/Connector/ResponseHandler/OTP.php b/app/code/Magento/Analytics/Model/Connector/ResponseHandler/OTP.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Model/Connector/ResponseHandler/ReSignUp.php b/app/code/Magento/Analytics/Model/Connector/ResponseHandler/ReSignUp.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Model/Connector/ResponseHandler/SignUp.php b/app/code/Magento/Analytics/Model/Connector/ResponseHandler/SignUp.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Model/Connector/ResponseHandler/Update.php b/app/code/Magento/Analytics/Model/Connector/ResponseHandler/Update.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Model/Connector/SignUpCommand.php b/app/code/Magento/Analytics/Model/Connector/SignUpCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Model/Connector/UpdateCommand.php b/app/code/Magento/Analytics/Model/Connector/UpdateCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Model/Cryptographer.php b/app/code/Magento/Analytics/Model/Cryptographer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Model/EncodedContext.php b/app/code/Magento/Analytics/Model/EncodedContext.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Model/Exception/State/SubscriptionUpdateException.php b/app/code/Magento/Analytics/Model/Exception/State/SubscriptionUpdateException.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Model/ExportDataHandler.php b/app/code/Magento/Analytics/Model/ExportDataHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Model/ExportDataHandlerInterface.php b/app/code/Magento/Analytics/Model/ExportDataHandlerInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Model/ExportDataHandlerNotification.php b/app/code/Magento/Analytics/Model/ExportDataHandlerNotification.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Model/FileInfo.php b/app/code/Magento/Analytics/Model/FileInfo.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Model/FileInfoManager.php b/app/code/Magento/Analytics/Model/FileInfoManager.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Model/FileRecorder.php b/app/code/Magento/Analytics/Model/FileRecorder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Model/IntegrationManager.php b/app/code/Magento/Analytics/Model/IntegrationManager.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Model/Link.php b/app/code/Magento/Analytics/Model/Link.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Model/LinkProvider.php b/app/code/Magento/Analytics/Model/LinkProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Model/Plugin/BaseUrlConfigPlugin.php b/app/code/Magento/Analytics/Model/Plugin/BaseUrlConfigPlugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Model/ProviderFactory.php b/app/code/Magento/Analytics/Model/ProviderFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Model/ReportUrlProvider.php b/app/code/Magento/Analytics/Model/ReportUrlProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Model/ReportWriter.php b/app/code/Magento/Analytics/Model/ReportWriter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Model/ReportWriterInterface.php b/app/code/Magento/Analytics/Model/ReportWriterInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Model/ReportXml/ModuleIterator.php b/app/code/Magento/Analytics/Model/ReportXml/ModuleIterator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Model/StoreConfigurationProvider.php b/app/code/Magento/Analytics/Model/StoreConfigurationProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Model/SubscriptionStatusProvider.php b/app/code/Magento/Analytics/Model/SubscriptionStatusProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Model/System/Message/NotificationAboutFailedSubscription.php b/app/code/Magento/Analytics/Model/System/Message/NotificationAboutFailedSubscription.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/README.md b/app/code/Magento/Analytics/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/ReportXml/Config.php b/app/code/Magento/Analytics/ReportXml/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/ReportXml/Config/Converter/Xml.php b/app/code/Magento/Analytics/ReportXml/Config/Converter/Xml.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/ReportXml/Config/Mapper.php b/app/code/Magento/Analytics/ReportXml/Config/Mapper.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/ReportXml/Config/Reader.php b/app/code/Magento/Analytics/ReportXml/Config/Reader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/ReportXml/ConfigInterface.php b/app/code/Magento/Analytics/ReportXml/ConfigInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/ReportXml/ConnectionFactory.php b/app/code/Magento/Analytics/ReportXml/ConnectionFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/ReportXml/DB/Assembler/AssemblerInterface.php b/app/code/Magento/Analytics/ReportXml/DB/Assembler/AssemblerInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/ReportXml/DB/Assembler/FilterAssembler.php b/app/code/Magento/Analytics/ReportXml/DB/Assembler/FilterAssembler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/ReportXml/DB/Assembler/FromAssembler.php b/app/code/Magento/Analytics/ReportXml/DB/Assembler/FromAssembler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/ReportXml/DB/Assembler/JoinAssembler.php b/app/code/Magento/Analytics/ReportXml/DB/Assembler/JoinAssembler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/ReportXml/DB/ColumnsResolver.php b/app/code/Magento/Analytics/ReportXml/DB/ColumnsResolver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/ReportXml/DB/ConditionResolver.php b/app/code/Magento/Analytics/ReportXml/DB/ConditionResolver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/ReportXml/DB/NameResolver.php b/app/code/Magento/Analytics/ReportXml/DB/NameResolver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/ReportXml/DB/ReportValidator.php b/app/code/Magento/Analytics/ReportXml/DB/ReportValidator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/ReportXml/DB/SelectBuilder.php b/app/code/Magento/Analytics/ReportXml/DB/SelectBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/ReportXml/DB/SelectBuilderFactory.php b/app/code/Magento/Analytics/ReportXml/DB/SelectBuilderFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/ReportXml/IteratorFactory.php b/app/code/Magento/Analytics/ReportXml/IteratorFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/ReportXml/Query.php b/app/code/Magento/Analytics/ReportXml/Query.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/ReportXml/QueryFactory.php b/app/code/Magento/Analytics/ReportXml/QueryFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/ReportXml/ReportProvider.php b/app/code/Magento/Analytics/ReportXml/ReportProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/ReportXml/SelectHydrator.php b/app/code/Magento/Analytics/ReportXml/SelectHydrator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Setup/InstallData.php b/app/code/Magento/Analytics/Setup/InstallData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/Block/Adminhtml/System/Config/AdditionalCommentTest.php b/app/code/Magento/Analytics/Test/Unit/Block/Adminhtml/System/Config/AdditionalCommentTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/Block/Adminhtml/System/Config/CollectionTimeLabelTest.php b/app/code/Magento/Analytics/Test/Unit/Block/Adminhtml/System/Config/CollectionTimeLabelTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/Block/Adminhtml/System/Config/SubscriptionStatusLabelTest.php b/app/code/Magento/Analytics/Test/Unit/Block/Adminhtml/System/Config/SubscriptionStatusLabelTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/Block/Adminhtml/System/Config/VerticalTest.php b/app/code/Magento/Analytics/Test/Unit/Block/Adminhtml/System/Config/VerticalTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/Controller/Adminhtml/BIEssentials/SignUpTest.php b/app/code/Magento/Analytics/Test/Unit/Controller/Adminhtml/BIEssentials/SignUpTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/Controller/Adminhtml/Reports/ShowTest.php b/app/code/Magento/Analytics/Test/Unit/Controller/Adminhtml/Reports/ShowTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/Controller/Adminhtml/Subscription/RetryTest.php b/app/code/Magento/Analytics/Test/Unit/Controller/Adminhtml/Subscription/RetryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/Cron/CollectDataTest.php b/app/code/Magento/Analytics/Test/Unit/Cron/CollectDataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/Cron/SignUpTest.php b/app/code/Magento/Analytics/Test/Unit/Cron/SignUpTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/Cron/UpdateTest.php b/app/code/Magento/Analytics/Test/Unit/Cron/UpdateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/Model/AnalyticsTokenTest.php b/app/code/Magento/Analytics/Test/Unit/Model/AnalyticsTokenTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/Model/Config/Backend/Baseurl/SubscriptionUpdateHandlerTest.php b/app/code/Magento/Analytics/Test/Unit/Model/Config/Backend/Baseurl/SubscriptionUpdateHandlerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/Model/Config/Backend/CollectionTimeTest.php b/app/code/Magento/Analytics/Test/Unit/Model/Config/Backend/CollectionTimeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/Model/Config/Backend/Enabled/SubscriptionHandlerTest.php b/app/code/Magento/Analytics/Test/Unit/Model/Config/Backend/Enabled/SubscriptionHandlerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/Model/Config/Backend/EnabledTest.php b/app/code/Magento/Analytics/Test/Unit/Model/Config/Backend/EnabledTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/Model/Config/Backend/VerticalTest.php b/app/code/Magento/Analytics/Test/Unit/Model/Config/Backend/VerticalTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/Model/Config/MapperTest.php b/app/code/Magento/Analytics/Test/Unit/Model/Config/MapperTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/Model/Config/ReaderTest.php b/app/code/Magento/Analytics/Test/Unit/Model/Config/ReaderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/Model/Config/Source/VerticalTest.php b/app/code/Magento/Analytics/Test/Unit/Model/Config/Source/VerticalTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/Model/ConfigTest.php b/app/code/Magento/Analytics/Test/Unit/Model/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/Model/Connector/Http/Client/CurlTest.php b/app/code/Magento/Analytics/Test/Unit/Model/Connector/Http/Client/CurlTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/Model/Connector/Http/JsonConverterTest.php b/app/code/Magento/Analytics/Test/Unit/Model/Connector/Http/JsonConverterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/Model/Connector/Http/ResponseResolverTest.php b/app/code/Magento/Analytics/Test/Unit/Model/Connector/Http/ResponseResolverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/Model/Connector/NotifyDataChangedCommandTest.php b/app/code/Magento/Analytics/Test/Unit/Model/Connector/NotifyDataChangedCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/Model/Connector/OTPRequestTest.php b/app/code/Magento/Analytics/Test/Unit/Model/Connector/OTPRequestTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/Model/Connector/ResponseHandler/OTPTest.php b/app/code/Magento/Analytics/Test/Unit/Model/Connector/ResponseHandler/OTPTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/Model/Connector/ResponseHandler/ReSignUpTest.php b/app/code/Magento/Analytics/Test/Unit/Model/Connector/ResponseHandler/ReSignUpTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/Model/Connector/ResponseHandler/SignUpTest.php b/app/code/Magento/Analytics/Test/Unit/Model/Connector/ResponseHandler/SignUpTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/Model/Connector/ResponseHandler/UpdateTest.php b/app/code/Magento/Analytics/Test/Unit/Model/Connector/ResponseHandler/UpdateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/Model/Connector/SignUpCommandTest.php b/app/code/Magento/Analytics/Test/Unit/Model/Connector/SignUpCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/Model/Connector/UpdateCommandTest.php b/app/code/Magento/Analytics/Test/Unit/Model/Connector/UpdateCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/Model/ConnectorTest.php b/app/code/Magento/Analytics/Test/Unit/Model/ConnectorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/Model/CryptographerTest.php b/app/code/Magento/Analytics/Test/Unit/Model/CryptographerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/Model/EncodedContextTest.php b/app/code/Magento/Analytics/Test/Unit/Model/EncodedContextTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/Model/ExportDataHandlerNotificationTest.php b/app/code/Magento/Analytics/Test/Unit/Model/ExportDataHandlerNotificationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/Model/ExportDataHandlerTest.php b/app/code/Magento/Analytics/Test/Unit/Model/ExportDataHandlerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/Model/FileInfoManagerTest.php b/app/code/Magento/Analytics/Test/Unit/Model/FileInfoManagerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/Model/FileInfoTest.php b/app/code/Magento/Analytics/Test/Unit/Model/FileInfoTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/Model/FileRecorderTest.php b/app/code/Magento/Analytics/Test/Unit/Model/FileRecorderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/Model/IntegrationManagerTest.php b/app/code/Magento/Analytics/Test/Unit/Model/IntegrationManagerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/Model/LinkProviderTest.php b/app/code/Magento/Analytics/Test/Unit/Model/LinkProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/Model/Plugin/BaseUrlConfigPluginTest.php b/app/code/Magento/Analytics/Test/Unit/Model/Plugin/BaseUrlConfigPluginTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/Model/ReportUrlProviderTest.php b/app/code/Magento/Analytics/Test/Unit/Model/ReportUrlProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/Model/ReportWriterTest.php b/app/code/Magento/Analytics/Test/Unit/Model/ReportWriterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/Model/ReportXml/ModuleIteratorTest.php b/app/code/Magento/Analytics/Test/Unit/Model/ReportXml/ModuleIteratorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/Model/StoreConfigurationProviderTest.php b/app/code/Magento/Analytics/Test/Unit/Model/StoreConfigurationProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/Model/SubscriptionStatusProviderTest.php b/app/code/Magento/Analytics/Test/Unit/Model/SubscriptionStatusProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/Model/System/Message/NotificationAboutFailedSubscriptionTest.php b/app/code/Magento/Analytics/Test/Unit/Model/System/Message/NotificationAboutFailedSubscriptionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/ReportXml/Config/Converter/XmlTest.php b/app/code/Magento/Analytics/Test/Unit/ReportXml/Config/Converter/XmlTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/ReportXml/Config/MapperTest.php b/app/code/Magento/Analytics/Test/Unit/ReportXml/Config/MapperTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/ReportXml/Config/_files/valid_reports.xml b/app/code/Magento/Analytics/Test/Unit/ReportXml/Config/_files/valid_reports.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/ReportXml/ConfigTest.php b/app/code/Magento/Analytics/Test/Unit/ReportXml/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/ReportXml/ConnectionFactoryTest.php b/app/code/Magento/Analytics/Test/Unit/ReportXml/ConnectionFactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/ReportXml/DB/Assembler/FilterAssemblerTest.php b/app/code/Magento/Analytics/Test/Unit/ReportXml/DB/Assembler/FilterAssemblerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/ReportXml/DB/Assembler/FromAssemblerTest.php b/app/code/Magento/Analytics/Test/Unit/ReportXml/DB/Assembler/FromAssemblerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/ReportXml/DB/Assembler/JoinAssemblerTest.php b/app/code/Magento/Analytics/Test/Unit/ReportXml/DB/Assembler/JoinAssemblerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/ReportXml/DB/ColumnsResolverTest.php b/app/code/Magento/Analytics/Test/Unit/ReportXml/DB/ColumnsResolverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/ReportXml/DB/ConditionResolverTest.php b/app/code/Magento/Analytics/Test/Unit/ReportXml/DB/ConditionResolverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/ReportXml/DB/NameResolverTest.php b/app/code/Magento/Analytics/Test/Unit/ReportXml/DB/NameResolverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/ReportXml/DB/ReportValidatorTest.php b/app/code/Magento/Analytics/Test/Unit/ReportXml/DB/ReportValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/ReportXml/DB/SelectBuilderTest.php b/app/code/Magento/Analytics/Test/Unit/ReportXml/DB/SelectBuilderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/ReportXml/IteratorFactoryTest.php b/app/code/Magento/Analytics/Test/Unit/ReportXml/IteratorFactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/ReportXml/QueryFactoryTest.php b/app/code/Magento/Analytics/Test/Unit/ReportXml/QueryFactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/ReportXml/QueryTest.php b/app/code/Magento/Analytics/Test/Unit/ReportXml/QueryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/ReportXml/ReportProviderTest.php b/app/code/Magento/Analytics/Test/Unit/ReportXml/ReportProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/Test/Unit/ReportXml/SelectHydratorTest.php b/app/code/Magento/Analytics/Test/Unit/ReportXml/SelectHydratorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/composer.json b/app/code/Magento/Analytics/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/docs/images/M2_MA_signup.png b/app/code/Magento/Analytics/docs/images/M2_MA_signup.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/docs/images/analytics_modules.png b/app/code/Magento/Analytics/docs/images/analytics_modules.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/docs/images/data_transition.png b/app/code/Magento/Analytics/docs/images/data_transition.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/docs/images/definition.png b/app/code/Magento/Analytics/docs/images/definition.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/docs/images/mbi_file_exchange.png b/app/code/Magento/Analytics/docs/images/mbi_file_exchange.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/docs/images/signup.png b/app/code/Magento/Analytics/docs/images/signup.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/docs/images/update.png b/app/code/Magento/Analytics/docs/images/update.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/docs/images/update_request.png b/app/code/Magento/Analytics/docs/images/update_request.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/etc/acl.xml b/app/code/Magento/Analytics/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/etc/adminhtml/di.xml b/app/code/Magento/Analytics/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/etc/adminhtml/menu.xml b/app/code/Magento/Analytics/etc/adminhtml/menu.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/etc/adminhtml/routes.xml b/app/code/Magento/Analytics/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/etc/adminhtml/system.xml b/app/code/Magento/Analytics/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/etc/analytics.xml b/app/code/Magento/Analytics/etc/analytics.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/etc/analytics.xsd b/app/code/Magento/Analytics/etc/analytics.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/etc/config.xml b/app/code/Magento/Analytics/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/etc/crontab.xml b/app/code/Magento/Analytics/etc/crontab.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/etc/di.xml b/app/code/Magento/Analytics/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/etc/module.xml b/app/code/Magento/Analytics/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/etc/reports.xml b/app/code/Magento/Analytics/etc/reports.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/etc/reports.xsd b/app/code/Magento/Analytics/etc/reports.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/etc/webapi.xml b/app/code/Magento/Analytics/etc/webapi.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/i18n/en_US.csv b/app/code/Magento/Analytics/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/registration.php b/app/code/Magento/Analytics/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/view/adminhtml/layout/adminhtml_dashboard_index.xml b/app/code/Magento/Analytics/view/adminhtml/layout/adminhtml_dashboard_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Analytics/view/adminhtml/templates/dashboard/section.phtml b/app/code/Magento/Analytics/view/adminhtml/templates/dashboard/section.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorization/LICENSE.txt b/app/code/Magento/Authorization/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorization/LICENSE_AFL.txt b/app/code/Magento/Authorization/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorization/Model/Acl/AclRetriever.php b/app/code/Magento/Authorization/Model/Acl/AclRetriever.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorization/Model/Acl/Loader/Role.php b/app/code/Magento/Authorization/Model/Acl/Loader/Role.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorization/Model/Acl/Loader/Rule.php b/app/code/Magento/Authorization/Model/Acl/Loader/Rule.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorization/Model/Acl/Role/Generic.php b/app/code/Magento/Authorization/Model/Acl/Role/Generic.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorization/Model/Acl/Role/Group.php b/app/code/Magento/Authorization/Model/Acl/Role/Group.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorization/Model/Acl/Role/User.php b/app/code/Magento/Authorization/Model/Acl/Role/User.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorization/Model/CompositeUserContext.php b/app/code/Magento/Authorization/Model/CompositeUserContext.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorization/Model/ResourceModel/Permissions/Collection.php b/app/code/Magento/Authorization/Model/ResourceModel/Permissions/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorization/Model/ResourceModel/Role.php b/app/code/Magento/Authorization/Model/ResourceModel/Role.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorization/Model/ResourceModel/Role/Collection.php b/app/code/Magento/Authorization/Model/ResourceModel/Role/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorization/Model/ResourceModel/Role/Grid/Collection.php b/app/code/Magento/Authorization/Model/ResourceModel/Role/Grid/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorization/Model/ResourceModel/Rules.php b/app/code/Magento/Authorization/Model/ResourceModel/Rules.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorization/Model/ResourceModel/Rules/Collection.php b/app/code/Magento/Authorization/Model/ResourceModel/Rules/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorization/Model/Role.php b/app/code/Magento/Authorization/Model/Role.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorization/Model/Rules.php b/app/code/Magento/Authorization/Model/Rules.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorization/Model/UserContextInterface.php b/app/code/Magento/Authorization/Model/UserContextInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorization/README.md b/app/code/Magento/Authorization/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorization/Setup/AuthorizationFactory.php b/app/code/Magento/Authorization/Setup/AuthorizationFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorization/Setup/InstallData.php b/app/code/Magento/Authorization/Setup/InstallData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorization/Setup/InstallSchema.php b/app/code/Magento/Authorization/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorization/Test/Unit/Model/Acl/AclRetrieverTest.php b/app/code/Magento/Authorization/Test/Unit/Model/Acl/AclRetrieverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorization/Test/Unit/Model/Acl/Loader/RoleTest.php b/app/code/Magento/Authorization/Test/Unit/Model/Acl/Loader/RoleTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorization/Test/Unit/Model/Acl/Loader/RuleTest.php b/app/code/Magento/Authorization/Test/Unit/Model/Acl/Loader/RuleTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorization/Test/Unit/Model/CompositeUserContextTest.php b/app/code/Magento/Authorization/Test/Unit/Model/CompositeUserContextTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorization/Test/Unit/Model/ResourceModel/RulesTest.php b/app/code/Magento/Authorization/Test/Unit/Model/ResourceModel/RulesTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorization/composer.json b/app/code/Magento/Authorization/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorization/etc/di.xml b/app/code/Magento/Authorization/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorization/etc/module.xml b/app/code/Magento/Authorization/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorization/i18n/en_US.csv b/app/code/Magento/Authorization/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorization/registration.php b/app/code/Magento/Authorization/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Block/Adminhtml/Order/View/Info/FraudDetails.php b/app/code/Magento/Authorizenet/Block/Adminhtml/Order/View/Info/FraudDetails.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Block/Transparent/Iframe.php b/app/code/Magento/Authorizenet/Block/Transparent/Iframe.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/AddConfigured.php b/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/AddConfigured.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Cancel.php b/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Cancel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/ConfigureProductToAdd.php b/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/ConfigureProductToAdd.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/ConfigureQuoteItems.php b/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/ConfigureQuoteItems.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Index.php b/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/LoadBlock.php b/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/LoadBlock.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Place.php b/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Place.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/ProcessData.php b/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/ProcessData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Redirect.php b/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Redirect.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Reorder.php b/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Reorder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/ReturnQuote.php b/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/ReturnQuote.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Save.php b/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/ShowUpdateResult.php b/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/ShowUpdateResult.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Start.php b/app/code/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/Start.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Controller/Directpost/Payment.php b/app/code/Magento/Authorizenet/Controller/Directpost/Payment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Controller/Directpost/Payment/BackendResponse.php b/app/code/Magento/Authorizenet/Controller/Directpost/Payment/BackendResponse.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Controller/Directpost/Payment/Place.php b/app/code/Magento/Authorizenet/Controller/Directpost/Payment/Place.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Controller/Directpost/Payment/Redirect.php b/app/code/Magento/Authorizenet/Controller/Directpost/Payment/Redirect.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Controller/Directpost/Payment/Response.php b/app/code/Magento/Authorizenet/Controller/Directpost/Payment/Response.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Controller/Directpost/Payment/ReturnQuote.php b/app/code/Magento/Authorizenet/Controller/Directpost/Payment/ReturnQuote.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Helper/Backend/Data.php b/app/code/Magento/Authorizenet/Helper/Backend/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Helper/Data.php b/app/code/Magento/Authorizenet/Helper/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Helper/DataFactory.php b/app/code/Magento/Authorizenet/Helper/DataFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/LICENSE.txt b/app/code/Magento/Authorizenet/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/LICENSE_AFL.txt b/app/code/Magento/Authorizenet/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Model/Authorizenet.php b/app/code/Magento/Authorizenet/Model/Authorizenet.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Model/Debug.php b/app/code/Magento/Authorizenet/Model/Debug.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Model/Directpost.php b/app/code/Magento/Authorizenet/Model/Directpost.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Model/Directpost/Request.php b/app/code/Magento/Authorizenet/Model/Directpost/Request.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Model/Directpost/Request/Factory.php b/app/code/Magento/Authorizenet/Model/Directpost/Request/Factory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Model/Directpost/Response.php b/app/code/Magento/Authorizenet/Model/Directpost/Response.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Model/Directpost/Response/Factory.php b/app/code/Magento/Authorizenet/Model/Directpost/Response/Factory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Model/Directpost/Session.php b/app/code/Magento/Authorizenet/Model/Directpost/Session.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Model/Request.php b/app/code/Magento/Authorizenet/Model/Request.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Model/Request/Factory.php b/app/code/Magento/Authorizenet/Model/Request/Factory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Model/ResourceModel/Debug.php b/app/code/Magento/Authorizenet/Model/ResourceModel/Debug.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Model/ResourceModel/Debug/Collection.php b/app/code/Magento/Authorizenet/Model/ResourceModel/Debug/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Model/Response.php b/app/code/Magento/Authorizenet/Model/Response.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Model/Response/Factory.php b/app/code/Magento/Authorizenet/Model/Response/Factory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Model/Source/Cctype.php b/app/code/Magento/Authorizenet/Model/Source/Cctype.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Model/Source/PaymentAction.php b/app/code/Magento/Authorizenet/Model/Source/PaymentAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Model/TransactionService.php b/app/code/Magento/Authorizenet/Model/TransactionService.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Observer/AddFieldsToResponseObserver.php b/app/code/Magento/Authorizenet/Observer/AddFieldsToResponseObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Observer/SaveOrderAfterSubmitObserver.php b/app/code/Magento/Authorizenet/Observer/SaveOrderAfterSubmitObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Observer/UpdateAllEditIncrementsObserver.php b/app/code/Magento/Authorizenet/Observer/UpdateAllEditIncrementsObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/README.md b/app/code/Magento/Authorizenet/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Test/Unit/Controller/Adminhtml/Authorizenet/Directpost/Payment/RedirectTest.php b/app/code/Magento/Authorizenet/Test/Unit/Controller/Adminhtml/Authorizenet/Directpost/Payment/RedirectTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Test/Unit/Controller/Directpost/Payment/PlaceTest.php b/app/code/Magento/Authorizenet/Test/Unit/Controller/Directpost/Payment/PlaceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Test/Unit/Controller/Directpost/Payment/RedirectTest.php b/app/code/Magento/Authorizenet/Test/Unit/Controller/Directpost/Payment/RedirectTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Test/Unit/Helper/Backend/DataTest.php b/app/code/Magento/Authorizenet/Test/Unit/Helper/Backend/DataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Test/Unit/Helper/DataTest.php b/app/code/Magento/Authorizenet/Test/Unit/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Test/Unit/Model/Directpost/Request/FactoryTest.php b/app/code/Magento/Authorizenet/Test/Unit/Model/Directpost/Request/FactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Test/Unit/Model/Directpost/Response/FactoryTest.php b/app/code/Magento/Authorizenet/Test/Unit/Model/Directpost/Response/FactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Test/Unit/Model/Directpost/ResponseTest.php b/app/code/Magento/Authorizenet/Test/Unit/Model/Directpost/ResponseTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Test/Unit/Model/Directpost/SessionTest.php b/app/code/Magento/Authorizenet/Test/Unit/Model/Directpost/SessionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Test/Unit/Model/DirectpostTest.php b/app/code/Magento/Authorizenet/Test/Unit/Model/DirectpostTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Test/Unit/Model/Request/FactoryTest.php b/app/code/Magento/Authorizenet/Test/Unit/Model/Request/FactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Test/Unit/Model/Response/FactoryTest.php b/app/code/Magento/Authorizenet/Test/Unit/Model/Response/FactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Test/Unit/Model/TransactionServiceTest.php b/app/code/Magento/Authorizenet/Test/Unit/Model/TransactionServiceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/Test/Unit/Observer/AddFieldsToResponseObserverTest.php b/app/code/Magento/Authorizenet/Test/Unit/Observer/AddFieldsToResponseObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/composer.json b/app/code/Magento/Authorizenet/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/etc/adminhtml/di.xml b/app/code/Magento/Authorizenet/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/etc/adminhtml/events.xml b/app/code/Magento/Authorizenet/etc/adminhtml/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/etc/adminhtml/routes.xml b/app/code/Magento/Authorizenet/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/etc/adminhtml/system.xml b/app/code/Magento/Authorizenet/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/etc/config.xml b/app/code/Magento/Authorizenet/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/etc/di.xml b/app/code/Magento/Authorizenet/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/etc/frontend/di.xml b/app/code/Magento/Authorizenet/etc/frontend/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/etc/frontend/events.xml b/app/code/Magento/Authorizenet/etc/frontend/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/etc/frontend/page_types.xml b/app/code/Magento/Authorizenet/etc/frontend/page_types.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/etc/frontend/routes.xml b/app/code/Magento/Authorizenet/etc/frontend/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/etc/frontend/sections.xml b/app/code/Magento/Authorizenet/etc/frontend/sections.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/etc/module.xml b/app/code/Magento/Authorizenet/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/i18n/en_US.csv b/app/code/Magento/Authorizenet/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/registration.php b/app/code/Magento/Authorizenet/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/view/adminhtml/layout/adminhtml_authorizenet_directpost_payment_redirect.xml b/app/code/Magento/Authorizenet/view/adminhtml/layout/adminhtml_authorizenet_directpost_payment_redirect.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/view/adminhtml/layout/sales_order_create_index.xml b/app/code/Magento/Authorizenet/view/adminhtml/layout/sales_order_create_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/view/adminhtml/layout/sales_order_create_load_block_billing_method.xml b/app/code/Magento/Authorizenet/view/adminhtml/layout/sales_order_create_load_block_billing_method.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/view/adminhtml/layout/sales_order_view.xml b/app/code/Magento/Authorizenet/view/adminhtml/layout/sales_order_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/view/adminhtml/templates/directpost/iframe.phtml b/app/code/Magento/Authorizenet/view/adminhtml/templates/directpost/iframe.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/view/adminhtml/templates/directpost/info.phtml b/app/code/Magento/Authorizenet/view/adminhtml/templates/directpost/info.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/view/adminhtml/templates/order/view/info/fraud_details.phtml b/app/code/Magento/Authorizenet/view/adminhtml/templates/order/view/info/fraud_details.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/view/adminhtml/web/js/direct-post.js b/app/code/Magento/Authorizenet/view/adminhtml/web/js/direct-post.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/view/frontend/layout/authorizenet_directpost_payment_backendresponse.xml b/app/code/Magento/Authorizenet/view/frontend/layout/authorizenet_directpost_payment_backendresponse.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/view/frontend/layout/authorizenet_directpost_payment_redirect.xml b/app/code/Magento/Authorizenet/view/frontend/layout/authorizenet_directpost_payment_redirect.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/view/frontend/layout/authorizenet_directpost_payment_response.xml b/app/code/Magento/Authorizenet/view/frontend/layout/authorizenet_directpost_payment_response.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/view/frontend/layout/checkout_index_index.xml b/app/code/Magento/Authorizenet/view/frontend/layout/checkout_index_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/view/frontend/requirejs-config.js b/app/code/Magento/Authorizenet/view/frontend/requirejs-config.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/view/frontend/web/js/view/payment/authorizenet.js b/app/code/Magento/Authorizenet/view/frontend/web/js/view/payment/authorizenet.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/view/frontend/web/js/view/payment/method-renderer/authorizenet-directpost.js b/app/code/Magento/Authorizenet/view/frontend/web/js/view/payment/method-renderer/authorizenet-directpost.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Authorizenet/view/frontend/web/template/payment/authorizenet-directpost.html b/app/code/Magento/Authorizenet/view/frontend/web/template/payment/authorizenet-directpost.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/App/AbstractAction.php b/app/code/Magento/Backend/App/AbstractAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/App/Action.php b/app/code/Magento/Backend/App/Action.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/App/Action/Context.php b/app/code/Magento/Backend/App/Action/Context.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/App/Action/Plugin/Authentication.php b/app/code/Magento/Backend/App/Action/Plugin/Authentication.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/App/Action/Plugin/MassactionKey.php b/app/code/Magento/Backend/App/Action/Plugin/MassactionKey.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/App/Area/FrontNameResolver.php b/app/code/Magento/Backend/App/Area/FrontNameResolver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/App/BackendApp.php b/app/code/Magento/Backend/App/BackendApp.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/App/BackendAppList.php b/app/code/Magento/Backend/App/BackendAppList.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/App/Config.php b/app/code/Magento/Backend/App/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/App/ConfigInterface.php b/app/code/Magento/Backend/App/ConfigInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/App/DefaultPath.php b/app/code/Magento/Backend/App/DefaultPath.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/App/Request/PathInfoProcessor.php b/app/code/Magento/Backend/App/Request/PathInfoProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/App/Response/Http/FileFactory.php b/app/code/Magento/Backend/App/Response/Http/FileFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/App/Router.php b/app/code/Magento/Backend/App/Router.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/App/Router/NoRouteHandler.php b/app/code/Magento/Backend/App/Router/NoRouteHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/App/UserConfig.php b/app/code/Magento/Backend/App/UserConfig.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/AbstractBlock.php b/app/code/Magento/Backend/Block/AbstractBlock.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Admin/Formkey.php b/app/code/Magento/Backend/Block/Admin/Formkey.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/AnchorRenderer.php b/app/code/Magento/Backend/Block/AnchorRenderer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Cache.php b/app/code/Magento/Backend/Block/Cache.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Cache/Additional.php b/app/code/Magento/Backend/Block/Cache/Additional.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Cache/Grid/Column/Statuses.php b/app/code/Magento/Backend/Block/Cache/Grid/Column/Statuses.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Cache/Grid/Massaction/ProductionModeVisibilityChecker.php b/app/code/Magento/Backend/Block/Cache/Grid/Massaction/ProductionModeVisibilityChecker.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Catalog/Product/Tab/Container.php b/app/code/Magento/Backend/Block/Catalog/Product/Tab/Container.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Context.php b/app/code/Magento/Backend/Block/Context.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Dashboard.php b/app/code/Magento/Backend/Block/Dashboard.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Dashboard/AbstractDashboard.php b/app/code/Magento/Backend/Block/Dashboard/AbstractDashboard.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Dashboard/Bar.php b/app/code/Magento/Backend/Block/Dashboard/Bar.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Dashboard/Diagrams.php b/app/code/Magento/Backend/Block/Dashboard/Diagrams.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Dashboard/Graph.php b/app/code/Magento/Backend/Block/Dashboard/Graph.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Dashboard/Grid.php b/app/code/Magento/Backend/Block/Dashboard/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Dashboard/Grids.php b/app/code/Magento/Backend/Block/Dashboard/Grids.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Dashboard/Orders/Grid.php b/app/code/Magento/Backend/Block/Dashboard/Orders/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Dashboard/Sales.php b/app/code/Magento/Backend/Block/Dashboard/Sales.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Dashboard/Searches/Renderer/Searchquery.php b/app/code/Magento/Backend/Block/Dashboard/Searches/Renderer/Searchquery.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Dashboard/Tab/Amounts.php b/app/code/Magento/Backend/Block/Dashboard/Tab/Amounts.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Dashboard/Tab/Customers/Most.php b/app/code/Magento/Backend/Block/Dashboard/Tab/Customers/Most.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Dashboard/Tab/Customers/Newest.php b/app/code/Magento/Backend/Block/Dashboard/Tab/Customers/Newest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Dashboard/Tab/Orders.php b/app/code/Magento/Backend/Block/Dashboard/Tab/Orders.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Dashboard/Tab/Products/Ordered.php b/app/code/Magento/Backend/Block/Dashboard/Tab/Products/Ordered.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Dashboard/Tab/Products/Viewed.php b/app/code/Magento/Backend/Block/Dashboard/Tab/Products/Viewed.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Dashboard/Totals.php b/app/code/Magento/Backend/Block/Dashboard/Totals.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Denied.php b/app/code/Magento/Backend/Block/Denied.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/GlobalSearch.php b/app/code/Magento/Backend/Block/GlobalSearch.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Media/Uploader.php b/app/code/Magento/Backend/Block/Media/Uploader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Menu.php b/app/code/Magento/Backend/Block/Menu.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/MenuItemChecker.php b/app/code/Magento/Backend/Block/MenuItemChecker.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Page.php b/app/code/Magento/Backend/Block/Page.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Page/Copyright.php b/app/code/Magento/Backend/Block/Page/Copyright.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Page/Footer.php b/app/code/Magento/Backend/Block/Page/Footer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Page/Header.php b/app/code/Magento/Backend/Block/Page/Header.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Page/Notices.php b/app/code/Magento/Backend/Block/Page/Notices.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Page/RequireJs.php b/app/code/Magento/Backend/Block/Page/RequireJs.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Page/System/Config/Robots/Reset.php b/app/code/Magento/Backend/Block/Page/System/Config/Robots/Reset.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Store/Switcher.php b/app/code/Magento/Backend/Block/Store/Switcher.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Store/Switcher/Form/Renderer/Fieldset.php b/app/code/Magento/Backend/Block/Store/Switcher/Form/Renderer/Fieldset.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Store/Switcher/Form/Renderer/Fieldset/Element.php b/app/code/Magento/Backend/Block/Store/Switcher/Form/Renderer/Fieldset/Element.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/System/Account/Edit.php b/app/code/Magento/Backend/Block/System/Account/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/System/Account/Edit/Form.php b/app/code/Magento/Backend/Block/System/Account/Edit/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/System/Cache/Edit.php b/app/code/Magento/Backend/Block/System/Cache/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/System/Cache/Form.php b/app/code/Magento/Backend/Block/System/Cache/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/System/Design.php b/app/code/Magento/Backend/Block/System/Design.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/System/Design/Edit.php b/app/code/Magento/Backend/Block/System/Design/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/System/Design/Edit/Tab/General.php b/app/code/Magento/Backend/Block/System/Design/Edit/Tab/General.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/System/Design/Edit/Tabs.php b/app/code/Magento/Backend/Block/System/Design/Edit/Tabs.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/System/Store/Delete.php b/app/code/Magento/Backend/Block/System/Store/Delete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/System/Store/Delete/Form.php b/app/code/Magento/Backend/Block/System/Store/Delete/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/System/Store/Delete/Group.php b/app/code/Magento/Backend/Block/System/Store/Delete/Group.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/System/Store/Delete/Website.php b/app/code/Magento/Backend/Block/System/Store/Delete/Website.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/System/Store/Edit.php b/app/code/Magento/Backend/Block/System/Store/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/System/Store/Edit/AbstractForm.php b/app/code/Magento/Backend/Block/System/Store/Edit/AbstractForm.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/System/Store/Edit/Form/Group.php b/app/code/Magento/Backend/Block/System/Store/Edit/Form/Group.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/System/Store/Edit/Form/Store.php b/app/code/Magento/Backend/Block/System/Store/Edit/Form/Store.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/System/Store/Edit/Form/Website.php b/app/code/Magento/Backend/Block/System/Store/Edit/Form/Website.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/System/Store/Grid/Render/Group.php b/app/code/Magento/Backend/Block/System/Store/Grid/Render/Group.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/System/Store/Grid/Render/Store.php b/app/code/Magento/Backend/Block/System/Store/Grid/Render/Store.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/System/Store/Grid/Render/Website.php b/app/code/Magento/Backend/Block/System/Store/Grid/Render/Website.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/System/Store/Store.php b/app/code/Magento/Backend/Block/System/Store/Store.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Template.php b/app/code/Magento/Backend/Block/Template.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Template/Context.php b/app/code/Magento/Backend/Block/Template/Context.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Text/ListText.php b/app/code/Magento/Backend/Block/Text/ListText.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget.php b/app/code/Magento/Backend/Block/Widget.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Accordion.php b/app/code/Magento/Backend/Block/Widget/Accordion.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Accordion/Item.php b/app/code/Magento/Backend/Block/Widget/Accordion/Item.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Breadcrumbs.php b/app/code/Magento/Backend/Block/Widget/Breadcrumbs.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Button.php b/app/code/Magento/Backend/Block/Widget/Button.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Button/ButtonList.php b/app/code/Magento/Backend/Block/Widget/Button/ButtonList.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Button/ContextInterface.php b/app/code/Magento/Backend/Block/Widget/Button/ContextInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Button/Item.php b/app/code/Magento/Backend/Block/Widget/Button/Item.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Button/SplitButton.php b/app/code/Magento/Backend/Block/Widget/Button/SplitButton.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Button/Toolbar/Container.php b/app/code/Magento/Backend/Block/Widget/Button/Toolbar/Container.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Button/ToolbarInterface.php b/app/code/Magento/Backend/Block/Widget/Button/ToolbarInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Container.php b/app/code/Magento/Backend/Block/Widget/Container.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/ContainerInterface.php b/app/code/Magento/Backend/Block/Widget/ContainerInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Context.php b/app/code/Magento/Backend/Block/Widget/Context.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Form.php b/app/code/Magento/Backend/Block/Widget/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Form/Container.php b/app/code/Magento/Backend/Block/Widget/Form/Container.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Form/Element.php b/app/code/Magento/Backend/Block/Widget/Form/Element.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Form/Element/Dependence.php b/app/code/Magento/Backend/Block/Widget/Form/Element/Dependence.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Form/Element/Gallery.php b/app/code/Magento/Backend/Block/Widget/Form/Element/Gallery.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Form/Generic.php b/app/code/Magento/Backend/Block/Widget/Form/Generic.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Form/Renderer/Element.php b/app/code/Magento/Backend/Block/Widget/Form/Renderer/Element.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Form/Renderer/Fieldset.php b/app/code/Magento/Backend/Block/Widget/Form/Renderer/Fieldset.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Form/Renderer/Fieldset/Element.php b/app/code/Magento/Backend/Block/Widget/Form/Renderer/Fieldset/Element.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid.php b/app/code/Magento/Backend/Block/Widget/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column.php b/app/code/Magento/Backend/Block/Widget/Grid/Column.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Extended.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Extended.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/AbstractFilter.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/AbstractFilter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Checkbox.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Checkbox.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Country.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Country.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Date.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Date.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Datetime.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Datetime.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/FilterInterface.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/FilterInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Massaction.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Massaction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Price.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Price.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Radio.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Radio.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Range.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Range.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Select.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Select.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Select/Extended.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Select/Extended.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/SkipList.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/SkipList.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Store.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Store.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Text.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Text.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Theme.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Theme.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Multistore.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Multistore.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/AbstractRenderer.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/AbstractRenderer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Action.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Action.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Button.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Button.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Checkbox.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Checkbox.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Checkboxes/Extended.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Checkboxes/Extended.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Concat.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Concat.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Country.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Country.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Currency.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Currency.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Date.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Date.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Datetime.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Datetime.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/DraggableHandle.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/DraggableHandle.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Input.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Input.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Ip.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Ip.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Longtext.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Longtext.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Massaction.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Massaction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Number.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Number.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Options.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Options.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Options/Converter.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Options/Converter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Options/Extended.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Options/Extended.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Price.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Price.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Radio.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Radio.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Radio/Extended.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Radio/Extended.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/RendererInterface.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/RendererInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Select.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Select.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Select/Extended.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Select/Extended.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Store.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Store.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Text.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Text.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Wrapline.php b/app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Wrapline.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/ColumnSet.php b/app/code/Magento/Backend/Block/Widget/Grid/ColumnSet.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Container.php b/app/code/Magento/Backend/Block/Widget/Grid/Container.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Export.php b/app/code/Magento/Backend/Block/Widget/Grid/Export.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/ExportInterface.php b/app/code/Magento/Backend/Block/Widget/Grid/ExportInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Extended.php b/app/code/Magento/Backend/Block/Widget/Grid/Extended.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Massaction.php b/app/code/Magento/Backend/Block/Widget/Grid/Massaction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Massaction/AbstractMassaction.php b/app/code/Magento/Backend/Block/Widget/Grid/Massaction/AbstractMassaction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Massaction/Additional.php b/app/code/Magento/Backend/Block/Widget/Grid/Massaction/Additional.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Massaction/Extended.php b/app/code/Magento/Backend/Block/Widget/Grid/Massaction/Extended.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Massaction/Item.php b/app/code/Magento/Backend/Block/Widget/Grid/Massaction/Item.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Massaction/Item/Additional/AdditionalInterface.php b/app/code/Magento/Backend/Block/Widget/Grid/Massaction/Item/Additional/AdditionalInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Massaction/Item/Additional/DefaultAdditional.php b/app/code/Magento/Backend/Block/Widget/Grid/Massaction/Item/Additional/DefaultAdditional.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Massaction/VisibilityCheckerInterface.php b/app/code/Magento/Backend/Block/Widget/Grid/Massaction/VisibilityCheckerInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Grid/Serializer.php b/app/code/Magento/Backend/Block/Widget/Grid/Serializer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Tab.php b/app/code/Magento/Backend/Block/Widget/Tab.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Tab/TabInterface.php b/app/code/Magento/Backend/Block/Widget/Tab/TabInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Block/Widget/Tabs.php b/app/code/Magento/Backend/Block/Widget/Tabs.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Console/Command/AbstractCacheCommand.php b/app/code/Magento/Backend/Console/Command/AbstractCacheCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Console/Command/AbstractCacheManageCommand.php b/app/code/Magento/Backend/Console/Command/AbstractCacheManageCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Console/Command/AbstractCacheSetCommand.php b/app/code/Magento/Backend/Console/Command/AbstractCacheSetCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Console/Command/AbstractCacheTypeManageCommand.php b/app/code/Magento/Backend/Console/Command/AbstractCacheTypeManageCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Console/Command/CacheCleanCommand.php b/app/code/Magento/Backend/Console/Command/CacheCleanCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Console/Command/CacheDisableCommand.php b/app/code/Magento/Backend/Console/Command/CacheDisableCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Console/Command/CacheEnableCommand.php b/app/code/Magento/Backend/Console/Command/CacheEnableCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Console/Command/CacheFlushCommand.php b/app/code/Magento/Backend/Console/Command/CacheFlushCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Console/Command/CacheStatusCommand.php b/app/code/Magento/Backend/Console/Command/CacheStatusCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Ajax/Translate.php b/app/code/Magento/Backend/Controller/Adminhtml/Ajax/Translate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Auth.php b/app/code/Magento/Backend/Controller/Adminhtml/Auth.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Auth/DeniedIframe.php b/app/code/Magento/Backend/Controller/Adminhtml/Auth/DeniedIframe.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Auth/DeniedJson.php b/app/code/Magento/Backend/Controller/Adminhtml/Auth/DeniedJson.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Auth/Login.php b/app/code/Magento/Backend/Controller/Adminhtml/Auth/Login.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Auth/Logout.php b/app/code/Magento/Backend/Controller/Adminhtml/Auth/Logout.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/BackendApp/Redirect.php b/app/code/Magento/Backend/Controller/Adminhtml/BackendApp/Redirect.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Cache.php b/app/code/Magento/Backend/Controller/Adminhtml/Cache.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Cache/CleanImages.php b/app/code/Magento/Backend/Controller/Adminhtml/Cache/CleanImages.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Cache/CleanMedia.php b/app/code/Magento/Backend/Controller/Adminhtml/Cache/CleanMedia.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Cache/CleanStaticFiles.php b/app/code/Magento/Backend/Controller/Adminhtml/Cache/CleanStaticFiles.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Cache/FlushAll.php b/app/code/Magento/Backend/Controller/Adminhtml/Cache/FlushAll.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Cache/FlushSystem.php b/app/code/Magento/Backend/Controller/Adminhtml/Cache/FlushSystem.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Cache/Index.php b/app/code/Magento/Backend/Controller/Adminhtml/Cache/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Cache/MassDisable.php b/app/code/Magento/Backend/Controller/Adminhtml/Cache/MassDisable.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Cache/MassEnable.php b/app/code/Magento/Backend/Controller/Adminhtml/Cache/MassEnable.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Cache/MassRefresh.php b/app/code/Magento/Backend/Controller/Adminhtml/Cache/MassRefresh.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Dashboard.php b/app/code/Magento/Backend/Controller/Adminhtml/Dashboard.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Dashboard/AjaxBlock.php b/app/code/Magento/Backend/Controller/Adminhtml/Dashboard/AjaxBlock.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Dashboard/CustomersMost.php b/app/code/Magento/Backend/Controller/Adminhtml/Dashboard/CustomersMost.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Dashboard/CustomersNewest.php b/app/code/Magento/Backend/Controller/Adminhtml/Dashboard/CustomersNewest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Dashboard/Index.php b/app/code/Magento/Backend/Controller/Adminhtml/Dashboard/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Dashboard/ProductsViewed.php b/app/code/Magento/Backend/Controller/Adminhtml/Dashboard/ProductsViewed.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Dashboard/RefreshStatistics.php b/app/code/Magento/Backend/Controller/Adminhtml/Dashboard/RefreshStatistics.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Dashboard/Tunnel.php b/app/code/Magento/Backend/Controller/Adminhtml/Dashboard/Tunnel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Denied.php b/app/code/Magento/Backend/Controller/Adminhtml/Denied.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Index.php b/app/code/Magento/Backend/Controller/Adminhtml/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Index/ChangeLocale.php b/app/code/Magento/Backend/Controller/Adminhtml/Index/ChangeLocale.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Index/GlobalSearch.php b/app/code/Magento/Backend/Controller/Adminhtml/Index/GlobalSearch.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Index/Index.php b/app/code/Magento/Backend/Controller/Adminhtml/Index/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/Noroute/Index.php b/app/code/Magento/Backend/Controller/Adminhtml/Noroute/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System.php b/app/code/Magento/Backend/Controller/Adminhtml/System.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Account.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Account.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Account/Index.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Account/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Account/Save.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Account/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Design.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Design.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Design/Delete.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Design/Delete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Design/Edit.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Design/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Design/Grid.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Design/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Design/Index.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Design/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Design/NewAction.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Design/NewAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Design/Save.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Design/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Index.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/SetStore.php b/app/code/Magento/Backend/Controller/Adminhtml/System/SetStore.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Store.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Store.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Store/DeleteGroup.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Store/DeleteGroup.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Store/DeleteGroupPost.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Store/DeleteGroupPost.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Store/DeleteStore.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Store/DeleteStore.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Store/DeleteStorePost.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Store/DeleteStorePost.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Store/DeleteWebsite.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Store/DeleteWebsite.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Store/DeleteWebsitePost.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Store/DeleteWebsitePost.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Store/EditGroup.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Store/EditGroup.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Store/EditStore.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Store/EditStore.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Store/EditWebsite.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Store/EditWebsite.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Store/Index.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Store/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Store/NewGroup.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Store/NewGroup.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Store/NewStore.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Store/NewStore.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Store/NewWebsite.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Store/NewWebsite.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Controller/Adminhtml/System/Store/Save.php b/app/code/Magento/Backend/Controller/Adminhtml/System/Store/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Cron/CleanCache.php b/app/code/Magento/Backend/Cron/CleanCache.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Helper/Dashboard/AbstractDashboard.php b/app/code/Magento/Backend/Helper/Dashboard/AbstractDashboard.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Helper/Dashboard/Data.php b/app/code/Magento/Backend/Helper/Dashboard/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Helper/Dashboard/Order.php b/app/code/Magento/Backend/Helper/Dashboard/Order.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Helper/Data.php b/app/code/Magento/Backend/Helper/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Helper/Js.php b/app/code/Magento/Backend/Helper/Js.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/LICENSE.txt b/app/code/Magento/Backend/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/LICENSE_AFL.txt b/app/code/Magento/Backend/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/AdminPathConfig.php b/app/code/Magento/Backend/Model/AdminPathConfig.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/Auth.php b/app/code/Magento/Backend/Model/Auth.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/Auth/Credential/StorageInterface.php b/app/code/Magento/Backend/Model/Auth/Credential/StorageInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/Auth/Session.php b/app/code/Magento/Backend/Model/Auth/Session.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/Auth/StorageInterface.php b/app/code/Magento/Backend/Model/Auth/StorageInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/Authorization/RoleLocator.php b/app/code/Magento/Backend/Model/Authorization/RoleLocator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/Cache/ResourceModel/Grid/Collection.php b/app/code/Magento/Backend/Model/Cache/ResourceModel/Grid/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/Config/SessionLifetime/BackendModel.php b/app/code/Magento/Backend/Model/Config/SessionLifetime/BackendModel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/Locale/Manager.php b/app/code/Magento/Backend/Model/Locale/Manager.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/Locale/Resolver.php b/app/code/Magento/Backend/Model/Locale/Resolver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/Menu.php b/app/code/Magento/Backend/Model/Menu.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/Menu/AbstractDirector.php b/app/code/Magento/Backend/Model/Menu/AbstractDirector.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/Menu/Builder.php b/app/code/Magento/Backend/Model/Menu/Builder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/Menu/Builder/AbstractCommand.php b/app/code/Magento/Backend/Model/Menu/Builder/AbstractCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/Menu/Builder/Command/Add.php b/app/code/Magento/Backend/Model/Menu/Builder/Command/Add.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/Menu/Builder/Command/Remove.php b/app/code/Magento/Backend/Model/Menu/Builder/Command/Remove.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/Menu/Builder/Command/Update.php b/app/code/Magento/Backend/Model/Menu/Builder/Command/Update.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/Menu/Builder/CommandFactory.php b/app/code/Magento/Backend/Model/Menu/Builder/CommandFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/Menu/Config.php b/app/code/Magento/Backend/Model/Menu/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/Menu/Config/Converter.php b/app/code/Magento/Backend/Model/Menu/Config/Converter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/Menu/Config/Menu/Dom.php b/app/code/Magento/Backend/Model/Menu/Config/Menu/Dom.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/Menu/Config/Reader.php b/app/code/Magento/Backend/Model/Menu/Config/Reader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/Menu/Config/SchemaLocator.php b/app/code/Magento/Backend/Model/Menu/Config/SchemaLocator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/Menu/Director/Director.php b/app/code/Magento/Backend/Model/Menu/Director/Director.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/Menu/Filter/Iterator.php b/app/code/Magento/Backend/Model/Menu/Filter/Iterator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/Menu/Item.php b/app/code/Magento/Backend/Model/Menu/Item.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/Menu/Item/Factory.php b/app/code/Magento/Backend/Model/Menu/Item/Factory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/Menu/Item/Validator.php b/app/code/Magento/Backend/Model/Menu/Item/Validator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/Menu/Iterator.php b/app/code/Magento/Backend/Model/Menu/Iterator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/ResourceModel/Translate.php b/app/code/Magento/Backend/Model/ResourceModel/Translate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/Search/Customer.php b/app/code/Magento/Backend/Model/Search/Customer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/Search/Order.php b/app/code/Magento/Backend/Model/Search/Order.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/Session.php b/app/code/Magento/Backend/Model/Session.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/Session/AdminConfig.php b/app/code/Magento/Backend/Model/Session/AdminConfig.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/Session/Quote.php b/app/code/Magento/Backend/Model/Session/Quote.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/Setup/MenuBuilder.php b/app/code/Magento/Backend/Model/Setup/MenuBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/Translate/Inline/Config.php b/app/code/Magento/Backend/Model/Translate/Inline/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/Url.php b/app/code/Magento/Backend/Model/Url.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/Url/ScopeResolver.php b/app/code/Magento/Backend/Model/Url/ScopeResolver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/UrlInterface.php b/app/code/Magento/Backend/Model/UrlInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/View/Layout/Builder.php b/app/code/Magento/Backend/Model/View/Layout/Builder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/View/Layout/Reader/Block.php b/app/code/Magento/Backend/Model/View/Layout/Reader/Block.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/View/Layout/StructureManager.php b/app/code/Magento/Backend/Model/View/Layout/StructureManager.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/View/Page/Builder.php b/app/code/Magento/Backend/Model/View/Page/Builder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/View/Result/Forward.php b/app/code/Magento/Backend/Model/View/Result/Forward.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/View/Result/Page.php b/app/code/Magento/Backend/Model/View/Result/Page.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/View/Result/Redirect.php b/app/code/Magento/Backend/Model/View/Result/Redirect.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/View/Result/RedirectFactory.php b/app/code/Magento/Backend/Model/View/Result/RedirectFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/Widget/Grid/AbstractTotals.php b/app/code/Magento/Backend/Model/Widget/Grid/AbstractTotals.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/Widget/Grid/Parser.php b/app/code/Magento/Backend/Model/Widget/Grid/Parser.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/Widget/Grid/Row/GeneratorInterface.php b/app/code/Magento/Backend/Model/Widget/Grid/Row/GeneratorInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/Widget/Grid/Row/UrlGenerator.php b/app/code/Magento/Backend/Model/Widget/Grid/Row/UrlGenerator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/Widget/Grid/Row/UrlGeneratorFactory.php b/app/code/Magento/Backend/Model/Widget/Grid/Row/UrlGeneratorFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/Widget/Grid/Row/UrlGeneratorId.php b/app/code/Magento/Backend/Model/Widget/Grid/Row/UrlGeneratorId.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/Widget/Grid/SubTotals.php b/app/code/Magento/Backend/Model/Widget/Grid/SubTotals.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/Widget/Grid/Totals.php b/app/code/Magento/Backend/Model/Widget/Grid/Totals.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Model/Widget/Grid/TotalsInterface.php b/app/code/Magento/Backend/Model/Widget/Grid/TotalsInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/README.md b/app/code/Magento/Backend/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Service/V1/ModuleService.php b/app/code/Magento/Backend/Service/V1/ModuleService.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Service/V1/ModuleServiceInterface.php b/app/code/Magento/Backend/Service/V1/ModuleServiceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Setup/ConfigOptionsList.php b/app/code/Magento/Backend/Setup/ConfigOptionsList.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/App/Action/Plugin/AuthenticationTest.php b/app/code/Magento/Backend/Test/Unit/App/Action/Plugin/AuthenticationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/App/Action/Plugin/MassactionKeyTest.php b/app/code/Magento/Backend/Test/Unit/App/Action/Plugin/MassactionKeyTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/App/Action/Stub/ActionStub.php b/app/code/Magento/Backend/Test/Unit/App/Action/Stub/ActionStub.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/App/Area/FrontNameResolverTest.php b/app/code/Magento/Backend/Test/Unit/App/Area/FrontNameResolverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/App/Area/Request/PathInfoProcessorTest.php b/app/code/Magento/Backend/Test/Unit/App/Area/Request/PathInfoProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/App/ConfigTest.php b/app/code/Magento/Backend/Test/Unit/App/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/App/Response/Http/FileFactoryTest.php b/app/code/Magento/Backend/Test/Unit/App/Response/Http/FileFactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/App/Router/NoRouteHandlerTest.php b/app/code/Magento/Backend/Test/Unit/App/Router/NoRouteHandlerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/App/UserConfigTest.php b/app/code/Magento/Backend/Test/Unit/App/UserConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Block/AnchorRendererTest.php b/app/code/Magento/Backend/Test/Unit/Block/AnchorRendererTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Block/Cache/AdditionalTest.php b/app/code/Magento/Backend/Test/Unit/Block/Cache/AdditionalTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Block/MenuItemCheckerTest.php b/app/code/Magento/Backend/Test/Unit/Block/MenuItemCheckerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Block/MenuTest.php b/app/code/Magento/Backend/Test/Unit/Block/MenuTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Block/Page/System/Config/Robots/ResetTest.php b/app/code/Magento/Backend/Test/Unit/Block/Page/System/Config/Robots/ResetTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Block/Store/SwitcherTest.php b/app/code/Magento/Backend/Test/Unit/Block/Store/SwitcherTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Block/Widget/Button/SplitTest.php b/app/code/Magento/Backend/Test/Unit/Block/Widget/Button/SplitTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Block/Widget/ButtonTest.php b/app/code/Magento/Backend/Test/Unit/Block/Widget/ButtonTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Block/Widget/Form/ContainerTest.php b/app/code/Magento/Backend/Test/Unit/Block/Widget/Form/ContainerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Block/Widget/FormTest.php b/app/code/Magento/Backend/Test/Unit/Block/Widget/FormTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Filter/DateTest.php b/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Filter/DateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Filter/DatetimeTest.php b/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Filter/DatetimeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Filter/StoreTest.php b/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Filter/StoreTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Filter/TextTest.php b/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Filter/TextTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/MultistoreTest.php b/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/MultistoreTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Renderer/AbstractRendererTest.php b/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Renderer/AbstractRendererTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Renderer/ConcatTest.php b/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Renderer/ConcatTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Renderer/CurrencyTest.php b/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Renderer/CurrencyTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Renderer/Radio/ExtendedTest.php b/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Renderer/Radio/ExtendedTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Renderer/RadioTest.php b/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Column/Renderer/RadioTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/ColumnSetTest.php b/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/ColumnSetTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/ColumnTest.php b/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/ColumnTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/ExtendedTest.php b/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/ExtendedTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Massaction/ExtendedTest.php b/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/Massaction/ExtendedTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/MassactionTest.php b/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/MassactionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/SerializerTest.php b/app/code/Magento/Backend/Test/Unit/Block/Widget/Grid/SerializerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Block/Widget/TabTest.php b/app/code/Magento/Backend/Test/Unit/Block/Widget/TabTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Console/Command/AbstractCacheCommandTest.php b/app/code/Magento/Backend/Test/Unit/Console/Command/AbstractCacheCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Console/Command/AbstractCacheManageCommandTest.php b/app/code/Magento/Backend/Test/Unit/Console/Command/AbstractCacheManageCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Console/Command/AbstractCacheSetCommandTest.php b/app/code/Magento/Backend/Test/Unit/Console/Command/AbstractCacheSetCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Console/Command/CacheCleanCommandTest.php b/app/code/Magento/Backend/Test/Unit/Console/Command/CacheCleanCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Console/Command/CacheDisableCommandTest.php b/app/code/Magento/Backend/Test/Unit/Console/Command/CacheDisableCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Console/Command/CacheEnableCommandTest.php b/app/code/Magento/Backend/Test/Unit/Console/Command/CacheEnableCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Console/Command/CacheFlushCommandTest.php b/app/code/Magento/Backend/Test/Unit/Console/Command/CacheFlushCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Console/Command/CacheStatusCommandTest.php b/app/code/Magento/Backend/Test/Unit/Console/Command/CacheStatusCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Cache/CleanMediaTest.php b/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Cache/CleanMediaTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Cache/CleanStaticFilesTest.php b/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Cache/CleanStaticFilesTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Cache/MassDisableTest.php b/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Cache/MassDisableTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Cache/MassEnableTest.php b/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Cache/MassEnableTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Dashboard/AbstractTestCase.php b/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Dashboard/AbstractTestCase.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Dashboard/CustomersMostTest.php b/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Dashboard/CustomersMostTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Dashboard/CustomersNewestTest.php b/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Dashboard/CustomersNewestTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Dashboard/ProductsViewedTest.php b/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Dashboard/ProductsViewedTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Dashboard/RefreshStatisticsTest.php b/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Dashboard/RefreshStatisticsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Dashboard/TunnelTest.php b/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/Dashboard/TunnelTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/System/Account/SaveTest.php b/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/System/Account/SaveTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/System/Store/IndexTest.php b/app/code/Magento/Backend/Test/Unit/Controller/Adminhtml/System/Store/IndexTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Cron/CleanCacheTest.php b/app/code/Magento/Backend/Test/Unit/Cron/CleanCacheTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Helper/DataTest.php b/app/code/Magento/Backend/Test/Unit/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Model/AdminPathConfigTest.php b/app/code/Magento/Backend/Test/Unit/Model/AdminPathConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Model/Auth/SessionTest.php b/app/code/Magento/Backend/Test/Unit/Model/Auth/SessionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Model/AuthTest.php b/app/code/Magento/Backend/Test/Unit/Model/AuthTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Model/Authorization/RoleLocatorTest.php b/app/code/Magento/Backend/Test/Unit/Model/Authorization/RoleLocatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Model/Locale/ManagerTest.php b/app/code/Magento/Backend/Test/Unit/Model/Locale/ManagerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Model/Menu/Builder/AbstractCommandTest.php b/app/code/Magento/Backend/Test/Unit/Model/Menu/Builder/AbstractCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Model/Menu/Builder/Command/AddTest.php b/app/code/Magento/Backend/Test/Unit/Model/Menu/Builder/Command/AddTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Model/Menu/Builder/Command/RemoveTest.php b/app/code/Magento/Backend/Test/Unit/Model/Menu/Builder/Command/RemoveTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Model/Menu/Builder/Command/UpdateTest.php b/app/code/Magento/Backend/Test/Unit/Model/Menu/Builder/Command/UpdateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Model/Menu/BuilderTest.php b/app/code/Magento/Backend/Test/Unit/Model/Menu/BuilderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Model/Menu/Config/ConverterTest.php b/app/code/Magento/Backend/Test/Unit/Model/Menu/Config/ConverterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Model/Menu/Config/SchemaLocatorTest.php b/app/code/Magento/Backend/Test/Unit/Model/Menu/Config/SchemaLocatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Model/Menu/Config/XsdTest.php b/app/code/Magento/Backend/Test/Unit/Model/Menu/Config/XsdTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Model/Menu/Config/_files/invalidMenuXmlArray.php b/app/code/Magento/Backend/Test/Unit/Model/Menu/Config/_files/invalidMenuXmlArray.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Model/Menu/Config/_files/invalid_menu.xml b/app/code/Magento/Backend/Test/Unit/Model/Menu/Config/_files/invalid_menu.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Model/Menu/Config/_files/valid_menu.xml b/app/code/Magento/Backend/Test/Unit/Model/Menu/Config/_files/valid_menu.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Model/Menu/ConfigTest.php b/app/code/Magento/Backend/Test/Unit/Model/Menu/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Model/Menu/Director/DirectorTest.php b/app/code/Magento/Backend/Test/Unit/Model/Menu/Director/DirectorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Model/Menu/Filter/IteratorTest.php b/app/code/Magento/Backend/Test/Unit/Model/Menu/Filter/IteratorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Model/Menu/Item/ValidatorTest.php b/app/code/Magento/Backend/Test/Unit/Model/Menu/Item/ValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Model/Menu/ItemTest.php b/app/code/Magento/Backend/Test/Unit/Model/Menu/ItemTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Model/MenuBuilderTest.php b/app/code/Magento/Backend/Test/Unit/Model/MenuBuilderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Model/MenuTest.php b/app/code/Magento/Backend/Test/Unit/Model/MenuTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Model/Session/AdminConfigTest.php b/app/code/Magento/Backend/Test/Unit/Model/Session/AdminConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Model/Session/QuoteTest.php b/app/code/Magento/Backend/Test/Unit/Model/Session/QuoteTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Model/Translate/Inline/ConfigTest.php b/app/code/Magento/Backend/Test/Unit/Model/Translate/Inline/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Model/UrlTest.php b/app/code/Magento/Backend/Test/Unit/Model/UrlTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Model/View/Layout/StructureManagerTest.php b/app/code/Magento/Backend/Test/Unit/Model/View/Layout/StructureManagerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Model/View/Result/PageTest.php b/app/code/Magento/Backend/Test/Unit/Model/View/Result/PageTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Model/View/Result/RedirectTest.php b/app/code/Magento/Backend/Test/Unit/Model/View/Result/RedirectTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Model/Widget/Grid/AbstractTotalsTest.php b/app/code/Magento/Backend/Test/Unit/Model/Widget/Grid/AbstractTotalsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Model/Widget/Grid/ParserTest.php b/app/code/Magento/Backend/Test/Unit/Model/Widget/Grid/ParserTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Model/Widget/Grid/Row/UrlGeneratorTest.php b/app/code/Magento/Backend/Test/Unit/Model/Widget/Grid/Row/UrlGeneratorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Model/Widget/Grid/SubTotalsTest.php b/app/code/Magento/Backend/Test/Unit/Model/Widget/Grid/SubTotalsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Model/Widget/Grid/TotalsTest.php b/app/code/Magento/Backend/Test/Unit/Model/Widget/Grid/TotalsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Model/_files/menu_item_constructor_data.php b/app/code/Magento/Backend/Test/Unit/Model/_files/menu_item_constructor_data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Model/_files/menu_item_data.php b/app/code/Magento/Backend/Test/Unit/Model/_files/menu_item_data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Model/_files/menu_merged.php b/app/code/Magento/Backend/Test/Unit/Model/_files/menu_merged.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Model/_files/menu_merged.xml b/app/code/Magento/Backend/Test/Unit/Model/_files/menu_merged.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/Test/Unit/Setup/ConfigOptionsListTest.php b/app/code/Magento/Backend/Test/Unit/Setup/ConfigOptionsListTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/composer.json b/app/code/Magento/Backend/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/etc/acl.xml b/app/code/Magento/Backend/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/etc/adminhtml/di.xml b/app/code/Magento/Backend/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/etc/adminhtml/menu.xml b/app/code/Magento/Backend/etc/adminhtml/menu.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/etc/adminhtml/routes.xml b/app/code/Magento/Backend/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/etc/adminhtml/system.xml b/app/code/Magento/Backend/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/etc/config.xml b/app/code/Magento/Backend/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/etc/crontab.xml b/app/code/Magento/Backend/etc/crontab.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/etc/di.xml b/app/code/Magento/Backend/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/etc/menu.xsd b/app/code/Magento/Backend/etc/menu.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/etc/module.xml b/app/code/Magento/Backend/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/etc/webapi.xml b/app/code/Magento/Backend/etc/webapi.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/i18n/en_US.csv b/app/code/Magento/Backend/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/registration.php b/app/code/Magento/Backend/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/layout/admin_login.xml b/app/code/Magento/Backend/view/adminhtml/layout/admin_login.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_auth_login.xml b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_auth_login.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_cache_block.xml b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_cache_block.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_cache_index.xml b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_cache_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_dashboard_customersmost.xml b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_dashboard_customersmost.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_dashboard_customersnewest.xml b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_dashboard_customersnewest.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_dashboard_index.xml b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_dashboard_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_dashboard_productsviewed.xml b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_dashboard_productsviewed.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_denied.xml b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_denied.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_noroute.xml b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_noroute.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_account_index.xml b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_account_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_design_edit.xml b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_design_edit.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_design_grid.xml b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_design_grid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_design_grid_block.xml b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_design_grid_block.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_design_index.xml b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_design_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_store_deletestore.xml b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_store_deletestore.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_store_editstore.xml b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_store_editstore.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_store_grid_block.xml b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_store_grid_block.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_store_index.xml b/app/code/Magento/Backend/view/adminhtml/layout/adminhtml_system_store_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/layout/default.xml b/app/code/Magento/Backend/view/adminhtml/layout/default.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/layout/editor.xml b/app/code/Magento/Backend/view/adminhtml/layout/editor.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/layout/empty.xml b/app/code/Magento/Backend/view/adminhtml/layout/empty.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/layout/formkey.xml b/app/code/Magento/Backend/view/adminhtml/layout/formkey.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/layout/overlay_popup.xml b/app/code/Magento/Backend/view/adminhtml/layout/overlay_popup.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/layout/popup.xml b/app/code/Magento/Backend/view/adminhtml/layout/popup.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/requirejs-config.js b/app/code/Magento/Backend/view/adminhtml/requirejs-config.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/admin/access_denied.phtml b/app/code/Magento/Backend/view/adminhtml/templates/admin/access_denied.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/admin/delete_confirm.phtml b/app/code/Magento/Backend/view/adminhtml/templates/admin/delete_confirm.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/admin/formkey.phtml b/app/code/Magento/Backend/view/adminhtml/templates/admin/formkey.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/admin/login.phtml b/app/code/Magento/Backend/view/adminhtml/templates/admin/login.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/admin/login_buttons.phtml b/app/code/Magento/Backend/view/adminhtml/templates/admin/login_buttons.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/admin/overlay_popup.phtml b/app/code/Magento/Backend/view/adminhtml/templates/admin/overlay_popup.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/admin/page.phtml b/app/code/Magento/Backend/view/adminhtml/templates/admin/page.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/admin/save_confirm.phtml b/app/code/Magento/Backend/view/adminhtml/templates/admin/save_confirm.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/dashboard/graph.phtml b/app/code/Magento/Backend/view/adminhtml/templates/dashboard/graph.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/dashboard/graph/disabled.phtml b/app/code/Magento/Backend/view/adminhtml/templates/dashboard/graph/disabled.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/dashboard/grid.phtml b/app/code/Magento/Backend/view/adminhtml/templates/dashboard/grid.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/dashboard/index.phtml b/app/code/Magento/Backend/view/adminhtml/templates/dashboard/index.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/dashboard/salebar.phtml b/app/code/Magento/Backend/view/adminhtml/templates/dashboard/salebar.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/dashboard/searches.phtml b/app/code/Magento/Backend/view/adminhtml/templates/dashboard/searches.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/dashboard/store/switcher.phtml b/app/code/Magento/Backend/view/adminhtml/templates/dashboard/store/switcher.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/dashboard/totalbar.phtml b/app/code/Magento/Backend/view/adminhtml/templates/dashboard/totalbar.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/dashboard/totalbar/refreshstatistics.phtml b/app/code/Magento/Backend/view/adminhtml/templates/dashboard/totalbar/refreshstatistics.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/media/uploader.phtml b/app/code/Magento/Backend/view/adminhtml/templates/media/uploader.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/menu.phtml b/app/code/Magento/Backend/view/adminhtml/templates/menu.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/page/copyright.phtml b/app/code/Magento/Backend/view/adminhtml/templates/page/copyright.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/page/footer.phtml b/app/code/Magento/Backend/view/adminhtml/templates/page/footer.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/page/header.phtml b/app/code/Magento/Backend/view/adminhtml/templates/page/header.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/page/js/calendar.phtml b/app/code/Magento/Backend/view/adminhtml/templates/page/js/calendar.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/page/js/components.phtml b/app/code/Magento/Backend/view/adminhtml/templates/page/js/components.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/page/js/require_js.phtml b/app/code/Magento/Backend/view/adminhtml/templates/page/js/require_js.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/page/notices.phtml b/app/code/Magento/Backend/view/adminhtml/templates/page/notices.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/page/report.phtml b/app/code/Magento/Backend/view/adminhtml/templates/page/report.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/pageactions.phtml b/app/code/Magento/Backend/view/adminhtml/templates/pageactions.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/store/switcher.phtml b/app/code/Magento/Backend/view/adminhtml/templates/store/switcher.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/store/switcher/form/renderer/fieldset.phtml b/app/code/Magento/Backend/view/adminhtml/templates/store/switcher/form/renderer/fieldset.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/store/switcher/form/renderer/fieldset/element.phtml b/app/code/Magento/Backend/view/adminhtml/templates/store/switcher/form/renderer/fieldset/element.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/system/autocomplete.phtml b/app/code/Magento/Backend/view/adminhtml/templates/system/autocomplete.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/system/cache/additional.phtml b/app/code/Magento/Backend/view/adminhtml/templates/system/cache/additional.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/system/cache/edit.phtml b/app/code/Magento/Backend/view/adminhtml/templates/system/cache/edit.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/system/design/edit.phtml b/app/code/Magento/Backend/view/adminhtml/templates/system/design/edit.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/system/design/index.phtml b/app/code/Magento/Backend/view/adminhtml/templates/system/design/index.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/system/search.phtml b/app/code/Magento/Backend/view/adminhtml/templates/system/search.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/system/shipping/applicable_country.phtml b/app/code/Magento/Backend/view/adminhtml/templates/system/shipping/applicable_country.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/widget/accordion.phtml b/app/code/Magento/Backend/view/adminhtml/templates/widget/accordion.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/widget/breadcrumbs.phtml b/app/code/Magento/Backend/view/adminhtml/templates/widget/breadcrumbs.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/widget/button.phtml b/app/code/Magento/Backend/view/adminhtml/templates/widget/button.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/widget/button/split.phtml b/app/code/Magento/Backend/view/adminhtml/templates/widget/button/split.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/widget/form.phtml b/app/code/Magento/Backend/view/adminhtml/templates/widget/form.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/widget/form/container.phtml b/app/code/Magento/Backend/view/adminhtml/templates/widget/form/container.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/widget/form/element.phtml b/app/code/Magento/Backend/view/adminhtml/templates/widget/form/element.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/widget/form/element/gallery.phtml b/app/code/Magento/Backend/view/adminhtml/templates/widget/form/element/gallery.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/widget/form/renderer/element.phtml b/app/code/Magento/Backend/view/adminhtml/templates/widget/form/renderer/element.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/widget/form/renderer/fieldset.phtml b/app/code/Magento/Backend/view/adminhtml/templates/widget/form/renderer/fieldset.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/widget/form/renderer/fieldset/element.phtml b/app/code/Magento/Backend/view/adminhtml/templates/widget/form/renderer/fieldset/element.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/widget/grid.phtml b/app/code/Magento/Backend/view/adminhtml/templates/widget/grid.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/widget/grid/column_set.phtml b/app/code/Magento/Backend/view/adminhtml/templates/widget/grid/column_set.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/widget/grid/container.phtml b/app/code/Magento/Backend/view/adminhtml/templates/widget/grid/container.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/widget/grid/container/empty.phtml b/app/code/Magento/Backend/view/adminhtml/templates/widget/grid/container/empty.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/widget/grid/export.phtml b/app/code/Magento/Backend/view/adminhtml/templates/widget/grid/export.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/widget/grid/extended.phtml b/app/code/Magento/Backend/view/adminhtml/templates/widget/grid/extended.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/widget/grid/massaction.phtml b/app/code/Magento/Backend/view/adminhtml/templates/widget/grid/massaction.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/widget/grid/massaction_extended.phtml b/app/code/Magento/Backend/view/adminhtml/templates/widget/grid/massaction_extended.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/widget/grid/serializer.phtml b/app/code/Magento/Backend/view/adminhtml/templates/widget/grid/serializer.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/widget/tabs.phtml b/app/code/Magento/Backend/view/adminhtml/templates/widget/tabs.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/widget/tabshoriz.phtml b/app/code/Magento/Backend/view/adminhtml/templates/widget/tabshoriz.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/widget/tabsleft.phtml b/app/code/Magento/Backend/view/adminhtml/templates/widget/tabsleft.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/templates/widget/view/container.phtml b/app/code/Magento/Backend/view/adminhtml/templates/widget/view/container.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/ui_component/design_config_form.xml b/app/code/Magento/Backend/view/adminhtml/ui_component/design_config_form.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/ui_component/design_config_listing.xml b/app/code/Magento/Backend/view/adminhtml/ui_component/design_config_listing.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/web/images/draggable-handle-bg.png b/app/code/Magento/Backend/view/adminhtml/web/images/draggable-handle-bg.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/web/images/draggable-handle-vertical.png b/app/code/Magento/Backend/view/adminhtml/web/images/draggable-handle-vertical.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/web/images/gallery-image-base-label.png b/app/code/Magento/Backend/view/adminhtml/web/images/gallery-image-base-label.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/web/images/gallery-image-panel-corner.png b/app/code/Magento/Backend/view/adminhtml/web/images/gallery-image-panel-corner.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/web/images/image-placeholder.png b/app/code/Magento/Backend/view/adminhtml/web/images/image-placeholder.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/web/js/bootstrap/editor.js b/app/code/Magento/Backend/view/adminhtml/web/js/bootstrap/editor.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/web/js/delete-with-confirm.js b/app/code/Magento/Backend/view/adminhtml/web/js/delete-with-confirm.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/web/js/media-uploader.js b/app/code/Magento/Backend/view/adminhtml/web/js/media-uploader.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/web/js/save-with-confirm.js b/app/code/Magento/Backend/view/adminhtml/web/js/save-with-confirm.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/web/js/validate-store.js b/app/code/Magento/Backend/view/adminhtml/web/js/validate-store.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/web/template/dynamic-rows/cells/action-delete.html b/app/code/Magento/Backend/view/adminhtml/web/template/dynamic-rows/cells/action-delete.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/web/template/dynamic-rows/grid.html b/app/code/Magento/Backend/view/adminhtml/web/template/dynamic-rows/grid.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backend/view/adminhtml/web/template/form/element/helper/fallback-reset-link.html b/app/code/Magento/Backend/view/adminhtml/web/template/form/element/helper/fallback-reset-link.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backup/Block/Adminhtml/Backup.php b/app/code/Magento/Backup/Block/Adminhtml/Backup.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backup/Block/Adminhtml/Dialogs.php b/app/code/Magento/Backup/Block/Adminhtml/Dialogs.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backup/Block/Adminhtml/Grid/Column/Renderer/Download.php b/app/code/Magento/Backup/Block/Adminhtml/Grid/Column/Renderer/Download.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backup/Block/Adminhtml/Grid/Column/Rollback.php b/app/code/Magento/Backup/Block/Adminhtml/Grid/Column/Rollback.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backup/Controller/Adminhtml/Index.php b/app/code/Magento/Backup/Controller/Adminhtml/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backup/Controller/Adminhtml/Index/Create.php b/app/code/Magento/Backup/Controller/Adminhtml/Index/Create.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backup/Controller/Adminhtml/Index/Download.php b/app/code/Magento/Backup/Controller/Adminhtml/Index/Download.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backup/Controller/Adminhtml/Index/Grid.php b/app/code/Magento/Backup/Controller/Adminhtml/Index/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backup/Controller/Adminhtml/Index/Index.php b/app/code/Magento/Backup/Controller/Adminhtml/Index/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backup/Controller/Adminhtml/Index/MassDelete.php b/app/code/Magento/Backup/Controller/Adminhtml/Index/MassDelete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backup/Controller/Adminhtml/Index/Rollback.php b/app/code/Magento/Backup/Controller/Adminhtml/Index/Rollback.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backup/Cron/SystemBackup.php b/app/code/Magento/Backup/Cron/SystemBackup.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backup/Helper/Data.php b/app/code/Magento/Backup/Helper/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backup/LICENSE.txt b/app/code/Magento/Backup/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backup/LICENSE_AFL.txt b/app/code/Magento/Backup/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backup/Model/Backup.php b/app/code/Magento/Backup/Model/Backup.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backup/Model/BackupFactory.php b/app/code/Magento/Backup/Model/BackupFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backup/Model/Config/Backend/Cron.php b/app/code/Magento/Backup/Model/Config/Backend/Cron.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backup/Model/Config/Source/Type.php b/app/code/Magento/Backup/Model/Config/Source/Type.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backup/Model/Db.php b/app/code/Magento/Backup/Model/Db.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backup/Model/Fs/Collection.php b/app/code/Magento/Backup/Model/Fs/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backup/Model/Grid/Options.php b/app/code/Magento/Backup/Model/Grid/Options.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backup/Model/ResourceModel/Db.php b/app/code/Magento/Backup/Model/ResourceModel/Db.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backup/Model/ResourceModel/Helper.php b/app/code/Magento/Backup/Model/ResourceModel/Helper.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backup/README.md b/app/code/Magento/Backup/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backup/Test/Unit/Controller/Adminhtml/Index/DownloadTest.php b/app/code/Magento/Backup/Test/Unit/Controller/Adminhtml/Index/DownloadTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backup/Test/Unit/Controller/Adminhtml/Index/RollbackTest.php b/app/code/Magento/Backup/Test/Unit/Controller/Adminhtml/Index/RollbackTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backup/Test/Unit/Cron/SystemBackupTest.php b/app/code/Magento/Backup/Test/Unit/Cron/SystemBackupTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backup/Test/Unit/Helper/DataTest.php b/app/code/Magento/Backup/Test/Unit/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backup/Test/Unit/Model/BackupFactoryTest.php b/app/code/Magento/Backup/Test/Unit/Model/BackupFactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backup/Test/Unit/Model/BackupTest.php b/app/code/Magento/Backup/Test/Unit/Model/BackupTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backup/Test/Unit/Model/Fs/CollectionTest.php b/app/code/Magento/Backup/Test/Unit/Model/Fs/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backup/composer.json b/app/code/Magento/Backup/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backup/etc/acl.xml b/app/code/Magento/Backup/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backup/etc/adminhtml/menu.xml b/app/code/Magento/Backup/etc/adminhtml/menu.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backup/etc/adminhtml/routes.xml b/app/code/Magento/Backup/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backup/etc/adminhtml/system.xml b/app/code/Magento/Backup/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backup/etc/crontab.xml b/app/code/Magento/Backup/etc/crontab.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backup/etc/di.xml b/app/code/Magento/Backup/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backup/etc/module.xml b/app/code/Magento/Backup/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backup/i18n/en_US.csv b/app/code/Magento/Backup/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backup/registration.php b/app/code/Magento/Backup/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backup/view/adminhtml/layout/backup_index_block.xml b/app/code/Magento/Backup/view/adminhtml/layout/backup_index_block.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backup/view/adminhtml/layout/backup_index_grid.xml b/app/code/Magento/Backup/view/adminhtml/layout/backup_index_grid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backup/view/adminhtml/layout/backup_index_index.xml b/app/code/Magento/Backup/view/adminhtml/layout/backup_index_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backup/view/adminhtml/templates/backup/dialogs.phtml b/app/code/Magento/Backup/view/adminhtml/templates/backup/dialogs.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backup/view/adminhtml/templates/backup/left.phtml b/app/code/Magento/Backup/view/adminhtml/templates/backup/left.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Backup/view/adminhtml/templates/backup/list.phtml b/app/code/Magento/Backup/view/adminhtml/templates/backup/list.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Block/Adminhtml/Form/Field/CcTypes.php b/app/code/Magento/Braintree/Block/Adminhtml/Form/Field/CcTypes.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Block/Adminhtml/Form/Field/Countries.php b/app/code/Magento/Braintree/Block/Adminhtml/Form/Field/Countries.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Block/Adminhtml/Form/Field/CountryCreditCard.php b/app/code/Magento/Braintree/Block/Adminhtml/Form/Field/CountryCreditCard.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Block/Customer/CardRenderer.php b/app/code/Magento/Braintree/Block/Customer/CardRenderer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Block/Customer/PayPal/VaultTokenRenderer.php b/app/code/Magento/Braintree/Block/Customer/PayPal/VaultTokenRenderer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Block/Form.php b/app/code/Magento/Braintree/Block/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Block/Info.php b/app/code/Magento/Braintree/Block/Info.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Block/Payment.php b/app/code/Magento/Braintree/Block/Payment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Block/Paypal/Button.php b/app/code/Magento/Braintree/Block/Paypal/Button.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Block/Paypal/Checkout/Review.php b/app/code/Magento/Braintree/Block/Paypal/Checkout/Review.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Controller/Adminhtml/Payment/GetClientToken.php b/app/code/Magento/Braintree/Controller/Adminhtml/Payment/GetClientToken.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Controller/Adminhtml/Payment/GetNonce.php b/app/code/Magento/Braintree/Controller/Adminhtml/Payment/GetNonce.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Controller/Adminhtml/Report/Index.php b/app/code/Magento/Braintree/Controller/Adminhtml/Report/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Controller/Payment/GetNonce.php b/app/code/Magento/Braintree/Controller/Payment/GetNonce.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Controller/Paypal/AbstractAction.php b/app/code/Magento/Braintree/Controller/Paypal/AbstractAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Controller/Paypal/PlaceOrder.php b/app/code/Magento/Braintree/Controller/Paypal/PlaceOrder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Controller/Paypal/Review.php b/app/code/Magento/Braintree/Controller/Paypal/Review.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Controller/Paypal/SaveShippingMethod.php b/app/code/Magento/Braintree/Controller/Paypal/SaveShippingMethod.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Gateway/Command/CaptureStrategyCommand.php b/app/code/Magento/Braintree/Gateway/Command/CaptureStrategyCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Gateway/Command/GetPaymentNonceCommand.php b/app/code/Magento/Braintree/Gateway/Command/GetPaymentNonceCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Gateway/Config/CanVoidHandler.php b/app/code/Magento/Braintree/Gateway/Config/CanVoidHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Gateway/Config/Config.php b/app/code/Magento/Braintree/Gateway/Config/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Gateway/Config/PayPal/Config.php b/app/code/Magento/Braintree/Gateway/Config/PayPal/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Gateway/Http/Client/AbstractTransaction.php b/app/code/Magento/Braintree/Gateway/Http/Client/AbstractTransaction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Gateway/Http/Client/TransactionRefund.php b/app/code/Magento/Braintree/Gateway/Http/Client/TransactionRefund.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Gateway/Http/Client/TransactionSale.php b/app/code/Magento/Braintree/Gateway/Http/Client/TransactionSale.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Gateway/Http/Client/TransactionSubmitForSettlement.php b/app/code/Magento/Braintree/Gateway/Http/Client/TransactionSubmitForSettlement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Gateway/Http/Client/TransactionVoid.php b/app/code/Magento/Braintree/Gateway/Http/Client/TransactionVoid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Gateway/Http/TransferFactory.php b/app/code/Magento/Braintree/Gateway/Http/TransferFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Gateway/Request/AddressDataBuilder.php b/app/code/Magento/Braintree/Gateway/Request/AddressDataBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Gateway/Request/CaptureDataBuilder.php b/app/code/Magento/Braintree/Gateway/Request/CaptureDataBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Gateway/Request/ChannelDataBuilder.php b/app/code/Magento/Braintree/Gateway/Request/ChannelDataBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Gateway/Request/CustomerDataBuilder.php b/app/code/Magento/Braintree/Gateway/Request/CustomerDataBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Gateway/Request/DescriptorDataBuilder.php b/app/code/Magento/Braintree/Gateway/Request/DescriptorDataBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Gateway/Request/KountPaymentDataBuilder.php b/app/code/Magento/Braintree/Gateway/Request/KountPaymentDataBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Gateway/Request/PayPal/DeviceDataBuilder.php b/app/code/Magento/Braintree/Gateway/Request/PayPal/DeviceDataBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Gateway/Request/PayPal/VaultDataBuilder.php b/app/code/Magento/Braintree/Gateway/Request/PayPal/VaultDataBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Gateway/Request/PaymentDataBuilder.php b/app/code/Magento/Braintree/Gateway/Request/PaymentDataBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Gateway/Request/RefundDataBuilder.php b/app/code/Magento/Braintree/Gateway/Request/RefundDataBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Gateway/Request/SettlementDataBuilder.php b/app/code/Magento/Braintree/Gateway/Request/SettlementDataBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Gateway/Request/StoreConfigBuilder.php b/app/code/Magento/Braintree/Gateway/Request/StoreConfigBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Gateway/Request/ThreeDSecureDataBuilder.php b/app/code/Magento/Braintree/Gateway/Request/ThreeDSecureDataBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Gateway/Request/VaultCaptureDataBuilder.php b/app/code/Magento/Braintree/Gateway/Request/VaultCaptureDataBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Gateway/Request/VaultDataBuilder.php b/app/code/Magento/Braintree/Gateway/Request/VaultDataBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Gateway/Request/VoidDataBuilder.php b/app/code/Magento/Braintree/Gateway/Request/VoidDataBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Gateway/Response/CardDetailsHandler.php b/app/code/Magento/Braintree/Gateway/Response/CardDetailsHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Gateway/Response/PayPal/VaultDetailsHandler.php b/app/code/Magento/Braintree/Gateway/Response/PayPal/VaultDetailsHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Gateway/Response/PayPalDetailsHandler.php b/app/code/Magento/Braintree/Gateway/Response/PayPalDetailsHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Gateway/Response/PaymentDetailsHandler.php b/app/code/Magento/Braintree/Gateway/Response/PaymentDetailsHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Gateway/Response/RefundHandler.php b/app/code/Magento/Braintree/Gateway/Response/RefundHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Gateway/Response/RiskDataHandler.php b/app/code/Magento/Braintree/Gateway/Response/RiskDataHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Gateway/Response/ThreeDSecureDetailsHandler.php b/app/code/Magento/Braintree/Gateway/Response/ThreeDSecureDetailsHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Gateway/Response/TransactionIdHandler.php b/app/code/Magento/Braintree/Gateway/Response/TransactionIdHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Gateway/Response/VaultDetailsHandler.php b/app/code/Magento/Braintree/Gateway/Response/VaultDetailsHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Gateway/Response/VoidHandler.php b/app/code/Magento/Braintree/Gateway/Response/VoidHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Gateway/SubjectReader.php b/app/code/Magento/Braintree/Gateway/SubjectReader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Gateway/Validator/ErrorCodeValidator.php b/app/code/Magento/Braintree/Gateway/Validator/ErrorCodeValidator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Gateway/Validator/GeneralResponseValidator.php b/app/code/Magento/Braintree/Gateway/Validator/GeneralResponseValidator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Gateway/Validator/PaymentNonceResponseValidator.php b/app/code/Magento/Braintree/Gateway/Validator/PaymentNonceResponseValidator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Gateway/Validator/ResponseValidator.php b/app/code/Magento/Braintree/Gateway/Validator/ResponseValidator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Helper/CcType.php b/app/code/Magento/Braintree/Helper/CcType.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Helper/Country.php b/app/code/Magento/Braintree/Helper/Country.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/LICENSE.txt b/app/code/Magento/Braintree/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/LICENSE_AFL.txt b/app/code/Magento/Braintree/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Model/Adapter/BraintreeAdapter.php b/app/code/Magento/Braintree/Model/Adapter/BraintreeAdapter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Model/Adapter/BraintreeAdapterFactory.php b/app/code/Magento/Braintree/Model/Adapter/BraintreeAdapterFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Model/Adapter/BraintreeSearchAdapter.php b/app/code/Magento/Braintree/Model/Adapter/BraintreeSearchAdapter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Model/Adminhtml/Source/CcType.php b/app/code/Magento/Braintree/Model/Adminhtml/Source/CcType.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Model/Adminhtml/Source/Environment.php b/app/code/Magento/Braintree/Model/Adminhtml/Source/Environment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Model/Adminhtml/Source/PaymentAction.php b/app/code/Magento/Braintree/Model/Adminhtml/Source/PaymentAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Model/Adminhtml/System/Config/Country.php b/app/code/Magento/Braintree/Model/Adminhtml/System/Config/Country.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Model/Adminhtml/System/Config/CountryCreditCard.php b/app/code/Magento/Braintree/Model/Adminhtml/System/Config/CountryCreditCard.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Model/AvsEmsCodeMapper.php b/app/code/Magento/Braintree/Model/AvsEmsCodeMapper.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Model/CvvEmsCodeMapper.php b/app/code/Magento/Braintree/Model/CvvEmsCodeMapper.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Model/InstantPurchase/CreditCard/AvailabilityChecker.php b/app/code/Magento/Braintree/Model/InstantPurchase/CreditCard/AvailabilityChecker.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Model/InstantPurchase/CreditCard/TokenFormatter.php b/app/code/Magento/Braintree/Model/InstantPurchase/CreditCard/TokenFormatter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Model/InstantPurchase/PayPal/TokenFormatter.php b/app/code/Magento/Braintree/Model/InstantPurchase/PayPal/TokenFormatter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Model/InstantPurchase/PaymentAdditionalInformationProvider.php b/app/code/Magento/Braintree/Model/InstantPurchase/PaymentAdditionalInformationProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Model/LocaleResolver.php b/app/code/Magento/Braintree/Model/LocaleResolver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Model/Paypal/Helper/AbstractHelper.php b/app/code/Magento/Braintree/Model/Paypal/Helper/AbstractHelper.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Model/Paypal/Helper/OrderPlace.php b/app/code/Magento/Braintree/Model/Paypal/Helper/OrderPlace.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Model/Paypal/Helper/QuoteUpdater.php b/app/code/Magento/Braintree/Model/Paypal/Helper/QuoteUpdater.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Model/Paypal/Helper/ShippingMethodUpdater.php b/app/code/Magento/Braintree/Model/Paypal/Helper/ShippingMethodUpdater.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Model/Report/ConditionAppliers/ApplierInterface.php b/app/code/Magento/Braintree/Model/Report/ConditionAppliers/ApplierInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Model/Report/ConditionAppliers/AppliersPool.php b/app/code/Magento/Braintree/Model/Report/ConditionAppliers/AppliersPool.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Model/Report/ConditionAppliers/MultipleValue.php b/app/code/Magento/Braintree/Model/Report/ConditionAppliers/MultipleValue.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Model/Report/ConditionAppliers/Range.php b/app/code/Magento/Braintree/Model/Report/ConditionAppliers/Range.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Model/Report/ConditionAppliers/Text.php b/app/code/Magento/Braintree/Model/Report/ConditionAppliers/Text.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Model/Report/FilterMapper.php b/app/code/Magento/Braintree/Model/Report/FilterMapper.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Model/Report/Row/TransactionMap.php b/app/code/Magento/Braintree/Model/Report/Row/TransactionMap.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Model/Report/TransactionsCollection.php b/app/code/Magento/Braintree/Model/Report/TransactionsCollection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Model/Ui/Adminhtml/PayPal/TokenUiComponentProvider.php b/app/code/Magento/Braintree/Model/Ui/Adminhtml/PayPal/TokenUiComponentProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Model/Ui/Adminhtml/TokenUiComponentProvider.php b/app/code/Magento/Braintree/Model/Ui/Adminhtml/TokenUiComponentProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Model/Ui/ConfigProvider.php b/app/code/Magento/Braintree/Model/Ui/ConfigProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Model/Ui/PayPal/ConfigProvider.php b/app/code/Magento/Braintree/Model/Ui/PayPal/ConfigProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Model/Ui/PayPal/TokenUiComponentProvider.php b/app/code/Magento/Braintree/Model/Ui/PayPal/TokenUiComponentProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Model/Ui/TokenUiComponentProvider.php b/app/code/Magento/Braintree/Model/Ui/TokenUiComponentProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Observer/AddPaypalShortcuts.php b/app/code/Magento/Braintree/Observer/AddPaypalShortcuts.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Observer/DataAssignObserver.php b/app/code/Magento/Braintree/Observer/DataAssignObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/README.md b/app/code/Magento/Braintree/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Setup/UpgradeData.php b/app/code/Magento/Braintree/Setup/UpgradeData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Block/FormTest.php b/app/code/Magento/Braintree/Test/Unit/Block/FormTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Controller/Payment/GetNonceTest.php b/app/code/Magento/Braintree/Test/Unit/Controller/Payment/GetNonceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Controller/Paypal/PlaceOrderTest.php b/app/code/Magento/Braintree/Test/Unit/Controller/Paypal/PlaceOrderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Controller/Paypal/ReviewTest.php b/app/code/Magento/Braintree/Test/Unit/Controller/Paypal/ReviewTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Controller/Paypal/SaveShippingMethodTest.php b/app/code/Magento/Braintree/Test/Unit/Controller/Paypal/SaveShippingMethodTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Command/CaptureStrategyCommandTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Command/CaptureStrategyCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Command/GetPaymentNonceCommandTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Command/GetPaymentNonceCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Config/CanVoidHandlerTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Config/CanVoidHandlerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Config/ConfigTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Config/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Helper/SubjectReaderTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Helper/SubjectReaderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Http/Client/TransactionSaleTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Http/Client/TransactionSaleTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Http/Client/TransactionSubmitForSettlementTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Http/Client/TransactionSubmitForSettlementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Http/TransferFactoryTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Http/TransferFactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Request/AddressDataBuilderTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Request/AddressDataBuilderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Request/CaptureDataBuilderTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Request/CaptureDataBuilderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Request/ChannelDataBuilderTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Request/ChannelDataBuilderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Request/CustomerDataBuilderTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Request/CustomerDataBuilderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Request/DescriptorDataBuilderTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Request/DescriptorDataBuilderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Request/KountPaymentDataBuilderTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Request/KountPaymentDataBuilderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Request/PayPal/DeviceDataBuilderTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Request/PayPal/DeviceDataBuilderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Request/PayPal/VaultDataBuilderTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Request/PayPal/VaultDataBuilderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Request/PaymentDataBuilderTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Request/PaymentDataBuilderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Request/RefundDataBuilderTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Request/RefundDataBuilderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Request/SettlementDataBuilderTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Request/SettlementDataBuilderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Request/ThreeDSecureDataBuilderTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Request/ThreeDSecureDataBuilderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Request/VaultCaptureDataBuilderTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Request/VaultCaptureDataBuilderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Request/VaultDataBuilderTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Request/VaultDataBuilderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Response/CardDetailsHandlerTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Response/CardDetailsHandlerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Response/PayPal/VaultDetailsHandlerTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Response/PayPal/VaultDetailsHandlerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Response/PayPalDetailsHandlerTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Response/PayPalDetailsHandlerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Response/PaymentDetailsHandlerTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Response/PaymentDetailsHandlerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Response/RiskDataHandlerTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Response/RiskDataHandlerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Response/ThreeDSecureDetailsHandlerTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Response/ThreeDSecureDetailsHandlerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Response/TransactionIdHandlerTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Response/TransactionIdHandlerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Response/VaultDetailsHandlerTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Response/VaultDetailsHandlerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Response/VoidHandlerTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Response/VoidHandlerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Validator/GeneralResponseValidatorTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Validator/GeneralResponseValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Validator/PaymentNonceResponseValidatorTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Validator/PaymentNonceResponseValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Gateway/Validator/ResponseValidatorTest.php b/app/code/Magento/Braintree/Test/Unit/Gateway/Validator/ResponseValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Helper/CcTypeTest.php b/app/code/Magento/Braintree/Test/Unit/Helper/CcTypeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Helper/CountryTest.php b/app/code/Magento/Braintree/Test/Unit/Helper/CountryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Model/Adminhtml/System/Config/CountryCreditCardTest.php b/app/code/Magento/Braintree/Test/Unit/Model/Adminhtml/System/Config/CountryCreditCardTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Model/Adminhtml/System/Config/CountryTest.php b/app/code/Magento/Braintree/Test/Unit/Model/Adminhtml/System/Config/CountryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Model/AvsEmsCodeMapperTest.php b/app/code/Magento/Braintree/Test/Unit/Model/AvsEmsCodeMapperTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Model/CvvEmsCodeMapperTest.php b/app/code/Magento/Braintree/Test/Unit/Model/CvvEmsCodeMapperTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Model/Paypal/Helper/OrderPlaceTest.php b/app/code/Magento/Braintree/Test/Unit/Model/Paypal/Helper/OrderPlaceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Model/Paypal/Helper/QuoteUpdaterTest.php b/app/code/Magento/Braintree/Test/Unit/Model/Paypal/Helper/QuoteUpdaterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Model/Paypal/Helper/ShippingMethodUpdaterTest.php b/app/code/Magento/Braintree/Test/Unit/Model/Paypal/Helper/ShippingMethodUpdaterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Model/Report/BraintreeSearchNodeStub.php b/app/code/Magento/Braintree/Test/Unit/Model/Report/BraintreeSearchNodeStub.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Model/Report/BraintreeTransactionStub.php b/app/code/Magento/Braintree/Test/Unit/Model/Report/BraintreeTransactionStub.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Model/Report/FilterMapperTest.php b/app/code/Magento/Braintree/Test/Unit/Model/Report/FilterMapperTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Model/Report/TransactionMapTest.php b/app/code/Magento/Braintree/Test/Unit/Model/Report/TransactionMapTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Model/Report/TransactionsCollectionTest.php b/app/code/Magento/Braintree/Test/Unit/Model/Report/TransactionsCollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Model/Ui/Adminhtml/PayPal/TokenUiComponentProviderTest.php b/app/code/Magento/Braintree/Test/Unit/Model/Ui/Adminhtml/PayPal/TokenUiComponentProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Model/Ui/Adminhtml/TokenUiComponentProviderTest.php b/app/code/Magento/Braintree/Test/Unit/Model/Ui/Adminhtml/TokenUiComponentProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Model/Ui/ConfigProviderTest.php b/app/code/Magento/Braintree/Test/Unit/Model/Ui/ConfigProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Model/Ui/PayPal/ConfigProviderTest.php b/app/code/Magento/Braintree/Test/Unit/Model/Ui/PayPal/ConfigProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Model/Ui/PayPal/TokenUiComponentProviderTest.php b/app/code/Magento/Braintree/Test/Unit/Model/Ui/PayPal/TokenUiComponentProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Observer/AddPaypalShortcutsTest.php b/app/code/Magento/Braintree/Test/Unit/Observer/AddPaypalShortcutsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Observer/DataAssignObserverTest.php b/app/code/Magento/Braintree/Test/Unit/Observer/DataAssignObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Ui/Component/Report/Filters/Type/DateRangeTest.php b/app/code/Magento/Braintree/Test/Unit/Ui/Component/Report/Filters/Type/DateRangeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Test/Unit/Ui/Component/Report/Listing/Column/CheckColumnOptionSourceTest.php b/app/code/Magento/Braintree/Test/Unit/Ui/Component/Report/Listing/Column/CheckColumnOptionSourceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Ui/Component/Report/Filters/Type/DateRange.php b/app/code/Magento/Braintree/Ui/Component/Report/Filters/Type/DateRange.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Ui/Component/Report/Listing/Column/PaymentType.php b/app/code/Magento/Braintree/Ui/Component/Report/Listing/Column/PaymentType.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Ui/Component/Report/Listing/Column/Status.php b/app/code/Magento/Braintree/Ui/Component/Report/Listing/Column/Status.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/Ui/Component/Report/Listing/Column/TransactionType.php b/app/code/Magento/Braintree/Ui/Component/Report/Listing/Column/TransactionType.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/composer.json b/app/code/Magento/Braintree/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/etc/acl.xml b/app/code/Magento/Braintree/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/etc/adminhtml/braintree_error_mapping.xml b/app/code/Magento/Braintree/etc/adminhtml/braintree_error_mapping.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/etc/adminhtml/di.xml b/app/code/Magento/Braintree/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/etc/adminhtml/menu.xml b/app/code/Magento/Braintree/etc/adminhtml/menu.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/etc/adminhtml/routes.xml b/app/code/Magento/Braintree/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/etc/adminhtml/system.xml b/app/code/Magento/Braintree/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/etc/braintree_error_mapping.xml b/app/code/Magento/Braintree/etc/braintree_error_mapping.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/etc/config.xml b/app/code/Magento/Braintree/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/etc/di.xml b/app/code/Magento/Braintree/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/etc/events.xml b/app/code/Magento/Braintree/etc/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/etc/frontend/di.xml b/app/code/Magento/Braintree/etc/frontend/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/etc/frontend/events.xml b/app/code/Magento/Braintree/etc/frontend/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/etc/frontend/routes.xml b/app/code/Magento/Braintree/etc/frontend/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/etc/frontend/sections.xml b/app/code/Magento/Braintree/etc/frontend/sections.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/etc/module.xml b/app/code/Magento/Braintree/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/i18n/en_US.csv b/app/code/Magento/Braintree/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/registration.php b/app/code/Magento/Braintree/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/view/adminhtml/layout/adminhtml_system_config_edit.xml b/app/code/Magento/Braintree/view/adminhtml/layout/adminhtml_system_config_edit.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/view/adminhtml/layout/braintree_report_index.xml b/app/code/Magento/Braintree/view/adminhtml/layout/braintree_report_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/view/adminhtml/layout/sales_order_create_index.xml b/app/code/Magento/Braintree/view/adminhtml/layout/sales_order_create_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/view/adminhtml/layout/sales_order_create_load_block_billing_method.xml b/app/code/Magento/Braintree/view/adminhtml/layout/sales_order_create_load_block_billing_method.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/view/adminhtml/templates/form/cc.phtml b/app/code/Magento/Braintree/view/adminhtml/templates/form/cc.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/view/adminhtml/templates/form/paypal/vault.phtml b/app/code/Magento/Braintree/view/adminhtml/templates/form/paypal/vault.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/view/adminhtml/templates/form/vault.phtml b/app/code/Magento/Braintree/view/adminhtml/templates/form/vault.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/view/adminhtml/templates/grid/tooltip.phtml b/app/code/Magento/Braintree/view/adminhtml/templates/grid/tooltip.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/view/adminhtml/templates/payment/script.phtml b/app/code/Magento/Braintree/view/adminhtml/templates/payment/script.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/view/adminhtml/ui_component/braintree_report.xml b/app/code/Magento/Braintree/view/adminhtml/ui_component/braintree_report.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/view/adminhtml/web/images/braintree_allinone.png b/app/code/Magento/Braintree/view/adminhtml/web/images/braintree_allinone.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/view/adminhtml/web/images/braintree_logo.png b/app/code/Magento/Braintree/view/adminhtml/web/images/braintree_logo.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/view/adminhtml/web/js/braintree.js b/app/code/Magento/Braintree/view/adminhtml/web/js/braintree.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/view/adminhtml/web/js/grid/filters/status.html b/app/code/Magento/Braintree/view/adminhtml/web/js/grid/filters/status.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/view/adminhtml/web/js/grid/provider.js b/app/code/Magento/Braintree/view/adminhtml/web/js/grid/provider.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/view/adminhtml/web/js/vault.js b/app/code/Magento/Braintree/view/adminhtml/web/js/vault.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/view/adminhtml/web/styles.css b/app/code/Magento/Braintree/view/adminhtml/web/styles.css
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/view/base/web/images/paypal-small.png b/app/code/Magento/Braintree/view/base/web/images/paypal-small.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/view/base/web/images/paypal.png b/app/code/Magento/Braintree/view/base/web/images/paypal.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/view/base/web/js/validator.js b/app/code/Magento/Braintree/view/base/web/js/validator.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/view/frontend/layout/braintree_paypal_review.xml b/app/code/Magento/Braintree/view/frontend/layout/braintree_paypal_review.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/view/frontend/layout/checkout_index_index.xml b/app/code/Magento/Braintree/view/frontend/layout/checkout_index_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/view/frontend/layout/vault_cards_listaction.xml b/app/code/Magento/Braintree/view/frontend/layout/vault_cards_listaction.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/view/frontend/requirejs-config.js b/app/code/Magento/Braintree/view/frontend/requirejs-config.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/view/frontend/templates/paypal/button.phtml b/app/code/Magento/Braintree/view/frontend/templates/paypal/button.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/view/frontend/templates/paypal/vault_token.phtml b/app/code/Magento/Braintree/view/frontend/templates/paypal/vault_token.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/view/frontend/web/js/paypal/button.js b/app/code/Magento/Braintree/view/frontend/web/js/paypal/button.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/view/frontend/web/js/paypal/form-builder.js b/app/code/Magento/Braintree/view/frontend/web/js/paypal/form-builder.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/view/frontend/web/js/view/payment/3d-secure.js b/app/code/Magento/Braintree/view/frontend/web/js/view/payment/3d-secure.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/view/frontend/web/js/view/payment/adapter.js b/app/code/Magento/Braintree/view/frontend/web/js/view/payment/adapter.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/view/frontend/web/js/view/payment/braintree.js b/app/code/Magento/Braintree/view/frontend/web/js/view/payment/braintree.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/view/frontend/web/js/view/payment/method-renderer/cc-form.js b/app/code/Magento/Braintree/view/frontend/web/js/view/payment/method-renderer/cc-form.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/view/frontend/web/js/view/payment/method-renderer/hosted-fields.js b/app/code/Magento/Braintree/view/frontend/web/js/view/payment/method-renderer/hosted-fields.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/view/frontend/web/js/view/payment/method-renderer/paypal-vault.js b/app/code/Magento/Braintree/view/frontend/web/js/view/payment/method-renderer/paypal-vault.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/view/frontend/web/js/view/payment/method-renderer/paypal.js b/app/code/Magento/Braintree/view/frontend/web/js/view/payment/method-renderer/paypal.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/view/frontend/web/js/view/payment/method-renderer/vault.js b/app/code/Magento/Braintree/view/frontend/web/js/view/payment/method-renderer/vault.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/view/frontend/web/js/view/payment/validator-handler.js b/app/code/Magento/Braintree/view/frontend/web/js/view/payment/validator-handler.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/view/frontend/web/template/payment/form.html b/app/code/Magento/Braintree/view/frontend/web/template/payment/form.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/view/frontend/web/template/payment/paypal.html b/app/code/Magento/Braintree/view/frontend/web/template/payment/paypal.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Braintree/view/frontend/web/template/payment/paypal/vault.html b/app/code/Magento/Braintree/view/frontend/web/template/payment/paypal/vault.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Api/Data/BundleOptionInterface.php b/app/code/Magento/Bundle/Api/Data/BundleOptionInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Api/Data/LinkInterface.php b/app/code/Magento/Bundle/Api/Data/LinkInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Api/Data/OptionInterface.php b/app/code/Magento/Bundle/Api/Data/OptionInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Api/Data/OptionTypeInterface.php b/app/code/Magento/Bundle/Api/Data/OptionTypeInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Api/ProductLinkManagementInterface.php b/app/code/Magento/Bundle/Api/ProductLinkManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Api/ProductOptionManagementInterface.php b/app/code/Magento/Bundle/Api/ProductOptionManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Api/ProductOptionRepositoryInterface.php b/app/code/Magento/Bundle/Api/ProductOptionRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Api/ProductOptionTypeListInterface.php b/app/code/Magento/Bundle/Api/ProductOptionTypeListInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Bundle.php b/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Bundle.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Checkbox.php b/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Checkbox.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Multi.php b/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Multi.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Radio.php b/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Radio.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Select.php b/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/Select.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Attributes.php b/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Attributes.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Attributes/Extend.php b/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Attributes/Extend.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Attributes/Special.php b/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Attributes/Special.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle.php b/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option.php b/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Search.php b/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Search.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Search/Grid.php b/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Search/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Selection.php b/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Selection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tabs.php b/app/code/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tabs.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Block/Adminhtml/Order/Create/Sidebar.php b/app/code/Magento/Bundle/Block/Adminhtml/Order/Create/Sidebar.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Block/Adminhtml/Sales/Order/Items/Renderer.php b/app/code/Magento/Bundle/Block/Adminhtml/Sales/Order/Items/Renderer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Block/Adminhtml/Sales/Order/View/Items/Renderer.php b/app/code/Magento/Bundle/Block/Adminhtml/Sales/Order/View/Items/Renderer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Block/Catalog/Product/Price.php b/app/code/Magento/Bundle/Block/Catalog/Product/Price.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Block/Catalog/Product/View/Type/Bundle.php b/app/code/Magento/Bundle/Block/Catalog/Product/View/Type/Bundle.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Block/Catalog/Product/View/Type/Bundle/Option.php b/app/code/Magento/Bundle/Block/Catalog/Product/View/Type/Bundle/Option.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Block/Catalog/Product/View/Type/Bundle/Option/Checkbox.php b/app/code/Magento/Bundle/Block/Catalog/Product/View/Type/Bundle/Option/Checkbox.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Block/Catalog/Product/View/Type/Bundle/Option/Multi.php b/app/code/Magento/Bundle/Block/Catalog/Product/View/Type/Bundle/Option/Multi.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Block/Catalog/Product/View/Type/Bundle/Option/Radio.php b/app/code/Magento/Bundle/Block/Catalog/Product/View/Type/Bundle/Option/Radio.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Block/Catalog/Product/View/Type/Bundle/Option/Select.php b/app/code/Magento/Bundle/Block/Catalog/Product/View/Type/Bundle/Option/Select.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Block/Checkout/Cart/Item/Renderer.php b/app/code/Magento/Bundle/Block/Checkout/Cart/Item/Renderer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Block/Sales/Order/Items/Renderer.php b/app/code/Magento/Bundle/Block/Sales/Order/Items/Renderer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/AddAttributeToTemplate.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/AddAttributeToTemplate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/AlertsPriceGrid.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/AlertsPriceGrid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/AlertsStockGrid.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/AlertsStockGrid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Categories.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Categories.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Crosssell.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Crosssell.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/CrosssellGrid.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/CrosssellGrid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/CustomOptions.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/CustomOptions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Duplicate.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Duplicate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Edit.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Form.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Grid.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/GridOnly.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/GridOnly.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Index.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/MassDelete.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/MassDelete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/MassStatus.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/MassStatus.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/NewAction.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/NewAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Options.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Options.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/OptionsImportGrid.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/OptionsImportGrid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Related.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Related.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/RelatedGrid.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/RelatedGrid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Save.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/ShowUpdateResult.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/ShowUpdateResult.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/SuggestAttributes.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/SuggestAttributes.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Upsell.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Upsell.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/UpsellGrid.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/UpsellGrid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Validate.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Validate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Wysiwyg.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Product/Edit/Wysiwyg.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Selection/Grid.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Selection/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Selection/Search.php b/app/code/Magento/Bundle/Controller/Adminhtml/Bundle/Selection/Search.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Controller/Adminhtml/Product/Initialization/Helper/Plugin/Bundle.php b/app/code/Magento/Bundle/Controller/Adminhtml/Product/Initialization/Helper/Plugin/Bundle.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Helper/Catalog/Product/Configuration.php b/app/code/Magento/Bundle/Helper/Catalog/Product/Configuration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Helper/Data.php b/app/code/Magento/Bundle/Helper/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/LICENSE.txt b/app/code/Magento/Bundle/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/LICENSE_AFL.txt b/app/code/Magento/Bundle/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Model/BundleOption.php b/app/code/Magento/Bundle/Model/BundleOption.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Model/CartItemProcessor.php b/app/code/Magento/Bundle/Model/CartItemProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Model/Link.php b/app/code/Magento/Bundle/Model/Link.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Model/LinkManagement.php b/app/code/Magento/Bundle/Model/LinkManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Model/Option.php b/app/code/Magento/Bundle/Model/Option.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Model/Option/Validator.php b/app/code/Magento/Bundle/Model/Option/Validator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Model/OptionManagement.php b/app/code/Magento/Bundle/Model/OptionManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Model/OptionRepository.php b/app/code/Magento/Bundle/Model/OptionRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Model/OptionTypeList.php b/app/code/Magento/Bundle/Model/OptionTypeList.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Model/Plugin/PriceBackend.php b/app/code/Magento/Bundle/Model/Plugin/PriceBackend.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Model/Plugin/Product.php b/app/code/Magento/Bundle/Model/Plugin/Product.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Model/Plugin/QuoteItem.php b/app/code/Magento/Bundle/Model/Plugin/QuoteItem.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Model/Product/Attribute/Source/Price/View.php b/app/code/Magento/Bundle/Model/Product/Attribute/Source/Price/View.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Model/Product/Attribute/Source/Shipment/Type.php b/app/code/Magento/Bundle/Model/Product/Attribute/Source/Shipment/Type.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Model/Product/CatalogPrice.php b/app/code/Magento/Bundle/Model/Product/CatalogPrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Model/Product/CopyConstructor/Bundle.php b/app/code/Magento/Bundle/Model/Product/CopyConstructor/Bundle.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Model/Product/LinksList.php b/app/code/Magento/Bundle/Model/Product/LinksList.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Model/Product/OptionList.php b/app/code/Magento/Bundle/Model/Product/OptionList.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Model/Product/Price.php b/app/code/Magento/Bundle/Model/Product/Price.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Model/Product/ReadHandler.php b/app/code/Magento/Bundle/Model/Product/ReadHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Model/Product/SaveHandler.php b/app/code/Magento/Bundle/Model/Product/SaveHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Model/Product/Type.php b/app/code/Magento/Bundle/Model/Product/Type.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Model/ProductOptionProcessor.php b/app/code/Magento/Bundle/Model/ProductOptionProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Model/ResourceModel/Bundle.php b/app/code/Magento/Bundle/Model/ResourceModel/Bundle.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Model/ResourceModel/Indexer/BundleOptionStockDataSelectBuilder.php b/app/code/Magento/Bundle/Model/ResourceModel/Indexer/BundleOptionStockDataSelectBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Model/ResourceModel/Indexer/Price.php b/app/code/Magento/Bundle/Model/ResourceModel/Indexer/Price.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Model/ResourceModel/Indexer/Stock.php b/app/code/Magento/Bundle/Model/ResourceModel/Indexer/Stock.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Model/ResourceModel/Indexer/StockStatusSelectBuilder.php b/app/code/Magento/Bundle/Model/ResourceModel/Indexer/StockStatusSelectBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Model/ResourceModel/Option.php b/app/code/Magento/Bundle/Model/ResourceModel/Option.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Model/ResourceModel/Option/Collection.php b/app/code/Magento/Bundle/Model/ResourceModel/Option/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Model/ResourceModel/Selection.php b/app/code/Magento/Bundle/Model/ResourceModel/Selection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Model/ResourceModel/Selection/Collection.php b/app/code/Magento/Bundle/Model/ResourceModel/Selection/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Model/ResourceModel/Selection/Collection/FilterApplier.php b/app/code/Magento/Bundle/Model/ResourceModel/Selection/Collection/FilterApplier.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Model/ResourceModel/Selection/Plugin/Collection.php b/app/code/Magento/Bundle/Model/ResourceModel/Selection/Plugin/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/AbstractItems.php b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/AbstractItems.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Creditmemo.php b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Creditmemo.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Invoice.php b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Invoice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Shipment.php b/app/code/Magento/Bundle/Model/Sales/Order/Pdf/Items/Shipment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Model/Sales/Order/Plugin/Item.php b/app/code/Magento/Bundle/Model/Sales/Order/Plugin/Item.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Model/Selection.php b/app/code/Magento/Bundle/Model/Selection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Model/Source/Option/Selection/Price/Type.php b/app/code/Magento/Bundle/Model/Source/Option/Selection/Price/Type.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Model/Source/Option/Type.php b/app/code/Magento/Bundle/Model/Source/Option/Type.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Observer/AppendUpsellProductsObserver.php b/app/code/Magento/Bundle/Observer/AppendUpsellProductsObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Observer/InitOptionRendererObserver.php b/app/code/Magento/Bundle/Observer/InitOptionRendererObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Observer/SetAttributeTabBlockObserver.php b/app/code/Magento/Bundle/Observer/SetAttributeTabBlockObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Pricing/Adjustment/BundleCalculatorInterface.php b/app/code/Magento/Bundle/Pricing/Adjustment/BundleCalculatorInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Pricing/Adjustment/Calculator.php b/app/code/Magento/Bundle/Pricing/Adjustment/Calculator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Pricing/Adjustment/DefaultSelectionPriceListProvider.php b/app/code/Magento/Bundle/Pricing/Adjustment/DefaultSelectionPriceListProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Pricing/Adjustment/SelectionPriceListProviderInterface.php b/app/code/Magento/Bundle/Pricing/Adjustment/SelectionPriceListProviderInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Pricing/Price/BundleOptionPrice.php b/app/code/Magento/Bundle/Pricing/Price/BundleOptionPrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Pricing/Price/BundleOptionPriceInterface.php b/app/code/Magento/Bundle/Pricing/Price/BundleOptionPriceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Pricing/Price/BundleRegularPrice.php b/app/code/Magento/Bundle/Pricing/Price/BundleRegularPrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Pricing/Price/BundleSelectionFactory.php b/app/code/Magento/Bundle/Pricing/Price/BundleSelectionFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Pricing/Price/BundleSelectionPrice.php b/app/code/Magento/Bundle/Pricing/Price/BundleSelectionPrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Pricing/Price/ConfiguredPrice.php b/app/code/Magento/Bundle/Pricing/Price/ConfiguredPrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Pricing/Price/DiscountCalculator.php b/app/code/Magento/Bundle/Pricing/Price/DiscountCalculator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Pricing/Price/DiscountProviderInterface.php b/app/code/Magento/Bundle/Pricing/Price/DiscountProviderInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Pricing/Price/FinalPrice.php b/app/code/Magento/Bundle/Pricing/Price/FinalPrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Pricing/Price/FinalPriceInterface.php b/app/code/Magento/Bundle/Pricing/Price/FinalPriceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Pricing/Price/RegularPriceInterface.php b/app/code/Magento/Bundle/Pricing/Price/RegularPriceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Pricing/Price/SpecialPrice.php b/app/code/Magento/Bundle/Pricing/Price/SpecialPrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Pricing/Price/TierPrice.php b/app/code/Magento/Bundle/Pricing/Price/TierPrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Pricing/Render/FinalPriceBox.php b/app/code/Magento/Bundle/Pricing/Render/FinalPriceBox.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/README.md b/app/code/Magento/Bundle/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Setup/InstallData.php b/app/code/Magento/Bundle/Setup/InstallData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Setup/InstallSchema.php b/app/code/Magento/Bundle/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Setup/Recurring.php b/app/code/Magento/Bundle/Setup/Recurring.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Setup/UpgradeData.php b/app/code/Magento/Bundle/Setup/UpgradeData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/CheckboxTest.php b/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/CheckboxTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/MultiTest.php b/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/MultiTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/RadioTest.php b/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/RadioTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/SelectTest.php b/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Options/Type/SelectTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Catalog/Product/Edit/Tab/Attributes/ExtendTest.php b/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Catalog/Product/Edit/Tab/Attributes/ExtendTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/OptionTest.php b/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/OptionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Sales/Order/Items/RendererTest.php b/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Sales/Order/Items/RendererTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Sales/Order/View/Items/RendererTest.php b/app/code/Magento/Bundle/Test/Unit/Block/Adminhtml/Sales/Order/View/Items/RendererTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Block/Catalog/Product/View/Type/Bundle/OptionTest.php b/app/code/Magento/Bundle/Test/Unit/Block/Catalog/Product/View/Type/Bundle/OptionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Block/Catalog/Product/View/Type/BundleTest.php b/app/code/Magento/Bundle/Test/Unit/Block/Catalog/Product/View/Type/BundleTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Block/Sales/Order/Items/RendererTest.php b/app/code/Magento/Bundle/Test/Unit/Block/Sales/Order/Items/RendererTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Controller/Adminhtml/Bundle/Product/Edit/FormTest.php b/app/code/Magento/Bundle/Test/Unit/Controller/Adminhtml/Bundle/Product/Edit/FormTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Controller/Adminhtml/Bundle/Selection/GridTest.php b/app/code/Magento/Bundle/Test/Unit/Controller/Adminhtml/Bundle/Selection/GridTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Controller/Adminhtml/Bundle/Selection/SearchTest.php b/app/code/Magento/Bundle/Test/Unit/Controller/Adminhtml/Bundle/Selection/SearchTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Controller/Adminhtml/Product/Initialization/Helper/Plugin/BundleTest.php b/app/code/Magento/Bundle/Test/Unit/Controller/Adminhtml/Product/Initialization/Helper/Plugin/BundleTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Helper/Catalog/Product/ConfigurationTest.php b/app/code/Magento/Bundle/Test/Unit/Helper/Catalog/Product/ConfigurationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Helper/DataTest.php b/app/code/Magento/Bundle/Test/Unit/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Model/CartItemProcessorTest.php b/app/code/Magento/Bundle/Test/Unit/Model/CartItemProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Model/LinkManagementTest.php b/app/code/Magento/Bundle/Test/Unit/Model/LinkManagementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Model/Option/ValidatorTest.php b/app/code/Magento/Bundle/Test/Unit/Model/Option/ValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Model/OptionManagementTest.php b/app/code/Magento/Bundle/Test/Unit/Model/OptionManagementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Model/OptionRepositoryTest.php b/app/code/Magento/Bundle/Test/Unit/Model/OptionRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Model/OptionTest.php b/app/code/Magento/Bundle/Test/Unit/Model/OptionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Model/OptionTypeListTest.php b/app/code/Magento/Bundle/Test/Unit/Model/OptionTypeListTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Model/Plugin/PriceBackendTest.php b/app/code/Magento/Bundle/Test/Unit/Model/Plugin/PriceBackendTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Model/Plugin/ProductTest.php b/app/code/Magento/Bundle/Test/Unit/Model/Plugin/ProductTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Model/Plugin/QuoteItemTest.php b/app/code/Magento/Bundle/Test/Unit/Model/Plugin/QuoteItemTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Model/Product/Attribute/Source/Price/ViewTest.php b/app/code/Magento/Bundle/Test/Unit/Model/Product/Attribute/Source/Price/ViewTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Model/Product/CatalogPriceTest.php b/app/code/Magento/Bundle/Test/Unit/Model/Product/CatalogPriceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Model/Product/CopyConstructor/BundleTest.php b/app/code/Magento/Bundle/Test/Unit/Model/Product/CopyConstructor/BundleTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Model/Product/LinksListTest.php b/app/code/Magento/Bundle/Test/Unit/Model/Product/LinksListTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Model/Product/OptionListTest.php b/app/code/Magento/Bundle/Test/Unit/Model/Product/OptionListTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Model/Product/PriceTest.php b/app/code/Magento/Bundle/Test/Unit/Model/Product/PriceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Model/Product/TypeTest.php b/app/code/Magento/Bundle/Test/Unit/Model/Product/TypeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Model/ProductOptionProcessorTest.php b/app/code/Magento/Bundle/Test/Unit/Model/ProductOptionProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Model/ResourceModel/Selection/CollectionTest.php b/app/code/Magento/Bundle/Test/Unit/Model/ResourceModel/Selection/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Model/Sales/Order/Pdf/Items/AbstractItemsTest.php b/app/code/Magento/Bundle/Test/Unit/Model/Sales/Order/Pdf/Items/AbstractItemsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Model/Sales/Order/Plugin/ItemTest.php b/app/code/Magento/Bundle/Test/Unit/Model/Sales/Order/Plugin/ItemTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Pricing/Adjustment/CalculatorTest.php b/app/code/Magento/Bundle/Test/Unit/Pricing/Adjustment/CalculatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Pricing/Price/BundleOptionPriceTest.php b/app/code/Magento/Bundle/Test/Unit/Pricing/Price/BundleOptionPriceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Pricing/Price/BundleRegularPriceTest.php b/app/code/Magento/Bundle/Test/Unit/Pricing/Price/BundleRegularPriceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Pricing/Price/BundleSelectionFactoryTest.php b/app/code/Magento/Bundle/Test/Unit/Pricing/Price/BundleSelectionFactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Pricing/Price/BundleSelectionPriceTest.php b/app/code/Magento/Bundle/Test/Unit/Pricing/Price/BundleSelectionPriceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Pricing/Price/DiscountCalculatorTest.php b/app/code/Magento/Bundle/Test/Unit/Pricing/Price/DiscountCalculatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Pricing/Price/FinalPriceTest.php b/app/code/Magento/Bundle/Test/Unit/Pricing/Price/FinalPriceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Pricing/Price/SpecialPriceTest.php b/app/code/Magento/Bundle/Test/Unit/Pricing/Price/SpecialPriceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Pricing/Price/TierPriceTest.php b/app/code/Magento/Bundle/Test/Unit/Pricing/Price/TierPriceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Pricing/Render/FinalPriceBoxTest.php b/app/code/Magento/Bundle/Test/Unit/Pricing/Render/FinalPriceBoxTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Ui/DataProvider/Product/BundleDataProviderTest.php b/app/code/Magento/Bundle/Test/Unit/Ui/DataProvider/Product/BundleDataProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Ui/DataProvider/Product/Form/Modifier/AbstractModifierTest.php b/app/code/Magento/Bundle/Test/Unit/Ui/DataProvider/Product/Form/Modifier/AbstractModifierTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Ui/DataProvider/Product/Form/Modifier/BundleQuantityTest.php b/app/code/Magento/Bundle/Test/Unit/Ui/DataProvider/Product/Form/Modifier/BundleQuantityTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Ui/DataProvider/Product/Form/Modifier/BundleSkuTest.php b/app/code/Magento/Bundle/Test/Unit/Ui/DataProvider/Product/Form/Modifier/BundleSkuTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Ui/DataProvider/Product/Form/Modifier/BundleWeightTest.php b/app/code/Magento/Bundle/Test/Unit/Ui/DataProvider/Product/Form/Modifier/BundleWeightTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Ui/DataProvider/Product/Form/Modifier/CompositeTest.php b/app/code/Magento/Bundle/Test/Unit/Ui/DataProvider/Product/Form/Modifier/CompositeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Test/Unit/Ui/DataProvider/Product/Listing/Collector/BundlePriceTest.php b/app/code/Magento/Bundle/Test/Unit/Ui/DataProvider/Product/Listing/Collector/BundlePriceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Ui/DataProvider/Product/BundleDataProvider.php b/app/code/Magento/Bundle/Ui/DataProvider/Product/BundleDataProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundleAdvancedPricing.php b/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundleAdvancedPricing.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundleCustomOptions.php b/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundleCustomOptions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundlePanel.php b/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundlePanel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundlePrice.php b/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundlePrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundleQuantity.php b/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundleQuantity.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundleSku.php b/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundleSku.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundleWeight.php b/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundleWeight.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/Composite.php b/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/Composite.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/StockData.php b/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/StockData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/Ui/DataProvider/Product/Listing/Collector/BundlePrice.php b/app/code/Magento/Bundle/Ui/DataProvider/Product/Listing/Collector/BundlePrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/composer.json b/app/code/Magento/Bundle/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/etc/adminhtml/di.xml b/app/code/Magento/Bundle/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/etc/adminhtml/events.xml b/app/code/Magento/Bundle/etc/adminhtml/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/etc/adminhtml/routes.xml b/app/code/Magento/Bundle/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/etc/catalog_attributes.xml b/app/code/Magento/Bundle/etc/catalog_attributes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/etc/config.xml b/app/code/Magento/Bundle/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/etc/di.xml b/app/code/Magento/Bundle/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/etc/events.xml b/app/code/Magento/Bundle/etc/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/etc/extension_attributes.xml b/app/code/Magento/Bundle/etc/extension_attributes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/etc/frontend/di.xml b/app/code/Magento/Bundle/etc/frontend/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/etc/frontend/events.xml b/app/code/Magento/Bundle/etc/frontend/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/etc/module.xml b/app/code/Magento/Bundle/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/etc/pdf.xml b/app/code/Magento/Bundle/etc/pdf.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/etc/product_types.xml b/app/code/Magento/Bundle/etc/product_types.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/etc/sales.xml b/app/code/Magento/Bundle/etc/sales.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/etc/webapi.xml b/app/code/Magento/Bundle/etc/webapi.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/etc/webapi_rest/di.xml b/app/code/Magento/Bundle/etc/webapi_rest/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/etc/webapi_soap/di.xml b/app/code/Magento/Bundle/etc/webapi_soap/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/i18n/en_US.csv b/app/code/Magento/Bundle/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/registration.php b/app/code/Magento/Bundle/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/adminhtml/layout/adminhtml_order_shipment_new.xml b/app/code/Magento/Bundle/view/adminhtml/layout/adminhtml_order_shipment_new.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/adminhtml/layout/adminhtml_order_shipment_view.xml b/app/code/Magento/Bundle/view/adminhtml/layout/adminhtml_order_shipment_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/adminhtml/layout/catalog_product_bundle.xml b/app/code/Magento/Bundle/view/adminhtml/layout/catalog_product_bundle.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/adminhtml/layout/catalog_product_new.xml b/app/code/Magento/Bundle/view/adminhtml/layout/catalog_product_new.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/adminhtml/layout/catalog_product_view_type_bundle.xml b/app/code/Magento/Bundle/view/adminhtml/layout/catalog_product_view_type_bundle.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/adminhtml/layout/customer_index_wishlist.xml b/app/code/Magento/Bundle/view/adminhtml/layout/customer_index_wishlist.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/adminhtml/layout/sales_order_creditmemo_new.xml b/app/code/Magento/Bundle/view/adminhtml/layout/sales_order_creditmemo_new.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/adminhtml/layout/sales_order_creditmemo_updateqty.xml b/app/code/Magento/Bundle/view/adminhtml/layout/sales_order_creditmemo_updateqty.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/adminhtml/layout/sales_order_creditmemo_view.xml b/app/code/Magento/Bundle/view/adminhtml/layout/sales_order_creditmemo_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/adminhtml/layout/sales_order_invoice_new.xml b/app/code/Magento/Bundle/view/adminhtml/layout/sales_order_invoice_new.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/adminhtml/layout/sales_order_invoice_updateqty.xml b/app/code/Magento/Bundle/view/adminhtml/layout/sales_order_invoice_updateqty.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/adminhtml/layout/sales_order_invoice_view.xml b/app/code/Magento/Bundle/view/adminhtml/layout/sales_order_invoice_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/adminhtml/layout/sales_order_view.xml b/app/code/Magento/Bundle/view/adminhtml/layout/sales_order_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/adminhtml/templates/catalog/product/edit/tab/attributes/extend.phtml b/app/code/Magento/Bundle/view/adminhtml/templates/catalog/product/edit/tab/attributes/extend.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/adminhtml/templates/product/composite/fieldset/options/bundle.phtml b/app/code/Magento/Bundle/view/adminhtml/templates/product/composite/fieldset/options/bundle.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/adminhtml/templates/product/composite/fieldset/options/type/checkbox.phtml b/app/code/Magento/Bundle/view/adminhtml/templates/product/composite/fieldset/options/type/checkbox.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/adminhtml/templates/product/composite/fieldset/options/type/multi.phtml b/app/code/Magento/Bundle/view/adminhtml/templates/product/composite/fieldset/options/type/multi.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/adminhtml/templates/product/composite/fieldset/options/type/radio.phtml b/app/code/Magento/Bundle/view/adminhtml/templates/product/composite/fieldset/options/type/radio.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/adminhtml/templates/product/composite/fieldset/options/type/select.phtml b/app/code/Magento/Bundle/view/adminhtml/templates/product/composite/fieldset/options/type/select.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/adminhtml/templates/product/edit/bundle.phtml b/app/code/Magento/Bundle/view/adminhtml/templates/product/edit/bundle.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/adminhtml/templates/product/edit/bundle/option.phtml b/app/code/Magento/Bundle/view/adminhtml/templates/product/edit/bundle/option.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/adminhtml/templates/product/edit/bundle/option/search.phtml b/app/code/Magento/Bundle/view/adminhtml/templates/product/edit/bundle/option/search.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/adminhtml/templates/product/edit/bundle/option/selection.phtml b/app/code/Magento/Bundle/view/adminhtml/templates/product/edit/bundle/option/selection.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/adminhtml/templates/product/stock/disabler.phtml b/app/code/Magento/Bundle/view/adminhtml/templates/product/stock/disabler.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/adminhtml/templates/sales/creditmemo/create/items/renderer.phtml b/app/code/Magento/Bundle/view/adminhtml/templates/sales/creditmemo/create/items/renderer.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/adminhtml/templates/sales/creditmemo/view/items/renderer.phtml b/app/code/Magento/Bundle/view/adminhtml/templates/sales/creditmemo/view/items/renderer.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/adminhtml/templates/sales/invoice/create/items/renderer.phtml b/app/code/Magento/Bundle/view/adminhtml/templates/sales/invoice/create/items/renderer.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/adminhtml/templates/sales/invoice/view/items/renderer.phtml b/app/code/Magento/Bundle/view/adminhtml/templates/sales/invoice/view/items/renderer.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/adminhtml/templates/sales/order/view/items/renderer.phtml b/app/code/Magento/Bundle/view/adminhtml/templates/sales/order/view/items/renderer.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/adminhtml/templates/sales/shipment/create/items/renderer.phtml b/app/code/Magento/Bundle/view/adminhtml/templates/sales/shipment/create/items/renderer.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/adminhtml/templates/sales/shipment/view/items/renderer.phtml b/app/code/Magento/Bundle/view/adminhtml/templates/sales/shipment/view/items/renderer.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/adminhtml/ui_component/bundle_product_listing.xml b/app/code/Magento/Bundle/view/adminhtml/ui_component/bundle_product_listing.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/adminhtml/web/css/bundle-product.css b/app/code/Magento/Bundle/view/adminhtml/web/css/bundle-product.css
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/adminhtml/web/js/bundle-product.js b/app/code/Magento/Bundle/view/adminhtml/web/js/bundle-product.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/adminhtml/web/js/bundle-type-handler.js b/app/code/Magento/Bundle/view/adminhtml/web/js/bundle-type-handler.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/adminhtml/web/js/components/bundle-checkbox.js b/app/code/Magento/Bundle/view/adminhtml/web/js/components/bundle-checkbox.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/adminhtml/web/js/components/bundle-dynamic-rows-grid.js b/app/code/Magento/Bundle/view/adminhtml/web/js/components/bundle-dynamic-rows-grid.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/adminhtml/web/js/components/bundle-dynamic-rows.js b/app/code/Magento/Bundle/view/adminhtml/web/js/components/bundle-dynamic-rows.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/adminhtml/web/js/components/bundle-input-type.js b/app/code/Magento/Bundle/view/adminhtml/web/js/components/bundle-input-type.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/adminhtml/web/js/components/bundle-option-qty.js b/app/code/Magento/Bundle/view/adminhtml/web/js/components/bundle-option-qty.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/adminhtml/web/js/components/bundle-record.js b/app/code/Magento/Bundle/view/adminhtml/web/js/components/bundle-record.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/base/layout/catalog_product_prices.xml b/app/code/Magento/Bundle/view/base/layout/catalog_product_prices.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/base/templates/product/price/final_price.phtml b/app/code/Magento/Bundle/view/base/templates/product/price/final_price.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/base/templates/product/price/selection/amount.phtml b/app/code/Magento/Bundle/view/base/templates/product/price/selection/amount.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/base/templates/product/price/tier_prices.phtml b/app/code/Magento/Bundle/view/base/templates/product/price/tier_prices.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/base/web/js/price-bundle.js b/app/code/Magento/Bundle/view/base/web/js/price-bundle.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/base/web/template/product/final_price.html b/app/code/Magento/Bundle/view/base/web/template/product/final_price.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/base/web/template/product/price/minimal_price.html b/app/code/Magento/Bundle/view/base/web/template/product/price/minimal_price.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/frontend/layout/catalog_product_view_type_bundle.xml b/app/code/Magento/Bundle/view/frontend/layout/catalog_product_view_type_bundle.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/frontend/layout/catalog_product_view_type_simple.xml b/app/code/Magento/Bundle/view/frontend/layout/catalog_product_view_type_simple.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/frontend/layout/checkout_cart_configure_type_bundle.xml b/app/code/Magento/Bundle/view/frontend/layout/checkout_cart_configure_type_bundle.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/frontend/layout/checkout_cart_item_renderers.xml b/app/code/Magento/Bundle/view/frontend/layout/checkout_cart_item_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/frontend/layout/checkout_onepage_review_item_renderers.xml b/app/code/Magento/Bundle/view/frontend/layout/checkout_onepage_review_item_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/frontend/layout/default.xml b/app/code/Magento/Bundle/view/frontend/layout/default.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/frontend/layout/sales_email_order_creditmemo_renderers.xml b/app/code/Magento/Bundle/view/frontend/layout/sales_email_order_creditmemo_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/frontend/layout/sales_email_order_invoice_renderers.xml b/app/code/Magento/Bundle/view/frontend/layout/sales_email_order_invoice_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/frontend/layout/sales_email_order_renderers.xml b/app/code/Magento/Bundle/view/frontend/layout/sales_email_order_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/frontend/layout/sales_email_order_shipment_renderers.xml b/app/code/Magento/Bundle/view/frontend/layout/sales_email_order_shipment_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/frontend/layout/sales_order_creditmemo_renderers.xml b/app/code/Magento/Bundle/view/frontend/layout/sales_order_creditmemo_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/frontend/layout/sales_order_invoice_renderers.xml b/app/code/Magento/Bundle/view/frontend/layout/sales_order_invoice_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/frontend/layout/sales_order_item_renderers.xml b/app/code/Magento/Bundle/view/frontend/layout/sales_order_item_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/frontend/layout/sales_order_print_creditmemo_renderers.xml b/app/code/Magento/Bundle/view/frontend/layout/sales_order_print_creditmemo_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/frontend/layout/sales_order_print_invoice_renderers.xml b/app/code/Magento/Bundle/view/frontend/layout/sales_order_print_invoice_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/frontend/layout/sales_order_print_renderers.xml b/app/code/Magento/Bundle/view/frontend/layout/sales_order_print_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/frontend/layout/sales_order_print_shipment_renderers.xml b/app/code/Magento/Bundle/view/frontend/layout/sales_order_print_shipment_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/frontend/layout/sales_order_shipment_renderers.xml b/app/code/Magento/Bundle/view/frontend/layout/sales_order_shipment_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/frontend/requirejs-config.js b/app/code/Magento/Bundle/view/frontend/requirejs-config.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/backbutton.phtml b/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/backbutton.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/customize.phtml b/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/customize.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/options/notice.phtml b/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/options/notice.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/summary.phtml b/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/summary.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/type/bundle.phtml b/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/type/bundle.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/type/bundle/option/checkbox.phtml b/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/type/bundle/option/checkbox.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/type/bundle/option/multi.phtml b/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/type/bundle/option/multi.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/type/bundle/option/radio.phtml b/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/type/bundle/option/radio.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/type/bundle/option/select.phtml b/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/type/bundle/option/select.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/type/bundle/options.phtml b/app/code/Magento/Bundle/view/frontend/templates/catalog/product/view/type/bundle/options.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/frontend/templates/email/order/items/creditmemo/default.phtml b/app/code/Magento/Bundle/view/frontend/templates/email/order/items/creditmemo/default.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/frontend/templates/email/order/items/invoice/default.phtml b/app/code/Magento/Bundle/view/frontend/templates/email/order/items/invoice/default.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/frontend/templates/email/order/items/order/default.phtml b/app/code/Magento/Bundle/view/frontend/templates/email/order/items/order/default.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/frontend/templates/email/order/items/shipment/default.phtml b/app/code/Magento/Bundle/view/frontend/templates/email/order/items/shipment/default.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/frontend/templates/js/components.phtml b/app/code/Magento/Bundle/view/frontend/templates/js/components.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/frontend/templates/sales/order/creditmemo/items/renderer.phtml b/app/code/Magento/Bundle/view/frontend/templates/sales/order/creditmemo/items/renderer.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/frontend/templates/sales/order/invoice/items/renderer.phtml b/app/code/Magento/Bundle/view/frontend/templates/sales/order/invoice/items/renderer.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/frontend/templates/sales/order/items/renderer.phtml b/app/code/Magento/Bundle/view/frontend/templates/sales/order/items/renderer.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/frontend/templates/sales/order/shipment/items/renderer.phtml b/app/code/Magento/Bundle/view/frontend/templates/sales/order/shipment/items/renderer.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/frontend/ui_component/widget_recently_compared.xml b/app/code/Magento/Bundle/view/frontend/ui_component/widget_recently_compared.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/frontend/ui_component/widget_recently_viewed.xml b/app/code/Magento/Bundle/view/frontend/ui_component/widget_recently_viewed.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/frontend/web/js/float.js b/app/code/Magento/Bundle/view/frontend/web/js/float.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/frontend/web/js/product-summary.js b/app/code/Magento/Bundle/view/frontend/web/js/product-summary.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Bundle/view/frontend/web/js/slide.js b/app/code/Magento/Bundle/view/frontend/web/js/slide.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/BundleImportExport/LICENSE.txt b/app/code/Magento/BundleImportExport/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/BundleImportExport/LICENSE_AFL.txt b/app/code/Magento/BundleImportExport/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/BundleImportExport/Model/Export/Product/Type/Bundle.php b/app/code/Magento/BundleImportExport/Model/Export/Product/Type/Bundle.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/BundleImportExport/Model/Export/RowCustomizer.php b/app/code/Magento/BundleImportExport/Model/Export/RowCustomizer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/BundleImportExport/Model/Import/Product/Type/Bundle.php b/app/code/Magento/BundleImportExport/Model/Import/Product/Type/Bundle.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/BundleImportExport/Model/Import/Product/Type/Bundle/RelationsDataSaver.php b/app/code/Magento/BundleImportExport/Model/Import/Product/Type/Bundle/RelationsDataSaver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/BundleImportExport/README.md b/app/code/Magento/BundleImportExport/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/BundleImportExport/Test/Unit/Model/Export/Product/RowCustomizerTest.php b/app/code/Magento/BundleImportExport/Test/Unit/Model/Export/Product/RowCustomizerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/BundleImportExport/Test/Unit/Model/Import/Product/Type/Bundle/RelationsDataSaverTest.php b/app/code/Magento/BundleImportExport/Test/Unit/Model/Import/Product/Type/Bundle/RelationsDataSaverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/BundleImportExport/Test/Unit/Model/Import/Product/Type/BundleTest.php b/app/code/Magento/BundleImportExport/Test/Unit/Model/Import/Product/Type/BundleTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/BundleImportExport/composer.json b/app/code/Magento/BundleImportExport/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/BundleImportExport/etc/di.xml b/app/code/Magento/BundleImportExport/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/BundleImportExport/etc/export.xml b/app/code/Magento/BundleImportExport/etc/export.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/BundleImportExport/etc/import.xml b/app/code/Magento/BundleImportExport/etc/import.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/BundleImportExport/etc/module.xml b/app/code/Magento/BundleImportExport/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/BundleImportExport/i18n/en_US.csv b/app/code/Magento/BundleImportExport/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/BundleImportExport/registration.php b/app/code/Magento/BundleImportExport/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CacheInvalidate/LICENSE.txt b/app/code/Magento/CacheInvalidate/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CacheInvalidate/LICENSE_AFL.txt b/app/code/Magento/CacheInvalidate/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CacheInvalidate/Model/PurgeCache.php b/app/code/Magento/CacheInvalidate/Model/PurgeCache.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CacheInvalidate/Model/SocketFactory.php b/app/code/Magento/CacheInvalidate/Model/SocketFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CacheInvalidate/Observer/FlushAllCacheObserver.php b/app/code/Magento/CacheInvalidate/Observer/FlushAllCacheObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CacheInvalidate/Observer/InvalidateVarnishObserver.php b/app/code/Magento/CacheInvalidate/Observer/InvalidateVarnishObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CacheInvalidate/README.md b/app/code/Magento/CacheInvalidate/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CacheInvalidate/Test/Unit/Model/PurgeCacheTest.php b/app/code/Magento/CacheInvalidate/Test/Unit/Model/PurgeCacheTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CacheInvalidate/Test/Unit/Model/SocketFactoryTest.php b/app/code/Magento/CacheInvalidate/Test/Unit/Model/SocketFactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CacheInvalidate/Test/Unit/Observer/FlushAllCacheObserverTest.php b/app/code/Magento/CacheInvalidate/Test/Unit/Observer/FlushAllCacheObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CacheInvalidate/Test/Unit/Observer/InvalidateVarnishObserverTest.php b/app/code/Magento/CacheInvalidate/Test/Unit/Observer/InvalidateVarnishObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CacheInvalidate/composer.json b/app/code/Magento/CacheInvalidate/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CacheInvalidate/etc/events.xml b/app/code/Magento/CacheInvalidate/etc/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CacheInvalidate/etc/module.xml b/app/code/Magento/CacheInvalidate/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CacheInvalidate/i18n/en_US.csv b/app/code/Magento/CacheInvalidate/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CacheInvalidate/registration.php b/app/code/Magento/CacheInvalidate/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/Block/Adminhtml/Captcha/DefaultCaptcha.php b/app/code/Magento/Captcha/Block/Adminhtml/Captcha/DefaultCaptcha.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/Block/Captcha.php b/app/code/Magento/Captcha/Block/Captcha.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/Block/Captcha/DefaultCaptcha.php b/app/code/Magento/Captcha/Block/Captcha/DefaultCaptcha.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/Controller/Adminhtml/Refresh/Refresh.php b/app/code/Magento/Captcha/Controller/Adminhtml/Refresh/Refresh.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/Controller/Refresh/Index.php b/app/code/Magento/Captcha/Controller/Refresh/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/Cron/DeleteExpiredImages.php b/app/code/Magento/Captcha/Cron/DeleteExpiredImages.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/Cron/DeleteOldAttempts.php b/app/code/Magento/Captcha/Cron/DeleteOldAttempts.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/Helper/Adminhtml/Data.php b/app/code/Magento/Captcha/Helper/Adminhtml/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/Helper/Data.php b/app/code/Magento/Captcha/Helper/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/LICENSE.txt b/app/code/Magento/Captcha/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/LICENSE_AFL.txt b/app/code/Magento/Captcha/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/Model/CaptchaFactory.php b/app/code/Magento/Captcha/Model/CaptchaFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/Model/CaptchaInterface.php b/app/code/Magento/Captcha/Model/CaptchaInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/Model/Cart/ConfigPlugin.php b/app/code/Magento/Captcha/Model/Cart/ConfigPlugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/Model/Checkout/ConfigProvider.php b/app/code/Magento/Captcha/Model/Checkout/ConfigProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/Model/Config/Font.php b/app/code/Magento/Captcha/Model/Config/Font.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/Model/Config/Form/AbstractForm.php b/app/code/Magento/Captcha/Model/Config/Form/AbstractForm.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/Model/Config/Form/Backend.php b/app/code/Magento/Captcha/Model/Config/Form/Backend.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/Model/Config/Form/Frontend.php b/app/code/Magento/Captcha/Model/Config/Form/Frontend.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/Model/Config/Mode.php b/app/code/Magento/Captcha/Model/Config/Mode.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/Model/Customer/Plugin/AjaxLogin.php b/app/code/Magento/Captcha/Model/Customer/Plugin/AjaxLogin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/Model/DefaultModel.php b/app/code/Magento/Captcha/Model/DefaultModel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/Model/ResourceModel/Log.php b/app/code/Magento/Captcha/Model/ResourceModel/Log.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/Observer/CaptchaStringResolver.php b/app/code/Magento/Captcha/Observer/CaptchaStringResolver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/Observer/CheckContactUsFormObserver.php b/app/code/Magento/Captcha/Observer/CheckContactUsFormObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/Observer/CheckForgotpasswordObserver.php b/app/code/Magento/Captcha/Observer/CheckForgotpasswordObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/Observer/CheckGuestCheckoutObserver.php b/app/code/Magento/Captcha/Observer/CheckGuestCheckoutObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/Observer/CheckRegisterCheckoutObserver.php b/app/code/Magento/Captcha/Observer/CheckRegisterCheckoutObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/Observer/CheckUserCreateObserver.php b/app/code/Magento/Captcha/Observer/CheckUserCreateObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/Observer/CheckUserEditObserver.php b/app/code/Magento/Captcha/Observer/CheckUserEditObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/Observer/CheckUserForgotPasswordBackendObserver.php b/app/code/Magento/Captcha/Observer/CheckUserForgotPasswordBackendObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/Observer/CheckUserLoginBackendObserver.php b/app/code/Magento/Captcha/Observer/CheckUserLoginBackendObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/Observer/CheckUserLoginObserver.php b/app/code/Magento/Captcha/Observer/CheckUserLoginObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/Observer/ResetAttemptForBackendObserver.php b/app/code/Magento/Captcha/Observer/ResetAttemptForBackendObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/Observer/ResetAttemptForFrontendAccountEditObserver.php b/app/code/Magento/Captcha/Observer/ResetAttemptForFrontendAccountEditObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/Observer/ResetAttemptForFrontendObserver.php b/app/code/Magento/Captcha/Observer/ResetAttemptForFrontendObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/README.md b/app/code/Magento/Captcha/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/Setup/InstallSchema.php b/app/code/Magento/Captcha/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/Test/Unit/Controller/Refresh/IndexTest.php b/app/code/Magento/Captcha/Test/Unit/Controller/Refresh/IndexTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/Test/Unit/Cron/DeleteExpiredImagesTest.php b/app/code/Magento/Captcha/Test/Unit/Cron/DeleteExpiredImagesTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/Test/Unit/Helper/Adminhtml/DataTest.php b/app/code/Magento/Captcha/Test/Unit/Helper/Adminhtml/DataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/Test/Unit/Helper/DataTest.php b/app/code/Magento/Captcha/Test/Unit/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/Test/Unit/Model/CaptchaFactoryTest.php b/app/code/Magento/Captcha/Test/Unit/Model/CaptchaFactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/Test/Unit/Model/Cart/ConfigPluginTest.php b/app/code/Magento/Captcha/Test/Unit/Model/Cart/ConfigPluginTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/Test/Unit/Model/Checkout/ConfigProviderTest.php b/app/code/Magento/Captcha/Test/Unit/Model/Checkout/ConfigProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/Test/Unit/Model/Customer/Plugin/AjaxLoginTest.php b/app/code/Magento/Captcha/Test/Unit/Model/Customer/Plugin/AjaxLoginTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/Test/Unit/Model/DefaultTest.php b/app/code/Magento/Captcha/Test/Unit/Model/DefaultTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/Test/Unit/Observer/CheckContactUsFormObserverTest.php b/app/code/Magento/Captcha/Test/Unit/Observer/CheckContactUsFormObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/Test/Unit/Observer/CheckForgotpasswordObserverTest.php b/app/code/Magento/Captcha/Test/Unit/Observer/CheckForgotpasswordObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/Test/Unit/Observer/CheckUserCreateObserverTest.php b/app/code/Magento/Captcha/Test/Unit/Observer/CheckUserCreateObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/Test/Unit/Observer/CheckUserEditObserverTest.php b/app/code/Magento/Captcha/Test/Unit/Observer/CheckUserEditObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/Test/Unit/Observer/CheckUserLoginObserverTest.php b/app/code/Magento/Captcha/Test/Unit/Observer/CheckUserLoginObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/composer.json b/app/code/Magento/Captcha/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/etc/adminhtml/di.xml b/app/code/Magento/Captcha/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/etc/adminhtml/events.xml b/app/code/Magento/Captcha/etc/adminhtml/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/etc/adminhtml/routes.xml b/app/code/Magento/Captcha/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/etc/adminhtml/system.xml b/app/code/Magento/Captcha/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/etc/config.xml b/app/code/Magento/Captcha/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/etc/crontab.xml b/app/code/Magento/Captcha/etc/crontab.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/etc/crontab/di.xml b/app/code/Magento/Captcha/etc/crontab/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/etc/di.xml b/app/code/Magento/Captcha/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/etc/events.xml b/app/code/Magento/Captcha/etc/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/etc/frontend/di.xml b/app/code/Magento/Captcha/etc/frontend/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/etc/frontend/events.xml b/app/code/Magento/Captcha/etc/frontend/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/etc/frontend/routes.xml b/app/code/Magento/Captcha/etc/frontend/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/etc/module.xml b/app/code/Magento/Captcha/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/i18n/en_US.csv b/app/code/Magento/Captcha/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/registration.php b/app/code/Magento/Captcha/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/view/adminhtml/layout/adminhtml_auth_forgotpassword.xml b/app/code/Magento/Captcha/view/adminhtml/layout/adminhtml_auth_forgotpassword.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/view/adminhtml/layout/adminhtml_auth_login.xml b/app/code/Magento/Captcha/view/adminhtml/layout/adminhtml_auth_login.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/view/adminhtml/templates/default.phtml b/app/code/Magento/Captcha/view/adminhtml/templates/default.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/view/adminhtml/web/reload.png b/app/code/Magento/Captcha/view/adminhtml/web/reload.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/view/frontend/layout/checkout_index_index.xml b/app/code/Magento/Captcha/view/frontend/layout/checkout_index_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/view/frontend/layout/contact_index_index.xml b/app/code/Magento/Captcha/view/frontend/layout/contact_index_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/view/frontend/layout/customer_account_create.xml b/app/code/Magento/Captcha/view/frontend/layout/customer_account_create.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/view/frontend/layout/customer_account_edit.xml b/app/code/Magento/Captcha/view/frontend/layout/customer_account_edit.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/view/frontend/layout/customer_account_forgotpassword.xml b/app/code/Magento/Captcha/view/frontend/layout/customer_account_forgotpassword.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/view/frontend/layout/customer_account_login.xml b/app/code/Magento/Captcha/view/frontend/layout/customer_account_login.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/view/frontend/layout/default.xml b/app/code/Magento/Captcha/view/frontend/layout/default.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/view/frontend/requirejs-config.js b/app/code/Magento/Captcha/view/frontend/requirejs-config.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/view/frontend/templates/default.phtml b/app/code/Magento/Captcha/view/frontend/templates/default.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/view/frontend/templates/js/components.phtml b/app/code/Magento/Captcha/view/frontend/templates/js/components.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/view/frontend/web/captcha.js b/app/code/Magento/Captcha/view/frontend/web/captcha.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/view/frontend/web/js/action/refresh.js b/app/code/Magento/Captcha/view/frontend/web/js/action/refresh.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/view/frontend/web/js/model/captcha.js b/app/code/Magento/Captcha/view/frontend/web/js/model/captcha.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/view/frontend/web/js/model/captchaList.js b/app/code/Magento/Captcha/view/frontend/web/js/model/captchaList.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/view/frontend/web/js/view/checkout/defaultCaptcha.js b/app/code/Magento/Captcha/view/frontend/web/js/view/checkout/defaultCaptcha.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/view/frontend/web/js/view/checkout/loginCaptcha.js b/app/code/Magento/Captcha/view/frontend/web/js/view/checkout/loginCaptcha.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/view/frontend/web/onepage.js b/app/code/Magento/Captcha/view/frontend/web/onepage.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Captcha/view/frontend/web/template/checkout/captcha.html b/app/code/Magento/Captcha/view/frontend/web/template/checkout/captcha.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/AttributeSetFinderInterface.php b/app/code/Magento/Catalog/Api/AttributeSetFinderInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/AttributeSetManagementInterface.php b/app/code/Magento/Catalog/Api/AttributeSetManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/AttributeSetRepositoryInterface.php b/app/code/Magento/Catalog/Api/AttributeSetRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/BasePriceStorageInterface.php b/app/code/Magento/Catalog/Api/BasePriceStorageInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/CategoryAttributeOptionManagementInterface.php b/app/code/Magento/Catalog/Api/CategoryAttributeOptionManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/CategoryAttributeRepositoryInterface.php b/app/code/Magento/Catalog/Api/CategoryAttributeRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/CategoryLinkManagementInterface.php b/app/code/Magento/Catalog/Api/CategoryLinkManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/CategoryLinkRepositoryInterface.php b/app/code/Magento/Catalog/Api/CategoryLinkRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/CategoryListInterface.php b/app/code/Magento/Catalog/Api/CategoryListInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/CategoryManagementInterface.php b/app/code/Magento/Catalog/Api/CategoryManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/CategoryRepositoryInterface.php b/app/code/Magento/Catalog/Api/CategoryRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/CostStorageInterface.php b/app/code/Magento/Catalog/Api/CostStorageInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/Data/BasePriceInterface.php b/app/code/Magento/Catalog/Api/Data/BasePriceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/Data/CategoryAttributeInterface.php b/app/code/Magento/Catalog/Api/Data/CategoryAttributeInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/Data/CategoryAttributeSearchResultsInterface.php b/app/code/Magento/Catalog/Api/Data/CategoryAttributeSearchResultsInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/Data/CategoryInterface.php b/app/code/Magento/Catalog/Api/Data/CategoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/Data/CategoryLinkInterface.php b/app/code/Magento/Catalog/Api/Data/CategoryLinkInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/Data/CategoryProductLinkInterface.php b/app/code/Magento/Catalog/Api/Data/CategoryProductLinkInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/Data/CategoryProductSearchResultInterface.php b/app/code/Magento/Catalog/Api/Data/CategoryProductSearchResultInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/Data/CategorySearchResultsInterface.php b/app/code/Magento/Catalog/Api/Data/CategorySearchResultsInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/Data/CategoryTreeInterface.php b/app/code/Magento/Catalog/Api/Data/CategoryTreeInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/Data/CostInterface.php b/app/code/Magento/Catalog/Api/Data/CostInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/Data/CustomOptionInterface.php b/app/code/Magento/Catalog/Api/Data/CustomOptionInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/Data/EavAttributeInterface.php b/app/code/Magento/Catalog/Api/Data/EavAttributeInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/Data/PriceUpdateResultInterface.php b/app/code/Magento/Catalog/Api/Data/PriceUpdateResultInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/Data/ProductAttributeInterface.php b/app/code/Magento/Catalog/Api/Data/ProductAttributeInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/Data/ProductAttributeMediaGalleryEntryInterface.php b/app/code/Magento/Catalog/Api/Data/ProductAttributeMediaGalleryEntryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/Data/ProductAttributeSearchResultsInterface.php b/app/code/Magento/Catalog/Api/Data/ProductAttributeSearchResultsInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/Data/ProductAttributeTypeInterface.php b/app/code/Magento/Catalog/Api/Data/ProductAttributeTypeInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/Data/ProductCustomOptionInterface.php b/app/code/Magento/Catalog/Api/Data/ProductCustomOptionInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/Data/ProductCustomOptionTypeInterface.php b/app/code/Magento/Catalog/Api/Data/ProductCustomOptionTypeInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/Data/ProductCustomOptionValuesInterface.php b/app/code/Magento/Catalog/Api/Data/ProductCustomOptionValuesInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/Data/ProductFrontendActionInterface.php b/app/code/Magento/Catalog/Api/Data/ProductFrontendActionInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/Data/ProductInterface.php b/app/code/Magento/Catalog/Api/Data/ProductInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/Data/ProductLinkAttributeInterface.php b/app/code/Magento/Catalog/Api/Data/ProductLinkAttributeInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/Data/ProductLinkInterface.php b/app/code/Magento/Catalog/Api/Data/ProductLinkInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/Data/ProductLinkTypeInterface.php b/app/code/Magento/Catalog/Api/Data/ProductLinkTypeInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/Data/ProductOptionInterface.php b/app/code/Magento/Catalog/Api/Data/ProductOptionInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/Data/ProductRender/ButtonInterface.php b/app/code/Magento/Catalog/Api/Data/ProductRender/ButtonInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/Data/ProductRender/FormattedPriceInfoInterface.php b/app/code/Magento/Catalog/Api/Data/ProductRender/FormattedPriceInfoInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/Data/ProductRender/ImageInterface.php b/app/code/Magento/Catalog/Api/Data/ProductRender/ImageInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/Data/ProductRender/PriceInfoInterface.php b/app/code/Magento/Catalog/Api/Data/ProductRender/PriceInfoInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/Data/ProductRenderInterface.php b/app/code/Magento/Catalog/Api/Data/ProductRenderInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/Data/ProductRenderSearchResultsInterface.php b/app/code/Magento/Catalog/Api/Data/ProductRenderSearchResultsInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/Data/ProductSearchResultsInterface.php b/app/code/Magento/Catalog/Api/Data/ProductSearchResultsInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/Data/ProductTierPriceInterface.php b/app/code/Magento/Catalog/Api/Data/ProductTierPriceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/Data/ProductTypeInterface.php b/app/code/Magento/Catalog/Api/Data/ProductTypeInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/Data/ProductWebsiteLinkInterface.php b/app/code/Magento/Catalog/Api/Data/ProductWebsiteLinkInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/Data/SpecialPriceInterface.php b/app/code/Magento/Catalog/Api/Data/SpecialPriceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/Data/TierPriceInterface.php b/app/code/Magento/Catalog/Api/Data/TierPriceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/ProductAttributeGroupRepositoryInterface.php b/app/code/Magento/Catalog/Api/ProductAttributeGroupRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/ProductAttributeManagementInterface.php b/app/code/Magento/Catalog/Api/ProductAttributeManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/ProductAttributeMediaGalleryManagementInterface.php b/app/code/Magento/Catalog/Api/ProductAttributeMediaGalleryManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/ProductAttributeOptionManagementInterface.php b/app/code/Magento/Catalog/Api/ProductAttributeOptionManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/ProductAttributeRepositoryInterface.php b/app/code/Magento/Catalog/Api/ProductAttributeRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/ProductAttributeTypesListInterface.php b/app/code/Magento/Catalog/Api/ProductAttributeTypesListInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/ProductCustomOptionRepositoryInterface.php b/app/code/Magento/Catalog/Api/ProductCustomOptionRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/ProductCustomOptionTypeListInterface.php b/app/code/Magento/Catalog/Api/ProductCustomOptionTypeListInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/ProductLinkManagementInterface.php b/app/code/Magento/Catalog/Api/ProductLinkManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/ProductLinkRepositoryInterface.php b/app/code/Magento/Catalog/Api/ProductLinkRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/ProductLinkTypeListInterface.php b/app/code/Magento/Catalog/Api/ProductLinkTypeListInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/ProductManagementInterface.php b/app/code/Magento/Catalog/Api/ProductManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/ProductMediaAttributeManagementInterface.php b/app/code/Magento/Catalog/Api/ProductMediaAttributeManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/ProductRenderListInterface.php b/app/code/Magento/Catalog/Api/ProductRenderListInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/ProductRepositoryInterface.php b/app/code/Magento/Catalog/Api/ProductRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/ProductTierPriceManagementInterface.php b/app/code/Magento/Catalog/Api/ProductTierPriceManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/ProductTypeListInterface.php b/app/code/Magento/Catalog/Api/ProductTypeListInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/ProductWebsiteLinkRepositoryInterface.php b/app/code/Magento/Catalog/Api/ProductWebsiteLinkRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/ScopedProductTierPriceManagementInterface.php b/app/code/Magento/Catalog/Api/ScopedProductTierPriceManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/SpecialPriceInterface.php b/app/code/Magento/Catalog/Api/SpecialPriceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/SpecialPriceStorageInterface.php b/app/code/Magento/Catalog/Api/SpecialPriceStorageInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Api/TierPriceStorageInterface.php b/app/code/Magento/Catalog/Api/TierPriceStorageInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Category/AbstractCategory.php b/app/code/Magento/Catalog/Block/Adminhtml/Category/AbstractCategory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Category/AssignProducts.php b/app/code/Magento/Catalog/Block/Adminhtml/Category/AssignProducts.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Category/Checkboxes/Tree.php b/app/code/Magento/Catalog/Block/Adminhtml/Category/Checkboxes/Tree.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Category/Edit.php b/app/code/Magento/Catalog/Block/Adminhtml/Category/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Category/Edit/DeleteButton.php b/app/code/Magento/Catalog/Block/Adminhtml/Category/Edit/DeleteButton.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Category/Edit/SaveButton.php b/app/code/Magento/Catalog/Block/Adminhtml/Category/Edit/SaveButton.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Category/Helper/Image.php b/app/code/Magento/Catalog/Block/Adminhtml/Category/Helper/Image.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Category/Helper/Pricestep.php b/app/code/Magento/Catalog/Block/Adminhtml/Category/Helper/Pricestep.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Category/Helper/Sortby/Available.php b/app/code/Magento/Catalog/Block/Adminhtml/Category/Helper/Sortby/Available.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Category/Helper/Sortby/DefaultSortby.php b/app/code/Magento/Catalog/Block/Adminhtml/Category/Helper/Sortby/DefaultSortby.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Category/Tab/Product.php b/app/code/Magento/Catalog/Block/Adminhtml/Category/Tab/Product.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Category/Tree.php b/app/code/Magento/Catalog/Block/Adminhtml/Category/Tree.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Category/Widget/Chooser.php b/app/code/Magento/Catalog/Block/Adminhtml/Category/Widget/Chooser.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Form.php b/app/code/Magento/Catalog/Block/Adminhtml/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Form/Renderer/Config/DateFieldsOrder.php b/app/code/Magento/Catalog/Block/Adminhtml/Form/Renderer/Config/DateFieldsOrder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Form/Renderer/Config/YearRange.php b/app/code/Magento/Catalog/Block/Adminhtml/Form/Renderer/Config/YearRange.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Form/Renderer/Fieldset/Element.php b/app/code/Magento/Catalog/Block/Adminhtml/Form/Renderer/Fieldset/Element.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Helper/Form/Wysiwyg.php b/app/code/Magento/Catalog/Block/Adminhtml/Helper/Form/Wysiwyg.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Helper/Form/Wysiwyg/Content.php b/app/code/Magento/Catalog/Block/Adminhtml/Helper/Form/Wysiwyg/Content.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product.php b/app/code/Magento/Catalog/Block/Adminhtml/Product.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Button/Cancel.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Button/Cancel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Button/Generic.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Button/Generic.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Button/Save.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Button/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Button/SaveInNewAttributeSet.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Button/SaveInNewAttributeSet.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Form.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tab/Advanced.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tab/Advanced.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tab/Front.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tab/Front.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tab/Main.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tab/Main.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tab/Options.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tab/Options.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tab/System.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tab/System.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tabs.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tabs.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Grid.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/NewAttribute/Product/Attributes.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/NewAttribute/Product/Attributes.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Main.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Main.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Main/Formattribute.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Main/Formattribute.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Main/Formgroup.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Main/Formgroup.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Main/Formset.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Main/Formset.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Main/Tree/Attribute.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Main/Tree/Attribute.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Main/Tree/Group.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Main/Tree/Group.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Toolbar/Add.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Toolbar/Add.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Toolbar/Main.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Toolbar/Main.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Toolbar/Main/Filter.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Toolbar/Main/Filter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Composite/Configure.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Composite/Configure.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Composite/Error.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Composite/Error.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Composite/Fieldset.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Composite/Fieldset.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Composite/Fieldset/Options.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Composite/Fieldset/Options.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Composite/Fieldset/Qty.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Composite/Fieldset/Qty.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Composite/Update/Result.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Composite/Update/Result.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Action/Attribute.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Action/Attribute.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Action/Attribute/Tab/Attributes.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Action/Attribute/Tab/Attributes.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Action/Attribute/Tab/Inventory.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Action/Attribute/Tab/Inventory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Action/Attribute/Tab/Websites.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Action/Attribute/Tab/Websites.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Action/Attribute/Tabs.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Action/Attribute/Tabs.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/AttributeSet.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/AttributeSet.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Button/AddAttribute.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Button/AddAttribute.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Button/Back.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Button/Back.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Button/CreateCategory.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Button/CreateCategory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Button/Generic.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Button/Generic.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Button/Save.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Button/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Js.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Js.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/NewCategory.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/NewCategory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Ajax/Serializer.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Ajax/Serializer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Alerts.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Alerts.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Alerts/Price.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Alerts/Price.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Alerts/Stock.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Alerts/Stock.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Attributes.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Attributes.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Attributes/Create.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Attributes/Create.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Attributes/Search.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Attributes/Search.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/ChildTab.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/ChildTab.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Crosssell.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Crosssell.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Inventory.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Inventory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Option.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Option.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Popup/Grid.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Popup/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Type/AbstractType.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Type/AbstractType.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Type/Date.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Type/Date.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Type/File.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Type/File.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Type/Select.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Type/Select.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Type/Text.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Type/Text.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Price.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Price.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Price/Group/AbstractGroup.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Price/Group/AbstractGroup.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Price/Tier.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Price/Tier.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Related.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Related.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Upsell.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Upsell.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Websites.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Websites.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tabs.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Edit/Tabs.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Frontend/Product/Watermark.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Frontend/Product/Watermark.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Grid.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Apply.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Apply.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Boolean.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Boolean.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Category.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Category.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Config.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Gallery.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Gallery.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Gallery/Content.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Gallery/Content.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Image.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Image.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Price.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Price.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Weight.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Weight.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Options/Ajax.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Options/Ajax.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Price.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Price.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Widget/Chooser.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Widget/Chooser.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Product/Widget/Chooser/Container.php b/app/code/Magento/Catalog/Block/Adminhtml/Product/Widget/Chooser/Container.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Rss/Grid/Link.php b/app/code/Magento/Catalog/Block/Adminhtml/Rss/Grid/Link.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Adminhtml/Rss/NotifyStock.php b/app/code/Magento/Catalog/Block/Adminhtml/Rss/NotifyStock.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Breadcrumbs.php b/app/code/Magento/Catalog/Block/Breadcrumbs.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Category/Plugin/PriceBoxTags.php b/app/code/Magento/Catalog/Block/Category/Plugin/PriceBoxTags.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Category/Rss/Link.php b/app/code/Magento/Catalog/Block/Category/Rss/Link.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Category/View.php b/app/code/Magento/Catalog/Block/Category/View.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/FrontendStorageManager.php b/app/code/Magento/Catalog/Block/FrontendStorageManager.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Navigation.php b/app/code/Magento/Catalog/Block/Navigation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Product/AbstractProduct.php b/app/code/Magento/Catalog/Block/Product/AbstractProduct.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Product/AwareInterface.php b/app/code/Magento/Catalog/Block/Product/AwareInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Product/Compare/ListCompare.php b/app/code/Magento/Catalog/Block/Product/Compare/ListCompare.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Product/Context.php b/app/code/Magento/Catalog/Block/Product/Context.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Product/Gallery.php b/app/code/Magento/Catalog/Block/Product/Gallery.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Product/Image.php b/app/code/Magento/Catalog/Block/Product/Image.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Product/ImageBuilder.php b/app/code/Magento/Catalog/Block/Product/ImageBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Product/ListProduct.php b/app/code/Magento/Catalog/Block/Product/ListProduct.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Product/NewProduct.php b/app/code/Magento/Catalog/Block/Product/NewProduct.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Product/Price.php b/app/code/Magento/Catalog/Block/Product/Price.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Product/ProductList/Crosssell.php b/app/code/Magento/Catalog/Block/Product/ProductList/Crosssell.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Product/ProductList/Item/AddTo/Compare.php b/app/code/Magento/Catalog/Block/Product/ProductList/Item/AddTo/Compare.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Product/ProductList/Item/Block.php b/app/code/Magento/Catalog/Block/Product/ProductList/Item/Block.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Product/ProductList/Item/Container.php b/app/code/Magento/Catalog/Block/Product/ProductList/Item/Container.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Product/ProductList/Promotion.php b/app/code/Magento/Catalog/Block/Product/ProductList/Promotion.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Product/ProductList/Random.php b/app/code/Magento/Catalog/Block/Product/ProductList/Random.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Product/ProductList/Related.php b/app/code/Magento/Catalog/Block/Product/ProductList/Related.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Product/ProductList/Upsell.php b/app/code/Magento/Catalog/Block/Product/ProductList/Upsell.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Product/ReviewRenderer/DefaultProvider.php b/app/code/Magento/Catalog/Block/Product/ReviewRenderer/DefaultProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Product/ReviewRendererInterface.php b/app/code/Magento/Catalog/Block/Product/ReviewRendererInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Product/TemplateSelector.php b/app/code/Magento/Catalog/Block/Product/TemplateSelector.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Product/View.php b/app/code/Magento/Catalog/Block/Product/View.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Product/View/AbstractView.php b/app/code/Magento/Catalog/Block/Product/View/AbstractView.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Product/View/AddTo/Compare.php b/app/code/Magento/Catalog/Block/Product/View/AddTo/Compare.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Product/View/Additional.php b/app/code/Magento/Catalog/Block/Product/View/Additional.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Product/View/Attributes.php b/app/code/Magento/Catalog/Block/Product/View/Attributes.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Product/View/BaseImage.php b/app/code/Magento/Catalog/Block/Product/View/BaseImage.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Product/View/Description.php b/app/code/Magento/Catalog/Block/Product/View/Description.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Product/View/Gallery.php b/app/code/Magento/Catalog/Block/Product/View/Gallery.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Product/View/Options.php b/app/code/Magento/Catalog/Block/Product/View/Options.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Product/View/Options/AbstractOptions.php b/app/code/Magento/Catalog/Block/Product/View/Options/AbstractOptions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Product/View/Options/Type/Date.php b/app/code/Magento/Catalog/Block/Product/View/Options/Type/Date.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Product/View/Options/Type/DefaultType.php b/app/code/Magento/Catalog/Block/Product/View/Options/Type/DefaultType.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Product/View/Options/Type/File.php b/app/code/Magento/Catalog/Block/Product/View/Options/Type/File.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Product/View/Options/Type/Select.php b/app/code/Magento/Catalog/Block/Product/View/Options/Type/Select.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Product/View/Options/Type/Text.php b/app/code/Magento/Catalog/Block/Product/View/Options/Type/Text.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Product/View/Price.php b/app/code/Magento/Catalog/Block/Product/View/Price.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Product/View/Tabs.php b/app/code/Magento/Catalog/Block/Product/View/Tabs.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Product/View/Type/Simple.php b/app/code/Magento/Catalog/Block/Product/View/Type/Simple.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Product/View/Type/Virtual.php b/app/code/Magento/Catalog/Block/Product/View/Type/Virtual.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Product/Widget/Html/Pager.php b/app/code/Magento/Catalog/Block/Product/Widget/Html/Pager.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Product/Widget/NewWidget.php b/app/code/Magento/Catalog/Block/Product/Widget/NewWidget.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Rss/Category.php b/app/code/Magento/Catalog/Block/Rss/Category.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Rss/Product/NewProducts.php b/app/code/Magento/Catalog/Block/Rss/Product/NewProducts.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Rss/Product/Special.php b/app/code/Magento/Catalog/Block/Rss/Product/Special.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/ShortcutButtons.php b/app/code/Magento/Catalog/Block/ShortcutButtons.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/ShortcutInterface.php b/app/code/Magento/Catalog/Block/ShortcutInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Ui/ProductViewCounter.php b/app/code/Magento/Catalog/Block/Ui/ProductViewCounter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Widget/Link.php b/app/code/Magento/Catalog/Block/Widget/Link.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Widget/RecentlyCompared.php b/app/code/Magento/Catalog/Block/Widget/RecentlyCompared.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Block/Widget/RecentlyViewed.php b/app/code/Magento/Catalog/Block/Widget/RecentlyViewed.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Console/Command/ImagesResizeCommand.php b/app/code/Magento/Catalog/Console/Command/ImagesResizeCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Console/Command/ProductAttributesCleanUp.php b/app/code/Magento/Catalog/Console/Command/ProductAttributesCleanUp.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Category.php b/app/code/Magento/Catalog/Controller/Adminhtml/Category.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Category/Add.php b/app/code/Magento/Catalog/Controller/Adminhtml/Category/Add.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Category/CategoriesJson.php b/app/code/Magento/Catalog/Controller/Adminhtml/Category/CategoriesJson.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Category/Delete.php b/app/code/Magento/Catalog/Controller/Adminhtml/Category/Delete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Category/Edit.php b/app/code/Magento/Catalog/Controller/Adminhtml/Category/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Category/Grid.php b/app/code/Magento/Catalog/Controller/Adminhtml/Category/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Category/Image/Upload.php b/app/code/Magento/Catalog/Controller/Adminhtml/Category/Image/Upload.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Category/Index.php b/app/code/Magento/Catalog/Controller/Adminhtml/Category/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Category/Move.php b/app/code/Magento/Catalog/Controller/Adminhtml/Category/Move.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Category/RefreshPath.php b/app/code/Magento/Catalog/Controller/Adminhtml/Category/RefreshPath.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Category/Save.php b/app/code/Magento/Catalog/Controller/Adminhtml/Category/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Category/SuggestCategories.php b/app/code/Magento/Catalog/Controller/Adminhtml/Category/SuggestCategories.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Category/Tree.php b/app/code/Magento/Catalog/Controller/Adminhtml/Category/Tree.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Category/Validate.php b/app/code/Magento/Catalog/Controller/Adminhtml/Category/Validate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Category/Widget.php b/app/code/Magento/Catalog/Controller/Adminhtml/Category/Widget.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Category/Widget/CategoriesJson.php b/app/code/Magento/Catalog/Controller/Adminhtml/Category/Widget/CategoriesJson.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Category/Widget/Chooser.php b/app/code/Magento/Catalog/Controller/Adminhtml/Category/Widget/Chooser.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Category/Wysiwyg.php b/app/code/Magento/Catalog/Controller/Adminhtml/Category/Wysiwyg.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/AbstractProductGrid.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/AbstractProductGrid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Action/Attribute.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Action/Attribute.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Action/Attribute/Edit.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Action/Attribute/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Action/Attribute/Save.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Action/Attribute/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Action/Attribute/Validate.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Action/Attribute/Validate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/AddAttributeToTemplate.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/AddAttributeToTemplate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/AlertsPriceGrid.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/AlertsPriceGrid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/AlertsStockGrid.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/AlertsStockGrid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute/Delete.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute/Delete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute/Edit.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute/Index.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute/NewAction.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute/NewAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute/Save.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute/Validate.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute/Validate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Builder.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Builder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Categories.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Categories.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Crosssell.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Crosssell.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/CrosssellGrid.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/CrosssellGrid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/CustomOptions.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/CustomOptions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Datafeeds/Index.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Datafeeds/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Duplicate.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Duplicate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Edit.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Gallery/Upload.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Gallery/Upload.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Grid.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/GridOnly.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/GridOnly.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Group/Save.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Group/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Index.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Initialization/Helper.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Initialization/Helper.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Initialization/Helper/AttributeFilter.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Initialization/Helper/AttributeFilter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Initialization/Helper/HandlerFactory.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Initialization/Helper/HandlerFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Initialization/Helper/HandlerInterface.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Initialization/Helper/HandlerInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Initialization/Helper/Plugin/Handler/Composite.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Initialization/Helper/Plugin/Handler/Composite.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Initialization/StockDataFilter.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Initialization/StockDataFilter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/MassDelete.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/MassDelete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/MassStatus.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/MassStatus.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/NewAction.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/NewAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Options.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Options.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/OptionsImportGrid.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/OptionsImportGrid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Related.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Related.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/RelatedGrid.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/RelatedGrid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Reload.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Reload.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Save.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Set.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Set.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Set/Add.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Set/Add.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Set/Delete.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Set/Delete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Set/Edit.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Set/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Set/Index.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Set/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Set/Save.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Set/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Set/SetGrid.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Set/SetGrid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/ShowUpdateResult.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/ShowUpdateResult.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/SuggestAttributeSets.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/SuggestAttributeSets.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/SuggestAttributes.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/SuggestAttributes.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Upsell.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Upsell.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/UpsellGrid.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/UpsellGrid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Validate.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Validate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Widget/Chooser.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Widget/Chooser.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Adminhtml/Product/Wysiwyg.php b/app/code/Magento/Catalog/Controller/Adminhtml/Product/Wysiwyg.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Category/View.php b/app/code/Magento/Catalog/Controller/Category/View.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Index/Index.php b/app/code/Magento/Catalog/Controller/Index/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Product.php b/app/code/Magento/Catalog/Controller/Product.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Product/Compare.php b/app/code/Magento/Catalog/Controller/Product/Compare.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Product/Compare/Add.php b/app/code/Magento/Catalog/Controller/Product/Compare/Add.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Product/Compare/Clear.php b/app/code/Magento/Catalog/Controller/Product/Compare/Clear.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Product/Compare/Index.php b/app/code/Magento/Catalog/Controller/Product/Compare/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Product/Compare/Remove.php b/app/code/Magento/Catalog/Controller/Product/Compare/Remove.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Product/Frontend/Action/Synchronize.php b/app/code/Magento/Catalog/Controller/Product/Frontend/Action/Synchronize.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Product/Gallery.php b/app/code/Magento/Catalog/Controller/Product/Gallery.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Product/View.php b/app/code/Magento/Catalog/Controller/Product/View.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Controller/Product/View/ViewInterface.php b/app/code/Magento/Catalog/Controller/Product/View/ViewInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Cron/DeleteAbandonedStoreFlatTables.php b/app/code/Magento/Catalog/Cron/DeleteAbandonedStoreFlatTables.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Cron/DeleteOutdatedPriceValues.php b/app/code/Magento/Catalog/Cron/DeleteOutdatedPriceValues.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Cron/FrontendActionsFlush.php b/app/code/Magento/Catalog/Cron/FrontendActionsFlush.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Cron/RefreshSpecialPrices.php b/app/code/Magento/Catalog/Cron/RefreshSpecialPrices.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Cron/SynchronizeWebsiteAttributes.php b/app/code/Magento/Catalog/Cron/SynchronizeWebsiteAttributes.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/CustomerData/CompareProducts.php b/app/code/Magento/Catalog/CustomerData/CompareProducts.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/CustomerData/ProductFrontendActionSection.php b/app/code/Magento/Catalog/CustomerData/ProductFrontendActionSection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/CustomerData/ProductsRenderInfoSection.php b/app/code/Magento/Catalog/CustomerData/ProductsRenderInfoSection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Helper/Catalog.php b/app/code/Magento/Catalog/Helper/Catalog.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Helper/Category.php b/app/code/Magento/Catalog/Helper/Category.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Helper/Data.php b/app/code/Magento/Catalog/Helper/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Helper/DefaultCategory.php b/app/code/Magento/Catalog/Helper/DefaultCategory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Helper/Image.php b/app/code/Magento/Catalog/Helper/Image.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Helper/Output.php b/app/code/Magento/Catalog/Helper/Output.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Helper/Product.php b/app/code/Magento/Catalog/Helper/Product.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Helper/Product/Compare.php b/app/code/Magento/Catalog/Helper/Product/Compare.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Helper/Product/Composite.php b/app/code/Magento/Catalog/Helper/Product/Composite.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Helper/Product/Configuration.php b/app/code/Magento/Catalog/Helper/Product/Configuration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Helper/Product/Configuration/ConfigurationInterface.php b/app/code/Magento/Catalog/Helper/Product/Configuration/ConfigurationInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Helper/Product/ConfigurationPool.php b/app/code/Magento/Catalog/Helper/Product/ConfigurationPool.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Helper/Product/Edit/Action/Attribute.php b/app/code/Magento/Catalog/Helper/Product/Edit/Action/Attribute.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Helper/Product/Flat/Indexer.php b/app/code/Magento/Catalog/Helper/Product/Flat/Indexer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Helper/Product/ProductList.php b/app/code/Magento/Catalog/Helper/Product/ProductList.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Helper/Product/View.php b/app/code/Magento/Catalog/Helper/Product/View.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/LICENSE.txt b/app/code/Magento/Catalog/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/LICENSE_AFL.txt b/app/code/Magento/Catalog/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/AbstractModel.php b/app/code/Magento/Catalog/Model/AbstractModel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/ProductCategoryFilter.php b/app/code/Magento/Catalog/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/ProductCategoryFilter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/ProductStoreFilter.php b/app/code/Magento/Catalog/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/ProductStoreFilter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/ProductWebsiteFilter.php b/app/code/Magento/Catalog/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/ProductWebsiteFilter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Attribute/Backend/Customlayoutupdate.php b/app/code/Magento/Catalog/Model/Attribute/Backend/Customlayoutupdate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Attribute/Backend/Startdate.php b/app/code/Magento/Catalog/Model/Attribute/Backend/Startdate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Attribute/Config.php b/app/code/Magento/Catalog/Model/Attribute/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Attribute/Config/Converter.php b/app/code/Magento/Catalog/Model/Attribute/Config/Converter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Attribute/Config/Data.php b/app/code/Magento/Catalog/Model/Attribute/Config/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Attribute/Config/Reader.php b/app/code/Magento/Catalog/Model/Attribute/Config/Reader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Attribute/Config/SchemaLocator.php b/app/code/Magento/Catalog/Model/Attribute/Config/SchemaLocator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Attribute/LockValidatorComposite.php b/app/code/Magento/Catalog/Model/Attribute/LockValidatorComposite.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Attribute/LockValidatorInterface.php b/app/code/Magento/Catalog/Model/Attribute/LockValidatorInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Attribute/ScopeOverriddenValue.php b/app/code/Magento/Catalog/Model/Attribute/ScopeOverriddenValue.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Attribute/Source/Scopes.php b/app/code/Magento/Catalog/Model/Attribute/Source/Scopes.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Category.php b/app/code/Magento/Catalog/Model/Category.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Category/Attribute.php b/app/code/Magento/Catalog/Model/Category/Attribute.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Category/Attribute/Backend/Image.php b/app/code/Magento/Catalog/Model/Category/Attribute/Backend/Image.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Category/Attribute/Backend/Sortby.php b/app/code/Magento/Catalog/Model/Category/Attribute/Backend/Sortby.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Category/Attribute/OptionManagement.php b/app/code/Magento/Catalog/Model/Category/Attribute/OptionManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Category/Attribute/Source/Layout.php b/app/code/Magento/Catalog/Model/Category/Attribute/Source/Layout.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Category/Attribute/Source/Mode.php b/app/code/Magento/Catalog/Model/Category/Attribute/Source/Mode.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Category/Attribute/Source/Page.php b/app/code/Magento/Catalog/Model/Category/Attribute/Source/Page.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Category/Attribute/Source/Sortby.php b/app/code/Magento/Catalog/Model/Category/Attribute/Source/Sortby.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Category/AttributeRepository.php b/app/code/Magento/Catalog/Model/Category/AttributeRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Category/DataProvider.php b/app/code/Magento/Catalog/Model/Category/DataProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Category/FileInfo.php b/app/code/Magento/Catalog/Model/Category/FileInfo.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Category/Link/ReadHandler.php b/app/code/Magento/Catalog/Model/Category/Link/ReadHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Category/Link/SaveHandler.php b/app/code/Magento/Catalog/Model/Category/Link/SaveHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Category/Product/PositionResolver.php b/app/code/Magento/Catalog/Model/Category/Product/PositionResolver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Category/Tree.php b/app/code/Magento/Catalog/Model/Category/Tree.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/CategoryLink.php b/app/code/Magento/Catalog/Model/CategoryLink.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/CategoryLinkManagement.php b/app/code/Magento/Catalog/Model/CategoryLinkManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/CategoryLinkRepository.php b/app/code/Magento/Catalog/Model/CategoryLinkRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/CategoryList.php b/app/code/Magento/Catalog/Model/CategoryList.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/CategoryManagement.php b/app/code/Magento/Catalog/Model/CategoryManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/CategoryProductLink.php b/app/code/Magento/Catalog/Model/CategoryProductLink.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/CategoryRepository.php b/app/code/Magento/Catalog/Model/CategoryRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Config.php b/app/code/Magento/Catalog/Model/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Config/Backend/Category.php b/app/code/Magento/Catalog/Model/Config/Backend/Category.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Config/CatalogClone/Media/Image.php b/app/code/Magento/Catalog/Model/Config/CatalogClone/Media/Image.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Config/Source/Category.php b/app/code/Magento/Catalog/Model/Config/Source/Category.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Config/Source/GridPerPage.php b/app/code/Magento/Catalog/Model/Config/Source/GridPerPage.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Config/Source/ListMode.php b/app/code/Magento/Catalog/Model/Config/Source/ListMode.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Config/Source/ListPerPage.php b/app/code/Magento/Catalog/Model/Config/Source/ListPerPage.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Config/Source/ListSort.php b/app/code/Magento/Catalog/Model/Config/Source/ListSort.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Config/Source/Price/Scope.php b/app/code/Magento/Catalog/Model/Config/Source/Price/Scope.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Config/Source/Price/Step.php b/app/code/Magento/Catalog/Model/Config/Source/Price/Step.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Config/Source/Product/Options/Price.php b/app/code/Magento/Catalog/Model/Config/Source/Product/Options/Price.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Config/Source/Product/Options/TierPrice.php b/app/code/Magento/Catalog/Model/Config/Source/Product/Options/TierPrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Config/Source/Product/Options/Type.php b/app/code/Magento/Catalog/Model/Config/Source/Product/Options/Type.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Config/Source/Product/Thumbnail.php b/app/code/Magento/Catalog/Model/Config/Source/Product/Thumbnail.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Config/Source/ProductPriceOptionsInterface.php b/app/code/Magento/Catalog/Model/Config/Source/ProductPriceOptionsInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Config/Source/TimeFormat.php b/app/code/Magento/Catalog/Model/Config/Source/TimeFormat.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Config/Source/Watermark/Position.php b/app/code/Magento/Catalog/Model/Config/Source/Watermark/Position.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/CustomOptions/CustomOption.php b/app/code/Magento/Catalog/Model/CustomOptions/CustomOption.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/CustomOptions/CustomOptionProcessor.php b/app/code/Magento/Catalog/Model/CustomOptions/CustomOptionProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Design.php b/app/code/Magento/Catalog/Model/Design.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Entity/Attribute.php b/app/code/Magento/Catalog/Model/Entity/Attribute.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Entity/Product/Attribute/Design/Options/Container.php b/app/code/Magento/Catalog/Model/Entity/Product/Attribute/Design/Options/Container.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Entity/Product/Attribute/Group/AttributeMapper.php b/app/code/Magento/Catalog/Model/Entity/Product/Attribute/Group/AttributeMapper.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Entity/Product/Attribute/Group/AttributeMapperInterface.php b/app/code/Magento/Catalog/Model/Entity/Product/Attribute/Group/AttributeMapperInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/EntityInterface.php b/app/code/Magento/Catalog/Model/EntityInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Factory.php b/app/code/Magento/Catalog/Model/Factory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/FrontendStorageConfigurationInterface.php b/app/code/Magento/Catalog/Model/FrontendStorageConfigurationInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/FrontendStorageConfigurationPool.php b/app/code/Magento/Catalog/Model/FrontendStorageConfigurationPool.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ImageExtractor.php b/app/code/Magento/Catalog/Model/ImageExtractor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ImageUploader.php b/app/code/Magento/Catalog/Model/ImageUploader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/AbstractFlatState.php b/app/code/Magento/Catalog/Model/Indexer/AbstractFlatState.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Category/Flat.php b/app/code/Magento/Catalog/Model/Indexer/Category/Flat.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Category/Flat/AbstractAction.php b/app/code/Magento/Catalog/Model/Indexer/Category/Flat/AbstractAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Category/Flat/Action/Full.php b/app/code/Magento/Catalog/Model/Indexer/Category/Flat/Action/Full.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Category/Flat/Action/Rows.php b/app/code/Magento/Catalog/Model/Indexer/Category/Flat/Action/Rows.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Category/Flat/Plugin/IndexerConfigData.php b/app/code/Magento/Catalog/Model/Indexer/Category/Flat/Plugin/IndexerConfigData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Category/Flat/Plugin/StoreGroup.php b/app/code/Magento/Catalog/Model/Indexer/Category/Flat/Plugin/StoreGroup.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Category/Flat/Plugin/StoreView.php b/app/code/Magento/Catalog/Model/Indexer/Category/Flat/Plugin/StoreView.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Category/Flat/SkipStaticColumnsProvider.php b/app/code/Magento/Catalog/Model/Indexer/Category/Flat/SkipStaticColumnsProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Category/Flat/State.php b/app/code/Magento/Catalog/Model/Indexer/Category/Flat/State.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Category/Flat/System/Config/Mode.php b/app/code/Magento/Catalog/Model/Indexer/Category/Flat/System/Config/Mode.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Category/Product.php b/app/code/Magento/Catalog/Model/Indexer/Category/Product.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Category/Product/AbstractAction.php b/app/code/Magento/Catalog/Model/Indexer/Category/Product/AbstractAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Category/Product/Action/Full.php b/app/code/Magento/Catalog/Model/Indexer/Category/Product/Action/Full.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Category/Product/Action/Rows.php b/app/code/Magento/Catalog/Model/Indexer/Category/Product/Action/Rows.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Category/Product/Action/RowsFactory.php b/app/code/Magento/Catalog/Model/Indexer/Category/Product/Action/RowsFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Category/Product/Plugin/MviewState.php b/app/code/Magento/Catalog/Model/Indexer/Category/Product/Plugin/MviewState.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Category/Product/Plugin/StoreGroup.php b/app/code/Magento/Catalog/Model/Indexer/Category/Product/Plugin/StoreGroup.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Category/Product/Plugin/StoreView.php b/app/code/Magento/Catalog/Model/Indexer/Category/Product/Plugin/StoreView.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Category/Product/Processor.php b/app/code/Magento/Catalog/Model/Indexer/Category/Product/Processor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Category/Product/RowSizeEstimator.php b/app/code/Magento/Catalog/Model/Indexer/Category/Product/RowSizeEstimator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Category.php b/app/code/Magento/Catalog/Model/Indexer/Product/Category.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Category/Action/Rows.php b/app/code/Magento/Catalog/Model/Indexer/Product/Category/Action/Rows.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Category/Action/RowsFactory.php b/app/code/Magento/Catalog/Model/Indexer/Product/Category/Action/RowsFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Category/Processor.php b/app/code/Magento/Catalog/Model/Indexer/Product/Category/Processor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Eav.php b/app/code/Magento/Catalog/Model/Indexer/Product/Eav.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Eav/AbstractAction.php b/app/code/Magento/Catalog/Model/Indexer/Product/Eav/AbstractAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Eav/Action/Full.php b/app/code/Magento/Catalog/Model/Indexer/Product/Eav/Action/Full.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Eav/Action/Row.php b/app/code/Magento/Catalog/Model/Indexer/Product/Eav/Action/Row.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Eav/Action/Rows.php b/app/code/Magento/Catalog/Model/Indexer/Product/Eav/Action/Rows.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Eav/Plugin/AttributeSet.php b/app/code/Magento/Catalog/Model/Indexer/Product/Eav/Plugin/AttributeSet.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Eav/Plugin/AttributeSet/IndexableAttributeFilter.php b/app/code/Magento/Catalog/Model/Indexer/Product/Eav/Plugin/AttributeSet/IndexableAttributeFilter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Eav/Plugin/StoreView.php b/app/code/Magento/Catalog/Model/Indexer/Product/Eav/Plugin/StoreView.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Eav/Processor.php b/app/code/Magento/Catalog/Model/Indexer/Product/Eav/Processor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Flat.php b/app/code/Magento/Catalog/Model/Indexer/Product/Flat.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/AbstractAction.php b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/AbstractAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Action/Eraser.php b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Action/Eraser.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Action/Full.php b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Action/Full.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Action/Indexer.php b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Action/Indexer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Action/Row.php b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Action/Row.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Action/Rows.php b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Action/Rows.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Action/Rows/TableData.php b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Action/Rows/TableData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/FlatTableBuilder.php b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/FlatTableBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Plugin/IndexerConfigData.php b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Plugin/IndexerConfigData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Plugin/Store.php b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Plugin/Store.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Plugin/StoreGroup.php b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Plugin/StoreGroup.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Processor.php b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Processor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/State.php b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/State.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/System/Config/Mode.php b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/System/Config/Mode.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Table/Builder.php b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Table/Builder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Table/BuilderInterface.php b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/Table/BuilderInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/TableBuilder.php b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/TableBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/TableData.php b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/TableData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Flat/TableDataInterface.php b/app/code/Magento/Catalog/Model/Indexer/Product/Flat/TableDataInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Full.php b/app/code/Magento/Catalog/Model/Indexer/Product/Full.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Price.php b/app/code/Magento/Catalog/Model/Indexer/Product/Price.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Price/AbstractAction.php b/app/code/Magento/Catalog/Model/Indexer/Product/Price/AbstractAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Price/Action/Full.php b/app/code/Magento/Catalog/Model/Indexer/Product/Price/Action/Full.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Price/Action/Row.php b/app/code/Magento/Catalog/Model/Indexer/Product/Price/Action/Row.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Price/Action/Rows.php b/app/code/Magento/Catalog/Model/Indexer/Product/Price/Action/Rows.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Price/InvalidateIndex.php b/app/code/Magento/Catalog/Model/Indexer/Product/Price/InvalidateIndex.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Price/Plugin/CustomerGroup.php b/app/code/Magento/Catalog/Model/Indexer/Product/Price/Plugin/CustomerGroup.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Price/Plugin/Website.php b/app/code/Magento/Catalog/Model/Indexer/Product/Price/Plugin/Website.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Price/Processor.php b/app/code/Magento/Catalog/Model/Indexer/Product/Price/Processor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Price/System/Config/PriceScope.php b/app/code/Magento/Catalog/Model/Indexer/Product/Price/System/Config/PriceScope.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Indexer/Product/Price/UpdateIndexInterface.php b/app/code/Magento/Catalog/Model/Indexer/Product/Price/UpdateIndexInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Layer.php b/app/code/Magento/Catalog/Model/Layer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Layer/AvailabilityFlagInterface.php b/app/code/Magento/Catalog/Model/Layer/AvailabilityFlagInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Layer/Category.php b/app/code/Magento/Catalog/Model/Layer/Category.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Layer/Category/AvailabilityFlag.php b/app/code/Magento/Catalog/Model/Layer/Category/AvailabilityFlag.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Layer/Category/CollectionFilter.php b/app/code/Magento/Catalog/Model/Layer/Category/CollectionFilter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Layer/Category/FilterableAttributeList.php b/app/code/Magento/Catalog/Model/Layer/Category/FilterableAttributeList.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Layer/Category/ItemCollectionProvider.php b/app/code/Magento/Catalog/Model/Layer/Category/ItemCollectionProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Layer/Category/StateKey.php b/app/code/Magento/Catalog/Model/Layer/Category/StateKey.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Layer/CollectionFilterInterface.php b/app/code/Magento/Catalog/Model/Layer/CollectionFilterInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Layer/Context.php b/app/code/Magento/Catalog/Model/Layer/Context.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Layer/ContextInterface.php b/app/code/Magento/Catalog/Model/Layer/ContextInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Layer/Filter/AbstractFilter.php b/app/code/Magento/Catalog/Model/Layer/Filter/AbstractFilter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Layer/Filter/Attribute.php b/app/code/Magento/Catalog/Model/Layer/Filter/Attribute.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Layer/Filter/Category.php b/app/code/Magento/Catalog/Model/Layer/Filter/Category.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Layer/Filter/DataProvider/Category.php b/app/code/Magento/Catalog/Model/Layer/Filter/DataProvider/Category.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Layer/Filter/DataProvider/Decimal.php b/app/code/Magento/Catalog/Model/Layer/Filter/DataProvider/Decimal.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Layer/Filter/DataProvider/Price.php b/app/code/Magento/Catalog/Model/Layer/Filter/DataProvider/Price.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Layer/Filter/Decimal.php b/app/code/Magento/Catalog/Model/Layer/Filter/Decimal.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Layer/Filter/Dynamic/AlgorithmFactory.php b/app/code/Magento/Catalog/Model/Layer/Filter/Dynamic/AlgorithmFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Layer/Filter/Dynamic/AlgorithmInterface.php b/app/code/Magento/Catalog/Model/Layer/Filter/Dynamic/AlgorithmInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Layer/Filter/Dynamic/Auto.php b/app/code/Magento/Catalog/Model/Layer/Filter/Dynamic/Auto.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Layer/Filter/Dynamic/Improved.php b/app/code/Magento/Catalog/Model/Layer/Filter/Dynamic/Improved.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Layer/Filter/Dynamic/Manual.php b/app/code/Magento/Catalog/Model/Layer/Filter/Dynamic/Manual.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Layer/Filter/Factory.php b/app/code/Magento/Catalog/Model/Layer/Filter/Factory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Layer/Filter/FilterInterface.php b/app/code/Magento/Catalog/Model/Layer/Filter/FilterInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Layer/Filter/Item.php b/app/code/Magento/Catalog/Model/Layer/Filter/Item.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Layer/Filter/Item/DataBuilder.php b/app/code/Magento/Catalog/Model/Layer/Filter/Item/DataBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Layer/Filter/Price.php b/app/code/Magento/Catalog/Model/Layer/Filter/Price.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Layer/Filter/Price/Range.php b/app/code/Magento/Catalog/Model/Layer/Filter/Price/Range.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Layer/Filter/Price/Render.php b/app/code/Magento/Catalog/Model/Layer/Filter/Price/Render.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Layer/FilterList.php b/app/code/Magento/Catalog/Model/Layer/FilterList.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Layer/FilterableAttributeListInterface.php b/app/code/Magento/Catalog/Model/Layer/FilterableAttributeListInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Layer/ItemCollectionProviderInterface.php b/app/code/Magento/Catalog/Model/Layer/ItemCollectionProviderInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Layer/Resolver.php b/app/code/Magento/Catalog/Model/Layer/Resolver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Layer/Search.php b/app/code/Magento/Catalog/Model/Layer/Search.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Layer/Search/CollectionFilter.php b/app/code/Magento/Catalog/Model/Layer/Search/CollectionFilter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Layer/Search/Filter/Attribute.php b/app/code/Magento/Catalog/Model/Layer/Search/Filter/Attribute.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Layer/Search/FilterableAttributeList.php b/app/code/Magento/Catalog/Model/Layer/Search/FilterableAttributeList.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Layer/Search/ItemCollectionProvider.php b/app/code/Magento/Catalog/Model/Layer/Search/ItemCollectionProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Layer/State.php b/app/code/Magento/Catalog/Model/Layer/State.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Layer/StateKeyInterface.php b/app/code/Magento/Catalog/Model/Layer/StateKeyInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Layout/DepersonalizePlugin.php b/app/code/Magento/Catalog/Model/Layout/DepersonalizePlugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Locator/LocatorInterface.php b/app/code/Magento/Catalog/Model/Locator/LocatorInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Locator/RegistryLocator.php b/app/code/Magento/Catalog/Model/Locator/RegistryLocator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Plugin/Log.php b/app/code/Magento/Catalog/Model/Plugin/Log.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Plugin/ProductRepository/TransactionWrapper.php b/app/code/Magento/Catalog/Model/Plugin/ProductRepository/TransactionWrapper.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Plugin/QuoteItemProductOption.php b/app/code/Magento/Catalog/Model/Plugin/QuoteItemProductOption.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Plugin/ShowOutOfStockConfig.php b/app/code/Magento/Catalog/Model/Plugin/ShowOutOfStockConfig.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product.php b/app/code/Magento/Catalog/Model/Product.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Action.php b/app/code/Magento/Catalog/Model/Product/Action.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/AttributeSetFinder.php b/app/code/Magento/Catalog/Model/Product/Attribute/AttributeSetFinder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Boolean.php b/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Boolean.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Category.php b/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Category.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/Backend/GroupPrice/AbstractGroupPrice.php b/app/code/Magento/Catalog/Model/Product/Attribute/Backend/GroupPrice/AbstractGroupPrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Media/EntryConverterInterface.php b/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Media/EntryConverterInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Media/EntryConverterPool.php b/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Media/EntryConverterPool.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Media/ImageEntryConverter.php b/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Media/ImageEntryConverter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Price.php b/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Price.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Sku.php b/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Sku.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Stock.php b/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Stock.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Tierprice.php b/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Tierprice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Weight.php b/app/code/Magento/Catalog/Model/Product/Attribute/Backend/Weight.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/DataProvider.php b/app/code/Magento/Catalog/Model/Product/Attribute/DataProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/DefaultAttributes.php b/app/code/Magento/Catalog/Model/Product/Attribute/DefaultAttributes.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/Frontend/Image.php b/app/code/Magento/Catalog/Model/Product/Attribute/Frontend/Image.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/Group.php b/app/code/Magento/Catalog/Model/Product/Attribute/Group.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/Management.php b/app/code/Magento/Catalog/Model/Product/Attribute/Management.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/OptionManagement.php b/app/code/Magento/Catalog/Model/Product/Attribute/OptionManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/Repository.php b/app/code/Magento/Catalog/Model/Product/Attribute/Repository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/SetManagement.php b/app/code/Magento/Catalog/Model/Product/Attribute/SetManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/SetRepository.php b/app/code/Magento/Catalog/Model/Product/Attribute/SetRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/Source/Boolean.php b/app/code/Magento/Catalog/Model/Product/Attribute/Source/Boolean.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/Source/Countryofmanufacture.php b/app/code/Magento/Catalog/Model/Product/Attribute/Source/Countryofmanufacture.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/Source/Inputtype.php b/app/code/Magento/Catalog/Model/Product/Attribute/Source/Inputtype.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/Source/Layout.php b/app/code/Magento/Catalog/Model/Product/Attribute/Source/Layout.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/Source/Status.php b/app/code/Magento/Catalog/Model/Product/Attribute/Source/Status.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/Type.php b/app/code/Magento/Catalog/Model/Product/Attribute/Type.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Attribute/TypesList.php b/app/code/Magento/Catalog/Model/Product/Attribute/TypesList.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/AttributeSet/Build.php b/app/code/Magento/Catalog/Model/Product/AttributeSet/Build.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/AttributeSet/Options.php b/app/code/Magento/Catalog/Model/Product/AttributeSet/Options.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/AttributeSet/SuggestedSet.php b/app/code/Magento/Catalog/Model/Product/AttributeSet/SuggestedSet.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/CartConfiguration.php b/app/code/Magento/Catalog/Model/Product/CartConfiguration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/CatalogPrice.php b/app/code/Magento/Catalog/Model/Product/CatalogPrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/CatalogPriceFactory.php b/app/code/Magento/Catalog/Model/Product/CatalogPriceFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/CatalogPriceInterface.php b/app/code/Magento/Catalog/Model/Product/CatalogPriceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Compare/Item.php b/app/code/Magento/Catalog/Model/Product/Compare/Item.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Compare/ListCompare.php b/app/code/Magento/Catalog/Model/Product/Compare/ListCompare.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Condition.php b/app/code/Magento/Catalog/Model/Product/Condition.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Condition/ConditionInterface.php b/app/code/Magento/Catalog/Model/Product/Condition/ConditionInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Configuration/Item/ItemInterface.php b/app/code/Magento/Catalog/Model/Product/Configuration/Item/ItemInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Configuration/Item/Option.php b/app/code/Magento/Catalog/Model/Product/Configuration/Item/Option.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Configuration/Item/Option/OptionInterface.php b/app/code/Magento/Catalog/Model/Product/Configuration/Item/Option/OptionInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Copier.php b/app/code/Magento/Catalog/Model/Product/Copier.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/CopyConstructor/Composite.php b/app/code/Magento/Catalog/Model/Product/CopyConstructor/Composite.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/CopyConstructor/CrossSell.php b/app/code/Magento/Catalog/Model/Product/CopyConstructor/CrossSell.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/CopyConstructor/Related.php b/app/code/Magento/Catalog/Model/Product/CopyConstructor/Related.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/CopyConstructor/UpSell.php b/app/code/Magento/Catalog/Model/Product/CopyConstructor/UpSell.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/CopyConstructorFactory.php b/app/code/Magento/Catalog/Model/Product/CopyConstructorFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/CopyConstructorInterface.php b/app/code/Magento/Catalog/Model/Product/CopyConstructorInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Edit/WeightResolver.php b/app/code/Magento/Catalog/Model/Product/Edit/WeightResolver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Exception.php b/app/code/Magento/Catalog/Model/Product/Exception.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Gallery/CreateHandler.php b/app/code/Magento/Catalog/Model/Product/Gallery/CreateHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Gallery/Entry.php b/app/code/Magento/Catalog/Model/Product/Gallery/Entry.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Gallery/EntryResolver.php b/app/code/Magento/Catalog/Model/Product/Gallery/EntryResolver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Gallery/GalleryManagement.php b/app/code/Magento/Catalog/Model/Product/Gallery/GalleryManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Gallery/MimeTypeExtensionMap.php b/app/code/Magento/Catalog/Model/Product/Gallery/MimeTypeExtensionMap.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Gallery/Processor.php b/app/code/Magento/Catalog/Model/Product/Gallery/Processor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Gallery/ReadHandler.php b/app/code/Magento/Catalog/Model/Product/Gallery/ReadHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Gallery/UpdateHandler.php b/app/code/Magento/Catalog/Model/Product/Gallery/UpdateHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Image.php b/app/code/Magento/Catalog/Model/Product/Image.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Image/Cache.php b/app/code/Magento/Catalog/Model/Product/Image/Cache.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Image/NotLoadInfoImageException.php b/app/code/Magento/Catalog/Model/Product/Image/NotLoadInfoImageException.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Initialization/Helper/ProductLinks.php b/app/code/Magento/Catalog/Model/Product/Initialization/Helper/ProductLinks.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Link.php b/app/code/Magento/Catalog/Model/Product/Link.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Link/Converter.php b/app/code/Magento/Catalog/Model/Product/Link/Converter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Link/Resolver.php b/app/code/Magento/Catalog/Model/Product/Link/Resolver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Link/SaveHandler.php b/app/code/Magento/Catalog/Model/Product/Link/SaveHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/LinkTypeProvider.php b/app/code/Magento/Catalog/Model/Product/LinkTypeProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Media/AttributeManagement.php b/app/code/Magento/Catalog/Model/Product/Media/AttributeManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Media/Config.php b/app/code/Magento/Catalog/Model/Product/Media/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Media/ConfigInterface.php b/app/code/Magento/Catalog/Model/Product/Media/ConfigInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Option.php b/app/code/Magento/Catalog/Model/Product/Option.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Option/Converter.php b/app/code/Magento/Catalog/Model/Product/Option/Converter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Option/ReadHandler.php b/app/code/Magento/Catalog/Model/Product/Option/ReadHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Option/Repository.php b/app/code/Magento/Catalog/Model/Product/Option/Repository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Option/SaveHandler.php b/app/code/Magento/Catalog/Model/Product/Option/SaveHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Option/Type.php b/app/code/Magento/Catalog/Model/Product/Option/Type.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Option/Type/Date.php b/app/code/Magento/Catalog/Model/Product/Option/Type/Date.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Option/Type/DefaultType.php b/app/code/Magento/Catalog/Model/Product/Option/Type/DefaultType.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Option/Type/Factory.php b/app/code/Magento/Catalog/Model/Product/Option/Type/Factory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Option/Type/File.php b/app/code/Magento/Catalog/Model/Product/Option/Type/File.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Option/Type/File/ValidateFactory.php b/app/code/Magento/Catalog/Model/Product/Option/Type/File/ValidateFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Option/Type/File/Validator.php b/app/code/Magento/Catalog/Model/Product/Option/Type/File/Validator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Option/Type/File/ValidatorFile.php b/app/code/Magento/Catalog/Model/Product/Option/Type/File/ValidatorFile.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Option/Type/File/ValidatorInfo.php b/app/code/Magento/Catalog/Model/Product/Option/Type/File/ValidatorInfo.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Option/Type/Select.php b/app/code/Magento/Catalog/Model/Product/Option/Type/Select.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Option/Type/Text.php b/app/code/Magento/Catalog/Model/Product/Option/Type/Text.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Option/UrlBuilder.php b/app/code/Magento/Catalog/Model/Product/Option/UrlBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Option/Validator/DefaultValidator.php b/app/code/Magento/Catalog/Model/Product/Option/Validator/DefaultValidator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Option/Validator/File.php b/app/code/Magento/Catalog/Model/Product/Option/Validator/File.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Option/Validator/Pool.php b/app/code/Magento/Catalog/Model/Product/Option/Validator/Pool.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Option/Validator/Select.php b/app/code/Magento/Catalog/Model/Product/Option/Validator/Select.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Option/Validator/Text.php b/app/code/Magento/Catalog/Model/Product/Option/Validator/Text.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Option/Value.php b/app/code/Magento/Catalog/Model/Product/Option/Value.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Price/BasePrice.php b/app/code/Magento/Catalog/Model/Product/Price/BasePrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Price/BasePriceStorage.php b/app/code/Magento/Catalog/Model/Product/Price/BasePriceStorage.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Price/Cost.php b/app/code/Magento/Catalog/Model/Product/Price/Cost.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Price/CostStorage.php b/app/code/Magento/Catalog/Model/Product/Price/CostStorage.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Price/PricePersistence.php b/app/code/Magento/Catalog/Model/Product/Price/PricePersistence.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Price/PriceUpdateResult.php b/app/code/Magento/Catalog/Model/Product/Price/PriceUpdateResult.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Price/SpecialPrice.php b/app/code/Magento/Catalog/Model/Product/Price/SpecialPrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Price/SpecialPriceStorage.php b/app/code/Magento/Catalog/Model/Product/Price/SpecialPriceStorage.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Price/TierPrice.php b/app/code/Magento/Catalog/Model/Product/Price/TierPrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Price/TierPriceFactory.php b/app/code/Magento/Catalog/Model/Product/Price/TierPriceFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Price/TierPricePersistence.php b/app/code/Magento/Catalog/Model/Product/Price/TierPricePersistence.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Price/TierPriceStorage.php b/app/code/Magento/Catalog/Model/Product/Price/TierPriceStorage.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Price/Validation/InvalidSkuProcessor.php b/app/code/Magento/Catalog/Model/Product/Price/Validation/InvalidSkuProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Price/Validation/Result.php b/app/code/Magento/Catalog/Model/Product/Price/Validation/Result.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Price/Validation/TierPriceValidator.php b/app/code/Magento/Catalog/Model/Product/Price/Validation/TierPriceValidator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/PriceModifier.php b/app/code/Magento/Catalog/Model/Product/PriceModifier.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/PriceModifier/Composite.php b/app/code/Magento/Catalog/Model/Product/PriceModifier/Composite.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/PriceModifierInterface.php b/app/code/Magento/Catalog/Model/Product/PriceModifierInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Pricing/Renderer/SalableResolver.php b/app/code/Magento/Catalog/Model/Product/Pricing/Renderer/SalableResolver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Pricing/Renderer/SalableResolverInterface.php b/app/code/Magento/Catalog/Model/Product/Pricing/Renderer/SalableResolverInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/ProductFrontendAction/Synchronizer.php b/app/code/Magento/Catalog/Model/Product/ProductFrontendAction/Synchronizer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/ReservedAttributeList.php b/app/code/Magento/Catalog/Model/Product/ReservedAttributeList.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/ScopedTierPriceManagement.php b/app/code/Magento/Catalog/Model/Product/ScopedTierPriceManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/TierPrice.php b/app/code/Magento/Catalog/Model/Product/TierPrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/TierPriceManagement.php b/app/code/Magento/Catalog/Model/Product/TierPriceManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Type.php b/app/code/Magento/Catalog/Model/Product/Type.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Type/AbstractType.php b/app/code/Magento/Catalog/Model/Product/Type/AbstractType.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Type/Pool.php b/app/code/Magento/Catalog/Model/Product/Type/Pool.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Type/Price.php b/app/code/Magento/Catalog/Model/Product/Type/Price.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Type/Price/Factory.php b/app/code/Magento/Catalog/Model/Product/Type/Price/Factory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Type/Simple.php b/app/code/Magento/Catalog/Model/Product/Type/Simple.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Type/Virtual.php b/app/code/Magento/Catalog/Model/Product/Type/Virtual.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/TypeTransitionManager.php b/app/code/Magento/Catalog/Model/Product/TypeTransitionManager.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Url.php b/app/code/Magento/Catalog/Model/Product/Url.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Validator.php b/app/code/Magento/Catalog/Model/Product/Validator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Visibility.php b/app/code/Magento/Catalog/Model/Product/Visibility.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Website.php b/app/code/Magento/Catalog/Model/Product/Website.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Website/ReadHandler.php b/app/code/Magento/Catalog/Model/Product/Website/ReadHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Product/Website/SaveHandler.php b/app/code/Magento/Catalog/Model/Product/Website/SaveHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ProductAttributeGroupRepository.php b/app/code/Magento/Catalog/Model/ProductAttributeGroupRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ProductCategoryList.php b/app/code/Magento/Catalog/Model/ProductCategoryList.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ProductFrontendAction.php b/app/code/Magento/Catalog/Model/ProductFrontendAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ProductIdLocator.php b/app/code/Magento/Catalog/Model/ProductIdLocator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ProductIdLocatorInterface.php b/app/code/Magento/Catalog/Model/ProductIdLocatorInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ProductLink/Attribute.php b/app/code/Magento/Catalog/Model/ProductLink/Attribute.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ProductLink/CollectionProvider.php b/app/code/Magento/Catalog/Model/ProductLink/CollectionProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ProductLink/CollectionProvider/Crosssell.php b/app/code/Magento/Catalog/Model/ProductLink/CollectionProvider/Crosssell.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ProductLink/CollectionProvider/Related.php b/app/code/Magento/Catalog/Model/ProductLink/CollectionProvider/Related.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ProductLink/CollectionProvider/Upsell.php b/app/code/Magento/Catalog/Model/ProductLink/CollectionProvider/Upsell.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ProductLink/CollectionProviderInterface.php b/app/code/Magento/Catalog/Model/ProductLink/CollectionProviderInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ProductLink/Converter/ConverterInterface.php b/app/code/Magento/Catalog/Model/ProductLink/Converter/ConverterInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ProductLink/Converter/ConverterPool.php b/app/code/Magento/Catalog/Model/ProductLink/Converter/ConverterPool.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ProductLink/Converter/DefaultConverter.php b/app/code/Magento/Catalog/Model/ProductLink/Converter/DefaultConverter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ProductLink/Link.php b/app/code/Magento/Catalog/Model/ProductLink/Link.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ProductLink/Management.php b/app/code/Magento/Catalog/Model/ProductLink/Management.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ProductLink/Repository.php b/app/code/Magento/Catalog/Model/ProductLink/Repository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ProductLink/Type.php b/app/code/Magento/Catalog/Model/ProductLink/Type.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ProductManagement.php b/app/code/Magento/Catalog/Model/ProductManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ProductOption.php b/app/code/Magento/Catalog/Model/ProductOption.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ProductOptionProcessor.php b/app/code/Magento/Catalog/Model/ProductOptionProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ProductOptionProcessorInterface.php b/app/code/Magento/Catalog/Model/ProductOptionProcessorInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ProductOptions/Config.php b/app/code/Magento/Catalog/Model/ProductOptions/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ProductOptions/Config/Converter.php b/app/code/Magento/Catalog/Model/ProductOptions/Config/Converter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ProductOptions/Config/Reader.php b/app/code/Magento/Catalog/Model/ProductOptions/Config/Reader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ProductOptions/Config/SchemaLocator.php b/app/code/Magento/Catalog/Model/ProductOptions/Config/SchemaLocator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ProductOptions/ConfigInterface.php b/app/code/Magento/Catalog/Model/ProductOptions/ConfigInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ProductOptions/TypeList.php b/app/code/Magento/Catalog/Model/ProductOptions/TypeList.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ProductRender.php b/app/code/Magento/Catalog/Model/ProductRender.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ProductRender/Button.php b/app/code/Magento/Catalog/Model/ProductRender/Button.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ProductRender/FormattedPriceInfo.php b/app/code/Magento/Catalog/Model/ProductRender/FormattedPriceInfo.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ProductRender/FormattedPriceInfoBuilder.php b/app/code/Magento/Catalog/Model/ProductRender/FormattedPriceInfoBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ProductRender/Image.php b/app/code/Magento/Catalog/Model/ProductRender/Image.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ProductRender/PriceInfo.php b/app/code/Magento/Catalog/Model/ProductRender/PriceInfo.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ProductRenderInfoSearchResults.php b/app/code/Magento/Catalog/Model/ProductRenderInfoSearchResults.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ProductRenderList.php b/app/code/Magento/Catalog/Model/ProductRenderList.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ProductRepository.php b/app/code/Magento/Catalog/Model/ProductRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ProductRepository/MediaGalleryProcessor.php b/app/code/Magento/Catalog/Model/ProductRepository/MediaGalleryProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ProductType.php b/app/code/Magento/Catalog/Model/ProductType.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ProductTypeList.php b/app/code/Magento/Catalog/Model/ProductTypeList.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ProductTypes/Config.php b/app/code/Magento/Catalog/Model/ProductTypes/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ProductTypes/Config/Converter.php b/app/code/Magento/Catalog/Model/ProductTypes/Config/Converter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ProductTypes/Config/Reader.php b/app/code/Magento/Catalog/Model/ProductTypes/Config/Reader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ProductTypes/Config/SchemaLocator.php b/app/code/Magento/Catalog/Model/ProductTypes/Config/SchemaLocator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ProductTypes/ConfigInterface.php b/app/code/Magento/Catalog/Model/ProductTypes/ConfigInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ProductVisibilityCondition.php b/app/code/Magento/Catalog/Model/ProductVisibilityCondition.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ProductWebsiteLink.php b/app/code/Magento/Catalog/Model/ProductWebsiteLink.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ProductWebsiteLinkRepository.php b/app/code/Magento/Catalog/Model/ProductWebsiteLinkRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/AbstractCollection.php b/app/code/Magento/Catalog/Model/ResourceModel/AbstractCollection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/AbstractResource.php b/app/code/Magento/Catalog/Model/ResourceModel/AbstractResource.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Attribute.php b/app/code/Magento/Catalog/Model/ResourceModel/Attribute.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Attribute/ConditionBuilder.php b/app/code/Magento/Catalog/Model/ResourceModel/Attribute/ConditionBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Attribute/WebsiteAttributesSynchronizer.php b/app/code/Magento/Catalog/Model/ResourceModel/Attribute/WebsiteAttributesSynchronizer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/AttributePersistor.php b/app/code/Magento/Catalog/Model/ResourceModel/AttributePersistor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Category.php b/app/code/Magento/Catalog/Model/ResourceModel/Category.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Category/AggregateCount.php b/app/code/Magento/Catalog/Model/ResourceModel/Category/AggregateCount.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Category/Attribute/Collection.php b/app/code/Magento/Catalog/Model/ResourceModel/Category/Attribute/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Category/Attribute/Frontend/Image.php b/app/code/Magento/Catalog/Model/ResourceModel/Category/Attribute/Frontend/Image.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Category/Attribute/Source/Layout.php b/app/code/Magento/Catalog/Model/ResourceModel/Category/Attribute/Source/Layout.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Category/Attribute/Source/Page.php b/app/code/Magento/Catalog/Model/ResourceModel/Category/Attribute/Source/Page.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Category/Collection.php b/app/code/Magento/Catalog/Model/ResourceModel/Category/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Category/Collection/Factory.php b/app/code/Magento/Catalog/Model/ResourceModel/Category/Collection/Factory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Category/Flat.php b/app/code/Magento/Catalog/Model/ResourceModel/Category/Flat.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Category/Flat/Collection.php b/app/code/Magento/Catalog/Model/ResourceModel/Category/Flat/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Category/Tree.php b/app/code/Magento/Catalog/Model/ResourceModel/Category/Tree.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/CategoryProduct.php b/app/code/Magento/Catalog/Model/ResourceModel/CategoryProduct.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Collection/AbstractCollection.php b/app/code/Magento/Catalog/Model/ResourceModel/Collection/AbstractCollection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Config.php b/app/code/Magento/Catalog/Model/ResourceModel/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Eav/Attribute.php b/app/code/Magento/Catalog/Model/ResourceModel/Eav/Attribute.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Helper.php b/app/code/Magento/Catalog/Model/ResourceModel/Helper.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Indexer/ActiveTableSwitcher.php b/app/code/Magento/Catalog/Model/ResourceModel/Indexer/ActiveTableSwitcher.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Layer/Filter/Attribute.php b/app/code/Magento/Catalog/Model/ResourceModel/Layer/Filter/Attribute.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Layer/Filter/Decimal.php b/app/code/Magento/Catalog/Model/ResourceModel/Layer/Filter/Decimal.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Layer/Filter/Price.php b/app/code/Magento/Catalog/Model/ResourceModel/Layer/Filter/Price.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/MaxHeapTableSizeProcessor.php b/app/code/Magento/Catalog/Model/ResourceModel/MaxHeapTableSizeProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product.php b/app/code/Magento/Catalog/Model/ResourceModel/Product.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Action.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Action.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Attribute/Backend/GroupPrice/AbstractGroupPrice.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Attribute/Backend/GroupPrice/AbstractGroupPrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Attribute/Backend/Image.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Attribute/Backend/Image.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Attribute/Backend/Tierprice.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Attribute/Backend/Tierprice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Attribute/Collection.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Attribute/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/BaseSelectProcessorInterface.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/BaseSelectProcessorInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/CategoryLink.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/CategoryLink.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Collection.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Collection/ProductLimitation.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Collection/ProductLimitation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Compare/Item.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Compare/Item.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Compare/Item/Collection.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Compare/Item/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/CompositeBaseSelectProcessor.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/CompositeBaseSelectProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Flat.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Flat.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Gallery.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Gallery.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/AbstractIndexer.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/AbstractIndexer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Eav/AbstractEav.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Eav/AbstractEav.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Eav/BatchSizeCalculator.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Eav/BatchSizeCalculator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Eav/Decimal.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Eav/Decimal.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Eav/DecimalRowSizeEstimator.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Eav/DecimalRowSizeEstimator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Eav/Source.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Eav/Source.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Eav/SourceRowSizeEstimator.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Eav/SourceRowSizeEstimator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/LinkedProductSelectBuilderByIndexPrice.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/LinkedProductSelectBuilderByIndexPrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Price/BatchSizeCalculator.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Price/BatchSizeCalculator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Price/CompositeProductBatchSizeAdjuster.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Price/CompositeProductBatchSizeAdjuster.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Price/CompositeProductBatchSizeAdjusterInterface.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Price/CompositeProductBatchSizeAdjusterInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Price/CompositeProductRelationsCalculator.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Price/CompositeProductRelationsCalculator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Price/CompositeProductRowSizeEstimator.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Price/CompositeProductRowSizeEstimator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Price/DefaultPrice.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Price/DefaultPrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Price/Factory.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Price/Factory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Price/IndexTableRowSizeEstimator.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Price/IndexTableRowSizeEstimator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Price/PriceInterface.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/Price/PriceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/TemporaryTableStrategy.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Indexer/TemporaryTableStrategy.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Link.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Link.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Link/Collection.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Link/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Link/DeleteHandler.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Link/DeleteHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Link/Product/Collection.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Link/Product/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Link/SaveHandler.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Link/SaveHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/LinkedProductSelectBuilderByBasePrice.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/LinkedProductSelectBuilderByBasePrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/LinkedProductSelectBuilderBySpecialPrice.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/LinkedProductSelectBuilderBySpecialPrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/LinkedProductSelectBuilderByTierPrice.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/LinkedProductSelectBuilderByTierPrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/LinkedProductSelectBuilderComposite.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/LinkedProductSelectBuilderComposite.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/LinkedProductSelectBuilderInterface.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/LinkedProductSelectBuilderInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Option.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Option.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Option/Collection.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Option/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Option/Value.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Option/Value.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Option/Value/Collection.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Option/Value/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Price/SpecialPrice.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Price/SpecialPrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Relation.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Relation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/StatusBaseSelectProcessor.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/StatusBaseSelectProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Website.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Website.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Website/Link.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Website/Link.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Product/Website/SelectProcessor.php b/app/code/Magento/Catalog/Model/ResourceModel/Product/Website/SelectProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/ProductFrontendAction.php b/app/code/Magento/Catalog/Model/ResourceModel/ProductFrontendAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/ProductFrontendAction/Collection.php b/app/code/Magento/Catalog/Model/ResourceModel/ProductFrontendAction/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Setup/PropertyMapper.php b/app/code/Magento/Catalog/Model/ResourceModel/Setup/PropertyMapper.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/ResourceModel/Url.php b/app/code/Magento/Catalog/Model/ResourceModel/Url.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Rss/Category.php b/app/code/Magento/Catalog/Model/Rss/Category.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Rss/Product/NewProducts.php b/app/code/Magento/Catalog/Model/Rss/Product/NewProducts.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Rss/Product/NotifyStock.php b/app/code/Magento/Catalog/Model/Rss/Product/NotifyStock.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Rss/Product/Special.php b/app/code/Magento/Catalog/Model/Rss/Product/Special.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Session.php b/app/code/Magento/Catalog/Model/Session.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/System/Config/Backend/Catalog/Url/Rewrite/Suffix.php b/app/code/Magento/Catalog/Model/System/Config/Backend/Catalog/Url/Rewrite/Suffix.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/System/Config/Source/Inputtype.php b/app/code/Magento/Catalog/Model/System/Config/Source/Inputtype.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Template/Filter.php b/app/code/Magento/Catalog/Model/Template/Filter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Template/Filter/Factory.php b/app/code/Magento/Catalog/Model/Template/Filter/Factory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/View/Asset/Image.php b/app/code/Magento/Catalog/Model/View/Asset/Image.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/View/Asset/Image/Context.php b/app/code/Magento/Catalog/Model/View/Asset/Image/Context.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/View/Asset/Placeholder.php b/app/code/Magento/Catalog/Model/View/Asset/Placeholder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Webapi/Product/Option/Type/Date.php b/app/code/Magento/Catalog/Model/Webapi/Product/Option/Type/Date.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Webapi/Product/Option/Type/File/Processor.php b/app/code/Magento/Catalog/Model/Webapi/Product/Option/Type/File/Processor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Widget/RecentlyComparedStorageConfiguration.php b/app/code/Magento/Catalog/Model/Widget/RecentlyComparedStorageConfiguration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Model/Widget/RecentlyViewedStorageConfiguration.php b/app/code/Magento/Catalog/Model/Widget/RecentlyViewedStorageConfiguration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Observer/CatalogCheckIsUsingStaticUrlsAllowedObserver.php b/app/code/Magento/Catalog/Observer/CatalogCheckIsUsingStaticUrlsAllowedObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Observer/Compare/BindCustomerLoginObserver.php b/app/code/Magento/Catalog/Observer/Compare/BindCustomerLoginObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Observer/Compare/BindCustomerLogoutObserver.php b/app/code/Magento/Catalog/Observer/Compare/BindCustomerLogoutObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Observer/MenuCategoryData.php b/app/code/Magento/Catalog/Observer/MenuCategoryData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Observer/SetSpecialPriceStartDate.php b/app/code/Magento/Catalog/Observer/SetSpecialPriceStartDate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Observer/SwitchPriceAttributeScopeOnConfigChange.php b/app/code/Magento/Catalog/Observer/SwitchPriceAttributeScopeOnConfigChange.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Observer/SynchronizeWebsiteAttributesOnStoreChange.php b/app/code/Magento/Catalog/Observer/SynchronizeWebsiteAttributesOnStoreChange.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Observer/UnsetSpecialPrice.php b/app/code/Magento/Catalog/Observer/UnsetSpecialPrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Plugin/Block/Topmenu.php b/app/code/Magento/Catalog/Plugin/Block/Topmenu.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Plugin/Model/Attribute/Backend/AttributeValidation.php b/app/code/Magento/Catalog/Plugin/Model/Attribute/Backend/AttributeValidation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Plugin/Model/AttributeSetRepository/RemoveProducts.php b/app/code/Magento/Catalog/Plugin/Model/AttributeSetRepository/RemoveProducts.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Plugin/Model/Indexer/Category/Product/Execute.php b/app/code/Magento/Catalog/Plugin/Model/Indexer/Category/Product/Execute.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Plugin/Model/Indexer/Category/Product/MaxHeapTableSizeProcessorOnFullReindex.php b/app/code/Magento/Catalog/Plugin/Model/Indexer/Category/Product/MaxHeapTableSizeProcessorOnFullReindex.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Plugin/Model/Product/Action/UpdateAttributesFlushCache.php b/app/code/Magento/Catalog/Plugin/Model/Product/Action/UpdateAttributesFlushCache.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Plugin/Model/ResourceModel/Attribute/Save.php b/app/code/Magento/Catalog/Plugin/Model/ResourceModel/Attribute/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Plugin/Model/ResourceModel/Config.php b/app/code/Magento/Catalog/Plugin/Model/ResourceModel/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Pricing/Price/BasePrice.php b/app/code/Magento/Catalog/Pricing/Price/BasePrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Pricing/Price/ConfiguredPrice.php b/app/code/Magento/Catalog/Pricing/Price/ConfiguredPrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Pricing/Price/ConfiguredPriceInterface.php b/app/code/Magento/Catalog/Pricing/Price/ConfiguredPriceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Pricing/Price/CustomOptionPrice.php b/app/code/Magento/Catalog/Pricing/Price/CustomOptionPrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Pricing/Price/CustomOptionPriceInterface.php b/app/code/Magento/Catalog/Pricing/Price/CustomOptionPriceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Pricing/Price/FinalPrice.php b/app/code/Magento/Catalog/Pricing/Price/FinalPrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Pricing/Price/FinalPriceInterface.php b/app/code/Magento/Catalog/Pricing/Price/FinalPriceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Pricing/Price/MinimalPriceCalculatorInterface.php b/app/code/Magento/Catalog/Pricing/Price/MinimalPriceCalculatorInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Pricing/Price/MinimalTierPriceCalculator.php b/app/code/Magento/Catalog/Pricing/Price/MinimalTierPriceCalculator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Pricing/Price/RegularPrice.php b/app/code/Magento/Catalog/Pricing/Price/RegularPrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Pricing/Price/SpecialPrice.php b/app/code/Magento/Catalog/Pricing/Price/SpecialPrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Pricing/Price/SpecialPriceInterface.php b/app/code/Magento/Catalog/Pricing/Price/SpecialPriceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Pricing/Price/TierPrice.php b/app/code/Magento/Catalog/Pricing/Price/TierPrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Pricing/Price/TierPriceInterface.php b/app/code/Magento/Catalog/Pricing/Price/TierPriceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Pricing/Render.php b/app/code/Magento/Catalog/Pricing/Render.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Pricing/Render/ConfiguredPriceBox.php b/app/code/Magento/Catalog/Pricing/Render/ConfiguredPriceBox.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Pricing/Render/FinalPriceBox.php b/app/code/Magento/Catalog/Pricing/Render/FinalPriceBox.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Pricing/Render/PriceBox.php b/app/code/Magento/Catalog/Pricing/Render/PriceBox.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/README.md b/app/code/Magento/Catalog/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Setup/CategorySetup.php b/app/code/Magento/Catalog/Setup/CategorySetup.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Setup/InstallData.php b/app/code/Magento/Catalog/Setup/InstallData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Setup/InstallSchema.php b/app/code/Magento/Catalog/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Setup/Recurring.php b/app/code/Magento/Catalog/Setup/Recurring.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Setup/UpgradeData.php b/app/code/Magento/Catalog/Setup/UpgradeData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Setup/UpgradeWebsiteAttributes.php b/app/code/Magento/Catalog/Setup/UpgradeWebsiteAttributes.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Setup/UpgradeWidgetData.php b/app/code/Magento/Catalog/Setup/UpgradeWidgetData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Category/AbstractCategoryTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Category/AbstractCategoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Attribute/Button/CancelTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Attribute/Button/CancelTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Attribute/Button/GenericTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Attribute/Button/GenericTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Attribute/Button/SaveTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Attribute/Button/SaveTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Attribute/Edit/Tab/AdvancedTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Attribute/Edit/Tab/AdvancedTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Attribute/GridTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Attribute/GridTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Composite/Fieldset/OptionsTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Composite/Fieldset/OptionsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Action/Attribute/Tab/InventoryTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Action/Attribute/Tab/InventoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Button/AddAttributeTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Button/AddAttributeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Button/BackTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Button/BackTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Button/CreateCategoryTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Button/CreateCategoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Button/GenericTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Button/GenericTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Button/SaveTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Button/SaveTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Tab/AlertsTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Tab/AlertsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Tab/InventoryTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Edit/Tab/InventoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Helper/Form/CategoryTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Helper/Form/CategoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Helper/Form/Gallery/ContentTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Helper/Form/Gallery/ContentTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Helper/Form/GalleryTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Helper/Form/GalleryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Helper/Form/WeightTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Helper/Form/WeightTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Options/AjaxTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Product/Options/AjaxTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Rss/Grid/LinkTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Rss/Grid/LinkTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Rss/NotifyStockTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Adminhtml/Rss/NotifyStockTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Category/Plugin/PriceBoxTagsTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Category/Plugin/PriceBoxTagsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Category/Rss/LinkTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Category/Rss/LinkTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Category/ViewTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Category/ViewTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Block/FrontendStorageManagerTest.php b/app/code/Magento/Catalog/Test/Unit/Block/FrontendStorageManagerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Block/NavigationTest.php b/app/code/Magento/Catalog/Test/Unit/Block/NavigationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Product/AbstractProductTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Product/AbstractProductTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Product/Compare/ListCompareTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Product/Compare/ListCompareTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Product/ContextTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Product/ContextTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Product/ImageBuilderTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Product/ImageBuilderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Product/ListProductTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Product/ListProductTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Product/ListTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Product/ListTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Product/NewProductTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Product/NewProductTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Product/PriceTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Product/PriceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Product/ProductList/RelatedTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Product/ProductList/RelatedTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Product/ProductList/ToolbarTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Product/ProductList/ToolbarTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Product/ProductList/UpsellTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Product/ProductList/UpsellTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Product/View/AttributesTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Product/View/AttributesTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Product/View/GalleryTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Product/View/GalleryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Product/View/OptionsTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Product/View/OptionsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Product/View/TabsTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Product/View/TabsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Product/ViewTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Product/ViewTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Product/Widget/NewWidgetTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Product/Widget/NewWidgetTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Rss/CategoryTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Rss/CategoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Rss/Product/NewProductsTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Rss/Product/NewProductsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Rss/Product/SpecialTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Rss/Product/SpecialTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Ui/ProductViewCounterTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Ui/ProductViewCounterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Block/Widget/LinkTest.php b/app/code/Magento/Catalog/Test/Unit/Block/Widget/LinkTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Console/Command/ImagesResizeCommandTest.php b/app/code/Magento/Catalog/Test/Unit/Console/Command/ImagesResizeCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Category/DeleteTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Category/DeleteTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Category/EditTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Category/EditTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Category/Image/UploadTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Category/Image/UploadTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Category/MoveTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Category/MoveTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Category/SaveTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Category/SaveTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Category/Widget/CategoriesJsonTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Category/Widget/CategoriesJsonTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Category/Widget/ChooserTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Category/Widget/ChooserTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Action/Attribute/EditTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Action/Attribute/EditTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Action/Attribute/SaveTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Action/Attribute/SaveTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/AddAttributeToTemplateTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/AddAttributeToTemplateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Attribute/EditTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Attribute/EditTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Attribute/SaveTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Attribute/SaveTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Attribute/ValidateTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Attribute/ValidateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/AttributeTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/AttributeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/BuilderTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/BuilderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Initialization/Helper/AttributeFilterTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Initialization/Helper/AttributeFilterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Initialization/Helper/HandlerFactoryTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Initialization/Helper/HandlerFactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Initialization/Helper/Plugin/Handler/CompositeTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Initialization/Helper/Plugin/Handler/CompositeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Initialization/HelperTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Initialization/HelperTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Initialization/StockDataFilterTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/Initialization/StockDataFilterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/MassStatusTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/MassStatusTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/NewActionTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/NewActionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/ReloadTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/ReloadTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/SaveTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/SaveTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/ShowUpdateResultTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/ShowUpdateResultTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/ValidateTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/Product/ValidateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/ProductTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Adminhtml/ProductTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Category/ViewTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Category/ViewTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Product/Compare/IndexTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Product/Compare/IndexTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Controller/Product/Frontend/Action/SynchronizeTest.php b/app/code/Magento/Catalog/Test/Unit/Controller/Product/Frontend/Action/SynchronizeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Cron/FrontendActionsFlushTest.php b/app/code/Magento/Catalog/Test/Unit/Cron/FrontendActionsFlushTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Cron/RefreshSpecialPricesTest.php b/app/code/Magento/Catalog/Test/Unit/Cron/RefreshSpecialPricesTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Cron/SynchronizeWebsiteAttributesTest.php b/app/code/Magento/Catalog/Test/Unit/Cron/SynchronizeWebsiteAttributesTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/CustomerData/ProductFrontendActionSectionTest.php b/app/code/Magento/Catalog/Test/Unit/CustomerData/ProductFrontendActionSectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/CustomerData/ProductsRenderInfoSectionTest.php b/app/code/Magento/Catalog/Test/Unit/CustomerData/ProductsRenderInfoSectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Helper/ImageTest.php b/app/code/Magento/Catalog/Test/Unit/Helper/ImageTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Helper/Product/CompareTest.php b/app/code/Magento/Catalog/Test/Unit/Helper/Product/CompareTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Helper/Product/ConfigurationPoolTest.php b/app/code/Magento/Catalog/Test/Unit/Helper/Product/ConfigurationPoolTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Helper/Product/ConfigurationTest.php b/app/code/Magento/Catalog/Test/Unit/Helper/Product/ConfigurationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Helper/Product/Edit/Action/AttributeTest.php b/app/code/Magento/Catalog/Test/Unit/Helper/Product/Edit/Action/AttributeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Helper/Product/Flat/IndexerTest.php b/app/code/Magento/Catalog/Test/Unit/Helper/Product/Flat/IndexerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Helper/ProductTest.php b/app/code/Magento/Catalog/Test/Unit/Helper/ProductTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/ProductCategoryFilterTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/ProductCategoryFilterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/ProductWebsiteFilterTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/ProductWebsiteFilterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Backend/CustomlayoutupdateTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Backend/CustomlayoutupdateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/ConverterTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/ConverterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/ReaderTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/ReaderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/SchemaLocatorTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/SchemaLocatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/XsdTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/XsdTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/_files/attributes_config_merged.php b/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/_files/attributes_config_merged.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/_files/attributes_config_merged.xml b/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/_files/attributes_config_merged.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/_files/attributes_config_one.xml b/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/_files/attributes_config_one.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/_files/attributes_config_two.xml b/app/code/Magento/Catalog/Test/Unit/Model/Attribute/Config/_files/attributes_config_two.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Attribute/ConfigTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Attribute/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Attribute/LockValidatorCompositeTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Attribute/LockValidatorCompositeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Category/Attribute/Backend/ImageTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Category/Attribute/Backend/ImageTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Category/Attribute/Backend/SortbyTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Category/Attribute/Backend/SortbyTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Category/Attribute/Source/LayoutTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Category/Attribute/Source/LayoutTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Category/Attribute/Source/PageTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Category/Attribute/Source/PageTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Category/Attribute/Source/SortbyTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Category/Attribute/Source/SortbyTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Category/AttributeRepositoryTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Category/AttributeRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Category/DataProviderTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Category/DataProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Category/FileInfoTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Category/FileInfoTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Category/Link/ReadHandlerTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Category/Link/ReadHandlerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Category/Link/SaveHandlerTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Category/Link/SaveHandlerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Category/Product/PositionResolverTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Category/Product/PositionResolverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Category/TreeTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Category/TreeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/CategoryLinkManagementTest.php b/app/code/Magento/Catalog/Test/Unit/Model/CategoryLinkManagementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/CategoryLinkRepositoryTest.php b/app/code/Magento/Catalog/Test/Unit/Model/CategoryLinkRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/CategoryListTest.php b/app/code/Magento/Catalog/Test/Unit/Model/CategoryListTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/CategoryManagementTest.php b/app/code/Magento/Catalog/Test/Unit/Model/CategoryManagementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/CategoryRepositoryTest.php b/app/code/Magento/Catalog/Test/Unit/Model/CategoryRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/CategoryTest.php b/app/code/Magento/Catalog/Test/Unit/Model/CategoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/CollectionProviderTest.php b/app/code/Magento/Catalog/Test/Unit/Model/CollectionProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Config/CatalogClone/Media/ImageTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Config/CatalogClone/Media/ImageTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Config/Source/CategoryTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Config/Source/CategoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Config/Source/GridPerPageTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Config/Source/GridPerPageTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Config/Source/ListPerPageTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Config/Source/ListPerPageTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Config/Source/ListSortTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Config/Source/ListSortTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Config/Source/Product/Options/TypeTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Config/Source/Product/Options/TypeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ConfigTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/CustomOptions/CustomOptionProcessorTest.php b/app/code/Magento/Catalog/Test/Unit/Model/CustomOptions/CustomOptionProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/CustomOptions/CustomOptionTest.php b/app/code/Magento/Catalog/Test/Unit/Model/CustomOptions/CustomOptionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Entity/AttributeTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Entity/AttributeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/FactoryTest.php b/app/code/Magento/Catalog/Test/Unit/Model/FactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/FrontendStorageConfigurationPoolTest.php b/app/code/Magento/Catalog/Test/Unit/Model/FrontendStorageConfigurationPoolTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ImageExtractorTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ImageExtractorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ImageUploaderTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ImageUploaderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Flat/Plugin/IndexerConfigDataTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Flat/Plugin/IndexerConfigDataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Flat/Plugin/StoreGroupTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Flat/Plugin/StoreGroupTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Flat/Plugin/StoreViewTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Flat/Plugin/StoreViewTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Flat/StateTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Flat/StateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Flat/System/Config/ModeTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Flat/System/Config/ModeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/FlatTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/FlatTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Product/Plugin/ImportTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Product/Plugin/ImportTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Product/Plugin/MviewStateTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Product/Plugin/MviewStateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Product/Plugin/StoreGroupTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Product/Plugin/StoreGroupTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Product/Plugin/StoreViewTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Product/Plugin/StoreViewTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Product/RowSizeEstimatorTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/Product/RowSizeEstimatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/ProductTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Category/ProductTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Category/Plugin/ImportTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Category/Plugin/ImportTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/CategoryTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/CategoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/AbstractActionTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/AbstractActionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Action/FullTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Action/FullTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Action/RowTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Action/RowTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Action/RowsTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Action/RowsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Plugin/AttributeSet/IndexableAttributeFilterTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Plugin/AttributeSet/IndexableAttributeFilterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Plugin/AttributeSetTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Plugin/AttributeSetTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Plugin/ImportTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Plugin/ImportTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Plugin/StoreViewTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Plugin/StoreViewTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/EavTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/EavTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Action/EraserTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Action/EraserTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Action/RowTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Action/RowTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Action/Rows/TableDataTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Action/Rows/TableDataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Action/RowsTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Action/RowsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/FlatTableBuilderTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/FlatTableBuilderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Plugin/IndexerConfigDataTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Plugin/IndexerConfigDataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Plugin/StoreGroupTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Plugin/StoreGroupTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Plugin/StoreTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Plugin/StoreTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/ProcessorTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/ProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/StateTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/StateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/System/Config/ModeTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/System/Config/ModeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Table/BuilderTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/Table/BuilderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/TableDataTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Flat/TableDataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/FlatTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/FlatTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/FullTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/FullTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Price/Action/RowTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Price/Action/RowTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Price/Action/RowsTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Price/Action/RowsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Price/Plugin/WebsiteTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Price/Plugin/WebsiteTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Price/System/Config/PriceScopeTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Price/System/Config/PriceScopeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Layer/Category/AvailabilityFlagTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Layer/Category/AvailabilityFlagTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Layer/Category/CollectionFilterTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Layer/Category/CollectionFilterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Layer/Category/FilterableAttributeListTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Layer/Category/FilterableAttributeListTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Layer/Category/StateKeyTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Layer/Category/StateKeyTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/AttributeTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/AttributeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/CategoryTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/CategoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/DataProvider/CategoryTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/DataProvider/CategoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/DataProvider/DecimalTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/DataProvider/DecimalTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/DataProvider/PriceTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/DataProvider/PriceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/DecimalTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/DecimalTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/FactoryTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/FactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/Item/DataBuilderTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/Item/DataBuilderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/PriceTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Layer/Filter/PriceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Layer/FilterListTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Layer/FilterListTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Layer/Search/CollectionFilterTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Layer/Search/CollectionFilterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Layer/Search/FilterableAttributeListTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Layer/Search/FilterableAttributeListTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Layer/Search/StateKeyTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Layer/Search/StateKeyTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Layer/StateTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Layer/StateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/LayerTest.php b/app/code/Magento/Catalog/Test/Unit/Model/LayerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Layout/DepersonalizePluginTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Layout/DepersonalizePluginTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Locator/RegistryLocatorTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Locator/RegistryLocatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Plugin/LogTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Plugin/LogTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Plugin/ProductRepository/TransactionWrapperTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Plugin/ProductRepository/TransactionWrapperTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Plugin/QuoteItemProductOptionTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Plugin/QuoteItemProductOptionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/ActionTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/ActionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/AttributeSetFinderTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/AttributeSetFinderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/BooleanTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/BooleanTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/CategoryTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/CategoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/GroupPrice/AbstractTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/GroupPrice/AbstractTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/Media/EntryConverterPoolTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/Media/EntryConverterPoolTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/Media/ImageEntryConverterTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/Media/ImageEntryConverterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/PriceTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/PriceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/StockTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/StockTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/TierpriceTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/TierpriceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/WeightTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Backend/WeightTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Frontend/ImageTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Frontend/ImageTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/GroupTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/GroupTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/ManagementTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/ManagementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/OptionManagementTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/OptionManagementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/RepositoryTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/RepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/SetManagementTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/SetManagementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/SetRepositoryTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/SetRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Source/BooleanTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Source/BooleanTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Source/CountryofmanufactureTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Source/CountryofmanufactureTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Source/InputtypeTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Source/InputtypeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Source/LayoutTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Source/LayoutTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Source/StatusTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/Source/StatusTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/TypesListTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Attribute/TypesListTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/CartConfigurationTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/CartConfigurationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/CatalogPriceTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/CatalogPriceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Compare/ItemTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Compare/ItemTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/ConditionTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/ConditionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/CopierTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/CopierTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/CopyConstructor/CompositeTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/CopyConstructor/CompositeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/CopyConstructor/CrossSellTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/CopyConstructor/CrossSellTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/CopyConstructor/RelatedTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/CopyConstructor/RelatedTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/CopyConstructor/UpSellTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/CopyConstructor/UpSellTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/CopyConstructorFactoryTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/CopyConstructorFactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Gallery/GalleryManagementTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Gallery/GalleryManagementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Gallery/MimeTypeExtensionMapTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Gallery/MimeTypeExtensionMapTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Gallery/ProcessorTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Gallery/ProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Image/CacheTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Image/CacheTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/ImageTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/ImageTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Initialization/Helper/ProductLinksTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Initialization/Helper/ProductLinksTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Link/ConverterTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Link/ConverterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Link/ResolverTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Link/ResolverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/LinkTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/LinkTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/LinkTypeProviderTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/LinkTypeProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Media/AttributeManagementTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Media/AttributeManagementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/RepositoryTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/RepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/SaveHandlerTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/SaveHandlerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Type/FactoryTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Type/FactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Type/FileTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Type/FileTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/UrlBuilderTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/UrlBuilderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Validator/DefaultValidatorTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Validator/DefaultValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Validator/FileTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Validator/FileTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Validator/PoolTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Validator/PoolTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Validator/SelectTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Validator/SelectTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Validator/TextTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/Validator/TextTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/ValueTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Option/ValueTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/OptionTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/OptionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/BasePriceStorageTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/BasePriceStorageTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/CostStorageTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/CostStorageTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/PricePersistenceTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/PricePersistenceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/SpecialPriceStorageTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/SpecialPriceStorageTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/TierPriceStorageTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/TierPriceStorageTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/Validation/InvalidSkuProcessorTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/Validation/InvalidSkuProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/Validation/TierPriceValidatorTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Price/Validation/TierPriceValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/PriceModifier/CompositeTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/PriceModifier/CompositeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/PriceModifierTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/PriceModifierTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Pricing/Renderer/SalableResolverTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Pricing/Renderer/SalableResolverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/ProductFrontendAction/SynchronizerTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/ProductFrontendAction/SynchronizerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/ProductList/ToolbarTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/ProductList/ToolbarTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/ReservedAttributeListTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/ReservedAttributeListTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/TierPriceManagementTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/TierPriceManagementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Type/AbstractTypeTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Type/AbstractTypeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Type/PriceTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Type/PriceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Type/SimpleTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Type/SimpleTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Type/VirtualTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Type/VirtualTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/TypeTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/TypeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/TypeTransitionManagerTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/TypeTransitionManagerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/UrlTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/UrlTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/ValidatorTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/ValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/VisibilityTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/VisibilityTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Website/ReadHandlerTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Website/ReadHandlerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Product/Website/SaveHandlerTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Product/Website/SaveHandlerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductAttributeGroupRepositoryTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ProductAttributeGroupRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductIdLocatorTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ProductIdLocatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductLink/ManagementTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ProductLink/ManagementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductLink/RepositoryTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ProductLink/RepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductManagementTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ProductManagementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductOptionProcessorTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ProductOptionProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductOptions/Config/XsdTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ProductOptions/Config/XsdTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductOptions/Config/_files/invalidProductOptionsMergedXmlArray.php b/app/code/Magento/Catalog/Test/Unit/Model/ProductOptions/Config/_files/invalidProductOptionsMergedXmlArray.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductOptions/Config/_files/invalidProductOptionsXmlArray.php b/app/code/Magento/Catalog/Test/Unit/Model/ProductOptions/Config/_files/invalidProductOptionsXmlArray.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductOptions/Config/_files/product_options_merged_valid.xml b/app/code/Magento/Catalog/Test/Unit/Model/ProductOptions/Config/_files/product_options_merged_valid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductOptions/Config/_files/product_options_valid.xml b/app/code/Magento/Catalog/Test/Unit/Model/ProductOptions/Config/_files/product_options_valid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductRender/FormattedPriceInfoBuilderTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ProductRender/FormattedPriceInfoBuilderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductRender/PriceInfoTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ProductRender/PriceInfoTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductRenderListTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ProductRenderListTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductRepository/MediaGalleryProcessorTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ProductRepository/MediaGalleryProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductRepositoryTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ProductRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ProductTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductTypeListTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ProductTypeListTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/ConverterTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/ConverterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/SchemaLocatorTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/SchemaLocatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/XsdMergedTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/XsdMergedTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/XsdTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/XsdTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/_files/invalidProductTypesMergedXmlArray.php b/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/_files/invalidProductTypesMergedXmlArray.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/_files/invalidProductTypesXmlArray.php b/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/_files/invalidProductTypesXmlArray.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/_files/product_types.php b/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/_files/product_types.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/_files/product_types.xml b/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/_files/product_types.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/_files/valid_product_types.xml b/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/_files/valid_product_types.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/_files/valid_product_types_merged.xml b/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/Config/_files/valid_product_types_merged.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/ConfigTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ProductTypes/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/AbstractTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/AbstractTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Attribute/ConditionBuilderTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Attribute/ConditionBuilderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Category/Collection/FactoryTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Category/Collection/FactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Category/FlatTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Category/FlatTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Category/TreeTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Category/TreeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/CategoryTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/CategoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/ConfigTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Eav/AttributeTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Eav/AttributeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Indexer/ActiveTableSwitcherTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Indexer/ActiveTableSwitcherTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Layer/Filter/PriceTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Layer/Filter/PriceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/CategoryLinkTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/CategoryLinkTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Collection/ProductLimitationTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Collection/ProductLimitationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/CollectionTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/CompositeBaseSelectProcessorTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/CompositeBaseSelectProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/FlatTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/FlatTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/GalleryTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/GalleryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Indexer/Eav/BatchSizeCalculatorTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Indexer/Eav/BatchSizeCalculatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Indexer/Eav/DecimalRowSizeEstimatorTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Indexer/Eav/DecimalRowSizeEstimatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Indexer/LinkedProductSelectBuilderByIndexPriceTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Indexer/LinkedProductSelectBuilderByIndexPriceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Indexer/Price/BatchSizeCalculatorTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Indexer/Price/BatchSizeCalculatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Indexer/Price/CompositeProductBatchSizeAdjusterTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Indexer/Price/CompositeProductBatchSizeAdjusterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Indexer/Price/CompositeProductRelationsCalculatorTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Indexer/Price/CompositeProductRelationsCalculatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Indexer/Price/CompositeProductRowSizeEstimatorTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Indexer/Price/CompositeProductRowSizeEstimatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Indexer/Price/DefaultPriceTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Indexer/Price/DefaultPriceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Indexer/Price/IndexTableRowSizeEstimatorTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Indexer/Price/IndexTableRowSizeEstimatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Indexer/TemporaryTableStrategyTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Indexer/TemporaryTableStrategyTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Link/Product/CollectionTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Link/Product/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/LinkTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/LinkTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Option/CollectionTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Option/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/StatusBaseSelectProcessorTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/StatusBaseSelectProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Website/LinkTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/Product/Website/LinkTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/ProductTest.php b/app/code/Magento/Catalog/Test/Unit/Model/ResourceModel/ProductTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Rss/CategoryTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Rss/CategoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Rss/Product/NewProductsTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Rss/Product/NewProductsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Rss/Product/NotifyStockTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Rss/Product/NotifyStockTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Rss/Product/SpecialTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Rss/Product/SpecialTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/System/Config/Backend/Catalog/Url/Rewrite/SuffixTest.php b/app/code/Magento/Catalog/Test/Unit/Model/System/Config/Backend/Catalog/Url/Rewrite/SuffixTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/System/Config/Source/InputtypeTest.php b/app/code/Magento/Catalog/Test/Unit/Model/System/Config/Source/InputtypeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/Template/Filter/FactoryTest.php b/app/code/Magento/Catalog/Test/Unit/Model/Template/Filter/FactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/View/Asset/Image/ContextTest.php b/app/code/Magento/Catalog/Test/Unit/Model/View/Asset/Image/ContextTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/View/Asset/ImageTest.php b/app/code/Magento/Catalog/Test/Unit/Model/View/Asset/ImageTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/View/Asset/PlaceholderTest.php b/app/code/Magento/Catalog/Test/Unit/Model/View/Asset/PlaceholderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/_files/converted_view.php b/app/code/Magento/Catalog/Test/Unit/Model/_files/converted_view.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Model/_files/valid_view.xml b/app/code/Magento/Catalog/Test/Unit/Model/_files/valid_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Observer/MenuCategoryDataTest.php b/app/code/Magento/Catalog/Test/Unit/Observer/MenuCategoryDataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Observer/SynchronizeWebsiteAttributesOnStoreChangeTest.php b/app/code/Magento/Catalog/Test/Unit/Observer/SynchronizeWebsiteAttributesOnStoreChangeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Plugin/Block/TopmenuTest.php b/app/code/Magento/Catalog/Test/Unit/Plugin/Block/TopmenuTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Plugin/Model/AttributeSetRepository/RemoveProductsTest.php b/app/code/Magento/Catalog/Test/Unit/Plugin/Model/AttributeSetRepository/RemoveProductsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Plugin/Model/Indexer/Category/Product/ExecuteTest.php b/app/code/Magento/Catalog/Test/Unit/Plugin/Model/Indexer/Category/Product/ExecuteTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Plugin/Model/Product/Action/UpdateAttributesFlushCacheTest.php b/app/code/Magento/Catalog/Test/Unit/Plugin/Model/Product/Action/UpdateAttributesFlushCacheTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Plugin/Model/ResourceModel/Attribute/SaveTest.php b/app/code/Magento/Catalog/Test/Unit/Plugin/Model/ResourceModel/Attribute/SaveTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Plugin/Model/ResourceModel/ConfigTest.php b/app/code/Magento/Catalog/Test/Unit/Plugin/Model/ResourceModel/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Pricing/Price/BasePriceTest.php b/app/code/Magento/Catalog/Test/Unit/Pricing/Price/BasePriceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Pricing/Price/ConfiguredPriceTest.php b/app/code/Magento/Catalog/Test/Unit/Pricing/Price/ConfiguredPriceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Pricing/Price/CustomOptionPriceTest.php b/app/code/Magento/Catalog/Test/Unit/Pricing/Price/CustomOptionPriceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Pricing/Price/FinalPriceTest.php b/app/code/Magento/Catalog/Test/Unit/Pricing/Price/FinalPriceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Pricing/Price/MinimalTierPriceCalculatorTest.php b/app/code/Magento/Catalog/Test/Unit/Pricing/Price/MinimalTierPriceCalculatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Pricing/Price/RegularPriceTest.php b/app/code/Magento/Catalog/Test/Unit/Pricing/Price/RegularPriceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Pricing/Price/SpecialPriceTest.php b/app/code/Magento/Catalog/Test/Unit/Pricing/Price/SpecialPriceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Pricing/Price/TierPriceTest.php b/app/code/Magento/Catalog/Test/Unit/Pricing/Price/TierPriceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Pricing/Render/FinalPriceBoxTest.php b/app/code/Magento/Catalog/Test/Unit/Pricing/Render/FinalPriceBoxTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Pricing/Render/PriceBoxTest.php b/app/code/Magento/Catalog/Test/Unit/Pricing/Render/PriceBoxTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Pricing/RenderTest.php b/app/code/Magento/Catalog/Test/Unit/Pricing/RenderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Setup/CategorySetupTest.php b/app/code/Magento/Catalog/Test/Unit/Setup/CategorySetupTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/AllowedProductTypesTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/AllowedProductTypesTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/Component/Listing/Columns/AbstractColumnTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/Component/Listing/Columns/AbstractColumnTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/Component/Listing/Columns/AttributeSetTextTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/Component/Listing/Columns/AttributeSetTextTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/Component/Listing/Columns/StatusTextTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/Component/Listing/Columns/StatusTextTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/Component/Product/Form/Categories/OptionsTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/Component/Product/Form/Categories/OptionsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/CatalogEavValidationRulesTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/CatalogEavValidationRulesTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/AbstractModifierTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/AbstractModifierTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/AdvancedPricingTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/AdvancedPricingTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/AttributeSetTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/AttributeSetTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/AttributesTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/AttributesTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/CategoriesTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/CategoriesTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/CustomOptionsTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/CustomOptionsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/FactoryTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/FactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/GeneralTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/GeneralTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ImagesTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ImagesTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/RelatedTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/RelatedTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ScheduleDesignUpdateTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ScheduleDesignUpdateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/SystemTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/SystemTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/TierPriceTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/TierPriceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/WebsitesTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/Modifier/WebsitesTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/NewCategoryDataProviderTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/NewCategoryDataProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/ProductDataProviderTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Form/ProductDataProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Listing/Collector/AdditionalInfoTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Listing/Collector/AdditionalInfoTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Listing/Collector/ImageTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Listing/Collector/ImageTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Listing/Collector/PriceTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Listing/Collector/PriceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Listing/Collector/UrlTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Listing/Collector/UrlTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/ProductCustomOptionsDataProviderTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/ProductCustomOptionsDataProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Related/AbstractDataProviderTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Related/AbstractDataProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Related/CrossSellDataProviderTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Related/CrossSellDataProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Related/RelatedDataProviderTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Related/RelatedDataProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Related/UpSellDataProviderTest.php b/app/code/Magento/Catalog/Test/Unit/Ui/DataProvider/Product/Related/UpSellDataProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/_files/catalog/product/somefile.png b/app/code/Magento/Catalog/Test/Unit/_files/catalog/product/somefile.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Test/Unit/_files/catalog/product/watermark/somefile.png b/app/code/Magento/Catalog/Test/Unit/_files/catalog/product/watermark/somefile.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Ui/AllowedProductTypes.php b/app/code/Magento/Catalog/Ui/AllowedProductTypes.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Ui/Component/Category/Form/Element/Wysiwyg.php b/app/code/Magento/Catalog/Ui/Component/Category/Form/Element/Wysiwyg.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Ui/Component/ColumnFactory.php b/app/code/Magento/Catalog/Ui/Component/ColumnFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Ui/Component/FilterFactory.php b/app/code/Magento/Catalog/Ui/Component/FilterFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Ui/Component/Listing/Attribute/AbstractRepository.php b/app/code/Magento/Catalog/Ui/Component/Listing/Attribute/AbstractRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Ui/Component/Listing/Attribute/Repository.php b/app/code/Magento/Catalog/Ui/Component/Listing/Attribute/Repository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Ui/Component/Listing/Attribute/RepositoryInterface.php b/app/code/Magento/Catalog/Ui/Component/Listing/Attribute/RepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Ui/Component/Listing/Columns.php b/app/code/Magento/Catalog/Ui/Component/Listing/Columns.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Ui/Component/Listing/Columns/AttributeSetText.php b/app/code/Magento/Catalog/Ui/Component/Listing/Columns/AttributeSetText.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Ui/Component/Listing/Columns/Price.php b/app/code/Magento/Catalog/Ui/Component/Listing/Columns/Price.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Ui/Component/Listing/Columns/ProductActions.php b/app/code/Magento/Catalog/Ui/Component/Listing/Columns/ProductActions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Ui/Component/Listing/Columns/StatusText.php b/app/code/Magento/Catalog/Ui/Component/Listing/Columns/StatusText.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Ui/Component/Listing/Columns/Thumbnail.php b/app/code/Magento/Catalog/Ui/Component/Listing/Columns/Thumbnail.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Ui/Component/Listing/Columns/Websites.php b/app/code/Magento/Catalog/Ui/Component/Listing/Columns/Websites.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Ui/Component/Listing/Filters.php b/app/code/Magento/Catalog/Ui/Component/Listing/Filters.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Ui/Component/Product/Form/Categories/Options.php b/app/code/Magento/Catalog/Ui/Component/Product/Form/Categories/Options.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Ui/DataProvider/CatalogEavValidationRules.php b/app/code/Magento/Catalog/Ui/DataProvider/CatalogEavValidationRules.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/AddStoreFieldToCollection.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/AddStoreFieldToCollection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/AddWebsitesFieldToCollection.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/AddWebsitesFieldToCollection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/Attributes/Listing.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/Attributes/Listing.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/AbstractModifier.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/AbstractModifier.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/AdvancedPricing.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/AdvancedPricing.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/Alerts.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/Alerts.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/AttributeSet.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/AttributeSet.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/Attributes.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/Attributes.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/Categories.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/Categories.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/Images.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/Images.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/Related.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/Related.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/ScheduleDesignUpdate.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/ScheduleDesignUpdate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/System.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/System.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/TierPrice.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/TierPrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/Websites.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/Websites.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/NewCategoryDataProvider.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/NewCategoryDataProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/ProductDataProvider.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/Form/ProductDataProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/Listing/Collector/AdditionalInfo.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/Listing/Collector/AdditionalInfo.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/Listing/Collector/Image.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/Listing/Collector/Image.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/Listing/Collector/Price.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/Listing/Collector/Price.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/Listing/Collector/Url.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/Listing/Collector/Url.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/Listing/DataProvider.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/Listing/DataProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/ProductCustomOptionsDataProvider.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/ProductCustomOptionsDataProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/ProductDataProvider.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/ProductDataProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/ProductRenderCollectorComposite.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/ProductRenderCollectorComposite.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/ProductRenderCollectorInterface.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/ProductRenderCollectorInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/Related/AbstractDataProvider.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/Related/AbstractDataProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/Related/CrossSellDataProvider.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/Related/CrossSellDataProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/Related/RelatedDataProvider.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/Related/RelatedDataProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/Ui/DataProvider/Product/Related/UpSellDataProvider.php b/app/code/Magento/Catalog/Ui/DataProvider/Product/Related/UpSellDataProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/composer.json b/app/code/Magento/Catalog/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/etc/acl.xml b/app/code/Magento/Catalog/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/etc/adminhtml/di.xml b/app/code/Magento/Catalog/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/etc/adminhtml/events.xml b/app/code/Magento/Catalog/etc/adminhtml/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/etc/adminhtml/menu.xml b/app/code/Magento/Catalog/etc/adminhtml/menu.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/etc/adminhtml/routes.xml b/app/code/Magento/Catalog/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/etc/adminhtml/system.xml b/app/code/Magento/Catalog/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/etc/catalog_attributes.xml b/app/code/Magento/Catalog/etc/catalog_attributes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/etc/catalog_attributes.xsd b/app/code/Magento/Catalog/etc/catalog_attributes.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/etc/config.xml b/app/code/Magento/Catalog/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/etc/crontab.xml b/app/code/Magento/Catalog/etc/crontab.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/etc/di.xml b/app/code/Magento/Catalog/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/etc/eav_attributes.xml b/app/code/Magento/Catalog/etc/eav_attributes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/etc/events.xml b/app/code/Magento/Catalog/etc/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/etc/extension_attributes.xml b/app/code/Magento/Catalog/etc/extension_attributes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/etc/frontend/di.xml b/app/code/Magento/Catalog/etc/frontend/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/etc/frontend/events.xml b/app/code/Magento/Catalog/etc/frontend/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/etc/frontend/page_types.xml b/app/code/Magento/Catalog/etc/frontend/page_types.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/etc/frontend/routes.xml b/app/code/Magento/Catalog/etc/frontend/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/etc/frontend/sections.xml b/app/code/Magento/Catalog/etc/frontend/sections.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/etc/indexer.xml b/app/code/Magento/Catalog/etc/indexer.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/etc/module.xml b/app/code/Magento/Catalog/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/etc/mview.xml b/app/code/Magento/Catalog/etc/mview.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/etc/product_options.xml b/app/code/Magento/Catalog/etc/product_options.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/etc/product_options.xsd b/app/code/Magento/Catalog/etc/product_options.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/etc/product_options_merged.xsd b/app/code/Magento/Catalog/etc/product_options_merged.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/etc/product_types.xml b/app/code/Magento/Catalog/etc/product_types.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/etc/product_types.xsd b/app/code/Magento/Catalog/etc/product_types.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/etc/product_types_base.xsd b/app/code/Magento/Catalog/etc/product_types_base.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/etc/product_types_merged.xsd b/app/code/Magento/Catalog/etc/product_types_merged.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/etc/view.xml b/app/code/Magento/Catalog/etc/view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/etc/webapi.xml b/app/code/Magento/Catalog/etc/webapi.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/etc/webapi_rest/di.xml b/app/code/Magento/Catalog/etc/webapi_rest/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/etc/webapi_soap/di.xml b/app/code/Magento/Catalog/etc/webapi_soap/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/etc/widget.xml b/app/code/Magento/Catalog/etc/widget.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/i18n/en_US.csv b/app/code/Magento/Catalog/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/registration.php b/app/code/Magento/Catalog/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/CATALOG_PRODUCT_COMPOSITE_CONFIGURE.xml b/app/code/Magento/Catalog/view/adminhtml/layout/CATALOG_PRODUCT_COMPOSITE_CONFIGURE.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/CATALOG_PRODUCT_COMPOSITE_CONFIGURE_ERROR.xml b/app/code/Magento/Catalog/view/adminhtml/layout/CATALOG_PRODUCT_COMPOSITE_CONFIGURE_ERROR.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/CATALOG_PRODUCT_COMPOSITE_UPDATE_RESULT.xml b/app/code/Magento/Catalog/view/adminhtml/layout/CATALOG_PRODUCT_COMPOSITE_UPDATE_RESULT.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_category_add.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_category_add.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_category_create.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_category_create.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_category_edit.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_category_edit.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_action_attribute_edit.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_action_attribute_edit.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_alertspricegrid.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_alertspricegrid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_alertsstockgrid.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_alertsstockgrid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_attribute_edit.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_attribute_edit.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_attribute_edit_form.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_attribute_edit_form.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_change_attribute_set.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_change_attribute_set.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_crosssell.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_crosssell.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_crosssellgrid.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_crosssellgrid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_customoptions.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_customoptions.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_edit.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_edit.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_form.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_form.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_grid.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_grid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_index.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_new.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_new.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_options.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_options.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_optionsimportgrid.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_optionsimportgrid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_related.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_related.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_relatedgrid.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_relatedgrid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_reload.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_reload.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_set_block.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_set_block.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_set_edit.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_set_edit.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_set_index.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_set_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_upsell.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_upsell.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_upsellgrid.xml b/app/code/Magento/Catalog/view/adminhtml/layout/catalog_product_upsellgrid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/requirejs-config.js b/app/code/Magento/Catalog/view/adminhtml/requirejs-config.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/category/checkboxes/tree.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/category/checkboxes/tree.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/category/edit.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/category/edit.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/category/edit/assign_products.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/category/edit/assign_products.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/category/tree.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/category/tree.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/category/widget/tree.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/category/widget/tree.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/form/renderer/fieldset/element.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/form/renderer/fieldset/element.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/form.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/form.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/js.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/js.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/labels.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/labels.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/options.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/options.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/set/main.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/set/main.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/set/main/tree/attribute.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/set/main/tree/attribute.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/set/main/tree/group.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/set/main/tree/group.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/set/toolbar/add.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/set/toolbar/add.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/set/toolbar/main.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/set/toolbar/main.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/configure.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/configure.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/options.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/options.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/options/js.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/options/js.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/options/type/date.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/options/type/date.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/options/type/default.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/options/type/default.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/options/type/file.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/options/type/file.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/options/type/select.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/options/type/select.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/options/type/text.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/options/type/text.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/qty.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/composite/fieldset/qty.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/action/attribute.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/action/attribute.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/action/inventory.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/action/inventory.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/action/websites.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/action/websites.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/attribute_set.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/attribute_set.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/category/new/form.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/category/new/form.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/options.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/options.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/options/option.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/options/option.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/options/type/date.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/options/type/date.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/options/type/file.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/options/type/file.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/options/type/select.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/options/type/select.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/options/type/text.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/options/type/text.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/price/tier.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/price/tier.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/serializer.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/serializer.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/websites.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/edit/websites.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/helper/gallery.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/helper/gallery.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/js.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/js.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/tab/alert.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/tab/alert.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/tab/inventory.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/tab/inventory.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/widget/chooser/container.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/widget/chooser/container.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/catalog/wysiwyg/js.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/catalog/wysiwyg/js.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/product/edit/attribute/search.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/product/edit/attribute/search.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/product/edit/tabs.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/product/edit/tabs.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/product/edit/tabs/child_tab.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/product/edit/tabs/child_tab.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/product/grid/massaction_extended.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/product/grid/massaction_extended.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/templates/rss/grid/link.phtml b/app/code/Magento/Catalog/view/adminhtml/templates/rss/grid/link.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/ui_component/category_form.xml b/app/code/Magento/Catalog/view/adminhtml/ui_component/category_form.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/ui_component/crosssell_product_listing.xml b/app/code/Magento/Catalog/view/adminhtml/ui_component/crosssell_product_listing.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/ui_component/design_config_form.xml b/app/code/Magento/Catalog/view/adminhtml/ui_component/design_config_form.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/ui_component/new_category_form.xml b/app/code/Magento/Catalog/view/adminhtml/ui_component/new_category_form.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/ui_component/product_attribute_add_form.xml b/app/code/Magento/Catalog/view/adminhtml/ui_component/product_attribute_add_form.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/ui_component/product_attributes_grid.xml b/app/code/Magento/Catalog/view/adminhtml/ui_component/product_attributes_grid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/ui_component/product_custom_options_listing.xml b/app/code/Magento/Catalog/view/adminhtml/ui_component/product_custom_options_listing.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/ui_component/product_form.xml b/app/code/Magento/Catalog/view/adminhtml/ui_component/product_form.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/ui_component/product_listing.xml b/app/code/Magento/Catalog/view/adminhtml/ui_component/product_listing.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/ui_component/related_product_listing.xml b/app/code/Magento/Catalog/view/adminhtml/ui_component/related_product_listing.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/ui_component/upsell_product_listing.xml b/app/code/Magento/Catalog/view/adminhtml/ui_component/upsell_product_listing.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/catalog/apply-to-type-switcher.js b/app/code/Magento/Catalog/view/adminhtml/web/catalog/apply-to-type-switcher.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/catalog/base-image-uploader.js b/app/code/Magento/Catalog/view/adminhtml/web/catalog/base-image-uploader.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/catalog/category/assign-products.js b/app/code/Magento/Catalog/view/adminhtml/web/catalog/category/assign-products.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/catalog/category/edit.js b/app/code/Magento/Catalog/view/adminhtml/web/catalog/category/edit.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/catalog/category/form.js b/app/code/Magento/Catalog/view/adminhtml/web/catalog/category/form.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/catalog/images/select2.png b/app/code/Magento/Catalog/view/adminhtml/web/catalog/images/select2.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/catalog/images/select2x2.png b/app/code/Magento/Catalog/view/adminhtml/web/catalog/images/select2x2.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/catalog/images/spinner.gif b/app/code/Magento/Catalog/view/adminhtml/web/catalog/images/spinner.gif
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/catalog/product-attributes.js b/app/code/Magento/Catalog/view/adminhtml/web/catalog/product-attributes.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/catalog/product.js b/app/code/Magento/Catalog/view/adminhtml/web/catalog/product.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/catalog/product/attribute/unique-validate.js b/app/code/Magento/Catalog/view/adminhtml/web/catalog/product/attribute/unique-validate.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/catalog/product/composite/configure.js b/app/code/Magento/Catalog/view/adminhtml/web/catalog/product/composite/configure.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/catalog/type-events.js b/app/code/Magento/Catalog/view/adminhtml/web/catalog/type-events.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/component/file-type-field.js b/app/code/Magento/Catalog/view/adminhtml/web/component/file-type-field.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/component/image-size-field.js b/app/code/Magento/Catalog/view/adminhtml/web/component/image-size-field.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/component/select-type-grid.js b/app/code/Magento/Catalog/view/adminhtml/web/component/select-type-grid.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/component/static-type-container.js b/app/code/Magento/Catalog/view/adminhtml/web/component/static-type-container.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/component/static-type-input.js b/app/code/Magento/Catalog/view/adminhtml/web/component/static-type-input.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/component/static-type-select.js b/app/code/Magento/Catalog/view/adminhtml/web/component/static-type-select.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/component/text-type-field.js b/app/code/Magento/Catalog/view/adminhtml/web/component/text-type-field.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/images/ajax-loader-big.gif b/app/code/Magento/Catalog/view/adminhtml/web/images/ajax-loader-big.gif
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/images/category_widget_link.png b/app/code/Magento/Catalog/view/adminhtml/web/images/category_widget_link.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/images/product_widget_compared.gif b/app/code/Magento/Catalog/view/adminhtml/web/images/product_widget_compared.gif
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/images/product_widget_link.png b/app/code/Magento/Catalog/view/adminhtml/web/images/product_widget_link.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/images/product_widget_new.png b/app/code/Magento/Catalog/view/adminhtml/web/images/product_widget_new.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/images/product_widget_viewed.gif b/app/code/Magento/Catalog/view/adminhtml/web/images/product_widget_viewed.gif
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/bundle-proxy-button.js b/app/code/Magento/Catalog/view/adminhtml/web/js/bundle-proxy-button.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/category-tree.js b/app/code/Magento/Catalog/view/adminhtml/web/js/category-tree.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/attribute-set-select.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/attribute-set-select.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/attributes-fieldset.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/attributes-fieldset.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/attributes-grid-paging.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/attributes-grid-paging.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/attributes-insert-listing.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/attributes-insert-listing.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/checkbox.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/checkbox.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/custom-options-component.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/custom-options-component.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/custom-options-price-type.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/custom-options-price-type.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/disable-hide-select.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/disable-hide-select.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/disable-on-option/input.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/disable-on-option/input.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/disable-on-option/select.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/disable-on-option/select.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/disable-on-option/strategy.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/disable-on-option/strategy.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/disable-on-option/yesno.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/disable-on-option/yesno.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/dynamic-rows-import-custom-options.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/dynamic-rows-import-custom-options.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/dynamic-rows-tier-price.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/dynamic-rows-tier-price.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/import-handler.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/import-handler.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/input-handle-required.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/input-handle-required.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/messages.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/messages.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/multiselect-handle-required.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/multiselect-handle-required.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/new-attribute-form.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/new-attribute-form.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/new-attribute-insert-form.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/new-attribute-insert-form.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/new-category.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/new-category.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/product-status.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/product-status.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/select-handle-required.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/select-handle-required.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/select-to-checkbox.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/select-to-checkbox.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/url-key-handle-changes.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/url-key-handle-changes.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/visible-on-option/date.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/visible-on-option/date.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/visible-on-option/fieldset.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/visible-on-option/fieldset.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/visible-on-option/input.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/visible-on-option/input.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/visible-on-option/select.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/visible-on-option/select.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/visible-on-option/strategy.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/visible-on-option/strategy.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/visible-on-option/textarea.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/visible-on-option/textarea.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/components/visible-on-option/yesno.js b/app/code/Magento/Catalog/view/adminhtml/web/js/components/visible-on-option/yesno.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/custom-options-type.js b/app/code/Magento/Catalog/view/adminhtml/web/js/custom-options-type.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/custom-options.js b/app/code/Magento/Catalog/view/adminhtml/web/js/custom-options.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/edit-tree.js b/app/code/Magento/Catalog/view/adminhtml/web/js/edit-tree.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/form/element/action-delete.js b/app/code/Magento/Catalog/view/adminhtml/web/js/form/element/action-delete.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/form/element/checkbox.js b/app/code/Magento/Catalog/view/adminhtml/web/js/form/element/checkbox.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/form/element/input.js b/app/code/Magento/Catalog/view/adminhtml/web/js/form/element/input.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/new-category-dialog.js b/app/code/Magento/Catalog/view/adminhtml/web/js/new-category-dialog.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/options.js b/app/code/Magento/Catalog/view/adminhtml/web/js/options.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/product-gallery.js b/app/code/Magento/Catalog/view/adminhtml/web/js/product-gallery.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/product/weight-handler.js b/app/code/Magento/Catalog/view/adminhtml/web/js/product/weight-handler.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/tier-price/percentage-processor.js b/app/code/Magento/Catalog/view/adminhtml/web/js/tier-price/percentage-processor.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/tier-price/value-type-select.js b/app/code/Magento/Catalog/view/adminhtml/web/js/tier-price/value-type-select.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/js/utils/percentage-price-calculator.js b/app/code/Magento/Catalog/view/adminhtml/web/js/utils/percentage-price-calculator.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-bg_diagonals-thick_18_b81900_40x40.png b/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-bg_diagonals-thick_18_b81900_40x40.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-bg_diagonals-thick_20_666666_40x40.png b/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-bg_diagonals-thick_20_666666_40x40.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-bg_flat_10_000000_40x100.png b/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-bg_flat_10_000000_40x100.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-bg_glass_100_f6f6f6_1x400.png b/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-bg_glass_100_f6f6f6_1x400.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-bg_glass_100_fdf5ce_1x400.png b/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-bg_glass_100_fdf5ce_1x400.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-bg_glass_65_ffffff_1x400.png b/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-bg_glass_65_ffffff_1x400.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-bg_gloss-wave_35_f67028_500x100.png b/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-bg_gloss-wave_35_f67028_500x100.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-bg_highlight-soft_100_eeeeee_1x100.png b/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-bg_highlight-soft_100_eeeeee_1x100.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-bg_highlight-soft_75_ffe45c_1x100.png b/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-bg_highlight-soft_75_ffe45c_1x100.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-icons_222222_256x240.png b/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-icons_222222_256x240.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-icons_228ef1_256x240.png b/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-icons_228ef1_256x240.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-icons_ef8c08_256x240.png b/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-icons_ef8c08_256x240.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-icons_ffd27a_256x240.png b/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-icons_ffd27a_256x240.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-icons_ffffff_256x240.png b/app/code/Magento/Catalog/view/adminhtml/web/product/images/ui-icons_ffffff_256x240.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/template/attributes/grid/paging.html b/app/code/Magento/Catalog/view/adminhtml/web/template/attributes/grid/paging.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/template/checkbox.html b/app/code/Magento/Catalog/view/adminhtml/web/template/checkbox.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/template/form/element/action-delete.html b/app/code/Magento/Catalog/view/adminhtml/web/template/form/element/action-delete.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/template/form/element/checkbox.html b/app/code/Magento/Catalog/view/adminhtml/web/template/form/element/checkbox.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/template/form/element/helper/custom-option-service.html b/app/code/Magento/Catalog/view/adminhtml/web/template/form/element/helper/custom-option-service.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/template/form/element/helper/custom-option-type-service.html b/app/code/Magento/Catalog/view/adminhtml/web/template/form/element/helper/custom-option-type-service.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/template/form/element/input.html b/app/code/Magento/Catalog/view/adminhtml/web/template/form/element/input.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/template/form/field.html b/app/code/Magento/Catalog/view/adminhtml/web/template/form/field.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/adminhtml/web/template/image-preview.html b/app/code/Magento/Catalog/view/adminhtml/web/template/image-preview.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/base/layout/catalog_product_prices.xml b/app/code/Magento/Catalog/view/base/layout/catalog_product_prices.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/base/layout/default.xml b/app/code/Magento/Catalog/view/base/layout/default.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/base/layout/empty.xml b/app/code/Magento/Catalog/view/base/layout/empty.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/base/templates/js/components.phtml b/app/code/Magento/Catalog/view/base/templates/js/components.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/base/templates/product/price/amount/default.phtml b/app/code/Magento/Catalog/view/base/templates/product/price/amount/default.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/base/templates/product/price/configured_price.phtml b/app/code/Magento/Catalog/view/base/templates/product/price/configured_price.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/base/templates/product/price/default.phtml b/app/code/Magento/Catalog/view/base/templates/product/price/default.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/base/templates/product/price/final_price.phtml b/app/code/Magento/Catalog/view/base/templates/product/price/final_price.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/base/templates/product/price/tier_prices.phtml b/app/code/Magento/Catalog/view/base/templates/product/price/tier_prices.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/base/web/images/product/placeholder/image.jpg b/app/code/Magento/Catalog/view/base/web/images/product/placeholder/image.jpg
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/base/web/images/product/placeholder/small_image.jpg b/app/code/Magento/Catalog/view/base/web/images/product/placeholder/small_image.jpg
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/base/web/images/product/placeholder/swatch_image.jpg b/app/code/Magento/Catalog/view/base/web/images/product/placeholder/swatch_image.jpg
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/base/web/images/product/placeholder/thumbnail.jpg b/app/code/Magento/Catalog/view/base/web/images/product/placeholder/thumbnail.jpg
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/base/web/js/price-box.js b/app/code/Magento/Catalog/view/base/web/js/price-box.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/base/web/js/price-option-date.js b/app/code/Magento/Catalog/view/base/web/js/price-option-date.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/base/web/js/price-option-file.js b/app/code/Magento/Catalog/view/base/web/js/price-option-file.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/base/web/js/price-options.js b/app/code/Magento/Catalog/view/base/web/js/price-options.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/base/web/js/price-utils.js b/app/code/Magento/Catalog/view/base/web/js/price-utils.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/base/web/js/product/addtocart-button.js b/app/code/Magento/Catalog/view/base/web/js/product/addtocart-button.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/base/web/js/product/addtocompare-button.js b/app/code/Magento/Catalog/view/base/web/js/product/addtocompare-button.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/base/web/js/product/learn-more.js b/app/code/Magento/Catalog/view/base/web/js/product/learn-more.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/base/web/js/product/list/column-status-validator.js b/app/code/Magento/Catalog/view/base/web/js/product/list/column-status-validator.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/base/web/js/product/list/columns/final-price.js b/app/code/Magento/Catalog/view/base/web/js/product/list/columns/final-price.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/base/web/js/product/list/columns/image.js b/app/code/Magento/Catalog/view/base/web/js/product/list/columns/image.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/base/web/js/product/list/columns/price-box.js b/app/code/Magento/Catalog/view/base/web/js/product/list/columns/price-box.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/base/web/js/product/list/columns/pricetype-box.js b/app/code/Magento/Catalog/view/base/web/js/product/list/columns/pricetype-box.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/base/web/js/product/list/listing.js b/app/code/Magento/Catalog/view/base/web/js/product/list/listing.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/base/web/js/product/name.js b/app/code/Magento/Catalog/view/base/web/js/product/name.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/base/web/template/product/final_price.html b/app/code/Magento/Catalog/view/base/web/template/product/final_price.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/base/web/template/product/link.html b/app/code/Magento/Catalog/view/base/web/template/product/link.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/base/web/template/product/list/columns/image.html b/app/code/Magento/Catalog/view/base/web/template/product/list/columns/image.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/base/web/template/product/list/columns/image_with_borders.html b/app/code/Magento/Catalog/view/base/web/template/product/list/columns/image_with_borders.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/base/web/template/product/list/listing.html b/app/code/Magento/Catalog/view/base/web/template/product/list/listing.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/base/web/template/product/name.html b/app/code/Magento/Catalog/view/base/web/template/product/name.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/base/web/template/product/price/max_price.html b/app/code/Magento/Catalog/view/base/web/template/product/price/max_price.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/base/web/template/product/price/max_regular_price.html b/app/code/Magento/Catalog/view/base/web/template/product/price/max_regular_price.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/base/web/template/product/price/minimal_price.html b/app/code/Magento/Catalog/view/base/web/template/product/price/minimal_price.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/base/web/template/product/price/minimal_regular_price.html b/app/code/Magento/Catalog/view/base/web/template/product/price/minimal_regular_price.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/base/web/template/product/price/price_box.html b/app/code/Magento/Catalog/view/base/web/template/product/price/price_box.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/base/web/template/product/price/pricetype_box.html b/app/code/Magento/Catalog/view/base/web/template/product/price/pricetype_box.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/base/web/template/product/price/regular_price.html b/app/code/Magento/Catalog/view/base/web/template/product/price/regular_price.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/base/web/template/product/price/special_price.html b/app/code/Magento/Catalog/view/base/web/template/product/price/special_price.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/layout/catalog_category_view.xml b/app/code/Magento/Catalog/view/frontend/layout/catalog_category_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/layout/catalog_category_view_type_default.xml b/app/code/Magento/Catalog/view/frontend/layout/catalog_category_view_type_default.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/layout/catalog_category_view_type_default_without_children.xml b/app/code/Magento/Catalog/view/frontend/layout/catalog_category_view_type_default_without_children.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/layout/catalog_product_compare_index.xml b/app/code/Magento/Catalog/view/frontend/layout/catalog_product_compare_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/layout/catalog_product_opengraph.xml b/app/code/Magento/Catalog/view/frontend/layout/catalog_product_opengraph.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/layout/catalog_product_view.xml b/app/code/Magento/Catalog/view/frontend/layout/catalog_product_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/layout/catalog_product_view_type_simple.xml b/app/code/Magento/Catalog/view/frontend/layout/catalog_product_view_type_simple.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/layout/catalog_product_view_type_virtual.xml b/app/code/Magento/Catalog/view/frontend/layout/catalog_product_view_type_virtual.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/layout/checkout_cart_item_renderers.xml b/app/code/Magento/Catalog/view/frontend/layout/checkout_cart_item_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/layout/default.xml b/app/code/Magento/Catalog/view/frontend/layout/default.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/requirejs-config.js b/app/code/Magento/Catalog/view/frontend/requirejs-config.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/category/cms.phtml b/app/code/Magento/Catalog/view/frontend/templates/category/cms.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/category/description.phtml b/app/code/Magento/Catalog/view/frontend/templates/category/description.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/category/image.phtml b/app/code/Magento/Catalog/view/frontend/templates/category/image.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/category/products.phtml b/app/code/Magento/Catalog/view/frontend/templates/category/products.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/category/rss.phtml b/app/code/Magento/Catalog/view/frontend/templates/category/rss.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/category/widget/link/link_block.phtml b/app/code/Magento/Catalog/view/frontend/templates/category/widget/link/link_block.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/category/widget/link/link_inline.phtml b/app/code/Magento/Catalog/view/frontend/templates/category/widget/link/link_inline.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/frontend_storage_manager.phtml b/app/code/Magento/Catalog/view/frontend/templates/frontend_storage_manager.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/navigation/left.phtml b/app/code/Magento/Catalog/view/frontend/templates/navigation/left.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/compare/link.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/compare/link.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/compare/list.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/compare/list.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/compare/sidebar.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/compare/sidebar.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/gallery.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/gallery.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/image.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/image.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/image_with_borders.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/image_with_borders.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/list.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/list.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/list/addto/compare.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/list/addto/compare.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/list/items.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/list/items.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/list/toolbar.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/list/toolbar.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/list/toolbar/amount.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/list/toolbar/amount.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/list/toolbar/limiter.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/list/toolbar/limiter.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/list/toolbar/sorter.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/list/toolbar/sorter.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/list/toolbar/viewmode.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/list/toolbar/viewmode.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/listing.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/listing.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/view/additional.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/view/additional.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/view/addto.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/view/addto.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/view/addto/compare.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/view/addto/compare.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/view/addtocart.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/view/addtocart.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/view/attribute.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/view/attribute.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/view/attributes.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/view/attributes.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/view/counter.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/view/counter.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/view/description.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/view/description.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/view/details.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/view/details.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/view/form.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/view/form.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/view/gallery.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/view/gallery.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/view/mailto.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/view/mailto.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/view/opengraph/currency.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/view/opengraph/currency.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/view/opengraph/general.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/view/opengraph/general.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/view/options.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/view/options.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/view/options/type/date.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/view/options/type/date.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/view/options/type/default.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/view/options/type/default.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/view/options/type/file.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/view/options/type/file.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/view/options/type/select.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/view/options/type/select.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/view/options/type/text.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/view/options/type/text.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/view/options/wrapper.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/view/options/wrapper.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/view/options/wrapper/bottom.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/view/options/wrapper/bottom.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/view/price_clone.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/view/price_clone.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/view/review.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/view/review.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/view/type/default.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/view/type/default.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/widget/compared/grid.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/widget/compared/grid.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/widget/compared/list.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/widget/compared/list.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/widget/compared/sidebar.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/widget/compared/sidebar.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/widget/link/link_block.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/widget/link/link_block.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/widget/link/link_inline.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/widget/link/link_inline.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/widget/new/column/new_default_list.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/widget/new/column/new_default_list.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/widget/new/column/new_images_list.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/widget/new/column/new_images_list.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/widget/new/column/new_names_list.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/widget/new/column/new_names_list.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/widget/new/content/new_grid.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/widget/new/content/new_grid.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/widget/new/content/new_list.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/widget/new/content/new_list.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/widget/viewed/grid.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/widget/viewed/grid.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/widget/viewed/list.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/widget/viewed/list.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/templates/product/widget/viewed/sidebar.phtml b/app/code/Magento/Catalog/view/frontend/templates/product/widget/viewed/sidebar.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/ui_component/widget_recently_compared.xml b/app/code/Magento/Catalog/view/frontend/ui_component/widget_recently_compared.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/ui_component/widget_recently_viewed.xml b/app/code/Magento/Catalog/view/frontend/ui_component/widget_recently_viewed.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/web/images/product_widget_compared.gif b/app/code/Magento/Catalog/view/frontend/web/images/product_widget_compared.gif
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/web/images/product_widget_viewed.gif b/app/code/Magento/Catalog/view/frontend/web/images/product_widget_viewed.gif
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/web/js/catalog-add-to-cart.js b/app/code/Magento/Catalog/view/frontend/web/js/catalog-add-to-cart.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/web/js/gallery.js b/app/code/Magento/Catalog/view/frontend/web/js/gallery.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/web/js/list.js b/app/code/Magento/Catalog/view/frontend/web/js/list.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/web/js/product/list/toolbar.js b/app/code/Magento/Catalog/view/frontend/web/js/product/list/toolbar.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/web/js/product/provider-compared.js b/app/code/Magento/Catalog/view/frontend/web/js/product/provider-compared.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/web/js/product/provider.js b/app/code/Magento/Catalog/view/frontend/web/js/product/provider.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/web/js/product/query-builder.js b/app/code/Magento/Catalog/view/frontend/web/js/product/query-builder.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/web/js/product/storage/data-storage.js b/app/code/Magento/Catalog/view/frontend/web/js/product/storage/data-storage.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/web/js/product/storage/ids-storage-compare.js b/app/code/Magento/Catalog/view/frontend/web/js/product/storage/ids-storage-compare.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/web/js/product/storage/ids-storage.js b/app/code/Magento/Catalog/view/frontend/web/js/product/storage/ids-storage.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/web/js/product/storage/storage-service.js b/app/code/Magento/Catalog/view/frontend/web/js/product/storage/storage-service.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/web/js/product/uenc-processor.js b/app/code/Magento/Catalog/view/frontend/web/js/product/uenc-processor.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/web/js/product/view/provider.js b/app/code/Magento/Catalog/view/frontend/web/js/product/view/provider.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/web/js/related-products.js b/app/code/Magento/Catalog/view/frontend/web/js/related-products.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/web/js/storage-manager.js b/app/code/Magento/Catalog/view/frontend/web/js/storage-manager.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/web/js/upsell-products.js b/app/code/Magento/Catalog/view/frontend/web/js/upsell-products.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/web/js/validate-product.js b/app/code/Magento/Catalog/view/frontend/web/js/validate-product.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/web/js/view/compare-products.js b/app/code/Magento/Catalog/view/frontend/web/js/view/compare-products.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/web/js/view/image.js b/app/code/Magento/Catalog/view/frontend/web/js/view/image.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/web/js/zoom.js b/app/code/Magento/Catalog/view/frontend/web/js/zoom.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/web/product/view/validation.js b/app/code/Magento/Catalog/view/frontend/web/product/view/validation.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/web/template/product/addtocart-button.html b/app/code/Magento/Catalog/view/frontend/web/template/product/addtocart-button.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/web/template/product/addtocompare-button.html b/app/code/Magento/Catalog/view/frontend/web/template/product/addtocompare-button.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/web/template/product/image.html b/app/code/Magento/Catalog/view/frontend/web/template/product/image.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Catalog/view/frontend/web/template/product/image_with_borders.html b/app/code/Magento/Catalog/view/frontend/web/template/product/image_with_borders.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogAnalytics/LICENSE.txt b/app/code/Magento/CatalogAnalytics/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogAnalytics/LICENSE_AFL.txt b/app/code/Magento/CatalogAnalytics/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogAnalytics/README.md b/app/code/Magento/CatalogAnalytics/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogAnalytics/composer.json b/app/code/Magento/CatalogAnalytics/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogAnalytics/etc/analytics.xml b/app/code/Magento/CatalogAnalytics/etc/analytics.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogAnalytics/etc/module.xml b/app/code/Magento/CatalogAnalytics/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogAnalytics/etc/reports.xml b/app/code/Magento/CatalogAnalytics/etc/reports.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogAnalytics/registration.php b/app/code/Magento/CatalogAnalytics/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/LICENSE.txt b/app/code/Magento/CatalogImportExport/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/LICENSE_AFL.txt b/app/code/Magento/CatalogImportExport/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Model/Export/Product.php b/app/code/Magento/CatalogImportExport/Model/Export/Product.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Model/Export/Product/Type/AbstractType.php b/app/code/Magento/CatalogImportExport/Model/Export/Product/Type/AbstractType.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Model/Export/Product/Type/Factory.php b/app/code/Magento/CatalogImportExport/Model/Export/Product/Type/Factory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Model/Export/Product/Type/Simple.php b/app/code/Magento/CatalogImportExport/Model/Export/Product/Type/Simple.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Model/Export/RowCustomizer/Composite.php b/app/code/Magento/CatalogImportExport/Model/Export/RowCustomizer/Composite.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Model/Export/RowCustomizerInterface.php b/app/code/Magento/CatalogImportExport/Model/Export/RowCustomizerInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Model/Import/Product.php b/app/code/Magento/CatalogImportExport/Model/Import/Product.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Model/Import/Product/CategoryProcessor.php b/app/code/Magento/CatalogImportExport/Model/Import/Product/CategoryProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Model/Import/Product/MediaGalleryProcessor.php b/app/code/Magento/CatalogImportExport/Model/Import/Product/MediaGalleryProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Model/Import/Product/Option.php b/app/code/Magento/CatalogImportExport/Model/Import/Product/Option.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Model/Import/Product/RowValidatorInterface.php b/app/code/Magento/CatalogImportExport/Model/Import/Product/RowValidatorInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Model/Import/Product/SkuProcessor.php b/app/code/Magento/CatalogImportExport/Model/Import/Product/SkuProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Model/Import/Product/StoreResolver.php b/app/code/Magento/CatalogImportExport/Model/Import/Product/StoreResolver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Model/Import/Product/TaxClassProcessor.php b/app/code/Magento/CatalogImportExport/Model/Import/Product/TaxClassProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Model/Import/Product/Type/AbstractType.php b/app/code/Magento/CatalogImportExport/Model/Import/Product/Type/AbstractType.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Model/Import/Product/Type/Factory.php b/app/code/Magento/CatalogImportExport/Model/Import/Product/Type/Factory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Model/Import/Product/Type/Simple.php b/app/code/Magento/CatalogImportExport/Model/Import/Product/Type/Simple.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Model/Import/Product/Type/Virtual.php b/app/code/Magento/CatalogImportExport/Model/Import/Product/Type/Virtual.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator.php b/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/AbstractImportValidator.php b/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/AbstractImportValidator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/AbstractPrice.php b/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/AbstractPrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/Media.php b/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/Media.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/Quantity.php b/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/Quantity.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/SuperProductsSku.php b/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/SuperProductsSku.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/TierPrice.php b/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/TierPrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/Website.php b/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/Website.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/Weight.php b/app/code/Magento/CatalogImportExport/Model/Import/Product/Validator/Weight.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Model/Import/Proxy/Product.php b/app/code/Magento/CatalogImportExport/Model/Import/Proxy/Product.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Model/Import/Proxy/Product/ResourceModel.php b/app/code/Magento/CatalogImportExport/Model/Import/Proxy/Product/ResourceModel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Model/Import/Uploader.php b/app/code/Magento/CatalogImportExport/Model/Import/Uploader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Model/Indexer/Category/Product/Plugin/Import.php b/app/code/Magento/CatalogImportExport/Model/Indexer/Category/Product/Plugin/Import.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Model/Indexer/Product/Category/Plugin/Import.php b/app/code/Magento/CatalogImportExport/Model/Indexer/Product/Category/Plugin/Import.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Model/Indexer/Product/Eav/Plugin/Import.php b/app/code/Magento/CatalogImportExport/Model/Indexer/Product/Eav/Plugin/Import.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Model/Indexer/Product/Flat/Plugin/Import.php b/app/code/Magento/CatalogImportExport/Model/Indexer/Product/Flat/Plugin/Import.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Model/Indexer/Product/Price/Plugin/Import.php b/app/code/Magento/CatalogImportExport/Model/Indexer/Product/Price/Plugin/Import.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Model/Indexer/Stock/Plugin/Import.php b/app/code/Magento/CatalogImportExport/Model/Indexer/Stock/Plugin/Import.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Export/ProductTest.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Export/ProductTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Export/StubProduct.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Export/StubProduct.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/CategoryProcessorTest.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/CategoryProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/SkuProcessorTest.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/SkuProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/TaxClassProcessorTest.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/TaxClassProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/AbstractTypeTest.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/AbstractTypeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/OptionTest.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/OptionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/VirtualTest.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/VirtualTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/product_with_custom_options.csv b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/product_with_custom_options.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_ambiguity_different_type.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_ambiguity_different_type.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_ambiguity_several_db_rows.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_ambiguity_several_db_rows.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_empty_title.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_empty_title.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_incorrect_type.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_incorrect_type.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_invalid_max_characters.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_invalid_max_characters.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_invalid_price.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_invalid_price.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_invalid_sort_order.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_invalid_sort_order.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_invalid_store.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_invalid_store.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_max_characters_less_zero.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_max_characters_less_zero.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_no_title.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_no_title.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_sort_order_less_zero.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_sort_order_less_zero.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_valid.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_main_valid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_no_custom_option.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_no_custom_option.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_secondary_incorrect_price.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_secondary_incorrect_price.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_secondary_incorrect_row_sort.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_secondary_incorrect_row_sort.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_secondary_invalid_store.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_secondary_invalid_store.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_secondary_row_sort_less_zero.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_secondary_row_sort_less_zero.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_secondary_valid.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Type/_files/row_data_secondary_valid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Validator/MediaTest.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Validator/MediaTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Validator/QuantityTest.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Validator/QuantityTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Validator/SuperProductsSkuTest.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Validator/SuperProductsSkuTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Validator/TierPriceTest.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/Validator/TierPriceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/ValidatorTest.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/Product/ValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/ProductTest.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/ProductTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/UploaderTest.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Import/UploaderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Indexer/Product/Flat/Plugin/ImportTest.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Indexer/Product/Flat/Plugin/ImportTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Indexer/Product/Price/Plugin/ImportTest.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Indexer/Product/Price/Plugin/ImportTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/Test/Unit/Model/Indexer/Stock/Plugin/ImportTest.php b/app/code/Magento/CatalogImportExport/Test/Unit/Model/Indexer/Stock/Plugin/ImportTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/composer.json b/app/code/Magento/CatalogImportExport/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/etc/config.xml b/app/code/Magento/CatalogImportExport/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/etc/di.xml b/app/code/Magento/CatalogImportExport/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/etc/export.xml b/app/code/Magento/CatalogImportExport/etc/export.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/etc/import.xml b/app/code/Magento/CatalogImportExport/etc/import.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/etc/module.xml b/app/code/Magento/CatalogImportExport/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/i18n/en_US.csv b/app/code/Magento/CatalogImportExport/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogImportExport/registration.php b/app/code/Magento/CatalogImportExport/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Api/Data/StockCollectionInterface.php b/app/code/Magento/CatalogInventory/Api/Data/StockCollectionInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Api/Data/StockInterface.php b/app/code/Magento/CatalogInventory/Api/Data/StockInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Api/Data/StockItemCollectionInterface.php b/app/code/Magento/CatalogInventory/Api/Data/StockItemCollectionInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Api/Data/StockItemInterface.php b/app/code/Magento/CatalogInventory/Api/Data/StockItemInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Api/Data/StockStatusCollectionInterface.php b/app/code/Magento/CatalogInventory/Api/Data/StockStatusCollectionInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Api/Data/StockStatusInterface.php b/app/code/Magento/CatalogInventory/Api/Data/StockStatusInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Api/StockConfigurationInterface.php b/app/code/Magento/CatalogInventory/Api/StockConfigurationInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Api/StockCriteriaInterface.php b/app/code/Magento/CatalogInventory/Api/StockCriteriaInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Api/StockIndexInterface.php b/app/code/Magento/CatalogInventory/Api/StockIndexInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Api/StockItemCriteriaInterface.php b/app/code/Magento/CatalogInventory/Api/StockItemCriteriaInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Api/StockItemRepositoryInterface.php b/app/code/Magento/CatalogInventory/Api/StockItemRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Api/StockManagementInterface.php b/app/code/Magento/CatalogInventory/Api/StockManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Api/StockRegistryInterface.php b/app/code/Magento/CatalogInventory/Api/StockRegistryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Api/StockRepositoryInterface.php b/app/code/Magento/CatalogInventory/Api/StockRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Api/StockStateInterface.php b/app/code/Magento/CatalogInventory/Api/StockStateInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Api/StockStatusCriteriaInterface.php b/app/code/Magento/CatalogInventory/Api/StockStatusCriteriaInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Api/StockStatusRepositoryInterface.php b/app/code/Magento/CatalogInventory/Api/StockStatusRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Block/Adminhtml/Form/Field/Customergroup.php b/app/code/Magento/CatalogInventory/Block/Adminhtml/Form/Field/Customergroup.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Block/Adminhtml/Form/Field/Minsaleqty.php b/app/code/Magento/CatalogInventory/Block/Adminhtml/Form/Field/Minsaleqty.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Block/Adminhtml/Form/Field/Stock.php b/app/code/Magento/CatalogInventory/Block/Adminhtml/Form/Field/Stock.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Block/Plugin/ProductView.php b/app/code/Magento/CatalogInventory/Block/Plugin/ProductView.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Block/Qtyincrements.php b/app/code/Magento/CatalogInventory/Block/Qtyincrements.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Block/Stockqty/AbstractStockqty.php b/app/code/Magento/CatalogInventory/Block/Stockqty/AbstractStockqty.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Block/Stockqty/Composite.php b/app/code/Magento/CatalogInventory/Block/Stockqty/Composite.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Block/Stockqty/DefaultStockqty.php b/app/code/Magento/CatalogInventory/Block/Stockqty/DefaultStockqty.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Block/Stockqty/Type/Grouped.php b/app/code/Magento/CatalogInventory/Block/Stockqty/Type/Grouped.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Helper/Data.php b/app/code/Magento/CatalogInventory/Helper/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Helper/Minsaleqty.php b/app/code/Magento/CatalogInventory/Helper/Minsaleqty.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Helper/Stock.php b/app/code/Magento/CatalogInventory/Helper/Stock.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/LICENSE.txt b/app/code/Magento/CatalogInventory/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/LICENSE_AFL.txt b/app/code/Magento/CatalogInventory/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/AddStockStatusToCollection.php b/app/code/Magento/CatalogInventory/Model/AddStockStatusToCollection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/Adminhtml/Stock/Item.php b/app/code/Magento/CatalogInventory/Model/Adminhtml/Stock/Item.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/Config/Backend/AbstractValue.php b/app/code/Magento/CatalogInventory/Model/Config/Backend/AbstractValue.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/Config/Backend/Backorders.php b/app/code/Magento/CatalogInventory/Model/Config/Backend/Backorders.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/Config/Backend/Managestock.php b/app/code/Magento/CatalogInventory/Model/Config/Backend/Managestock.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/Config/Backend/ShowOutOfStock.php b/app/code/Magento/CatalogInventory/Model/Config/Backend/ShowOutOfStock.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/Configuration.php b/app/code/Magento/CatalogInventory/Model/Configuration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/Indexer/Stock.php b/app/code/Magento/CatalogInventory/Model/Indexer/Stock.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/Indexer/Stock/AbstractAction.php b/app/code/Magento/CatalogInventory/Model/Indexer/Stock/AbstractAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/Indexer/Stock/Action/Full.php b/app/code/Magento/CatalogInventory/Model/Indexer/Stock/Action/Full.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/Indexer/Stock/Action/Row.php b/app/code/Magento/CatalogInventory/Model/Indexer/Stock/Action/Row.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/Indexer/Stock/Action/Rows.php b/app/code/Magento/CatalogInventory/Model/Indexer/Stock/Action/Rows.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/Indexer/Stock/CacheCleaner.php b/app/code/Magento/CatalogInventory/Model/Indexer/Stock/CacheCleaner.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/Indexer/Stock/Plugin/StoreGroup.php b/app/code/Magento/CatalogInventory/Model/Indexer/Stock/Plugin/StoreGroup.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/Indexer/Stock/Processor.php b/app/code/Magento/CatalogInventory/Model/Indexer/Stock/Processor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/Plugin/AfterProductLoad.php b/app/code/Magento/CatalogInventory/Model/Plugin/AfterProductLoad.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/Plugin/FilterCustomAttribute.php b/app/code/Magento/CatalogInventory/Model/Plugin/FilterCustomAttribute.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/Plugin/Layer.php b/app/code/Magento/CatalogInventory/Model/Plugin/Layer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/Plugin/ProductLinks.php b/app/code/Magento/CatalogInventory/Model/Plugin/ProductLinks.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/Plugin/ReindexUpdatedProducts.php b/app/code/Magento/CatalogInventory/Model/Plugin/ReindexUpdatedProducts.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/Product/CopyConstructor/CatalogInventory.php b/app/code/Magento/CatalogInventory/Model/Product/CopyConstructor/CatalogInventory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/ProductCollectionStockCondition.php b/app/code/Magento/CatalogInventory/Model/ProductCollectionStockCondition.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/Quote/Item/QuantityValidator.php b/app/code/Magento/CatalogInventory/Model/Quote/Item/QuantityValidator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/Quote/Item/QuantityValidator/Initializer/Option.php b/app/code/Magento/CatalogInventory/Model/Quote/Item/QuantityValidator/Initializer/Option.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/Quote/Item/QuantityValidator/Initializer/QtyProcessor.php b/app/code/Magento/CatalogInventory/Model/Quote/Item/QuantityValidator/Initializer/QtyProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/Quote/Item/QuantityValidator/Initializer/StockItem.php b/app/code/Magento/CatalogInventory/Model/Quote/Item/QuantityValidator/Initializer/StockItem.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/Quote/Item/QuantityValidator/QuoteItemQtyList.php b/app/code/Magento/CatalogInventory/Model/Quote/Item/QuantityValidator/QuoteItemQtyList.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/ResourceModel/Indexer/Stock/DefaultStock.php b/app/code/Magento/CatalogInventory/Model/ResourceModel/Indexer/Stock/DefaultStock.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/ResourceModel/Indexer/Stock/QueryProcessorComposite.php b/app/code/Magento/CatalogInventory/Model/ResourceModel/Indexer/Stock/QueryProcessorComposite.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/ResourceModel/Indexer/Stock/QueryProcessorInterface.php b/app/code/Magento/CatalogInventory/Model/ResourceModel/Indexer/Stock/QueryProcessorInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/ResourceModel/Indexer/Stock/StockInterface.php b/app/code/Magento/CatalogInventory/Model/ResourceModel/Indexer/Stock/StockInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/ResourceModel/Indexer/StockFactory.php b/app/code/Magento/CatalogInventory/Model/ResourceModel/Indexer/StockFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/ResourceModel/Product/StockStatusBaseSelectProcessor.php b/app/code/Magento/CatalogInventory/Model/ResourceModel/Product/StockStatusBaseSelectProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/ResourceModel/QtyCounterInterface.php b/app/code/Magento/CatalogInventory/Model/ResourceModel/QtyCounterInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock.php b/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Collection.php b/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Item.php b/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Item.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Item/Collection.php b/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Item/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Item/StockItemCriteria.php b/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Item/StockItemCriteria.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Item/StockItemCriteriaMapper.php b/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Item/StockItemCriteriaMapper.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Status.php b/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Status.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Status/Collection.php b/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Status/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Status/StockStatusCriteria.php b/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Status/StockStatusCriteria.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Status/StockStatusCriteriaMapper.php b/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/Status/StockStatusCriteriaMapper.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/StockCriteria.php b/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/StockCriteria.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/StockCriteriaMapper.php b/app/code/Magento/CatalogInventory/Model/ResourceModel/Stock/StockCriteriaMapper.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/Source/Backorders.php b/app/code/Magento/CatalogInventory/Model/Source/Backorders.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/Source/Stock.php b/app/code/Magento/CatalogInventory/Model/Source/Stock.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/Source/StockConfiguration.php b/app/code/Magento/CatalogInventory/Model/Source/StockConfiguration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/Spi/StockRegistryProviderInterface.php b/app/code/Magento/CatalogInventory/Model/Spi/StockRegistryProviderInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/Spi/StockStateProviderInterface.php b/app/code/Magento/CatalogInventory/Model/Spi/StockStateProviderInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/Stock.php b/app/code/Magento/CatalogInventory/Model/Stock.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/Stock/Item.php b/app/code/Magento/CatalogInventory/Model/Stock/Item.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/Stock/Status.php b/app/code/Magento/CatalogInventory/Model/Stock/Status.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/Stock/StockItemRepository.php b/app/code/Magento/CatalogInventory/Model/Stock/StockItemRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/Stock/StockRepository.php b/app/code/Magento/CatalogInventory/Model/Stock/StockRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/Stock/StockStatusRepository.php b/app/code/Magento/CatalogInventory/Model/Stock/StockStatusRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/StockIndex.php b/app/code/Magento/CatalogInventory/Model/StockIndex.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/StockItemValidator.php b/app/code/Magento/CatalogInventory/Model/StockItemValidator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/StockManagement.php b/app/code/Magento/CatalogInventory/Model/StockManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/StockRegistry.php b/app/code/Magento/CatalogInventory/Model/StockRegistry.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/StockRegistryProvider.php b/app/code/Magento/CatalogInventory/Model/StockRegistryProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/StockRegistryStorage.php b/app/code/Magento/CatalogInventory/Model/StockRegistryStorage.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/StockState.php b/app/code/Magento/CatalogInventory/Model/StockState.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/StockStateProvider.php b/app/code/Magento/CatalogInventory/Model/StockStateProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/System/Config/Backend/Minqty.php b/app/code/Magento/CatalogInventory/Model/System/Config/Backend/Minqty.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/System/Config/Backend/Minsaleqty.php b/app/code/Magento/CatalogInventory/Model/System/Config/Backend/Minsaleqty.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Model/System/Config/Backend/Qtyincrements.php b/app/code/Magento/CatalogInventory/Model/System/Config/Backend/Qtyincrements.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Observer/AddInventoryDataObserver.php b/app/code/Magento/CatalogInventory/Observer/AddInventoryDataObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Observer/AddStockItemsObserver.php b/app/code/Magento/CatalogInventory/Observer/AddStockItemsObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Observer/CancelOrderItemObserver.php b/app/code/Magento/CatalogInventory/Observer/CancelOrderItemObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Observer/CheckoutAllSubmitAfterObserver.php b/app/code/Magento/CatalogInventory/Observer/CheckoutAllSubmitAfterObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Observer/DisplayProductStatusInfoObserver.php b/app/code/Magento/CatalogInventory/Observer/DisplayProductStatusInfoObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Observer/ItemsForReindex.php b/app/code/Magento/CatalogInventory/Observer/ItemsForReindex.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Observer/ProcessInventoryDataObserver.php b/app/code/Magento/CatalogInventory/Observer/ProcessInventoryDataObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Observer/ProductQty.php b/app/code/Magento/CatalogInventory/Observer/ProductQty.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Observer/QuantityValidatorObserver.php b/app/code/Magento/CatalogInventory/Observer/QuantityValidatorObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Observer/ReindexQuoteInventoryObserver.php b/app/code/Magento/CatalogInventory/Observer/ReindexQuoteInventoryObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Observer/RevertQuoteInventoryObserver.php b/app/code/Magento/CatalogInventory/Observer/RevertQuoteInventoryObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Observer/SaveInventoryDataObserver.php b/app/code/Magento/CatalogInventory/Observer/SaveInventoryDataObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Observer/SubtractQuoteInventoryObserver.php b/app/code/Magento/CatalogInventory/Observer/SubtractQuoteInventoryObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Observer/UpdateItemsStockUponConfigChangeObserver.php b/app/code/Magento/CatalogInventory/Observer/UpdateItemsStockUponConfigChangeObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/README.md b/app/code/Magento/CatalogInventory/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Setup/InstallData.php b/app/code/Magento/CatalogInventory/Setup/InstallData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Setup/InstallSchema.php b/app/code/Magento/CatalogInventory/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Setup/Recurring.php b/app/code/Magento/CatalogInventory/Setup/Recurring.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Setup/UpgradeData.php b/app/code/Magento/CatalogInventory/Setup/UpgradeData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Setup/UpgradeSchema.php b/app/code/Magento/CatalogInventory/Setup/UpgradeSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Api/StockConfigurationTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Api/StockConfigurationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Api/StockRegistryTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Api/StockRegistryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Api/StockStateTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Api/StockStateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Block/Adminhtml/Form/Field/StockTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Block/Adminhtml/Form/Field/StockTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Block/Plugin/ProductViewTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Block/Plugin/ProductViewTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Block/QtyincrementsTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Block/QtyincrementsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Block/Stockqty/DefaultStockqtyTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Block/Stockqty/DefaultStockqtyTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Helper/MinsaleqtyTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Helper/MinsaleqtyTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Helper/StockTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Helper/StockTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/AddStockStatusToCollectionTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/AddStockStatusToCollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/Adminhtml/Stock/ItemTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/Adminhtml/Stock/ItemTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/Config/Backend/ManagestockTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/Config/Backend/ManagestockTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/ConfigurationTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/ConfigurationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/Indexer/Stock/Action/FullTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/Indexer/Stock/Action/FullTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/Indexer/Stock/Action/RowTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/Indexer/Stock/Action/RowTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/Indexer/Stock/Action/RowsTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/Indexer/Stock/Action/RowsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/Indexer/Stock/CacheCleanerTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/Indexer/Stock/CacheCleanerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/Indexer/Stock/Plugin/StoreGroupTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/Indexer/Stock/Plugin/StoreGroupTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/Plugin/AfterProductLoadTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/Plugin/AfterProductLoadTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/Plugin/LayerTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/Plugin/LayerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/Plugin/ProductLinksTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/Plugin/ProductLinksTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/Product/CopyConstructor/CatalogInventoryTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/Product/CopyConstructor/CatalogInventoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/Quote/Item/QuantityValidator/Initializer/OptionTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/Quote/Item/QuantityValidator/Initializer/OptionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/Quote/Item/QuantityValidator/Initializer/QtyProcessorTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/Quote/Item/QuantityValidator/Initializer/QtyProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/Quote/Item/QuantityValidator/Initializer/QuantityValidatorTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/Quote/Item/QuantityValidator/Initializer/QuantityValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/Quote/Item/QuantityValidator/Initializer/StockItemTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/Quote/Item/QuantityValidator/Initializer/StockItemTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/ResourceModel/Product/StockStatusBaseSelectProcessorTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/ResourceModel/Product/StockStatusBaseSelectProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/Spi/StockRegistryProviderTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/Spi/StockRegistryProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/Spi/StockStateProviderTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/Spi/StockStateProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/Stock/ItemTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/Stock/ItemTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/Stock/StockItemRepositoryTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/Stock/StockItemRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/Stock/StockRepositoryTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/Stock/StockRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/Stock/StockStatusRepositoryTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/Stock/StockStatusRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/StockRegistryTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/StockRegistryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Model/StockTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Model/StockTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Observer/AddInventoryDataObserverTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Observer/AddInventoryDataObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Observer/AddStockItemsObserverTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Observer/AddStockItemsObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Observer/CheckoutAllSubmitAfterObserverTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Observer/CheckoutAllSubmitAfterObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Observer/UpdateItemsStockUponConfigChangeObserverTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Observer/UpdateItemsStockUponConfigChangeObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Ui/Component/Product/Form/Element/UseConfigSettingsTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Ui/Component/Product/Form/Element/UseConfigSettingsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Test/Unit/Ui/DataProvider/Product/Form/Modifier/AdvancedInventoryTest.php b/app/code/Magento/CatalogInventory/Test/Unit/Ui/DataProvider/Product/Form/Modifier/AdvancedInventoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Ui/Component/Product/Form/Element/UseConfigSettings.php b/app/code/Magento/CatalogInventory/Ui/Component/Product/Form/Element/UseConfigSettings.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Ui/DataProvider/Product/AddQuantityFieldToCollection.php b/app/code/Magento/CatalogInventory/Ui/DataProvider/Product/AddQuantityFieldToCollection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Ui/DataProvider/Product/AddQuantityFilterToCollection.php b/app/code/Magento/CatalogInventory/Ui/DataProvider/Product/AddQuantityFilterToCollection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/Ui/DataProvider/Product/Form/Modifier/AdvancedInventory.php b/app/code/Magento/CatalogInventory/Ui/DataProvider/Product/Form/Modifier/AdvancedInventory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/composer.json b/app/code/Magento/CatalogInventory/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/etc/acl.xml b/app/code/Magento/CatalogInventory/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/etc/adminhtml/di.xml b/app/code/Magento/CatalogInventory/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/etc/adminhtml/system.xml b/app/code/Magento/CatalogInventory/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/etc/config.xml b/app/code/Magento/CatalogInventory/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/etc/di.xml b/app/code/Magento/CatalogInventory/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/etc/events.xml b/app/code/Magento/CatalogInventory/etc/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/etc/extension_attributes.xml b/app/code/Magento/CatalogInventory/etc/extension_attributes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/etc/frontend/di.xml b/app/code/Magento/CatalogInventory/etc/frontend/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/etc/indexer.xml b/app/code/Magento/CatalogInventory/etc/indexer.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/etc/module.xml b/app/code/Magento/CatalogInventory/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/etc/mview.xml b/app/code/Magento/CatalogInventory/etc/mview.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/etc/product_types.xml b/app/code/Magento/CatalogInventory/etc/product_types.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/etc/webapi.xml b/app/code/Magento/CatalogInventory/etc/webapi.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/i18n/en_US.csv b/app/code/Magento/CatalogInventory/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/registration.php b/app/code/Magento/CatalogInventory/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/view/adminhtml/ui_component/product_form.xml b/app/code/Magento/CatalogInventory/view/adminhtml/ui_component/product_form.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/view/adminhtml/ui_component/product_listing.xml b/app/code/Magento/CatalogInventory/view/adminhtml/ui_component/product_listing.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/view/adminhtml/web/js/components/qty-validator-changer.js b/app/code/Magento/CatalogInventory/view/adminhtml/web/js/components/qty-validator-changer.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/view/adminhtml/web/js/components/use-config-min-sale-qty.js b/app/code/Magento/CatalogInventory/view/adminhtml/web/js/components/use-config-min-sale-qty.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/view/adminhtml/web/js/components/use-config-settings.js b/app/code/Magento/CatalogInventory/view/adminhtml/web/js/components/use-config-settings.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/view/frontend/layout/catalog_product_view.xml b/app/code/Magento/CatalogInventory/view/frontend/layout/catalog_product_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/view/frontend/layout/catalog_product_view_type_simple.xml b/app/code/Magento/CatalogInventory/view/frontend/layout/catalog_product_view_type_simple.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/view/frontend/layout/catalog_product_view_type_virtual.xml b/app/code/Magento/CatalogInventory/view/frontend/layout/catalog_product_view_type_virtual.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/view/frontend/templates/qtyincrements.phtml b/app/code/Magento/CatalogInventory/view/frontend/templates/qtyincrements.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/view/frontend/templates/stockqty/composite.phtml b/app/code/Magento/CatalogInventory/view/frontend/templates/stockqty/composite.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogInventory/view/frontend/templates/stockqty/default.phtml b/app/code/Magento/CatalogInventory/view/frontend/templates/stockqty/default.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Api/CatalogRuleRepositoryInterface.php b/app/code/Magento/CatalogRule/Api/CatalogRuleRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Api/Data/ConditionInterface.php b/app/code/Magento/CatalogRule/Api/Data/ConditionInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Api/Data/RuleInterface.php b/app/code/Magento/CatalogRule/Api/Data/RuleInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Block/Adminhtml/Edit/DeleteButton.php b/app/code/Magento/CatalogRule/Block/Adminhtml/Edit/DeleteButton.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Block/Adminhtml/Edit/GenericButton.php b/app/code/Magento/CatalogRule/Block/Adminhtml/Edit/GenericButton.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Block/Adminhtml/Edit/ResetButton.php b/app/code/Magento/CatalogRule/Block/Adminhtml/Edit/ResetButton.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Block/Adminhtml/Edit/SaveAndApplyButton.php b/app/code/Magento/CatalogRule/Block/Adminhtml/Edit/SaveAndApplyButton.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Block/Adminhtml/Edit/SaveAndContinueButton.php b/app/code/Magento/CatalogRule/Block/Adminhtml/Edit/SaveAndContinueButton.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Block/Adminhtml/Edit/SaveButton.php b/app/code/Magento/CatalogRule/Block/Adminhtml/Edit/SaveButton.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Block/Adminhtml/Promo/Catalog.php b/app/code/Magento/CatalogRule/Block/Adminhtml/Promo/Catalog.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Block/Adminhtml/Promo/Catalog/Edit/Tab/Conditions.php b/app/code/Magento/CatalogRule/Block/Adminhtml/Promo/Catalog/Edit/Tab/Conditions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Block/Adminhtml/Promo/Widget/Chooser/Sku.php b/app/code/Magento/CatalogRule/Block/Adminhtml/Promo/Widget/Chooser/Sku.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog.php b/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/ApplyRules.php b/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/ApplyRules.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/Chooser.php b/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/Chooser.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/Delete.php b/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/Delete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/Edit.php b/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/Index.php b/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/NewAction.php b/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/NewAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/NewActionHtml.php b/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/NewActionHtml.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/NewConditionHtml.php b/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/NewConditionHtml.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/Save.php b/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Index.php b/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Widget.php b/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Widget.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Widget/CategoriesJson.php b/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Widget/CategoriesJson.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Widget/Chooser.php b/app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Widget/Chooser.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Controller/RegistryConstants.php b/app/code/Magento/CatalogRule/Controller/RegistryConstants.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Cron/DailyCatalogUpdate.php b/app/code/Magento/CatalogRule/Cron/DailyCatalogUpdate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Helper/Data.php b/app/code/Magento/CatalogRule/Helper/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/LICENSE.txt b/app/code/Magento/CatalogRule/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/LICENSE_AFL.txt b/app/code/Magento/CatalogRule/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Model/CatalogRuleRepository.php b/app/code/Magento/CatalogRule/Model/CatalogRuleRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Model/Data/Condition.php b/app/code/Magento/CatalogRule/Model/Data/Condition.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Model/Data/Condition/Converter.php b/app/code/Magento/CatalogRule/Model/Data/Condition/Converter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Model/Flag.php b/app/code/Magento/CatalogRule/Model/Flag.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Model/Indexer/AbstractIndexer.php b/app/code/Magento/CatalogRule/Model/Indexer/AbstractIndexer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Model/Indexer/IndexBuilder.php b/app/code/Magento/CatalogRule/Model/Indexer/IndexBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Model/Indexer/IndexBuilder/ProductLoader.php b/app/code/Magento/CatalogRule/Model/Indexer/IndexBuilder/ProductLoader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Model/Indexer/Product/ProductRuleIndexer.php b/app/code/Magento/CatalogRule/Model/Indexer/Product/ProductRuleIndexer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Model/Indexer/Product/ProductRuleProcessor.php b/app/code/Magento/CatalogRule/Model/Indexer/Product/ProductRuleProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Model/Indexer/ProductPriceCalculator.php b/app/code/Magento/CatalogRule/Model/Indexer/ProductPriceCalculator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Model/Indexer/ReindexRuleGroupWebsite.php b/app/code/Magento/CatalogRule/Model/Indexer/ReindexRuleGroupWebsite.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Model/Indexer/ReindexRuleProduct.php b/app/code/Magento/CatalogRule/Model/Indexer/ReindexRuleProduct.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Model/Indexer/ReindexRuleProductPrice.php b/app/code/Magento/CatalogRule/Model/Indexer/ReindexRuleProductPrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Model/Indexer/Rule/RuleProductIndexer.php b/app/code/Magento/CatalogRule/Model/Indexer/Rule/RuleProductIndexer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Model/Indexer/Rule/RuleProductProcessor.php b/app/code/Magento/CatalogRule/Model/Indexer/Rule/RuleProductProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Model/Indexer/RuleProductPricesPersistor.php b/app/code/Magento/CatalogRule/Model/Indexer/RuleProductPricesPersistor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Model/Indexer/RuleProductsSelectBuilder.php b/app/code/Magento/CatalogRule/Model/Indexer/RuleProductsSelectBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Model/Product/PriceModifier.php b/app/code/Magento/CatalogRule/Model/Product/PriceModifier.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Model/ResourceModel/Grid/Collection.php b/app/code/Magento/CatalogRule/Model/ResourceModel/Grid/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Model/ResourceModel/Product/CollectionProcessor.php b/app/code/Magento/CatalogRule/Model/ResourceModel/Product/CollectionProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Model/ResourceModel/Product/LinkedProductSelectBuilderByCatalogRulePrice.php b/app/code/Magento/CatalogRule/Model/ResourceModel/Product/LinkedProductSelectBuilderByCatalogRulePrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Model/ResourceModel/ReadHandler.php b/app/code/Magento/CatalogRule/Model/ResourceModel/ReadHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Model/ResourceModel/Rule.php b/app/code/Magento/CatalogRule/Model/ResourceModel/Rule.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Model/ResourceModel/Rule/Collection.php b/app/code/Magento/CatalogRule/Model/ResourceModel/Rule/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Model/ResourceModel/Rule/Product/Price.php b/app/code/Magento/CatalogRule/Model/ResourceModel/Rule/Product/Price.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Model/ResourceModel/Rule/Product/Price/Collection.php b/app/code/Magento/CatalogRule/Model/ResourceModel/Rule/Product/Price/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Model/ResourceModel/SaveHandler.php b/app/code/Magento/CatalogRule/Model/ResourceModel/SaveHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Model/Rule.php b/app/code/Magento/CatalogRule/Model/Rule.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Model/Rule/Action/Collection.php b/app/code/Magento/CatalogRule/Model/Rule/Action/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Model/Rule/Action/Product.php b/app/code/Magento/CatalogRule/Model/Rule/Action/Product.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Model/Rule/Action/SimpleActionOptionsProvider.php b/app/code/Magento/CatalogRule/Model/Rule/Action/SimpleActionOptionsProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Model/Rule/Condition/Combine.php b/app/code/Magento/CatalogRule/Model/Rule/Condition/Combine.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Model/Rule/Condition/Product.php b/app/code/Magento/CatalogRule/Model/Rule/Condition/Product.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Model/Rule/CustomerGroupsOptionsProvider.php b/app/code/Magento/CatalogRule/Model/Rule/CustomerGroupsOptionsProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Model/Rule/DataProvider.php b/app/code/Magento/CatalogRule/Model/Rule/DataProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Model/Rule/Job.php b/app/code/Magento/CatalogRule/Model/Rule/Job.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Model/Rule/Product/Price.php b/app/code/Magento/CatalogRule/Model/Rule/Product/Price.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Model/Rule/WebsitesOptionsProvider.php b/app/code/Magento/CatalogRule/Model/Rule/WebsitesOptionsProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Observer/AddDirtyRulesNotice.php b/app/code/Magento/CatalogRule/Observer/AddDirtyRulesNotice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Observer/PrepareCatalogProductCollectionPricesObserver.php b/app/code/Magento/CatalogRule/Observer/PrepareCatalogProductCollectionPricesObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Observer/ProcessAdminFinalPriceObserver.php b/app/code/Magento/CatalogRule/Observer/ProcessAdminFinalPriceObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Observer/ProcessFrontFinalPriceObserver.php b/app/code/Magento/CatalogRule/Observer/ProcessFrontFinalPriceObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Observer/RulePricesStorage.php b/app/code/Magento/CatalogRule/Observer/RulePricesStorage.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Plugin/Indexer/Category.php b/app/code/Magento/CatalogRule/Plugin/Indexer/Category.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Plugin/Indexer/CustomerGroup.php b/app/code/Magento/CatalogRule/Plugin/Indexer/CustomerGroup.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Plugin/Indexer/ImportExport.php b/app/code/Magento/CatalogRule/Plugin/Indexer/ImportExport.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Plugin/Indexer/Product/Attribute.php b/app/code/Magento/CatalogRule/Plugin/Indexer/Product/Attribute.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Plugin/Indexer/Product/Save/ApplyRules.php b/app/code/Magento/CatalogRule/Plugin/Indexer/Product/Save/ApplyRules.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Plugin/Indexer/Product/Save/ApplyRulesAfterReindex.php b/app/code/Magento/CatalogRule/Plugin/Indexer/Product/Save/ApplyRulesAfterReindex.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Plugin/Indexer/Website.php b/app/code/Magento/CatalogRule/Plugin/Indexer/Website.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Plugin/Model/Product/Action.php b/app/code/Magento/CatalogRule/Plugin/Model/Product/Action.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Pricing/Price/CatalogRulePrice.php b/app/code/Magento/CatalogRule/Pricing/Price/CatalogRulePrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/README.md b/app/code/Magento/CatalogRule/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Setup/InstallData.php b/app/code/Magento/CatalogRule/Setup/InstallData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Setup/InstallSchema.php b/app/code/Magento/CatalogRule/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Setup/UpgradeData.php b/app/code/Magento/CatalogRule/Setup/UpgradeData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Setup/UpgradeSchema.php b/app/code/Magento/CatalogRule/Setup/UpgradeSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Test/Unit/Block/Adminhtml/Edit/DeleteButtonTest.php b/app/code/Magento/CatalogRule/Test/Unit/Block/Adminhtml/Edit/DeleteButtonTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Test/Unit/Block/Adminhtml/Edit/GenericButtonTest.php b/app/code/Magento/CatalogRule/Test/Unit/Block/Adminhtml/Edit/GenericButtonTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Test/Unit/Cron/DailyCatalogUpdateTest.php b/app/code/Magento/CatalogRule/Test/Unit/Cron/DailyCatalogUpdateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Test/Unit/Helper/DataTest.php b/app/code/Magento/CatalogRule/Test/Unit/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Test/Unit/Model/CatalogRuleRepositoryTest.php b/app/code/Magento/CatalogRule/Test/Unit/Model/CatalogRuleRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Test/Unit/Model/Data/Condition/ConverterTest.php b/app/code/Magento/CatalogRule/Test/Unit/Model/Data/Condition/ConverterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Test/Unit/Model/Indexer/AbstractIndexerTest.php b/app/code/Magento/CatalogRule/Test/Unit/Model/Indexer/AbstractIndexerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Test/Unit/Model/Indexer/IndexBuilder/ProductLoaderTest.php b/app/code/Magento/CatalogRule/Test/Unit/Model/Indexer/IndexBuilder/ProductLoaderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Test/Unit/Model/Indexer/IndexBuilderTest.php b/app/code/Magento/CatalogRule/Test/Unit/Model/Indexer/IndexBuilderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Test/Unit/Model/Indexer/Product/ProductRuleIndexerTest.php b/app/code/Magento/CatalogRule/Test/Unit/Model/Indexer/Product/ProductRuleIndexerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Test/Unit/Model/Indexer/ProductPriceCalculatorTest.php b/app/code/Magento/CatalogRule/Test/Unit/Model/Indexer/ProductPriceCalculatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Test/Unit/Model/Indexer/ReindexRuleGroupWebsiteTest.php b/app/code/Magento/CatalogRule/Test/Unit/Model/Indexer/ReindexRuleGroupWebsiteTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Test/Unit/Model/Indexer/ReindexRuleProductPriceTest.php b/app/code/Magento/CatalogRule/Test/Unit/Model/Indexer/ReindexRuleProductPriceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Test/Unit/Model/Indexer/ReindexRuleProductTest.php b/app/code/Magento/CatalogRule/Test/Unit/Model/Indexer/ReindexRuleProductTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Test/Unit/Model/Indexer/Rule/RuleProductIndexerTest.php b/app/code/Magento/CatalogRule/Test/Unit/Model/Indexer/Rule/RuleProductIndexerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Test/Unit/Model/Indexer/RuleProductPricesPersistorTest.php b/app/code/Magento/CatalogRule/Test/Unit/Model/Indexer/RuleProductPricesPersistorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Test/Unit/Model/Indexer/RuleProductsSelectBuilderTest.php b/app/code/Magento/CatalogRule/Test/Unit/Model/Indexer/RuleProductsSelectBuilderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Test/Unit/Model/Product/PriceModifierTest.php b/app/code/Magento/CatalogRule/Test/Unit/Model/Product/PriceModifierTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Test/Unit/Model/ResourceModel/ReadHandlerTest.php b/app/code/Magento/CatalogRule/Test/Unit/Model/ResourceModel/ReadHandlerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Test/Unit/Model/ResourceModel/SaveHandlerTest.php b/app/code/Magento/CatalogRule/Test/Unit/Model/ResourceModel/SaveHandlerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Test/Unit/Model/Rule/Condition/ProductTest.php b/app/code/Magento/CatalogRule/Test/Unit/Model/Rule/Condition/ProductTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Test/Unit/Model/Rule/CustomerGroupsOptionsProviderTest.php b/app/code/Magento/CatalogRule/Test/Unit/Model/Rule/CustomerGroupsOptionsProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Test/Unit/Model/Rule/DataProviderTest.php b/app/code/Magento/CatalogRule/Test/Unit/Model/Rule/DataProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Test/Unit/Model/Rule/JobTest.php b/app/code/Magento/CatalogRule/Test/Unit/Model/Rule/JobTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Test/Unit/Model/Rule/WebsitesOptionsProviderTest.php b/app/code/Magento/CatalogRule/Test/Unit/Model/Rule/WebsitesOptionsProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Test/Unit/Model/RuleTest.php b/app/code/Magento/CatalogRule/Test/Unit/Model/RuleTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Test/Unit/Observer/AddDirtyRulesNoticeTest.php b/app/code/Magento/CatalogRule/Test/Unit/Observer/AddDirtyRulesNoticeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Test/Unit/Plugin/Indexer/CategoryTest.php b/app/code/Magento/CatalogRule/Test/Unit/Plugin/Indexer/CategoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Test/Unit/Plugin/Indexer/CustomerGroupTest.php b/app/code/Magento/CatalogRule/Test/Unit/Plugin/Indexer/CustomerGroupTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Test/Unit/Plugin/Indexer/ImportExportTest.php b/app/code/Magento/CatalogRule/Test/Unit/Plugin/Indexer/ImportExportTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Test/Unit/Plugin/Indexer/Product/Save/ApplyRulesAfterReindexTest.php b/app/code/Magento/CatalogRule/Test/Unit/Plugin/Indexer/Product/Save/ApplyRulesAfterReindexTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Test/Unit/Plugin/Indexer/Product/Save/ApplyRulesTest.php b/app/code/Magento/CatalogRule/Test/Unit/Plugin/Indexer/Product/Save/ApplyRulesTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Test/Unit/Plugin/Indexer/WebsiteTest.php b/app/code/Magento/CatalogRule/Test/Unit/Plugin/Indexer/WebsiteTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Test/Unit/Plugin/Model/Product/ActionTest.php b/app/code/Magento/CatalogRule/Test/Unit/Plugin/Model/Product/ActionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/Test/Unit/Pricing/Price/CatalogRulePriceTest.php b/app/code/Magento/CatalogRule/Test/Unit/Pricing/Price/CatalogRulePriceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/composer.json b/app/code/Magento/CatalogRule/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/etc/acl.xml b/app/code/Magento/CatalogRule/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/etc/adminhtml/di.xml b/app/code/Magento/CatalogRule/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/etc/adminhtml/events.xml b/app/code/Magento/CatalogRule/etc/adminhtml/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/etc/adminhtml/menu.xml b/app/code/Magento/CatalogRule/etc/adminhtml/menu.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/etc/adminhtml/routes.xml b/app/code/Magento/CatalogRule/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/etc/crontab.xml b/app/code/Magento/CatalogRule/etc/crontab.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/etc/crontab/events.xml b/app/code/Magento/CatalogRule/etc/crontab/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/etc/di.xml b/app/code/Magento/CatalogRule/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/etc/events.xml b/app/code/Magento/CatalogRule/etc/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/etc/frontend/events.xml b/app/code/Magento/CatalogRule/etc/frontend/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/etc/indexer.xml b/app/code/Magento/CatalogRule/etc/indexer.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/etc/module.xml b/app/code/Magento/CatalogRule/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/etc/mview.xml b/app/code/Magento/CatalogRule/etc/mview.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/etc/webapi_rest/di.xml b/app/code/Magento/CatalogRule/etc/webapi_rest/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/etc/webapi_rest/events.xml b/app/code/Magento/CatalogRule/etc/webapi_rest/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/etc/webapi_soap/events.xml b/app/code/Magento/CatalogRule/etc/webapi_soap/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/i18n/en_US.csv b/app/code/Magento/CatalogRule/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/registration.php b/app/code/Magento/CatalogRule/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/view/adminhtml/layout/catalog_rule_promo_catalog_block.xml b/app/code/Magento/CatalogRule/view/adminhtml/layout/catalog_rule_promo_catalog_block.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/view/adminhtml/layout/catalog_rule_promo_catalog_edit.xml b/app/code/Magento/CatalogRule/view/adminhtml/layout/catalog_rule_promo_catalog_edit.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/view/adminhtml/layout/catalog_rule_promo_catalog_index.xml b/app/code/Magento/CatalogRule/view/adminhtml/layout/catalog_rule_promo_catalog_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/view/adminhtml/templates/promo/fieldset.phtml b/app/code/Magento/CatalogRule/view/adminhtml/templates/promo/fieldset.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/view/adminhtml/templates/promo/form.phtml b/app/code/Magento/CatalogRule/view/adminhtml/templates/promo/form.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRule/view/adminhtml/ui_component/catalog_rule_form.xml b/app/code/Magento/CatalogRule/view/adminhtml/ui_component/catalog_rule_form.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRuleConfigurable/LICENSE.txt b/app/code/Magento/CatalogRuleConfigurable/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRuleConfigurable/LICENSE_AFL.txt b/app/code/Magento/CatalogRuleConfigurable/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRuleConfigurable/Plugin/CatalogRule/Model/ConfigurableProductsProvider.php b/app/code/Magento/CatalogRuleConfigurable/Plugin/CatalogRule/Model/ConfigurableProductsProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRuleConfigurable/Plugin/CatalogRule/Model/Indexer/ProductRuleReindex.php b/app/code/Magento/CatalogRuleConfigurable/Plugin/CatalogRule/Model/Indexer/ProductRuleReindex.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRuleConfigurable/Plugin/CatalogRule/Model/Rule/ConfigurableProductHandler.php b/app/code/Magento/CatalogRuleConfigurable/Plugin/CatalogRule/Model/Rule/ConfigurableProductHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRuleConfigurable/Plugin/CatalogRule/Model/Rule/Validation.php b/app/code/Magento/CatalogRuleConfigurable/Plugin/CatalogRule/Model/Rule/Validation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRuleConfigurable/Plugin/ConfigurableProduct/Model/ResourceModel/AddCatalogRulePrice.php b/app/code/Magento/CatalogRuleConfigurable/Plugin/ConfigurableProduct/Model/ResourceModel/AddCatalogRulePrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRuleConfigurable/README.md b/app/code/Magento/CatalogRuleConfigurable/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRuleConfigurable/Test/Unit/Plugin/CatalogRule/Model/Rule/ConfigurableProductHandlerTest.php b/app/code/Magento/CatalogRuleConfigurable/Test/Unit/Plugin/CatalogRule/Model/Rule/ConfigurableProductHandlerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRuleConfigurable/Test/Unit/Plugin/CatalogRule/Model/Rule/ValidationTest.php b/app/code/Magento/CatalogRuleConfigurable/Test/Unit/Plugin/CatalogRule/Model/Rule/ValidationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRuleConfigurable/composer.json b/app/code/Magento/CatalogRuleConfigurable/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRuleConfigurable/etc/adminhtml/di.xml b/app/code/Magento/CatalogRuleConfigurable/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRuleConfigurable/etc/crontab/di.xml b/app/code/Magento/CatalogRuleConfigurable/etc/crontab/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRuleConfigurable/etc/di.xml b/app/code/Magento/CatalogRuleConfigurable/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRuleConfigurable/etc/module.xml b/app/code/Magento/CatalogRuleConfigurable/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogRuleConfigurable/registration.php b/app/code/Magento/CatalogRuleConfigurable/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Block/Advanced/Form.php b/app/code/Magento/CatalogSearch/Block/Advanced/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Block/Advanced/Result.php b/app/code/Magento/CatalogSearch/Block/Advanced/Result.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Block/Plugin/FrontTabPlugin.php b/app/code/Magento/CatalogSearch/Block/Plugin/FrontTabPlugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Block/Result.php b/app/code/Magento/CatalogSearch/Block/Result.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Controller/Advanced/Index.php b/app/code/Magento/CatalogSearch/Controller/Advanced/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Controller/Advanced/Result.php b/app/code/Magento/CatalogSearch/Controller/Advanced/Result.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Controller/Result/Index.php b/app/code/Magento/CatalogSearch/Controller/Result/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Helper/Data.php b/app/code/Magento/CatalogSearch/Helper/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/LICENSE.txt b/app/code/Magento/CatalogSearch/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/LICENSE_AFL.txt b/app/code/Magento/CatalogSearch/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Adapter/Aggregation/AggregationResolver.php b/app/code/Magento/CatalogSearch/Model/Adapter/Aggregation/AggregationResolver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Adapter/Aggregation/Checker/Query/AdvancedSearch.php b/app/code/Magento/CatalogSearch/Model/Adapter/Aggregation/Checker/Query/AdvancedSearch.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Adapter/Aggregation/Checker/Query/CatalogView.php b/app/code/Magento/CatalogSearch/Model/Adapter/Aggregation/Checker/Query/CatalogView.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Adapter/Aggregation/RequestCheckerComposite.php b/app/code/Magento/CatalogSearch/Model/Adapter/Aggregation/RequestCheckerComposite.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Adapter/Aggregation/RequestCheckerInterface.php b/app/code/Magento/CatalogSearch/Model/Adapter/Aggregation/RequestCheckerInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Adapter/Mysql/Aggregation/DataProvider.php b/app/code/Magento/CatalogSearch/Model/Adapter/Mysql/Aggregation/DataProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Adapter/Mysql/Aggregation/DataProvider/QueryBuilder.php b/app/code/Magento/CatalogSearch/Model/Adapter/Mysql/Aggregation/DataProvider/QueryBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Adapter/Mysql/BaseSelectStrategy/BaseSelectAttributesSearchStrategy.php b/app/code/Magento/CatalogSearch/Model/Adapter/Mysql/BaseSelectStrategy/BaseSelectAttributesSearchStrategy.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Adapter/Mysql/BaseSelectStrategy/BaseSelectFullTextSearchStrategy.php b/app/code/Magento/CatalogSearch/Model/Adapter/Mysql/BaseSelectStrategy/BaseSelectFullTextSearchStrategy.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Adapter/Mysql/Dynamic/DataProvider.php b/app/code/Magento/CatalogSearch/Model/Adapter/Mysql/Dynamic/DataProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Adapter/Mysql/Field/Resolver.php b/app/code/Magento/CatalogSearch/Model/Adapter/Mysql/Field/Resolver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Adapter/Mysql/Filter/AliasResolver.php b/app/code/Magento/CatalogSearch/Model/Adapter/Mysql/Filter/AliasResolver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Adapter/Mysql/Filter/Preprocessor.php b/app/code/Magento/CatalogSearch/Model/Adapter/Mysql/Filter/Preprocessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Adapter/Mysql/Plugin/Aggregation/Category/DataProvider.php b/app/code/Magento/CatalogSearch/Model/Adapter/Mysql/Plugin/Aggregation/Category/DataProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Adapter/Options.php b/app/code/Magento/CatalogSearch/Model/Adapter/Options.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Adminhtml/System/Config/Backend/Engine.php b/app/code/Magento/CatalogSearch/Model/Adminhtml/System/Config/Backend/Engine.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Advanced.php b/app/code/Magento/CatalogSearch/Model/Advanced.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Advanced/Request/Builder.php b/app/code/Magento/CatalogSearch/Model/Advanced/Request/Builder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Attribute/SearchWeight.php b/app/code/Magento/CatalogSearch/Model/Attribute/SearchWeight.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Autocomplete/DataProvider.php b/app/code/Magento/CatalogSearch/Model/Autocomplete/DataProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Fulltext.php b/app/code/Magento/CatalogSearch/Model/Fulltext.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext.php b/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Action/DataProvider.php b/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Action/DataProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Action/Full.php b/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Action/Full.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Action/IndexIterator.php b/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Action/IndexIterator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Plugin/AbstractPlugin.php b/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Plugin/AbstractPlugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Plugin/Attribute.php b/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Plugin/Attribute.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Plugin/Category.php b/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Plugin/Category.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Plugin/Product.php b/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Plugin/Product.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Plugin/Product/Action.php b/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Plugin/Product/Action.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Plugin/Store/Group.php b/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Plugin/Store/Group.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Plugin/Store/View.php b/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Plugin/Store/View.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Processor.php b/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Processor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Store.php b/app/code/Magento/CatalogSearch/Model/Indexer/Fulltext/Store.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/IndexStructure.php b/app/code/Magento/CatalogSearch/Model/Indexer/IndexStructure.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/IndexStructureFactory.php b/app/code/Magento/CatalogSearch/Model/Indexer/IndexStructureFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/IndexStructureProxy.php b/app/code/Magento/CatalogSearch/Model/Indexer/IndexStructureProxy.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/IndexSwitcherInterface.php b/app/code/Magento/CatalogSearch/Model/Indexer/IndexSwitcherInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/IndexSwitcherProxy.php b/app/code/Magento/CatalogSearch/Model/Indexer/IndexSwitcherProxy.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/IndexerHandler.php b/app/code/Magento/CatalogSearch/Model/Indexer/IndexerHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/IndexerHandlerFactory.php b/app/code/Magento/CatalogSearch/Model/Indexer/IndexerHandlerFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/Mview/Action.php b/app/code/Magento/CatalogSearch/Model/Indexer/Mview/Action.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/ProductFieldset.php b/app/code/Magento/CatalogSearch/Model/Indexer/ProductFieldset.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/Scope/IndexSwitcher.php b/app/code/Magento/CatalogSearch/Model/Indexer/Scope/IndexSwitcher.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/Scope/IndexTableNotExistException.php b/app/code/Magento/CatalogSearch/Model/Indexer/Scope/IndexTableNotExistException.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/Scope/ScopeProxy.php b/app/code/Magento/CatalogSearch/Model/Indexer/Scope/ScopeProxy.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/Scope/State.php b/app/code/Magento/CatalogSearch/Model/Indexer/Scope/State.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/Scope/TemporaryResolver.php b/app/code/Magento/CatalogSearch/Model/Indexer/Scope/TemporaryResolver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Indexer/Scope/UnknownStateException.php b/app/code/Magento/CatalogSearch/Model/Indexer/Scope/UnknownStateException.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Layer/Category/ItemCollectionProvider.php b/app/code/Magento/CatalogSearch/Model/Layer/Category/ItemCollectionProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Layer/Filter/Attribute.php b/app/code/Magento/CatalogSearch/Model/Layer/Filter/Attribute.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Layer/Filter/Category.php b/app/code/Magento/CatalogSearch/Model/Layer/Filter/Category.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Layer/Filter/Decimal.php b/app/code/Magento/CatalogSearch/Model/Layer/Filter/Decimal.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Layer/Filter/Price.php b/app/code/Magento/CatalogSearch/Model/Layer/Filter/Price.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Layer/Search/Plugin/CollectionFilter.php b/app/code/Magento/CatalogSearch/Model/Layer/Search/Plugin/CollectionFilter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Layer/Search/StateKey.php b/app/code/Magento/CatalogSearch/Model/Layer/Search/StateKey.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Price/Interval.php b/app/code/Magento/CatalogSearch/Model/Price/Interval.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/ResourceModel/Advanced.php b/app/code/Magento/CatalogSearch/Model/ResourceModel/Advanced.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/ResourceModel/Advanced/Collection.php b/app/code/Magento/CatalogSearch/Model/ResourceModel/Advanced/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/ResourceModel/Engine.php b/app/code/Magento/CatalogSearch/Model/ResourceModel/Engine.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/ResourceModel/EngineInterface.php b/app/code/Magento/CatalogSearch/Model/ResourceModel/EngineInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/ResourceModel/EngineProvider.php b/app/code/Magento/CatalogSearch/Model/ResourceModel/EngineProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/ResourceModel/Fulltext.php b/app/code/Magento/CatalogSearch/Model/ResourceModel/Fulltext.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/ResourceModel/Fulltext/Collection.php b/app/code/Magento/CatalogSearch/Model/ResourceModel/Fulltext/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/ResourceModel/Search/Collection.php b/app/code/Magento/CatalogSearch/Model/ResourceModel/Search/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Search/BaseSelectStrategy/BaseSelectStrategyInterface.php b/app/code/Magento/CatalogSearch/Model/Search/BaseSelectStrategy/BaseSelectStrategyInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Search/BaseSelectStrategy/StrategyMapper.php b/app/code/Magento/CatalogSearch/Model/Search/BaseSelectStrategy/StrategyMapper.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Search/Catalog.php b/app/code/Magento/CatalogSearch/Model/Search/Catalog.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Search/CustomAttributeFilterCheck.php b/app/code/Magento/CatalogSearch/Model/Search/CustomAttributeFilterCheck.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Search/FilterMapper/CustomAttributeFilter.php b/app/code/Magento/CatalogSearch/Model/Search/FilterMapper/CustomAttributeFilter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Search/FilterMapper/DimensionsProcessor.php b/app/code/Magento/CatalogSearch/Model/Search/FilterMapper/DimensionsProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Search/FilterMapper/ExclusionStrategy.php b/app/code/Magento/CatalogSearch/Model/Search/FilterMapper/ExclusionStrategy.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Search/FilterMapper/FilterContext.php b/app/code/Magento/CatalogSearch/Model/Search/FilterMapper/FilterContext.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Search/FilterMapper/FilterMapper.php b/app/code/Magento/CatalogSearch/Model/Search/FilterMapper/FilterMapper.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Search/FilterMapper/FilterStrategyInterface.php b/app/code/Magento/CatalogSearch/Model/Search/FilterMapper/FilterStrategyInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Search/FilterMapper/StaticAttributeStrategy.php b/app/code/Magento/CatalogSearch/Model/Search/FilterMapper/StaticAttributeStrategy.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Search/FilterMapper/StockStatusFilter.php b/app/code/Magento/CatalogSearch/Model/Search/FilterMapper/StockStatusFilter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Search/FilterMapper/TermDropdownStrategy.php b/app/code/Magento/CatalogSearch/Model/Search/FilterMapper/TermDropdownStrategy.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Search/FilterMapper/VisibilityFilter.php b/app/code/Magento/CatalogSearch/Model/Search/FilterMapper/VisibilityFilter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Search/FiltersExtractor.php b/app/code/Magento/CatalogSearch/Model/Search/FiltersExtractor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Search/IndexBuilder.php b/app/code/Magento/CatalogSearch/Model/Search/IndexBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Search/QueryChecker/FullTextSearchCheck.php b/app/code/Magento/CatalogSearch/Model/Search/QueryChecker/FullTextSearchCheck.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Search/ReaderPlugin.php b/app/code/Magento/CatalogSearch/Model/Search/ReaderPlugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Search/RequestGenerator.php b/app/code/Magento/CatalogSearch/Model/Search/RequestGenerator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Search/RequestGenerator/Decimal.php b/app/code/Magento/CatalogSearch/Model/Search/RequestGenerator/Decimal.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Search/RequestGenerator/General.php b/app/code/Magento/CatalogSearch/Model/Search/RequestGenerator/General.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Search/RequestGenerator/GeneratorInterface.php b/app/code/Magento/CatalogSearch/Model/Search/RequestGenerator/GeneratorInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Search/RequestGenerator/GeneratorResolver.php b/app/code/Magento/CatalogSearch/Model/Search/RequestGenerator/GeneratorResolver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Search/SelectContainer/SelectContainer.php b/app/code/Magento/CatalogSearch/Model/Search/SelectContainer/SelectContainer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Search/SelectContainer/SelectContainerBuilder.php b/app/code/Magento/CatalogSearch/Model/Search/SelectContainer/SelectContainerBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Search/TableMapper.php b/app/code/Magento/CatalogSearch/Model/Search/TableMapper.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Model/Source/Weight.php b/app/code/Magento/CatalogSearch/Model/Source/Weight.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/README.md b/app/code/Magento/CatalogSearch/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Setup/InstallData.php b/app/code/Magento/CatalogSearch/Setup/InstallData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Setup/InstallSchema.php b/app/code/Magento/CatalogSearch/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Block/Plugin/FrontTabPluginTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Block/Plugin/FrontTabPluginTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Block/ResultTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Block/ResultTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Controller/Advanced/ResultTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Controller/Advanced/ResultTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Adapter/Aggregation/AggregationResolverTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Adapter/Aggregation/AggregationResolverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Adapter/Aggregation/Checker/Query/CatalogViewTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Adapter/Aggregation/Checker/Query/CatalogViewTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Adapter/Mysql/Aggregation/DataProvider/QueryBuilderTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Adapter/Mysql/Aggregation/DataProvider/QueryBuilderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Adapter/Mysql/Aggregation/DataProviderTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Adapter/Mysql/Aggregation/DataProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Adapter/Mysql/Dynamic/DataProviderTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Adapter/Mysql/Dynamic/DataProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Adapter/Mysql/Field/ResolverTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Adapter/Mysql/Field/ResolverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Adapter/Mysql/Filter/AliasResolverTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Adapter/Mysql/Filter/AliasResolverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Adapter/Mysql/Filter/PreprocessorTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Adapter/Mysql/Filter/PreprocessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Adapter/OptionsTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Adapter/OptionsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Advanced/Request/BuilderTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Advanced/Request/BuilderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/AdvancedTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/AdvancedTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Attribute/SearchWeightTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Attribute/SearchWeightTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Autocomplete/DataProviderTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Autocomplete/DataProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Fulltext/Action/FullTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Fulltext/Action/FullTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Fulltext/Plugin/AttributeTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Fulltext/Plugin/AttributeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Fulltext/Plugin/CategoryTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Fulltext/Plugin/CategoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Fulltext/Plugin/Product/ActionTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Fulltext/Plugin/Product/ActionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Fulltext/Plugin/ProductTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Fulltext/Plugin/ProductTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Fulltext/Plugin/Store/GroupTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Fulltext/Plugin/Store/GroupTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Fulltext/Plugin/Store/ViewTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Fulltext/Plugin/Store/ViewTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/FulltextTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/FulltextTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/IndexerHandlerFactoryTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/IndexerHandlerFactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Scope/IndexSwitcherTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Indexer/Scope/IndexSwitcherTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Layer/Catalog/ItemCollectionProviderTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Layer/Catalog/ItemCollectionProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Layer/Filter/AttributeTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Layer/Filter/AttributeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Layer/Filter/CategoryTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Layer/Filter/CategoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Layer/Filter/DecimalTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Layer/Filter/DecimalTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Layer/Filter/PriceTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Layer/Filter/PriceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Layer/Search/Plugin/CollectionFilterTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Layer/Search/Plugin/CollectionFilterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/ResourceModel/Advanced/CollectionTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/ResourceModel/Advanced/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/ResourceModel/AdvancedTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/ResourceModel/AdvancedTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/ResourceModel/BaseCollection.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/ResourceModel/BaseCollection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/ResourceModel/EngineTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/ResourceModel/EngineTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/ResourceModel/Fulltext/CollectionTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/ResourceModel/Fulltext/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/ResourceModel/FulltextTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/ResourceModel/FulltextTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/BaseSelectStrategy/StrategyMapperTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/BaseSelectStrategy/StrategyMapperTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/CustomAttributeFilterCheckTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/CustomAttributeFilterCheckTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/FilterMapper/ExclusionStrategyTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/FilterMapper/ExclusionStrategyTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/FilterMapper/FilterContextTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/FilterMapper/FilterContextTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/FilterMapper/TermDropdownStrategyTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/FilterMapper/TermDropdownStrategyTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/IndexBuilderTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/IndexBuilderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/Indexer/IndexStructureTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/Indexer/IndexStructureTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/QueryChecker/FullTextSearchCheckTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/QueryChecker/FullTextSearchCheckTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/ReaderPluginTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/ReaderPluginTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/RequestGenerator/DecimalTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/RequestGenerator/DecimalTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/RequestGenerator/GeneralTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/RequestGenerator/GeneralTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/RequestGenerator/GeneratorResolverTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/RequestGenerator/GeneratorResolverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/RequestGeneratorTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/RequestGeneratorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/SelectContainer/SelectContainerBuilderTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/SelectContainer/SelectContainerBuilderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/TableMapperTest.php b/app/code/Magento/CatalogSearch/Test/Unit/Model/Search/TableMapperTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/composer.json b/app/code/Magento/CatalogSearch/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/etc/acl.xml b/app/code/Magento/CatalogSearch/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/etc/adminhtml/di.xml b/app/code/Magento/CatalogSearch/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/etc/adminhtml/system.xml b/app/code/Magento/CatalogSearch/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/etc/catalog_attributes.xml b/app/code/Magento/CatalogSearch/etc/catalog_attributes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/etc/config.xml b/app/code/Magento/CatalogSearch/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/etc/di.xml b/app/code/Magento/CatalogSearch/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/etc/events.xml b/app/code/Magento/CatalogSearch/etc/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/etc/frontend/di.xml b/app/code/Magento/CatalogSearch/etc/frontend/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/etc/frontend/page_types.xml b/app/code/Magento/CatalogSearch/etc/frontend/page_types.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/etc/frontend/routes.xml b/app/code/Magento/CatalogSearch/etc/frontend/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/etc/indexer.xml b/app/code/Magento/CatalogSearch/etc/indexer.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/etc/module.xml b/app/code/Magento/CatalogSearch/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/etc/mview.xml b/app/code/Magento/CatalogSearch/etc/mview.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/etc/search_request.xml b/app/code/Magento/CatalogSearch/etc/search_request.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/i18n/en_US.csv b/app/code/Magento/CatalogSearch/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/registration.php b/app/code/Magento/CatalogSearch/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/view/adminhtml/ui_component/product_attribute_add_form.xml b/app/code/Magento/CatalogSearch/view/adminhtml/ui_component/product_attribute_add_form.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/view/frontend/layout/catalogsearch_advanced_index.xml b/app/code/Magento/CatalogSearch/view/frontend/layout/catalogsearch_advanced_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/view/frontend/layout/catalogsearch_advanced_result.xml b/app/code/Magento/CatalogSearch/view/frontend/layout/catalogsearch_advanced_result.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/view/frontend/layout/catalogsearch_result_index.xml b/app/code/Magento/CatalogSearch/view/frontend/layout/catalogsearch_result_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/view/frontend/layout/default.xml b/app/code/Magento/CatalogSearch/view/frontend/layout/default.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/view/frontend/requirejs-config.js b/app/code/Magento/CatalogSearch/view/frontend/requirejs-config.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/view/frontend/templates/advanced/form.phtml b/app/code/Magento/CatalogSearch/view/frontend/templates/advanced/form.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/view/frontend/templates/advanced/link.phtml b/app/code/Magento/CatalogSearch/view/frontend/templates/advanced/link.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/view/frontend/templates/advanced/result.phtml b/app/code/Magento/CatalogSearch/view/frontend/templates/advanced/result.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogSearch/view/frontend/templates/result.phtml b/app/code/Magento/CatalogSearch/view/frontend/templates/result.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Block/UrlKeyRenderer.php b/app/code/Magento/CatalogUrlRewrite/Block/UrlKeyRenderer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/LICENSE.txt b/app/code/Magento/CatalogUrlRewrite/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/LICENSE_AFL.txt b/app/code/Magento/CatalogUrlRewrite/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Model/Category/CanonicalUrlRewriteGenerator.php b/app/code/Magento/CatalogUrlRewrite/Model/Category/CanonicalUrlRewriteGenerator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Model/Category/ChildrenCategoriesProvider.php b/app/code/Magento/CatalogUrlRewrite/Model/Category/ChildrenCategoriesProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Model/Category/ChildrenUrlRewriteGenerator.php b/app/code/Magento/CatalogUrlRewrite/Model/Category/ChildrenUrlRewriteGenerator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Model/Category/CurrentUrlRewritesRegenerator.php b/app/code/Magento/CatalogUrlRewrite/Model/Category/CurrentUrlRewritesRegenerator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Model/Category/Plugin/Category/Move.php b/app/code/Magento/CatalogUrlRewrite/Model/Category/Plugin/Category/Move.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Model/Category/Plugin/Category/Remove.php b/app/code/Magento/CatalogUrlRewrite/Model/Category/Plugin/Category/Remove.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Model/Category/Plugin/Storage.php b/app/code/Magento/CatalogUrlRewrite/Model/Category/Plugin/Storage.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Model/Category/Plugin/Store/Group.php b/app/code/Magento/CatalogUrlRewrite/Model/Category/Plugin/Store/Group.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Model/Category/Plugin/Store/View.php b/app/code/Magento/CatalogUrlRewrite/Model/Category/Plugin/Store/View.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Model/Category/Product.php b/app/code/Magento/CatalogUrlRewrite/Model/Category/Product.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Model/CategoryBasedProductRewriteGenerator.php b/app/code/Magento/CatalogUrlRewrite/Model/CategoryBasedProductRewriteGenerator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Model/CategoryProductUrlPathGenerator.php b/app/code/Magento/CatalogUrlRewrite/Model/CategoryProductUrlPathGenerator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Model/CategoryUrlPathGenerator.php b/app/code/Magento/CatalogUrlRewrite/Model/CategoryUrlPathGenerator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Model/CategoryUrlRewriteGenerator.php b/app/code/Magento/CatalogUrlRewrite/Model/CategoryUrlRewriteGenerator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Model/Map/DataCategoryHashMap.php b/app/code/Magento/CatalogUrlRewrite/Model/Map/DataCategoryHashMap.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Model/Map/DataCategoryUrlRewriteDatabaseMap.php b/app/code/Magento/CatalogUrlRewrite/Model/Map/DataCategoryUrlRewriteDatabaseMap.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Model/Map/DataCategoryUsedInProductsHashMap.php b/app/code/Magento/CatalogUrlRewrite/Model/Map/DataCategoryUsedInProductsHashMap.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Model/Map/DataProductHashMap.php b/app/code/Magento/CatalogUrlRewrite/Model/Map/DataProductHashMap.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Model/Map/DataProductUrlRewriteDatabaseMap.php b/app/code/Magento/CatalogUrlRewrite/Model/Map/DataProductUrlRewriteDatabaseMap.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Model/Map/DatabaseMapInterface.php b/app/code/Magento/CatalogUrlRewrite/Model/Map/DatabaseMapInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Model/Map/DatabaseMapPool.php b/app/code/Magento/CatalogUrlRewrite/Model/Map/DatabaseMapPool.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Model/Map/HashMapInterface.php b/app/code/Magento/CatalogUrlRewrite/Model/Map/HashMapInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Model/Map/HashMapPool.php b/app/code/Magento/CatalogUrlRewrite/Model/Map/HashMapPool.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Model/Map/UrlRewriteFinder.php b/app/code/Magento/CatalogUrlRewrite/Model/Map/UrlRewriteFinder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Model/ObjectRegistry.php b/app/code/Magento/CatalogUrlRewrite/Model/ObjectRegistry.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Model/Product/AnchorUrlRewriteGenerator.php b/app/code/Magento/CatalogUrlRewrite/Model/Product/AnchorUrlRewriteGenerator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Model/Product/CanonicalUrlRewriteGenerator.php b/app/code/Magento/CatalogUrlRewrite/Model/Product/CanonicalUrlRewriteGenerator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Model/Product/CategoriesUrlRewriteGenerator.php b/app/code/Magento/CatalogUrlRewrite/Model/Product/CategoriesUrlRewriteGenerator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Model/Product/CurrentUrlRewritesRegenerator.php b/app/code/Magento/CatalogUrlRewrite/Model/Product/CurrentUrlRewritesRegenerator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Model/ProductScopeRewriteGenerator.php b/app/code/Magento/CatalogUrlRewrite/Model/ProductScopeRewriteGenerator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Model/ProductUrlPathGenerator.php b/app/code/Magento/CatalogUrlRewrite/Model/ProductUrlPathGenerator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Model/ProductUrlRewriteGenerator.php b/app/code/Magento/CatalogUrlRewrite/Model/ProductUrlRewriteGenerator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Model/ResourceModel/Category/Product.php b/app/code/Magento/CatalogUrlRewrite/Model/ResourceModel/Category/Product.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Model/ResourceModel/Category/ProductCollection.php b/app/code/Magento/CatalogUrlRewrite/Model/ResourceModel/Category/ProductCollection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Model/Storage/DbStorage.php b/app/code/Magento/CatalogUrlRewrite/Model/Storage/DbStorage.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Model/UrlRewriteBunchReplacer.php b/app/code/Magento/CatalogUrlRewrite/Model/UrlRewriteBunchReplacer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Observer/AfterImportDataObserver.php b/app/code/Magento/CatalogUrlRewrite/Observer/AfterImportDataObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Observer/CategoryProcessUrlRewriteMovingObserver.php b/app/code/Magento/CatalogUrlRewrite/Observer/CategoryProcessUrlRewriteMovingObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Observer/CategoryProcessUrlRewriteSavingObserver.php b/app/code/Magento/CatalogUrlRewrite/Observer/CategoryProcessUrlRewriteSavingObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Observer/CategorySaveRewritesHistorySetterObserver.php b/app/code/Magento/CatalogUrlRewrite/Observer/CategorySaveRewritesHistorySetterObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Observer/CategoryUrlPathAutogeneratorObserver.php b/app/code/Magento/CatalogUrlRewrite/Observer/CategoryUrlPathAutogeneratorObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Observer/ClearProductUrlsObserver.php b/app/code/Magento/CatalogUrlRewrite/Observer/ClearProductUrlsObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Observer/ProductProcessUrlRewriteRemovingObserver.php b/app/code/Magento/CatalogUrlRewrite/Observer/ProductProcessUrlRewriteRemovingObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Observer/ProductProcessUrlRewriteSavingObserver.php b/app/code/Magento/CatalogUrlRewrite/Observer/ProductProcessUrlRewriteSavingObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Observer/ProductToWebsiteChangeObserver.php b/app/code/Magento/CatalogUrlRewrite/Observer/ProductToWebsiteChangeObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Observer/ProductUrlKeyAutogeneratorObserver.php b/app/code/Magento/CatalogUrlRewrite/Observer/ProductUrlKeyAutogeneratorObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Observer/UrlRewriteHandler.php b/app/code/Magento/CatalogUrlRewrite/Observer/UrlRewriteHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Plugin/Catalog/Block/Adminhtml/Category/Tab/Attributes.php b/app/code/Magento/CatalogUrlRewrite/Plugin/Catalog/Block/Adminhtml/Category/Tab/Attributes.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Plugin/Catalog/Block/Adminhtml/Product/Edit/Tab/Attributes.php b/app/code/Magento/CatalogUrlRewrite/Plugin/Catalog/Block/Adminhtml/Product/Edit/Tab/Attributes.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Plugin/Catalog/Controller/Adminhtml/Product/Initialization/Helper.php b/app/code/Magento/CatalogUrlRewrite/Plugin/Catalog/Controller/Adminhtml/Product/Initialization/Helper.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Service/V1/StoreViewService.php b/app/code/Magento/CatalogUrlRewrite/Service/V1/StoreViewService.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Setup/InstallData.php b/app/code/Magento/CatalogUrlRewrite/Setup/InstallData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Setup/InstallSchema.php b/app/code/Magento/CatalogUrlRewrite/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Setup/Recurring.php b/app/code/Magento/CatalogUrlRewrite/Setup/Recurring.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/CanonicalUrlRewriteGeneratorTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/CanonicalUrlRewriteGeneratorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/ChildrenCategoriesProviderTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/ChildrenCategoriesProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/ChildrenUrlRewriteGeneratorTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/ChildrenUrlRewriteGeneratorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/CurrentUrlRewritesRegeneratorTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/CurrentUrlRewritesRegeneratorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/Plugin/Category/MoveTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/Plugin/Category/MoveTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/Plugin/Category/RemoveTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/Plugin/Category/RemoveTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/Plugin/StorageTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/Plugin/StorageTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/Plugin/Store/GroupTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/Plugin/Store/GroupTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/Plugin/Store/ViewTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Category/Plugin/Store/ViewTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/CategoryBasedProductRewriteGeneratorTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/CategoryBasedProductRewriteGeneratorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/CategoryProductUrlPathGeneratorTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/CategoryProductUrlPathGeneratorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/CategoryUrlPathGeneratorTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/CategoryUrlPathGeneratorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/CategoryUrlRewriteGeneratorTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/CategoryUrlRewriteGeneratorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Map/DataCategoryHashMapTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Map/DataCategoryHashMapTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Map/DataCategoryUrlRewriteDatabaseMapTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Map/DataCategoryUrlRewriteDatabaseMapTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Map/DataCategoryUsedInProductsHashMapTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Map/DataCategoryUsedInProductsHashMapTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Map/DataProductHashMapTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Map/DataProductHashMapTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Map/DataProductUrlRewriteDatabaseMapTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Map/DataProductUrlRewriteDatabaseMapTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Map/HashMapPoolTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Map/HashMapPoolTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Map/UrlRewriteFinderTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Map/UrlRewriteFinderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/ObjectRegistryTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/ObjectRegistryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Product/CanonicalUrlRewriteGeneratorTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Product/CanonicalUrlRewriteGeneratorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Product/CategoriesUrlRewriteGeneratorTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Product/CategoriesUrlRewriteGeneratorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Product/CurrentUrlRewritesRegeneratorTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Product/CurrentUrlRewritesRegeneratorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/ProductScopeRewriteGeneratorTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/ProductScopeRewriteGeneratorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/ProductUrlPathGeneratorTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/ProductUrlPathGeneratorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/ProductUrlRewriteGeneratorTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/ProductUrlRewriteGeneratorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Storage/DbStorageTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/Storage/DbStorageTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/UrlRewriteBunchReplacerTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Model/UrlRewriteBunchReplacerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Observer/AfterImportDataObserverTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Observer/AfterImportDataObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Observer/CategoryUrlPathAutogeneratorObserverTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Observer/CategoryUrlPathAutogeneratorObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Observer/ClearProductUrlsObserverTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Observer/ClearProductUrlsObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Observer/ProductProcessUrlRewriteSavingObserverTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Observer/ProductProcessUrlRewriteSavingObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Observer/UrlRewriteHandlerTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Observer/UrlRewriteHandlerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Service/V1/StoreViewServiceTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Service/V1/StoreViewServiceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ProductUrlRewriteTest.php b/app/code/Magento/CatalogUrlRewrite/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ProductUrlRewriteTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/Ui/DataProvider/Product/Form/Modifier/ProductUrlRewrite.php b/app/code/Magento/CatalogUrlRewrite/Ui/DataProvider/Product/Form/Modifier/ProductUrlRewrite.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/composer.json b/app/code/Magento/CatalogUrlRewrite/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/etc/adminhtml/di.xml b/app/code/Magento/CatalogUrlRewrite/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/etc/adminhtml/events.xml b/app/code/Magento/CatalogUrlRewrite/etc/adminhtml/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/etc/adminhtml/system.xml b/app/code/Magento/CatalogUrlRewrite/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/etc/catalog_attributes.xml b/app/code/Magento/CatalogUrlRewrite/etc/catalog_attributes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/etc/di.xml b/app/code/Magento/CatalogUrlRewrite/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/etc/eav_attributes.xml b/app/code/Magento/CatalogUrlRewrite/etc/eav_attributes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/etc/events.xml b/app/code/Magento/CatalogUrlRewrite/etc/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/etc/module.xml b/app/code/Magento/CatalogUrlRewrite/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/i18n/en_US.csv b/app/code/Magento/CatalogUrlRewrite/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/registration.php b/app/code/Magento/CatalogUrlRewrite/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogUrlRewrite/view/adminhtml/ui_component/category_form.xml b/app/code/Magento/CatalogUrlRewrite/view/adminhtml/ui_component/category_form.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogWidget/Block/Product/ProductsList.php b/app/code/Magento/CatalogWidget/Block/Product/ProductsList.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogWidget/Block/Product/Widget/Conditions.php b/app/code/Magento/CatalogWidget/Block/Product/Widget/Conditions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogWidget/Controller/Adminhtml/Product/Widget.php b/app/code/Magento/CatalogWidget/Controller/Adminhtml/Product/Widget.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogWidget/Controller/Adminhtml/Product/Widget/Conditions.php b/app/code/Magento/CatalogWidget/Controller/Adminhtml/Product/Widget/Conditions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogWidget/LICENSE.txt b/app/code/Magento/CatalogWidget/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogWidget/LICENSE_AFL.txt b/app/code/Magento/CatalogWidget/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogWidget/Model/Rule.php b/app/code/Magento/CatalogWidget/Model/Rule.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogWidget/Model/Rule/Condition/Combine.php b/app/code/Magento/CatalogWidget/Model/Rule/Condition/Combine.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogWidget/Model/Rule/Condition/Product.php b/app/code/Magento/CatalogWidget/Model/Rule/Condition/Product.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogWidget/README.md b/app/code/Magento/CatalogWidget/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogWidget/Test/Unit/Block/Product/ProductsListTest.php b/app/code/Magento/CatalogWidget/Test/Unit/Block/Product/ProductsListTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogWidget/Test/Unit/Block/Product/Widget/ConditionsTest.php b/app/code/Magento/CatalogWidget/Test/Unit/Block/Product/Widget/ConditionsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogWidget/Test/Unit/Controller/Adminhtml/Product/Widget/ConditionsTest.php b/app/code/Magento/CatalogWidget/Test/Unit/Controller/Adminhtml/Product/Widget/ConditionsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogWidget/Test/Unit/Model/Rule/Condition/CombineTest.php b/app/code/Magento/CatalogWidget/Test/Unit/Model/Rule/Condition/CombineTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogWidget/Test/Unit/Model/Rule/Condition/ProductTest.php b/app/code/Magento/CatalogWidget/Test/Unit/Model/Rule/Condition/ProductTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogWidget/Test/Unit/Model/RuleTest.php b/app/code/Magento/CatalogWidget/Test/Unit/Model/RuleTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogWidget/composer.json b/app/code/Magento/CatalogWidget/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogWidget/etc/adminhtml/routes.xml b/app/code/Magento/CatalogWidget/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogWidget/etc/di.xml b/app/code/Magento/CatalogWidget/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogWidget/etc/module.xml b/app/code/Magento/CatalogWidget/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogWidget/etc/widget.xml b/app/code/Magento/CatalogWidget/etc/widget.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogWidget/i18n/en_US.csv b/app/code/Magento/CatalogWidget/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogWidget/registration.php b/app/code/Magento/CatalogWidget/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogWidget/view/adminhtml/templates/product/widget/conditions.phtml b/app/code/Magento/CatalogWidget/view/adminhtml/templates/product/widget/conditions.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogWidget/view/adminhtml/web/images/products_list.png b/app/code/Magento/CatalogWidget/view/adminhtml/web/images/products_list.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CatalogWidget/view/frontend/templates/product/widget/content/grid.phtml b/app/code/Magento/CatalogWidget/view/frontend/templates/product/widget/content/grid.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Api/AgreementsValidatorInterface.php b/app/code/Magento/Checkout/Api/AgreementsValidatorInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Api/Data/PaymentDetailsInterface.php b/app/code/Magento/Checkout/Api/Data/PaymentDetailsInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Api/Data/ShippingInformationInterface.php b/app/code/Magento/Checkout/Api/Data/ShippingInformationInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Api/Data/TotalsInformationInterface.php b/app/code/Magento/Checkout/Api/Data/TotalsInformationInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Api/GuestPaymentInformationManagementInterface.php b/app/code/Magento/Checkout/Api/GuestPaymentInformationManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Api/GuestShippingInformationManagementInterface.php b/app/code/Magento/Checkout/Api/GuestShippingInformationManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Api/GuestTotalsInformationManagementInterface.php b/app/code/Magento/Checkout/Api/GuestTotalsInformationManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Api/PaymentInformationManagementInterface.php b/app/code/Magento/Checkout/Api/PaymentInformationManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Api/ShippingInformationManagementInterface.php b/app/code/Magento/Checkout/Api/ShippingInformationManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Api/TotalsInformationManagementInterface.php b/app/code/Magento/Checkout/Api/TotalsInformationManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Block/Adminhtml/CartTab.php b/app/code/Magento/Checkout/Block/Adminhtml/CartTab.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Block/Cart.php b/app/code/Magento/Checkout/Block/Cart.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Block/Cart/AbstractCart.php b/app/code/Magento/Checkout/Block/Cart/AbstractCart.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Block/Cart/Additional/Info.php b/app/code/Magento/Checkout/Block/Cart/Additional/Info.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Block/Cart/CartTotalsProcessor.php b/app/code/Magento/Checkout/Block/Cart/CartTotalsProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Block/Cart/Coupon.php b/app/code/Magento/Checkout/Block/Cart/Coupon.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Block/Cart/Crosssell.php b/app/code/Magento/Checkout/Block/Cart/Crosssell.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Block/Cart/Grid.php b/app/code/Magento/Checkout/Block/Cart/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Block/Cart/Item/Configure.php b/app/code/Magento/Checkout/Block/Cart/Item/Configure.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Block/Cart/Item/Renderer.php b/app/code/Magento/Checkout/Block/Cart/Item/Renderer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Block/Cart/Item/Renderer/Actions.php b/app/code/Magento/Checkout/Block/Cart/Item/Renderer/Actions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Block/Cart/Item/Renderer/Actions/Edit.php b/app/code/Magento/Checkout/Block/Cart/Item/Renderer/Actions/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Block/Cart/Item/Renderer/Actions/Generic.php b/app/code/Magento/Checkout/Block/Cart/Item/Renderer/Actions/Generic.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Block/Cart/Item/Renderer/Actions/Remove.php b/app/code/Magento/Checkout/Block/Cart/Item/Renderer/Actions/Remove.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Block/Cart/LayoutProcessor.php b/app/code/Magento/Checkout/Block/Cart/LayoutProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Block/Cart/Link.php b/app/code/Magento/Checkout/Block/Cart/Link.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Block/Cart/Shipping.php b/app/code/Magento/Checkout/Block/Cart/Shipping.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Block/Cart/Sidebar.php b/app/code/Magento/Checkout/Block/Cart/Sidebar.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Block/Cart/Totals.php b/app/code/Magento/Checkout/Block/Cart/Totals.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Block/Cart/ValidationMessages.php b/app/code/Magento/Checkout/Block/Cart/ValidationMessages.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Block/Checkout/AttributeMerger.php b/app/code/Magento/Checkout/Block/Checkout/AttributeMerger.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Block/Checkout/DirectoryDataProcessor.php b/app/code/Magento/Checkout/Block/Checkout/DirectoryDataProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Block/Checkout/LayoutProcessor.php b/app/code/Magento/Checkout/Block/Checkout/LayoutProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Block/Checkout/LayoutProcessorInterface.php b/app/code/Magento/Checkout/Block/Checkout/LayoutProcessorInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Block/Checkout/TotalsProcessor.php b/app/code/Magento/Checkout/Block/Checkout/TotalsProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Block/Item/Price/Renderer.php b/app/code/Magento/Checkout/Block/Item/Price/Renderer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Block/Link.php b/app/code/Magento/Checkout/Block/Link.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Block/Onepage.php b/app/code/Magento/Checkout/Block/Onepage.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Block/Onepage/Failure.php b/app/code/Magento/Checkout/Block/Onepage/Failure.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Block/Onepage/Link.php b/app/code/Magento/Checkout/Block/Onepage/Link.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Block/Onepage/Success.php b/app/code/Magento/Checkout/Block/Onepage/Success.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Block/QuoteShortcutButtons.php b/app/code/Magento/Checkout/Block/QuoteShortcutButtons.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Block/Registration.php b/app/code/Magento/Checkout/Block/Registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Block/Shipping/Price.php b/app/code/Magento/Checkout/Block/Shipping/Price.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Block/Success.php b/app/code/Magento/Checkout/Block/Success.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Block/Total/DefaultTotal.php b/app/code/Magento/Checkout/Block/Total/DefaultTotal.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Controller/Account/Create.php b/app/code/Magento/Checkout/Controller/Account/Create.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Controller/Action.php b/app/code/Magento/Checkout/Controller/Action.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Controller/Cart.php b/app/code/Magento/Checkout/Controller/Cart.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Controller/Cart/Add.php b/app/code/Magento/Checkout/Controller/Cart/Add.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Controller/Cart/Addgroup.php b/app/code/Magento/Checkout/Controller/Cart/Addgroup.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Controller/Cart/Configure.php b/app/code/Magento/Checkout/Controller/Cart/Configure.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Controller/Cart/CouponPost.php b/app/code/Magento/Checkout/Controller/Cart/CouponPost.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Controller/Cart/Delete.php b/app/code/Magento/Checkout/Controller/Cart/Delete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Controller/Cart/EstimatePost.php b/app/code/Magento/Checkout/Controller/Cart/EstimatePost.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Controller/Cart/EstimateUpdatePost.php b/app/code/Magento/Checkout/Controller/Cart/EstimateUpdatePost.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Controller/Cart/Index.php b/app/code/Magento/Checkout/Controller/Cart/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Controller/Cart/UpdateItemOptions.php b/app/code/Magento/Checkout/Controller/Cart/UpdateItemOptions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Controller/Cart/UpdatePost.php b/app/code/Magento/Checkout/Controller/Cart/UpdatePost.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Controller/Express/RedirectLoginInterface.php b/app/code/Magento/Checkout/Controller/Express/RedirectLoginInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Controller/Index/Index.php b/app/code/Magento/Checkout/Controller/Index/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Controller/Noroute/Index.php b/app/code/Magento/Checkout/Controller/Noroute/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Controller/Onepage.php b/app/code/Magento/Checkout/Controller/Onepage.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Controller/Onepage/Failure.php b/app/code/Magento/Checkout/Controller/Onepage/Failure.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Controller/Onepage/SaveOrder.php b/app/code/Magento/Checkout/Controller/Onepage/SaveOrder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Controller/Onepage/Success.php b/app/code/Magento/Checkout/Controller/Onepage/Success.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Controller/ShippingRates/Index.php b/app/code/Magento/Checkout/Controller/ShippingRates/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Controller/Sidebar/RemoveItem.php b/app/code/Magento/Checkout/Controller/Sidebar/RemoveItem.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Controller/Sidebar/UpdateItemQty.php b/app/code/Magento/Checkout/Controller/Sidebar/UpdateItemQty.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/CustomerData/AbstractItem.php b/app/code/Magento/Checkout/CustomerData/AbstractItem.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/CustomerData/Cart.php b/app/code/Magento/Checkout/CustomerData/Cart.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/CustomerData/DefaultItem.php b/app/code/Magento/Checkout/CustomerData/DefaultItem.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/CustomerData/DirectoryData.php b/app/code/Magento/Checkout/CustomerData/DirectoryData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/CustomerData/ItemInterface.php b/app/code/Magento/Checkout/CustomerData/ItemInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/CustomerData/ItemPool.php b/app/code/Magento/Checkout/CustomerData/ItemPool.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/CustomerData/ItemPoolInterface.php b/app/code/Magento/Checkout/CustomerData/ItemPoolInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Exception.php b/app/code/Magento/Checkout/Exception.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Helper/Cart.php b/app/code/Magento/Checkout/Helper/Cart.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Helper/Data.php b/app/code/Magento/Checkout/Helper/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Helper/ExpressRedirect.php b/app/code/Magento/Checkout/Helper/ExpressRedirect.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/LICENSE.txt b/app/code/Magento/Checkout/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/LICENSE_AFL.txt b/app/code/Magento/Checkout/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Model/Adminhtml/BillingAddressDisplayOptions.php b/app/code/Magento/Checkout/Model/Adminhtml/BillingAddressDisplayOptions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Model/AgreementsValidator.php b/app/code/Magento/Checkout/Model/AgreementsValidator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Model/Cart.php b/app/code/Magento/Checkout/Model/Cart.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Model/Cart/CartInterface.php b/app/code/Magento/Checkout/Model/Cart/CartInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Model/Cart/CheckoutSummaryConfigProvider.php b/app/code/Magento/Checkout/Model/Cart/CheckoutSummaryConfigProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Model/Cart/CollectQuote.php b/app/code/Magento/Checkout/Model/Cart/CollectQuote.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Model/Cart/ImageProvider.php b/app/code/Magento/Checkout/Model/Cart/ImageProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Model/Cart/RequestInfoFilter.php b/app/code/Magento/Checkout/Model/Cart/RequestInfoFilter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Model/Cart/RequestInfoFilterComposite.php b/app/code/Magento/Checkout/Model/Cart/RequestInfoFilterComposite.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Model/Cart/RequestInfoFilterInterface.php b/app/code/Magento/Checkout/Model/Cart/RequestInfoFilterInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Model/CompositeConfigProvider.php b/app/code/Magento/Checkout/Model/CompositeConfigProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Model/Config/Source/Cart/Summary.php b/app/code/Magento/Checkout/Model/Config/Source/Cart/Summary.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Model/ConfigProviderInterface.php b/app/code/Magento/Checkout/Model/ConfigProviderInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Model/DefaultConfigProvider.php b/app/code/Magento/Checkout/Model/DefaultConfigProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Model/GuestPaymentInformationManagement.php b/app/code/Magento/Checkout/Model/GuestPaymentInformationManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Model/GuestShippingInformationManagement.php b/app/code/Magento/Checkout/Model/GuestShippingInformationManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Model/GuestTotalsInformationManagement.php b/app/code/Magento/Checkout/Model/GuestTotalsInformationManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Model/Layout/AbstractTotalsProcessor.php b/app/code/Magento/Checkout/Model/Layout/AbstractTotalsProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Model/Layout/DepersonalizePlugin.php b/app/code/Magento/Checkout/Model/Layout/DepersonalizePlugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Model/PaymentDetails.php b/app/code/Magento/Checkout/Model/PaymentDetails.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Model/PaymentInformationManagement.php b/app/code/Magento/Checkout/Model/PaymentInformationManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Model/ResourceModel/Cart.php b/app/code/Magento/Checkout/Model/ResourceModel/Cart.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Model/Session.php b/app/code/Magento/Checkout/Model/Session.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Model/Session/SuccessValidator.php b/app/code/Magento/Checkout/Model/Session/SuccessValidator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Model/ShippingInformation.php b/app/code/Magento/Checkout/Model/ShippingInformation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Model/ShippingInformationManagement.php b/app/code/Magento/Checkout/Model/ShippingInformationManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Model/Sidebar.php b/app/code/Magento/Checkout/Model/Sidebar.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Model/TotalsInformation.php b/app/code/Magento/Checkout/Model/TotalsInformation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Model/TotalsInformationManagement.php b/app/code/Magento/Checkout/Model/TotalsInformationManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Model/Type/Onepage.php b/app/code/Magento/Checkout/Model/Type/Onepage.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Observer/LoadCustomerQuoteObserver.php b/app/code/Magento/Checkout/Observer/LoadCustomerQuoteObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Observer/SalesQuoteSaveAfterObserver.php b/app/code/Magento/Checkout/Observer/SalesQuoteSaveAfterObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Observer/UnsetAllObserver.php b/app/code/Magento/Checkout/Observer/UnsetAllObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/README.md b/app/code/Magento/Checkout/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Setup/InstallData.php b/app/code/Magento/Checkout/Setup/InstallData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Block/Cart/AbstractCartTest.php b/app/code/Magento/Checkout/Test/Unit/Block/Cart/AbstractCartTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Block/Cart/CartTotalsProcessorTest.php b/app/code/Magento/Checkout/Test/Unit/Block/Cart/CartTotalsProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Block/Cart/GridTest.php b/app/code/Magento/Checkout/Test/Unit/Block/Cart/GridTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Block/Cart/Item/Renderer/Actions/EditTest.php b/app/code/Magento/Checkout/Test/Unit/Block/Cart/Item/Renderer/Actions/EditTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Block/Cart/Item/Renderer/Actions/GenericTest.php b/app/code/Magento/Checkout/Test/Unit/Block/Cart/Item/Renderer/Actions/GenericTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Block/Cart/Item/Renderer/Actions/RemoveTest.php b/app/code/Magento/Checkout/Test/Unit/Block/Cart/Item/Renderer/Actions/RemoveTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Block/Cart/Item/Renderer/ActionsTest.php b/app/code/Magento/Checkout/Test/Unit/Block/Cart/Item/Renderer/ActionsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Block/Cart/Item/RendererTest.php b/app/code/Magento/Checkout/Test/Unit/Block/Cart/Item/RendererTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Block/Cart/LayoutProcessorTest.php b/app/code/Magento/Checkout/Test/Unit/Block/Cart/LayoutProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Block/Cart/LinkTest.php b/app/code/Magento/Checkout/Test/Unit/Block/Cart/LinkTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Block/Cart/ShippingTest.php b/app/code/Magento/Checkout/Test/Unit/Block/Cart/ShippingTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Block/Cart/SidebarTest.php b/app/code/Magento/Checkout/Test/Unit/Block/Cart/SidebarTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Block/Checkout/DirectoryDataProcessorTest.php b/app/code/Magento/Checkout/Test/Unit/Block/Checkout/DirectoryDataProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Block/Checkout/LayoutProcessorTest.php b/app/code/Magento/Checkout/Test/Unit/Block/Checkout/LayoutProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Block/Checkout/TotalsProcessorTest.php b/app/code/Magento/Checkout/Test/Unit/Block/Checkout/TotalsProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Block/Item/Price/RendererTest.php b/app/code/Magento/Checkout/Test/Unit/Block/Item/Price/RendererTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Block/LinkTest.php b/app/code/Magento/Checkout/Test/Unit/Block/LinkTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Block/Onepage/SuccessTest.php b/app/code/Magento/Checkout/Test/Unit/Block/Onepage/SuccessTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Block/OnepageTest.php b/app/code/Magento/Checkout/Test/Unit/Block/OnepageTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Block/Shipping/PriceTest.php b/app/code/Magento/Checkout/Test/Unit/Block/Shipping/PriceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Controller/Account/CreateTest.php b/app/code/Magento/Checkout/Test/Unit/Controller/Account/CreateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Controller/Cart/ConfigureTest.php b/app/code/Magento/Checkout/Test/Unit/Controller/Cart/ConfigureTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Controller/Cart/CouponPostTest.php b/app/code/Magento/Checkout/Test/Unit/Controller/Cart/CouponPostTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Controller/Cart/IndexTest.php b/app/code/Magento/Checkout/Test/Unit/Controller/Cart/IndexTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Controller/Index/IndexTest.php b/app/code/Magento/Checkout/Test/Unit/Controller/Index/IndexTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Controller/OnepageTest.php b/app/code/Magento/Checkout/Test/Unit/Controller/OnepageTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Controller/Sidebar/RemoveItemTest.php b/app/code/Magento/Checkout/Test/Unit/Controller/Sidebar/RemoveItemTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Controller/Sidebar/UpdateItemQtyTest.php b/app/code/Magento/Checkout/Test/Unit/Controller/Sidebar/UpdateItemQtyTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Controller/Stub/OnepageStub.php b/app/code/Magento/Checkout/Test/Unit/Controller/Stub/OnepageStub.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/CustomerData/CartTest.php b/app/code/Magento/Checkout/Test/Unit/CustomerData/CartTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/CustomerData/DefaultItemTest.php b/app/code/Magento/Checkout/Test/Unit/CustomerData/DefaultItemTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/CustomerData/ItemPoolTest.php b/app/code/Magento/Checkout/Test/Unit/CustomerData/ItemPoolTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Helper/CartTest.php b/app/code/Magento/Checkout/Test/Unit/Helper/CartTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Helper/DataTest.php b/app/code/Magento/Checkout/Test/Unit/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Helper/ExpressRedirectTest.php b/app/code/Magento/Checkout/Test/Unit/Helper/ExpressRedirectTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Model/AgreementsValidatorTest.php b/app/code/Magento/Checkout/Test/Unit/Model/AgreementsValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Model/Cart/CheckoutSummaryConfigProviderTest.php b/app/code/Magento/Checkout/Test/Unit/Model/Cart/CheckoutSummaryConfigProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Model/Cart/ImageProviderTest.php b/app/code/Magento/Checkout/Test/Unit/Model/Cart/ImageProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Model/Cart/RequestInfoFilterCompositeTest.php b/app/code/Magento/Checkout/Test/Unit/Model/Cart/RequestInfoFilterCompositeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Model/Cart/RequestInfoFilterTest.php b/app/code/Magento/Checkout/Test/Unit/Model/Cart/RequestInfoFilterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Model/CartTest.php b/app/code/Magento/Checkout/Test/Unit/Model/CartTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Model/CompositeConfigProviderTest.php b/app/code/Magento/Checkout/Test/Unit/Model/CompositeConfigProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Model/Config/Source/Cart/SummaryTest.php b/app/code/Magento/Checkout/Test/Unit/Model/Config/Source/Cart/SummaryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Model/GuestPaymentInformationManagementTest.php b/app/code/Magento/Checkout/Test/Unit/Model/GuestPaymentInformationManagementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Model/GuestShippingInformationManagementTest.php b/app/code/Magento/Checkout/Test/Unit/Model/GuestShippingInformationManagementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Model/Layout/DepersonalizePluginTest.php b/app/code/Magento/Checkout/Test/Unit/Model/Layout/DepersonalizePluginTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Model/PaymentInformationManagementTest.php b/app/code/Magento/Checkout/Test/Unit/Model/PaymentInformationManagementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Model/Session/SuccessValidatorTest.php b/app/code/Magento/Checkout/Test/Unit/Model/Session/SuccessValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Model/SessionTest.php b/app/code/Magento/Checkout/Test/Unit/Model/SessionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Model/ShippingInformationManagementTest.php b/app/code/Magento/Checkout/Test/Unit/Model/ShippingInformationManagementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Model/SidebarTest.php b/app/code/Magento/Checkout/Test/Unit/Model/SidebarTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Model/Type/OnepageTest.php b/app/code/Magento/Checkout/Test/Unit/Model/Type/OnepageTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Observer/LoadCustomerQuoteObserverTest.php b/app/code/Magento/Checkout/Test/Unit/Observer/LoadCustomerQuoteObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Observer/SalesQuoteSaveAfterObserverTest.php b/app/code/Magento/Checkout/Test/Unit/Observer/SalesQuoteSaveAfterObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/Test/Unit/Observer/UnsetAllObserverTest.php b/app/code/Magento/Checkout/Test/Unit/Observer/UnsetAllObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/composer.json b/app/code/Magento/Checkout/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/etc/acl.xml b/app/code/Magento/Checkout/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/etc/adminhtml/system.xml b/app/code/Magento/Checkout/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/etc/config.xml b/app/code/Magento/Checkout/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/etc/di.xml b/app/code/Magento/Checkout/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/etc/email_templates.xml b/app/code/Magento/Checkout/etc/email_templates.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/etc/events.xml b/app/code/Magento/Checkout/etc/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/etc/fieldset.xml b/app/code/Magento/Checkout/etc/fieldset.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/etc/frontend/di.xml b/app/code/Magento/Checkout/etc/frontend/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/etc/frontend/events.xml b/app/code/Magento/Checkout/etc/frontend/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/etc/frontend/page_types.xml b/app/code/Magento/Checkout/etc/frontend/page_types.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/etc/frontend/routes.xml b/app/code/Magento/Checkout/etc/frontend/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/etc/frontend/sections.xml b/app/code/Magento/Checkout/etc/frontend/sections.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/etc/module.xml b/app/code/Magento/Checkout/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/etc/webapi.xml b/app/code/Magento/Checkout/etc/webapi.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/i18n/en_US.csv b/app/code/Magento/Checkout/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/registration.php b/app/code/Magento/Checkout/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/adminhtml/email/failed_payment.html b/app/code/Magento/Checkout/view/adminhtml/email/failed_payment.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/base/web/js/model/default-post-code-resolver.js b/app/code/Magento/Checkout/view/base/web/js/model/default-post-code-resolver.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/layout/catalog_category_view.xml b/app/code/Magento/Checkout/view/frontend/layout/catalog_category_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/layout/catalog_product_view.xml b/app/code/Magento/Checkout/view/frontend/layout/catalog_product_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/layout/checkout_cart_configure.xml b/app/code/Magento/Checkout/view/frontend/layout/checkout_cart_configure.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/layout/checkout_cart_configure_type_simple.xml b/app/code/Magento/Checkout/view/frontend/layout/checkout_cart_configure_type_simple.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/layout/checkout_cart_index.xml b/app/code/Magento/Checkout/view/frontend/layout/checkout_cart_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/layout/checkout_cart_item_renderers.xml b/app/code/Magento/Checkout/view/frontend/layout/checkout_cart_item_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/layout/checkout_cart_sidebar_item_price_renderers.xml b/app/code/Magento/Checkout/view/frontend/layout/checkout_cart_sidebar_item_price_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/layout/checkout_cart_sidebar_item_renderers.xml b/app/code/Magento/Checkout/view/frontend/layout/checkout_cart_sidebar_item_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/layout/checkout_cart_sidebar_total_renderers.xml b/app/code/Magento/Checkout/view/frontend/layout/checkout_cart_sidebar_total_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/layout/checkout_index_index.xml b/app/code/Magento/Checkout/view/frontend/layout/checkout_index_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/layout/checkout_item_price_renderers.xml b/app/code/Magento/Checkout/view/frontend/layout/checkout_item_price_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/layout/checkout_onepage_failure.xml b/app/code/Magento/Checkout/view/frontend/layout/checkout_onepage_failure.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/layout/checkout_onepage_review_item_renderers.xml b/app/code/Magento/Checkout/view/frontend/layout/checkout_onepage_review_item_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/layout/checkout_onepage_success.xml b/app/code/Magento/Checkout/view/frontend/layout/checkout_onepage_success.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/layout/default.xml b/app/code/Magento/Checkout/view/frontend/layout/default.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/page_layout/checkout.xml b/app/code/Magento/Checkout/view/frontend/page_layout/checkout.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/requirejs-config.js b/app/code/Magento/Checkout/view/frontend/requirejs-config.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/templates/button.phtml b/app/code/Magento/Checkout/view/frontend/templates/button.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/templates/cart.phtml b/app/code/Magento/Checkout/view/frontend/templates/cart.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/templates/cart/additional/info.phtml b/app/code/Magento/Checkout/view/frontend/templates/cart/additional/info.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/templates/cart/coupon.phtml b/app/code/Magento/Checkout/view/frontend/templates/cart/coupon.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/templates/cart/form.phtml b/app/code/Magento/Checkout/view/frontend/templates/cart/form.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/templates/cart/item/configure/updatecart.phtml b/app/code/Magento/Checkout/view/frontend/templates/cart/item/configure/updatecart.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/templates/cart/item/default.phtml b/app/code/Magento/Checkout/view/frontend/templates/cart/item/default.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/templates/cart/item/price/sidebar.phtml b/app/code/Magento/Checkout/view/frontend/templates/cart/item/price/sidebar.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/templates/cart/item/renderer/actions/edit.phtml b/app/code/Magento/Checkout/view/frontend/templates/cart/item/renderer/actions/edit.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/templates/cart/item/renderer/actions/remove.phtml b/app/code/Magento/Checkout/view/frontend/templates/cart/item/renderer/actions/remove.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/templates/cart/methods.phtml b/app/code/Magento/Checkout/view/frontend/templates/cart/methods.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/templates/cart/minicart.phtml b/app/code/Magento/Checkout/view/frontend/templates/cart/minicart.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/templates/cart/noItems.phtml b/app/code/Magento/Checkout/view/frontend/templates/cart/noItems.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/templates/cart/shipping.phtml b/app/code/Magento/Checkout/view/frontend/templates/cart/shipping.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/templates/cart/totals.phtml b/app/code/Magento/Checkout/view/frontend/templates/cart/totals.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/templates/item/price/row.phtml b/app/code/Magento/Checkout/view/frontend/templates/item/price/row.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/templates/item/price/unit.phtml b/app/code/Magento/Checkout/view/frontend/templates/item/price/unit.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/templates/js/components.phtml b/app/code/Magento/Checkout/view/frontend/templates/js/components.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/templates/onepage.phtml b/app/code/Magento/Checkout/view/frontend/templates/onepage.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/templates/onepage/failure.phtml b/app/code/Magento/Checkout/view/frontend/templates/onepage/failure.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/templates/onepage/link.phtml b/app/code/Magento/Checkout/view/frontend/templates/onepage/link.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/templates/onepage/review/item.phtml b/app/code/Magento/Checkout/view/frontend/templates/onepage/review/item.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/templates/onepage/review/item/price/row_excl_tax.phtml b/app/code/Magento/Checkout/view/frontend/templates/onepage/review/item/price/row_excl_tax.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/templates/onepage/review/item/price/row_incl_tax.phtml b/app/code/Magento/Checkout/view/frontend/templates/onepage/review/item/price/row_incl_tax.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/templates/onepage/review/item/price/unit_excl_tax.phtml b/app/code/Magento/Checkout/view/frontend/templates/onepage/review/item/price/unit_excl_tax.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/templates/onepage/review/item/price/unit_incl_tax.phtml b/app/code/Magento/Checkout/view/frontend/templates/onepage/review/item/price/unit_incl_tax.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/templates/registration.phtml b/app/code/Magento/Checkout/view/frontend/templates/registration.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/templates/shipping/price.phtml b/app/code/Magento/Checkout/view/frontend/templates/shipping/price.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/templates/success.phtml b/app/code/Magento/Checkout/view/frontend/templates/success.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/templates/total/default.phtml b/app/code/Magento/Checkout/view/frontend/templates/total/default.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/cvv.png b/app/code/Magento/Checkout/view/frontend/web/cvv.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/action/create-billing-address.js b/app/code/Magento/Checkout/view/frontend/web/js/action/create-billing-address.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/action/create-shipping-address.js b/app/code/Magento/Checkout/view/frontend/web/js/action/create-shipping-address.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/action/get-payment-information.js b/app/code/Magento/Checkout/view/frontend/web/js/action/get-payment-information.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/action/get-totals.js b/app/code/Magento/Checkout/view/frontend/web/js/action/get-totals.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/action/place-order.js b/app/code/Magento/Checkout/view/frontend/web/js/action/place-order.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/action/redirect-on-success.js b/app/code/Magento/Checkout/view/frontend/web/js/action/redirect-on-success.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/action/select-billing-address.js b/app/code/Magento/Checkout/view/frontend/web/js/action/select-billing-address.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/action/select-payment-method.js b/app/code/Magento/Checkout/view/frontend/web/js/action/select-payment-method.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/action/select-shipping-address.js b/app/code/Magento/Checkout/view/frontend/web/js/action/select-shipping-address.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/action/select-shipping-method.js b/app/code/Magento/Checkout/view/frontend/web/js/action/select-shipping-method.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/action/set-billing-address.js b/app/code/Magento/Checkout/view/frontend/web/js/action/set-billing-address.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/action/set-payment-information.js b/app/code/Magento/Checkout/view/frontend/web/js/action/set-payment-information.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/action/set-shipping-information.js b/app/code/Magento/Checkout/view/frontend/web/js/action/set-shipping-information.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/checkout-data.js b/app/code/Magento/Checkout/view/frontend/web/js/checkout-data.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/checkout-loader.js b/app/code/Magento/Checkout/view/frontend/web/js/checkout-loader.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/discount-codes.js b/app/code/Magento/Checkout/view/frontend/web/js/discount-codes.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/address-converter.js b/app/code/Magento/Checkout/view/frontend/web/js/model/address-converter.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/authentication-messages.js b/app/code/Magento/Checkout/view/frontend/web/js/model/authentication-messages.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/cart/cache.js b/app/code/Magento/Checkout/view/frontend/web/js/model/cart/cache.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/cart/estimate-service.js b/app/code/Magento/Checkout/view/frontend/web/js/model/cart/estimate-service.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/cart/totals-processor/default.js b/app/code/Magento/Checkout/view/frontend/web/js/model/cart/totals-processor/default.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/checkout-data-resolver.js b/app/code/Magento/Checkout/view/frontend/web/js/model/checkout-data-resolver.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/customer-email-validator.js b/app/code/Magento/Checkout/view/frontend/web/js/model/customer-email-validator.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/default-validation-rules.js b/app/code/Magento/Checkout/view/frontend/web/js/model/default-validation-rules.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/default-validator.js b/app/code/Magento/Checkout/view/frontend/web/js/model/default-validator.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/error-processor.js b/app/code/Magento/Checkout/view/frontend/web/js/model/error-processor.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/full-screen-loader.js b/app/code/Magento/Checkout/view/frontend/web/js/model/full-screen-loader.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/new-customer-address.js b/app/code/Magento/Checkout/view/frontend/web/js/model/new-customer-address.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/payment-service.js b/app/code/Magento/Checkout/view/frontend/web/js/model/payment-service.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/payment/additional-validators.js b/app/code/Magento/Checkout/view/frontend/web/js/model/payment/additional-validators.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/payment/method-converter.js b/app/code/Magento/Checkout/view/frontend/web/js/model/payment/method-converter.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/payment/method-group.js b/app/code/Magento/Checkout/view/frontend/web/js/model/payment/method-group.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/payment/method-list.js b/app/code/Magento/Checkout/view/frontend/web/js/model/payment/method-list.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/payment/renderer-list.js b/app/code/Magento/Checkout/view/frontend/web/js/model/payment/renderer-list.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/place-order.js b/app/code/Magento/Checkout/view/frontend/web/js/model/place-order.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/postcode-validator.js b/app/code/Magento/Checkout/view/frontend/web/js/model/postcode-validator.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/quote.js b/app/code/Magento/Checkout/view/frontend/web/js/model/quote.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/resource-url-manager.js b/app/code/Magento/Checkout/view/frontend/web/js/model/resource-url-manager.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-address/form-popup-state.js b/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-address/form-popup-state.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-rate-processor/customer-address.js b/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-rate-processor/customer-address.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-rate-processor/new-address.js b/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-rate-processor/new-address.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-rate-registry.js b/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-rate-registry.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-rate-service.js b/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-rate-service.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-rates-validation-rules.js b/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-rates-validation-rules.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-rates-validator.js b/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-rates-validator.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-save-processor.js b/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-save-processor.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-save-processor/default.js b/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-save-processor/default.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-save-processor/payload-extender.js b/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-save-processor/payload-extender.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-service.js b/app/code/Magento/Checkout/view/frontend/web/js/model/shipping-service.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/sidebar.js b/app/code/Magento/Checkout/view/frontend/web/js/model/sidebar.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/step-navigator.js b/app/code/Magento/Checkout/view/frontend/web/js/model/step-navigator.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/totals.js b/app/code/Magento/Checkout/view/frontend/web/js/model/totals.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/model/url-builder.js b/app/code/Magento/Checkout/view/frontend/web/js/model/url-builder.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/proceed-to-checkout.js b/app/code/Magento/Checkout/view/frontend/web/js/proceed-to-checkout.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/region-updater.js b/app/code/Magento/Checkout/view/frontend/web/js/region-updater.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/shopping-cart.js b/app/code/Magento/Checkout/view/frontend/web/js/shopping-cart.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/sidebar.js b/app/code/Magento/Checkout/view/frontend/web/js/sidebar.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/authentication-messages.js b/app/code/Magento/Checkout/view/frontend/web/js/view/authentication-messages.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/authentication.js b/app/code/Magento/Checkout/view/frontend/web/js/view/authentication.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/beforePlaceOrder.js b/app/code/Magento/Checkout/view/frontend/web/js/view/beforePlaceOrder.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/billing-address.js b/app/code/Magento/Checkout/view/frontend/web/js/view/billing-address.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/cart/shipping-estimation.js b/app/code/Magento/Checkout/view/frontend/web/js/view/cart/shipping-estimation.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/cart/shipping-rates.js b/app/code/Magento/Checkout/view/frontend/web/js/view/cart/shipping-rates.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/cart/totals.js b/app/code/Magento/Checkout/view/frontend/web/js/view/cart/totals.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/cart/totals/shipping.js b/app/code/Magento/Checkout/view/frontend/web/js/view/cart/totals/shipping.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/checkout/minicart/subtotal/totals.js b/app/code/Magento/Checkout/view/frontend/web/js/view/checkout/minicart/subtotal/totals.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/configure/product-customer-data.js b/app/code/Magento/Checkout/view/frontend/web/js/view/configure/product-customer-data.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/estimation.js b/app/code/Magento/Checkout/view/frontend/web/js/view/estimation.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/form/element/email.js b/app/code/Magento/Checkout/view/frontend/web/js/view/form/element/email.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/minicart.js b/app/code/Magento/Checkout/view/frontend/web/js/view/minicart.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/payment.js b/app/code/Magento/Checkout/view/frontend/web/js/view/payment.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/payment/default.js b/app/code/Magento/Checkout/view/frontend/web/js/view/payment/default.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/payment/email-validator.js b/app/code/Magento/Checkout/view/frontend/web/js/view/payment/email-validator.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/payment/list.js b/app/code/Magento/Checkout/view/frontend/web/js/view/payment/list.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/progress-bar.js b/app/code/Magento/Checkout/view/frontend/web/js/view/progress-bar.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/registration.js b/app/code/Magento/Checkout/view/frontend/web/js/view/registration.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/review/actions.js b/app/code/Magento/Checkout/view/frontend/web/js/view/review/actions.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/review/actions/default.js b/app/code/Magento/Checkout/view/frontend/web/js/view/review/actions/default.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/shipping-address/address-renderer/default.js b/app/code/Magento/Checkout/view/frontend/web/js/view/shipping-address/address-renderer/default.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/shipping-address/list.js b/app/code/Magento/Checkout/view/frontend/web/js/view/shipping-address/list.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/shipping-information.js b/app/code/Magento/Checkout/view/frontend/web/js/view/shipping-information.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/shipping-information/address-renderer/default.js b/app/code/Magento/Checkout/view/frontend/web/js/view/shipping-information/address-renderer/default.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/shipping-information/list.js b/app/code/Magento/Checkout/view/frontend/web/js/view/shipping-information/list.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/shipping.js b/app/code/Magento/Checkout/view/frontend/web/js/view/shipping.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/sidebar.js b/app/code/Magento/Checkout/view/frontend/web/js/view/sidebar.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/summary.js b/app/code/Magento/Checkout/view/frontend/web/js/view/summary.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/summary/abstract-total.js b/app/code/Magento/Checkout/view/frontend/web/js/view/summary/abstract-total.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/summary/cart-items.js b/app/code/Magento/Checkout/view/frontend/web/js/view/summary/cart-items.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/summary/grand-total.js b/app/code/Magento/Checkout/view/frontend/web/js/view/summary/grand-total.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/summary/item/details.js b/app/code/Magento/Checkout/view/frontend/web/js/view/summary/item/details.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/summary/item/details/subtotal.js b/app/code/Magento/Checkout/view/frontend/web/js/view/summary/item/details/subtotal.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/summary/item/details/thumbnail.js b/app/code/Magento/Checkout/view/frontend/web/js/view/summary/item/details/thumbnail.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/summary/shipping.js b/app/code/Magento/Checkout/view/frontend/web/js/view/summary/shipping.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/summary/subtotal.js b/app/code/Magento/Checkout/view/frontend/web/js/view/summary/subtotal.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/js/view/summary/totals.js b/app/code/Magento/Checkout/view/frontend/web/js/view/summary/totals.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/template/authentication.html b/app/code/Magento/Checkout/view/frontend/web/template/authentication.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/template/billing-address.html b/app/code/Magento/Checkout/view/frontend/web/template/billing-address.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/template/billing-address/details.html b/app/code/Magento/Checkout/view/frontend/web/template/billing-address/details.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/template/billing-address/form.html b/app/code/Magento/Checkout/view/frontend/web/template/billing-address/form.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/template/billing-address/list.html b/app/code/Magento/Checkout/view/frontend/web/template/billing-address/list.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/template/cart/shipping-estimation.html b/app/code/Magento/Checkout/view/frontend/web/template/cart/shipping-estimation.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/template/cart/shipping-rates.html b/app/code/Magento/Checkout/view/frontend/web/template/cart/shipping-rates.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/template/cart/totals.html b/app/code/Magento/Checkout/view/frontend/web/template/cart/totals.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/template/cart/totals/grand-total.html b/app/code/Magento/Checkout/view/frontend/web/template/cart/totals/grand-total.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/template/cart/totals/shipping.html b/app/code/Magento/Checkout/view/frontend/web/template/cart/totals/shipping.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/template/cart/totals/subtotal.html b/app/code/Magento/Checkout/view/frontend/web/template/cart/totals/subtotal.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/template/estimation.html b/app/code/Magento/Checkout/view/frontend/web/template/estimation.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/template/form/element/email.html b/app/code/Magento/Checkout/view/frontend/web/template/form/element/email.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/template/minicart/content.html b/app/code/Magento/Checkout/view/frontend/web/template/minicart/content.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/template/minicart/item/default.html b/app/code/Magento/Checkout/view/frontend/web/template/minicart/item/default.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/template/minicart/item/price.html b/app/code/Magento/Checkout/view/frontend/web/template/minicart/item/price.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/template/minicart/subtotal.html b/app/code/Magento/Checkout/view/frontend/web/template/minicart/subtotal.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/template/minicart/subtotal/totals.html b/app/code/Magento/Checkout/view/frontend/web/template/minicart/subtotal/totals.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/template/onepage.html b/app/code/Magento/Checkout/view/frontend/web/template/onepage.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/template/payment-methods/list.html b/app/code/Magento/Checkout/view/frontend/web/template/payment-methods/list.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/template/payment.html b/app/code/Magento/Checkout/view/frontend/web/template/payment.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/template/payment/before-place-order.html b/app/code/Magento/Checkout/view/frontend/web/template/payment/before-place-order.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/template/payment/generic-title.html b/app/code/Magento/Checkout/view/frontend/web/template/payment/generic-title.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/template/progress-bar.html b/app/code/Magento/Checkout/view/frontend/web/template/progress-bar.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/template/registration.html b/app/code/Magento/Checkout/view/frontend/web/template/registration.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/template/review/actions.html b/app/code/Magento/Checkout/view/frontend/web/template/review/actions.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/template/review/actions/default.html b/app/code/Magento/Checkout/view/frontend/web/template/review/actions/default.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/template/shipping-address/address-renderer/default.html b/app/code/Magento/Checkout/view/frontend/web/template/shipping-address/address-renderer/default.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/template/shipping-address/form.html b/app/code/Magento/Checkout/view/frontend/web/template/shipping-address/form.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/template/shipping-address/list.html b/app/code/Magento/Checkout/view/frontend/web/template/shipping-address/list.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/template/shipping-address/shipping-method-item.html b/app/code/Magento/Checkout/view/frontend/web/template/shipping-address/shipping-method-item.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/template/shipping-address/shipping-method-list.html b/app/code/Magento/Checkout/view/frontend/web/template/shipping-address/shipping-method-list.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/template/shipping-information.html b/app/code/Magento/Checkout/view/frontend/web/template/shipping-information.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/template/shipping-information/address-renderer/default.html b/app/code/Magento/Checkout/view/frontend/web/template/shipping-information/address-renderer/default.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/template/shipping-information/list.html b/app/code/Magento/Checkout/view/frontend/web/template/shipping-information/list.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/template/shipping.html b/app/code/Magento/Checkout/view/frontend/web/template/shipping.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/template/sidebar.html b/app/code/Magento/Checkout/view/frontend/web/template/sidebar.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/template/summary.html b/app/code/Magento/Checkout/view/frontend/web/template/summary.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/template/summary/cart-items.html b/app/code/Magento/Checkout/view/frontend/web/template/summary/cart-items.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/template/summary/grand-total.html b/app/code/Magento/Checkout/view/frontend/web/template/summary/grand-total.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/template/summary/item/details.html b/app/code/Magento/Checkout/view/frontend/web/template/summary/item/details.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/template/summary/item/details/subtotal.html b/app/code/Magento/Checkout/view/frontend/web/template/summary/item/details/subtotal.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/template/summary/item/details/thumbnail.html b/app/code/Magento/Checkout/view/frontend/web/template/summary/item/details/thumbnail.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/template/summary/shipping.html b/app/code/Magento/Checkout/view/frontend/web/template/summary/shipping.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/template/summary/subtotal.html b/app/code/Magento/Checkout/view/frontend/web/template/summary/subtotal.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Checkout/view/frontend/web/template/summary/totals.html b/app/code/Magento/Checkout/view/frontend/web/template/summary/totals.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/Api/CheckoutAgreementsRepositoryInterface.php b/app/code/Magento/CheckoutAgreements/Api/CheckoutAgreementsRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/Api/Data/AgreementInterface.php b/app/code/Magento/CheckoutAgreements/Api/Data/AgreementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/Block/Adminhtml/Agreement.php b/app/code/Magento/CheckoutAgreements/Block/Adminhtml/Agreement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/Block/Adminhtml/Agreement/Edit.php b/app/code/Magento/CheckoutAgreements/Block/Adminhtml/Agreement/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/Block/Adminhtml/Agreement/Edit/Form.php b/app/code/Magento/CheckoutAgreements/Block/Adminhtml/Agreement/Edit/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/Block/Adminhtml/Agreement/Grid.php b/app/code/Magento/CheckoutAgreements/Block/Adminhtml/Agreement/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/Block/Agreements.php b/app/code/Magento/CheckoutAgreements/Block/Agreements.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/Controller/Adminhtml/Agreement.php b/app/code/Magento/CheckoutAgreements/Controller/Adminhtml/Agreement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/Controller/Adminhtml/Agreement/Delete.php b/app/code/Magento/CheckoutAgreements/Controller/Adminhtml/Agreement/Delete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/Controller/Adminhtml/Agreement/Edit.php b/app/code/Magento/CheckoutAgreements/Controller/Adminhtml/Agreement/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/Controller/Adminhtml/Agreement/Index.php b/app/code/Magento/CheckoutAgreements/Controller/Adminhtml/Agreement/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/Controller/Adminhtml/Agreement/NewAction.php b/app/code/Magento/CheckoutAgreements/Controller/Adminhtml/Agreement/NewAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/Controller/Adminhtml/Agreement/Save.php b/app/code/Magento/CheckoutAgreements/Controller/Adminhtml/Agreement/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/LICENSE.txt b/app/code/Magento/CheckoutAgreements/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/LICENSE_AFL.txt b/app/code/Magento/CheckoutAgreements/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/Model/Agreement.php b/app/code/Magento/CheckoutAgreements/Model/Agreement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/Model/AgreementModeOptions.php b/app/code/Magento/CheckoutAgreements/Model/AgreementModeOptions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/Model/AgreementsConfigProvider.php b/app/code/Magento/CheckoutAgreements/Model/AgreementsConfigProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/Model/AgreementsProvider.php b/app/code/Magento/CheckoutAgreements/Model/AgreementsProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/Model/AgreementsProviderInterface.php b/app/code/Magento/CheckoutAgreements/Model/AgreementsProviderInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/Model/AgreementsValidator.php b/app/code/Magento/CheckoutAgreements/Model/AgreementsValidator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/Model/Checkout/Plugin/GuestValidation.php b/app/code/Magento/CheckoutAgreements/Model/Checkout/Plugin/GuestValidation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/Model/Checkout/Plugin/Validation.php b/app/code/Magento/CheckoutAgreements/Model/Checkout/Plugin/Validation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/Model/CheckoutAgreementsRepository.php b/app/code/Magento/CheckoutAgreements/Model/CheckoutAgreementsRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/Model/ResourceModel/Agreement.php b/app/code/Magento/CheckoutAgreements/Model/ResourceModel/Agreement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/Model/ResourceModel/Agreement/Collection.php b/app/code/Magento/CheckoutAgreements/Model/ResourceModel/Agreement/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/README.md b/app/code/Magento/CheckoutAgreements/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/Setup/InstallSchema.php b/app/code/Magento/CheckoutAgreements/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/Setup/UpgradeSchema.php b/app/code/Magento/CheckoutAgreements/Setup/UpgradeSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/Test/Unit/Block/AgreementsTest.php b/app/code/Magento/CheckoutAgreements/Test/Unit/Block/AgreementsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/Test/Unit/Model/AgreementModeOptionsTest.php b/app/code/Magento/CheckoutAgreements/Test/Unit/Model/AgreementModeOptionsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/Test/Unit/Model/AgreementTest.php b/app/code/Magento/CheckoutAgreements/Test/Unit/Model/AgreementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/Test/Unit/Model/AgreementsConfigProviderTest.php b/app/code/Magento/CheckoutAgreements/Test/Unit/Model/AgreementsConfigProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/Test/Unit/Model/AgreementsProviderTest.php b/app/code/Magento/CheckoutAgreements/Test/Unit/Model/AgreementsProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/Test/Unit/Model/AgreementsValidatorTest.php b/app/code/Magento/CheckoutAgreements/Test/Unit/Model/AgreementsValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/Test/Unit/Model/Checkout/Plugin/GuestValidationTest.php b/app/code/Magento/CheckoutAgreements/Test/Unit/Model/Checkout/Plugin/GuestValidationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/Test/Unit/Model/Checkout/Plugin/ValidationTest.php b/app/code/Magento/CheckoutAgreements/Test/Unit/Model/Checkout/Plugin/ValidationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/Test/Unit/Model/CheckoutAgreementsRepositoryTest.php b/app/code/Magento/CheckoutAgreements/Test/Unit/Model/CheckoutAgreementsRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/composer.json b/app/code/Magento/CheckoutAgreements/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/etc/acl.xml b/app/code/Magento/CheckoutAgreements/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/etc/adminhtml/menu.xml b/app/code/Magento/CheckoutAgreements/etc/adminhtml/menu.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/etc/adminhtml/routes.xml b/app/code/Magento/CheckoutAgreements/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/etc/adminhtml/system.xml b/app/code/Magento/CheckoutAgreements/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/etc/di.xml b/app/code/Magento/CheckoutAgreements/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/etc/extension_attributes.xml b/app/code/Magento/CheckoutAgreements/etc/extension_attributes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/etc/frontend/di.xml b/app/code/Magento/CheckoutAgreements/etc/frontend/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/etc/module.xml b/app/code/Magento/CheckoutAgreements/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/etc/webapi.xml b/app/code/Magento/CheckoutAgreements/etc/webapi.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/i18n/en_US.csv b/app/code/Magento/CheckoutAgreements/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/registration.php b/app/code/Magento/CheckoutAgreements/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/view/frontend/layout/checkout_index_index.xml b/app/code/Magento/CheckoutAgreements/view/frontend/layout/checkout_index_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/view/frontend/layout/multishipping_checkout_overview.xml b/app/code/Magento/CheckoutAgreements/view/frontend/layout/multishipping_checkout_overview.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/view/frontend/requirejs-config.js b/app/code/Magento/CheckoutAgreements/view/frontend/requirejs-config.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/view/frontend/templates/additional_agreements.phtml b/app/code/Magento/CheckoutAgreements/view/frontend/templates/additional_agreements.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/view/frontend/templates/agreements.phtml b/app/code/Magento/CheckoutAgreements/view/frontend/templates/agreements.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/view/frontend/templates/multishipping_agreements.phtml b/app/code/Magento/CheckoutAgreements/view/frontend/templates/multishipping_agreements.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/view/frontend/web/js/model/agreement-validator.js b/app/code/Magento/CheckoutAgreements/view/frontend/web/js/model/agreement-validator.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/view/frontend/web/js/model/agreements-assigner.js b/app/code/Magento/CheckoutAgreements/view/frontend/web/js/model/agreements-assigner.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/view/frontend/web/js/model/agreements-modal.js b/app/code/Magento/CheckoutAgreements/view/frontend/web/js/model/agreements-modal.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/view/frontend/web/js/model/place-order-mixin.js b/app/code/Magento/CheckoutAgreements/view/frontend/web/js/model/place-order-mixin.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/view/frontend/web/js/model/set-payment-information-mixin.js b/app/code/Magento/CheckoutAgreements/view/frontend/web/js/model/set-payment-information-mixin.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/view/frontend/web/js/view/agreement-validation.js b/app/code/Magento/CheckoutAgreements/view/frontend/web/js/view/agreement-validation.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/view/frontend/web/js/view/checkout-agreements.js b/app/code/Magento/CheckoutAgreements/view/frontend/web/js/view/checkout-agreements.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CheckoutAgreements/view/frontend/web/template/checkout/checkout-agreements.html b/app/code/Magento/CheckoutAgreements/view/frontend/web/template/checkout/checkout-agreements.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Api/BlockRepositoryInterface.php b/app/code/Magento/Cms/Api/BlockRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Api/Data/BlockInterface.php b/app/code/Magento/Cms/Api/Data/BlockInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Api/Data/BlockSearchResultsInterface.php b/app/code/Magento/Cms/Api/Data/BlockSearchResultsInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Api/Data/PageInterface.php b/app/code/Magento/Cms/Api/Data/PageInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Api/Data/PageSearchResultsInterface.php b/app/code/Magento/Cms/Api/Data/PageSearchResultsInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Api/GetUtilityPageIdentifiersInterface.php b/app/code/Magento/Cms/Api/GetUtilityPageIdentifiersInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Api/PageRepositoryInterface.php b/app/code/Magento/Cms/Api/PageRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Block/Adminhtml/Block.php b/app/code/Magento/Cms/Block/Adminhtml/Block.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Block/Adminhtml/Block/Edit/BackButton.php b/app/code/Magento/Cms/Block/Adminhtml/Block/Edit/BackButton.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Block/Adminhtml/Block/Edit/DeleteButton.php b/app/code/Magento/Cms/Block/Adminhtml/Block/Edit/DeleteButton.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Block/Adminhtml/Block/Edit/GenericButton.php b/app/code/Magento/Cms/Block/Adminhtml/Block/Edit/GenericButton.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Block/Adminhtml/Block/Edit/ResetButton.php b/app/code/Magento/Cms/Block/Adminhtml/Block/Edit/ResetButton.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Block/Adminhtml/Block/Edit/SaveAndContinueButton.php b/app/code/Magento/Cms/Block/Adminhtml/Block/Edit/SaveAndContinueButton.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Block/Adminhtml/Block/Edit/SaveButton.php b/app/code/Magento/Cms/Block/Adminhtml/Block/Edit/SaveButton.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Block/Adminhtml/Block/Widget/Chooser.php b/app/code/Magento/Cms/Block/Adminhtml/Block/Widget/Chooser.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Block/Adminhtml/Page.php b/app/code/Magento/Cms/Block/Adminhtml/Page.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Block/Adminhtml/Page/Edit/BackButton.php b/app/code/Magento/Cms/Block/Adminhtml/Page/Edit/BackButton.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Block/Adminhtml/Page/Edit/DeleteButton.php b/app/code/Magento/Cms/Block/Adminhtml/Page/Edit/DeleteButton.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Block/Adminhtml/Page/Edit/GenericButton.php b/app/code/Magento/Cms/Block/Adminhtml/Page/Edit/GenericButton.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Block/Adminhtml/Page/Edit/ResetButton.php b/app/code/Magento/Cms/Block/Adminhtml/Page/Edit/ResetButton.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Block/Adminhtml/Page/Edit/SaveAndContinueButton.php b/app/code/Magento/Cms/Block/Adminhtml/Page/Edit/SaveAndContinueButton.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Block/Adminhtml/Page/Edit/SaveButton.php b/app/code/Magento/Cms/Block/Adminhtml/Page/Edit/SaveButton.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Block/Adminhtml/Page/Grid.php b/app/code/Magento/Cms/Block/Adminhtml/Page/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Block/Adminhtml/Page/Grid/Renderer/Action.php b/app/code/Magento/Cms/Block/Adminhtml/Page/Grid/Renderer/Action.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Block/Adminhtml/Page/Grid/Renderer/Action/UrlBuilder.php b/app/code/Magento/Cms/Block/Adminhtml/Page/Grid/Renderer/Action/UrlBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Block/Adminhtml/Page/Widget/Chooser.php b/app/code/Magento/Cms/Block/Adminhtml/Page/Widget/Chooser.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Block/Adminhtml/Wysiwyg/Images/Content.php b/app/code/Magento/Cms/Block/Adminhtml/Wysiwyg/Images/Content.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Block/Adminhtml/Wysiwyg/Images/Content/Files.php b/app/code/Magento/Cms/Block/Adminhtml/Wysiwyg/Images/Content/Files.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Block/Adminhtml/Wysiwyg/Images/Content/Newfolder.php b/app/code/Magento/Cms/Block/Adminhtml/Wysiwyg/Images/Content/Newfolder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Block/Adminhtml/Wysiwyg/Images/Content/Uploader.php b/app/code/Magento/Cms/Block/Adminhtml/Wysiwyg/Images/Content/Uploader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Block/Adminhtml/Wysiwyg/Images/Tree.php b/app/code/Magento/Cms/Block/Adminhtml/Wysiwyg/Images/Tree.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Block/Block.php b/app/code/Magento/Cms/Block/Block.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Block/Page.php b/app/code/Magento/Cms/Block/Page.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Block/Widget/Block.php b/app/code/Magento/Cms/Block/Widget/Block.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Block/Widget/Page/Link.php b/app/code/Magento/Cms/Block/Widget/Page/Link.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Block.php b/app/code/Magento/Cms/Controller/Adminhtml/Block.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Block/Delete.php b/app/code/Magento/Cms/Controller/Adminhtml/Block/Delete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Block/Edit.php b/app/code/Magento/Cms/Controller/Adminhtml/Block/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Block/Index.php b/app/code/Magento/Cms/Controller/Adminhtml/Block/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Block/InlineEdit.php b/app/code/Magento/Cms/Controller/Adminhtml/Block/InlineEdit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Block/MassDelete.php b/app/code/Magento/Cms/Controller/Adminhtml/Block/MassDelete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Block/NewAction.php b/app/code/Magento/Cms/Controller/Adminhtml/Block/NewAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Block/Save.php b/app/code/Magento/Cms/Controller/Adminhtml/Block/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Block/Widget/Chooser.php b/app/code/Magento/Cms/Controller/Adminhtml/Block/Widget/Chooser.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Page/Delete.php b/app/code/Magento/Cms/Controller/Adminhtml/Page/Delete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Page/Edit.php b/app/code/Magento/Cms/Controller/Adminhtml/Page/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Page/Index.php b/app/code/Magento/Cms/Controller/Adminhtml/Page/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Page/InlineEdit.php b/app/code/Magento/Cms/Controller/Adminhtml/Page/InlineEdit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Page/MassDelete.php b/app/code/Magento/Cms/Controller/Adminhtml/Page/MassDelete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Page/MassDisable.php b/app/code/Magento/Cms/Controller/Adminhtml/Page/MassDisable.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Page/MassEnable.php b/app/code/Magento/Cms/Controller/Adminhtml/Page/MassEnable.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Page/NewAction.php b/app/code/Magento/Cms/Controller/Adminhtml/Page/NewAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Page/PostDataProcessor.php b/app/code/Magento/Cms/Controller/Adminhtml/Page/PostDataProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Page/Save.php b/app/code/Magento/Cms/Controller/Adminhtml/Page/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Page/Widget/Chooser.php b/app/code/Magento/Cms/Controller/Adminhtml/Page/Widget/Chooser.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Directive.php b/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Directive.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images.php b/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/Contents.php b/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/Contents.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/DeleteFiles.php b/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/DeleteFiles.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/DeleteFolder.php b/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/DeleteFolder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/Index.php b/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/NewFolder.php b/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/NewFolder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/OnInsert.php b/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/OnInsert.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/Thumbnail.php b/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/Thumbnail.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/TreeJson.php b/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/TreeJson.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/Upload.php b/app/code/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/Upload.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Controller/Index/DefaultIndex.php b/app/code/Magento/Cms/Controller/Index/DefaultIndex.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Controller/Index/DefaultNoRoute.php b/app/code/Magento/Cms/Controller/Index/DefaultNoRoute.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Controller/Index/Index.php b/app/code/Magento/Cms/Controller/Index/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Controller/Noroute/Index.php b/app/code/Magento/Cms/Controller/Noroute/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Controller/Page/View.php b/app/code/Magento/Cms/Controller/Page/View.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Controller/Router.php b/app/code/Magento/Cms/Controller/Router.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Helper/Page.php b/app/code/Magento/Cms/Helper/Page.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Helper/Wysiwyg/Images.php b/app/code/Magento/Cms/Helper/Wysiwyg/Images.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/LICENSE.txt b/app/code/Magento/Cms/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/LICENSE_AFL.txt b/app/code/Magento/Cms/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/BlockStoreFilter.php b/app/code/Magento/Cms/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/BlockStoreFilter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/PageStoreFilter.php b/app/code/Magento/Cms/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/PageStoreFilter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Model/Block.php b/app/code/Magento/Cms/Model/Block.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Model/Block/DataProvider.php b/app/code/Magento/Cms/Model/Block/DataProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Model/Block/Source/IsActive.php b/app/code/Magento/Cms/Model/Block/Source/IsActive.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Model/BlockRepository.php b/app/code/Magento/Cms/Model/BlockRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Model/Config/Source/Page.php b/app/code/Magento/Cms/Model/Config/Source/Page.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Model/Config/Source/Wysiwyg/Enabled.php b/app/code/Magento/Cms/Model/Config/Source/Wysiwyg/Enabled.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Model/GetUtilityPageIdentifiers.php b/app/code/Magento/Cms/Model/GetUtilityPageIdentifiers.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Model/Page.php b/app/code/Magento/Cms/Model/Page.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Model/Page/DataProvider.php b/app/code/Magento/Cms/Model/Page/DataProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Model/Page/DomValidationState.php b/app/code/Magento/Cms/Model/Page/DomValidationState.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Model/Page/Source/CustomLayout.php b/app/code/Magento/Cms/Model/Page/Source/CustomLayout.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Model/Page/Source/IsActive.php b/app/code/Magento/Cms/Model/Page/Source/IsActive.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Model/Page/Source/IsActiveFilter.php b/app/code/Magento/Cms/Model/Page/Source/IsActiveFilter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Model/Page/Source/PageLayout.php b/app/code/Magento/Cms/Model/Page/Source/PageLayout.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Model/Page/Source/PageLayoutFilter.php b/app/code/Magento/Cms/Model/Page/Source/PageLayoutFilter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Model/Page/Source/Theme.php b/app/code/Magento/Cms/Model/Page/Source/Theme.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Model/PageRepository.php b/app/code/Magento/Cms/Model/PageRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Model/ResourceModel/AbstractCollection.php b/app/code/Magento/Cms/Model/ResourceModel/AbstractCollection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Model/ResourceModel/Block.php b/app/code/Magento/Cms/Model/ResourceModel/Block.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Model/ResourceModel/Block/Collection.php b/app/code/Magento/Cms/Model/ResourceModel/Block/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Model/ResourceModel/Block/Grid/Collection.php b/app/code/Magento/Cms/Model/ResourceModel/Block/Grid/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Model/ResourceModel/Block/Relation/Store/ReadHandler.php b/app/code/Magento/Cms/Model/ResourceModel/Block/Relation/Store/ReadHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Model/ResourceModel/Block/Relation/Store/SaveHandler.php b/app/code/Magento/Cms/Model/ResourceModel/Block/Relation/Store/SaveHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Model/ResourceModel/Page.php b/app/code/Magento/Cms/Model/ResourceModel/Page.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Model/ResourceModel/Page/Collection.php b/app/code/Magento/Cms/Model/ResourceModel/Page/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Model/ResourceModel/Page/Grid/Collection.php b/app/code/Magento/Cms/Model/ResourceModel/Page/Grid/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Model/ResourceModel/Page/Relation/Store/ReadHandler.php b/app/code/Magento/Cms/Model/ResourceModel/Page/Relation/Store/ReadHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Model/ResourceModel/Page/Relation/Store/SaveHandler.php b/app/code/Magento/Cms/Model/ResourceModel/Page/Relation/Store/SaveHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Model/Template/Filter.php b/app/code/Magento/Cms/Model/Template/Filter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Model/Template/FilterProvider.php b/app/code/Magento/Cms/Model/Template/FilterProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Model/Wysiwyg/Config.php b/app/code/Magento/Cms/Model/Wysiwyg/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Model/Wysiwyg/Images/Storage.php b/app/code/Magento/Cms/Model/Wysiwyg/Images/Storage.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Model/Wysiwyg/Images/Storage/Collection.php b/app/code/Magento/Cms/Model/Wysiwyg/Images/Storage/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Observer/NoCookiesObserver.php b/app/code/Magento/Cms/Observer/NoCookiesObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Observer/NoRouteObserver.php b/app/code/Magento/Cms/Observer/NoRouteObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/README.md b/app/code/Magento/Cms/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Setup/ContentConverter.php b/app/code/Magento/Cms/Setup/ContentConverter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Setup/InstallData.php b/app/code/Magento/Cms/Setup/InstallData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Setup/InstallSchema.php b/app/code/Magento/Cms/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Setup/UpgradeData.php b/app/code/Magento/Cms/Setup/UpgradeData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Setup/UpgradeSchema.php b/app/code/Magento/Cms/Setup/UpgradeSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Block/Adminhtml/Block/Widget/ChooserTest.php b/app/code/Magento/Cms/Test/Unit/Block/Adminhtml/Block/Widget/ChooserTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Block/Adminhtml/Page/Widget/ChooserTest.php b/app/code/Magento/Cms/Test/Unit/Block/Adminhtml/Page/Widget/ChooserTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Block/BlockTest.php b/app/code/Magento/Cms/Test/Unit/Block/BlockTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Block/PageTest.php b/app/code/Magento/Cms/Test/Unit/Block/PageTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Block/Widget/Page/LinkTest.php b/app/code/Magento/Cms/Test/Unit/Block/Widget/Page/LinkTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/AbstractMassActionTest.php b/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/AbstractMassActionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Block/DeleteTest.php b/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Block/DeleteTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Block/EditTest.php b/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Block/EditTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Block/MassDeleteTest.php b/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Block/MassDeleteTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Block/SaveTest.php b/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Block/SaveTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Page/DeleteTest.php b/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Page/DeleteTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Page/EditTest.php b/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Page/EditTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Page/InlineEditTest.php b/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Page/InlineEditTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Page/MassDeleteTest.php b/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Page/MassDeleteTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Page/MassDisableTest.php b/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Page/MassDisableTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Page/MassEnableTest.php b/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Page/MassEnableTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Page/SaveTest.php b/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Page/SaveTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Wysiwyg/DirectiveTest.php b/app/code/Magento/Cms/Test/Unit/Controller/Adminhtml/Wysiwyg/DirectiveTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Controller/Block/InlineEditTest.php b/app/code/Magento/Cms/Test/Unit/Controller/Block/InlineEditTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Controller/Index/IndexTest.php b/app/code/Magento/Cms/Test/Unit/Controller/Index/IndexTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Controller/Noroute/IndexTest.php b/app/code/Magento/Cms/Test/Unit/Controller/Noroute/IndexTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Controller/Page/PostDataProcessorTest.php b/app/code/Magento/Cms/Test/Unit/Controller/Page/PostDataProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Controller/Page/ViewTest.php b/app/code/Magento/Cms/Test/Unit/Controller/Page/ViewTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Controller/RouterTest.php b/app/code/Magento/Cms/Test/Unit/Controller/RouterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Helper/PageTest.php b/app/code/Magento/Cms/Test/Unit/Helper/PageTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Helper/Wysiwyg/ImagesTest.php b/app/code/Magento/Cms/Test/Unit/Helper/Wysiwyg/ImagesTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/BlockStoreFilterTest.php b/app/code/Magento/Cms/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/BlockStoreFilterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/PageStoreFilterTest.php b/app/code/Magento/Cms/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/PageStoreFilterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Model/Block/Source/IsActiveTest.php b/app/code/Magento/Cms/Test/Unit/Model/Block/Source/IsActiveTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Model/BlockRepositoryTest.php b/app/code/Magento/Cms/Test/Unit/Model/BlockRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Model/Config/Source/PageTest.php b/app/code/Magento/Cms/Test/Unit/Model/Config/Source/PageTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Model/Page/Source/CustomLayoutTest.php b/app/code/Magento/Cms/Test/Unit/Model/Page/Source/CustomLayoutTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Model/Page/Source/IsActiveFilterTest.php b/app/code/Magento/Cms/Test/Unit/Model/Page/Source/IsActiveFilterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Model/Page/Source/IsActiveTest.php b/app/code/Magento/Cms/Test/Unit/Model/Page/Source/IsActiveTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Model/Page/Source/PageLayoutFilterTest.php b/app/code/Magento/Cms/Test/Unit/Model/Page/Source/PageLayoutFilterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Model/Page/Source/PageLayoutTest.php b/app/code/Magento/Cms/Test/Unit/Model/Page/Source/PageLayoutTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Model/Page/Source/ThemeTest.php b/app/code/Magento/Cms/Test/Unit/Model/Page/Source/ThemeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Model/PageRepositoryTest.php b/app/code/Magento/Cms/Test/Unit/Model/PageRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Model/PageTest.php b/app/code/Magento/Cms/Test/Unit/Model/PageTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/AbstractCollectionTest.php b/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/AbstractCollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Block/CollectionTest.php b/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Block/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Block/Relation/Store/ReadHandlerTest.php b/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Block/Relation/Store/ReadHandlerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Block/Relation/Store/SaveHandlerTest.php b/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Block/Relation/Store/SaveHandlerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Page/CollectionTest.php b/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Page/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Page/Grid/CollectionTest.php b/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Page/Grid/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Page/Relation/Store/ReadHandlerTest.php b/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Page/Relation/Store/ReadHandlerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Page/Relation/Store/SaveHandlerTest.php b/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/Page/Relation/Store/SaveHandlerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/PageTest.php b/app/code/Magento/Cms/Test/Unit/Model/ResourceModel/PageTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Model/Template/FilterProviderTest.php b/app/code/Magento/Cms/Test/Unit/Model/Template/FilterProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Model/Template/FilterTest.php b/app/code/Magento/Cms/Test/Unit/Model/Template/FilterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Model/Wysiwyg/ConfigTest.php b/app/code/Magento/Cms/Test/Unit/Model/Wysiwyg/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Model/Wysiwyg/Images/StorageTest.php b/app/code/Magento/Cms/Test/Unit/Model/Wysiwyg/Images/StorageTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Observer/NoCookiesObserverTest.php b/app/code/Magento/Cms/Test/Unit/Observer/NoCookiesObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Observer/NoRouteObserverTest.php b/app/code/Magento/Cms/Test/Unit/Observer/NoRouteObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Ui/Component/Listing/Column/BlockActionsTest.php b/app/code/Magento/Cms/Test/Unit/Ui/Component/Listing/Column/BlockActionsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Ui/Component/Listing/Column/Cms/OptionsTest.php b/app/code/Magento/Cms/Test/Unit/Ui/Component/Listing/Column/Cms/OptionsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Ui/Component/Listing/Column/PageActionsTest.php b/app/code/Magento/Cms/Test/Unit/Ui/Component/Listing/Column/PageActionsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Test/Unit/Ui/Component/Listing/DataProviderTest.php b/app/code/Magento/Cms/Test/Unit/Ui/Component/Listing/DataProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Ui/Component/DataProvider.php b/app/code/Magento/Cms/Ui/Component/DataProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Ui/Component/Listing/Column/BlockActions.php b/app/code/Magento/Cms/Ui/Component/Listing/Column/BlockActions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Ui/Component/Listing/Column/Cms/Options.php b/app/code/Magento/Cms/Ui/Component/Listing/Column/Cms/Options.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/Ui/Component/Listing/Column/PageActions.php b/app/code/Magento/Cms/Ui/Component/Listing/Column/PageActions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/composer.json b/app/code/Magento/Cms/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/etc/acl.xml b/app/code/Magento/Cms/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/etc/adminhtml/di.xml b/app/code/Magento/Cms/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/etc/adminhtml/menu.xml b/app/code/Magento/Cms/etc/adminhtml/menu.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/etc/adminhtml/routes.xml b/app/code/Magento/Cms/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/etc/adminhtml/system.xml b/app/code/Magento/Cms/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/etc/config.xml b/app/code/Magento/Cms/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/etc/di.xml b/app/code/Magento/Cms/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/etc/events.xml b/app/code/Magento/Cms/etc/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/etc/frontend/di.xml b/app/code/Magento/Cms/etc/frontend/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/etc/frontend/events.xml b/app/code/Magento/Cms/etc/frontend/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/etc/frontend/page_types.xml b/app/code/Magento/Cms/etc/frontend/page_types.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/etc/frontend/routes.xml b/app/code/Magento/Cms/etc/frontend/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/etc/module.xml b/app/code/Magento/Cms/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/etc/mview.xml b/app/code/Magento/Cms/etc/mview.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/etc/webapi.xml b/app/code/Magento/Cms/etc/webapi.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/etc/widget.xml b/app/code/Magento/Cms/etc/widget.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/i18n/en_US.csv b/app/code/Magento/Cms/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/registration.php b/app/code/Magento/Cms/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/view/adminhtml/layout/cms_block_edit.xml b/app/code/Magento/Cms/view/adminhtml/layout/cms_block_edit.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/view/adminhtml/layout/cms_block_index.xml b/app/code/Magento/Cms/view/adminhtml/layout/cms_block_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/view/adminhtml/layout/cms_block_new.xml b/app/code/Magento/Cms/view/adminhtml/layout/cms_block_new.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/view/adminhtml/layout/cms_page_edit.xml b/app/code/Magento/Cms/view/adminhtml/layout/cms_page_edit.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/view/adminhtml/layout/cms_page_index.xml b/app/code/Magento/Cms/view/adminhtml/layout/cms_page_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/view/adminhtml/layout/cms_page_new.xml b/app/code/Magento/Cms/view/adminhtml/layout/cms_page_new.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/view/adminhtml/layout/cms_wysiwyg_images_contents.xml b/app/code/Magento/Cms/view/adminhtml/layout/cms_wysiwyg_images_contents.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/view/adminhtml/layout/cms_wysiwyg_images_index.xml b/app/code/Magento/Cms/view/adminhtml/layout/cms_wysiwyg_images_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/view/adminhtml/requirejs-config.js b/app/code/Magento/Cms/view/adminhtml/requirejs-config.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/view/adminhtml/templates/browser/content.phtml b/app/code/Magento/Cms/view/adminhtml/templates/browser/content.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/view/adminhtml/templates/browser/content/files.phtml b/app/code/Magento/Cms/view/adminhtml/templates/browser/content/files.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/view/adminhtml/templates/browser/content/uploader.phtml b/app/code/Magento/Cms/view/adminhtml/templates/browser/content/uploader.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/view/adminhtml/templates/browser/tree.phtml b/app/code/Magento/Cms/view/adminhtml/templates/browser/tree.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/view/adminhtml/templates/page/edit/form/renderer/content.phtml b/app/code/Magento/Cms/view/adminhtml/templates/page/edit/form/renderer/content.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/view/adminhtml/ui_component/cms_block_form.xml b/app/code/Magento/Cms/view/adminhtml/ui_component/cms_block_form.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/view/adminhtml/ui_component/cms_block_listing.xml b/app/code/Magento/Cms/view/adminhtml/ui_component/cms_block_listing.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/view/adminhtml/ui_component/cms_page_form.xml b/app/code/Magento/Cms/view/adminhtml/ui_component/cms_page_form.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/view/adminhtml/ui_component/cms_page_listing.xml b/app/code/Magento/Cms/view/adminhtml/ui_component/cms_page_listing.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/view/adminhtml/web/images/placeholder_thumbnail.jpg b/app/code/Magento/Cms/view/adminhtml/web/images/placeholder_thumbnail.jpg
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/view/adminhtml/web/images/widget_block.png b/app/code/Magento/Cms/view/adminhtml/web/images/widget_block.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/view/adminhtml/web/images/widget_page_link.png b/app/code/Magento/Cms/view/adminhtml/web/images/widget_page_link.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/view/adminhtml/web/images/wysiwyg_skin_image.png b/app/code/Magento/Cms/view/adminhtml/web/images/wysiwyg_skin_image.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/view/adminhtml/web/js/folder-tree.js b/app/code/Magento/Cms/view/adminhtml/web/js/folder-tree.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/view/frontend/layout/cms_index_defaultindex.xml b/app/code/Magento/Cms/view/frontend/layout/cms_index_defaultindex.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/view/frontend/layout/cms_index_defaultnoroute.xml b/app/code/Magento/Cms/view/frontend/layout/cms_index_defaultnoroute.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/view/frontend/layout/cms_index_index.xml b/app/code/Magento/Cms/view/frontend/layout/cms_index_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/view/frontend/layout/cms_index_nocookies.xml b/app/code/Magento/Cms/view/frontend/layout/cms_index_nocookies.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/view/frontend/layout/cms_index_noroute.xml b/app/code/Magento/Cms/view/frontend/layout/cms_index_noroute.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/view/frontend/layout/cms_page_view.xml b/app/code/Magento/Cms/view/frontend/layout/cms_page_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/view/frontend/layout/default.xml b/app/code/Magento/Cms/view/frontend/layout/default.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/view/frontend/layout/print.xml b/app/code/Magento/Cms/view/frontend/layout/print.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/view/frontend/templates/content.phtml b/app/code/Magento/Cms/view/frontend/templates/content.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/view/frontend/templates/default/home.phtml b/app/code/Magento/Cms/view/frontend/templates/default/home.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/view/frontend/templates/default/no-route.phtml b/app/code/Magento/Cms/view/frontend/templates/default/no-route.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/view/frontend/templates/meta.phtml b/app/code/Magento/Cms/view/frontend/templates/meta.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/view/frontend/templates/widget/link/link_block.phtml b/app/code/Magento/Cms/view/frontend/templates/widget/link/link_block.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/view/frontend/templates/widget/link/link_inline.phtml b/app/code/Magento/Cms/view/frontend/templates/widget/link/link_inline.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cms/view/frontend/templates/widget/static_block/default.phtml b/app/code/Magento/Cms/view/frontend/templates/widget/static_block/default.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CmsUrlRewrite/LICENSE.txt b/app/code/Magento/CmsUrlRewrite/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CmsUrlRewrite/LICENSE_AFL.txt b/app/code/Magento/CmsUrlRewrite/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CmsUrlRewrite/Model/CmsPageUrlPathGenerator.php b/app/code/Magento/CmsUrlRewrite/Model/CmsPageUrlPathGenerator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CmsUrlRewrite/Model/CmsPageUrlRewriteGenerator.php b/app/code/Magento/CmsUrlRewrite/Model/CmsPageUrlRewriteGenerator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CmsUrlRewrite/Observer/ProcessUrlRewriteSavingObserver.php b/app/code/Magento/CmsUrlRewrite/Observer/ProcessUrlRewriteSavingObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CmsUrlRewrite/Plugin/Cms/Model/ResourceModel/Page.php b/app/code/Magento/CmsUrlRewrite/Plugin/Cms/Model/ResourceModel/Page.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CmsUrlRewrite/README.md b/app/code/Magento/CmsUrlRewrite/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CmsUrlRewrite/Test/Unit/Model/CmsPageUrlRewriteGeneratorTest.php b/app/code/Magento/CmsUrlRewrite/Test/Unit/Model/CmsPageUrlRewriteGeneratorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CmsUrlRewrite/Test/Unit/Observer/ProcessUrlRewriteSavingObserverTest.php b/app/code/Magento/CmsUrlRewrite/Test/Unit/Observer/ProcessUrlRewriteSavingObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CmsUrlRewrite/Test/Unit/Plugin/Cms/Model/ResourceModel/PageTest.php b/app/code/Magento/CmsUrlRewrite/Test/Unit/Plugin/Cms/Model/ResourceModel/PageTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CmsUrlRewrite/composer.json b/app/code/Magento/CmsUrlRewrite/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CmsUrlRewrite/etc/adminhtml/di.xml b/app/code/Magento/CmsUrlRewrite/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CmsUrlRewrite/etc/events.xml b/app/code/Magento/CmsUrlRewrite/etc/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CmsUrlRewrite/etc/module.xml b/app/code/Magento/CmsUrlRewrite/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CmsUrlRewrite/i18n/en_US.csv b/app/code/Magento/CmsUrlRewrite/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CmsUrlRewrite/registration.php b/app/code/Magento/CmsUrlRewrite/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/App/Config/Source/DumpConfigSourceAggregated.php b/app/code/Magento/Config/App/Config/Source/DumpConfigSourceAggregated.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/App/Config/Source/DumpConfigSourceInterface.php b/app/code/Magento/Config/App/Config/Source/DumpConfigSourceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/App/Config/Source/EnvironmentConfigSource.php b/app/code/Magento/Config/App/Config/Source/EnvironmentConfigSource.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/App/Config/Source/InitialSnapshotConfigSource.php b/app/code/Magento/Config/App/Config/Source/InitialSnapshotConfigSource.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/App/Config/Source/ModularConfigSource.php b/app/code/Magento/Config/App/Config/Source/ModularConfigSource.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/App/Config/Source/RuntimeConfigSource.php b/app/code/Magento/Config/App/Config/Source/RuntimeConfigSource.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/App/Config/Type/System.php b/app/code/Magento/Config/App/Config/Type/System.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/App/Config/Type/System/Reader.php b/app/code/Magento/Config/App/Config/Type/System/Reader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Block/System/Config/Dwstree.php b/app/code/Magento/Config/Block/System/Config/Dwstree.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Block/System/Config/Edit.php b/app/code/Magento/Config/Block/System/Config/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Block/System/Config/Form.php b/app/code/Magento/Config/Block/System/Config/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Block/System/Config/Form/Field.php b/app/code/Magento/Config/Block/System/Config/Form/Field.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Block/System/Config/Form/Field/Datetime.php b/app/code/Magento/Config/Block/System/Config/Form/Field/Datetime.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Block/System/Config/Form/Field/Factory.php b/app/code/Magento/Config/Block/System/Config/Form/Field/Factory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Block/System/Config/Form/Field/FieldArray/AbstractFieldArray.php b/app/code/Magento/Config/Block/System/Config/Form/Field/FieldArray/AbstractFieldArray.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Block/System/Config/Form/Field/File.php b/app/code/Magento/Config/Block/System/Config/Form/Field/File.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Block/System/Config/Form/Field/Heading.php b/app/code/Magento/Config/Block/System/Config/Form/Field/Heading.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Block/System/Config/Form/Field/Image.php b/app/code/Magento/Config/Block/System/Config/Form/Field/Image.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Block/System/Config/Form/Field/Notification.php b/app/code/Magento/Config/Block/System/Config/Form/Field/Notification.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Block/System/Config/Form/Field/Regexceptions.php b/app/code/Magento/Config/Block/System/Config/Form/Field/Regexceptions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Block/System/Config/Form/Field/Select/Allowspecific.php b/app/code/Magento/Config/Block/System/Config/Form/Field/Select/Allowspecific.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Block/System/Config/Form/Fieldset.php b/app/code/Magento/Config/Block/System/Config/Form/Fieldset.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Block/System/Config/Form/Fieldset/Factory.php b/app/code/Magento/Config/Block/System/Config/Form/Fieldset/Factory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Block/System/Config/Form/Fieldset/Modules/DisableOutput.php b/app/code/Magento/Config/Block/System/Config/Form/Fieldset/Modules/DisableOutput.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Block/System/Config/Tabs.php b/app/code/Magento/Config/Block/System/Config/Tabs.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Console/Command/ConfigSet/ConfigSetProcessorFactory.php b/app/code/Magento/Config/Console/Command/ConfigSet/ConfigSetProcessorFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Console/Command/ConfigSet/ConfigSetProcessorInterface.php b/app/code/Magento/Config/Console/Command/ConfigSet/ConfigSetProcessorInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Console/Command/ConfigSet/DefaultProcessor.php b/app/code/Magento/Config/Console/Command/ConfigSet/DefaultProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Console/Command/ConfigSet/LockProcessor.php b/app/code/Magento/Config/Console/Command/ConfigSet/LockProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Console/Command/ConfigSet/ProcessorFacade.php b/app/code/Magento/Config/Console/Command/ConfigSet/ProcessorFacade.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Console/Command/ConfigSetCommand.php b/app/code/Magento/Config/Console/Command/ConfigSetCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Console/Command/ConfigShow/ValueProcessor.php b/app/code/Magento/Config/Console/Command/ConfigShow/ValueProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Console/Command/ConfigShowCommand.php b/app/code/Magento/Config/Console/Command/ConfigShowCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Console/Command/EmulatedAdminhtmlAreaProcessor.php b/app/code/Magento/Config/Console/Command/EmulatedAdminhtmlAreaProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Controller/Adminhtml/System/AbstractConfig.php b/app/code/Magento/Config/Controller/Adminhtml/System/AbstractConfig.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Controller/Adminhtml/System/Config/AbstractScopeConfig.php b/app/code/Magento/Config/Controller/Adminhtml/System/Config/AbstractScopeConfig.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Controller/Adminhtml/System/Config/Edit.php b/app/code/Magento/Config/Controller/Adminhtml/System/Config/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Controller/Adminhtml/System/Config/Index.php b/app/code/Magento/Config/Controller/Adminhtml/System/Config/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Controller/Adminhtml/System/Config/Save.php b/app/code/Magento/Config/Controller/Adminhtml/System/Config/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Controller/Adminhtml/System/Config/State.php b/app/code/Magento/Config/Controller/Adminhtml/System/Config/State.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Controller/Adminhtml/System/ConfigSectionChecker.php b/app/code/Magento/Config/Controller/Adminhtml/System/ConfigSectionChecker.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/LICENSE.txt b/app/code/Magento/Config/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/LICENSE_AFL.txt b/app/code/Magento/Config/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config.php b/app/code/Magento/Config/Model/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Backend/Admin/Custom.php b/app/code/Magento/Config/Model/Config/Backend/Admin/Custom.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Backend/Admin/Custompath.php b/app/code/Magento/Config/Model/Config/Backend/Admin/Custompath.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Backend/Admin/Password/Link/Expirationperiod.php b/app/code/Magento/Config/Model/Config/Backend/Admin/Password/Link/Expirationperiod.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Backend/Admin/Robots.php b/app/code/Magento/Config/Model/Config/Backend/Admin/Robots.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Backend/Admin/Usecustom.php b/app/code/Magento/Config/Model/Config/Backend/Admin/Usecustom.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Backend/Admin/Usesecretkey.php b/app/code/Magento/Config/Model/Config/Backend/Admin/Usesecretkey.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Backend/Baseurl.php b/app/code/Magento/Config/Model/Config/Backend/Baseurl.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Backend/Cache.php b/app/code/Magento/Config/Model/Config/Backend/Cache.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Backend/Currency/AbstractCurrency.php b/app/code/Magento/Config/Model/Config/Backend/Currency/AbstractCurrency.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Backend/Currency/Allow.php b/app/code/Magento/Config/Model/Config/Backend/Currency/Allow.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Backend/Currency/Base.php b/app/code/Magento/Config/Model/Config/Backend/Currency/Base.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Backend/Currency/Cron.php b/app/code/Magento/Config/Model/Config/Backend/Currency/Cron.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Backend/Currency/DefaultCurrency.php b/app/code/Magento/Config/Model/Config/Backend/Currency/DefaultCurrency.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Backend/Datashare.php b/app/code/Magento/Config/Model/Config/Backend/Datashare.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Backend/Design/Exception.php b/app/code/Magento/Config/Model/Config/Backend/Design/Exception.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Backend/Email/Address.php b/app/code/Magento/Config/Model/Config/Backend/Email/Address.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Backend/Email/Logo.php b/app/code/Magento/Config/Model/Config/Backend/Email/Logo.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Backend/Email/Sender.php b/app/code/Magento/Config/Model/Config/Backend/Email/Sender.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Backend/Encrypted.php b/app/code/Magento/Config/Model/Config/Backend/Encrypted.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Backend/File.php b/app/code/Magento/Config/Model/Config/Backend/File.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Backend/File/RequestData.php b/app/code/Magento/Config/Model/Config/Backend/File/RequestData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Backend/File/RequestData/RequestDataInterface.php b/app/code/Magento/Config/Model/Config/Backend/File/RequestData/RequestDataInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Backend/Filename.php b/app/code/Magento/Config/Model/Config/Backend/Filename.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Backend/Image.php b/app/code/Magento/Config/Model/Config/Backend/Image.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Backend/Image/Adapter.php b/app/code/Magento/Config/Model/Config/Backend/Image/Adapter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Backend/Image/Favicon.php b/app/code/Magento/Config/Model/Config/Backend/Image/Favicon.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Backend/Image/Logo.php b/app/code/Magento/Config/Model/Config/Backend/Image/Logo.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Backend/Image/Pdf.php b/app/code/Magento/Config/Model/Config/Backend/Image/Pdf.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Backend/Locale.php b/app/code/Magento/Config/Model/Config/Backend/Locale.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Backend/Locale/Timezone.php b/app/code/Magento/Config/Model/Config/Backend/Locale/Timezone.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Backend/Log/Cron.php b/app/code/Magento/Config/Model/Config/Backend/Log/Cron.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Backend/Secure.php b/app/code/Magento/Config/Model/Config/Backend/Secure.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Backend/Serialized.php b/app/code/Magento/Config/Model/Config/Backend/Serialized.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Backend/Serialized/ArraySerialized.php b/app/code/Magento/Config/Model/Config/Backend/Serialized/ArraySerialized.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Backend/Store.php b/app/code/Magento/Config/Model/Config/Backend/Store.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Backend/Translate.php b/app/code/Magento/Config/Model/Config/Backend/Translate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/BackendClone/Factory.php b/app/code/Magento/Config/Model/Config/BackendClone/Factory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/BackendFactory.php b/app/code/Magento/Config/Model/Config/BackendFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/CommentFactory.php b/app/code/Magento/Config/Model/Config/CommentFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/CommentInterface.php b/app/code/Magento/Config/Model/Config/CommentInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Compiler/IncludeElement.php b/app/code/Magento/Config/Model/Config/Compiler/IncludeElement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Export/Comment.php b/app/code/Magento/Config/Model/Config/Export/Comment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Export/ExcludeList.php b/app/code/Magento/Config/Model/Config/Export/ExcludeList.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Factory.php b/app/code/Magento/Config/Model/Config/Factory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Importer.php b/app/code/Magento/Config/Model/Config/Importer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Importer/SaveProcessor.php b/app/code/Magento/Config/Model/Config/Importer/SaveProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Loader.php b/app/code/Magento/Config/Model/Config/Loader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Parser/Comment.php b/app/code/Magento/Config/Model/Config/Parser/Comment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/PathValidator.php b/app/code/Magento/Config/Model/Config/PathValidator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Processor/EnvironmentPlaceholder.php b/app/code/Magento/Config/Model/Config/Processor/EnvironmentPlaceholder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Reader/Source/Deployed/DocumentRoot.php b/app/code/Magento/Config/Model/Config/Reader/Source/Deployed/DocumentRoot.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Reader/Source/Deployed/SettingChecker.php b/app/code/Magento/Config/Model/Config/Reader/Source/Deployed/SettingChecker.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/SchemaLocator.php b/app/code/Magento/Config/Model/Config/SchemaLocator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/ScopeDefiner.php b/app/code/Magento/Config/Model/Config/ScopeDefiner.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Source/Admin/Page.php b/app/code/Magento/Config/Model/Config/Source/Admin/Page.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Source/Date/Short.php b/app/code/Magento/Config/Model/Config/Source/Date/Short.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Source/Design/Robots.php b/app/code/Magento/Config/Model/Config/Source/Design/Robots.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Source/Dev/Dbautoup.php b/app/code/Magento/Config/Model/Config/Source/Dev/Dbautoup.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Source/Email/Identity.php b/app/code/Magento/Config/Model/Config/Source/Email/Identity.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Source/Email/Method.php b/app/code/Magento/Config/Model/Config/Source/Email/Method.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Source/Email/Smtpauth.php b/app/code/Magento/Config/Model/Config/Source/Email/Smtpauth.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Source/Email/Template.php b/app/code/Magento/Config/Model/Config/Source/Email/Template.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Source/Enabledisable.php b/app/code/Magento/Config/Model/Config/Source/Enabledisable.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Source/Image/Adapter.php b/app/code/Magento/Config/Model/Config/Source/Image/Adapter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Source/Locale.php b/app/code/Magento/Config/Model/Config/Source/Locale.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Source/Locale/Country.php b/app/code/Magento/Config/Model/Config/Source/Locale/Country.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Source/Locale/Currency.php b/app/code/Magento/Config/Model/Config/Source/Locale/Currency.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Source/Locale/Currency/All.php b/app/code/Magento/Config/Model/Config/Source/Locale/Currency/All.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Source/Locale/Timezone.php b/app/code/Magento/Config/Model/Config/Source/Locale/Timezone.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Source/Locale/Weekdaycodes.php b/app/code/Magento/Config/Model/Config/Source/Locale/Weekdaycodes.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Source/Locale/Weekdays.php b/app/code/Magento/Config/Model/Config/Source/Locale/Weekdays.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Source/Nooptreq.php b/app/code/Magento/Config/Model/Config/Source/Nooptreq.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Source/Reports/Scope.php b/app/code/Magento/Config/Model/Config/Source/Reports/Scope.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Source/Store.php b/app/code/Magento/Config/Model/Config/Source/Store.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Source/Web/Protocol.php b/app/code/Magento/Config/Model/Config/Source/Web/Protocol.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Source/Web/Redirect.php b/app/code/Magento/Config/Model/Config/Source/Web/Redirect.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Source/Website.php b/app/code/Magento/Config/Model/Config/Source/Website.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Source/Website/AdminOptionHash.php b/app/code/Magento/Config/Model/Config/Source/Website/AdminOptionHash.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Source/Website/OptionHash.php b/app/code/Magento/Config/Model/Config/Source/Website/OptionHash.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Source/Yesno.php b/app/code/Magento/Config/Model/Config/Source/Yesno.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Source/Yesnocustom.php b/app/code/Magento/Config/Model/Config/Source/Yesnocustom.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/SourceFactory.php b/app/code/Magento/Config/Model/Config/SourceFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Structure.php b/app/code/Magento/Config/Model/Config/Structure.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Structure/AbstractElement.php b/app/code/Magento/Config/Model/Config/Structure/AbstractElement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Structure/AbstractMapper.php b/app/code/Magento/Config/Model/Config/Structure/AbstractMapper.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Structure/ConcealInProductionConfigList.php b/app/code/Magento/Config/Model/Config/Structure/ConcealInProductionConfigList.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Structure/Converter.php b/app/code/Magento/Config/Model/Config/Structure/Converter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Structure/Data.php b/app/code/Magento/Config/Model/Config/Structure/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Structure/Element/AbstractComposite.php b/app/code/Magento/Config/Model/Config/Structure/Element/AbstractComposite.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Structure/Element/Dependency/Field.php b/app/code/Magento/Config/Model/Config/Structure/Element/Dependency/Field.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Structure/Element/Dependency/FieldFactory.php b/app/code/Magento/Config/Model/Config/Structure/Element/Dependency/FieldFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Structure/Element/Dependency/Mapper.php b/app/code/Magento/Config/Model/Config/Structure/Element/Dependency/Mapper.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Structure/Element/Field.php b/app/code/Magento/Config/Model/Config/Structure/Element/Field.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Structure/Element/FlyweightFactory.php b/app/code/Magento/Config/Model/Config/Structure/Element/FlyweightFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Structure/Element/Group.php b/app/code/Magento/Config/Model/Config/Structure/Element/Group.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Structure/Element/Group/Proxy.php b/app/code/Magento/Config/Model/Config/Structure/Element/Group/Proxy.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Structure/Element/Iterator.php b/app/code/Magento/Config/Model/Config/Structure/Element/Iterator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Structure/Element/Iterator/Field.php b/app/code/Magento/Config/Model/Config/Structure/Element/Iterator/Field.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Structure/Element/Iterator/Group.php b/app/code/Magento/Config/Model/Config/Structure/Element/Iterator/Group.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Structure/Element/Iterator/Section.php b/app/code/Magento/Config/Model/Config/Structure/Element/Iterator/Section.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Structure/Element/Iterator/Tab.php b/app/code/Magento/Config/Model/Config/Structure/Element/Iterator/Tab.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Structure/Element/Section.php b/app/code/Magento/Config/Model/Config/Structure/Element/Section.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Structure/Element/Tab.php b/app/code/Magento/Config/Model/Config/Structure/Element/Tab.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Structure/ElementInterface.php b/app/code/Magento/Config/Model/Config/Structure/ElementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Structure/ElementVisibilityComposite.php b/app/code/Magento/Config/Model/Config/Structure/ElementVisibilityComposite.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Structure/ElementVisibilityInterface.php b/app/code/Magento/Config/Model/Config/Structure/ElementVisibilityInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Structure/Mapper/Attribute/Inheritance.php b/app/code/Magento/Config/Model/Config/Structure/Mapper/Attribute/Inheritance.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Structure/Mapper/Dependencies.php b/app/code/Magento/Config/Model/Config/Structure/Mapper/Dependencies.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Structure/Mapper/ExtendsMapper.php b/app/code/Magento/Config/Model/Config/Structure/Mapper/ExtendsMapper.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Structure/Mapper/Factory.php b/app/code/Magento/Config/Model/Config/Structure/Mapper/Factory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Structure/Mapper/Helper/RelativePathConverter.php b/app/code/Magento/Config/Model/Config/Structure/Mapper/Helper/RelativePathConverter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Structure/Mapper/Ignore.php b/app/code/Magento/Config/Model/Config/Structure/Mapper/Ignore.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Structure/Mapper/Path.php b/app/code/Magento/Config/Model/Config/Structure/Mapper/Path.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Structure/Mapper/Sorting.php b/app/code/Magento/Config/Model/Config/Structure/Mapper/Sorting.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Structure/MapperInterface.php b/app/code/Magento/Config/Model/Config/Structure/MapperInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Structure/Reader.php b/app/code/Magento/Config/Model/Config/Structure/Reader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Structure/Search/Proxy.php b/app/code/Magento/Config/Model/Config/Structure/Search/Proxy.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/Structure/SearchInterface.php b/app/code/Magento/Config/Model/Config/Structure/SearchInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Config/TypePool.php b/app/code/Magento/Config/Model/Config/TypePool.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Placeholder/Environment.php b/app/code/Magento/Config/Model/Placeholder/Environment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Placeholder/PlaceholderFactory.php b/app/code/Magento/Config/Model/Placeholder/PlaceholderFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/Placeholder/PlaceholderInterface.php b/app/code/Magento/Config/Model/Placeholder/PlaceholderInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/PreparedValueFactory.php b/app/code/Magento/Config/Model/PreparedValueFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/ResourceModel/Config.php b/app/code/Magento/Config/Model/ResourceModel/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/ResourceModel/Config/Data.php b/app/code/Magento/Config/Model/ResourceModel/Config/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Model/ResourceModel/Config/Data/Collection.php b/app/code/Magento/Config/Model/ResourceModel/Config/Data/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Observer/Config/Backend/Admin/AfterCustomUrlChangedObserver.php b/app/code/Magento/Config/Observer/Config/Backend/Admin/AfterCustomUrlChangedObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/README.md b/app/code/Magento/Config/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Setup/InstallData.php b/app/code/Magento/Config/Setup/InstallData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Setup/InstallSchema.php b/app/code/Magento/Config/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/App/Config/Source/DumpConfigSourceAggregatedTest.php b/app/code/Magento/Config/Test/Unit/App/Config/Source/DumpConfigSourceAggregatedTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/App/Config/Source/EnvironmentConfigSourceTest.php b/app/code/Magento/Config/Test/Unit/App/Config/Source/EnvironmentConfigSourceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/App/Config/Source/InitialSnapshotConfigSourceTest.php b/app/code/Magento/Config/Test/Unit/App/Config/Source/InitialSnapshotConfigSourceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/App/Config/Source/ModularConfigSourceTest.php b/app/code/Magento/Config/Test/Unit/App/Config/Source/ModularConfigSourceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/App/Config/Source/RuntimeConfigSourceTest.php b/app/code/Magento/Config/Test/Unit/App/Config/Source/RuntimeConfigSourceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/App/Config/Type/System/ReaderTest.php b/app/code/Magento/Config/Test/Unit/App/Config/Type/System/ReaderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/App/Config/Type/SystemTest.php b/app/code/Magento/Config/Test/Unit/App/Config/Type/SystemTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Block/System/Config/DwstreeTest.php b/app/code/Magento/Config/Test/Unit/Block/System/Config/DwstreeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Block/System/Config/EditTest.php b/app/code/Magento/Config/Test/Unit/Block/System/Config/EditTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Field/FieldArray/AbstractTest.php b/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Field/FieldArray/AbstractTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Field/FileTest.php b/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Field/FileTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Field/HeadingTest.php b/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Field/HeadingTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Field/ImageTest.php b/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Field/ImageTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Field/NotificationTest.php b/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Field/NotificationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Field/RegexceptionsTest.php b/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Field/RegexceptionsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Field/Select/AllowspecificTest.php b/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Field/Select/AllowspecificTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/FieldTest.php b/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/FieldTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Fieldset/Modules/DisableOutputTest.php b/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/Fieldset/Modules/DisableOutputTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/FieldsetTest.php b/app/code/Magento/Config/Test/Unit/Block/System/Config/Form/FieldsetTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Block/System/Config/FormTest.php b/app/code/Magento/Config/Test/Unit/Block/System/Config/FormTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Block/System/Config/TabsTest.php b/app/code/Magento/Config/Test/Unit/Block/System/Config/TabsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Console/Command/ConfigSet/ConfigSetProcessorFactoryTest.php b/app/code/Magento/Config/Test/Unit/Console/Command/ConfigSet/ConfigSetProcessorFactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Console/Command/ConfigSet/DefaultProcessorTest.php b/app/code/Magento/Config/Test/Unit/Console/Command/ConfigSet/DefaultProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Console/Command/ConfigSet/LockProcessorTest.php b/app/code/Magento/Config/Test/Unit/Console/Command/ConfigSet/LockProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Console/Command/ConfigSet/ProcessorFacadeTest.php b/app/code/Magento/Config/Test/Unit/Console/Command/ConfigSet/ProcessorFacadeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Console/Command/ConfigSetCommandTest.php b/app/code/Magento/Config/Test/Unit/Console/Command/ConfigSetCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Console/Command/ConfigShow/ValueProcessorTest.php b/app/code/Magento/Config/Test/Unit/Console/Command/ConfigShow/ValueProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Console/Command/ConfigShowCommandTest.php b/app/code/Magento/Config/Test/Unit/Console/Command/ConfigShowCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Console/Command/EmulatedAdminhtmlAreaProcessorTest.php b/app/code/Magento/Config/Test/Unit/Console/Command/EmulatedAdminhtmlAreaProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Controller/Adminhtml/System/Config/SaveTest.php b/app/code/Magento/Config/Test/Unit/Controller/Adminhtml/System/Config/SaveTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Controller/Adminhtml/System/Config/_files/expected_array.php b/app/code/Magento/Config/Test/Unit/Controller/Adminhtml/System/Config/_files/expected_array.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Controller/Adminhtml/System/Config/_files/files_array.php b/app/code/Magento/Config/Test/Unit/Controller/Adminhtml/System/Config/_files/files_array.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Controller/Adminhtml/System/Config/_files/groups_array.php b/app/code/Magento/Config/Test/Unit/Controller/Adminhtml/System/Config/_files/groups_array.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Compiler/IncludeElementTest.php b/app/code/Magento/Config/Test/Unit/Model/Compiler/IncludeElementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Backend/BaseurlTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Backend/BaseurlTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Backend/Email/AddressTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Backend/Email/AddressTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Backend/Email/LogoTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Backend/Email/LogoTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Backend/Email/SenderTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Backend/Email/SenderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Backend/EncryptedTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Backend/EncryptedTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Backend/File/RequestDataTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Backend/File/RequestDataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Backend/FileTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Backend/FileTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Backend/Image/LogoTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Backend/Image/LogoTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Backend/SecureTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Backend/SecureTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Backend/SerializedTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Backend/SerializedTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Export/CommentTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Export/CommentTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Export/ExcludeListTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Export/ExcludeListTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Export/TypePoolTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Export/TypePoolTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Importer/SaveProcessorTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Importer/SaveProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/ImporterTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/ImporterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/LoaderTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/LoaderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Parser/CommentTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Parser/CommentTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/PathValidatorTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/PathValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Processor/EnvironmentPlaceholderTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Processor/EnvironmentPlaceholderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Reader/Source/Deployed/DocumentRootTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Reader/Source/Deployed/DocumentRootTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Reader/Source/Deployed/SettingCheckerTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Reader/Source/Deployed/SettingCheckerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/SchemaLocatorTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/SchemaLocatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/ScopeDefinerTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/ScopeDefinerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Source/Admin/PageTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Source/Admin/PageTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Source/Email/TemplateTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Source/Email/TemplateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Source/Locale/TimezoneTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Source/Locale/TimezoneTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/AbstractElementTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/AbstractElementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/ConcealInProductionConfigListTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/ConcealInProductionConfigListTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/ConverterTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/ConverterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/AbstractCompositeTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/AbstractCompositeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/Dependency/FieldTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/Dependency/FieldTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/Dependency/MapperTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/Dependency/MapperTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/FieldTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/FieldTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/FlyweightFactoryTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/FlyweightFactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/Group/ProxyTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/Group/ProxyTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/GroupTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/GroupTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/Iterator/FieldTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/Iterator/FieldTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/IteratorTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/IteratorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/SectionTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/SectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/TabTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Element/TabTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/ElementVisibilityCompositeTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/ElementVisibilityCompositeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Mapper/DependenciesTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Mapper/DependenciesTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Mapper/ExtendsTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Mapper/ExtendsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Mapper/Helper/RelativePathConverterTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Mapper/Helper/RelativePathConverterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Mapper/PathTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Mapper/PathTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Mapper/SortingTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/Mapper/SortingTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Structure/ReaderTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Structure/ReaderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/StructureTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/StructureTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/XsdTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/XsdTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/_files/config.local.php b/app/code/Magento/Config/Test/Unit/Model/Config/_files/config.local.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/_files/invalidSystemXmlArray.php b/app/code/Magento/Config/Test/Unit/Model/Config/_files/invalidSystemXmlArray.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/_files/valid_system.xml b/app/code/Magento/Config/Test/Unit/Model/Config/_files/valid_system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/ConfigTest.php b/app/code/Magento/Config/Test/Unit/Model/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Placeholder/EnvironmentTest.php b/app/code/Magento/Config/Test/Unit/Model/Placeholder/EnvironmentTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/Placeholder/PlaceholderFactoryTest.php b/app/code/Magento/Config/Test/Unit/Model/Placeholder/PlaceholderFactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/PreparedValueFactoryTest.php b/app/code/Magento/Config/Test/Unit/Model/PreparedValueFactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/_files/acl.xml b/app/code/Magento/Config/Test/Unit/Model/_files/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/_files/acl_1.xml b/app/code/Magento/Config/Test/Unit/Model/_files/acl_1.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/_files/acl_2.xml b/app/code/Magento/Config/Test/Unit/Model/_files/acl_2.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/_files/acl_merged.xml b/app/code/Magento/Config/Test/Unit/Model/_files/acl_merged.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/_files/converted_config.php b/app/code/Magento/Config/Test/Unit/Model/_files/converted_config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/_files/dependencies_data.php b/app/code/Magento/Config/Test/Unit/Model/_files/dependencies_data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/_files/dependencies_mapped.php b/app/code/Magento/Config/Test/Unit/Model/_files/dependencies_mapped.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/_files/menu_1.xml b/app/code/Magento/Config/Test/Unit/Model/_files/menu_1.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/_files/menu_2.xml b/app/code/Magento/Config/Test/Unit/Model/_files/menu_2.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/_files/system_1.xml b/app/code/Magento/Config/Test/Unit/Model/_files/system_1.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/_files/system_2.xml b/app/code/Magento/Config/Test/Unit/Model/_files/system_2.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/_files/system_config_options_1.xml b/app/code/Magento/Config/Test/Unit/Model/_files/system_config_options_1.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/_files/system_config_options_2.xml b/app/code/Magento/Config/Test/Unit/Model/_files/system_config_options_2.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/_files/system_unknown_attribute_1.xml b/app/code/Magento/Config/Test/Unit/Model/_files/system_unknown_attribute_1.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/Test/Unit/Model/_files/system_unknown_attribute_2.xml b/app/code/Magento/Config/Test/Unit/Model/_files/system_unknown_attribute_2.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/composer.json b/app/code/Magento/Config/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/etc/acl.xml b/app/code/Magento/Config/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/etc/adminhtml/di.xml b/app/code/Magento/Config/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/etc/adminhtml/events.xml b/app/code/Magento/Config/etc/adminhtml/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/etc/adminhtml/menu.xml b/app/code/Magento/Config/etc/adminhtml/menu.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/etc/adminhtml/routes.xml b/app/code/Magento/Config/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/etc/di.xml b/app/code/Magento/Config/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/etc/module.xml b/app/code/Magento/Config/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/etc/system.xsd b/app/code/Magento/Config/etc/system.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/etc/system_file.xsd b/app/code/Magento/Config/etc/system_file.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/etc/system_include.xsd b/app/code/Magento/Config/etc/system_include.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/i18n/en_US.csv b/app/code/Magento/Config/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/registration.php b/app/code/Magento/Config/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/view/adminhtml/layout/adminhtml_system_config_edit.xml b/app/code/Magento/Config/view/adminhtml/layout/adminhtml_system_config_edit.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/view/adminhtml/templates/page/system/config/robots/reset.phtml b/app/code/Magento/Config/view/adminhtml/templates/page/system/config/robots/reset.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/view/adminhtml/templates/system/config/edit.phtml b/app/code/Magento/Config/view/adminhtml/templates/system/config/edit.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/view/adminhtml/templates/system/config/form/field/array.phtml b/app/code/Magento/Config/view/adminhtml/templates/system/config/form/field/array.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/view/adminhtml/templates/system/config/js.phtml b/app/code/Magento/Config/view/adminhtml/templates/system/config/js.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/view/adminhtml/templates/system/config/switcher.phtml b/app/code/Magento/Config/view/adminhtml/templates/system/config/switcher.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Config/view/adminhtml/templates/system/config/tabs.phtml b/app/code/Magento/Config/view/adminhtml/templates/system/config/tabs.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableImportExport/LICENSE.txt b/app/code/Magento/ConfigurableImportExport/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableImportExport/LICENSE_AFL.txt b/app/code/Magento/ConfigurableImportExport/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableImportExport/Model/Export/Product/Type/Configurable.php b/app/code/Magento/ConfigurableImportExport/Model/Export/Product/Type/Configurable.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableImportExport/Model/Export/RowCustomizer.php b/app/code/Magento/ConfigurableImportExport/Model/Export/RowCustomizer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableImportExport/Model/Import/Product/Type/Configurable.php b/app/code/Magento/ConfigurableImportExport/Model/Import/Product/Type/Configurable.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableImportExport/Test/Unit/Model/Export/RowCustomizerTest.php b/app/code/Magento/ConfigurableImportExport/Test/Unit/Model/Export/RowCustomizerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableImportExport/Test/Unit/Model/Import/Product/Type/ConfigurableTest.php b/app/code/Magento/ConfigurableImportExport/Test/Unit/Model/Import/Product/Type/ConfigurableTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableImportExport/composer.json b/app/code/Magento/ConfigurableImportExport/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableImportExport/etc/di.xml b/app/code/Magento/ConfigurableImportExport/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableImportExport/etc/export.xml b/app/code/Magento/ConfigurableImportExport/etc/export.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableImportExport/etc/import.xml b/app/code/Magento/ConfigurableImportExport/etc/import.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableImportExport/etc/module.xml b/app/code/Magento/ConfigurableImportExport/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableImportExport/i18n/en_US.csv b/app/code/Magento/ConfigurableImportExport/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableImportExport/registration.php b/app/code/Magento/ConfigurableImportExport/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Api/ConfigurableProductManagementInterface.php b/app/code/Magento/ConfigurableProduct/Api/ConfigurableProductManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Api/Data/ConfigurableItemOptionValueInterface.php b/app/code/Magento/ConfigurableProduct/Api/Data/ConfigurableItemOptionValueInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Api/Data/OptionInterface.php b/app/code/Magento/ConfigurableProduct/Api/Data/OptionInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Api/Data/OptionValueInterface.php b/app/code/Magento/ConfigurableProduct/Api/Data/OptionValueInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Api/LinkManagementInterface.php b/app/code/Magento/ConfigurableProduct/Api/LinkManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Api/OptionRepositoryInterface.php b/app/code/Magento/ConfigurableProduct/Api/OptionRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Order/Create/Sidebar.php b/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Order/Create/Sidebar.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Attribute/Edit/Tab/Variations/Main.php b/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Attribute/Edit/Tab/Variations/Main.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Attribute/NewAttribute/Product/Created.php b/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Attribute/NewAttribute/Product/Created.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Composite/Fieldset/Configurable.php b/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Composite/Fieldset/Configurable.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Edit/AttributeSet/Form.php b/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Edit/AttributeSet/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Edit/Button/Save.php b/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Edit/Button/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Edit/Tab/Variations/Config.php b/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Edit/Tab/Variations/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Edit/Tab/Variations/Config/Matrix.php b/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Edit/Tab/Variations/Config/Matrix.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Steps/AttributeValues.php b/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Steps/AttributeValues.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Steps/Bulk.php b/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Steps/Bulk.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Steps/SelectAttributes.php b/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Steps/SelectAttributes.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Steps/Summary.php b/app/code/Magento/ConfigurableProduct/Block/Adminhtml/Product/Steps/Summary.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Block/Cart/Item/Renderer/Configurable.php b/app/code/Magento/ConfigurableProduct/Block/Cart/Item/Renderer/Configurable.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Block/Plugin/Product/Media/Gallery.php b/app/code/Magento/ConfigurableProduct/Block/Plugin/Product/Media/Gallery.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Block/Product/Configurable/AssociatedSelector/Renderer/Id.php b/app/code/Magento/ConfigurableProduct/Block/Product/Configurable/AssociatedSelector/Renderer/Id.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Block/Product/Configurable/AttributeSelector.php b/app/code/Magento/ConfigurableProduct/Block/Product/Configurable/AttributeSelector.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Block/Product/View/Type/Configurable.php b/app/code/Magento/ConfigurableProduct/Block/Product/View/Type/Configurable.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Block/Stockqty/Type/Configurable.php b/app/code/Magento/ConfigurableProduct/Block/Stockqty/Type/Configurable.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/AddAttribute.php b/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/AddAttribute.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Associated/Grid.php b/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Associated/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Attribute/CreateOptions.php b/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Attribute/CreateOptions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Attribute/GetAttributes.php b/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Attribute/GetAttributes.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Attribute/SuggestConfigurableAttributes.php b/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Attribute/SuggestConfigurableAttributes.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Builder/Plugin.php b/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Builder/Plugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Initialization/Helper/Plugin/Configurable.php b/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Initialization/Helper/Plugin/Configurable.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Initialization/Helper/Plugin/UpdateConfigurations.php b/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Initialization/Helper/Plugin/UpdateConfigurations.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Wizard.php b/app/code/Magento/ConfigurableProduct/Controller/Adminhtml/Product/Wizard.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/CustomerData/ConfigurableItem.php b/app/code/Magento/ConfigurableProduct/CustomerData/ConfigurableItem.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Helper/Data.php b/app/code/Magento/ConfigurableProduct/Helper/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Helper/Product/Configuration/Plugin.php b/app/code/Magento/ConfigurableProduct/Helper/Product/Configuration/Plugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Helper/Product/Options/Factory.php b/app/code/Magento/ConfigurableProduct/Helper/Product/Options/Factory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Helper/Product/Options/Loader.php b/app/code/Magento/ConfigurableProduct/Helper/Product/Options/Loader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/LICENSE.txt b/app/code/Magento/ConfigurableProduct/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/LICENSE_AFL.txt b/app/code/Magento/ConfigurableProduct/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Model/Attribute/LockValidator.php b/app/code/Magento/ConfigurableProduct/Model/Attribute/LockValidator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Model/AttributeOptionProvider.php b/app/code/Magento/ConfigurableProduct/Model/AttributeOptionProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Model/AttributeOptionProviderInterface.php b/app/code/Magento/ConfigurableProduct/Model/AttributeOptionProviderInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Model/AttributesList.php b/app/code/Magento/ConfigurableProduct/Model/AttributesList.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Model/AttributesListInterface.php b/app/code/Magento/ConfigurableProduct/Model/AttributesListInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Model/ConfigurableAttributeData.php b/app/code/Magento/ConfigurableProduct/Model/ConfigurableAttributeData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Model/ConfigurableAttributeHandler.php b/app/code/Magento/ConfigurableProduct/Model/ConfigurableAttributeHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Model/ConfigurableProductManagement.php b/app/code/Magento/ConfigurableProduct/Model/ConfigurableProductManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Model/Entity/Product/Attribute/Group/AttributeMapper/Plugin.php b/app/code/Magento/ConfigurableProduct/Model/Entity/Product/Attribute/Group/AttributeMapper/Plugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Model/LinkManagement.php b/app/code/Magento/ConfigurableProduct/Model/LinkManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Model/OptionRepository.php b/app/code/Magento/ConfigurableProduct/Model/OptionRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Model/Order/Admin/Item/Plugin/Configurable.php b/app/code/Magento/ConfigurableProduct/Model/Order/Admin/Item/Plugin/Configurable.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Model/Plugin/PriceBackend.php b/app/code/Magento/ConfigurableProduct/Model/Plugin/PriceBackend.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Model/Plugin/ProductRepositorySave.php b/app/code/Magento/ConfigurableProduct/Model/Plugin/ProductRepositorySave.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Model/Product/Cache/Tag/Configurable.php b/app/code/Magento/ConfigurableProduct/Model/Product/Cache/Tag/Configurable.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Model/Product/CartConfiguration/Plugin/Configurable.php b/app/code/Magento/ConfigurableProduct/Model/Product/CartConfiguration/Plugin/Configurable.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Model/Product/ReadHandler.php b/app/code/Magento/ConfigurableProduct/Model/Product/ReadHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Model/Product/SaveHandler.php b/app/code/Magento/ConfigurableProduct/Model/Product/SaveHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Model/Product/Type/Collection/SalableProcessor.php b/app/code/Magento/ConfigurableProduct/Model/Product/Type/Collection/SalableProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Model/Product/Type/Configurable.php b/app/code/Magento/ConfigurableProduct/Model/Product/Type/Configurable.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Model/Product/Type/Configurable/Attribute.php b/app/code/Magento/ConfigurableProduct/Model/Product/Type/Configurable/Attribute.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Model/Product/Type/Configurable/OptionValue.php b/app/code/Magento/ConfigurableProduct/Model/Product/Type/Configurable/OptionValue.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Model/Product/Type/Configurable/Price.php b/app/code/Magento/ConfigurableProduct/Model/Product/Type/Configurable/Price.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Model/Product/Type/Plugin.php b/app/code/Magento/ConfigurableProduct/Model/Product/Type/Plugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Model/Product/Type/VariationMatrix.php b/app/code/Magento/ConfigurableProduct/Model/Product/Type/VariationMatrix.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Model/Product/TypeTransitionManager/Plugin/Configurable.php b/app/code/Magento/ConfigurableProduct/Model/Product/TypeTransitionManager/Plugin/Configurable.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Model/Product/Validator/Plugin.php b/app/code/Magento/ConfigurableProduct/Model/Product/Validator/Plugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Model/Product/VariationHandler.php b/app/code/Magento/ConfigurableProduct/Model/Product/VariationHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Model/ProductOptionProcessor.php b/app/code/Magento/ConfigurableProduct/Model/ProductOptionProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Model/ProductVariationsBuilder.php b/app/code/Magento/ConfigurableProduct/Model/ProductVariationsBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Model/Quote/Item/CartItemProcessor.php b/app/code/Magento/ConfigurableProduct/Model/Quote/Item/CartItemProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Model/Quote/Item/ConfigurableItemOptionValue.php b/app/code/Magento/ConfigurableProduct/Model/Quote/Item/ConfigurableItemOptionValue.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Model/Quote/Item/QuantityValidator/Initializer/Option/Plugin/ConfigurableProduct.php b/app/code/Magento/ConfigurableProduct/Model/Quote/Item/QuantityValidator/Initializer/Option/Plugin/ConfigurableProduct.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Attribute/OptionProvider.php b/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Attribute/OptionProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Attribute/OptionSelectBuilder.php b/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Attribute/OptionSelectBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Attribute/OptionSelectBuilderInterface.php b/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Attribute/OptionSelectBuilderInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Indexer/Stock/Configurable.php b/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Indexer/Stock/Configurable.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Product/Indexer/Price/Configurable.php b/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Product/Indexer/Price/Configurable.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Product/LinkedProductSelectBuilder.php b/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Product/LinkedProductSelectBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Product/StockStatusBaseSelectProcessor.php b/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Product/StockStatusBaseSelectProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Product/Type/Configurable.php b/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Product/Type/Configurable.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Product/Type/Configurable/Attribute.php b/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Product/Type/Configurable/Attribute.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Product/Type/Configurable/Attribute/Collection.php b/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Product/Type/Configurable/Attribute/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Product/Type/Configurable/Product/Collection.php b/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Product/Type/Configurable/Product/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Setup/PropertyMapper.php b/app/code/Magento/ConfigurableProduct/Model/ResourceModel/Setup/PropertyMapper.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Model/SuggestedAttributeList.php b/app/code/Magento/ConfigurableProduct/Model/SuggestedAttributeList.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Observer/HideUnsupportedAttributeTypes.php b/app/code/Magento/ConfigurableProduct/Observer/HideUnsupportedAttributeTypes.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Plugin/Catalog/Model/Product/Pricing/Renderer/SalableResolver.php b/app/code/Magento/ConfigurableProduct/Plugin/Catalog/Model/Product/Pricing/Renderer/SalableResolver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Plugin/Model/Attribute/Backend/AttributeValidation.php b/app/code/Magento/ConfigurableProduct/Plugin/Model/Attribute/Backend/AttributeValidation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Plugin/Model/ResourceModel/Attribute/InStockOptionSelectBuilder.php b/app/code/Magento/ConfigurableProduct/Plugin/Model/ResourceModel/Attribute/InStockOptionSelectBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Plugin/Model/ResourceModel/Product.php b/app/code/Magento/ConfigurableProduct/Plugin/Model/ResourceModel/Product.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Pricing/Price/ConfigurableOptionsProvider.php b/app/code/Magento/ConfigurableProduct/Pricing/Price/ConfigurableOptionsProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Pricing/Price/ConfigurableOptionsProviderInterface.php b/app/code/Magento/ConfigurableProduct/Pricing/Price/ConfigurableOptionsProviderInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Pricing/Price/ConfigurablePriceResolver.php b/app/code/Magento/ConfigurableProduct/Pricing/Price/ConfigurablePriceResolver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Pricing/Price/ConfigurableRegularPrice.php b/app/code/Magento/ConfigurableProduct/Pricing/Price/ConfigurableRegularPrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Pricing/Price/ConfigurableRegularPriceInterface.php b/app/code/Magento/ConfigurableProduct/Pricing/Price/ConfigurableRegularPriceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Pricing/Price/FinalPrice.php b/app/code/Magento/ConfigurableProduct/Pricing/Price/FinalPrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Pricing/Price/FinalPriceResolver.php b/app/code/Magento/ConfigurableProduct/Pricing/Price/FinalPriceResolver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Pricing/Price/LowestPriceOptionsProvider.php b/app/code/Magento/ConfigurableProduct/Pricing/Price/LowestPriceOptionsProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Pricing/Price/LowestPriceOptionsProviderInterface.php b/app/code/Magento/ConfigurableProduct/Pricing/Price/LowestPriceOptionsProviderInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Pricing/Price/PriceResolverInterface.php b/app/code/Magento/ConfigurableProduct/Pricing/Price/PriceResolverInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Pricing/Price/RegularPriceResolver.php b/app/code/Magento/ConfigurableProduct/Pricing/Price/RegularPriceResolver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Pricing/Render/FinalPriceBox.php b/app/code/Magento/ConfigurableProduct/Pricing/Render/FinalPriceBox.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Pricing/Render/TierPriceBox.php b/app/code/Magento/ConfigurableProduct/Pricing/Render/TierPriceBox.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/README.md b/app/code/Magento/ConfigurableProduct/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Setup/InstallData.php b/app/code/Magento/ConfigurableProduct/Setup/InstallData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Setup/InstallSchema.php b/app/code/Magento/ConfigurableProduct/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Setup/Recurring.php b/app/code/Magento/ConfigurableProduct/Setup/Recurring.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Setup/UpgradeData.php b/app/code/Magento/ConfigurableProduct/Setup/UpgradeData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Block/Adminhtml/Product/Edit/Button/SaveTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Block/Adminhtml/Product/Edit/Button/SaveTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Block/Adminhtml/Product/Edit/Tab/Variations/Config/MatrixTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Block/Adminhtml/Product/Edit/Tab/Variations/Config/MatrixTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Block/Adminhtml/Product/Steps/SelectAttributesTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Block/Adminhtml/Product/Steps/SelectAttributesTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Block/Cart/Item/Renderer/ConfigurableTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Block/Cart/Item/Renderer/ConfigurableTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Block/Plugin/Product/Media/GalleryTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Block/Plugin/Product/Media/GalleryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Block/Product/Configurable/AttributeSelectorTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Block/Product/Configurable/AttributeSelectorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Block/Product/View/Type/ConfigurableTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Block/Product/View/Type/ConfigurableTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Controller/Adminhtml/Product/AddAttributeTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Controller/Adminhtml/Product/AddAttributeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Controller/Adminhtml/Product/Attribute/SuggestConfigurableAttributesTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Controller/Adminhtml/Product/Attribute/SuggestConfigurableAttributesTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Controller/Adminhtml/Product/Builder/PluginTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Controller/Adminhtml/Product/Builder/PluginTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Controller/Adminhtml/Product/Initialization/Helper/Plugin/ConfigurableTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Controller/Adminhtml/Product/Initialization/Helper/Plugin/ConfigurableTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Controller/Adminhtml/Product/Initialization/Helper/Plugin/UpdateConfigurationsTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Controller/Adminhtml/Product/Initialization/Helper/Plugin/UpdateConfigurationsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Controller/Adminhtml/Product/WizardTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Controller/Adminhtml/Product/WizardTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Helper/DataTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Helper/Product/Configuration/PluginTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Helper/Product/Configuration/PluginTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Helper/Product/Options/FactoryTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Helper/Product/Options/FactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Helper/Product/Options/LoaderTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Helper/Product/Options/LoaderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Attribute/LockValidatorTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Attribute/LockValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/AttributeOptionProviderTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/AttributeOptionProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/AttributesListTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/AttributesListTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/ConfigurableAttributeDataTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/ConfigurableAttributeDataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/ConfigurableProductManagementTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/ConfigurableProductManagementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Entity/Product/Attribute/Group/AttributeMapper/PluginTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Entity/Product/Attribute/Group/AttributeMapper/PluginTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/LinkManagementTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/LinkManagementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/OptionRepositoryTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/OptionRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Order/Admin/Item/Plugin/ConfigurableTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Order/Admin/Item/Plugin/ConfigurableTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Plugin/PriceBackendTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Plugin/PriceBackendTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Plugin/ProductRepositorySaveTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Plugin/ProductRepositorySaveTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Cache/Tag/ConfigurableTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Cache/Tag/ConfigurableTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/CartConfiguration/Plugin/ConfigurableTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/CartConfiguration/Plugin/ConfigurableTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/ProductExtensionAttributes.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/ProductExtensionAttributes.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/ProductOptionExtensionAttributes.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/ProductOptionExtensionAttributes.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/ReadHandlerTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/ReadHandlerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/SaveHandlerTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/SaveHandlerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/Collection/SalableProcessorTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/Collection/SalableProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/Configurable/PriceTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/Configurable/PriceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/ConfigurableTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/ConfigurableTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/PluginTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/PluginTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/VariationMatrixTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Type/VariationMatrixTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/TypeTransitionManager/Plugin/ConfigurableTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/TypeTransitionManager/Plugin/ConfigurableTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Validator/PluginTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/Validator/PluginTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/VariationHandlerTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Product/VariationHandlerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/ProductOptionProcessorTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/ProductOptionProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/ProductVariationsBuilderTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/ProductVariationsBuilderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Quote/Item/CartItemProcessorTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Quote/Item/CartItemProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Quote/Item/QuantityValidator/Initializer/Option/Plugin/ConfigurableProductTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/Quote/Item/QuantityValidator/Initializer/Option/Plugin/ConfigurableProductTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/ResourceModel/Attribute/OptionProviderTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/ResourceModel/Attribute/OptionProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/ResourceModel/Attribute/OptionSelectBuilderTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/ResourceModel/Attribute/OptionSelectBuilderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/ResourceModel/Product/LinkedProductSelectBuilderTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/ResourceModel/Product/LinkedProductSelectBuilderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/ResourceModel/Product/StockStatusBaseSelectProcessorTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/ResourceModel/Product/StockStatusBaseSelectProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/ResourceModel/Product/Type/Configurable/AttributeTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/ResourceModel/Product/Type/Configurable/AttributeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/ResourceModel/Product/Type/ConfigurableTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/ResourceModel/Product/Type/ConfigurableTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Model/SuggestedAttributeListTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Model/SuggestedAttributeListTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Observer/HideUnsupportedAttributeTypesTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Observer/HideUnsupportedAttributeTypesTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Plugin/Model/ResourceModel/Attribute/InStockOptionSelectBuilderTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Plugin/Model/ResourceModel/Attribute/InStockOptionSelectBuilderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Plugin/Model/ResourceModel/ProductTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Plugin/Model/ResourceModel/ProductTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Pricing/Price/ConfigurablePriceResolverTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Pricing/Price/ConfigurablePriceResolverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Pricing/Price/LowestPriceOptionsProviderTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Pricing/Price/LowestPriceOptionsProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Pricing/Render/FinalPriceBoxTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Pricing/Render/FinalPriceBoxTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/Component/Listing/AssociatedProduct/Columns/AttributesTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/Component/Listing/AssociatedProduct/Columns/AttributesTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/Component/Listing/AssociatedProduct/Columns/NameTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/Component/Listing/AssociatedProduct/Columns/NameTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/Component/Listing/AssociatedProduct/Columns/PriceTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/Component/Listing/AssociatedProduct/Columns/PriceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/CompositeTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/CompositeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ConfigurableAttributeSetHandlerTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ConfigurableAttributeSetHandlerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ConfigurablePanelTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ConfigurablePanelTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ConfigurablePriceTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ConfigurablePriceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ConfigurableQtyTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ConfigurableQtyTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/CustomOptionsTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/CustomOptionsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/StockDataTest.php b/app/code/Magento/ConfigurableProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/StockDataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Ui/Component/Listing/AssociatedProduct/Attribute/Repository.php b/app/code/Magento/ConfigurableProduct/Ui/Component/Listing/AssociatedProduct/Attribute/Repository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Ui/Component/Listing/AssociatedProduct/Columns.php b/app/code/Magento/ConfigurableProduct/Ui/Component/Listing/AssociatedProduct/Columns.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Ui/Component/Listing/AssociatedProduct/Columns/Attributes.php b/app/code/Magento/ConfigurableProduct/Ui/Component/Listing/AssociatedProduct/Columns/Attributes.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Ui/Component/Listing/AssociatedProduct/Columns/Name.php b/app/code/Magento/ConfigurableProduct/Ui/Component/Listing/AssociatedProduct/Columns/Name.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Ui/Component/Listing/AssociatedProduct/Columns/Price.php b/app/code/Magento/ConfigurableProduct/Ui/Component/Listing/AssociatedProduct/Columns/Price.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Ui/Component/Listing/AssociatedProduct/Filters.php b/app/code/Magento/ConfigurableProduct/Ui/Component/Listing/AssociatedProduct/Filters.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Attributes.php b/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Attributes.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/Composite.php b/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/Composite.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/ConfigurableAttributeSetHandler.php b/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/ConfigurableAttributeSetHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/ConfigurablePanel.php b/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/ConfigurablePanel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/ConfigurablePrice.php b/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/ConfigurablePrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/ConfigurableQty.php b/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/ConfigurableQty.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/CustomOptions.php b/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/CustomOptions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/Data/AssociatedProducts.php b/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/Data/AssociatedProducts.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/StockData.php b/app/code/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/StockData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/composer.json b/app/code/Magento/ConfigurableProduct/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/etc/adminhtml/di.xml b/app/code/Magento/ConfigurableProduct/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/etc/adminhtml/events.xml b/app/code/Magento/ConfigurableProduct/etc/adminhtml/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/etc/adminhtml/routes.xml b/app/code/Magento/ConfigurableProduct/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/etc/adminhtml/system.xml b/app/code/Magento/ConfigurableProduct/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/etc/config.xml b/app/code/Magento/ConfigurableProduct/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/etc/di.xml b/app/code/Magento/ConfigurableProduct/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/etc/extension_attributes.xml b/app/code/Magento/ConfigurableProduct/etc/extension_attributes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/etc/frontend/di.xml b/app/code/Magento/ConfigurableProduct/etc/frontend/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/etc/module.xml b/app/code/Magento/ConfigurableProduct/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/etc/product_types.xml b/app/code/Magento/ConfigurableProduct/etc/product_types.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/etc/sales.xml b/app/code/Magento/ConfigurableProduct/etc/sales.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/etc/webapi.xml b/app/code/Magento/ConfigurableProduct/etc/webapi.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/i18n/en_US.csv b/app/code/Magento/ConfigurableProduct/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/registration.php b/app/code/Magento/ConfigurableProduct/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_addattribute.xml b/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_addattribute.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_associated_grid.xml b/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_associated_grid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_configurable.xml b/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_configurable.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_downloadable.xml b/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_downloadable.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_new.xml b/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_new.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_set_edit.xml b/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_set_edit.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_simple.xml b/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_simple.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_view_type_configurable.xml b/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_view_type_configurable.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_virtual.xml b/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_virtual.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_wizard.xml b/app/code/Magento/ConfigurableProduct/view/adminhtml/layout/catalog_product_wizard.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/attribute/new/created.phtml b/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/attribute/new/created.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/attribute/set/js.phtml b/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/attribute/set/js.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/composite/fieldset/configurable.phtml b/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/composite/fieldset/configurable.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/attribute/steps/attributes_values.phtml b/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/attribute/steps/attributes_values.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/attribute/steps/bulk.phtml b/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/attribute/steps/bulk.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/attribute/steps/select_attributes.phtml b/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/attribute/steps/select_attributes.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/attribute/steps/summary.phtml b/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/attribute/steps/summary.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/super/config.phtml b/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/super/config.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/super/matrix.phtml b/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/super/matrix.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/super/wizard-ajax.phtml b/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/super/wizard-ajax.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/super/wizard.phtml b/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/catalog/product/edit/super/wizard.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/product/configurable/affected-attribute-set-selector/form.phtml b/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/product/configurable/affected-attribute-set-selector/form.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/product/configurable/affected-attribute-set-selector/js.phtml b/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/product/configurable/affected-attribute-set-selector/js.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/product/configurable/attribute-selector/js.phtml b/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/product/configurable/attribute-selector/js.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/product/configurable/stock/disabler.phtml b/app/code/Magento/ConfigurableProduct/view/adminhtml/templates/product/configurable/stock/disabler.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/ui_component/configurable_associated_product_listing.xml b/app/code/Magento/ConfigurableProduct/view/adminhtml/ui_component/configurable_associated_product_listing.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/ui_component/product_attributes_listing.xml b/app/code/Magento/ConfigurableProduct/view/adminhtml/ui_component/product_attributes_listing.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/ui_component/product_form.xml b/app/code/Magento/ConfigurableProduct/view/adminhtml/ui_component/product_form.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/css/configurable-product.css b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/css/configurable-product.css
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/associated-product-insert-listing.js b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/associated-product-insert-listing.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/container-configurable-handler.js b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/container-configurable-handler.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/custom-options-price-type.js b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/custom-options-price-type.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/custom-options-warning.js b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/custom-options-warning.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/dynamic-rows-configurable.js b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/dynamic-rows-configurable.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/file-uploader.js b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/file-uploader.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/modal-configurable.js b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/modal-configurable.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/price-configurable.js b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/components/price-configurable.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/configurable-type-handler.js b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/configurable-type-handler.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/configurable.js b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/configurable.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/options/price-type-handler.js b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/options/price-type-handler.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/paging/sizes.js b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/paging/sizes.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/product-grid.js b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/product-grid.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/steps/attributes_values.js b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/steps/attributes_values.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/steps/bulk.js b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/steps/bulk.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/steps/select_attributes.js b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/steps/select_attributes.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/steps/summary.js b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/steps/summary.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/variations.js b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/js/variations/variations.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/product/product.css b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/product/product.css
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/template/components/actions-list.html b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/template/components/actions-list.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/template/components/cell-html.html b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/template/components/cell-html.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/template/components/cell-status.html b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/template/components/cell-status.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/template/components/file-uploader.html b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/template/components/file-uploader.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/adminhtml/web/template/variations/steps/summary-grid.html b/app/code/Magento/ConfigurableProduct/view/adminhtml/web/template/variations/steps/summary-grid.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/base/layout/catalog_product_prices.xml b/app/code/Magento/ConfigurableProduct/view/base/layout/catalog_product_prices.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/base/templates/product/price/final_price.phtml b/app/code/Magento/ConfigurableProduct/view/base/templates/product/price/final_price.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/base/templates/product/price/tier_price.phtml b/app/code/Magento/ConfigurableProduct/view/base/templates/product/price/tier_price.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/frontend/layout/catalog_product_view_type_configurable.xml b/app/code/Magento/ConfigurableProduct/view/frontend/layout/catalog_product_view_type_configurable.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/frontend/layout/checkout_cart_configure_type_configurable.xml b/app/code/Magento/ConfigurableProduct/view/frontend/layout/checkout_cart_configure_type_configurable.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/frontend/layout/checkout_cart_item_renderers.xml b/app/code/Magento/ConfigurableProduct/view/frontend/layout/checkout_cart_item_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/frontend/layout/checkout_onepage_review_item_renderers.xml b/app/code/Magento/ConfigurableProduct/view/frontend/layout/checkout_onepage_review_item_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/frontend/requirejs-config.js b/app/code/Magento/ConfigurableProduct/view/frontend/requirejs-config.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/frontend/templates/js/components.phtml b/app/code/Magento/ConfigurableProduct/view/frontend/templates/js/components.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/frontend/templates/product/view/type/options/configurable.phtml b/app/code/Magento/ConfigurableProduct/view/frontend/templates/product/view/type/options/configurable.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/frontend/ui_component/widget_recently_compared.xml b/app/code/Magento/ConfigurableProduct/view/frontend/ui_component/widget_recently_compared.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/frontend/ui_component/widget_recently_viewed.xml b/app/code/Magento/ConfigurableProduct/view/frontend/ui_component/widget_recently_viewed.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/frontend/web/js/configurable-customer-data.js b/app/code/Magento/ConfigurableProduct/view/frontend/web/js/configurable-customer-data.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/frontend/web/js/configurable.js b/app/code/Magento/ConfigurableProduct/view/frontend/web/js/configurable.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/frontend/web/js/options-updater.js b/app/code/Magento/ConfigurableProduct/view/frontend/web/js/options-updater.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProduct/view/frontend/web/template/product/minimal_price.html b/app/code/Magento/ConfigurableProduct/view/frontend/web/template/product/minimal_price.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProductSales/LICENSE.txt b/app/code/Magento/ConfigurableProductSales/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProductSales/LICENSE_AFL.txt b/app/code/Magento/ConfigurableProductSales/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProductSales/Model/Order/Reorder/OrderedProductAvailabilityChecker.php b/app/code/Magento/ConfigurableProductSales/Model/Order/Reorder/OrderedProductAvailabilityChecker.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProductSales/README.md b/app/code/Magento/ConfigurableProductSales/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProductSales/composer.json b/app/code/Magento/ConfigurableProductSales/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProductSales/etc/di.xml b/app/code/Magento/ConfigurableProductSales/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProductSales/etc/module.xml b/app/code/Magento/ConfigurableProductSales/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ConfigurableProductSales/registration.php b/app/code/Magento/ConfigurableProductSales/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Contact/Block/ContactForm.php b/app/code/Magento/Contact/Block/ContactForm.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Contact/Controller/Index.php b/app/code/Magento/Contact/Controller/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Contact/Controller/Index/Index.php b/app/code/Magento/Contact/Controller/Index/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Contact/Controller/Index/Post.php b/app/code/Magento/Contact/Controller/Index/Post.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Contact/Helper/Data.php b/app/code/Magento/Contact/Helper/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Contact/LICENSE.txt b/app/code/Magento/Contact/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Contact/LICENSE_AFL.txt b/app/code/Magento/Contact/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Contact/Model/Config.php b/app/code/Magento/Contact/Model/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Contact/Model/ConfigInterface.php b/app/code/Magento/Contact/Model/ConfigInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Contact/Model/Mail.php b/app/code/Magento/Contact/Model/Mail.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Contact/Model/MailInterface.php b/app/code/Magento/Contact/Model/MailInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Contact/Model/System/Config/Backend/Links.php b/app/code/Magento/Contact/Model/System/Config/Backend/Links.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Contact/README.md b/app/code/Magento/Contact/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Contact/Test/Unit/Block/ContactFormTest.php b/app/code/Magento/Contact/Test/Unit/Block/ContactFormTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Contact/Test/Unit/Controller/Index/IndexTest.php b/app/code/Magento/Contact/Test/Unit/Controller/Index/IndexTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Contact/Test/Unit/Controller/Index/PostTest.php b/app/code/Magento/Contact/Test/Unit/Controller/Index/PostTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Contact/Test/Unit/Controller/IndexTest.php b/app/code/Magento/Contact/Test/Unit/Controller/IndexTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Contact/Test/Unit/Controller/Stub/IndexStub.php b/app/code/Magento/Contact/Test/Unit/Controller/Stub/IndexStub.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Contact/Test/Unit/Helper/DataTest.php b/app/code/Magento/Contact/Test/Unit/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Contact/Test/Unit/Model/MailTest.php b/app/code/Magento/Contact/Test/Unit/Model/MailTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Contact/Test/Unit/Model/System/Config/Backend/LinksTest.php b/app/code/Magento/Contact/Test/Unit/Model/System/Config/Backend/LinksTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Contact/composer.json b/app/code/Magento/Contact/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Contact/etc/acl.xml b/app/code/Magento/Contact/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Contact/etc/adminhtml/system.xml b/app/code/Magento/Contact/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Contact/etc/config.xml b/app/code/Magento/Contact/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Contact/etc/di.xml b/app/code/Magento/Contact/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Contact/etc/email_templates.xml b/app/code/Magento/Contact/etc/email_templates.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Contact/etc/frontend/di.xml b/app/code/Magento/Contact/etc/frontend/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Contact/etc/frontend/page_types.xml b/app/code/Magento/Contact/etc/frontend/page_types.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Contact/etc/frontend/routes.xml b/app/code/Magento/Contact/etc/frontend/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Contact/etc/module.xml b/app/code/Magento/Contact/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Contact/i18n/en_US.csv b/app/code/Magento/Contact/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Contact/registration.php b/app/code/Magento/Contact/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Contact/view/frontend/email/submitted_form.html b/app/code/Magento/Contact/view/frontend/email/submitted_form.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Contact/view/frontend/layout/contact_index_index.xml b/app/code/Magento/Contact/view/frontend/layout/contact_index_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Contact/view/frontend/layout/default.xml b/app/code/Magento/Contact/view/frontend/layout/default.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Contact/view/frontend/templates/form.phtml b/app/code/Magento/Contact/view/frontend/templates/form.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cookie/Block/Html/Notices.php b/app/code/Magento/Cookie/Block/Html/Notices.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cookie/Block/RequireCookie.php b/app/code/Magento/Cookie/Block/RequireCookie.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cookie/Controller/Index/NoCookies.php b/app/code/Magento/Cookie/Controller/Index/NoCookies.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cookie/Helper/Cookie.php b/app/code/Magento/Cookie/Helper/Cookie.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cookie/LICENSE.txt b/app/code/Magento/Cookie/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cookie/LICENSE_AFL.txt b/app/code/Magento/Cookie/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cookie/Model/Config/Backend/Cookie.php b/app/code/Magento/Cookie/Model/Config/Backend/Cookie.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cookie/Model/Config/Backend/Domain.php b/app/code/Magento/Cookie/Model/Config/Backend/Domain.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cookie/Model/Config/Backend/Lifetime.php b/app/code/Magento/Cookie/Model/Config/Backend/Lifetime.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cookie/Model/Config/Backend/Path.php b/app/code/Magento/Cookie/Model/Config/Backend/Path.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cookie/README.md b/app/code/Magento/Cookie/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cookie/Test/Unit/Controller/Index/NoCookiesTest.php b/app/code/Magento/Cookie/Test/Unit/Controller/Index/NoCookiesTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cookie/Test/Unit/Helper/CookieTest.php b/app/code/Magento/Cookie/Test/Unit/Helper/CookieTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cookie/Test/Unit/Model/Config/Backend/DomainTest.php b/app/code/Magento/Cookie/Test/Unit/Model/Config/Backend/DomainTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cookie/Test/Unit/Model/Config/Backend/LifetimeTest.php b/app/code/Magento/Cookie/Test/Unit/Model/Config/Backend/LifetimeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cookie/Test/Unit/Model/Config/Backend/PathTest.php b/app/code/Magento/Cookie/Test/Unit/Model/Config/Backend/PathTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cookie/composer.json b/app/code/Magento/Cookie/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cookie/etc/adminhtml/system.xml b/app/code/Magento/Cookie/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cookie/etc/config.xml b/app/code/Magento/Cookie/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cookie/etc/di.xml b/app/code/Magento/Cookie/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cookie/etc/frontend/routes.xml b/app/code/Magento/Cookie/etc/frontend/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cookie/etc/module.xml b/app/code/Magento/Cookie/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cookie/i18n/en_US.csv b/app/code/Magento/Cookie/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cookie/registration.php b/app/code/Magento/Cookie/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cookie/view/frontend/layout/default.xml b/app/code/Magento/Cookie/view/frontend/layout/default.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cookie/view/frontend/requirejs-config.js b/app/code/Magento/Cookie/view/frontend/requirejs-config.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cookie/view/frontend/templates/html/notices.phtml b/app/code/Magento/Cookie/view/frontend/templates/html/notices.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cookie/view/frontend/templates/require_cookie.phtml b/app/code/Magento/Cookie/view/frontend/templates/require_cookie.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cookie/view/frontend/web/js/notices.js b/app/code/Magento/Cookie/view/frontend/web/js/notices.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cookie/view/frontend/web/js/require-cookie.js b/app/code/Magento/Cookie/view/frontend/web/js/require-cookie.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/Console/Command/CronCommand.php b/app/code/Magento/Cron/Console/Command/CronCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/Console/Command/CronInstallCommand.php b/app/code/Magento/Cron/Console/Command/CronInstallCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/Console/Command/CronRemoveCommand.php b/app/code/Magento/Cron/Console/Command/CronRemoveCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/LICENSE.txt b/app/code/Magento/Cron/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/LICENSE_AFL.txt b/app/code/Magento/Cron/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/Model/Backend/Config/Structure/Converter.php b/app/code/Magento/Cron/Model/Backend/Config/Structure/Converter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/Model/Config.php b/app/code/Magento/Cron/Model/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/Model/Config/Backend/Product/Alert.php b/app/code/Magento/Cron/Model/Config/Backend/Product/Alert.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/Model/Config/Backend/Sitemap.php b/app/code/Magento/Cron/Model/Config/Backend/Sitemap.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/Model/Config/Converter/Db.php b/app/code/Magento/Cron/Model/Config/Converter/Db.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/Model/Config/Converter/Xml.php b/app/code/Magento/Cron/Model/Config/Converter/Xml.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/Model/Config/Data.php b/app/code/Magento/Cron/Model/Config/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/Model/Config/Reader/Db.php b/app/code/Magento/Cron/Model/Config/Reader/Db.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/Model/Config/Reader/Xml.php b/app/code/Magento/Cron/Model/Config/Reader/Xml.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/Model/Config/SchemaLocator.php b/app/code/Magento/Cron/Model/Config/SchemaLocator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/Model/Config/Source/Frequency.php b/app/code/Magento/Cron/Model/Config/Source/Frequency.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/Model/ConfigInterface.php b/app/code/Magento/Cron/Model/ConfigInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/Model/Groups/Config/Converter/Xml.php b/app/code/Magento/Cron/Model/Groups/Config/Converter/Xml.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/Model/Groups/Config/Data.php b/app/code/Magento/Cron/Model/Groups/Config/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/Model/Groups/Config/Reader/Xml.php b/app/code/Magento/Cron/Model/Groups/Config/Reader/Xml.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/Model/Groups/Config/SchemaLocator.php b/app/code/Magento/Cron/Model/Groups/Config/SchemaLocator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/Model/ResourceModel/Schedule.php b/app/code/Magento/Cron/Model/ResourceModel/Schedule.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/Model/ResourceModel/Schedule/Collection.php b/app/code/Magento/Cron/Model/ResourceModel/Schedule/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/Model/Schedule.php b/app/code/Magento/Cron/Model/Schedule.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/Model/System/Config/Initial/Converter.php b/app/code/Magento/Cron/Model/System/Config/Initial/Converter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/Observer/ProcessCronQueueObserver.php b/app/code/Magento/Cron/Observer/ProcessCronQueueObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/README.md b/app/code/Magento/Cron/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/Setup/InstallSchema.php b/app/code/Magento/Cron/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/Setup/Recurring.php b/app/code/Magento/Cron/Setup/Recurring.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/Test/Unit/Console/Command/CronCommandTest.php b/app/code/Magento/Cron/Test/Unit/Console/Command/CronCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/Test/Unit/Console/Command/CronInstallCommandTest.php b/app/code/Magento/Cron/Test/Unit/Console/Command/CronInstallCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/Test/Unit/Console/Command/CronRemoveCommandTest.php b/app/code/Magento/Cron/Test/Unit/Console/Command/CronRemoveCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/Test/Unit/Model/Config/Converter/DbTest.php b/app/code/Magento/Cron/Test/Unit/Model/Config/Converter/DbTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/Test/Unit/Model/Config/Converter/XmlTest.php b/app/code/Magento/Cron/Test/Unit/Model/Config/Converter/XmlTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/Test/Unit/Model/Config/DataTest.php b/app/code/Magento/Cron/Test/Unit/Model/Config/DataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/Test/Unit/Model/Config/Reader/DbTest.php b/app/code/Magento/Cron/Test/Unit/Model/Config/Reader/DbTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/Test/Unit/Model/Config/Reader/XmlTest.php b/app/code/Magento/Cron/Test/Unit/Model/Config/Reader/XmlTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/Test/Unit/Model/Config/SchemaLocatorTest.php b/app/code/Magento/Cron/Test/Unit/Model/Config/SchemaLocatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/Test/Unit/Model/Config/XsdTest.php b/app/code/Magento/Cron/Test/Unit/Model/Config/XsdTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_invalid.xml b/app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_invalid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_invalid_duplicates.xml b/app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_invalid_duplicates.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_invalid_node_typo.xml b/app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_invalid_node_typo.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_invalid_without_instance.xml b/app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_invalid_without_instance.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_invalid_without_method.xml b/app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_invalid_without_method.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_invalid_without_name.xml b/app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_invalid_without_name.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_valid.xml b/app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_valid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_valid_without_schedule.xml b/app/code/Magento/Cron/Test/Unit/Model/Config/_files/crontab_valid_without_schedule.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/Test/Unit/Model/ConfigTest.php b/app/code/Magento/Cron/Test/Unit/Model/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/Test/Unit/Model/CronJobException.php b/app/code/Magento/Cron/Test/Unit/Model/CronJobException.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/Test/Unit/Model/Groups/Config/Converter/XmlTest.php b/app/code/Magento/Cron/Test/Unit/Model/Groups/Config/Converter/XmlTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/Test/Unit/Model/ScheduleTest.php b/app/code/Magento/Cron/Test/Unit/Model/ScheduleTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/Test/Unit/Observer/ProcessCronQueueObserverTest.php b/app/code/Magento/Cron/Test/Unit/Observer/ProcessCronQueueObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/composer.json b/app/code/Magento/Cron/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/etc/adminhtml/system.xml b/app/code/Magento/Cron/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/etc/cron_groups.xml b/app/code/Magento/Cron/etc/cron_groups.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/etc/cron_groups.xsd b/app/code/Magento/Cron/etc/cron_groups.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/etc/crontab.xsd b/app/code/Magento/Cron/etc/crontab.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/etc/crontab/events.xml b/app/code/Magento/Cron/etc/crontab/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/etc/di.xml b/app/code/Magento/Cron/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/etc/module.xml b/app/code/Magento/Cron/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/i18n/en_US.csv b/app/code/Magento/Cron/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Cron/registration.php b/app/code/Magento/Cron/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CurrencySymbol/Block/Adminhtml/System/Currency.php b/app/code/Magento/CurrencySymbol/Block/Adminhtml/System/Currency.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CurrencySymbol/Block/Adminhtml/System/Currency/Rate/Matrix.php b/app/code/Magento/CurrencySymbol/Block/Adminhtml/System/Currency/Rate/Matrix.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CurrencySymbol/Block/Adminhtml/System/Currency/Rate/Services.php b/app/code/Magento/CurrencySymbol/Block/Adminhtml/System/Currency/Rate/Services.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CurrencySymbol/Block/Adminhtml/System/Currencysymbol.php b/app/code/Magento/CurrencySymbol/Block/Adminhtml/System/Currencysymbol.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currency.php b/app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currency.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currency/FetchRates.php b/app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currency/FetchRates.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currency/Index.php b/app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currency/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currency/SaveRates.php b/app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currency/SaveRates.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currencysymbol.php b/app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currencysymbol.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currencysymbol/Index.php b/app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currencysymbol/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currencysymbol/Save.php b/app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currencysymbol/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CurrencySymbol/LICENSE.txt b/app/code/Magento/CurrencySymbol/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CurrencySymbol/LICENSE_AFL.txt b/app/code/Magento/CurrencySymbol/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CurrencySymbol/Model/System/Currencysymbol.php b/app/code/Magento/CurrencySymbol/Model/System/Currencysymbol.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CurrencySymbol/Observer/CurrencyDisplayOptions.php b/app/code/Magento/CurrencySymbol/Observer/CurrencyDisplayOptions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CurrencySymbol/README.md b/app/code/Magento/CurrencySymbol/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CurrencySymbol/Setup/UpgradeData.php b/app/code/Magento/CurrencySymbol/Setup/UpgradeData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CurrencySymbol/Test/Unit/Block/Adminhtml/System/Currency/Rate/MatrixTest.php b/app/code/Magento/CurrencySymbol/Test/Unit/Block/Adminhtml/System/Currency/Rate/MatrixTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CurrencySymbol/Test/Unit/Block/Adminhtml/System/Currency/Rate/ServicesTest.php b/app/code/Magento/CurrencySymbol/Test/Unit/Block/Adminhtml/System/Currency/Rate/ServicesTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CurrencySymbol/Test/Unit/Block/Adminhtml/System/CurrencyTest.php b/app/code/Magento/CurrencySymbol/Test/Unit/Block/Adminhtml/System/CurrencyTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CurrencySymbol/Test/Unit/Block/Adminhtml/System/CurrencysymbolTest.php b/app/code/Magento/CurrencySymbol/Test/Unit/Block/Adminhtml/System/CurrencysymbolTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CurrencySymbol/Test/Unit/Controller/Adminhtml/System/Currencysymbol/IndexTest.php b/app/code/Magento/CurrencySymbol/Test/Unit/Controller/Adminhtml/System/Currencysymbol/IndexTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CurrencySymbol/Test/Unit/Controller/Adminhtml/System/Currencysymbol/SaveTest.php b/app/code/Magento/CurrencySymbol/Test/Unit/Controller/Adminhtml/System/Currencysymbol/SaveTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CurrencySymbol/Test/Unit/Model/System/CurrencysymbolTest.php b/app/code/Magento/CurrencySymbol/Test/Unit/Model/System/CurrencysymbolTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CurrencySymbol/Test/Unit/Observer/CurrencyDisplayOptionsTest.php b/app/code/Magento/CurrencySymbol/Test/Unit/Observer/CurrencyDisplayOptionsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CurrencySymbol/composer.json b/app/code/Magento/CurrencySymbol/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CurrencySymbol/etc/acl.xml b/app/code/Magento/CurrencySymbol/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CurrencySymbol/etc/adminhtml/menu.xml b/app/code/Magento/CurrencySymbol/etc/adminhtml/menu.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CurrencySymbol/etc/adminhtml/routes.xml b/app/code/Magento/CurrencySymbol/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CurrencySymbol/etc/di.xml b/app/code/Magento/CurrencySymbol/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CurrencySymbol/etc/events.xml b/app/code/Magento/CurrencySymbol/etc/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CurrencySymbol/etc/module.xml b/app/code/Magento/CurrencySymbol/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CurrencySymbol/i18n/en_US.csv b/app/code/Magento/CurrencySymbol/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CurrencySymbol/registration.php b/app/code/Magento/CurrencySymbol/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CurrencySymbol/view/adminhtml/layout/adminhtml_system_currency_index.xml b/app/code/Magento/CurrencySymbol/view/adminhtml/layout/adminhtml_system_currency_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CurrencySymbol/view/adminhtml/layout/adminhtml_system_currencysymbol_index.xml b/app/code/Magento/CurrencySymbol/view/adminhtml/layout/adminhtml_system_currencysymbol_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CurrencySymbol/view/adminhtml/templates/grid.phtml b/app/code/Magento/CurrencySymbol/view/adminhtml/templates/grid.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CurrencySymbol/view/adminhtml/templates/system/currency/rate/matrix.phtml b/app/code/Magento/CurrencySymbol/view/adminhtml/templates/system/currency/rate/matrix.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CurrencySymbol/view/adminhtml/templates/system/currency/rate/services.phtml b/app/code/Magento/CurrencySymbol/view/adminhtml/templates/system/currency/rate/services.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CurrencySymbol/view/adminhtml/templates/system/currency/rates.phtml b/app/code/Magento/CurrencySymbol/view/adminhtml/templates/system/currency/rates.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Api/AccountManagementInterface.php b/app/code/Magento/Customer/Api/AccountManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Api/AddressMetadataInterface.php b/app/code/Magento/Customer/Api/AddressMetadataInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Api/AddressMetadataManagementInterface.php b/app/code/Magento/Customer/Api/AddressMetadataManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Api/AddressRepositoryInterface.php b/app/code/Magento/Customer/Api/AddressRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Api/CustomerGroupConfigInterface.php b/app/code/Magento/Customer/Api/CustomerGroupConfigInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Api/CustomerManagementInterface.php b/app/code/Magento/Customer/Api/CustomerManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Api/CustomerMetadataInterface.php b/app/code/Magento/Customer/Api/CustomerMetadataInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Api/CustomerMetadataManagementInterface.php b/app/code/Magento/Customer/Api/CustomerMetadataManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Api/CustomerNameGenerationInterface.php b/app/code/Magento/Customer/Api/CustomerNameGenerationInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Api/CustomerRepositoryInterface.php b/app/code/Magento/Customer/Api/CustomerRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Api/Data/AddressInterface.php b/app/code/Magento/Customer/Api/Data/AddressInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Api/Data/AddressSearchResultsInterface.php b/app/code/Magento/Customer/Api/Data/AddressSearchResultsInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Api/Data/AttributeMetadataInterface.php b/app/code/Magento/Customer/Api/Data/AttributeMetadataInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Api/Data/CustomerInterface.php b/app/code/Magento/Customer/Api/Data/CustomerInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Api/Data/CustomerSearchResultsInterface.php b/app/code/Magento/Customer/Api/Data/CustomerSearchResultsInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Api/Data/GroupInterface.php b/app/code/Magento/Customer/Api/Data/GroupInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Api/Data/GroupSearchResultsInterface.php b/app/code/Magento/Customer/Api/Data/GroupSearchResultsInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Api/Data/OptionInterface.php b/app/code/Magento/Customer/Api/Data/OptionInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Api/Data/RegionInterface.php b/app/code/Magento/Customer/Api/Data/RegionInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Api/Data/ValidationResultsInterface.php b/app/code/Magento/Customer/Api/Data/ValidationResultsInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Api/Data/ValidationRuleInterface.php b/app/code/Magento/Customer/Api/Data/ValidationRuleInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Api/GroupManagementInterface.php b/app/code/Magento/Customer/Api/GroupManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Api/GroupRepositoryInterface.php b/app/code/Magento/Customer/Api/GroupRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Api/MetadataInterface.php b/app/code/Magento/Customer/Api/MetadataInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Api/MetadataManagementInterface.php b/app/code/Magento/Customer/Api/MetadataManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Account/AuthenticationPopup.php b/app/code/Magento/Customer/Block/Account/AuthenticationPopup.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Account/AuthorizationLink.php b/app/code/Magento/Customer/Block/Account/AuthorizationLink.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Account/Customer.php b/app/code/Magento/Customer/Block/Account/Customer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Account/Dashboard.php b/app/code/Magento/Customer/Block/Account/Dashboard.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Account/Dashboard/Address.php b/app/code/Magento/Customer/Block/Account/Dashboard/Address.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Account/Dashboard/Info.php b/app/code/Magento/Customer/Block/Account/Dashboard/Info.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Account/Delimiter.php b/app/code/Magento/Customer/Block/Account/Delimiter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Account/Forgotpassword.php b/app/code/Magento/Customer/Block/Account/Forgotpassword.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Account/Link.php b/app/code/Magento/Customer/Block/Account/Link.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Account/Navigation.php b/app/code/Magento/Customer/Block/Account/Navigation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Account/RegisterLink.php b/app/code/Magento/Customer/Block/Account/RegisterLink.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Account/Resetpassword.php b/app/code/Magento/Customer/Block/Account/Resetpassword.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Account/SortLink.php b/app/code/Magento/Customer/Block/Account/SortLink.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Account/SortLinkInterface.php b/app/code/Magento/Customer/Block/Account/SortLinkInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Address/Book.php b/app/code/Magento/Customer/Block/Address/Book.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Address/Edit.php b/app/code/Magento/Customer/Block/Address/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Address/Renderer/DefaultRenderer.php b/app/code/Magento/Customer/Block/Address/Renderer/DefaultRenderer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Address/Renderer/RendererInterface.php b/app/code/Magento/Customer/Block/Address/Renderer/RendererInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit.php b/app/code/Magento/Customer/Block/Adminhtml/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/BackButton.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/BackButton.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/DeleteButton.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/DeleteButton.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/Form.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/GenericButton.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/GenericButton.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/InvalidateTokenButton.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/InvalidateTokenButton.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/OrderButton.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/OrderButton.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/Renderer/Region.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/Renderer/Region.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/ResetButton.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/ResetButton.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/ResetPasswordButton.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/ResetPasswordButton.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/SaveAndContinueButton.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/SaveAndContinueButton.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/SaveButton.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/SaveButton.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Cart.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Cart.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Carts.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Carts.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/GenericMetadata.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/GenericMetadata.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Newsletter.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Newsletter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Newsletter/Grid.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Newsletter/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Newsletter/Grid/Filter/Status.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Newsletter/Grid/Filter/Status.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Newsletter/Grid/Renderer/Action.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Newsletter/Grid/Renderer/Action.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Newsletter/Grid/Renderer/Status.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Newsletter/Grid/Renderer/Status.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Orders.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Orders.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Reviews.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Reviews.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/View.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/View.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/View/Cart.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/View/Cart.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/View/Grid/Renderer/Item.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/View/Grid/Renderer/Item.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/View/PersonalInfo.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/View/PersonalInfo.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/View/Sales.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/View/Sales.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/View/Wishlist.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/View/Wishlist.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Wishlist/Grid/Renderer/Description.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/Tab/Wishlist/Grid/Renderer/Description.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Adminhtml/Edit/UnlockButton.php b/app/code/Magento/Customer/Block/Adminhtml/Edit/UnlockButton.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Adminhtml/Form/Element/Boolean.php b/app/code/Magento/Customer/Block/Adminhtml/Form/Element/Boolean.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Adminhtml/Form/Element/File.php b/app/code/Magento/Customer/Block/Adminhtml/Form/Element/File.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Adminhtml/Form/Element/Image.php b/app/code/Magento/Customer/Block/Adminhtml/Form/Element/Image.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Adminhtml/Grid/Filter/Country.php b/app/code/Magento/Customer/Block/Adminhtml/Grid/Filter/Country.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Adminhtml/Grid/Renderer/Multiaction.php b/app/code/Magento/Customer/Block/Adminhtml/Grid/Renderer/Multiaction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Adminhtml/Group.php b/app/code/Magento/Customer/Block/Adminhtml/Group.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Adminhtml/Group/Edit.php b/app/code/Magento/Customer/Block/Adminhtml/Group/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Adminhtml/Group/Edit/Form.php b/app/code/Magento/Customer/Block/Adminhtml/Group/Edit/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Adminhtml/Sales/Order/Address/Form/Renderer/Vat.php b/app/code/Magento/Customer/Block/Adminhtml/Sales/Order/Address/Form/Renderer/Vat.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Adminhtml/System/Config/Validatevat.php b/app/code/Magento/Customer/Block/Adminhtml/System/Config/Validatevat.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/CustomerData.php b/app/code/Magento/Customer/Block/CustomerData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/CustomerScopeData.php b/app/code/Magento/Customer/Block/CustomerScopeData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Form/Edit.php b/app/code/Magento/Customer/Block/Form/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Form/Login.php b/app/code/Magento/Customer/Block/Form/Login.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Form/Login/Info.php b/app/code/Magento/Customer/Block/Form/Login/Info.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Form/Register.php b/app/code/Magento/Customer/Block/Form/Register.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Newsletter.php b/app/code/Magento/Customer/Block/Newsletter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/SectionConfig.php b/app/code/Magento/Customer/Block/SectionConfig.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Widget/AbstractWidget.php b/app/code/Magento/Customer/Block/Widget/AbstractWidget.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Widget/Company.php b/app/code/Magento/Customer/Block/Widget/Company.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Widget/Dob.php b/app/code/Magento/Customer/Block/Widget/Dob.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Widget/Fax.php b/app/code/Magento/Customer/Block/Widget/Fax.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Widget/Gender.php b/app/code/Magento/Customer/Block/Widget/Gender.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Widget/Name.php b/app/code/Magento/Customer/Block/Widget/Name.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Widget/Taxvat.php b/app/code/Magento/Customer/Block/Widget/Taxvat.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Block/Widget/Telephone.php b/app/code/Magento/Customer/Block/Widget/Telephone.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Console/Command/UpgradeHashAlgorithmCommand.php b/app/code/Magento/Customer/Console/Command/UpgradeHashAlgorithmCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/AbstractAccount.php b/app/code/Magento/Customer/Controller/AbstractAccount.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Account/Confirm.php b/app/code/Magento/Customer/Controller/Account/Confirm.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Account/Confirmation.php b/app/code/Magento/Customer/Controller/Account/Confirmation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Account/Create.php b/app/code/Magento/Customer/Controller/Account/Create.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Account/CreatePassword.php b/app/code/Magento/Customer/Controller/Account/CreatePassword.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Account/CreatePost.php b/app/code/Magento/Customer/Controller/Account/CreatePost.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Account/Edit.php b/app/code/Magento/Customer/Controller/Account/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Account/EditPost.php b/app/code/Magento/Customer/Controller/Account/EditPost.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Account/ForgotPassword.php b/app/code/Magento/Customer/Controller/Account/ForgotPassword.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Account/ForgotPasswordPost.php b/app/code/Magento/Customer/Controller/Account/ForgotPasswordPost.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Account/Index.php b/app/code/Magento/Customer/Controller/Account/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Account/Login.php b/app/code/Magento/Customer/Controller/Account/Login.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Account/LoginPost.php b/app/code/Magento/Customer/Controller/Account/LoginPost.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Account/Logout.php b/app/code/Magento/Customer/Controller/Account/Logout.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Account/LogoutSuccess.php b/app/code/Magento/Customer/Controller/Account/LogoutSuccess.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Account/ResetPasswordPost.php b/app/code/Magento/Customer/Controller/Account/ResetPasswordPost.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/AccountInterface.php b/app/code/Magento/Customer/Controller/AccountInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Address.php b/app/code/Magento/Customer/Controller/Address.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Address/Delete.php b/app/code/Magento/Customer/Controller/Address/Delete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Address/Edit.php b/app/code/Magento/Customer/Controller/Address/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Address/Form.php b/app/code/Magento/Customer/Controller/Address/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Address/FormPost.php b/app/code/Magento/Customer/Controller/Address/FormPost.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Address/Index.php b/app/code/Magento/Customer/Controller/Address/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Address/NewAction.php b/app/code/Magento/Customer/Controller/Address/NewAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Cart/Product/Composite/Cart.php b/app/code/Magento/Customer/Controller/Adminhtml/Cart/Product/Composite/Cart.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Cart/Product/Composite/Cart/Configure.php b/app/code/Magento/Customer/Controller/Adminhtml/Cart/Product/Composite/Cart/Configure.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Cart/Product/Composite/Cart/Update.php b/app/code/Magento/Customer/Controller/Adminhtml/Cart/Product/Composite/Cart/Update.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Customer/InvalidateToken.php b/app/code/Magento/Customer/Controller/Adminhtml/Customer/InvalidateToken.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Adminhtml/File/Address/Upload.php b/app/code/Magento/Customer/Controller/Adminhtml/File/Address/Upload.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Adminhtml/File/Customer/Upload.php b/app/code/Magento/Customer/Controller/Adminhtml/File/Customer/Upload.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Group.php b/app/code/Magento/Customer/Controller/Adminhtml/Group.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Group/Delete.php b/app/code/Magento/Customer/Controller/Adminhtml/Group/Delete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Group/Edit.php b/app/code/Magento/Customer/Controller/Adminhtml/Group/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Group/Index.php b/app/code/Magento/Customer/Controller/Adminhtml/Group/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Group/NewAction.php b/app/code/Magento/Customer/Controller/Adminhtml/Group/NewAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Group/Save.php b/app/code/Magento/Customer/Controller/Adminhtml/Group/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Index.php b/app/code/Magento/Customer/Controller/Adminhtml/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Index/AbstractMassAction.php b/app/code/Magento/Customer/Controller/Adminhtml/Index/AbstractMassAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Index/Cart.php b/app/code/Magento/Customer/Controller/Adminhtml/Index/Cart.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Index/Carts.php b/app/code/Magento/Customer/Controller/Adminhtml/Index/Carts.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Index/Delete.php b/app/code/Magento/Customer/Controller/Adminhtml/Index/Delete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Index/Edit.php b/app/code/Magento/Customer/Controller/Adminhtml/Index/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Index/Index.php b/app/code/Magento/Customer/Controller/Adminhtml/Index/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Index/InlineEdit.php b/app/code/Magento/Customer/Controller/Adminhtml/Index/InlineEdit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Index/LastOrders.php b/app/code/Magento/Customer/Controller/Adminhtml/Index/LastOrders.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Index/MassAssignGroup.php b/app/code/Magento/Customer/Controller/Adminhtml/Index/MassAssignGroup.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Index/MassDelete.php b/app/code/Magento/Customer/Controller/Adminhtml/Index/MassDelete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Index/MassSubscribe.php b/app/code/Magento/Customer/Controller/Adminhtml/Index/MassSubscribe.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Index/MassUnsubscribe.php b/app/code/Magento/Customer/Controller/Adminhtml/Index/MassUnsubscribe.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Index/NewAction.php b/app/code/Magento/Customer/Controller/Adminhtml/Index/NewAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Index/Newsletter.php b/app/code/Magento/Customer/Controller/Adminhtml/Index/Newsletter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Index/Orders.php b/app/code/Magento/Customer/Controller/Adminhtml/Index/Orders.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Index/ProductReviews.php b/app/code/Magento/Customer/Controller/Adminhtml/Index/ProductReviews.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Index/ResetPassword.php b/app/code/Magento/Customer/Controller/Adminhtml/Index/ResetPassword.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Index/Save.php b/app/code/Magento/Customer/Controller/Adminhtml/Index/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Index/Validate.php b/app/code/Magento/Customer/Controller/Adminhtml/Index/Validate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Index/ViewCart.php b/app/code/Magento/Customer/Controller/Adminhtml/Index/ViewCart.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Index/ViewWishlist.php b/app/code/Magento/Customer/Controller/Adminhtml/Index/ViewWishlist.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Index/Viewfile.php b/app/code/Magento/Customer/Controller/Adminhtml/Index/Viewfile.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Index/Wishlist.php b/app/code/Magento/Customer/Controller/Adminhtml/Index/Wishlist.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Locks/Unlock.php b/app/code/Magento/Customer/Controller/Adminhtml/Locks/Unlock.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Online/Index.php b/app/code/Magento/Customer/Controller/Adminhtml/Online/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Adminhtml/System/Config/Validatevat.php b/app/code/Magento/Customer/Controller/Adminhtml/System/Config/Validatevat.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Adminhtml/System/Config/Validatevat/Validate.php b/app/code/Magento/Customer/Controller/Adminhtml/System/Config/Validatevat/Validate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Adminhtml/System/Config/Validatevat/ValidateAdvanced.php b/app/code/Magento/Customer/Controller/Adminhtml/System/Config/Validatevat/ValidateAdvanced.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Wishlist/Product/Composite/Wishlist.php b/app/code/Magento/Customer/Controller/Adminhtml/Wishlist/Product/Composite/Wishlist.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Wishlist/Product/Composite/Wishlist/Configure.php b/app/code/Magento/Customer/Controller/Adminhtml/Wishlist/Product/Composite/Wishlist/Configure.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Adminhtml/Wishlist/Product/Composite/Wishlist/Update.php b/app/code/Magento/Customer/Controller/Adminhtml/Wishlist/Product/Composite/Wishlist/Update.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Ajax/Login.php b/app/code/Magento/Customer/Controller/Ajax/Login.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Ajax/Logout.php b/app/code/Magento/Customer/Controller/Ajax/Logout.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Plugin/Account.php b/app/code/Magento/Customer/Controller/Plugin/Account.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/RegistryConstants.php b/app/code/Magento/Customer/Controller/RegistryConstants.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Review.php b/app/code/Magento/Customer/Controller/Review.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Review/Index.php b/app/code/Magento/Customer/Controller/Review/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Review/View.php b/app/code/Magento/Customer/Controller/Review/View.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Controller/Section/Load.php b/app/code/Magento/Customer/Controller/Section/Load.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/CustomerData/Customer.php b/app/code/Magento/Customer/CustomerData/Customer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/CustomerData/JsLayoutDataProviderInterface.php b/app/code/Magento/Customer/CustomerData/JsLayoutDataProviderInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/CustomerData/JsLayoutDataProviderPool.php b/app/code/Magento/Customer/CustomerData/JsLayoutDataProviderPool.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/CustomerData/JsLayoutDataProviderPoolInterface.php b/app/code/Magento/Customer/CustomerData/JsLayoutDataProviderPoolInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/CustomerData/Plugin/SessionChecker.php b/app/code/Magento/Customer/CustomerData/Plugin/SessionChecker.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/CustomerData/SchemaLocator.php b/app/code/Magento/Customer/CustomerData/SchemaLocator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/CustomerData/Section/Identifier.php b/app/code/Magento/Customer/CustomerData/Section/Identifier.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/CustomerData/SectionConfigConverter.php b/app/code/Magento/Customer/CustomerData/SectionConfigConverter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/CustomerData/SectionPool.php b/app/code/Magento/Customer/CustomerData/SectionPool.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/CustomerData/SectionPoolInterface.php b/app/code/Magento/Customer/CustomerData/SectionPoolInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/CustomerData/SectionSourceInterface.php b/app/code/Magento/Customer/CustomerData/SectionSourceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Helper/Address.php b/app/code/Magento/Customer/Helper/Address.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Helper/Session/CurrentCustomer.php b/app/code/Magento/Customer/Helper/Session/CurrentCustomer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Helper/Session/CurrentCustomerAddress.php b/app/code/Magento/Customer/Helper/Session/CurrentCustomerAddress.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Helper/View.php b/app/code/Magento/Customer/Helper/View.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/LICENSE.txt b/app/code/Magento/Customer/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/LICENSE_AFL.txt b/app/code/Magento/Customer/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Account/Redirect.php b/app/code/Magento/Customer/Model/Account/Redirect.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/AccountConfirmation.php b/app/code/Magento/Customer/Model/AccountConfirmation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/AccountManagement.php b/app/code/Magento/Customer/Model/AccountManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Address.php b/app/code/Magento/Customer/Model/Address.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Address/AbstractAddress.php b/app/code/Magento/Customer/Model/Address/AbstractAddress.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Address/AddressModelInterface.php b/app/code/Magento/Customer/Model/Address/AddressModelInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Address/Config.php b/app/code/Magento/Customer/Model/Address/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Address/Config/Converter.php b/app/code/Magento/Customer/Model/Address/Config/Converter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Address/Config/Reader.php b/app/code/Magento/Customer/Model/Address/Config/Reader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Address/Config/SchemaLocator.php b/app/code/Magento/Customer/Model/Address/Config/SchemaLocator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Address/CustomAttributeList.php b/app/code/Magento/Customer/Model/Address/CustomAttributeList.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Address/CustomAttributeListInterface.php b/app/code/Magento/Customer/Model/Address/CustomAttributeListInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Address/Form.php b/app/code/Magento/Customer/Model/Address/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Address/Mapper.php b/app/code/Magento/Customer/Model/Address/Mapper.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Address/Validator/Postcode.php b/app/code/Magento/Customer/Model/Address/Validator/Postcode.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/AddressRegistry.php b/app/code/Magento/Customer/Model/AddressRegistry.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/App/Action/ContextPlugin.php b/app/code/Magento/Customer/Model/App/Action/ContextPlugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Attribute.php b/app/code/Magento/Customer/Model/Attribute.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Attribute/Backend/Data/Boolean.php b/app/code/Magento/Customer/Model/Attribute/Backend/Data/Boolean.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Attribute/Data/AbstractData.php b/app/code/Magento/Customer/Model/Attribute/Data/AbstractData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Attribute/Data/Boolean.php b/app/code/Magento/Customer/Model/Attribute/Data/Boolean.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Attribute/Data/Date.php b/app/code/Magento/Customer/Model/Attribute/Data/Date.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Attribute/Data/File.php b/app/code/Magento/Customer/Model/Attribute/Data/File.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Attribute/Data/Hidden.php b/app/code/Magento/Customer/Model/Attribute/Data/Hidden.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Attribute/Data/Image.php b/app/code/Magento/Customer/Model/Attribute/Data/Image.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Attribute/Data/Multiline.php b/app/code/Magento/Customer/Model/Attribute/Data/Multiline.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Attribute/Data/Multiselect.php b/app/code/Magento/Customer/Model/Attribute/Data/Multiselect.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Attribute/Data/Postcode.php b/app/code/Magento/Customer/Model/Attribute/Data/Postcode.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Attribute/Data/Select.php b/app/code/Magento/Customer/Model/Attribute/Data/Select.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Attribute/Data/Text.php b/app/code/Magento/Customer/Model/Attribute/Data/Text.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Attribute/Data/Textarea.php b/app/code/Magento/Customer/Model/Attribute/Data/Textarea.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/AttributeChecker.php b/app/code/Magento/Customer/Model/AttributeChecker.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/AttributeMetadataConverter.php b/app/code/Magento/Customer/Model/AttributeMetadataConverter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/AttributeMetadataDataProvider.php b/app/code/Magento/Customer/Model/AttributeMetadataDataProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Authentication.php b/app/code/Magento/Customer/Model/Authentication.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/AuthenticationInterface.php b/app/code/Magento/Customer/Model/AuthenticationInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Authorization/CustomerSessionUserContext.php b/app/code/Magento/Customer/Model/Authorization/CustomerSessionUserContext.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Backend/Customer.php b/app/code/Magento/Customer/Model/Backend/Customer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Cache/Type/Notification.php b/app/code/Magento/Customer/Model/Cache/Type/Notification.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Cart/ConfigPlugin.php b/app/code/Magento/Customer/Model/Cart/ConfigPlugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Checkout/ConfigProvider.php b/app/code/Magento/Customer/Model/Checkout/ConfigProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Config/Backend/Address/Street.php b/app/code/Magento/Customer/Model/Config/Backend/Address/Street.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Config/Backend/CreateAccount/DisableAutoGroupAssignDefault.php b/app/code/Magento/Customer/Model/Config/Backend/CreateAccount/DisableAutoGroupAssignDefault.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Config/Backend/Password/Link/Expirationperiod.php b/app/code/Magento/Customer/Model/Config/Backend/Password/Link/Expirationperiod.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Config/Backend/Show/Address.php b/app/code/Magento/Customer/Model/Config/Backend/Show/Address.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Config/Backend/Show/AddressOnly.php b/app/code/Magento/Customer/Model/Config/Backend/Show/AddressOnly.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Config/Backend/Show/Customer.php b/app/code/Magento/Customer/Model/Config/Backend/Show/Customer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Config/Share.php b/app/code/Magento/Customer/Model/Config/Share.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Config/Source/Address/Type.php b/app/code/Magento/Customer/Model/Config/Source/Address/Type.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Config/Source/Group.php b/app/code/Magento/Customer/Model/Config/Source/Group.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Config/Source/Group/Multiselect.php b/app/code/Magento/Customer/Model/Config/Source/Group/Multiselect.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Context.php b/app/code/Magento/Customer/Model/Context.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Customer.php b/app/code/Magento/Customer/Model/Customer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Customer/Attribute/Backend/Billing.php b/app/code/Magento/Customer/Model/Customer/Attribute/Backend/Billing.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Customer/Attribute/Backend/Password.php b/app/code/Magento/Customer/Model/Customer/Attribute/Backend/Password.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Customer/Attribute/Backend/Shipping.php b/app/code/Magento/Customer/Model/Customer/Attribute/Backend/Shipping.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Customer/Attribute/Backend/Store.php b/app/code/Magento/Customer/Model/Customer/Attribute/Backend/Store.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Customer/Attribute/Backend/Website.php b/app/code/Magento/Customer/Model/Customer/Attribute/Backend/Website.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Customer/Attribute/Source/Group.php b/app/code/Magento/Customer/Model/Customer/Attribute/Source/Group.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Customer/Attribute/Source/GroupSourceLoggedInOnlyInterface.php b/app/code/Magento/Customer/Model/Customer/Attribute/Source/GroupSourceLoggedInOnlyInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Customer/Attribute/Source/Store.php b/app/code/Magento/Customer/Model/Customer/Attribute/Source/Store.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Customer/Attribute/Source/Website.php b/app/code/Magento/Customer/Model/Customer/Attribute/Source/Website.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Customer/CredentialsValidator.php b/app/code/Magento/Customer/Model/Customer/CredentialsValidator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Customer/DataProvider.php b/app/code/Magento/Customer/Model/Customer/DataProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Customer/Mapper.php b/app/code/Magento/Customer/Model/Customer/Mapper.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Customer/NotificationStorage.php b/app/code/Magento/Customer/Model/Customer/NotificationStorage.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Customer/Source/Group.php b/app/code/Magento/Customer/Model/Customer/Source/Group.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Customer/Source/GroupSourceInterface.php b/app/code/Magento/Customer/Model/Customer/Source/GroupSourceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/CustomerAuthUpdate.php b/app/code/Magento/Customer/Model/CustomerAuthUpdate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/CustomerExtractor.php b/app/code/Magento/Customer/Model/CustomerExtractor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/CustomerGroupConfig.php b/app/code/Magento/Customer/Model/CustomerGroupConfig.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/CustomerManagement.php b/app/code/Magento/Customer/Model/CustomerManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/CustomerRegistry.php b/app/code/Magento/Customer/Model/CustomerRegistry.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Data/Address.php b/app/code/Magento/Customer/Model/Data/Address.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Data/AttributeMetadata.php b/app/code/Magento/Customer/Model/Data/AttributeMetadata.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Data/Customer.php b/app/code/Magento/Customer/Model/Data/Customer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Data/CustomerSecure.php b/app/code/Magento/Customer/Model/Data/CustomerSecure.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Data/Group.php b/app/code/Magento/Customer/Model/Data/Group.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Data/Option.php b/app/code/Magento/Customer/Model/Data/Option.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Data/Region.php b/app/code/Magento/Customer/Model/Data/Region.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Data/ValidationResults.php b/app/code/Magento/Customer/Model/Data/ValidationResults.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Data/ValidationRule.php b/app/code/Magento/Customer/Model/Data/ValidationRule.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/EmailNotification.php b/app/code/Magento/Customer/Model/EmailNotification.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/EmailNotificationInterface.php b/app/code/Magento/Customer/Model/EmailNotificationInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/FileProcessor.php b/app/code/Magento/Customer/Model/FileProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/FileUploader.php b/app/code/Magento/Customer/Model/FileUploader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Form.php b/app/code/Magento/Customer/Model/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Group.php b/app/code/Magento/Customer/Model/Group.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Group/Retriever.php b/app/code/Magento/Customer/Model/Group/Retriever.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Group/RetrieverInterface.php b/app/code/Magento/Customer/Model/Group/RetrieverInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/GroupManagement.php b/app/code/Magento/Customer/Model/GroupManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/GroupRegistry.php b/app/code/Magento/Customer/Model/GroupRegistry.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Indexer/Address/AttributeProvider.php b/app/code/Magento/Customer/Model/Indexer/Address/AttributeProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Indexer/Attribute/Filter.php b/app/code/Magento/Customer/Model/Indexer/Attribute/Filter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Indexer/AttributeProvider.php b/app/code/Magento/Customer/Model/Indexer/AttributeProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Indexer/Source.php b/app/code/Magento/Customer/Model/Indexer/Source.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Layout/DepersonalizePlugin.php b/app/code/Magento/Customer/Model/Layout/DepersonalizePlugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Log.php b/app/code/Magento/Customer/Model/Log.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Logger.php b/app/code/Magento/Customer/Model/Logger.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Metadata/AddressCachedMetadata.php b/app/code/Magento/Customer/Model/Metadata/AddressCachedMetadata.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Metadata/AddressMetadata.php b/app/code/Magento/Customer/Model/Metadata/AddressMetadata.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Metadata/AddressMetadataManagement.php b/app/code/Magento/Customer/Model/Metadata/AddressMetadataManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Metadata/AttributeMetadataCache.php b/app/code/Magento/Customer/Model/Metadata/AttributeMetadataCache.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Metadata/AttributeMetadataHydrator.php b/app/code/Magento/Customer/Model/Metadata/AttributeMetadataHydrator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Metadata/AttributeResolver.php b/app/code/Magento/Customer/Model/Metadata/AttributeResolver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Metadata/CachedMetadata.php b/app/code/Magento/Customer/Model/Metadata/CachedMetadata.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Metadata/CustomerCachedMetadata.php b/app/code/Magento/Customer/Model/Metadata/CustomerCachedMetadata.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Metadata/CustomerMetadata.php b/app/code/Magento/Customer/Model/Metadata/CustomerMetadata.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Metadata/CustomerMetadataManagement.php b/app/code/Magento/Customer/Model/Metadata/CustomerMetadataManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Metadata/ElementFactory.php b/app/code/Magento/Customer/Model/Metadata/ElementFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Metadata/Form.php b/app/code/Magento/Customer/Model/Metadata/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Metadata/Form/AbstractData.php b/app/code/Magento/Customer/Model/Metadata/Form/AbstractData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Metadata/Form/Boolean.php b/app/code/Magento/Customer/Model/Metadata/Form/Boolean.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Metadata/Form/Date.php b/app/code/Magento/Customer/Model/Metadata/Form/Date.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Metadata/Form/File.php b/app/code/Magento/Customer/Model/Metadata/Form/File.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Metadata/Form/Hidden.php b/app/code/Magento/Customer/Model/Metadata/Form/Hidden.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Metadata/Form/Image.php b/app/code/Magento/Customer/Model/Metadata/Form/Image.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Metadata/Form/Multiline.php b/app/code/Magento/Customer/Model/Metadata/Form/Multiline.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Metadata/Form/Multiselect.php b/app/code/Magento/Customer/Model/Metadata/Form/Multiselect.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Metadata/Form/Postcode.php b/app/code/Magento/Customer/Model/Metadata/Form/Postcode.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Metadata/Form/Select.php b/app/code/Magento/Customer/Model/Metadata/Form/Select.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Metadata/Form/Text.php b/app/code/Magento/Customer/Model/Metadata/Form/Text.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Metadata/Form/Textarea.php b/app/code/Magento/Customer/Model/Metadata/Form/Textarea.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Metadata/FormFactory.php b/app/code/Magento/Customer/Model/Metadata/FormFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Metadata/Validator.php b/app/code/Magento/Customer/Model/Metadata/Validator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Observer/Grid.php b/app/code/Magento/Customer/Model/Observer/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Options.php b/app/code/Magento/Customer/Model/Options.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Plugin/AllowedCountries.php b/app/code/Magento/Customer/Model/Plugin/AllowedCountries.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Plugin/CustomerAuthorization.php b/app/code/Magento/Customer/Model/Plugin/CustomerAuthorization.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Plugin/CustomerFlushFormKey.php b/app/code/Magento/Customer/Model/Plugin/CustomerFlushFormKey.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Plugin/CustomerNotification.php b/app/code/Magento/Customer/Model/Plugin/CustomerNotification.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Plugin/CustomerRepository/TransactionWrapper.php b/app/code/Magento/Customer/Model/Plugin/CustomerRepository/TransactionWrapper.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Registration.php b/app/code/Magento/Customer/Model/Registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Renderer/Region.php b/app/code/Magento/Customer/Model/Renderer/Region.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/ResourceModel/Address.php b/app/code/Magento/Customer/Model/ResourceModel/Address.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/ResourceModel/Address/Attribute/Backend/Region.php b/app/code/Magento/Customer/Model/ResourceModel/Address/Attribute/Backend/Region.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/ResourceModel/Address/Attribute/Collection.php b/app/code/Magento/Customer/Model/ResourceModel/Address/Attribute/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/ResourceModel/Address/Attribute/Source/Country.php b/app/code/Magento/Customer/Model/ResourceModel/Address/Attribute/Source/Country.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/ResourceModel/Address/Attribute/Source/CountryWithWebsites.php b/app/code/Magento/Customer/Model/ResourceModel/Address/Attribute/Source/CountryWithWebsites.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/ResourceModel/Address/Attribute/Source/Region.php b/app/code/Magento/Customer/Model/ResourceModel/Address/Attribute/Source/Region.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/ResourceModel/Address/Collection.php b/app/code/Magento/Customer/Model/ResourceModel/Address/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/ResourceModel/Address/DeleteRelation.php b/app/code/Magento/Customer/Model/ResourceModel/Address/DeleteRelation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/ResourceModel/Address/Relation.php b/app/code/Magento/Customer/Model/ResourceModel/Address/Relation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/ResourceModel/AddressRepository.php b/app/code/Magento/Customer/Model/ResourceModel/AddressRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/ResourceModel/Attribute.php b/app/code/Magento/Customer/Model/ResourceModel/Attribute.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/ResourceModel/Attribute/Collection.php b/app/code/Magento/Customer/Model/ResourceModel/Attribute/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/ResourceModel/Customer.php b/app/code/Magento/Customer/Model/ResourceModel/Customer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/ResourceModel/Customer/Collection.php b/app/code/Magento/Customer/Model/ResourceModel/Customer/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/ResourceModel/Customer/Grid.php b/app/code/Magento/Customer/Model/ResourceModel/Customer/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/ResourceModel/Customer/Indexer/Collection.php b/app/code/Magento/Customer/Model/ResourceModel/Customer/Indexer/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/ResourceModel/Customer/Relation.php b/app/code/Magento/Customer/Model/ResourceModel/Customer/Relation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/ResourceModel/CustomerRepository.php b/app/code/Magento/Customer/Model/ResourceModel/CustomerRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/ResourceModel/Db/VersionControl/AddressSnapshot.php b/app/code/Magento/Customer/Model/ResourceModel/Db/VersionControl/AddressSnapshot.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/ResourceModel/Form/Attribute.php b/app/code/Magento/Customer/Model/ResourceModel/Form/Attribute.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/ResourceModel/Form/Attribute/Collection.php b/app/code/Magento/Customer/Model/ResourceModel/Form/Attribute/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/ResourceModel/Grid/Collection.php b/app/code/Magento/Customer/Model/ResourceModel/Grid/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/ResourceModel/Group.php b/app/code/Magento/Customer/Model/ResourceModel/Group.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/ResourceModel/Group/Collection.php b/app/code/Magento/Customer/Model/ResourceModel/Group/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/ResourceModel/Group/Grid/Collection.php b/app/code/Magento/Customer/Model/ResourceModel/Group/Grid/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/ResourceModel/Group/Grid/ServiceCollection.php b/app/code/Magento/Customer/Model/ResourceModel/Group/Grid/ServiceCollection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/ResourceModel/GroupRepository.php b/app/code/Magento/Customer/Model/ResourceModel/GroupRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/ResourceModel/Online/Grid/Collection.php b/app/code/Magento/Customer/Model/ResourceModel/Online/Grid/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/ResourceModel/Setup/PropertyMapper.php b/app/code/Magento/Customer/Model/ResourceModel/Setup/PropertyMapper.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/ResourceModel/Visitor.php b/app/code/Magento/Customer/Model/ResourceModel/Visitor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/ResourceModel/Visitor/Collection.php b/app/code/Magento/Customer/Model/ResourceModel/Visitor/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Session.php b/app/code/Magento/Customer/Model/Session.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Session/Storage.php b/app/code/Magento/Customer/Model/Session/Storage.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Url.php b/app/code/Magento/Customer/Model/Url.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Vat.php b/app/code/Magento/Customer/Model/Vat.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Model/Visitor.php b/app/code/Magento/Customer/Model/Visitor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Observer/AfterAddressSaveObserver.php b/app/code/Magento/Customer/Observer/AfterAddressSaveObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Observer/BeforeAddressSaveObserver.php b/app/code/Magento/Customer/Observer/BeforeAddressSaveObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Observer/CustomerLoginSuccessObserver.php b/app/code/Magento/Customer/Observer/CustomerLoginSuccessObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Observer/LogLastLoginAtObserver.php b/app/code/Magento/Customer/Observer/LogLastLoginAtObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Observer/LogLastLogoutAtObserver.php b/app/code/Magento/Customer/Observer/LogLastLogoutAtObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Observer/UpgradeCustomerPasswordObserver.php b/app/code/Magento/Customer/Observer/UpgradeCustomerPasswordObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Observer/Visitor/AbstractVisitorObserver.php b/app/code/Magento/Customer/Observer/Visitor/AbstractVisitorObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Observer/Visitor/BindCustomerLoginObserver.php b/app/code/Magento/Customer/Observer/Visitor/BindCustomerLoginObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Observer/Visitor/BindCustomerLogoutObserver.php b/app/code/Magento/Customer/Observer/Visitor/BindCustomerLogoutObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Observer/Visitor/BindQuoteCreateObserver.php b/app/code/Magento/Customer/Observer/Visitor/BindQuoteCreateObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Observer/Visitor/BindQuoteDestroyObserver.php b/app/code/Magento/Customer/Observer/Visitor/BindQuoteDestroyObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Observer/Visitor/InitByRequestObserver.php b/app/code/Magento/Customer/Observer/Visitor/InitByRequestObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Observer/Visitor/SaveByRequestObserver.php b/app/code/Magento/Customer/Observer/Visitor/SaveByRequestObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/README.md b/app/code/Magento/Customer/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Setup/CustomerSetup.php b/app/code/Magento/Customer/Setup/CustomerSetup.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Setup/InstallData.php b/app/code/Magento/Customer/Setup/InstallData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Setup/InstallSchema.php b/app/code/Magento/Customer/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Setup/UpgradeData.php b/app/code/Magento/Customer/Setup/UpgradeData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Block/Account/AuthenticationPopupTest.php b/app/code/Magento/Customer/Test/Unit/Block/Account/AuthenticationPopupTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Block/Account/AuthorizationLinkTest.php b/app/code/Magento/Customer/Test/Unit/Block/Account/AuthorizationLinkTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Block/Account/CustomerTest.php b/app/code/Magento/Customer/Test/Unit/Block/Account/CustomerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Block/Account/Dashboard/InfoTest.php b/app/code/Magento/Customer/Test/Unit/Block/Account/Dashboard/InfoTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Block/Account/LinkTest.php b/app/code/Magento/Customer/Test/Unit/Block/Account/LinkTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Block/Account/RegisterLinkTest.php b/app/code/Magento/Customer/Test/Unit/Block/Account/RegisterLinkTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Block/Account/ResetpasswordTest.php b/app/code/Magento/Customer/Test/Unit/Block/Account/ResetpasswordTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Block/Address/EditTest.php b/app/code/Magento/Customer/Test/Unit/Block/Address/EditTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Block/Adminhtml/Edit/Tab/NewsletterTest.php b/app/code/Magento/Customer/Test/Unit/Block/Adminhtml/Edit/Tab/NewsletterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Block/Adminhtml/Edit/Tab/View/Grid/Renderer/ItemTest.php b/app/code/Magento/Customer/Test/Unit/Block/Adminhtml/Edit/Tab/View/Grid/Renderer/ItemTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Block/Adminhtml/Edit/Tab/View/PersonalInfoTest.php b/app/code/Magento/Customer/Test/Unit/Block/Adminhtml/Edit/Tab/View/PersonalInfoTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Block/Adminhtml/Edit/Tab/ViewTest.php b/app/code/Magento/Customer/Test/Unit/Block/Adminhtml/Edit/Tab/ViewTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Block/Adminhtml/Edit/UnlockButtonTest.php b/app/code/Magento/Customer/Test/Unit/Block/Adminhtml/Edit/UnlockButtonTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Block/Adminhtml/From/Element/ImageTest.php b/app/code/Magento/Customer/Test/Unit/Block/Adminhtml/From/Element/ImageTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Block/CustomerDataTest.php b/app/code/Magento/Customer/Test/Unit/Block/CustomerDataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Block/CustomerScopeDataTest.php b/app/code/Magento/Customer/Test/Unit/Block/CustomerScopeDataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Block/Form/EditTest.php b/app/code/Magento/Customer/Test/Unit/Block/Form/EditTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Block/Form/Login/InfoTest.php b/app/code/Magento/Customer/Test/Unit/Block/Form/Login/InfoTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Block/Form/RegisterTest.php b/app/code/Magento/Customer/Test/Unit/Block/Form/RegisterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Block/NewsletterTest.php b/app/code/Magento/Customer/Test/Unit/Block/NewsletterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Block/SectionConfigTest.php b/app/code/Magento/Customer/Test/Unit/Block/SectionConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Block/Widget/AbstractWidgetTest.php b/app/code/Magento/Customer/Test/Unit/Block/Widget/AbstractWidgetTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Block/Widget/DobTest.php b/app/code/Magento/Customer/Test/Unit/Block/Widget/DobTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Block/Widget/GenderTest.php b/app/code/Magento/Customer/Test/Unit/Block/Widget/GenderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Block/Widget/NameTest.php b/app/code/Magento/Customer/Test/Unit/Block/Widget/NameTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Block/Widget/TaxvatTest.php b/app/code/Magento/Customer/Test/Unit/Block/Widget/TaxvatTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Console/Command/UpgradeHashAlgorithmCommandTest.php b/app/code/Magento/Customer/Test/Unit/Console/Command/UpgradeHashAlgorithmCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Account/ConfirmTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Account/ConfirmTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Account/ConfirmationTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Account/ConfirmationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Account/CreatePasswordTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Account/CreatePasswordTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Account/CreatePostTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Account/CreatePostTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Account/CreateTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Account/CreateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Account/EditPostTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Account/EditPostTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Account/ForgotPasswordPostTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Account/ForgotPasswordPostTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Account/LoginPostTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Account/LoginPostTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Account/LogoutTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Account/LogoutTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Account/ResetPasswordPostTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Account/ResetPasswordPostTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Address/DeleteTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Address/DeleteTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Address/FormPostTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Address/FormPostTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/File/Address/UploadTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/File/Address/UploadTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/File/Customer/UploadTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/File/Customer/UploadTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Group/SaveTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Group/SaveTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/IndexTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/IndexTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/InlineEditTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/InlineEditTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/MassAssignGroupTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/MassAssignGroupTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/MassDeleteTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/MassDeleteTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/MassSubscribeTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/MassSubscribeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/MassUnsubscribeTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/MassUnsubscribeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/NewsletterTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/NewsletterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/ResetPasswordTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/ResetPasswordTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/SaveTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/SaveTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/ValidateTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/ValidateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/ViewfileTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Index/ViewfileTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Locks/UnlockTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/Locks/UnlockTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/System/Config/Validatevat/ValidateTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Adminhtml/System/Config/Validatevat/ValidateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Ajax/LoginTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Ajax/LoginTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Plugin/AccountTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Plugin/AccountTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Controller/Section/LoadTest.php b/app/code/Magento/Customer/Test/Unit/Controller/Section/LoadTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/CustomerData/Plugin/SessionCheckerTest.php b/app/code/Magento/Customer/Test/Unit/CustomerData/Plugin/SessionCheckerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/CustomerData/Section/IdentifierTest.php b/app/code/Magento/Customer/Test/Unit/CustomerData/Section/IdentifierTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/CustomerData/SectionConfigConverterTest.php b/app/code/Magento/Customer/Test/Unit/CustomerData/SectionConfigConverterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/CustomerData/SectionPoolTest.php b/app/code/Magento/Customer/Test/Unit/CustomerData/SectionPoolTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/CustomerData/_files/sections.xml b/app/code/Magento/Customer/Test/Unit/CustomerData/_files/sections.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Helper/AddressTest.php b/app/code/Magento/Customer/Test/Unit/Helper/AddressTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Helper/Session/CurrentCustomerAddressTest.php b/app/code/Magento/Customer/Test/Unit/Helper/Session/CurrentCustomerAddressTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Helper/Session/CurrentCustomerTest.php b/app/code/Magento/Customer/Test/Unit/Helper/Session/CurrentCustomerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Helper/ViewTest.php b/app/code/Magento/Customer/Test/Unit/Helper/ViewTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Account/RedirectTest.php b/app/code/Magento/Customer/Test/Unit/Model/Account/RedirectTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/AccountConfirmationTest.php b/app/code/Magento/Customer/Test/Unit/Model/AccountConfirmationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/AccountManagementTest.php b/app/code/Magento/Customer/Test/Unit/Model/AccountManagementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Address/AbstractAddressTest.php b/app/code/Magento/Customer/Test/Unit/Model/Address/AbstractAddressTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Address/Config/ConverterTest.php b/app/code/Magento/Customer/Test/Unit/Model/Address/Config/ConverterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Address/Config/ReaderTest.php b/app/code/Magento/Customer/Test/Unit/Model/Address/Config/ReaderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Address/Config/SchemaLocatorTest.php b/app/code/Magento/Customer/Test/Unit/Model/Address/Config/SchemaLocatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Address/Config/XsdTest.php b/app/code/Magento/Customer/Test/Unit/Model/Address/Config/XsdTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Address/Config/_files/formats_merged.php b/app/code/Magento/Customer/Test/Unit/Model/Address/Config/_files/formats_merged.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Address/Config/_files/formats_merged.xml b/app/code/Magento/Customer/Test/Unit/Model/Address/Config/_files/formats_merged.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Address/Config/_files/formats_one.xml b/app/code/Magento/Customer/Test/Unit/Model/Address/Config/_files/formats_one.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Address/Config/_files/formats_two.xml b/app/code/Magento/Customer/Test/Unit/Model/Address/Config/_files/formats_two.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Address/ConfigTest.php b/app/code/Magento/Customer/Test/Unit/Model/Address/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Address/MapperTest.php b/app/code/Magento/Customer/Test/Unit/Model/Address/MapperTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Address/Validator/PostcodeTest.php b/app/code/Magento/Customer/Test/Unit/Model/Address/Validator/PostcodeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/AddressRegistryTest.php b/app/code/Magento/Customer/Test/Unit/Model/AddressRegistryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/AddressTest.php b/app/code/Magento/Customer/Test/Unit/Model/AddressTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/App/Action/ContextPluginTest.php b/app/code/Magento/Customer/Test/Unit/Model/App/Action/ContextPluginTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Attribute/Backend/BooleanTest.php b/app/code/Magento/Customer/Test/Unit/Model/Attribute/Backend/BooleanTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Attribute/Data/PostcodeTest.php b/app/code/Magento/Customer/Test/Unit/Model/Attribute/Data/PostcodeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/AttributeCheckerTest.php b/app/code/Magento/Customer/Test/Unit/Model/AttributeCheckerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/AttributeMetadatConverterTest.php b/app/code/Magento/Customer/Test/Unit/Model/AttributeMetadatConverterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/AttributeTest.php b/app/code/Magento/Customer/Test/Unit/Model/AttributeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/AuthenticationTest.php b/app/code/Magento/Customer/Test/Unit/Model/AuthenticationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Authorization/CustomerSessionUserContextTest.php b/app/code/Magento/Customer/Test/Unit/Model/Authorization/CustomerSessionUserContextTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Backend/CustomerTest.php b/app/code/Magento/Customer/Test/Unit/Model/Backend/CustomerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Checkout/ConfigProviderTest.php b/app/code/Magento/Customer/Test/Unit/Model/Checkout/ConfigProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Config/Backend/CreateAccount/DisableAutoGroupAssignDefaultTest.php b/app/code/Magento/Customer/Test/Unit/Model/Config/Backend/CreateAccount/DisableAutoGroupAssignDefaultTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Config/Source/Address/TypeTest.php b/app/code/Magento/Customer/Test/Unit/Model/Config/Source/Address/TypeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Config/Source/Group/MultiselectTest.php b/app/code/Magento/Customer/Test/Unit/Model/Config/Source/Group/MultiselectTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Config/Source/GroupTest.php b/app/code/Magento/Customer/Test/Unit/Model/Config/Source/GroupTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Customer/Attribute/Backend/BillingTest.php b/app/code/Magento/Customer/Test/Unit/Model/Customer/Attribute/Backend/BillingTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Customer/Attribute/Backend/PasswordTest.php b/app/code/Magento/Customer/Test/Unit/Model/Customer/Attribute/Backend/PasswordTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Customer/Attribute/Backend/ShippingTest.php b/app/code/Magento/Customer/Test/Unit/Model/Customer/Attribute/Backend/ShippingTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Customer/Attribute/Backend/StoreTest.php b/app/code/Magento/Customer/Test/Unit/Model/Customer/Attribute/Backend/StoreTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Customer/Attribute/Backend/WebsiteTest.php b/app/code/Magento/Customer/Test/Unit/Model/Customer/Attribute/Backend/WebsiteTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Customer/Attribute/Source/WebsiteTest.php b/app/code/Magento/Customer/Test/Unit/Model/Customer/Attribute/Source/WebsiteTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Customer/CredentialsValidatorTest.php b/app/code/Magento/Customer/Test/Unit/Model/Customer/CredentialsValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Customer/DataProviderTest.php b/app/code/Magento/Customer/Test/Unit/Model/Customer/DataProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Customer/NotificationStorageTest.php b/app/code/Magento/Customer/Test/Unit/Model/Customer/NotificationStorageTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Customer/Source/GroupTest.php b/app/code/Magento/Customer/Test/Unit/Model/Customer/Source/GroupTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/CustomerAuthUpdateTest.php b/app/code/Magento/Customer/Test/Unit/Model/CustomerAuthUpdateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/CustomerExtractorTest.php b/app/code/Magento/Customer/Test/Unit/Model/CustomerExtractorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/CustomerGroupConfigTest.php b/app/code/Magento/Customer/Test/Unit/Model/CustomerGroupConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/CustomerManagementTest.php b/app/code/Magento/Customer/Test/Unit/Model/CustomerManagementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/CustomerRegistryTest.php b/app/code/Magento/Customer/Test/Unit/Model/CustomerRegistryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/CustomerTest.php b/app/code/Magento/Customer/Test/Unit/Model/CustomerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/EmailNotificationTest.php b/app/code/Magento/Customer/Test/Unit/Model/EmailNotificationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/FileProcessorTest.php b/app/code/Magento/Customer/Test/Unit/Model/FileProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/FileUploaderTest.php b/app/code/Magento/Customer/Test/Unit/Model/FileUploaderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/GroupRegistryTest.php b/app/code/Magento/Customer/Test/Unit/Model/GroupRegistryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Indexer/Attribute/FilterTest.php b/app/code/Magento/Customer/Test/Unit/Model/Indexer/Attribute/FilterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Indexer/AttributeProviderTest.php b/app/code/Magento/Customer/Test/Unit/Model/Indexer/AttributeProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Layout/DepersonalizePluginTest.php b/app/code/Magento/Customer/Test/Unit/Model/Layout/DepersonalizePluginTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/LogTest.php b/app/code/Magento/Customer/Test/Unit/Model/LogTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/LoggerTest.php b/app/code/Magento/Customer/Test/Unit/Model/LoggerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Metadata/AddressMetadataManagementTest.php b/app/code/Magento/Customer/Test/Unit/Model/Metadata/AddressMetadataManagementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Metadata/AddressMetadataTest.php b/app/code/Magento/Customer/Test/Unit/Model/Metadata/AddressMetadataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Metadata/AttributeMetadataCacheTest.php b/app/code/Magento/Customer/Test/Unit/Model/Metadata/AttributeMetadataCacheTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Metadata/AttributeMetadataHydratorTest.php b/app/code/Magento/Customer/Test/Unit/Model/Metadata/AttributeMetadataHydratorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Metadata/AttributeResolverTest.php b/app/code/Magento/Customer/Test/Unit/Model/Metadata/AttributeResolverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Metadata/CustomerMetadataManagementTest.php b/app/code/Magento/Customer/Test/Unit/Model/Metadata/CustomerMetadataManagementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Metadata/ElementFactoryTest.php b/app/code/Magento/Customer/Test/Unit/Model/Metadata/ElementFactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/AbstractDataTest.php b/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/AbstractDataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/AbstractFormTestCase.php b/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/AbstractFormTestCase.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/BooleanTest.php b/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/BooleanTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/DateTest.php b/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/DateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/ExtendsAbstractData.php b/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/ExtendsAbstractData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/FileTest.php b/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/FileTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/HiddenTest.php b/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/HiddenTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/ImageTest.php b/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/ImageTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/MultilineTest.php b/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/MultilineTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/MultiselectTest.php b/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/MultiselectTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/PostcodeTest.php b/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/PostcodeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/SelectTest.php b/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/SelectTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/TextTest.php b/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/TextTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/TextareaTest.php b/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/TextareaTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/_files/logo.gif b/app/code/Magento/Customer/Test/Unit/Model/Metadata/Form/_files/logo.gif
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Metadata/ValidatorTest.php b/app/code/Magento/Customer/Test/Unit/Model/Metadata/ValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Plugin/AllowedCountriesTest.php b/app/code/Magento/Customer/Test/Unit/Model/Plugin/AllowedCountriesTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Plugin/CustomerFlushFormKeyTest.php b/app/code/Magento/Customer/Test/Unit/Model/Plugin/CustomerFlushFormKeyTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Plugin/CustomerNotificationTest.php b/app/code/Magento/Customer/Test/Unit/Model/Plugin/CustomerNotificationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Plugin/CustomerRepository/TransactionWrapperTest.php b/app/code/Magento/Customer/Test/Unit/Model/Plugin/CustomerRepository/TransactionWrapperTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/Renderer/RegionTest.php b/app/code/Magento/Customer/Test/Unit/Model/Renderer/RegionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Address/Attribute/Backend/RegionTest.php b/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Address/Attribute/Backend/RegionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Address/Attribute/Source/CountryWithWebsitesTest.php b/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Address/Attribute/Source/CountryWithWebsitesTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Address/DeleteRelationTest.php b/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Address/DeleteRelationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Address/RelationTest.php b/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Address/RelationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/AddressRepositoryTest.php b/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/AddressRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/AddressTest.php b/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/AddressTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Customer/GridTest.php b/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Customer/GridTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/CustomerRepositoryTest.php b/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/CustomerRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Db/VersionControl/AddressSnapshotTest.php b/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Db/VersionControl/AddressSnapshotTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Group/Grid/ServiceCollectionTest.php b/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Group/Grid/ServiceCollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/GroupRepositoryTest.php b/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/GroupRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/GroupTest.php b/app/code/Magento/Customer/Test/Unit/Model/ResourceModel/GroupTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/SessionTest.php b/app/code/Magento/Customer/Test/Unit/Model/SessionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Model/VisitorTest.php b/app/code/Magento/Customer/Test/Unit/Model/VisitorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Observer/AfterAddressSaveObserverTest.php b/app/code/Magento/Customer/Test/Unit/Observer/AfterAddressSaveObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Observer/BeforeAddressSaveObserverTest.php b/app/code/Magento/Customer/Test/Unit/Observer/BeforeAddressSaveObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Observer/CustomerLoginSuccessObserverTest.php b/app/code/Magento/Customer/Test/Unit/Observer/CustomerLoginSuccessObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Observer/LogLastLoginAtObserverTest.php b/app/code/Magento/Customer/Test/Unit/Observer/LogLastLoginAtObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Observer/LogLastLogoutAtObserverTest.php b/app/code/Magento/Customer/Test/Unit/Observer/LogLastLogoutAtObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Observer/UpgradeCustomerPasswordObserverTest.php b/app/code/Magento/Customer/Test/Unit/Observer/UpgradeCustomerPasswordObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Ui/Component/ColumnFactoryTest.php b/app/code/Magento/Customer/Test/Unit/Ui/Component/ColumnFactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Ui/Component/DataProvider/DocumentTest.php b/app/code/Magento/Customer/Test/Unit/Ui/Component/DataProvider/DocumentTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Ui/Component/DataProviderTest.php b/app/code/Magento/Customer/Test/Unit/Ui/Component/DataProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Ui/Component/FilterFactoryTest.php b/app/code/Magento/Customer/Test/Unit/Ui/Component/FilterFactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/AttributeRepositoryTest.php b/app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/AttributeRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/Column/AccountLockTest.php b/app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/Column/AccountLockTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/Column/ActionsTest.php b/app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/Column/ActionsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/Column/AttributeColumnTest.php b/app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/Column/AttributeColumnTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/Column/ConfirmationTest.php b/app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/Column/ConfirmationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/Column/InlineEditUpdaterTest.php b/app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/Column/InlineEditUpdaterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/Column/ValidationRulesTest.php b/app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/Column/ValidationRulesTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/ColumnsTest.php b/app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/ColumnsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Ui/Component/ColumnFactory.php b/app/code/Magento/Customer/Ui/Component/ColumnFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Ui/Component/DataProvider.php b/app/code/Magento/Customer/Ui/Component/DataProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Ui/Component/DataProvider/Document.php b/app/code/Magento/Customer/Ui/Component/DataProvider/Document.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Ui/Component/FilterFactory.php b/app/code/Magento/Customer/Ui/Component/FilterFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Ui/Component/Listing/AttributeRepository.php b/app/code/Magento/Customer/Ui/Component/Listing/AttributeRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Ui/Component/Listing/Column/AccountLock.php b/app/code/Magento/Customer/Ui/Component/Listing/Column/AccountLock.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Ui/Component/Listing/Column/Actions.php b/app/code/Magento/Customer/Ui/Component/Listing/Column/Actions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Ui/Component/Listing/Column/AttributeColumn.php b/app/code/Magento/Customer/Ui/Component/Listing/Column/AttributeColumn.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Ui/Component/Listing/Column/Confirmation.php b/app/code/Magento/Customer/Ui/Component/Listing/Column/Confirmation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Ui/Component/Listing/Column/Group/Options.php b/app/code/Magento/Customer/Ui/Component/Listing/Column/Group/Options.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Ui/Component/Listing/Column/InlineEditUpdater.php b/app/code/Magento/Customer/Ui/Component/Listing/Column/InlineEditUpdater.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Ui/Component/Listing/Column/Online/Type.php b/app/code/Magento/Customer/Ui/Component/Listing/Column/Online/Type.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Ui/Component/Listing/Column/Online/Type/Options.php b/app/code/Magento/Customer/Ui/Component/Listing/Column/Online/Type/Options.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Ui/Component/Listing/Column/ValidationRules.php b/app/code/Magento/Customer/Ui/Component/Listing/Column/ValidationRules.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Ui/Component/Listing/Column/Websites.php b/app/code/Magento/Customer/Ui/Component/Listing/Column/Websites.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Ui/Component/Listing/Columns.php b/app/code/Magento/Customer/Ui/Component/Listing/Columns.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/Ui/Component/MassAction/Group/Options.php b/app/code/Magento/Customer/Ui/Component/MassAction/Group/Options.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/composer.json b/app/code/Magento/Customer/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/etc/acl.xml b/app/code/Magento/Customer/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/etc/address_formats.xml b/app/code/Magento/Customer/etc/address_formats.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/etc/address_formats.xsd b/app/code/Magento/Customer/etc/address_formats.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/etc/adminhtml/di.xml b/app/code/Magento/Customer/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/etc/adminhtml/menu.xml b/app/code/Magento/Customer/etc/adminhtml/menu.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/etc/adminhtml/routes.xml b/app/code/Magento/Customer/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/etc/adminhtml/system.xml b/app/code/Magento/Customer/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/etc/cache.xml b/app/code/Magento/Customer/etc/cache.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/etc/config.xml b/app/code/Magento/Customer/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/etc/crontab.xml b/app/code/Magento/Customer/etc/crontab.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/etc/di.xml b/app/code/Magento/Customer/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/etc/email_templates.xml b/app/code/Magento/Customer/etc/email_templates.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/etc/events.xml b/app/code/Magento/Customer/etc/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/etc/fieldset.xml b/app/code/Magento/Customer/etc/fieldset.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/etc/frontend/di.xml b/app/code/Magento/Customer/etc/frontend/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/etc/frontend/events.xml b/app/code/Magento/Customer/etc/frontend/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/etc/frontend/page_types.xml b/app/code/Magento/Customer/etc/frontend/page_types.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/etc/frontend/routes.xml b/app/code/Magento/Customer/etc/frontend/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/etc/frontend/sections.xml b/app/code/Magento/Customer/etc/frontend/sections.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/etc/indexer.xml b/app/code/Magento/Customer/etc/indexer.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/etc/module.xml b/app/code/Magento/Customer/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/etc/mview.xml b/app/code/Magento/Customer/etc/mview.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/etc/sections.xsd b/app/code/Magento/Customer/etc/sections.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/etc/validation.xml b/app/code/Magento/Customer/etc/validation.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/etc/webapi.xml b/app/code/Magento/Customer/etc/webapi.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/etc/webapi_rest/di.xml b/app/code/Magento/Customer/etc/webapi_rest/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/etc/webapi_soap/di.xml b/app/code/Magento/Customer/etc/webapi_soap/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/i18n/en_US.csv b/app/code/Magento/Customer/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/registration.php b/app/code/Magento/Customer/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/adminhtml/layout/customer_group_index.xml b/app/code/Magento/Customer/view/adminhtml/layout/customer_group_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/adminhtml/layout/customer_index_cart.xml b/app/code/Magento/Customer/view/adminhtml/layout/customer_index_cart.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/adminhtml/layout/customer_index_carts.xml b/app/code/Magento/Customer/view/adminhtml/layout/customer_index_carts.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/adminhtml/layout/customer_index_edit.xml b/app/code/Magento/Customer/view/adminhtml/layout/customer_index_edit.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/adminhtml/layout/customer_index_index.xml b/app/code/Magento/Customer/view/adminhtml/layout/customer_index_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/adminhtml/layout/customer_index_newsletter.xml b/app/code/Magento/Customer/view/adminhtml/layout/customer_index_newsletter.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/adminhtml/layout/customer_index_orders.xml b/app/code/Magento/Customer/view/adminhtml/layout/customer_index_orders.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/adminhtml/layout/customer_index_productreviews.xml b/app/code/Magento/Customer/view/adminhtml/layout/customer_index_productreviews.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/adminhtml/layout/customer_index_viewcart.xml b/app/code/Magento/Customer/view/adminhtml/layout/customer_index_viewcart.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/adminhtml/layout/customer_index_viewwishlist.xml b/app/code/Magento/Customer/view/adminhtml/layout/customer_index_viewwishlist.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/adminhtml/layout/customer_online_index.xml b/app/code/Magento/Customer/view/adminhtml/layout/customer_online_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/adminhtml/requirejs-config.js b/app/code/Magento/Customer/view/adminhtml/requirejs-config.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/adminhtml/templates/edit/js.phtml b/app/code/Magento/Customer/view/adminhtml/templates/edit/js.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/adminhtml/templates/sales/order/create/address/form/renderer/vat.phtml b/app/code/Magento/Customer/view/adminhtml/templates/sales/order/create/address/form/renderer/vat.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/adminhtml/templates/system/config/validatevat.phtml b/app/code/Magento/Customer/view/adminhtml/templates/system/config/validatevat.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/adminhtml/templates/tab/cart.phtml b/app/code/Magento/Customer/view/adminhtml/templates/tab/cart.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/adminhtml/templates/tab/newsletter.phtml b/app/code/Magento/Customer/view/adminhtml/templates/tab/newsletter.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/adminhtml/templates/tab/view.phtml b/app/code/Magento/Customer/view/adminhtml/templates/tab/view.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/adminhtml/templates/tab/view/personal_info.phtml b/app/code/Magento/Customer/view/adminhtml/templates/tab/view/personal_info.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/adminhtml/templates/tab/view/sales.phtml b/app/code/Magento/Customer/view/adminhtml/templates/tab/view/sales.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/adminhtml/ui_component/customer_listing.xml b/app/code/Magento/Customer/view/adminhtml/ui_component/customer_listing.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/adminhtml/ui_component/customer_online_grid.xml b/app/code/Magento/Customer/view/adminhtml/ui_component/customer_online_grid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/adminhtml/web/edit/post-wrapper.js b/app/code/Magento/Customer/view/adminhtml/web/edit/post-wrapper.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/adminhtml/web/edit/tab/js/addresses.js b/app/code/Magento/Customer/view/adminhtml/web/edit/tab/js/addresses.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/adminhtml/web/js/bootstrap/customer-post-action.js b/app/code/Magento/Customer/view/adminhtml/web/js/bootstrap/customer-post-action.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/base/ui_component/customer_form.xml b/app/code/Magento/Customer/view/base/ui_component/customer_form.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/email/account_new.html b/app/code/Magento/Customer/view/frontend/email/account_new.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/email/account_new_confirmation.html b/app/code/Magento/Customer/view/frontend/email/account_new_confirmation.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/email/account_new_confirmed.html b/app/code/Magento/Customer/view/frontend/email/account_new_confirmed.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/email/account_new_no_password.html b/app/code/Magento/Customer/view/frontend/email/account_new_no_password.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/email/change_email.html b/app/code/Magento/Customer/view/frontend/email/change_email.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/email/change_email_and_password.html b/app/code/Magento/Customer/view/frontend/email/change_email_and_password.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/email/password_new.html b/app/code/Magento/Customer/view/frontend/email/password_new.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/email/password_reset.html b/app/code/Magento/Customer/view/frontend/email/password_reset.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/email/password_reset_confirmation.html b/app/code/Magento/Customer/view/frontend/email/password_reset_confirmation.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/layout/customer_account.xml b/app/code/Magento/Customer/view/frontend/layout/customer_account.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/layout/customer_account_confirmation.xml b/app/code/Magento/Customer/view/frontend/layout/customer_account_confirmation.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/layout/customer_account_create.xml b/app/code/Magento/Customer/view/frontend/layout/customer_account_create.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/layout/customer_account_createpassword.xml b/app/code/Magento/Customer/view/frontend/layout/customer_account_createpassword.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/layout/customer_account_edit.xml b/app/code/Magento/Customer/view/frontend/layout/customer_account_edit.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/layout/customer_account_forgotpassword.xml b/app/code/Magento/Customer/view/frontend/layout/customer_account_forgotpassword.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/layout/customer_account_index.xml b/app/code/Magento/Customer/view/frontend/layout/customer_account_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/layout/customer_account_login.xml b/app/code/Magento/Customer/view/frontend/layout/customer_account_login.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/layout/customer_account_logoutsuccess.xml b/app/code/Magento/Customer/view/frontend/layout/customer_account_logoutsuccess.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/layout/customer_address_form.xml b/app/code/Magento/Customer/view/frontend/layout/customer_address_form.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/layout/customer_address_index.xml b/app/code/Magento/Customer/view/frontend/layout/customer_address_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/layout/default.xml b/app/code/Magento/Customer/view/frontend/layout/default.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/requirejs-config.js b/app/code/Magento/Customer/view/frontend/requirejs-config.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/templates/account/authentication-popup.phtml b/app/code/Magento/Customer/view/frontend/templates/account/authentication-popup.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/templates/account/customer.phtml b/app/code/Magento/Customer/view/frontend/templates/account/customer.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/templates/account/dashboard/address.phtml b/app/code/Magento/Customer/view/frontend/templates/account/dashboard/address.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/templates/account/dashboard/info.phtml b/app/code/Magento/Customer/view/frontend/templates/account/dashboard/info.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/templates/account/link/authorization.phtml b/app/code/Magento/Customer/view/frontend/templates/account/link/authorization.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/templates/account/link/back.phtml b/app/code/Magento/Customer/view/frontend/templates/account/link/back.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/templates/account/navigation-delimiter.phtml b/app/code/Magento/Customer/view/frontend/templates/account/navigation-delimiter.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/templates/account/navigation.phtml b/app/code/Magento/Customer/view/frontend/templates/account/navigation.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/templates/additionalinfocustomer.phtml b/app/code/Magento/Customer/view/frontend/templates/additionalinfocustomer.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/templates/address/book.phtml b/app/code/Magento/Customer/view/frontend/templates/address/book.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/templates/address/edit.phtml b/app/code/Magento/Customer/view/frontend/templates/address/edit.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/templates/form/confirmation.phtml b/app/code/Magento/Customer/view/frontend/templates/form/confirmation.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/templates/form/edit.phtml b/app/code/Magento/Customer/view/frontend/templates/form/edit.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/templates/form/forgotpassword.phtml b/app/code/Magento/Customer/view/frontend/templates/form/forgotpassword.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/templates/form/login.phtml b/app/code/Magento/Customer/view/frontend/templates/form/login.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/templates/form/newsletter.phtml b/app/code/Magento/Customer/view/frontend/templates/form/newsletter.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/templates/form/register.phtml b/app/code/Magento/Customer/view/frontend/templates/form/register.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/templates/form/resetforgottenpassword.phtml b/app/code/Magento/Customer/view/frontend/templates/form/resetforgottenpassword.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/templates/js/components.phtml b/app/code/Magento/Customer/view/frontend/templates/js/components.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/templates/js/customer-data.phtml b/app/code/Magento/Customer/view/frontend/templates/js/customer-data.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/templates/js/customer-data/invalidation-rules.phtml b/app/code/Magento/Customer/view/frontend/templates/js/customer-data/invalidation-rules.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/templates/js/section-config.phtml b/app/code/Magento/Customer/view/frontend/templates/js/section-config.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/templates/logout.phtml b/app/code/Magento/Customer/view/frontend/templates/logout.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/templates/newcustomer.phtml b/app/code/Magento/Customer/view/frontend/templates/newcustomer.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/templates/widget/company.phtml b/app/code/Magento/Customer/view/frontend/templates/widget/company.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/templates/widget/dob.phtml b/app/code/Magento/Customer/view/frontend/templates/widget/dob.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/templates/widget/fax.phtml b/app/code/Magento/Customer/view/frontend/templates/widget/fax.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/templates/widget/gender.phtml b/app/code/Magento/Customer/view/frontend/templates/widget/gender.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/templates/widget/name.phtml b/app/code/Magento/Customer/view/frontend/templates/widget/name.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/templates/widget/taxvat.phtml b/app/code/Magento/Customer/view/frontend/templates/widget/taxvat.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/templates/widget/telephone.phtml b/app/code/Magento/Customer/view/frontend/templates/widget/telephone.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/web/address.js b/app/code/Magento/Customer/view/frontend/web/address.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/web/change-email-password.js b/app/code/Magento/Customer/view/frontend/web/change-email-password.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/web/js/action/check-email-availability.js b/app/code/Magento/Customer/view/frontend/web/js/action/check-email-availability.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/web/js/action/login.js b/app/code/Magento/Customer/view/frontend/web/js/action/login.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/web/js/addressValidation.js b/app/code/Magento/Customer/view/frontend/web/js/addressValidation.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/web/js/checkout-balance.js b/app/code/Magento/Customer/view/frontend/web/js/checkout-balance.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/web/js/customer-data.js b/app/code/Magento/Customer/view/frontend/web/js/customer-data.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/web/js/invalidation-processor.js b/app/code/Magento/Customer/view/frontend/web/js/invalidation-processor.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/web/js/invalidation-rules/website-rule.js b/app/code/Magento/Customer/view/frontend/web/js/invalidation-rules/website-rule.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/web/js/model/address-list.js b/app/code/Magento/Customer/view/frontend/web/js/model/address-list.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/web/js/model/authentication-popup.js b/app/code/Magento/Customer/view/frontend/web/js/model/authentication-popup.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/web/js/model/customer-addresses.js b/app/code/Magento/Customer/view/frontend/web/js/model/customer-addresses.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/web/js/model/customer.js b/app/code/Magento/Customer/view/frontend/web/js/model/customer.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/web/js/model/customer/address.js b/app/code/Magento/Customer/view/frontend/web/js/model/customer/address.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/web/js/password-strength-indicator.js b/app/code/Magento/Customer/view/frontend/web/js/password-strength-indicator.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/web/js/section-config.js b/app/code/Magento/Customer/view/frontend/web/js/section-config.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/web/js/view/authentication-popup.js b/app/code/Magento/Customer/view/frontend/web/js/view/authentication-popup.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/web/js/view/customer.js b/app/code/Magento/Customer/view/frontend/web/js/view/customer.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/web/js/zxcvbn.js b/app/code/Magento/Customer/view/frontend/web/js/zxcvbn.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Customer/view/frontend/web/template/authentication-popup.html b/app/code/Magento/Customer/view/frontend/web/template/authentication-popup.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerAnalytics/LICENSE.txt b/app/code/Magento/CustomerAnalytics/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerAnalytics/LICENSE_AFL.txt b/app/code/Magento/CustomerAnalytics/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerAnalytics/README.md b/app/code/Magento/CustomerAnalytics/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerAnalytics/composer.json b/app/code/Magento/CustomerAnalytics/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerAnalytics/etc/analytics.xml b/app/code/Magento/CustomerAnalytics/etc/analytics.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerAnalytics/etc/module.xml b/app/code/Magento/CustomerAnalytics/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerAnalytics/etc/reports.xml b/app/code/Magento/CustomerAnalytics/etc/reports.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerAnalytics/registration.php b/app/code/Magento/CustomerAnalytics/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerImportExport/Controller/Adminhtml/Index/ExportCsv.php b/app/code/Magento/CustomerImportExport/Controller/Adminhtml/Index/ExportCsv.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerImportExport/Controller/Adminhtml/Index/ExportXml.php b/app/code/Magento/CustomerImportExport/Controller/Adminhtml/Index/ExportXml.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerImportExport/LICENSE.txt b/app/code/Magento/CustomerImportExport/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerImportExport/LICENSE_AFL.txt b/app/code/Magento/CustomerImportExport/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerImportExport/Model/Export/Address.php b/app/code/Magento/CustomerImportExport/Model/Export/Address.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerImportExport/Model/Export/Customer.php b/app/code/Magento/CustomerImportExport/Model/Export/Customer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerImportExport/Model/Import/AbstractCustomer.php b/app/code/Magento/CustomerImportExport/Model/Import/AbstractCustomer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerImportExport/Model/Import/Address.php b/app/code/Magento/CustomerImportExport/Model/Import/Address.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerImportExport/Model/Import/Customer.php b/app/code/Magento/CustomerImportExport/Model/Import/Customer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerImportExport/Model/Import/CustomerComposite.php b/app/code/Magento/CustomerImportExport/Model/Import/CustomerComposite.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerImportExport/Model/ResourceModel/Import/Customer/Storage.php b/app/code/Magento/CustomerImportExport/Model/ResourceModel/Import/Customer/Storage.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerImportExport/Model/ResourceModel/Import/CustomerComposite/Data.php b/app/code/Magento/CustomerImportExport/Model/ResourceModel/Import/CustomerComposite/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerImportExport/README.md b/app/code/Magento/CustomerImportExport/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Export/AddressTest.php b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Export/AddressTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Export/CustomerTest.php b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Export/CustomerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/AbstractCustomerTest.php b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/AbstractCustomerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/AddressTest.php b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/AddressTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/CustomerCompositeTest.php b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/CustomerCompositeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/CustomerTest.php b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/CustomerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/customer_composite_prepare_row_for_db.csv b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/customer_composite_prepare_row_for_db.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_abstract_empty_email.php b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_abstract_empty_email.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_abstract_empty_website.php b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_abstract_empty_website.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_abstract_invalid_email.php b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_abstract_invalid_email.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_abstract_invalid_website.php b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_abstract_invalid_website.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_abstract_no_email.php b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_abstract_no_email.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_abstract_no_website.php b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_abstract_no_website.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_abstract_valid.php b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_abstract_valid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_delete_address_not_found.php b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_delete_address_not_found.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_delete_empty_address_id.php b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_delete_empty_address_id.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_delete_no_customer.php b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_delete_no_customer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_delete_valid.php b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_delete_valid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_update_absent_required_attribute.php b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_update_absent_required_attribute.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_update_empty_address_id.php b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_update_empty_address_id.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_update_invalid_region.php b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_update_invalid_region.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_update_no_customer.php b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_update_no_customer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_update_valid.php b/app/code/Magento/CustomerImportExport/Test/Unit/Model/Import/_files/row_data_address_update_valid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerImportExport/Test/Unit/Model/ResourceModel/Import/Customer/StorageTest.php b/app/code/Magento/CustomerImportExport/Test/Unit/Model/ResourceModel/Import/Customer/StorageTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerImportExport/Test/Unit/Model/ResourceModel/Import/CustomerComposite/DataTest.php b/app/code/Magento/CustomerImportExport/Test/Unit/Model/ResourceModel/Import/CustomerComposite/DataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerImportExport/composer.json b/app/code/Magento/CustomerImportExport/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerImportExport/etc/adminhtml/routes.xml b/app/code/Magento/CustomerImportExport/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerImportExport/etc/config.xml b/app/code/Magento/CustomerImportExport/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerImportExport/etc/export.xml b/app/code/Magento/CustomerImportExport/etc/export.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerImportExport/etc/import.xml b/app/code/Magento/CustomerImportExport/etc/import.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerImportExport/etc/module.xml b/app/code/Magento/CustomerImportExport/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerImportExport/i18n/en_US.csv b/app/code/Magento/CustomerImportExport/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerImportExport/registration.php b/app/code/Magento/CustomerImportExport/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerImportExport/view/adminhtml/layout/customer_import_export_index_exportcsv.xml b/app/code/Magento/CustomerImportExport/view/adminhtml/layout/customer_import_export_index_exportcsv.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerImportExport/view/adminhtml/layout/customer_import_export_index_exportxml.xml b/app/code/Magento/CustomerImportExport/view/adminhtml/layout/customer_import_export_index_exportxml.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/CustomerImportExport/view/adminhtml/layout/customer_index_grid_block.xml b/app/code/Magento/CustomerImportExport/view/adminhtml/layout/customer_index_grid_block.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/App/Mode/ConfigProvider.php b/app/code/Magento/Deploy/App/Mode/ConfigProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Collector/Collector.php b/app/code/Magento/Deploy/Collector/Collector.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Collector/CollectorInterface.php b/app/code/Magento/Deploy/Collector/CollectorInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Config/BundleConfig.php b/app/code/Magento/Deploy/Config/BundleConfig.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Console/Command/App/ApplicationDumpCommand.php b/app/code/Magento/Deploy/Console/Command/App/ApplicationDumpCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Console/Command/App/ConfigImport/Processor.php b/app/code/Magento/Deploy/Console/Command/App/ConfigImport/Processor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Console/Command/App/ConfigImportCommand.php b/app/code/Magento/Deploy/Console/Command/App/ConfigImportCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Console/Command/App/ConfigStatusCommand.php b/app/code/Magento/Deploy/Console/Command/App/ConfigStatusCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Console/Command/App/SensitiveConfigSet/CollectorFactory.php b/app/code/Magento/Deploy/Console/Command/App/SensitiveConfigSet/CollectorFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Console/Command/App/SensitiveConfigSet/CollectorInterface.php b/app/code/Magento/Deploy/Console/Command/App/SensitiveConfigSet/CollectorInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Console/Command/App/SensitiveConfigSet/InteractiveCollector.php b/app/code/Magento/Deploy/Console/Command/App/SensitiveConfigSet/InteractiveCollector.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Console/Command/App/SensitiveConfigSet/SensitiveConfigSetFacade.php b/app/code/Magento/Deploy/Console/Command/App/SensitiveConfigSet/SensitiveConfigSetFacade.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Console/Command/App/SensitiveConfigSet/SimpleCollector.php b/app/code/Magento/Deploy/Console/Command/App/SensitiveConfigSet/SimpleCollector.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Console/Command/App/SensitiveConfigSetCommand.php b/app/code/Magento/Deploy/Console/Command/App/SensitiveConfigSetCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Console/Command/SetModeCommand.php b/app/code/Magento/Deploy/Console/Command/SetModeCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Console/Command/ShowModeCommand.php b/app/code/Magento/Deploy/Console/Command/ShowModeCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Console/CommandList.php b/app/code/Magento/Deploy/Console/CommandList.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Console/ConsoleLogger.php b/app/code/Magento/Deploy/Console/ConsoleLogger.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Console/ConsoleLoggerFactory.php b/app/code/Magento/Deploy/Console/ConsoleLoggerFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Console/DeployStaticOptions.php b/app/code/Magento/Deploy/Console/DeployStaticOptions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Console/InputValidator.php b/app/code/Magento/Deploy/Console/InputValidator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/LICENSE.txt b/app/code/Magento/Deploy/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/LICENSE_AFL.txt b/app/code/Magento/Deploy/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Model/ConfigWriter.php b/app/code/Magento/Deploy/Model/ConfigWriter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Model/DeploymentConfig/ChangeDetector.php b/app/code/Magento/Deploy/Model/DeploymentConfig/ChangeDetector.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Model/DeploymentConfig/DataCollector.php b/app/code/Magento/Deploy/Model/DeploymentConfig/DataCollector.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Model/DeploymentConfig/Hash.php b/app/code/Magento/Deploy/Model/DeploymentConfig/Hash.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Model/DeploymentConfig/Hash/Generator.php b/app/code/Magento/Deploy/Model/DeploymentConfig/Hash/Generator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Model/DeploymentConfig/ImporterFactory.php b/app/code/Magento/Deploy/Model/DeploymentConfig/ImporterFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Model/DeploymentConfig/ImporterPool.php b/app/code/Magento/Deploy/Model/DeploymentConfig/ImporterPool.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Model/DeploymentConfig/ValidatorFactory.php b/app/code/Magento/Deploy/Model/DeploymentConfig/ValidatorFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Model/Filesystem.php b/app/code/Magento/Deploy/Model/Filesystem.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Model/Mode.php b/app/code/Magento/Deploy/Model/Mode.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Model/Plugin/ConfigChangeDetector.php b/app/code/Magento/Deploy/Model/Plugin/ConfigChangeDetector.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Package/Bundle/RequireJs.php b/app/code/Magento/Deploy/Package/Bundle/RequireJs.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Package/BundleInterface.php b/app/code/Magento/Deploy/Package/BundleInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Package/BundleInterfaceFactory.php b/app/code/Magento/Deploy/Package/BundleInterfaceFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Package/Package.php b/app/code/Magento/Deploy/Package/Package.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Package/PackageFactory.php b/app/code/Magento/Deploy/Package/PackageFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Package/PackageFile.php b/app/code/Magento/Deploy/Package/PackageFile.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Package/PackagePool.php b/app/code/Magento/Deploy/Package/PackagePool.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Package/Processor/PostProcessor/CssUrls.php b/app/code/Magento/Deploy/Package/Processor/PostProcessor/CssUrls.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Package/Processor/PostProcessor/Map.php b/app/code/Magento/Deploy/Package/Processor/PostProcessor/Map.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Package/Processor/PreProcessor/Css.php b/app/code/Magento/Deploy/Package/Processor/PreProcessor/Css.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Package/Processor/PreProcessor/Less.php b/app/code/Magento/Deploy/Package/Processor/PreProcessor/Less.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Package/Processor/ProcessorInterface.php b/app/code/Magento/Deploy/Package/Processor/ProcessorInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Process/Queue.php b/app/code/Magento/Deploy/Process/Queue.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Process/QueueFactory.php b/app/code/Magento/Deploy/Process/QueueFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/README.md b/app/code/Magento/Deploy/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Service/Bundle.php b/app/code/Magento/Deploy/Service/Bundle.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Service/DeployPackage.php b/app/code/Magento/Deploy/Service/DeployPackage.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Service/DeployRequireJsConfig.php b/app/code/Magento/Deploy/Service/DeployRequireJsConfig.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Service/DeployStaticContent.php b/app/code/Magento/Deploy/Service/DeployStaticContent.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Service/DeployStaticFile.php b/app/code/Magento/Deploy/Service/DeployStaticFile.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Service/DeployTranslationsDictionary.php b/app/code/Magento/Deploy/Service/DeployTranslationsDictionary.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Service/MinifyTemplates.php b/app/code/Magento/Deploy/Service/MinifyTemplates.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Source/Lib.php b/app/code/Magento/Deploy/Source/Lib.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Source/Modules.php b/app/code/Magento/Deploy/Source/Modules.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Source/SourceInterface.php b/app/code/Magento/Deploy/Source/SourceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Source/SourcePool.php b/app/code/Magento/Deploy/Source/SourcePool.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Source/Themes.php b/app/code/Magento/Deploy/Source/Themes.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Strategy/CompactDeploy.php b/app/code/Magento/Deploy/Strategy/CompactDeploy.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Strategy/DeployStrategyFactory.php b/app/code/Magento/Deploy/Strategy/DeployStrategyFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Strategy/QuickDeploy.php b/app/code/Magento/Deploy/Strategy/QuickDeploy.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Strategy/StandardDeploy.php b/app/code/Magento/Deploy/Strategy/StandardDeploy.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Strategy/StrategyInterface.php b/app/code/Magento/Deploy/Strategy/StrategyInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Test/Unit/App/Mode/ConfigProviderTest.php b/app/code/Magento/Deploy/Test/Unit/App/Mode/ConfigProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Test/Unit/Console/Command/App/ConfigImport/ProcessorTest.php b/app/code/Magento/Deploy/Test/Unit/Console/Command/App/ConfigImport/ProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Test/Unit/Console/Command/App/ConfigImportCommandTest.php b/app/code/Magento/Deploy/Test/Unit/Console/Command/App/ConfigImportCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Test/Unit/Console/Command/App/ConfigStatusCommandTest.php b/app/code/Magento/Deploy/Test/Unit/Console/Command/App/ConfigStatusCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Test/Unit/Console/Command/App/SensitiveConfigSet/CollectorFactoryTest.php b/app/code/Magento/Deploy/Test/Unit/Console/Command/App/SensitiveConfigSet/CollectorFactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Test/Unit/Console/Command/App/SensitiveConfigSet/InteractiveCollectorTest.php b/app/code/Magento/Deploy/Test/Unit/Console/Command/App/SensitiveConfigSet/InteractiveCollectorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Test/Unit/Console/Command/App/SensitiveConfigSet/SensitiveConfigSetFacadeTest.php b/app/code/Magento/Deploy/Test/Unit/Console/Command/App/SensitiveConfigSet/SensitiveConfigSetFacadeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Test/Unit/Console/Command/App/SensitiveConfigSet/SimpleCollectorTest.php b/app/code/Magento/Deploy/Test/Unit/Console/Command/App/SensitiveConfigSet/SimpleCollectorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Test/Unit/Console/Command/App/SensitiveConfigSetCommandTest.php b/app/code/Magento/Deploy/Test/Unit/Console/Command/App/SensitiveConfigSetCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Test/Unit/Console/Command/ApplicationDumpCommandTest.php b/app/code/Magento/Deploy/Test/Unit/Console/Command/ApplicationDumpCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Test/Unit/Console/Command/SetModeCommandTest.php b/app/code/Magento/Deploy/Test/Unit/Console/Command/SetModeCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Test/Unit/Console/Command/ShowModeCommandTest.php b/app/code/Magento/Deploy/Test/Unit/Console/Command/ShowModeCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Test/Unit/Console/CommandListTest.php b/app/code/Magento/Deploy/Test/Unit/Console/CommandListTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Test/Unit/Model/ConfigWriterTest.php b/app/code/Magento/Deploy/Test/Unit/Model/ConfigWriterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Test/Unit/Model/DeploymentConfig/ChangeDetectorTest.php b/app/code/Magento/Deploy/Test/Unit/Model/DeploymentConfig/ChangeDetectorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Test/Unit/Model/DeploymentConfig/DataCollectorTest.php b/app/code/Magento/Deploy/Test/Unit/Model/DeploymentConfig/DataCollectorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Test/Unit/Model/DeploymentConfig/Hash/GeneratorTest.php b/app/code/Magento/Deploy/Test/Unit/Model/DeploymentConfig/Hash/GeneratorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Test/Unit/Model/DeploymentConfig/HashTest.php b/app/code/Magento/Deploy/Test/Unit/Model/DeploymentConfig/HashTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Test/Unit/Model/DeploymentConfig/ImporterFactoryTest.php b/app/code/Magento/Deploy/Test/Unit/Model/DeploymentConfig/ImporterFactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Test/Unit/Model/DeploymentConfig/ImporterPoolTest.php b/app/code/Magento/Deploy/Test/Unit/Model/DeploymentConfig/ImporterPoolTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Test/Unit/Model/DeploymentConfig/ValidatorFactoryTest.php b/app/code/Magento/Deploy/Test/Unit/Model/DeploymentConfig/ValidatorFactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Test/Unit/Model/FilesystemTest.php b/app/code/Magento/Deploy/Test/Unit/Model/FilesystemTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Test/Unit/Model/ModeTest.php b/app/code/Magento/Deploy/Test/Unit/Model/ModeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Test/Unit/Model/Plugin/ConfigChangeDetectorTest.php b/app/code/Magento/Deploy/Test/Unit/Model/Plugin/ConfigChangeDetectorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Test/Unit/Process/QueueTest.php b/app/code/Magento/Deploy/Test/Unit/Process/QueueTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Test/Unit/Service/DeployStaticContentTest.php b/app/code/Magento/Deploy/Test/Unit/Service/DeployStaticContentTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Test/Unit/Service/DeployTranslationsDictionaryTest.php b/app/code/Magento/Deploy/Test/Unit/Service/DeployTranslationsDictionaryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Test/Unit/Service/MinifyTemplatesTest.php b/app/code/Magento/Deploy/Test/Unit/Service/MinifyTemplatesTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/Test/Unit/Strategy/CompactDeployTest.php b/app/code/Magento/Deploy/Test/Unit/Strategy/CompactDeployTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/cli_commands.php b/app/code/Magento/Deploy/cli_commands.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/composer.json b/app/code/Magento/Deploy/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/etc/di.xml b/app/code/Magento/Deploy/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/etc/module.xml b/app/code/Magento/Deploy/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/i18n/en_US.csv b/app/code/Magento/Deploy/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Deploy/registration.php b/app/code/Magento/Deploy/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Block/Adminhtml/System/Config/WorkflowType.php b/app/code/Magento/Developer/Block/Adminhtml/System/Config/WorkflowType.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Console/Command/DevTestsRunCommand.php b/app/code/Magento/Developer/Console/Command/DevTestsRunCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Console/Command/DiInfoCommand.php b/app/code/Magento/Developer/Console/Command/DiInfoCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Console/Command/ProfilerDisableCommand.php b/app/code/Magento/Developer/Console/Command/ProfilerDisableCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Console/Command/ProfilerEnableCommand.php b/app/code/Magento/Developer/Console/Command/ProfilerEnableCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Console/Command/QueryLogDisableCommand.php b/app/code/Magento/Developer/Console/Command/QueryLogDisableCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Console/Command/QueryLogEnableCommand.php b/app/code/Magento/Developer/Console/Command/QueryLogEnableCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Console/Command/SourceThemeDeployCommand.php b/app/code/Magento/Developer/Console/Command/SourceThemeDeployCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Console/Command/TemplateHintsDisableCommand.php b/app/code/Magento/Developer/Console/Command/TemplateHintsDisableCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Console/Command/TemplateHintsEnableCommand.php b/app/code/Magento/Developer/Console/Command/TemplateHintsEnableCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Console/Command/XmlCatalogGenerateCommand.php b/app/code/Magento/Developer/Console/Command/XmlCatalogGenerateCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Console/Command/XmlConverterCommand.php b/app/code/Magento/Developer/Console/Command/XmlConverterCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Helper/Data.php b/app/code/Magento/Developer/Helper/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/LICENSE.txt b/app/code/Magento/Developer/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/LICENSE_AFL.txt b/app/code/Magento/Developer/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Model/Config/Backend/AllowedIps.php b/app/code/Magento/Developer/Model/Config/Backend/AllowedIps.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Model/Config/Backend/WorkflowType.php b/app/code/Magento/Developer/Model/Config/Backend/WorkflowType.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Model/Config/Source/WorkflowType.php b/app/code/Magento/Developer/Model/Config/Source/WorkflowType.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Model/Css/PreProcessor/FileGenerator/PublicationDecorator.php b/app/code/Magento/Developer/Model/Css/PreProcessor/FileGenerator/PublicationDecorator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Model/Di/Information.php b/app/code/Magento/Developer/Model/Di/Information.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Model/Di/PluginList.php b/app/code/Magento/Developer/Model/Di/PluginList.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Model/Logger/Handler/Debug.php b/app/code/Magento/Developer/Model/Logger/Handler/Debug.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Model/TemplateEngine/Decorator/DebugHints.php b/app/code/Magento/Developer/Model/TemplateEngine/Decorator/DebugHints.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Model/TemplateEngine/Plugin/DebugHints.php b/app/code/Magento/Developer/Model/TemplateEngine/Plugin/DebugHints.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Model/Tools/Formatter.php b/app/code/Magento/Developer/Model/Tools/Formatter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Model/View/Asset/PreProcessor/FrontendCompilation.php b/app/code/Magento/Developer/Model/View/Asset/PreProcessor/FrontendCompilation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Model/View/Asset/PreProcessor/PreprocessorStrategy.php b/app/code/Magento/Developer/Model/View/Asset/PreProcessor/PreprocessorStrategy.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Model/View/Page/Config/ClientSideLessCompilation/Renderer.php b/app/code/Magento/Developer/Model/View/Page/Config/ClientSideLessCompilation/Renderer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Model/View/Page/Config/RendererFactory.php b/app/code/Magento/Developer/Model/View/Page/Config/RendererFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Model/XmlCatalog/Format/FormatInterface.php b/app/code/Magento/Developer/Model/XmlCatalog/Format/FormatInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Model/XmlCatalog/Format/PhpStorm.php b/app/code/Magento/Developer/Model/XmlCatalog/Format/PhpStorm.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/README.md b/app/code/Magento/Developer/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Test/Unit/Block/Adminhtml/System/Config/WorkflowTypeTest.php b/app/code/Magento/Developer/Test/Unit/Block/Adminhtml/System/Config/WorkflowTypeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Test/Unit/Console/Command/DevTestsRunCommandTest.php b/app/code/Magento/Developer/Test/Unit/Console/Command/DevTestsRunCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Test/Unit/Console/Command/QueryLogDisableCommandTest.php b/app/code/Magento/Developer/Test/Unit/Console/Command/QueryLogDisableCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Test/Unit/Console/Command/QueryLogEnableCommandTest.php b/app/code/Magento/Developer/Test/Unit/Console/Command/QueryLogEnableCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Test/Unit/Console/Command/SourceThemeDeployCommandTest.php b/app/code/Magento/Developer/Test/Unit/Console/Command/SourceThemeDeployCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Test/Unit/Console/Command/XmlCatalogGenerateCommandTest.php b/app/code/Magento/Developer/Test/Unit/Console/Command/XmlCatalogGenerateCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Test/Unit/Console/Command/XmlConverterCommandTest.php b/app/code/Magento/Developer/Test/Unit/Console/Command/XmlConverterCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Test/Unit/Console/Command/_files/test.xml b/app/code/Magento/Developer/Test/Unit/Console/Command/_files/test.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Test/Unit/Helper/DataTest.php b/app/code/Magento/Developer/Test/Unit/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Test/Unit/Model/Config/Backend/AllowedIpsTest.php b/app/code/Magento/Developer/Test/Unit/Model/Config/Backend/AllowedIpsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Test/Unit/Model/Config/Backend/WorkflowTypeTest.php b/app/code/Magento/Developer/Test/Unit/Model/Config/Backend/WorkflowTypeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Test/Unit/Model/Config/Source/WorkflowTypeTest.php b/app/code/Magento/Developer/Test/Unit/Model/Config/Source/WorkflowTypeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Test/Unit/Model/Css/PreProcessor/FileGenerator/PublicationDecoratorTest.php b/app/code/Magento/Developer/Test/Unit/Model/Css/PreProcessor/FileGenerator/PublicationDecoratorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Test/Unit/Model/Di/InformationTest.php b/app/code/Magento/Developer/Test/Unit/Model/Di/InformationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Test/Unit/Model/Logger/Handler/DebugTest.php b/app/code/Magento/Developer/Test/Unit/Model/Logger/Handler/DebugTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Test/Unit/Model/TemplateEngine/Decorator/DebugHintsTest.php b/app/code/Magento/Developer/Test/Unit/Model/TemplateEngine/Decorator/DebugHintsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Test/Unit/Model/TemplateEngine/Plugin/DebugHintsTest.php b/app/code/Magento/Developer/Test/Unit/Model/TemplateEngine/Plugin/DebugHintsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Test/Unit/Model/View/Asset/PreProcessor/FrontendCompilationTest.php b/app/code/Magento/Developer/Test/Unit/Model/View/Asset/PreProcessor/FrontendCompilationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Test/Unit/Model/View/Asset/PreProcessor/PreprocessorStrategyTest.php b/app/code/Magento/Developer/Test/Unit/Model/View/Asset/PreProcessor/PreprocessorStrategyTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Test/Unit/Model/View/Page/Config/ClientSideLessCompilation/RendererTest.php b/app/code/Magento/Developer/Test/Unit/Model/View/Page/Config/ClientSideLessCompilation/RendererTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/Test/Unit/Model/View/Page/Config/RendererFactoryTest.php b/app/code/Magento/Developer/Test/Unit/Model/View/Page/Config/RendererFactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/composer.json b/app/code/Magento/Developer/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/etc/adminhtml/di.xml b/app/code/Magento/Developer/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/etc/adminhtml/system.xml b/app/code/Magento/Developer/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/etc/config.xml b/app/code/Magento/Developer/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/etc/di.xml b/app/code/Magento/Developer/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/etc/frontend/di.xml b/app/code/Magento/Developer/etc/frontend/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/etc/module.xml b/app/code/Magento/Developer/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/i18n/de_DE.csv b/app/code/Magento/Developer/i18n/de_DE.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/i18n/en_US.csv b/app/code/Magento/Developer/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/i18n/es_ES.csv b/app/code/Magento/Developer/i18n/es_ES.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/i18n/fr_FR.csv b/app/code/Magento/Developer/i18n/fr_FR.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/i18n/nl_NL.csv b/app/code/Magento/Developer/i18n/nl_NL.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/i18n/pt_BR.csv b/app/code/Magento/Developer/i18n/pt_BR.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/i18n/zh_Hans_CN.csv b/app/code/Magento/Developer/i18n/zh_Hans_CN.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Developer/registration.php b/app/code/Magento/Developer/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Dhl/Block/Adminhtml/Unitofmeasure.php b/app/code/Magento/Dhl/Block/Adminhtml/Unitofmeasure.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Dhl/LICENSE.txt b/app/code/Magento/Dhl/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Dhl/LICENSE_AFL.txt b/app/code/Magento/Dhl/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Dhl/Model/AbstractDhl.php b/app/code/Magento/Dhl/Model/AbstractDhl.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Dhl/Model/Carrier.php b/app/code/Magento/Dhl/Model/Carrier.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Dhl/Model/Plugin/Checkout/Block/Cart/Shipping.php b/app/code/Magento/Dhl/Model/Plugin/Checkout/Block/Cart/Shipping.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Dhl/Model/Source/Contenttype.php b/app/code/Magento/Dhl/Model/Source/Contenttype.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Dhl/Model/Source/Method/AbstractMethod.php b/app/code/Magento/Dhl/Model/Source/Method/AbstractMethod.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Dhl/Model/Source/Method/Doc.php b/app/code/Magento/Dhl/Model/Source/Method/Doc.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Dhl/Model/Source/Method/Freedoc.php b/app/code/Magento/Dhl/Model/Source/Method/Freedoc.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Dhl/Model/Source/Method/Freenondoc.php b/app/code/Magento/Dhl/Model/Source/Method/Freenondoc.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Dhl/Model/Source/Method/Generic.php b/app/code/Magento/Dhl/Model/Source/Method/Generic.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Dhl/Model/Source/Method/Nondoc.php b/app/code/Magento/Dhl/Model/Source/Method/Nondoc.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Dhl/Model/Source/Method/Size.php b/app/code/Magento/Dhl/Model/Source/Method/Size.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Dhl/Model/Source/Method/Unitofmeasure.php b/app/code/Magento/Dhl/Model/Source/Method/Unitofmeasure.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Dhl/Model/Validator/ResponseErrorProcessor.php b/app/code/Magento/Dhl/Model/Validator/ResponseErrorProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Dhl/Model/Validator/XmlValidator.php b/app/code/Magento/Dhl/Model/Validator/XmlValidator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Dhl/README.md b/app/code/Magento/Dhl/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Dhl/Setup/InstallData.php b/app/code/Magento/Dhl/Setup/InstallData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Dhl/Test/Unit/Model/CarrierTest.php b/app/code/Magento/Dhl/Test/Unit/Model/CarrierTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Dhl/Test/Unit/Model/Validator/ResponseErrorProcessorTest.php b/app/code/Magento/Dhl/Test/Unit/Model/Validator/ResponseErrorProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Dhl/Test/Unit/Model/Validator/XmlValidatorTest.php b/app/code/Magento/Dhl/Test/Unit/Model/Validator/XmlValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Dhl/Test/Unit/Model/Validator/_files/invalidDHLResponse.xml b/app/code/Magento/Dhl/Test/Unit/Model/Validator/_files/invalidDHLResponse.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Dhl/Test/Unit/Model/Validator/_files/invalidDHLResponseForQuoteResponse.xml b/app/code/Magento/Dhl/Test/Unit/Model/Validator/_files/invalidDHLResponseForQuoteResponse.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Dhl/Test/Unit/Model/Validator/_files/invalidDHLResponseForShippingLabel.xml b/app/code/Magento/Dhl/Test/Unit/Model/Validator/_files/invalidDHLResponseForShippingLabel.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Dhl/Test/Unit/Model/Validator/_files/invalidDHLResponseWithMissingXmlTag.xml b/app/code/Magento/Dhl/Test/Unit/Model/Validator/_files/invalidDHLResponseWithMissingXmlTag.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Dhl/Test/Unit/Model/Validator/_files/validDHLResponse.xml b/app/code/Magento/Dhl/Test/Unit/Model/Validator/_files/validDHLResponse.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Dhl/Test/Unit/Model/_files/countries.xml b/app/code/Magento/Dhl/Test/Unit/Model/_files/countries.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Dhl/Test/Unit/Model/_files/rates_request_data_dhl.php b/app/code/Magento/Dhl/Test/Unit/Model/_files/rates_request_data_dhl.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Dhl/Test/Unit/Model/_files/response_shipping_label.xml b/app/code/Magento/Dhl/Test/Unit/Model/_files/response_shipping_label.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Dhl/Test/Unit/Model/_files/success_dhl_response_rates.xml b/app/code/Magento/Dhl/Test/Unit/Model/_files/success_dhl_response_rates.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Dhl/composer.json b/app/code/Magento/Dhl/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Dhl/etc/adminhtml/system.xml b/app/code/Magento/Dhl/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Dhl/etc/config.xml b/app/code/Magento/Dhl/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Dhl/etc/countries.xml b/app/code/Magento/Dhl/etc/countries.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Dhl/etc/di.xml b/app/code/Magento/Dhl/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Dhl/etc/module.xml b/app/code/Magento/Dhl/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Dhl/i18n/en_US.csv b/app/code/Magento/Dhl/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Dhl/registration.php b/app/code/Magento/Dhl/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Dhl/view/adminhtml/templates/unitofmeasure.phtml b/app/code/Magento/Dhl/view/adminhtml/templates/unitofmeasure.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Dhl/view/adminhtml/web/logo.jpg b/app/code/Magento/Dhl/view/adminhtml/web/logo.jpg
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Dhl/view/frontend/layout/checkout_cart_index.xml b/app/code/Magento/Dhl/view/frontend/layout/checkout_cart_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Dhl/view/frontend/layout/checkout_index_index.xml b/app/code/Magento/Dhl/view/frontend/layout/checkout_index_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Dhl/view/frontend/web/js/model/shipping-rates-validation-rules.js b/app/code/Magento/Dhl/view/frontend/web/js/model/shipping-rates-validation-rules.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Dhl/view/frontend/web/js/model/shipping-rates-validator.js b/app/code/Magento/Dhl/view/frontend/web/js/model/shipping-rates-validator.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Dhl/view/frontend/web/js/view/shipping-rates-validation.js b/app/code/Magento/Dhl/view/frontend/web/js/view/shipping-rates-validation.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Api/CountryInformationAcquirerInterface.php b/app/code/Magento/Directory/Api/CountryInformationAcquirerInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Api/CurrencyInformationAcquirerInterface.php b/app/code/Magento/Directory/Api/CurrencyInformationAcquirerInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Api/Data/CountryInformationInterface.php b/app/code/Magento/Directory/Api/Data/CountryInformationInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Api/Data/CurrencyInformationInterface.php b/app/code/Magento/Directory/Api/Data/CurrencyInformationInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Api/Data/ExchangeRateInterface.php b/app/code/Magento/Directory/Api/Data/ExchangeRateInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Api/Data/RegionInformationInterface.php b/app/code/Magento/Directory/Api/Data/RegionInformationInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Block/Adminhtml/Frontend/Currency/Base.php b/app/code/Magento/Directory/Block/Adminhtml/Frontend/Currency/Base.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Block/Adminhtml/Frontend/Region/Updater.php b/app/code/Magento/Directory/Block/Adminhtml/Frontend/Region/Updater.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Block/Currency.php b/app/code/Magento/Directory/Block/Currency.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Block/Data.php b/app/code/Magento/Directory/Block/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Controller/Adminhtml/Json/CountryRegion.php b/app/code/Magento/Directory/Controller/Adminhtml/Json/CountryRegion.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Controller/Currency/SwitchAction.php b/app/code/Magento/Directory/Controller/Currency/SwitchAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Helper/Data.php b/app/code/Magento/Directory/Helper/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/LICENSE.txt b/app/code/Magento/Directory/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/LICENSE_AFL.txt b/app/code/Magento/Directory/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Model/AllowedCountries.php b/app/code/Magento/Directory/Model/AllowedCountries.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Model/Config/Source/Allregion.php b/app/code/Magento/Directory/Model/Config/Source/Allregion.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Model/Config/Source/Country.php b/app/code/Magento/Directory/Model/Config/Source/Country.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Model/Config/Source/Country/Full.php b/app/code/Magento/Directory/Model/Config/Source/Country/Full.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Model/Config/Source/WeightUnit.php b/app/code/Magento/Directory/Model/Config/Source/WeightUnit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Model/Country.php b/app/code/Magento/Directory/Model/Country.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Model/Country/Format.php b/app/code/Magento/Directory/Model/Country/Format.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Model/Country/Postcode/Config.php b/app/code/Magento/Directory/Model/Country/Postcode/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Model/Country/Postcode/Config/Converter.php b/app/code/Magento/Directory/Model/Country/Postcode/Config/Converter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Model/Country/Postcode/Config/Data.php b/app/code/Magento/Directory/Model/Country/Postcode/Config/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Model/Country/Postcode/Config/Reader.php b/app/code/Magento/Directory/Model/Country/Postcode/Config/Reader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Model/Country/Postcode/Config/SchemaLocator.php b/app/code/Magento/Directory/Model/Country/Postcode/Config/SchemaLocator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Model/Country/Postcode/ConfigInterface.php b/app/code/Magento/Directory/Model/Country/Postcode/ConfigInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Model/Country/Postcode/Validator.php b/app/code/Magento/Directory/Model/Country/Postcode/Validator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Model/Country/Postcode/ValidatorInterface.php b/app/code/Magento/Directory/Model/Country/Postcode/ValidatorInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Model/CountryInformationAcquirer.php b/app/code/Magento/Directory/Model/CountryInformationAcquirer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Model/Currency.php b/app/code/Magento/Directory/Model/Currency.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Model/Currency/DefaultLocator.php b/app/code/Magento/Directory/Model/Currency/DefaultLocator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Model/Currency/Filter.php b/app/code/Magento/Directory/Model/Currency/Filter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Model/Currency/Import/AbstractImport.php b/app/code/Magento/Directory/Model/Currency/Import/AbstractImport.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Model/Currency/Import/Config.php b/app/code/Magento/Directory/Model/Currency/Import/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Model/Currency/Import/Factory.php b/app/code/Magento/Directory/Model/Currency/Import/Factory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Model/Currency/Import/FixerIo.php b/app/code/Magento/Directory/Model/Currency/Import/FixerIo.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Model/Currency/Import/ImportInterface.php b/app/code/Magento/Directory/Model/Currency/Import/ImportInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Model/Currency/Import/Source/Service.php b/app/code/Magento/Directory/Model/Currency/Import/Source/Service.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Model/Currency/Import/Webservicex.php b/app/code/Magento/Directory/Model/Currency/Import/Webservicex.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Model/Currency/Import/YahooFinance.php b/app/code/Magento/Directory/Model/Currency/Import/YahooFinance.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Model/CurrencyConfig.php b/app/code/Magento/Directory/Model/CurrencyConfig.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Model/CurrencyInformationAcquirer.php b/app/code/Magento/Directory/Model/CurrencyInformationAcquirer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Model/Data/CountryInformation.php b/app/code/Magento/Directory/Model/Data/CountryInformation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Model/Data/CurrencyInformation.php b/app/code/Magento/Directory/Model/Data/CurrencyInformation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Model/Data/ExchangeRate.php b/app/code/Magento/Directory/Model/Data/ExchangeRate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Model/Data/RegionInformation.php b/app/code/Magento/Directory/Model/Data/RegionInformation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Model/Observer.php b/app/code/Magento/Directory/Model/Observer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Model/PriceCurrency.php b/app/code/Magento/Directory/Model/PriceCurrency.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Model/Region.php b/app/code/Magento/Directory/Model/Region.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Model/RegionFactory.php b/app/code/Magento/Directory/Model/RegionFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Model/ResourceModel/Country.php b/app/code/Magento/Directory/Model/ResourceModel/Country.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Model/ResourceModel/Country/Collection.php b/app/code/Magento/Directory/Model/ResourceModel/Country/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Model/ResourceModel/Country/Format.php b/app/code/Magento/Directory/Model/ResourceModel/Country/Format.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Model/ResourceModel/Country/Format/Collection.php b/app/code/Magento/Directory/Model/ResourceModel/Country/Format/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Model/ResourceModel/Currency.php b/app/code/Magento/Directory/Model/ResourceModel/Currency.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Model/ResourceModel/Region.php b/app/code/Magento/Directory/Model/ResourceModel/Region.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Model/ResourceModel/Region/Collection.php b/app/code/Magento/Directory/Model/ResourceModel/Region/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Model/TopDestinationCountries.php b/app/code/Magento/Directory/Model/TopDestinationCountries.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/README.md b/app/code/Magento/Directory/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Setup/InstallData.php b/app/code/Magento/Directory/Setup/InstallData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Setup/InstallSchema.php b/app/code/Magento/Directory/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Setup/UpgradeData.php b/app/code/Magento/Directory/Setup/UpgradeData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Test/Unit/Block/CurrencyTest.php b/app/code/Magento/Directory/Test/Unit/Block/CurrencyTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Test/Unit/Block/DataTest.php b/app/code/Magento/Directory/Test/Unit/Block/DataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Test/Unit/Helper/DataTest.php b/app/code/Magento/Directory/Test/Unit/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Test/Unit/Model/AllowedCountriesTest.php b/app/code/Magento/Directory/Test/Unit/Model/AllowedCountriesTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Test/Unit/Model/Config/Source/AllRegionTest.php b/app/code/Magento/Directory/Test/Unit/Model/Config/Source/AllRegionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Test/Unit/Model/Config/Source/CountryTest.php b/app/code/Magento/Directory/Test/Unit/Model/Config/Source/CountryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Test/Unit/Model/Country/Postcode/Config/ConverterTest.php b/app/code/Magento/Directory/Test/Unit/Model/Country/Postcode/Config/ConverterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Test/Unit/Model/Country/Postcode/Config/DataTest.php b/app/code/Magento/Directory/Test/Unit/Model/Country/Postcode/Config/DataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Test/Unit/Model/Country/Postcode/Config/ReaderTest.php b/app/code/Magento/Directory/Test/Unit/Model/Country/Postcode/Config/ReaderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Test/Unit/Model/Country/Postcode/Config/SchemaLocatorTest.php b/app/code/Magento/Directory/Test/Unit/Model/Country/Postcode/Config/SchemaLocatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Test/Unit/Model/Country/Postcode/ConfigTest.php b/app/code/Magento/Directory/Test/Unit/Model/Country/Postcode/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Test/Unit/Model/Country/Postcode/ValidatorTest.php b/app/code/Magento/Directory/Test/Unit/Model/Country/Postcode/ValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Test/Unit/Model/CountryInformationAcquirerTest.php b/app/code/Magento/Directory/Test/Unit/Model/CountryInformationAcquirerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Test/Unit/Model/CountryTest.php b/app/code/Magento/Directory/Test/Unit/Model/CountryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Test/Unit/Model/Currency/DefaultLocatorTest.php b/app/code/Magento/Directory/Test/Unit/Model/Currency/DefaultLocatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Test/Unit/Model/Currency/Import/ConfigTest.php b/app/code/Magento/Directory/Test/Unit/Model/Currency/Import/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Test/Unit/Model/Currency/Import/FactoryTest.php b/app/code/Magento/Directory/Test/Unit/Model/Currency/Import/FactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Test/Unit/Model/Currency/Import/FixerIoTest.php b/app/code/Magento/Directory/Test/Unit/Model/Currency/Import/FixerIoTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Test/Unit/Model/Currency/Import/Source/ServiceTest.php b/app/code/Magento/Directory/Test/Unit/Model/Currency/Import/Source/ServiceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Test/Unit/Model/Currency/Import/YahooFinanceTest.php b/app/code/Magento/Directory/Test/Unit/Model/Currency/Import/YahooFinanceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Test/Unit/Model/CurrencyConfigTest.php b/app/code/Magento/Directory/Test/Unit/Model/CurrencyConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Test/Unit/Model/CurrencyInformationAcquirerTest.php b/app/code/Magento/Directory/Test/Unit/Model/CurrencyInformationAcquirerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Test/Unit/Model/CurrencyTest.php b/app/code/Magento/Directory/Test/Unit/Model/CurrencyTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Test/Unit/Model/ObserverTest.php b/app/code/Magento/Directory/Test/Unit/Model/ObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Test/Unit/Model/PriceCurrencyTest.php b/app/code/Magento/Directory/Test/Unit/Model/PriceCurrencyTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Test/Unit/Model/ResourceModel/Country/CollectionTest.php b/app/code/Magento/Directory/Test/Unit/Model/ResourceModel/Country/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Test/Unit/Model/ResourceModel/Region/CollectionTest.php b/app/code/Magento/Directory/Test/Unit/Model/ResourceModel/Region/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Test/Unit/Model/TopDestinationCountriesTest.php b/app/code/Magento/Directory/Test/Unit/Model/TopDestinationCountriesTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Test/Unit/_files/zip_codes.php b/app/code/Magento/Directory/Test/Unit/_files/zip_codes.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/Test/Unit/_files/zip_codes.xml b/app/code/Magento/Directory/Test/Unit/_files/zip_codes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/composer.json b/app/code/Magento/Directory/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/etc/adminhtml/routes.xml b/app/code/Magento/Directory/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/etc/adminhtml/system.xml b/app/code/Magento/Directory/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/etc/config.xml b/app/code/Magento/Directory/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/etc/crontab.xml b/app/code/Magento/Directory/etc/crontab.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/etc/di.xml b/app/code/Magento/Directory/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/etc/email_templates.xml b/app/code/Magento/Directory/etc/email_templates.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/etc/frontend/routes.xml b/app/code/Magento/Directory/etc/frontend/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/etc/frontend/sections.xml b/app/code/Magento/Directory/etc/frontend/sections.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/etc/module.xml b/app/code/Magento/Directory/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/etc/webapi.xml b/app/code/Magento/Directory/etc/webapi.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/etc/zip_codes.xml b/app/code/Magento/Directory/etc/zip_codes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/etc/zip_codes.xsd b/app/code/Magento/Directory/etc/zip_codes.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/i18n/en_US.csv b/app/code/Magento/Directory/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/registration.php b/app/code/Magento/Directory/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/view/adminhtml/email/currency_update_notification.html b/app/code/Magento/Directory/view/adminhtml/email/currency_update_notification.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/view/adminhtml/templates/js/optional_zip_countries.phtml b/app/code/Magento/Directory/view/adminhtml/templates/js/optional_zip_countries.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/view/frontend/layout/catalog_category_view.xml b/app/code/Magento/Directory/view/frontend/layout/catalog_category_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/view/frontend/layout/catalogsearch_advanced_index.xml b/app/code/Magento/Directory/view/frontend/layout/catalogsearch_advanced_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/view/frontend/layout/catalogsearch_advanced_result.xml b/app/code/Magento/Directory/view/frontend/layout/catalogsearch_advanced_result.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/view/frontend/layout/catalogsearch_result_index.xml b/app/code/Magento/Directory/view/frontend/layout/catalogsearch_result_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/view/frontend/layout/default.xml b/app/code/Magento/Directory/view/frontend/layout/default.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/view/frontend/templates/currency.phtml b/app/code/Magento/Directory/view/frontend/templates/currency.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Directory/view/frontend/templates/currency/switch.phtml b/app/code/Magento/Directory/view/frontend/templates/currency/switch.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Api/Data/DownloadableOptionInterface.php b/app/code/Magento/Downloadable/Api/Data/DownloadableOptionInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Api/Data/File/ContentInterface.php b/app/code/Magento/Downloadable/Api/Data/File/ContentInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Api/Data/File/ContentUploaderInterface.php b/app/code/Magento/Downloadable/Api/Data/File/ContentUploaderInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Api/Data/LinkInterface.php b/app/code/Magento/Downloadable/Api/Data/LinkInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Api/Data/ProductAttributeInterface.php b/app/code/Magento/Downloadable/Api/Data/ProductAttributeInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Api/Data/SampleInterface.php b/app/code/Magento/Downloadable/Api/Data/SampleInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Api/LinkRepositoryInterface.php b/app/code/Magento/Downloadable/Api/LinkRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Api/SampleRepositoryInterface.php b/app/code/Magento/Downloadable/Api/SampleRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Downloadable.php b/app/code/Magento/Downloadable/Block/Adminhtml/Catalog/Product/Composite/Fieldset/Downloadable.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable.php b/app/code/Magento/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/Links.php b/app/code/Magento/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/Links.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/Samples.php b/app/code/Magento/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/Samples.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Block/Adminhtml/Sales/Items/Column/Downloadable/Name.php b/app/code/Magento/Downloadable/Block/Adminhtml/Sales/Items/Column/Downloadable/Name.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Block/Catalog/Product/Links.php b/app/code/Magento/Downloadable/Block/Catalog/Product/Links.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Block/Catalog/Product/Samples.php b/app/code/Magento/Downloadable/Block/Catalog/Product/Samples.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Block/Catalog/Product/View/Type.php b/app/code/Magento/Downloadable/Block/Catalog/Product/View/Type.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Block/Checkout/Cart/Item/Renderer.php b/app/code/Magento/Downloadable/Block/Checkout/Cart/Item/Renderer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Block/Checkout/Success.php b/app/code/Magento/Downloadable/Block/Checkout/Success.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Block/Customer/Products/ListProducts.php b/app/code/Magento/Downloadable/Block/Customer/Products/ListProducts.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Block/Sales/Order/Email/Items/Downloadable.php b/app/code/Magento/Downloadable/Block/Sales/Order/Email/Items/Downloadable.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Block/Sales/Order/Email/Items/Order/Downloadable.php b/app/code/Magento/Downloadable/Block/Sales/Order/Email/Items/Order/Downloadable.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Block/Sales/Order/Item/Renderer/Downloadable.php b/app/code/Magento/Downloadable/Block/Sales/Order/Item/Renderer/Downloadable.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/File.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/File.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/File/Upload.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/File/Upload.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/AddAttributeToTemplate.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/AddAttributeToTemplate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/AlertsPriceGrid.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/AlertsPriceGrid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/AlertsStockGrid.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/AlertsStockGrid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Categories.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Categories.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Crosssell.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Crosssell.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/CrosssellGrid.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/CrosssellGrid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/CustomOptions.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/CustomOptions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Duplicate.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Duplicate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Edit.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Form.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Grid.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/GridOnly.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/GridOnly.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Index.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Link.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Link.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/MassDelete.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/MassDelete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/MassStatus.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/MassStatus.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/NewAction.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/NewAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Options.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Options.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/OptionsImportGrid.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/OptionsImportGrid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Related.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Related.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/RelatedGrid.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/RelatedGrid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Sample.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Sample.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Save.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/ShowUpdateResult.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/ShowUpdateResult.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/SuggestAttributes.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/SuggestAttributes.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Upsell.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Upsell.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/UpsellGrid.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/UpsellGrid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Validate.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Validate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Wysiwyg.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Downloadable/Product/Edit/Wysiwyg.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Controller/Adminhtml/Product/Initialization/Helper/Plugin/Downloadable.php b/app/code/Magento/Downloadable/Controller/Adminhtml/Product/Initialization/Helper/Plugin/Downloadable.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Controller/Customer/Products.php b/app/code/Magento/Downloadable/Controller/Customer/Products.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Controller/Download.php b/app/code/Magento/Downloadable/Controller/Download.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Controller/Download/Link.php b/app/code/Magento/Downloadable/Controller/Download/Link.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Controller/Download/LinkSample.php b/app/code/Magento/Downloadable/Controller/Download/LinkSample.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Controller/Download/Sample.php b/app/code/Magento/Downloadable/Controller/Download/Sample.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Helper/Catalog/Product/Configuration.php b/app/code/Magento/Downloadable/Helper/Catalog/Product/Configuration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Helper/Data.php b/app/code/Magento/Downloadable/Helper/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Helper/Download.php b/app/code/Magento/Downloadable/Helper/Download.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Helper/File.php b/app/code/Magento/Downloadable/Helper/File.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/LICENSE.txt b/app/code/Magento/Downloadable/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/LICENSE_AFL.txt b/app/code/Magento/Downloadable/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/ComponentInterface.php b/app/code/Magento/Downloadable/Model/ComponentInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/DownloadableOption.php b/app/code/Magento/Downloadable/Model/DownloadableOption.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/File/Content.php b/app/code/Magento/Downloadable/Model/File/Content.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/File/ContentUploader.php b/app/code/Magento/Downloadable/Model/File/ContentUploader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/File/ContentValidator.php b/app/code/Magento/Downloadable/Model/File/ContentValidator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/Link.php b/app/code/Magento/Downloadable/Model/Link.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/Link/Builder.php b/app/code/Magento/Downloadable/Model/Link/Builder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/Link/ContentValidator.php b/app/code/Magento/Downloadable/Model/Link/ContentValidator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/Link/CreateHandler.php b/app/code/Magento/Downloadable/Model/Link/CreateHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/Link/DeleteHandler.php b/app/code/Magento/Downloadable/Model/Link/DeleteHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/Link/Purchased.php b/app/code/Magento/Downloadable/Model/Link/Purchased.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/Link/Purchased/Item.php b/app/code/Magento/Downloadable/Model/Link/Purchased/Item.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/Link/ReadHandler.php b/app/code/Magento/Downloadable/Model/Link/ReadHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/Link/UpdateHandler.php b/app/code/Magento/Downloadable/Model/Link/UpdateHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/LinkRepository.php b/app/code/Magento/Downloadable/Model/LinkRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/Product/CartConfiguration/Plugin/Downloadable.php b/app/code/Magento/Downloadable/Model/Product/CartConfiguration/Plugin/Downloadable.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/Product/CopyConstructor/Downloadable.php b/app/code/Magento/Downloadable/Model/Product/CopyConstructor/Downloadable.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/Product/Price.php b/app/code/Magento/Downloadable/Model/Product/Price.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/Product/Type.php b/app/code/Magento/Downloadable/Model/Product/Type.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/Product/TypeHandler/AbstractTypeHandler.php b/app/code/Magento/Downloadable/Model/Product/TypeHandler/AbstractTypeHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/Product/TypeHandler/Link.php b/app/code/Magento/Downloadable/Model/Product/TypeHandler/Link.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/Product/TypeHandler/Sample.php b/app/code/Magento/Downloadable/Model/Product/TypeHandler/Sample.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/Product/TypeHandler/TypeHandler.php b/app/code/Magento/Downloadable/Model/Product/TypeHandler/TypeHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/Product/TypeHandler/TypeHandlerInterface.php b/app/code/Magento/Downloadable/Model/Product/TypeHandler/TypeHandlerInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/Product/TypeTransitionManager/Plugin/Downloadable.php b/app/code/Magento/Downloadable/Model/Product/TypeTransitionManager/Plugin/Downloadable.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/ProductOptionProcessor.php b/app/code/Magento/Downloadable/Model/ProductOptionProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/Quote/Item/CartItemProcessor.php b/app/code/Magento/Downloadable/Model/Quote/Item/CartItemProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/ResourceModel/Indexer/Price.php b/app/code/Magento/Downloadable/Model/ResourceModel/Indexer/Price.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/ResourceModel/Link.php b/app/code/Magento/Downloadable/Model/ResourceModel/Link.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/ResourceModel/Link/Collection.php b/app/code/Magento/Downloadable/Model/ResourceModel/Link/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/ResourceModel/Link/Purchased.php b/app/code/Magento/Downloadable/Model/ResourceModel/Link/Purchased.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/ResourceModel/Link/Purchased/Collection.php b/app/code/Magento/Downloadable/Model/ResourceModel/Link/Purchased/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/ResourceModel/Link/Purchased/Item.php b/app/code/Magento/Downloadable/Model/ResourceModel/Link/Purchased/Item.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/ResourceModel/Link/Purchased/Item/Collection.php b/app/code/Magento/Downloadable/Model/ResourceModel/Link/Purchased/Item/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/ResourceModel/Sample.php b/app/code/Magento/Downloadable/Model/ResourceModel/Sample.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/ResourceModel/Sample/Collection.php b/app/code/Magento/Downloadable/Model/ResourceModel/Sample/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/Sales/Order/Pdf/Items/AbstractItems.php b/app/code/Magento/Downloadable/Model/Sales/Order/Pdf/Items/AbstractItems.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/Sales/Order/Pdf/Items/Creditmemo.php b/app/code/Magento/Downloadable/Model/Sales/Order/Pdf/Items/Creditmemo.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/Sales/Order/Pdf/Items/Invoice.php b/app/code/Magento/Downloadable/Model/Sales/Order/Pdf/Items/Invoice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/Sample.php b/app/code/Magento/Downloadable/Model/Sample.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/Sample/Builder.php b/app/code/Magento/Downloadable/Model/Sample/Builder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/Sample/ContentValidator.php b/app/code/Magento/Downloadable/Model/Sample/ContentValidator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/Sample/CreateHandler.php b/app/code/Magento/Downloadable/Model/Sample/CreateHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/Sample/DeleteHandler.php b/app/code/Magento/Downloadable/Model/Sample/DeleteHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/Sample/ReadHandler.php b/app/code/Magento/Downloadable/Model/Sample/ReadHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/Sample/UpdateHandler.php b/app/code/Magento/Downloadable/Model/Sample/UpdateHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/SampleRepository.php b/app/code/Magento/Downloadable/Model/SampleRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/Source/Shareable.php b/app/code/Magento/Downloadable/Model/Source/Shareable.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/Source/TypeUpload.php b/app/code/Magento/Downloadable/Model/Source/TypeUpload.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/System/Config/Source/Contentdisposition.php b/app/code/Magento/Downloadable/Model/System/Config/Source/Contentdisposition.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Model/System/Config/Source/Orderitemstatus.php b/app/code/Magento/Downloadable/Model/System/Config/Source/Orderitemstatus.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Observer/InitOptionRendererObserver.php b/app/code/Magento/Downloadable/Observer/InitOptionRendererObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Observer/IsAllowedGuestCheckoutObserver.php b/app/code/Magento/Downloadable/Observer/IsAllowedGuestCheckoutObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Observer/SaveDownloadableOrderItemObserver.php b/app/code/Magento/Downloadable/Observer/SaveDownloadableOrderItemObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Observer/SetHasDownloadableProductsObserver.php b/app/code/Magento/Downloadable/Observer/SetHasDownloadableProductsObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Observer/SetLinkStatusObserver.php b/app/code/Magento/Downloadable/Observer/SetLinkStatusObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Pricing/Price/LinkPrice.php b/app/code/Magento/Downloadable/Pricing/Price/LinkPrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Pricing/Price/LinkPriceInterface.php b/app/code/Magento/Downloadable/Pricing/Price/LinkPriceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/README.md b/app/code/Magento/Downloadable/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Setup/InstallData.php b/app/code/Magento/Downloadable/Setup/InstallData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Setup/InstallSchema.php b/app/code/Magento/Downloadable/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Test/Unit/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/LinksTest.php b/app/code/Magento/Downloadable/Test/Unit/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/LinksTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Test/Unit/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/SamplesTest.php b/app/code/Magento/Downloadable/Test/Unit/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/SamplesTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Test/Unit/Block/Adminhtml/Sales/Items/Column/Downloadable/NameTest.php b/app/code/Magento/Downloadable/Test/Unit/Block/Adminhtml/Sales/Items/Column/Downloadable/NameTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Test/Unit/Block/Catalog/Product/LinksTest.php b/app/code/Magento/Downloadable/Test/Unit/Block/Catalog/Product/LinksTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Test/Unit/Block/Sales/Order/Email/Items/DownloadableTest.php b/app/code/Magento/Downloadable/Test/Unit/Block/Sales/Order/Email/Items/DownloadableTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Test/Unit/Block/Sales/Order/Email/Items/Order/DownloadableTest.php b/app/code/Magento/Downloadable/Test/Unit/Block/Sales/Order/Email/Items/Order/DownloadableTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Test/Unit/Block/Sales/Order/Item/Renderer/DownloadableTest.php b/app/code/Magento/Downloadable/Test/Unit/Block/Sales/Order/Item/Renderer/DownloadableTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Test/Unit/Controller/Adminhtml/Downloadable/File/UploadTest.php b/app/code/Magento/Downloadable/Test/Unit/Controller/Adminhtml/Downloadable/File/UploadTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Test/Unit/Controller/Adminhtml/Downloadable/Product/Edit/LinkTest.php b/app/code/Magento/Downloadable/Test/Unit/Controller/Adminhtml/Downloadable/Product/Edit/LinkTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Test/Unit/Controller/Adminhtml/Downloadable/Product/Edit/SampleTest.php b/app/code/Magento/Downloadable/Test/Unit/Controller/Adminhtml/Downloadable/Product/Edit/SampleTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Test/Unit/Controller/Adminhtml/Product/Initialization/Helper/Plugin/DownloadableTest.php b/app/code/Magento/Downloadable/Test/Unit/Controller/Adminhtml/Product/Initialization/Helper/Plugin/DownloadableTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Test/Unit/Controller/Download/LinkSampleTest.php b/app/code/Magento/Downloadable/Test/Unit/Controller/Download/LinkSampleTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Test/Unit/Controller/Download/LinkTest.php b/app/code/Magento/Downloadable/Test/Unit/Controller/Download/LinkTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Test/Unit/Controller/Download/SampleTest.php b/app/code/Magento/Downloadable/Test/Unit/Controller/Download/SampleTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Test/Unit/Helper/Catalog/Product/ConfigurationTest.php b/app/code/Magento/Downloadable/Test/Unit/Helper/Catalog/Product/ConfigurationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Test/Unit/Helper/DownloadTest.php b/app/code/Magento/Downloadable/Test/Unit/Helper/DownloadTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Test/Unit/Helper/FileTest.php b/app/code/Magento/Downloadable/Test/Unit/Helper/FileTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Test/Unit/Model/File/ContentValidatorTest.php b/app/code/Magento/Downloadable/Test/Unit/Model/File/ContentValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Test/Unit/Model/Link/BuilderTest.php b/app/code/Magento/Downloadable/Test/Unit/Model/Link/BuilderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Test/Unit/Model/Link/ContentValidatorTest.php b/app/code/Magento/Downloadable/Test/Unit/Model/Link/ContentValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Test/Unit/Model/Link/CreateHandlerTest.php b/app/code/Magento/Downloadable/Test/Unit/Model/Link/CreateHandlerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Test/Unit/Model/Link/UpdateHandlerTest.php b/app/code/Magento/Downloadable/Test/Unit/Model/Link/UpdateHandlerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Test/Unit/Model/LinkRepositoryTest.php b/app/code/Magento/Downloadable/Test/Unit/Model/LinkRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Test/Unit/Model/Product/CopyConstructor/DownloadableTest.php b/app/code/Magento/Downloadable/Test/Unit/Model/Product/CopyConstructor/DownloadableTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Test/Unit/Model/Product/CopyConstructor/_files/expected_data.php b/app/code/Magento/Downloadable/Test/Unit/Model/Product/CopyConstructor/_files/expected_data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeHandler/LinkTest.php b/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeHandler/LinkTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeHandler/SampleTest.php b/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeHandler/SampleTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeTest.php b/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeTransitionManager/Plugin/DownloadableTest.php b/app/code/Magento/Downloadable/Test/Unit/Model/Product/TypeTransitionManager/Plugin/DownloadableTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Test/Unit/Model/ProductOptionProcessorTest.php b/app/code/Magento/Downloadable/Test/Unit/Model/ProductOptionProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Test/Unit/Model/Quote/Item/CartItemProcessorTest.php b/app/code/Magento/Downloadable/Test/Unit/Model/Quote/Item/CartItemProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Test/Unit/Model/Sales/Order/Pdf/Items/CreditmemoTest.php b/app/code/Magento/Downloadable/Test/Unit/Model/Sales/Order/Pdf/Items/CreditmemoTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Test/Unit/Model/Sample/BuilderTest.php b/app/code/Magento/Downloadable/Test/Unit/Model/Sample/BuilderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Test/Unit/Model/Sample/ContentValidatorTest.php b/app/code/Magento/Downloadable/Test/Unit/Model/Sample/ContentValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Test/Unit/Model/Sample/CreateHandlerTest.php b/app/code/Magento/Downloadable/Test/Unit/Model/Sample/CreateHandlerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Test/Unit/Model/Sample/UpdateHandlerTest.php b/app/code/Magento/Downloadable/Test/Unit/Model/Sample/UpdateHandlerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Test/Unit/Model/SampleRepositoryTest.php b/app/code/Magento/Downloadable/Test/Unit/Model/SampleRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Test/Unit/Observer/IsAllowedGuestCheckoutObserverTest.php b/app/code/Magento/Downloadable/Test/Unit/Observer/IsAllowedGuestCheckoutObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Test/Unit/Observer/SaveDownloadableOrderItemObserverTest.php b/app/code/Magento/Downloadable/Test/Unit/Observer/SaveDownloadableOrderItemObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Test/Unit/Observer/SetLinkStatusObserverTest.php b/app/code/Magento/Downloadable/Test/Unit/Observer/SetLinkStatusObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Test/Unit/Pricing/Price/LinkPriceTest.php b/app/code/Magento/Downloadable/Test/Unit/Pricing/Price/LinkPriceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Test/Unit/Ui/DataProvider/Product/Form/Modifier/CompositeTest.php b/app/code/Magento/Downloadable/Test/Unit/Ui/DataProvider/Product/Form/Modifier/CompositeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Test/Unit/Ui/DataProvider/Product/Form/Modifier/Data/LinksTest.php b/app/code/Magento/Downloadable/Test/Unit/Ui/DataProvider/Product/Form/Modifier/Data/LinksTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Test/Unit/Ui/DataProvider/Product/Form/Modifier/DownloadablePanelTest.php b/app/code/Magento/Downloadable/Test/Unit/Ui/DataProvider/Product/Form/Modifier/DownloadablePanelTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Test/Unit/Ui/DataProvider/Product/Form/Modifier/LinksTest.php b/app/code/Magento/Downloadable/Test/Unit/Ui/DataProvider/Product/Form/Modifier/LinksTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Test/Unit/Ui/DataProvider/Product/Form/Modifier/SamplesTest.php b/app/code/Magento/Downloadable/Test/Unit/Ui/DataProvider/Product/Form/Modifier/SamplesTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Test/Unit/_files/download_mock.php b/app/code/Magento/Downloadable/Test/Unit/_files/download_mock.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Ui/DataProvider/Product/Form/Modifier/Composite.php b/app/code/Magento/Downloadable/Ui/DataProvider/Product/Form/Modifier/Composite.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Ui/DataProvider/Product/Form/Modifier/Data/Links.php b/app/code/Magento/Downloadable/Ui/DataProvider/Product/Form/Modifier/Data/Links.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Ui/DataProvider/Product/Form/Modifier/Data/Samples.php b/app/code/Magento/Downloadable/Ui/DataProvider/Product/Form/Modifier/Data/Samples.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Ui/DataProvider/Product/Form/Modifier/DownloadablePanel.php b/app/code/Magento/Downloadable/Ui/DataProvider/Product/Form/Modifier/DownloadablePanel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Ui/DataProvider/Product/Form/Modifier/Links.php b/app/code/Magento/Downloadable/Ui/DataProvider/Product/Form/Modifier/Links.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Ui/DataProvider/Product/Form/Modifier/Samples.php b/app/code/Magento/Downloadable/Ui/DataProvider/Product/Form/Modifier/Samples.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/Ui/DataProvider/Product/Form/Modifier/UsedDefault.php b/app/code/Magento/Downloadable/Ui/DataProvider/Product/Form/Modifier/UsedDefault.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/composer.json b/app/code/Magento/Downloadable/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/etc/acl.xml b/app/code/Magento/Downloadable/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/etc/adminhtml/di.xml b/app/code/Magento/Downloadable/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/etc/adminhtml/menu.xml b/app/code/Magento/Downloadable/etc/adminhtml/menu.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/etc/adminhtml/routes.xml b/app/code/Magento/Downloadable/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/etc/adminhtml/system.xml b/app/code/Magento/Downloadable/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/etc/catalog_attributes.xml b/app/code/Magento/Downloadable/etc/catalog_attributes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/etc/config.xml b/app/code/Magento/Downloadable/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/etc/di.xml b/app/code/Magento/Downloadable/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/etc/events.xml b/app/code/Magento/Downloadable/etc/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/etc/extension_attributes.xml b/app/code/Magento/Downloadable/etc/extension_attributes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/etc/fieldset.xml b/app/code/Magento/Downloadable/etc/fieldset.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/etc/frontend/di.xml b/app/code/Magento/Downloadable/etc/frontend/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/etc/frontend/events.xml b/app/code/Magento/Downloadable/etc/frontend/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/etc/frontend/page_types.xml b/app/code/Magento/Downloadable/etc/frontend/page_types.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/etc/frontend/routes.xml b/app/code/Magento/Downloadable/etc/frontend/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/etc/module.xml b/app/code/Magento/Downloadable/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/etc/pdf.xml b/app/code/Magento/Downloadable/etc/pdf.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/etc/product_types.xml b/app/code/Magento/Downloadable/etc/product_types.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/etc/sales.xml b/app/code/Magento/Downloadable/etc/sales.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/etc/webapi.xml b/app/code/Magento/Downloadable/etc/webapi.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/etc/webapi_rest/di.xml b/app/code/Magento/Downloadable/etc/webapi_rest/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/etc/webapi_soap/di.xml b/app/code/Magento/Downloadable/etc/webapi_soap/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/i18n/en_US.csv b/app/code/Magento/Downloadable/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/registration.php b/app/code/Magento/Downloadable/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/adminhtml/layout/catalog_product_downloadable.xml b/app/code/Magento/Downloadable/view/adminhtml/layout/catalog_product_downloadable.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/adminhtml/layout/catalog_product_simple.xml b/app/code/Magento/Downloadable/view/adminhtml/layout/catalog_product_simple.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/adminhtml/layout/catalog_product_view_type_downloadable.xml b/app/code/Magento/Downloadable/view/adminhtml/layout/catalog_product_view_type_downloadable.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/adminhtml/layout/catalog_product_virtual.xml b/app/code/Magento/Downloadable/view/adminhtml/layout/catalog_product_virtual.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/adminhtml/layout/customer_index_wishlist.xml b/app/code/Magento/Downloadable/view/adminhtml/layout/customer_index_wishlist.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/adminhtml/layout/downloadable_items.xml b/app/code/Magento/Downloadable/view/adminhtml/layout/downloadable_items.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/adminhtml/layout/sales_order_creditmemo_new.xml b/app/code/Magento/Downloadable/view/adminhtml/layout/sales_order_creditmemo_new.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/adminhtml/layout/sales_order_creditmemo_updateqty.xml b/app/code/Magento/Downloadable/view/adminhtml/layout/sales_order_creditmemo_updateqty.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/adminhtml/layout/sales_order_creditmemo_view.xml b/app/code/Magento/Downloadable/view/adminhtml/layout/sales_order_creditmemo_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/adminhtml/layout/sales_order_invoice_new.xml b/app/code/Magento/Downloadable/view/adminhtml/layout/sales_order_invoice_new.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/adminhtml/layout/sales_order_invoice_updateqty.xml b/app/code/Magento/Downloadable/view/adminhtml/layout/sales_order_invoice_updateqty.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/adminhtml/layout/sales_order_invoice_view.xml b/app/code/Magento/Downloadable/view/adminhtml/layout/sales_order_invoice_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/adminhtml/layout/sales_order_view.xml b/app/code/Magento/Downloadable/view/adminhtml/layout/sales_order_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/adminhtml/templates/product/composite/fieldset/downloadable.phtml b/app/code/Magento/Downloadable/view/adminhtml/templates/product/composite/fieldset/downloadable.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/adminhtml/templates/product/edit/downloadable.phtml b/app/code/Magento/Downloadable/view/adminhtml/templates/product/edit/downloadable.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/adminhtml/templates/product/edit/downloadable/links.phtml b/app/code/Magento/Downloadable/view/adminhtml/templates/product/edit/downloadable/links.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/adminhtml/templates/product/edit/downloadable/samples.phtml b/app/code/Magento/Downloadable/view/adminhtml/templates/product/edit/downloadable/samples.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/adminhtml/templates/sales/items/column/downloadable/creditmemo/name.phtml b/app/code/Magento/Downloadable/view/adminhtml/templates/sales/items/column/downloadable/creditmemo/name.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/adminhtml/templates/sales/items/column/downloadable/invoice/name.phtml b/app/code/Magento/Downloadable/view/adminhtml/templates/sales/items/column/downloadable/invoice/name.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/adminhtml/templates/sales/items/column/downloadable/name.phtml b/app/code/Magento/Downloadable/view/adminhtml/templates/sales/items/column/downloadable/name.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/adminhtml/web/downloadable-type-handler.js b/app/code/Magento/Downloadable/view/adminhtml/web/downloadable-type-handler.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/adminhtml/web/js/components/file-uploader.js b/app/code/Magento/Downloadable/view/adminhtml/web/js/components/file-uploader.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/adminhtml/web/js/components/is-downloadable-handler.js b/app/code/Magento/Downloadable/view/adminhtml/web/js/components/is-downloadable-handler.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/adminhtml/web/js/components/price-handler.js b/app/code/Magento/Downloadable/view/adminhtml/web/js/components/price-handler.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/adminhtml/web/js/components/upload-type-handler.js b/app/code/Magento/Downloadable/view/adminhtml/web/js/components/upload-type-handler.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/adminhtml/web/js/components/use-price-default-handler.js b/app/code/Magento/Downloadable/view/adminhtml/web/js/components/use-price-default-handler.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/adminhtml/web/template/components/file-uploader.html b/app/code/Magento/Downloadable/view/adminhtml/web/template/components/file-uploader.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/frontend/layout/catalog_product_view_type_downloadable.xml b/app/code/Magento/Downloadable/view/frontend/layout/catalog_product_view_type_downloadable.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/frontend/layout/checkout_cart_configure_type_downloadable.xml b/app/code/Magento/Downloadable/view/frontend/layout/checkout_cart_configure_type_downloadable.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/frontend/layout/checkout_cart_item_renderers.xml b/app/code/Magento/Downloadable/view/frontend/layout/checkout_cart_item_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/frontend/layout/checkout_onepage_review_item_renderers.xml b/app/code/Magento/Downloadable/view/frontend/layout/checkout_onepage_review_item_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/frontend/layout/checkout_onepage_success.xml b/app/code/Magento/Downloadable/view/frontend/layout/checkout_onepage_success.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/frontend/layout/customer_account.xml b/app/code/Magento/Downloadable/view/frontend/layout/customer_account.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/frontend/layout/downloadable_customer_products.xml b/app/code/Magento/Downloadable/view/frontend/layout/downloadable_customer_products.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/frontend/layout/multishipping_checkout_success.xml b/app/code/Magento/Downloadable/view/frontend/layout/multishipping_checkout_success.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/frontend/layout/sales_email_order_creditmemo_renderers.xml b/app/code/Magento/Downloadable/view/frontend/layout/sales_email_order_creditmemo_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/frontend/layout/sales_email_order_invoice_renderers.xml b/app/code/Magento/Downloadable/view/frontend/layout/sales_email_order_invoice_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/frontend/layout/sales_email_order_renderers.xml b/app/code/Magento/Downloadable/view/frontend/layout/sales_email_order_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/frontend/layout/sales_order_creditmemo_renderers.xml b/app/code/Magento/Downloadable/view/frontend/layout/sales_order_creditmemo_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/frontend/layout/sales_order_invoice_renderers.xml b/app/code/Magento/Downloadable/view/frontend/layout/sales_order_invoice_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/frontend/layout/sales_order_item_renderers.xml b/app/code/Magento/Downloadable/view/frontend/layout/sales_order_item_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/frontend/layout/sales_order_print_creditmemo_renderers.xml b/app/code/Magento/Downloadable/view/frontend/layout/sales_order_print_creditmemo_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/frontend/layout/sales_order_print_invoice_renderers.xml b/app/code/Magento/Downloadable/view/frontend/layout/sales_order_print_invoice_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/frontend/layout/sales_order_print_renderers.xml b/app/code/Magento/Downloadable/view/frontend/layout/sales_order_print_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/frontend/requirejs-config.js b/app/code/Magento/Downloadable/view/frontend/requirejs-config.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/frontend/templates/catalog/product/links.phtml b/app/code/Magento/Downloadable/view/frontend/templates/catalog/product/links.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/frontend/templates/catalog/product/samples.phtml b/app/code/Magento/Downloadable/view/frontend/templates/catalog/product/samples.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/frontend/templates/catalog/product/type.phtml b/app/code/Magento/Downloadable/view/frontend/templates/catalog/product/type.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/frontend/templates/checkout/success.phtml b/app/code/Magento/Downloadable/view/frontend/templates/checkout/success.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/frontend/templates/customer/products/list.phtml b/app/code/Magento/Downloadable/view/frontend/templates/customer/products/list.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/frontend/templates/email/order/items/creditmemo/downloadable.phtml b/app/code/Magento/Downloadable/view/frontend/templates/email/order/items/creditmemo/downloadable.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/frontend/templates/email/order/items/invoice/downloadable.phtml b/app/code/Magento/Downloadable/view/frontend/templates/email/order/items/invoice/downloadable.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/frontend/templates/email/order/items/order/downloadable.phtml b/app/code/Magento/Downloadable/view/frontend/templates/email/order/items/order/downloadable.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/frontend/templates/js/components.phtml b/app/code/Magento/Downloadable/view/frontend/templates/js/components.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/frontend/templates/sales/order/creditmemo/items/renderer/downloadable.phtml b/app/code/Magento/Downloadable/view/frontend/templates/sales/order/creditmemo/items/renderer/downloadable.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/frontend/templates/sales/order/invoice/items/renderer/downloadable.phtml b/app/code/Magento/Downloadable/view/frontend/templates/sales/order/invoice/items/renderer/downloadable.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/frontend/templates/sales/order/items/renderer/downloadable.phtml b/app/code/Magento/Downloadable/view/frontend/templates/sales/order/items/renderer/downloadable.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Downloadable/view/frontend/web/downloadable.js b/app/code/Magento/Downloadable/view/frontend/web/downloadable.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/DownloadableImportExport/Helper/Data.php b/app/code/Magento/DownloadableImportExport/Helper/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/DownloadableImportExport/Helper/Uploader.php b/app/code/Magento/DownloadableImportExport/Helper/Uploader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/DownloadableImportExport/LICENSE.txt b/app/code/Magento/DownloadableImportExport/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/DownloadableImportExport/LICENSE_AFL.txt b/app/code/Magento/DownloadableImportExport/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/DownloadableImportExport/Model/Import/Product/Type/Downloadable.php b/app/code/Magento/DownloadableImportExport/Model/Import/Product/Type/Downloadable.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/DownloadableImportExport/README.md b/app/code/Magento/DownloadableImportExport/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/DownloadableImportExport/Test/Unit/Model/Import/Product/Type/DownloadableTest.php b/app/code/Magento/DownloadableImportExport/Test/Unit/Model/Import/Product/Type/DownloadableTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/DownloadableImportExport/composer.json b/app/code/Magento/DownloadableImportExport/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/DownloadableImportExport/etc/import.xml b/app/code/Magento/DownloadableImportExport/etc/import.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/DownloadableImportExport/etc/module.xml b/app/code/Magento/DownloadableImportExport/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/DownloadableImportExport/i18n/en_US.csv b/app/code/Magento/DownloadableImportExport/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/DownloadableImportExport/registration.php b/app/code/Magento/DownloadableImportExport/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Api/AttributeGroupRepositoryInterface.php b/app/code/Magento/Eav/Api/AttributeGroupRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Api/AttributeManagementInterface.php b/app/code/Magento/Eav/Api/AttributeManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Api/AttributeOptionManagementInterface.php b/app/code/Magento/Eav/Api/AttributeOptionManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Api/AttributeRepositoryInterface.php b/app/code/Magento/Eav/Api/AttributeRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Api/AttributeSetManagementInterface.php b/app/code/Magento/Eav/Api/AttributeSetManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Api/AttributeSetRepositoryInterface.php b/app/code/Magento/Eav/Api/AttributeSetRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Api/Data/AttributeDefaultValueInterface.php b/app/code/Magento/Eav/Api/Data/AttributeDefaultValueInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Api/Data/AttributeFrontendLabelInterface.php b/app/code/Magento/Eav/Api/Data/AttributeFrontendLabelInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Api/Data/AttributeGroupInterface.php b/app/code/Magento/Eav/Api/Data/AttributeGroupInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Api/Data/AttributeGroupSearchResultsInterface.php b/app/code/Magento/Eav/Api/Data/AttributeGroupSearchResultsInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Api/Data/AttributeInterface.php b/app/code/Magento/Eav/Api/Data/AttributeInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Api/Data/AttributeOptionInterface.php b/app/code/Magento/Eav/Api/Data/AttributeOptionInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Api/Data/AttributeOptionLabelInterface.php b/app/code/Magento/Eav/Api/Data/AttributeOptionLabelInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Api/Data/AttributeSearchResultsInterface.php b/app/code/Magento/Eav/Api/Data/AttributeSearchResultsInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Api/Data/AttributeSetInterface.php b/app/code/Magento/Eav/Api/Data/AttributeSetInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Api/Data/AttributeSetSearchResultsInterface.php b/app/code/Magento/Eav/Api/Data/AttributeSetSearchResultsInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Api/Data/AttributeValidationRuleInterface.php b/app/code/Magento/Eav/Api/Data/AttributeValidationRuleInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Block/Adminhtml/Attribute/Edit/Js.php b/app/code/Magento/Eav/Block/Adminhtml/Attribute/Edit/Js.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Block/Adminhtml/Attribute/Edit/Main/AbstractMain.php b/app/code/Magento/Eav/Block/Adminhtml/Attribute/Edit/Main/AbstractMain.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Block/Adminhtml/Attribute/Edit/Options/AbstractOptions.php b/app/code/Magento/Eav/Block/Adminhtml/Attribute/Edit/Options/AbstractOptions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Block/Adminhtml/Attribute/Edit/Options/Labels.php b/app/code/Magento/Eav/Block/Adminhtml/Attribute/Edit/Options/Labels.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Block/Adminhtml/Attribute/Edit/Options/Options.php b/app/code/Magento/Eav/Block/Adminhtml/Attribute/Edit/Options/Options.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Block/Adminhtml/Attribute/Grid/AbstractGrid.php b/app/code/Magento/Eav/Block/Adminhtml/Attribute/Grid/AbstractGrid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Block/Adminhtml/Attribute/PropertyLocker.php b/app/code/Magento/Eav/Block/Adminhtml/Attribute/PropertyLocker.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Helper/Data.php b/app/code/Magento/Eav/Helper/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/LICENSE.txt b/app/code/Magento/Eav/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/LICENSE_AFL.txt b/app/code/Magento/Eav/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Adminhtml/Attribute/Validation/Rules/Options.php b/app/code/Magento/Eav/Model/Adminhtml/Attribute/Validation/Rules/Options.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Adminhtml/System/Config/Source/Inputtype.php b/app/code/Magento/Eav/Model/Adminhtml/System/Config/Source/Inputtype.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Adminhtml/System/Config/Source/Inputtype/Validator.php b/app/code/Magento/Eav/Model/Adminhtml/System/Config/Source/Inputtype/Validator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor.php b/app/code/Magento/Eav/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/AttributeGroupAttributeSetIdFilter.php b/app/code/Magento/Eav/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/AttributeGroupAttributeSetIdFilter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/AttributeGroupCodeFilter.php b/app/code/Magento/Eav/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/AttributeGroupCodeFilter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/AttributeSetEntityTypeCodeFilter.php b/app/code/Magento/Eav/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/AttributeSetEntityTypeCodeFilter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Attribute.php b/app/code/Magento/Eav/Model/Attribute.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Attribute/Data/AbstractData.php b/app/code/Magento/Eav/Model/Attribute/Data/AbstractData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Attribute/Data/Boolean.php b/app/code/Magento/Eav/Model/Attribute/Data/Boolean.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Attribute/Data/Date.php b/app/code/Magento/Eav/Model/Attribute/Data/Date.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Attribute/Data/File.php b/app/code/Magento/Eav/Model/Attribute/Data/File.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Attribute/Data/Hidden.php b/app/code/Magento/Eav/Model/Attribute/Data/Hidden.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Attribute/Data/Image.php b/app/code/Magento/Eav/Model/Attribute/Data/Image.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Attribute/Data/Multiline.php b/app/code/Magento/Eav/Model/Attribute/Data/Multiline.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Attribute/Data/Multiselect.php b/app/code/Magento/Eav/Model/Attribute/Data/Multiselect.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Attribute/Data/Select.php b/app/code/Magento/Eav/Model/Attribute/Data/Select.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Attribute/Data/Text.php b/app/code/Magento/Eav/Model/Attribute/Data/Text.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Attribute/Data/Textarea.php b/app/code/Magento/Eav/Model/Attribute/Data/Textarea.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Attribute/GroupRepository.php b/app/code/Magento/Eav/Model/Attribute/GroupRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/AttributeDataFactory.php b/app/code/Magento/Eav/Model/AttributeDataFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/AttributeFactory.php b/app/code/Magento/Eav/Model/AttributeFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/AttributeManagement.php b/app/code/Magento/Eav/Model/AttributeManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/AttributeProvider.php b/app/code/Magento/Eav/Model/AttributeProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/AttributeRepository.php b/app/code/Magento/Eav/Model/AttributeRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/AttributeSetManagement.php b/app/code/Magento/Eav/Model/AttributeSetManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/AttributeSetRepository.php b/app/code/Magento/Eav/Model/AttributeSetRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Cache/Type.php b/app/code/Magento/Eav/Model/Cache/Type.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Config.php b/app/code/Magento/Eav/Model/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/CustomAttributesMapper.php b/app/code/Magento/Eav/Model/CustomAttributesMapper.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/EavCustomAttributeTypeLocator.php b/app/code/Magento/Eav/Model/EavCustomAttributeTypeLocator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/EavCustomAttributeTypeLocator/ComplexType.php b/app/code/Magento/Eav/Model/EavCustomAttributeTypeLocator/ComplexType.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/EavCustomAttributeTypeLocator/SimpleType.php b/app/code/Magento/Eav/Model/EavCustomAttributeTypeLocator/SimpleType.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity.php b/app/code/Magento/Eav/Model/Entity.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/AbstractEntity.php b/app/code/Magento/Eav/Model/Entity/AbstractEntity.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Attribute.php b/app/code/Magento/Eav/Model/Entity/Attribute.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/AbstractAttribute.php b/app/code/Magento/Eav/Model/Entity/Attribute/AbstractAttribute.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/AttributeGroupAlreadyExistsException.php b/app/code/Magento/Eav/Model/Entity/Attribute/AttributeGroupAlreadyExistsException.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/AttributeInterface.php b/app/code/Magento/Eav/Model/Entity/Attribute/AttributeInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Backend/AbstractBackend.php b/app/code/Magento/Eav/Model/Entity/Attribute/Backend/AbstractBackend.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Backend/ArrayBackend.php b/app/code/Magento/Eav/Model/Entity/Attribute/Backend/ArrayBackend.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Backend/BackendInterface.php b/app/code/Magento/Eav/Model/Entity/Attribute/Backend/BackendInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Backend/Datetime.php b/app/code/Magento/Eav/Model/Entity/Attribute/Backend/Datetime.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Backend/DefaultBackend.php b/app/code/Magento/Eav/Model/Entity/Attribute/Backend/DefaultBackend.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Backend/Increment.php b/app/code/Magento/Eav/Model/Entity/Attribute/Backend/Increment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Backend/JsonEncoded.php b/app/code/Magento/Eav/Model/Entity/Attribute/Backend/JsonEncoded.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Backend/Store.php b/app/code/Magento/Eav/Model/Entity/Attribute/Backend/Store.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Backend/Time/Created.php b/app/code/Magento/Eav/Model/Entity/Attribute/Backend/Time/Created.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Backend/Time/Updated.php b/app/code/Magento/Eav/Model/Entity/Attribute/Backend/Time/Updated.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Config.php b/app/code/Magento/Eav/Model/Entity/Attribute/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Config/Converter.php b/app/code/Magento/Eav/Model/Entity/Attribute/Config/Converter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Config/Reader.php b/app/code/Magento/Eav/Model/Entity/Attribute/Config/Reader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Config/SchemaLocator.php b/app/code/Magento/Eav/Model/Entity/Attribute/Config/SchemaLocator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Exception.php b/app/code/Magento/Eav/Model/Entity/Attribute/Exception.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Frontend/AbstractFrontend.php b/app/code/Magento/Eav/Model/Entity/Attribute/Frontend/AbstractFrontend.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Frontend/Datetime.php b/app/code/Magento/Eav/Model/Entity/Attribute/Frontend/Datetime.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Frontend/DefaultFrontend.php b/app/code/Magento/Eav/Model/Entity/Attribute/Frontend/DefaultFrontend.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Frontend/FrontendInterface.php b/app/code/Magento/Eav/Model/Entity/Attribute/Frontend/FrontendInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/FrontendLabel.php b/app/code/Magento/Eav/Model/Entity/Attribute/FrontendLabel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Group.php b/app/code/Magento/Eav/Model/Entity/Attribute/Group.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Option.php b/app/code/Magento/Eav/Model/Entity/Attribute/Option.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/OptionLabel.php b/app/code/Magento/Eav/Model/Entity/Attribute/OptionLabel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/OptionManagement.php b/app/code/Magento/Eav/Model/Entity/Attribute/OptionManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/ScopedAttributeInterface.php b/app/code/Magento/Eav/Model/Entity/Attribute/ScopedAttributeInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Set.php b/app/code/Magento/Eav/Model/Entity/Attribute/Set.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Source/AbstractSource.php b/app/code/Magento/Eav/Model/Entity/Attribute/Source/AbstractSource.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Source/Boolean.php b/app/code/Magento/Eav/Model/Entity/Attribute/Source/Boolean.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Source/Config.php b/app/code/Magento/Eav/Model/Entity/Attribute/Source/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Source/SourceInterface.php b/app/code/Magento/Eav/Model/Entity/Attribute/Source/SourceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Source/Store.php b/app/code/Magento/Eav/Model/Entity/Attribute/Source/Store.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/Source/Table.php b/app/code/Magento/Eav/Model/Entity/Attribute/Source/Table.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Attribute/ValidationRule.php b/app/code/Magento/Eav/Model/Entity/Attribute/ValidationRule.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/AttributeLoader.php b/app/code/Magento/Eav/Model/Entity/AttributeLoader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/AttributeLoaderInterface.php b/app/code/Magento/Eav/Model/Entity/AttributeLoaderInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Collection/AbstractCollection.php b/app/code/Magento/Eav/Model/Entity/Collection/AbstractCollection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Collection/VersionControl/AbstractCollection.php b/app/code/Magento/Eav/Model/Entity/Collection/VersionControl/AbstractCollection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Context.php b/app/code/Magento/Eav/Model/Entity/Context.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/EntityInterface.php b/app/code/Magento/Eav/Model/Entity/EntityInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Increment/AbstractIncrement.php b/app/code/Magento/Eav/Model/Entity/Increment/AbstractIncrement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Increment/Alphanum.php b/app/code/Magento/Eav/Model/Entity/Increment/Alphanum.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Increment/IncrementInterface.php b/app/code/Magento/Eav/Model/Entity/Increment/IncrementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Increment/NumericValue.php b/app/code/Magento/Eav/Model/Entity/Increment/NumericValue.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Setup/Context.php b/app/code/Magento/Eav/Model/Entity/Setup/Context.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Setup/PropertyMapper.php b/app/code/Magento/Eav/Model/Entity/Setup/PropertyMapper.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Setup/PropertyMapper/Composite.php b/app/code/Magento/Eav/Model/Entity/Setup/PropertyMapper/Composite.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Setup/PropertyMapperAbstract.php b/app/code/Magento/Eav/Model/Entity/Setup/PropertyMapperAbstract.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Setup/PropertyMapperInterface.php b/app/code/Magento/Eav/Model/Entity/Setup/PropertyMapperInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Store.php b/app/code/Magento/Eav/Model/Entity/Store.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/Type.php b/app/code/Magento/Eav/Model/Entity/Type.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/VersionControl/AbstractEntity.php b/app/code/Magento/Eav/Model/Entity/VersionControl/AbstractEntity.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Entity/VersionControl/Metadata.php b/app/code/Magento/Eav/Model/Entity/VersionControl/Metadata.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Form.php b/app/code/Magento/Eav/Model/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Form/Element.php b/app/code/Magento/Eav/Model/Form/Element.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Form/Factory.php b/app/code/Magento/Eav/Model/Form/Factory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Form/Fieldset.php b/app/code/Magento/Eav/Model/Form/Fieldset.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Form/Type.php b/app/code/Magento/Eav/Model/Form/Type.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/ResourceModel/Attribute.php b/app/code/Magento/Eav/Model/ResourceModel/Attribute.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/ResourceModel/Attribute/Collection.php b/app/code/Magento/Eav/Model/ResourceModel/Attribute/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/ResourceModel/Attribute/DefaultEntityAttributes/ProviderInterface.php b/app/code/Magento/Eav/Model/ResourceModel/Attribute/DefaultEntityAttributes/ProviderInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/ResourceModel/AttributeLoader.php b/app/code/Magento/Eav/Model/ResourceModel/AttributeLoader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/ResourceModel/AttributePersistor.php b/app/code/Magento/Eav/Model/ResourceModel/AttributePersistor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/ResourceModel/Config.php b/app/code/Magento/Eav/Model/ResourceModel/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/ResourceModel/CreateHandler.php b/app/code/Magento/Eav/Model/ResourceModel/CreateHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute.php b/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Collection.php b/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Grid/Collection.php b/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Grid/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Group.php b/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Group.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Group/Collection.php b/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Group/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Option.php b/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Option.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Option/Collection.php b/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Option/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Set.php b/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Set.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Set/Collection.php b/app/code/Magento/Eav/Model/ResourceModel/Entity/Attribute/Set/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/ResourceModel/Entity/Store.php b/app/code/Magento/Eav/Model/ResourceModel/Entity/Store.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/ResourceModel/Entity/Type.php b/app/code/Magento/Eav/Model/ResourceModel/Entity/Type.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/ResourceModel/Entity/Type/Collection.php b/app/code/Magento/Eav/Model/ResourceModel/Entity/Type/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/ResourceModel/Form/Attribute.php b/app/code/Magento/Eav/Model/ResourceModel/Form/Attribute.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/ResourceModel/Form/Attribute/Collection.php b/app/code/Magento/Eav/Model/ResourceModel/Form/Attribute/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/ResourceModel/Form/Element.php b/app/code/Magento/Eav/Model/ResourceModel/Form/Element.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/ResourceModel/Form/Element/Collection.php b/app/code/Magento/Eav/Model/ResourceModel/Form/Element/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/ResourceModel/Form/Fieldset.php b/app/code/Magento/Eav/Model/ResourceModel/Form/Fieldset.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/ResourceModel/Form/Fieldset/Collection.php b/app/code/Magento/Eav/Model/ResourceModel/Form/Fieldset/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/ResourceModel/Form/Type.php b/app/code/Magento/Eav/Model/ResourceModel/Form/Type.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/ResourceModel/Form/Type/Collection.php b/app/code/Magento/Eav/Model/ResourceModel/Form/Type/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/ResourceModel/Helper.php b/app/code/Magento/Eav/Model/ResourceModel/Helper.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/ResourceModel/ReadHandler.php b/app/code/Magento/Eav/Model/ResourceModel/ReadHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/ResourceModel/ReadSnapshot.php b/app/code/Magento/Eav/Model/ResourceModel/ReadSnapshot.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/ResourceModel/UpdateHandler.php b/app/code/Magento/Eav/Model/ResourceModel/UpdateHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Validator/Attribute/Backend.php b/app/code/Magento/Eav/Model/Validator/Attribute/Backend.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Model/Validator/Attribute/Data.php b/app/code/Magento/Eav/Model/Validator/Attribute/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Plugin/Model/ResourceModel/Entity/Attribute.php b/app/code/Magento/Eav/Plugin/Model/ResourceModel/Entity/Attribute.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/README.md b/app/code/Magento/Eav/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Setup/EavSetup.php b/app/code/Magento/Eav/Setup/EavSetup.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Setup/InstallData.php b/app/code/Magento/Eav/Setup/InstallData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Setup/InstallSchema.php b/app/code/Magento/Eav/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Setup/UpgradeSchema.php b/app/code/Magento/Eav/Setup/UpgradeSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Block/Adminhtml/Attribute/PropertyLockerTest.php b/app/code/Magento/Eav/Test/Unit/Block/Adminhtml/Attribute/PropertyLockerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Helper/DataTest.php b/app/code/Magento/Eav/Test/Unit/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Adminhtml/Attribute/Validation/Rules/OptionsTest.php b/app/code/Magento/Eav/Test/Unit/Model/Adminhtml/Attribute/Validation/Rules/OptionsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Adminhtml/System/Config/Source/Inputtype/ValidatorTest.php b/app/code/Magento/Eav/Test/Unit/Model/Adminhtml/System/Config/Source/Inputtype/ValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Adminhtml/System/Config/Source/InputtypeTest.php b/app/code/Magento/Eav/Test/Unit/Model/Adminhtml/System/Config/Source/InputtypeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/AttributeGroupAttributeSetIdFilterTest.php b/app/code/Magento/Eav/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/AttributeGroupAttributeSetIdFilterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/AttributeGroupCodeFilterTest.php b/app/code/Magento/Eav/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/AttributeGroupCodeFilterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/AttributeSetEntityTypeCodeFilterTest.php b/app/code/Magento/Eav/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor/AttributeSetEntityTypeCodeFilterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessorTest.php b/app/code/Magento/Eav/Test/Unit/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/AbstractDataTest.php b/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/AbstractDataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/BooleanTest.php b/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/BooleanTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/DateTest.php b/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/DateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/FileTest.php b/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/FileTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/ImageTest.php b/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/ImageTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/MultilineTest.php b/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/MultilineTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/MultiselectTest.php b/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/MultiselectTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/SelectTest.php b/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/SelectTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/TextTest.php b/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/TextTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/_files/image.ico b/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/_files/image.ico
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/_files/image.jpg b/app/code/Magento/Eav/Test/Unit/Model/Attribute/Data/_files/image.jpg
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Attribute/GroupRepositoryTest.php b/app/code/Magento/Eav/Test/Unit/Model/Attribute/GroupRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/AttributeFactoryTest.php b/app/code/Magento/Eav/Test/Unit/Model/AttributeFactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/AttributeManagementTest.php b/app/code/Magento/Eav/Test/Unit/Model/AttributeManagementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/AttributeRepositoryTest.php b/app/code/Magento/Eav/Test/Unit/Model/AttributeRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/AttributeSetManagementTest.php b/app/code/Magento/Eav/Test/Unit/Model/AttributeSetManagementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/AttributeSetRepositoryTest.php b/app/code/Magento/Eav/Test/Unit/Model/AttributeSetRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/ConfigTest.php b/app/code/Magento/Eav/Test/Unit/Model/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/CustomAttributesMapperTest.php b/app/code/Magento/Eav/Test/Unit/Model/CustomAttributesMapperTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/EavCustomAttributeTypeLocatorTest.php b/app/code/Magento/Eav/Test/Unit/Model/EavCustomAttributeTypeLocatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/AbstractEntityTest.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/AbstractEntityTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/AbstractAttributeTest.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/AbstractAttributeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Backend/AbstractTest.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Backend/AbstractTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Backend/ArrayBackendTest.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Backend/ArrayBackendTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Backend/JsonEncodedTest.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Backend/JsonEncodedTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Config/ConverterTest.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Config/ConverterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Config/XsdTest.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Config/XsdTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Config/_files/eav_attributes.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Config/_files/eav_attributes.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Config/_files/eav_attributes.xml b/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Config/_files/eav_attributes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Config/_files/invalidEavAttributeXmlArray.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Config/_files/invalidEavAttributeXmlArray.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/ConfigTest.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Frontend/DatetimeTest.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Frontend/DatetimeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Frontend/DefaultFrontendTest.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Frontend/DefaultFrontendTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/GroupTest.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/GroupTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/OptionManagementTest.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/OptionManagementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/SetTest.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/SetTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Source/BooleanTest.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Source/BooleanTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Source/TableTest.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/Attribute/Source/TableTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/AttributeLoaderTest.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/AttributeLoaderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/AttributeTest.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/AttributeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/Collection/AbstractCollectionStub.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/Collection/AbstractCollectionStub.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/Collection/AbstractCollectionTest.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/Collection/AbstractCollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/Collection/VersionControl/AbstractCollectionStub.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/Collection/VersionControl/AbstractCollectionStub.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/Collection/VersionControl/AbstractCollectionTest.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/Collection/VersionControl/AbstractCollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/Increment/AlphanumTest.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/Increment/AlphanumTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/Increment/NumericTest.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/Increment/NumericTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/TypeTest.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/TypeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/VersionControl/AbstractEntityTest.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/VersionControl/AbstractEntityTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Entity/VersionControl/MetadataTest.php b/app/code/Magento/Eav/Test/Unit/Model/Entity/VersionControl/MetadataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/FormTest.php b/app/code/Magento/Eav/Test/Unit/Model/FormTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/ResourceModel/Attribute/CollectionTest.php b/app/code/Magento/Eav/Test/Unit/Model/ResourceModel/Attribute/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/ResourceModel/AttributeLoaderTest.php b/app/code/Magento/Eav/Test/Unit/Model/ResourceModel/AttributeLoaderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/ResourceModel/Entity/Attribute/Option/CollectionTest.php b/app/code/Magento/Eav/Test/Unit/Model/ResourceModel/Entity/Attribute/Option/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/ResourceModel/Entity/Attribute/SetTest.php b/app/code/Magento/Eav/Test/Unit/Model/ResourceModel/Entity/Attribute/SetTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/ResourceModel/Entity/AttributeTest.php b/app/code/Magento/Eav/Test/Unit/Model/ResourceModel/Entity/AttributeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/ResourceModel/ReadHandlerTest.php b/app/code/Magento/Eav/Test/Unit/Model/ResourceModel/ReadHandlerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Validator/Attribute/BackendTest.php b/app/code/Magento/Eav/Test/Unit/Model/Validator/Attribute/BackendTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Model/Validator/Attribute/DataTest.php b/app/code/Magento/Eav/Test/Unit/Model/Validator/Attribute/DataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/Plugin/Model/ResourceModel/Entity/AttributeTest.php b/app/code/Magento/Eav/Test/Unit/Plugin/Model/ResourceModel/Entity/AttributeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/Test/Unit/_files/describe_table_eav_attribute.php b/app/code/Magento/Eav/Test/Unit/_files/describe_table_eav_attribute.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/composer.json b/app/code/Magento/Eav/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/etc/cache.xml b/app/code/Magento/Eav/etc/cache.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/etc/config.xml b/app/code/Magento/Eav/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/etc/di.xml b/app/code/Magento/Eav/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/etc/eav_attributes.xsd b/app/code/Magento/Eav/etc/eav_attributes.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/etc/extension_attributes.xml b/app/code/Magento/Eav/etc/extension_attributes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/etc/module.xml b/app/code/Magento/Eav/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/etc/validation.xml b/app/code/Magento/Eav/etc/validation.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/etc/webapi.xml b/app/code/Magento/Eav/etc/webapi.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/i18n/en_US.csv b/app/code/Magento/Eav/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/registration.php b/app/code/Magento/Eav/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Eav/view/adminhtml/templates/attribute/edit/js.phtml b/app/code/Magento/Eav/view/adminhtml/templates/attribute/edit/js.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Block/Adminhtml/Template.php b/app/code/Magento/Email/Block/Adminhtml/Template.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Block/Adminhtml/Template/Edit.php b/app/code/Magento/Email/Block/Adminhtml/Template/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Block/Adminhtml/Template/Edit/Form.php b/app/code/Magento/Email/Block/Adminhtml/Template/Edit/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Block/Adminhtml/Template/Grid/Filter/Type.php b/app/code/Magento/Email/Block/Adminhtml/Template/Grid/Filter/Type.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Block/Adminhtml/Template/Grid/Renderer/Action.php b/app/code/Magento/Email/Block/Adminhtml/Template/Grid/Renderer/Action.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Block/Adminhtml/Template/Grid/Renderer/Sender.php b/app/code/Magento/Email/Block/Adminhtml/Template/Grid/Renderer/Sender.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Block/Adminhtml/Template/Grid/Renderer/Type.php b/app/code/Magento/Email/Block/Adminhtml/Template/Grid/Renderer/Type.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Block/Adminhtml/Template/Preview.php b/app/code/Magento/Email/Block/Adminhtml/Template/Preview.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Controller/Adminhtml/Email/Template.php b/app/code/Magento/Email/Controller/Adminhtml/Email/Template.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Controller/Adminhtml/Email/Template/DefaultTemplate.php b/app/code/Magento/Email/Controller/Adminhtml/Email/Template/DefaultTemplate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Controller/Adminhtml/Email/Template/Delete.php b/app/code/Magento/Email/Controller/Adminhtml/Email/Template/Delete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Controller/Adminhtml/Email/Template/Edit.php b/app/code/Magento/Email/Controller/Adminhtml/Email/Template/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Controller/Adminhtml/Email/Template/Grid.php b/app/code/Magento/Email/Controller/Adminhtml/Email/Template/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Controller/Adminhtml/Email/Template/Index.php b/app/code/Magento/Email/Controller/Adminhtml/Email/Template/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Controller/Adminhtml/Email/Template/NewAction.php b/app/code/Magento/Email/Controller/Adminhtml/Email/Template/NewAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Controller/Adminhtml/Email/Template/Preview.php b/app/code/Magento/Email/Controller/Adminhtml/Email/Template/Preview.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Controller/Adminhtml/Email/Template/Save.php b/app/code/Magento/Email/Controller/Adminhtml/Email/Template/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/LICENSE.txt b/app/code/Magento/Email/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/LICENSE_AFL.txt b/app/code/Magento/Email/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Model/AbstractTemplate.php b/app/code/Magento/Email/Model/AbstractTemplate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Model/BackendTemplate.php b/app/code/Magento/Email/Model/BackendTemplate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Model/Design/Backend/Logo.php b/app/code/Magento/Email/Model/Design/Backend/Logo.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Model/Mail/TransportInterfacePlugin.php b/app/code/Magento/Email/Model/Mail/TransportInterfacePlugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Model/Plugin/WindowsSmtpConfig.php b/app/code/Magento/Email/Model/Plugin/WindowsSmtpConfig.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Model/ResourceModel/Template.php b/app/code/Magento/Email/Model/ResourceModel/Template.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Model/ResourceModel/Template/Collection.php b/app/code/Magento/Email/Model/ResourceModel/Template/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Model/Source/Variables.php b/app/code/Magento/Email/Model/Source/Variables.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Model/Template.php b/app/code/Magento/Email/Model/Template.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Model/Template/Config.php b/app/code/Magento/Email/Model/Template/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Model/Template/Config/Converter.php b/app/code/Magento/Email/Model/Template/Config/Converter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Model/Template/Config/Data.php b/app/code/Magento/Email/Model/Template/Config/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Model/Template/Config/FileIterator.php b/app/code/Magento/Email/Model/Template/Config/FileIterator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Model/Template/Config/FileResolver.php b/app/code/Magento/Email/Model/Template/Config/FileResolver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Model/Template/Config/Reader.php b/app/code/Magento/Email/Model/Template/Config/Reader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Model/Template/Config/SchemaLocator.php b/app/code/Magento/Email/Model/Template/Config/SchemaLocator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Model/Template/Css/Processor.php b/app/code/Magento/Email/Model/Template/Css/Processor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Model/Template/Filter.php b/app/code/Magento/Email/Model/Template/Filter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Model/Template/SenderResolver.php b/app/code/Magento/Email/Model/Template/SenderResolver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Model/Transport.php b/app/code/Magento/Email/Model/Transport.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/README.md b/app/code/Magento/Email/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Setup/InstallSchema.php b/app/code/Magento/Email/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Test/Unit/Block/Adminhtml/Template/Edit/FormTest.php b/app/code/Magento/Email/Test/Unit/Block/Adminhtml/Template/Edit/FormTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Test/Unit/Block/Adminhtml/Template/EditTest.php b/app/code/Magento/Email/Test/Unit/Block/Adminhtml/Template/EditTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Test/Unit/Block/Adminhtml/Template/Grid/Renderer/ActionTest.php b/app/code/Magento/Email/Test/Unit/Block/Adminhtml/Template/Grid/Renderer/ActionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Test/Unit/Block/Adminhtml/Template/Grid/Renderer/SenderTest.php b/app/code/Magento/Email/Test/Unit/Block/Adminhtml/Template/Grid/Renderer/SenderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Test/Unit/Block/Adminhtml/Template/Grid/Renderer/TypeTest.php b/app/code/Magento/Email/Test/Unit/Block/Adminhtml/Template/Grid/Renderer/TypeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Test/Unit/Block/Adminhtml/Template/PreviewTest.php b/app/code/Magento/Email/Test/Unit/Block/Adminhtml/Template/PreviewTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Test/Unit/Block/Adminhtml/TemplateTest.php b/app/code/Magento/Email/Test/Unit/Block/Adminhtml/TemplateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Test/Unit/Controller/Adminhtml/Email/Template/EditTest.php b/app/code/Magento/Email/Test/Unit/Controller/Adminhtml/Email/Template/EditTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Test/Unit/Controller/Adminhtml/Email/Template/IndexTest.php b/app/code/Magento/Email/Test/Unit/Controller/Adminhtml/Email/Template/IndexTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Test/Unit/Controller/Adminhtml/Email/Template/PreviewTest.php b/app/code/Magento/Email/Test/Unit/Controller/Adminhtml/Email/Template/PreviewTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Test/Unit/Model/AbstractTemplateTest.php b/app/code/Magento/Email/Test/Unit/Model/AbstractTemplateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Test/Unit/Model/BackendTemplateTest.php b/app/code/Magento/Email/Test/Unit/Model/BackendTemplateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Test/Unit/Model/Mail/TransportInterfacePluginTest.php b/app/code/Magento/Email/Test/Unit/Model/Mail/TransportInterfacePluginTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Test/Unit/Model/Source/VariablesTest.php b/app/code/Magento/Email/Test/Unit/Model/Source/VariablesTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Test/Unit/Model/Template/Config/ConverterTest.php b/app/code/Magento/Email/Test/Unit/Model/Template/Config/ConverterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Test/Unit/Model/Template/Config/FileIteratorTest.php b/app/code/Magento/Email/Test/Unit/Model/Template/Config/FileIteratorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Test/Unit/Model/Template/Config/FileResolverTest.php b/app/code/Magento/Email/Test/Unit/Model/Template/Config/FileResolverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Test/Unit/Model/Template/Config/ReaderTest.php b/app/code/Magento/Email/Test/Unit/Model/Template/Config/ReaderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Test/Unit/Model/Template/Config/SchemaLocatorTest.php b/app/code/Magento/Email/Test/Unit/Model/Template/Config/SchemaLocatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Test/Unit/Model/Template/Config/XsdTest.php b/app/code/Magento/Email/Test/Unit/Model/Template/Config/XsdTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Test/Unit/Model/Template/Config/_files/Fixture/ModuleOne/etc/email_templates_one.xml b/app/code/Magento/Email/Test/Unit/Model/Template/Config/_files/Fixture/ModuleOne/etc/email_templates_one.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Test/Unit/Model/Template/Config/_files/Fixture/ModuleTwo/etc/email_templates_two.xml b/app/code/Magento/Email/Test/Unit/Model/Template/Config/_files/Fixture/ModuleTwo/etc/email_templates_two.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Test/Unit/Model/Template/Config/_files/email_templates_merged.php b/app/code/Magento/Email/Test/Unit/Model/Template/Config/_files/email_templates_merged.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Test/Unit/Model/Template/Config/_files/email_templates_merged.xml b/app/code/Magento/Email/Test/Unit/Model/Template/Config/_files/email_templates_merged.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Test/Unit/Model/Template/ConfigTest.php b/app/code/Magento/Email/Test/Unit/Model/Template/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Test/Unit/Model/Template/Css/ProcessorTest.php b/app/code/Magento/Email/Test/Unit/Model/Template/Css/ProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Test/Unit/Model/Template/FilterTest.php b/app/code/Magento/Email/Test/Unit/Model/Template/FilterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Test/Unit/Model/TemplateTest.php b/app/code/Magento/Email/Test/Unit/Model/TemplateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/Test/Unit/Model/TransportTest.php b/app/code/Magento/Email/Test/Unit/Model/TransportTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/composer.json b/app/code/Magento/Email/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/etc/acl.xml b/app/code/Magento/Email/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/etc/adminhtml/di.xml b/app/code/Magento/Email/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/etc/adminhtml/menu.xml b/app/code/Magento/Email/etc/adminhtml/menu.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/etc/adminhtml/routes.xml b/app/code/Magento/Email/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/etc/config.xml b/app/code/Magento/Email/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/etc/di.xml b/app/code/Magento/Email/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/etc/email_templates.xml b/app/code/Magento/Email/etc/email_templates.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/etc/email_templates.xsd b/app/code/Magento/Email/etc/email_templates.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/etc/frontend/di.xml b/app/code/Magento/Email/etc/frontend/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/etc/module.xml b/app/code/Magento/Email/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/i18n/en_US.csv b/app/code/Magento/Email/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/registration.php b/app/code/Magento/Email/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/view/adminhtml/layout/adminhtml_email_template_grid.xml b/app/code/Magento/Email/view/adminhtml/layout/adminhtml_email_template_grid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/view/adminhtml/layout/adminhtml_email_template_grid_block.xml b/app/code/Magento/Email/view/adminhtml/layout/adminhtml_email_template_grid_block.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/view/adminhtml/layout/adminhtml_email_template_index.xml b/app/code/Magento/Email/view/adminhtml/layout/adminhtml_email_template_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/view/adminhtml/layout/adminhtml_email_template_preview.xml b/app/code/Magento/Email/view/adminhtml/layout/adminhtml_email_template_preview.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/view/adminhtml/templates/template/edit.phtml b/app/code/Magento/Email/view/adminhtml/templates/template/edit.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/view/adminhtml/templates/template/list.phtml b/app/code/Magento/Email/view/adminhtml/templates/template/list.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/view/adminhtml/templates/template/preview.phtml b/app/code/Magento/Email/view/adminhtml/templates/template/preview.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/view/adminhtml/ui_component/design_config_form.xml b/app/code/Magento/Email/view/adminhtml/ui_component/design_config_form.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/view/frontend/email/footer.html b/app/code/Magento/Email/view/frontend/email/footer.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/view/frontend/email/header.html b/app/code/Magento/Email/view/frontend/email/header.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Email/view/frontend/web/logo_email.png b/app/code/Magento/Email/view/frontend/web/logo_email.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/EncryptionKey/Block/Adminhtml/Crypt/Key/Edit.php b/app/code/Magento/EncryptionKey/Block/Adminhtml/Crypt/Key/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/EncryptionKey/Block/Adminhtml/Crypt/Key/Form.php b/app/code/Magento/EncryptionKey/Block/Adminhtml/Crypt/Key/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/EncryptionKey/Controller/Adminhtml/Crypt/Key.php b/app/code/Magento/EncryptionKey/Controller/Adminhtml/Crypt/Key.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/EncryptionKey/Controller/Adminhtml/Crypt/Key/Index.php b/app/code/Magento/EncryptionKey/Controller/Adminhtml/Crypt/Key/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/EncryptionKey/Controller/Adminhtml/Crypt/Key/Save.php b/app/code/Magento/EncryptionKey/Controller/Adminhtml/Crypt/Key/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/EncryptionKey/LICENSE.txt b/app/code/Magento/EncryptionKey/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/EncryptionKey/LICENSE_AFL.txt b/app/code/Magento/EncryptionKey/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/EncryptionKey/Model/ResourceModel/Key/Change.php b/app/code/Magento/EncryptionKey/Model/ResourceModel/Key/Change.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/EncryptionKey/README.md b/app/code/Magento/EncryptionKey/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/EncryptionKey/Test/Unit/Controller/Adminhtml/Crypt/Key/SaveTest.php b/app/code/Magento/EncryptionKey/Test/Unit/Controller/Adminhtml/Crypt/Key/SaveTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/EncryptionKey/Test/Unit/Model/ResourceModel/Key/ChangeTest.php b/app/code/Magento/EncryptionKey/Test/Unit/Model/ResourceModel/Key/ChangeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/EncryptionKey/composer.json b/app/code/Magento/EncryptionKey/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/EncryptionKey/etc/acl.xml b/app/code/Magento/EncryptionKey/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/EncryptionKey/etc/adminhtml/menu.xml b/app/code/Magento/EncryptionKey/etc/adminhtml/menu.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/EncryptionKey/etc/adminhtml/routes.xml b/app/code/Magento/EncryptionKey/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/EncryptionKey/etc/config.xml b/app/code/Magento/EncryptionKey/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/EncryptionKey/etc/module.xml b/app/code/Magento/EncryptionKey/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/EncryptionKey/i18n/en_US.csv b/app/code/Magento/EncryptionKey/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/EncryptionKey/registration.php b/app/code/Magento/EncryptionKey/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/EncryptionKey/view/adminhtml/layout/adminhtml_crypt_key_index.xml b/app/code/Magento/EncryptionKey/view/adminhtml/layout/adminhtml_crypt_key_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Fedex/LICENSE.txt b/app/code/Magento/Fedex/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Fedex/LICENSE_AFL.txt b/app/code/Magento/Fedex/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Fedex/Model/Carrier.php b/app/code/Magento/Fedex/Model/Carrier.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Fedex/Model/Source/Dropoff.php b/app/code/Magento/Fedex/Model/Source/Dropoff.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Fedex/Model/Source/Freemethod.php b/app/code/Magento/Fedex/Model/Source/Freemethod.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Fedex/Model/Source/Generic.php b/app/code/Magento/Fedex/Model/Source/Generic.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Fedex/Model/Source/Method.php b/app/code/Magento/Fedex/Model/Source/Method.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Fedex/Model/Source/Packaging.php b/app/code/Magento/Fedex/Model/Source/Packaging.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Fedex/Model/Source/Unitofmeasure.php b/app/code/Magento/Fedex/Model/Source/Unitofmeasure.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Fedex/README.md b/app/code/Magento/Fedex/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Fedex/Setup/InstallData.php b/app/code/Magento/Fedex/Setup/InstallData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Fedex/Test/Unit/Model/CarrierTest.php b/app/code/Magento/Fedex/Test/Unit/Model/CarrierTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Fedex/composer.json b/app/code/Magento/Fedex/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Fedex/etc/adminhtml/system.xml b/app/code/Magento/Fedex/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Fedex/etc/config.xml b/app/code/Magento/Fedex/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Fedex/etc/di.xml b/app/code/Magento/Fedex/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Fedex/etc/module.xml b/app/code/Magento/Fedex/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Fedex/etc/wsdl/RateService_v10.wsdl b/app/code/Magento/Fedex/etc/wsdl/RateService_v10.wsdl
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Fedex/etc/wsdl/RateService_v9.wsdl b/app/code/Magento/Fedex/etc/wsdl/RateService_v9.wsdl
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Fedex/etc/wsdl/ShipService_v10.wsdl b/app/code/Magento/Fedex/etc/wsdl/ShipService_v10.wsdl
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Fedex/etc/wsdl/ShipService_v9.wsdl b/app/code/Magento/Fedex/etc/wsdl/ShipService_v9.wsdl
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Fedex/etc/wsdl/TrackService_v10.wsdl b/app/code/Magento/Fedex/etc/wsdl/TrackService_v10.wsdl
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Fedex/i18n/en_US.csv b/app/code/Magento/Fedex/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Fedex/registration.php b/app/code/Magento/Fedex/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Fedex/view/frontend/layout/checkout_cart_index.xml b/app/code/Magento/Fedex/view/frontend/layout/checkout_cart_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Fedex/view/frontend/layout/checkout_index_index.xml b/app/code/Magento/Fedex/view/frontend/layout/checkout_index_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Fedex/view/frontend/web/js/model/shipping-rates-validation-rules.js b/app/code/Magento/Fedex/view/frontend/web/js/model/shipping-rates-validation-rules.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Fedex/view/frontend/web/js/model/shipping-rates-validator.js b/app/code/Magento/Fedex/view/frontend/web/js/model/shipping-rates-validator.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Fedex/view/frontend/web/js/view/shipping-rates-validation.js b/app/code/Magento/Fedex/view/frontend/web/js/view/shipping-rates-validation.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Api/CartRepositoryInterface.php b/app/code/Magento/GiftMessage/Api/CartRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Api/Data/MessageInterface.php b/app/code/Magento/GiftMessage/Api/Data/MessageInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Api/GuestCartRepositoryInterface.php b/app/code/Magento/GiftMessage/Api/GuestCartRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Api/GuestItemRepositoryInterface.php b/app/code/Magento/GiftMessage/Api/GuestItemRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Api/ItemRepositoryInterface.php b/app/code/Magento/GiftMessage/Api/ItemRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Api/OrderItemRepositoryInterface.php b/app/code/Magento/GiftMessage/Api/OrderItemRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Api/OrderRepositoryInterface.php b/app/code/Magento/GiftMessage/Api/OrderRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Block/Adminhtml/Product/Helper/Form/Config.php b/app/code/Magento/GiftMessage/Block/Adminhtml/Product/Helper/Form/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Block/Adminhtml/Sales/Order/Create/Form.php b/app/code/Magento/GiftMessage/Block/Adminhtml/Sales/Order/Create/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Block/Adminhtml/Sales/Order/Create/Giftoptions.php b/app/code/Magento/GiftMessage/Block/Adminhtml/Sales/Order/Create/Giftoptions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Block/Adminhtml/Sales/Order/Create/Items.php b/app/code/Magento/GiftMessage/Block/Adminhtml/Sales/Order/Create/Items.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Block/Adminhtml/Sales/Order/View/Form.php b/app/code/Magento/GiftMessage/Block/Adminhtml/Sales/Order/View/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Block/Adminhtml/Sales/Order/View/Giftoptions.php b/app/code/Magento/GiftMessage/Block/Adminhtml/Sales/Order/View/Giftoptions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Block/Adminhtml/Sales/Order/View/Items.php b/app/code/Magento/GiftMessage/Block/Adminhtml/Sales/Order/View/Items.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Block/Cart/GiftOptions.php b/app/code/Magento/GiftMessage/Block/Cart/GiftOptions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Block/Cart/Item/Renderer/Actions/GiftOptions.php b/app/code/Magento/GiftMessage/Block/Cart/Item/Renderer/Actions/GiftOptions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Block/Cart/Item/Renderer/Actions/ItemIdProcessor.php b/app/code/Magento/GiftMessage/Block/Cart/Item/Renderer/Actions/ItemIdProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Block/Cart/Item/Renderer/Actions/LayoutProcessorInterface.php b/app/code/Magento/GiftMessage/Block/Cart/Item/Renderer/Actions/LayoutProcessorInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Block/Message/Inline.php b/app/code/Magento/GiftMessage/Block/Message/Inline.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Block/Message/Multishipping/Plugin/ItemsBox.php b/app/code/Magento/GiftMessage/Block/Message/Multishipping/Plugin/ItemsBox.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Helper/Message.php b/app/code/Magento/GiftMessage/Helper/Message.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/LICENSE.txt b/app/code/Magento/GiftMessage/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/LICENSE_AFL.txt b/app/code/Magento/GiftMessage/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Model/CartRepository.php b/app/code/Magento/GiftMessage/Model/CartRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Model/CompositeConfigProvider.php b/app/code/Magento/GiftMessage/Model/CompositeConfigProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Model/GiftMessageConfigProvider.php b/app/code/Magento/GiftMessage/Model/GiftMessageConfigProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Model/GiftMessageManager.php b/app/code/Magento/GiftMessage/Model/GiftMessageManager.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Model/GuestCartRepository.php b/app/code/Magento/GiftMessage/Model/GuestCartRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Model/GuestItemRepository.php b/app/code/Magento/GiftMessage/Model/GuestItemRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Model/ItemRepository.php b/app/code/Magento/GiftMessage/Model/ItemRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Model/Message.php b/app/code/Magento/GiftMessage/Model/Message.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Model/OrderItemRepository.php b/app/code/Magento/GiftMessage/Model/OrderItemRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Model/OrderRepository.php b/app/code/Magento/GiftMessage/Model/OrderRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Model/Plugin/OrderGet.php b/app/code/Magento/GiftMessage/Model/Plugin/OrderGet.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Model/Plugin/OrderSave.php b/app/code/Magento/GiftMessage/Model/Plugin/OrderSave.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Model/Plugin/QuoteItem.php b/app/code/Magento/GiftMessage/Model/Plugin/QuoteItem.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Model/ResourceModel/Message.php b/app/code/Magento/GiftMessage/Model/ResourceModel/Message.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Model/ResourceModel/Message/Collection.php b/app/code/Magento/GiftMessage/Model/ResourceModel/Message/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Model/Save.php b/app/code/Magento/GiftMessage/Model/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Model/Type/Plugin/Multishipping.php b/app/code/Magento/GiftMessage/Model/Type/Plugin/Multishipping.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Model/Type/Plugin/Onepage.php b/app/code/Magento/GiftMessage/Model/Type/Plugin/Onepage.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Model/TypeFactory.php b/app/code/Magento/GiftMessage/Model/TypeFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Observer/MultishippingEventCreateOrdersObserver.php b/app/code/Magento/GiftMessage/Observer/MultishippingEventCreateOrdersObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Observer/SalesEventOrderItemToQuoteItemObserver.php b/app/code/Magento/GiftMessage/Observer/SalesEventOrderItemToQuoteItemObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Observer/SalesEventOrderToQuoteObserver.php b/app/code/Magento/GiftMessage/Observer/SalesEventOrderToQuoteObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Observer/SalesEventQuoteSubmitBeforeObserver.php b/app/code/Magento/GiftMessage/Observer/SalesEventQuoteSubmitBeforeObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/README.md b/app/code/Magento/GiftMessage/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Setup/InstallData.php b/app/code/Magento/GiftMessage/Setup/InstallData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Setup/InstallSchema.php b/app/code/Magento/GiftMessage/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Setup/UpgradeData.php b/app/code/Magento/GiftMessage/Setup/UpgradeData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Test/Unit/Block/Cart/GiftOptionsTest.php b/app/code/Magento/GiftMessage/Test/Unit/Block/Cart/GiftOptionsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Test/Unit/Block/Cart/Item/Renderer/Actions/GiftOptionsTest.php b/app/code/Magento/GiftMessage/Test/Unit/Block/Cart/Item/Renderer/Actions/GiftOptionsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Test/Unit/Block/Cart/Item/Renderer/Actions/ItemIdProcessorTest.php b/app/code/Magento/GiftMessage/Test/Unit/Block/Cart/Item/Renderer/Actions/ItemIdProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Test/Unit/Block/Message/InlineTest.php b/app/code/Magento/GiftMessage/Test/Unit/Block/Message/InlineTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Test/Unit/Helper/MessageTest.php b/app/code/Magento/GiftMessage/Test/Unit/Helper/MessageTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Test/Unit/Model/CartRepositoryTest.php b/app/code/Magento/GiftMessage/Test/Unit/Model/CartRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Test/Unit/Model/CompositeConfigProviderTest.php b/app/code/Magento/GiftMessage/Test/Unit/Model/CompositeConfigProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Test/Unit/Model/GiftMessageConfigProviderTest.php b/app/code/Magento/GiftMessage/Test/Unit/Model/GiftMessageConfigProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Test/Unit/Model/GiftMessageManagerTest.php b/app/code/Magento/GiftMessage/Test/Unit/Model/GiftMessageManagerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Test/Unit/Model/GuestCartRepositoryTest.php b/app/code/Magento/GiftMessage/Test/Unit/Model/GuestCartRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Test/Unit/Model/GuestItemRepositoryTest.php b/app/code/Magento/GiftMessage/Test/Unit/Model/GuestItemRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Test/Unit/Model/ItemRepositoryTest.php b/app/code/Magento/GiftMessage/Test/Unit/Model/ItemRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Test/Unit/Model/OrderItemRepositoryTest.php b/app/code/Magento/GiftMessage/Test/Unit/Model/OrderItemRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Test/Unit/Model/Plugin/OrderGetTest.php b/app/code/Magento/GiftMessage/Test/Unit/Model/Plugin/OrderGetTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Test/Unit/Model/Plugin/OrderSaveTest.php b/app/code/Magento/GiftMessage/Test/Unit/Model/Plugin/OrderSaveTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Test/Unit/Model/Plugin/QuoteItemTest.php b/app/code/Magento/GiftMessage/Test/Unit/Model/Plugin/QuoteItemTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Test/Unit/Model/SaveTest.php b/app/code/Magento/GiftMessage/Test/Unit/Model/SaveTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Test/Unit/Model/Type/Plugin/MultishippingTest.php b/app/code/Magento/GiftMessage/Test/Unit/Model/Type/Plugin/MultishippingTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Test/Unit/Model/Type/Plugin/OnepageTest.php b/app/code/Magento/GiftMessage/Test/Unit/Model/Type/Plugin/OnepageTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Test/Unit/Observer/MultishippingEventCreateOrdersObserverTest.php b/app/code/Magento/GiftMessage/Test/Unit/Observer/MultishippingEventCreateOrdersObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Test/Unit/Observer/SalesEventQuoteSubmitBeforeObserverTest.php b/app/code/Magento/GiftMessage/Test/Unit/Observer/SalesEventQuoteSubmitBeforeObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Test/Unit/Ui/DataProvider/Product/Modifier/GiftMessageTest.php b/app/code/Magento/GiftMessage/Test/Unit/Ui/DataProvider/Product/Modifier/GiftMessageTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/Ui/DataProvider/Product/Modifier/GiftMessage.php b/app/code/Magento/GiftMessage/Ui/DataProvider/Product/Modifier/GiftMessage.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/composer.json b/app/code/Magento/GiftMessage/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/etc/adminhtml/di.xml b/app/code/Magento/GiftMessage/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/etc/adminhtml/events.xml b/app/code/Magento/GiftMessage/etc/adminhtml/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/etc/adminhtml/system.xml b/app/code/Magento/GiftMessage/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/etc/catalog_attributes.xml b/app/code/Magento/GiftMessage/etc/catalog_attributes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/etc/config.xml b/app/code/Magento/GiftMessage/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/etc/di.xml b/app/code/Magento/GiftMessage/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/etc/extension_attributes.xml b/app/code/Magento/GiftMessage/etc/extension_attributes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/etc/fieldset.xml b/app/code/Magento/GiftMessage/etc/fieldset.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/etc/frontend/di.xml b/app/code/Magento/GiftMessage/etc/frontend/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/etc/frontend/events.xml b/app/code/Magento/GiftMessage/etc/frontend/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/etc/frontend/routes.xml b/app/code/Magento/GiftMessage/etc/frontend/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/etc/module.xml b/app/code/Magento/GiftMessage/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/etc/webapi.xml b/app/code/Magento/GiftMessage/etc/webapi.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/etc/webapi_rest/events.xml b/app/code/Magento/GiftMessage/etc/webapi_rest/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/i18n/en_US.csv b/app/code/Magento/GiftMessage/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/registration.php b/app/code/Magento/GiftMessage/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/view/adminhtml/layout/sales_order_create_index.xml b/app/code/Magento/GiftMessage/view/adminhtml/layout/sales_order_create_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/view/adminhtml/layout/sales_order_create_load_block_data.xml b/app/code/Magento/GiftMessage/view/adminhtml/layout/sales_order_create_load_block_data.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/view/adminhtml/layout/sales_order_create_load_block_items.xml b/app/code/Magento/GiftMessage/view/adminhtml/layout/sales_order_create_load_block_items.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/view/adminhtml/layout/sales_order_view.xml b/app/code/Magento/GiftMessage/view/adminhtml/layout/sales_order_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/view/adminhtml/templates/giftoptionsform.phtml b/app/code/Magento/GiftMessage/view/adminhtml/templates/giftoptionsform.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/view/adminhtml/templates/popup.phtml b/app/code/Magento/GiftMessage/view/adminhtml/templates/popup.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/view/adminhtml/templates/sales/order/create/giftoptions.phtml b/app/code/Magento/GiftMessage/view/adminhtml/templates/sales/order/create/giftoptions.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/view/adminhtml/templates/sales/order/create/items.phtml b/app/code/Magento/GiftMessage/view/adminhtml/templates/sales/order/create/items.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/view/adminhtml/templates/sales/order/view/giftoptions.phtml b/app/code/Magento/GiftMessage/view/adminhtml/templates/sales/order/view/giftoptions.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/view/adminhtml/templates/sales/order/view/items.phtml b/app/code/Magento/GiftMessage/view/adminhtml/templates/sales/order/view/items.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/view/frontend/layout/checkout_cart_index.xml b/app/code/Magento/GiftMessage/view/frontend/layout/checkout_cart_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/view/frontend/layout/checkout_cart_item_renderers.xml b/app/code/Magento/GiftMessage/view/frontend/layout/checkout_cart_item_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/view/frontend/requirejs-config.js b/app/code/Magento/GiftMessage/view/frontend/requirejs-config.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/view/frontend/templates/cart/gift_options.phtml b/app/code/Magento/GiftMessage/view/frontend/templates/cart/gift_options.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/view/frontend/templates/cart/item/renderer/actions/gift_options.phtml b/app/code/Magento/GiftMessage/view/frontend/templates/cart/item/renderer/actions/gift_options.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/view/frontend/templates/inline.phtml b/app/code/Magento/GiftMessage/view/frontend/templates/inline.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/view/frontend/web/extra-options.js b/app/code/Magento/GiftMessage/view/frontend/web/extra-options.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/view/frontend/web/gift-options.js b/app/code/Magento/GiftMessage/view/frontend/web/gift-options.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/view/frontend/web/js/action/gift-options.js b/app/code/Magento/GiftMessage/view/frontend/web/js/action/gift-options.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/view/frontend/web/js/model/gift-message.js b/app/code/Magento/GiftMessage/view/frontend/web/js/model/gift-message.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/view/frontend/web/js/model/gift-options.js b/app/code/Magento/GiftMessage/view/frontend/web/js/model/gift-options.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/view/frontend/web/js/model/url-builder.js b/app/code/Magento/GiftMessage/view/frontend/web/js/model/url-builder.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/view/frontend/web/js/view/gift-message.js b/app/code/Magento/GiftMessage/view/frontend/web/js/view/gift-message.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/view/frontend/web/template/gift-message-form.html b/app/code/Magento/GiftMessage/view/frontend/web/template/gift-message-form.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/view/frontend/web/template/gift-message-item-level.html b/app/code/Magento/GiftMessage/view/frontend/web/template/gift-message-item-level.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GiftMessage/view/frontend/web/template/gift-message.html b/app/code/Magento/GiftMessage/view/frontend/web/template/gift-message.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleAdwords/Block/Code.php b/app/code/Magento/GoogleAdwords/Block/Code.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleAdwords/Helper/Data.php b/app/code/Magento/GoogleAdwords/Helper/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleAdwords/LICENSE.txt b/app/code/Magento/GoogleAdwords/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleAdwords/LICENSE_AFL.txt b/app/code/Magento/GoogleAdwords/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleAdwords/Model/Config/Backend/AbstractConversion.php b/app/code/Magento/GoogleAdwords/Model/Config/Backend/AbstractConversion.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleAdwords/Model/Config/Backend/Color.php b/app/code/Magento/GoogleAdwords/Model/Config/Backend/Color.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleAdwords/Model/Config/Backend/ConversionId.php b/app/code/Magento/GoogleAdwords/Model/Config/Backend/ConversionId.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleAdwords/Model/Config/Source/Language.php b/app/code/Magento/GoogleAdwords/Model/Config/Source/Language.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleAdwords/Model/Config/Source/ValueType.php b/app/code/Magento/GoogleAdwords/Model/Config/Source/ValueType.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleAdwords/Model/Filter/UppercaseTitle.php b/app/code/Magento/GoogleAdwords/Model/Filter/UppercaseTitle.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleAdwords/Model/Validator/Factory.php b/app/code/Magento/GoogleAdwords/Model/Validator/Factory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleAdwords/Observer/SetConversionValueObserver.php b/app/code/Magento/GoogleAdwords/Observer/SetConversionValueObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleAdwords/README.md b/app/code/Magento/GoogleAdwords/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleAdwords/Test/Unit/Helper/DataTest.php b/app/code/Magento/GoogleAdwords/Test/Unit/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleAdwords/Test/Unit/Model/Config/Source/ValueTypeTest.php b/app/code/Magento/GoogleAdwords/Test/Unit/Model/Config/Source/ValueTypeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleAdwords/Test/Unit/Model/Filter/UppercaseTitleTest.php b/app/code/Magento/GoogleAdwords/Test/Unit/Model/Filter/UppercaseTitleTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleAdwords/Test/Unit/Model/Validator/FactoryTest.php b/app/code/Magento/GoogleAdwords/Test/Unit/Model/Validator/FactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleAdwords/Test/Unit/Observer/SetConversionValueObserverTest.php b/app/code/Magento/GoogleAdwords/Test/Unit/Observer/SetConversionValueObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleAdwords/composer.json b/app/code/Magento/GoogleAdwords/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleAdwords/etc/adminhtml/system.xml b/app/code/Magento/GoogleAdwords/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleAdwords/etc/config.xml b/app/code/Magento/GoogleAdwords/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleAdwords/etc/di.xml b/app/code/Magento/GoogleAdwords/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleAdwords/etc/frontend/events.xml b/app/code/Magento/GoogleAdwords/etc/frontend/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleAdwords/etc/module.xml b/app/code/Magento/GoogleAdwords/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleAdwords/i18n/en_US.csv b/app/code/Magento/GoogleAdwords/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleAdwords/registration.php b/app/code/Magento/GoogleAdwords/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleAdwords/view/frontend/layout/checkout_onepage_success.xml b/app/code/Magento/GoogleAdwords/view/frontend/layout/checkout_onepage_success.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleAdwords/view/frontend/templates/code.phtml b/app/code/Magento/GoogleAdwords/view/frontend/templates/code.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleAnalytics/Block/Ga.php b/app/code/Magento/GoogleAnalytics/Block/Ga.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleAnalytics/Helper/Data.php b/app/code/Magento/GoogleAnalytics/Helper/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleAnalytics/LICENSE.txt b/app/code/Magento/GoogleAnalytics/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleAnalytics/LICENSE_AFL.txt b/app/code/Magento/GoogleAnalytics/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleAnalytics/Observer/SetGoogleAnalyticsOnOrderSuccessPageViewObserver.php b/app/code/Magento/GoogleAnalytics/Observer/SetGoogleAnalyticsOnOrderSuccessPageViewObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleAnalytics/README.md b/app/code/Magento/GoogleAnalytics/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleAnalytics/Test/Unit/Block/GaTest.php b/app/code/Magento/GoogleAnalytics/Test/Unit/Block/GaTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleAnalytics/composer.json b/app/code/Magento/GoogleAnalytics/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleAnalytics/etc/acl.xml b/app/code/Magento/GoogleAnalytics/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleAnalytics/etc/adminhtml/system.xml b/app/code/Magento/GoogleAnalytics/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleAnalytics/etc/di.xml b/app/code/Magento/GoogleAnalytics/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleAnalytics/etc/frontend/events.xml b/app/code/Magento/GoogleAnalytics/etc/frontend/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleAnalytics/etc/module.xml b/app/code/Magento/GoogleAnalytics/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleAnalytics/i18n/en_US.csv b/app/code/Magento/GoogleAnalytics/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleAnalytics/registration.php b/app/code/Magento/GoogleAnalytics/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleAnalytics/view/frontend/layout/default.xml b/app/code/Magento/GoogleAnalytics/view/frontend/layout/default.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleAnalytics/view/frontend/templates/ga.phtml b/app/code/Magento/GoogleAnalytics/view/frontend/templates/ga.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleAnalytics/view/frontend/web/js/google-analytics.js b/app/code/Magento/GoogleAnalytics/view/frontend/web/js/google-analytics.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/Block/AbstractCode.php b/app/code/Magento/GoogleOptimizer/Block/AbstractCode.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/Block/Adminhtml/AbstractTab.php b/app/code/Magento/GoogleOptimizer/Block/Adminhtml/AbstractTab.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/Block/Adminhtml/Catalog/Category/Edit/Googleoptimizer.php b/app/code/Magento/GoogleOptimizer/Block/Adminhtml/Catalog/Category/Edit/Googleoptimizer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/Block/Adminhtml/Catalog/Category/Edit/GoogleoptimizerForm.php b/app/code/Magento/GoogleOptimizer/Block/Adminhtml/Catalog/Category/Edit/GoogleoptimizerForm.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/Block/Adminhtml/Catalog/Product/Edit/Tab/Googleoptimizer.php b/app/code/Magento/GoogleOptimizer/Block/Adminhtml/Catalog/Product/Edit/Tab/Googleoptimizer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/Block/Adminhtml/Cms/Page/Edit/Tab/Googleoptimizer.php b/app/code/Magento/GoogleOptimizer/Block/Adminhtml/Cms/Page/Edit/Tab/Googleoptimizer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/Block/Adminhtml/Cms/Page/EntityCmsPage.php b/app/code/Magento/GoogleOptimizer/Block/Adminhtml/Cms/Page/EntityCmsPage.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/Block/Adminhtml/Form.php b/app/code/Magento/GoogleOptimizer/Block/Adminhtml/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/Block/Code/Category.php b/app/code/Magento/GoogleOptimizer/Block/Code/Category.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/Block/Code/Page.php b/app/code/Magento/GoogleOptimizer/Block/Code/Page.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/Block/Code/Product.php b/app/code/Magento/GoogleOptimizer/Block/Code/Product.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/Helper/Code.php b/app/code/Magento/GoogleOptimizer/Helper/Code.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/Helper/Data.php b/app/code/Magento/GoogleOptimizer/Helper/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/Helper/Form.php b/app/code/Magento/GoogleOptimizer/Helper/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/LICENSE.txt b/app/code/Magento/GoogleOptimizer/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/LICENSE_AFL.txt b/app/code/Magento/GoogleOptimizer/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/Model/Code.php b/app/code/Magento/GoogleOptimizer/Model/Code.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/Model/Plugin/Catalog/Category/DataProvider.php b/app/code/Magento/GoogleOptimizer/Model/Plugin/Catalog/Category/DataProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/Model/Plugin/Catalog/Product/Category/DataProvider.php b/app/code/Magento/GoogleOptimizer/Model/Plugin/Catalog/Product/Category/DataProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/Model/Plugin/Cms/Page/DataProvider.php b/app/code/Magento/GoogleOptimizer/Model/Plugin/Cms/Page/DataProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/Model/ResourceModel/Code.php b/app/code/Magento/GoogleOptimizer/Model/ResourceModel/Code.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/Observer/AbstractSave.php b/app/code/Magento/GoogleOptimizer/Observer/AbstractSave.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/Observer/Category/DeleteCategoryGoogleExperimentScriptObserver.php b/app/code/Magento/GoogleOptimizer/Observer/Category/DeleteCategoryGoogleExperimentScriptObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/Observer/Category/SaveGoogleExperimentScriptObserver.php b/app/code/Magento/GoogleOptimizer/Observer/Category/SaveGoogleExperimentScriptObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/Observer/CmsPage/DeleteCmsGoogleExperimentScriptObserver.php b/app/code/Magento/GoogleOptimizer/Observer/CmsPage/DeleteCmsGoogleExperimentScriptObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/Observer/CmsPage/SaveGoogleExperimentScriptObserver.php b/app/code/Magento/GoogleOptimizer/Observer/CmsPage/SaveGoogleExperimentScriptObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/Observer/Product/DeleteProductGoogleExperimentScriptObserver.php b/app/code/Magento/GoogleOptimizer/Observer/Product/DeleteProductGoogleExperimentScriptObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/Observer/Product/SaveGoogleExperimentScriptObserver.php b/app/code/Magento/GoogleOptimizer/Observer/Product/SaveGoogleExperimentScriptObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/README.md b/app/code/Magento/GoogleOptimizer/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/Setup/InstallSchema.php b/app/code/Magento/GoogleOptimizer/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/Test/Unit/Block/Code/CategoryTest.php b/app/code/Magento/GoogleOptimizer/Test/Unit/Block/Code/CategoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/Test/Unit/Block/Code/ProductTest.php b/app/code/Magento/GoogleOptimizer/Test/Unit/Block/Code/ProductTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/Test/Unit/Helper/CodeTest.php b/app/code/Magento/GoogleOptimizer/Test/Unit/Helper/CodeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/Test/Unit/Helper/DataTest.php b/app/code/Magento/GoogleOptimizer/Test/Unit/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/Test/Unit/Helper/FormTest.php b/app/code/Magento/GoogleOptimizer/Test/Unit/Helper/FormTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/Test/Unit/Model/Plugin/Catalog/Product/Category/DataProviderTest.php b/app/code/Magento/GoogleOptimizer/Test/Unit/Model/Plugin/Catalog/Product/Category/DataProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/Test/Unit/Observer/Category/DeleteCategoryGoogleExperimentScriptObserverTest.php b/app/code/Magento/GoogleOptimizer/Test/Unit/Observer/Category/DeleteCategoryGoogleExperimentScriptObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/Test/Unit/Observer/Category/SaveGoogleExperimentScriptObserverTest.php b/app/code/Magento/GoogleOptimizer/Test/Unit/Observer/Category/SaveGoogleExperimentScriptObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/Test/Unit/Observer/CmsPage/DeleteCmsGoogleExperimentScriptObserverTest.php b/app/code/Magento/GoogleOptimizer/Test/Unit/Observer/CmsPage/DeleteCmsGoogleExperimentScriptObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/Test/Unit/Observer/CmsPage/SaveGoogleExperimentScriptObserverTest.php b/app/code/Magento/GoogleOptimizer/Test/Unit/Observer/CmsPage/SaveGoogleExperimentScriptObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/Test/Unit/Observer/Product/DeleteProductGoogleExperimentScriptObserverTest.php b/app/code/Magento/GoogleOptimizer/Test/Unit/Observer/Product/DeleteProductGoogleExperimentScriptObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/Test/Unit/Observer/Product/SaveGoogleExperimentScriptObserverTest.php b/app/code/Magento/GoogleOptimizer/Test/Unit/Observer/Product/SaveGoogleExperimentScriptObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/Test/Unit/Ui/DataProvider/Product/Form/Modifier/GoogleOptimizerTest.php b/app/code/Magento/GoogleOptimizer/Test/Unit/Ui/DataProvider/Product/Form/Modifier/GoogleOptimizerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/Ui/DataProvider/Product/Form/Modifier/GoogleOptimizer.php b/app/code/Magento/GoogleOptimizer/Ui/DataProvider/Product/Form/Modifier/GoogleOptimizer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/composer.json b/app/code/Magento/GoogleOptimizer/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/etc/adminhtml/di.xml b/app/code/Magento/GoogleOptimizer/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/etc/adminhtml/system.xml b/app/code/Magento/GoogleOptimizer/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/etc/config.xml b/app/code/Magento/GoogleOptimizer/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/etc/events.xml b/app/code/Magento/GoogleOptimizer/etc/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/etc/module.xml b/app/code/Magento/GoogleOptimizer/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/i18n/en_US.csv b/app/code/Magento/GoogleOptimizer/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/registration.php b/app/code/Magento/GoogleOptimizer/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/view/adminhtml/layout/catalog_product_new.xml b/app/code/Magento/GoogleOptimizer/view/adminhtml/layout/catalog_product_new.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/view/adminhtml/layout/cms_page_edit.xml b/app/code/Magento/GoogleOptimizer/view/adminhtml/layout/cms_page_edit.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/view/adminhtml/ui_component/category_form.xml b/app/code/Magento/GoogleOptimizer/view/adminhtml/ui_component/category_form.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/view/adminhtml/ui_component/cms_page_form.xml b/app/code/Magento/GoogleOptimizer/view/adminhtml/ui_component/cms_page_form.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/view/adminhtml/ui_component/new_category_form.xml b/app/code/Magento/GoogleOptimizer/view/adminhtml/ui_component/new_category_form.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/view/frontend/layout/catalog_category_view.xml b/app/code/Magento/GoogleOptimizer/view/frontend/layout/catalog_category_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/view/frontend/layout/catalog_product_view.xml b/app/code/Magento/GoogleOptimizer/view/frontend/layout/catalog_product_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GoogleOptimizer/view/frontend/layout/cms_page_view.xml b/app/code/Magento/GoogleOptimizer/view/frontend/layout/cms_page_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedImportExport/LICENSE.txt b/app/code/Magento/GroupedImportExport/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedImportExport/LICENSE_AFL.txt b/app/code/Magento/GroupedImportExport/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedImportExport/Model/Export/Product/Type/Grouped.php b/app/code/Magento/GroupedImportExport/Model/Export/Product/Type/Grouped.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedImportExport/Model/Export/RowCustomizer.php b/app/code/Magento/GroupedImportExport/Model/Export/RowCustomizer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedImportExport/Model/Import/Product/Type/Grouped.php b/app/code/Magento/GroupedImportExport/Model/Import/Product/Type/Grouped.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedImportExport/Model/Import/Product/Type/Grouped/Links.php b/app/code/Magento/GroupedImportExport/Model/Import/Product/Type/Grouped/Links.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedImportExport/Test/Unit/Model/Export/Product/RowCustomizerTest.php b/app/code/Magento/GroupedImportExport/Test/Unit/Model/Export/Product/RowCustomizerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedImportExport/Test/Unit/Model/Import/Product/Type/Grouped/LinksTest.php b/app/code/Magento/GroupedImportExport/Test/Unit/Model/Import/Product/Type/Grouped/LinksTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedImportExport/Test/Unit/Model/Import/Product/Type/GroupedTest.php b/app/code/Magento/GroupedImportExport/Test/Unit/Model/Import/Product/Type/GroupedTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedImportExport/composer.json b/app/code/Magento/GroupedImportExport/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedImportExport/etc/di.xml b/app/code/Magento/GroupedImportExport/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedImportExport/etc/export.xml b/app/code/Magento/GroupedImportExport/etc/export.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedImportExport/etc/import.xml b/app/code/Magento/GroupedImportExport/etc/import.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedImportExport/etc/module.xml b/app/code/Magento/GroupedImportExport/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedImportExport/i18n/en_US.csv b/app/code/Magento/GroupedImportExport/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedImportExport/registration.php b/app/code/Magento/GroupedImportExport/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Block/Adminhtml/Items/Column/Name/Grouped.php b/app/code/Magento/GroupedProduct/Block/Adminhtml/Items/Column/Name/Grouped.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Block/Adminhtml/Order/Create/Sidebar.php b/app/code/Magento/GroupedProduct/Block/Adminhtml/Order/Create/Sidebar.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Block/Adminhtml/Product/Composite/Fieldset/Grouped.php b/app/code/Magento/GroupedProduct/Block/Adminhtml/Product/Composite/Fieldset/Grouped.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Block/Cart/Item/Renderer/Grouped.php b/app/code/Magento/GroupedProduct/Block/Cart/Item/Renderer/Grouped.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Block/Order/Email/Items/Order/Grouped.php b/app/code/Magento/GroupedProduct/Block/Order/Email/Items/Order/Grouped.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Block/Order/Item/Renderer/Grouped.php b/app/code/Magento/GroupedProduct/Block/Order/Item/Renderer/Grouped.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Block/Product/Grouped/AssociatedProducts.php b/app/code/Magento/GroupedProduct/Block/Product/Grouped/AssociatedProducts.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Block/Product/Grouped/AssociatedProducts/ListAssociatedProducts.php b/app/code/Magento/GroupedProduct/Block/Product/Grouped/AssociatedProducts/ListAssociatedProducts.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Block/Product/View/Type/Grouped.php b/app/code/Magento/GroupedProduct/Block/Product/View/Type/Grouped.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Block/Stockqty/Type/Grouped.php b/app/code/Magento/GroupedProduct/Block/Stockqty/Type/Grouped.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Controller/Adminhtml/Edit/Popup.php b/app/code/Magento/GroupedProduct/Controller/Adminhtml/Edit/Popup.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/CustomerData/GroupedItem.php b/app/code/Magento/GroupedProduct/CustomerData/GroupedItem.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Helper/Product/Configuration/Plugin/Grouped.php b/app/code/Magento/GroupedProduct/Helper/Product/Configuration/Plugin/Grouped.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/LICENSE.txt b/app/code/Magento/GroupedProduct/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/LICENSE_AFL.txt b/app/code/Magento/GroupedProduct/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Model/Order/Pdf/Items/Creditmemo/Grouped.php b/app/code/Magento/GroupedProduct/Model/Order/Pdf/Items/Creditmemo/Grouped.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Model/Order/Pdf/Items/Invoice/Grouped.php b/app/code/Magento/GroupedProduct/Model/Order/Pdf/Items/Invoice/Grouped.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Model/Product/Cart/Configuration/Plugin/Grouped.php b/app/code/Magento/GroupedProduct/Model/Product/Cart/Configuration/Plugin/Grouped.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Model/Product/CatalogPrice.php b/app/code/Magento/GroupedProduct/Model/Product/CatalogPrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Model/Product/CopyConstructor/Grouped.php b/app/code/Magento/GroupedProduct/Model/Product/CopyConstructor/Grouped.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Model/Product/Initialization/Helper/ProductLinks/Plugin/Grouped.php b/app/code/Magento/GroupedProduct/Model/Product/Initialization/Helper/ProductLinks/Plugin/Grouped.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Model/Product/Link/CollectionProvider/Grouped.php b/app/code/Magento/GroupedProduct/Model/Product/Link/CollectionProvider/Grouped.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Model/Product/Link/ProductEntity/Converter.php b/app/code/Magento/GroupedProduct/Model/Product/Link/ProductEntity/Converter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Model/Product/Type/Grouped.php b/app/code/Magento/GroupedProduct/Model/Product/Type/Grouped.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Model/Product/Type/Grouped/Backend.php b/app/code/Magento/GroupedProduct/Model/Product/Type/Grouped/Backend.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Model/Product/Type/Grouped/Price.php b/app/code/Magento/GroupedProduct/Model/Product/Type/Grouped/Price.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Model/Product/Type/Plugin.php b/app/code/Magento/GroupedProduct/Model/Product/Type/Plugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Model/ResourceModel/Indexer/Stock/Grouped.php b/app/code/Magento/GroupedProduct/Model/ResourceModel/Indexer/Stock/Grouped.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Model/ResourceModel/Product/Indexer/Price/Grouped.php b/app/code/Magento/GroupedProduct/Model/ResourceModel/Product/Indexer/Price/Grouped.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Model/ResourceModel/Product/Indexer/Price/GroupedInterface.php b/app/code/Magento/GroupedProduct/Model/ResourceModel/Product/Indexer/Price/GroupedInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Model/ResourceModel/Product/Link.php b/app/code/Magento/GroupedProduct/Model/ResourceModel/Product/Link.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Model/ResourceModel/Product/Link/RelationPersister.php b/app/code/Magento/GroupedProduct/Model/ResourceModel/Product/Link/RelationPersister.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Model/ResourceModel/Product/Type/Grouped/AssociatedProductsCollection.php b/app/code/Magento/GroupedProduct/Model/ResourceModel/Product/Type/Grouped/AssociatedProductsCollection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Model/Sales/AdminOrder/Product/Quote/Plugin/Initializer.php b/app/code/Magento/GroupedProduct/Model/Sales/AdminOrder/Product/Quote/Plugin/Initializer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Pricing/Price/ConfiguredPrice.php b/app/code/Magento/GroupedProduct/Pricing/Price/ConfiguredPrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Pricing/Price/FinalPrice.php b/app/code/Magento/GroupedProduct/Pricing/Price/FinalPrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/README.md b/app/code/Magento/GroupedProduct/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Setup/InstallData.php b/app/code/Magento/GroupedProduct/Setup/InstallData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Setup/UpgradeData.php b/app/code/Magento/GroupedProduct/Setup/UpgradeData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Block/Adminhtml/Order/Create/SidebarTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Block/Adminhtml/Order/Create/SidebarTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Block/Adminhtml/Product/Composite/Fieldset/GroupedTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Block/Adminhtml/Product/Composite/Fieldset/GroupedTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Block/Cart/Item/Renderer/GroupedTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Block/Cart/Item/Renderer/GroupedTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Block/Product/Grouped/AssociatedProducts/ListAssociatedProductsTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Block/Product/Grouped/AssociatedProducts/ListAssociatedProductsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Block/Product/Grouped/AssociatedProductsTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Block/Product/Grouped/AssociatedProductsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Block/Product/View/Type/GroupedTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Block/Product/View/Type/GroupedTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Block/Stockqty/Type/GroupedTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Block/Stockqty/Type/GroupedTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Controller/Adminhtml/Edit/PopupTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Controller/Adminhtml/Edit/PopupTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Helper/Product/Configuration/Plugin/GroupedTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Helper/Product/Configuration/Plugin/GroupedTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/Cart/Configuration/Plugin/GroupedTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/Cart/Configuration/Plugin/GroupedTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/CatalogPriceTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/CatalogPriceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/CopyConstructor/GroupedTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/CopyConstructor/GroupedTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/Initialization/Helper/ProductLinks/Plugin/GroupedTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/Initialization/Helper/ProductLinks/Plugin/GroupedTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/Type/Grouped/PriceTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/Type/Grouped/PriceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/Type/GroupedTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/Type/GroupedTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/Type/PluginTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Model/Product/Type/PluginTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Model/ProductTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Model/ProductTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Model/ResourceModel/Product/Link/RelationPersisterTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Model/ResourceModel/Product/Link/RelationPersisterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Model/Sales/AdminOrder/Product/Quote/Plugin/InitializerTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Model/Sales/AdminOrder/Product/Quote/Plugin/InitializerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Pricing/Price/ConfiguredPriceTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Pricing/Price/ConfiguredPriceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Pricing/Price/FinalPriceTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Pricing/Price/FinalPriceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/CustomOptionsTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/CustomOptionsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/GroupedTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Ui/DataProvider/Product/Form/Modifier/GroupedTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Test/Unit/Ui/DataProvider/Product/GroupedProductDataProviderTest.php b/app/code/Magento/GroupedProduct/Test/Unit/Ui/DataProvider/Product/GroupedProductDataProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Ui/DataProvider/Product/Form/Modifier/CustomOptions.php b/app/code/Magento/GroupedProduct/Ui/DataProvider/Product/Form/Modifier/CustomOptions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Ui/DataProvider/Product/Form/Modifier/Grouped.php b/app/code/Magento/GroupedProduct/Ui/DataProvider/Product/Form/Modifier/Grouped.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Ui/DataProvider/Product/Form/Modifier/StockData.php b/app/code/Magento/GroupedProduct/Ui/DataProvider/Product/Form/Modifier/StockData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/Ui/DataProvider/Product/GroupedProductDataProvider.php b/app/code/Magento/GroupedProduct/Ui/DataProvider/Product/GroupedProductDataProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/composer.json b/app/code/Magento/GroupedProduct/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/etc/adminhtml/di.xml b/app/code/Magento/GroupedProduct/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/etc/adminhtml/routes.xml b/app/code/Magento/GroupedProduct/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/etc/adminhtml/system.xml b/app/code/Magento/GroupedProduct/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/etc/config.xml b/app/code/Magento/GroupedProduct/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/etc/di.xml b/app/code/Magento/GroupedProduct/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/etc/extension_attributes.xml b/app/code/Magento/GroupedProduct/etc/extension_attributes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/etc/frontend/di.xml b/app/code/Magento/GroupedProduct/etc/frontend/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/etc/module.xml b/app/code/Magento/GroupedProduct/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/etc/pdf.xml b/app/code/Magento/GroupedProduct/etc/pdf.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/etc/product_types.xml b/app/code/Magento/GroupedProduct/etc/product_types.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/etc/sales.xml b/app/code/Magento/GroupedProduct/etc/sales.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/i18n/en_US.csv b/app/code/Magento/GroupedProduct/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/registration.php b/app/code/Magento/GroupedProduct/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/view/adminhtml/layout/catalog_product_grouped.xml b/app/code/Magento/GroupedProduct/view/adminhtml/layout/catalog_product_grouped.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/view/adminhtml/layout/catalog_product_new.xml b/app/code/Magento/GroupedProduct/view/adminhtml/layout/catalog_product_new.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/view/adminhtml/layout/catalog_product_view_type_grouped.xml b/app/code/Magento/GroupedProduct/view/adminhtml/layout/catalog_product_view_type_grouped.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/view/adminhtml/layout/groupedproduct_edit_popup.xml b/app/code/Magento/GroupedProduct/view/adminhtml/layout/groupedproduct_edit_popup.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/view/adminhtml/layout/groupedproduct_popup_grid.xml b/app/code/Magento/GroupedProduct/view/adminhtml/layout/groupedproduct_popup_grid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/view/adminhtml/layout/sales_order_creditmemo_new.xml b/app/code/Magento/GroupedProduct/view/adminhtml/layout/sales_order_creditmemo_new.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/view/adminhtml/layout/sales_order_creditmemo_updateqty.xml b/app/code/Magento/GroupedProduct/view/adminhtml/layout/sales_order_creditmemo_updateqty.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/view/adminhtml/layout/sales_order_creditmemo_view.xml b/app/code/Magento/GroupedProduct/view/adminhtml/layout/sales_order_creditmemo_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/view/adminhtml/layout/sales_order_invoice_new.xml b/app/code/Magento/GroupedProduct/view/adminhtml/layout/sales_order_invoice_new.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/view/adminhtml/layout/sales_order_invoice_updateqty.xml b/app/code/Magento/GroupedProduct/view/adminhtml/layout/sales_order_invoice_updateqty.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/view/adminhtml/layout/sales_order_invoice_view.xml b/app/code/Magento/GroupedProduct/view/adminhtml/layout/sales_order_invoice_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/view/adminhtml/layout/sales_order_view.xml b/app/code/Magento/GroupedProduct/view/adminhtml/layout/sales_order_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/view/adminhtml/requirejs-config.js b/app/code/Magento/GroupedProduct/view/adminhtml/requirejs-config.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/view/adminhtml/templates/catalog/product/composite/fieldset/grouped.phtml b/app/code/Magento/GroupedProduct/view/adminhtml/templates/catalog/product/composite/fieldset/grouped.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/view/adminhtml/templates/product/grouped/grouped.phtml b/app/code/Magento/GroupedProduct/view/adminhtml/templates/product/grouped/grouped.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/view/adminhtml/templates/product/grouped/list.phtml b/app/code/Magento/GroupedProduct/view/adminhtml/templates/product/grouped/list.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/view/adminhtml/templates/product/stock/disabler.phtml b/app/code/Magento/GroupedProduct/view/adminhtml/templates/product/stock/disabler.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/view/adminhtml/ui_component/grouped_product_listing.xml b/app/code/Magento/GroupedProduct/view/adminhtml/ui_component/grouped_product_listing.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/view/adminhtml/web/css/grouped-product.css b/app/code/Magento/GroupedProduct/view/adminhtml/web/css/grouped-product.css
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/view/adminhtml/web/js/grouped-product.js b/app/code/Magento/GroupedProduct/view/adminhtml/web/js/grouped-product.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/view/base/layout/catalog_product_prices.xml b/app/code/Magento/GroupedProduct/view/base/layout/catalog_product_prices.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/view/base/templates/product/price/final_price.phtml b/app/code/Magento/GroupedProduct/view/base/templates/product/price/final_price.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/view/base/web/template/product/price/minimal_price.html b/app/code/Magento/GroupedProduct/view/base/web/template/product/price/minimal_price.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/view/base/web/template/product/price/regular_price.html b/app/code/Magento/GroupedProduct/view/base/web/template/product/price/regular_price.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/view/frontend/layout/catalog_product_rss_feed_renderer_list.xml b/app/code/Magento/GroupedProduct/view/frontend/layout/catalog_product_rss_feed_renderer_list.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/view/frontend/layout/catalog_product_view_type_grouped.xml b/app/code/Magento/GroupedProduct/view/frontend/layout/catalog_product_view_type_grouped.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/view/frontend/layout/checkout_cart_item_renderers.xml b/app/code/Magento/GroupedProduct/view/frontend/layout/checkout_cart_item_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/view/frontend/layout/checkout_onepage_review_item_renderers.xml b/app/code/Magento/GroupedProduct/view/frontend/layout/checkout_onepage_review_item_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/view/frontend/layout/sales_email_order_creditmemo_renderers.xml b/app/code/Magento/GroupedProduct/view/frontend/layout/sales_email_order_creditmemo_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/view/frontend/layout/sales_email_order_invoice_renderers.xml b/app/code/Magento/GroupedProduct/view/frontend/layout/sales_email_order_invoice_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/view/frontend/layout/sales_email_order_renderers.xml b/app/code/Magento/GroupedProduct/view/frontend/layout/sales_email_order_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/view/frontend/layout/sales_guest_invoice.xml b/app/code/Magento/GroupedProduct/view/frontend/layout/sales_guest_invoice.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/view/frontend/layout/sales_order_creditmemo_renderers.xml b/app/code/Magento/GroupedProduct/view/frontend/layout/sales_order_creditmemo_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/view/frontend/layout/sales_order_invoice_renderers.xml b/app/code/Magento/GroupedProduct/view/frontend/layout/sales_order_invoice_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/view/frontend/layout/sales_order_item_renderers.xml b/app/code/Magento/GroupedProduct/view/frontend/layout/sales_order_item_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/view/frontend/layout/sales_order_print_creditmemo_renderers.xml b/app/code/Magento/GroupedProduct/view/frontend/layout/sales_order_print_creditmemo_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/view/frontend/layout/sales_order_print_invoice_renderers.xml b/app/code/Magento/GroupedProduct/view/frontend/layout/sales_order_print_invoice_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/view/frontend/layout/sales_order_print_renderers.xml b/app/code/Magento/GroupedProduct/view/frontend/layout/sales_order_print_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/view/frontend/templates/product/view/type/default.phtml b/app/code/Magento/GroupedProduct/view/frontend/templates/product/view/type/default.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/view/frontend/templates/product/view/type/grouped.phtml b/app/code/Magento/GroupedProduct/view/frontend/templates/product/view/type/grouped.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/view/frontend/ui_component/widget_recently_compared.xml b/app/code/Magento/GroupedProduct/view/frontend/ui_component/widget_recently_compared.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/GroupedProduct/view/frontend/ui_component/widget_recently_viewed.xml b/app/code/Magento/GroupedProduct/view/frontend/ui_component/widget_recently_viewed.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Block/Adminhtml/Export/Edit.php b/app/code/Magento/ImportExport/Block/Adminhtml/Export/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Block/Adminhtml/Export/Edit/Form.php b/app/code/Magento/ImportExport/Block/Adminhtml/Export/Edit/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Block/Adminhtml/Export/Filter.php b/app/code/Magento/ImportExport/Block/Adminhtml/Export/Filter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Block/Adminhtml/Form/After.php b/app/code/Magento/ImportExport/Block/Adminhtml/Form/After.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Block/Adminhtml/Grid/Column/Renderer/Download.php b/app/code/Magento/ImportExport/Block/Adminhtml/Grid/Column/Renderer/Download.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Block/Adminhtml/Grid/Column/Renderer/Error.php b/app/code/Magento/ImportExport/Block/Adminhtml/Grid/Column/Renderer/Error.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Block/Adminhtml/History.php b/app/code/Magento/ImportExport/Block/Adminhtml/History.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Block/Adminhtml/Import/Edit.php b/app/code/Magento/ImportExport/Block/Adminhtml/Import/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Block/Adminhtml/Import/Edit/Before.php b/app/code/Magento/ImportExport/Block/Adminhtml/Import/Edit/Before.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Block/Adminhtml/Import/Edit/Form.php b/app/code/Magento/ImportExport/Block/Adminhtml/Import/Edit/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Block/Adminhtml/Import/Frame/Result.php b/app/code/Magento/ImportExport/Block/Adminhtml/Import/Frame/Result.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Controller/Adminhtml/Export.php b/app/code/Magento/ImportExport/Controller/Adminhtml/Export.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Controller/Adminhtml/Export/Export.php b/app/code/Magento/ImportExport/Controller/Adminhtml/Export/Export.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Controller/Adminhtml/Export/GetFilter.php b/app/code/Magento/ImportExport/Controller/Adminhtml/Export/GetFilter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Controller/Adminhtml/Export/Index.php b/app/code/Magento/ImportExport/Controller/Adminhtml/Export/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Controller/Adminhtml/History.php b/app/code/Magento/ImportExport/Controller/Adminhtml/History.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Controller/Adminhtml/History/Download.php b/app/code/Magento/ImportExport/Controller/Adminhtml/History/Download.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Controller/Adminhtml/History/Index.php b/app/code/Magento/ImportExport/Controller/Adminhtml/History/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Controller/Adminhtml/Import.php b/app/code/Magento/ImportExport/Controller/Adminhtml/Import.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Controller/Adminhtml/Import/Download.php b/app/code/Magento/ImportExport/Controller/Adminhtml/Import/Download.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Controller/Adminhtml/Import/Index.php b/app/code/Magento/ImportExport/Controller/Adminhtml/Import/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Controller/Adminhtml/Import/Start.php b/app/code/Magento/ImportExport/Controller/Adminhtml/Import/Start.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Controller/Adminhtml/Import/Validate.php b/app/code/Magento/ImportExport/Controller/Adminhtml/Import/Validate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Controller/Adminhtml/ImportResult.php b/app/code/Magento/ImportExport/Controller/Adminhtml/ImportResult.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Files/Sample/advanced_pricing.csv b/app/code/Magento/ImportExport/Files/Sample/advanced_pricing.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Files/Sample/catalog_product.csv b/app/code/Magento/ImportExport/Files/Sample/catalog_product.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Files/Sample/customer.csv b/app/code/Magento/ImportExport/Files/Sample/customer.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Files/Sample/customer_address.csv b/app/code/Magento/ImportExport/Files/Sample/customer_address.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Files/Sample/customer_composite.csv b/app/code/Magento/ImportExport/Files/Sample/customer_composite.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Files/Sample/customer_finance.csv b/app/code/Magento/ImportExport/Files/Sample/customer_finance.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Helper/Data.php b/app/code/Magento/ImportExport/Helper/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Helper/Report.php b/app/code/Magento/ImportExport/Helper/Report.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/LICENSE.txt b/app/code/Magento/ImportExport/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/LICENSE_AFL.txt b/app/code/Magento/ImportExport/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Model/AbstractModel.php b/app/code/Magento/ImportExport/Model/AbstractModel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Model/Export.php b/app/code/Magento/ImportExport/Model/Export.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Model/Export/AbstractEntity.php b/app/code/Magento/ImportExport/Model/Export/AbstractEntity.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Model/Export/Adapter/AbstractAdapter.php b/app/code/Magento/ImportExport/Model/Export/Adapter/AbstractAdapter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Model/Export/Adapter/Csv.php b/app/code/Magento/ImportExport/Model/Export/Adapter/Csv.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Model/Export/Adapter/Factory.php b/app/code/Magento/ImportExport/Model/Export/Adapter/Factory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Model/Export/Config.php b/app/code/Magento/ImportExport/Model/Export/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Model/Export/Config/Converter.php b/app/code/Magento/ImportExport/Model/Export/Config/Converter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Model/Export/Config/Reader.php b/app/code/Magento/ImportExport/Model/Export/Config/Reader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Model/Export/Config/SchemaLocator.php b/app/code/Magento/ImportExport/Model/Export/Config/SchemaLocator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Model/Export/ConfigInterface.php b/app/code/Magento/ImportExport/Model/Export/ConfigInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Model/Export/Entity/AbstractEav.php b/app/code/Magento/ImportExport/Model/Export/Entity/AbstractEav.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Model/Export/Entity/AbstractEntity.php b/app/code/Magento/ImportExport/Model/Export/Entity/AbstractEntity.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Model/Export/Entity/Factory.php b/app/code/Magento/ImportExport/Model/Export/Entity/Factory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Model/Export/Factory.php b/app/code/Magento/ImportExport/Model/Export/Factory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Model/History.php b/app/code/Magento/ImportExport/Model/History.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Model/Import.php b/app/code/Magento/ImportExport/Model/Import.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Model/Import/AbstractEntity.php b/app/code/Magento/ImportExport/Model/Import/AbstractEntity.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Model/Import/AbstractSource.php b/app/code/Magento/ImportExport/Model/Import/AbstractSource.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Model/Import/Adapter.php b/app/code/Magento/ImportExport/Model/Import/Adapter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Model/Import/Config.php b/app/code/Magento/ImportExport/Model/Import/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Model/Import/Config/Converter.php b/app/code/Magento/ImportExport/Model/Import/Config/Converter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Model/Import/Config/Reader.php b/app/code/Magento/ImportExport/Model/Import/Config/Reader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Model/Import/Config/SchemaLocator.php b/app/code/Magento/ImportExport/Model/Import/Config/SchemaLocator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Model/Import/ConfigInterface.php b/app/code/Magento/ImportExport/Model/Import/ConfigInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Model/Import/Entity/AbstractEav.php b/app/code/Magento/ImportExport/Model/Import/Entity/AbstractEav.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Model/Import/Entity/AbstractEntity.php b/app/code/Magento/ImportExport/Model/Import/Entity/AbstractEntity.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Model/Import/Entity/Factory.php b/app/code/Magento/ImportExport/Model/Import/Entity/Factory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Model/Import/ErrorProcessing/ProcessingError.php b/app/code/Magento/ImportExport/Model/Import/ErrorProcessing/ProcessingError.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Model/Import/ErrorProcessing/ProcessingErrorAggregator.php b/app/code/Magento/ImportExport/Model/Import/ErrorProcessing/ProcessingErrorAggregator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Model/Import/ErrorProcessing/ProcessingErrorAggregatorInterface.php b/app/code/Magento/ImportExport/Model/Import/ErrorProcessing/ProcessingErrorAggregatorInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Model/Import/Source/Csv.php b/app/code/Magento/ImportExport/Model/Import/Source/Csv.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Model/Import/Source/Zip.php b/app/code/Magento/ImportExport/Model/Import/Source/Zip.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Model/Report/Csv.php b/app/code/Magento/ImportExport/Model/Report/Csv.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Model/Report/ReportProcessorInterface.php b/app/code/Magento/ImportExport/Model/Report/ReportProcessorInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Model/ResourceModel/CollectionByPagesIterator.php b/app/code/Magento/ImportExport/Model/ResourceModel/CollectionByPagesIterator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Model/ResourceModel/Helper.php b/app/code/Magento/ImportExport/Model/ResourceModel/Helper.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Model/ResourceModel/History.php b/app/code/Magento/ImportExport/Model/ResourceModel/History.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Model/ResourceModel/History/Collection.php b/app/code/Magento/ImportExport/Model/ResourceModel/History/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Model/ResourceModel/Import/Data.php b/app/code/Magento/ImportExport/Model/ResourceModel/Import/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Model/Source/Export/Entity.php b/app/code/Magento/ImportExport/Model/Source/Export/Entity.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Model/Source/Export/Format.php b/app/code/Magento/ImportExport/Model/Source/Export/Format.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Model/Source/Import/AbstractBehavior.php b/app/code/Magento/ImportExport/Model/Source/Import/AbstractBehavior.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Model/Source/Import/Behavior/Basic.php b/app/code/Magento/ImportExport/Model/Source/Import/Behavior/Basic.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Model/Source/Import/Behavior/Custom.php b/app/code/Magento/ImportExport/Model/Source/Import/Behavior/Custom.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Model/Source/Import/Behavior/Factory.php b/app/code/Magento/ImportExport/Model/Source/Import/Behavior/Factory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Model/Source/Import/Entity.php b/app/code/Magento/ImportExport/Model/Source/Import/Entity.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/README.md b/app/code/Magento/ImportExport/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Setup/InstallSchema.php b/app/code/Magento/ImportExport/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Setup/UpgradeSchema.php b/app/code/Magento/ImportExport/Setup/UpgradeSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Block/Adminhtml/Export/FilterTest.php b/app/code/Magento/ImportExport/Test/Unit/Block/Adminhtml/Export/FilterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Block/Adminhtml/Grid/Column/Renderer/DownloadTest.php b/app/code/Magento/ImportExport/Test/Unit/Block/Adminhtml/Grid/Column/Renderer/DownloadTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Block/Adminhtml/Import/Edit/FormTest.php b/app/code/Magento/ImportExport/Test/Unit/Block/Adminhtml/Import/Edit/FormTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Controller/Adminhtml/History/DownloadTest.php b/app/code/Magento/ImportExport/Test/Unit/Controller/Adminhtml/History/DownloadTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Controller/Adminhtml/History/IndexTest.php b/app/code/Magento/ImportExport/Test/Unit/Controller/Adminhtml/History/IndexTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Controller/Adminhtml/Import/ValidateTest.php b/app/code/Magento/ImportExport/Test/Unit/Controller/Adminhtml/Import/ValidateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Helper/ReportTest.php b/app/code/Magento/ImportExport/Test/Unit/Helper/ReportTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/ConverterTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/ConverterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/SchemaLocatorTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/SchemaLocatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/XsdTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/XsdTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/_files/export.php b/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/_files/export.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/_files/export.xml b/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/_files/export.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/_files/export_merged_valid.xml b/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/_files/export_merged_valid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/_files/export_valid.xml b/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/_files/export_valid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/_files/invalidExportMergedXmlArray.php b/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/_files/invalidExportMergedXmlArray.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/_files/invalidExportXmlArray.php b/app/code/Magento/ImportExport/Test/Unit/Model/Export/Config/_files/invalidExportXmlArray.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Export/ConfigTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/Export/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Export/Entity/AbstractEavTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/Export/Entity/AbstractEavTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Export/EntityAbstractTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/Export/EntityAbstractTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/ExportTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/ExportTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Import/AbstractImportTestCase.php b/app/code/Magento/ImportExport/Test/Unit/Model/Import/AbstractImportTestCase.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Import/AdapterTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/Import/AdapterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/ConverterTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/ConverterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/SchemaLocatorTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/SchemaLocatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/XsdMergedTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/XsdMergedTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/XsdTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/XsdTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/_files/import.php b/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/_files/import.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/_files/import.xml b/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/_files/import.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/_files/invalidImportMergedXmlArray.php b/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/_files/invalidImportMergedXmlArray.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/_files/invalidImportXmlArray.php b/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/_files/invalidImportXmlArray.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/_files/valid_import.xml b/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/_files/valid_import.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/_files/valid_import_merged.xml b/app/code/Magento/ImportExport/Test/Unit/Model/Import/Config/_files/valid_import_merged.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Import/ConfigTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/Import/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Import/Entity/AbstractTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/Import/Entity/AbstractTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Import/Entity/EavAbstractTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/Import/Entity/EavAbstractTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Import/EntityAbstractTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/Import/EntityAbstractTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Import/ErrorProcessing/ProcessingErrorAggregatorTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/Import/ErrorProcessing/ProcessingErrorAggregatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Import/ErrorProcessing/ProcessingErrorTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/Import/ErrorProcessing/ProcessingErrorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Import/Source/CsvTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/Import/Source/CsvTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Import/Source/ZipTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/Import/Source/ZipTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Import/Source/_files/test.csv b/app/code/Magento/ImportExport/Test/Unit/Model/Import/Source/_files/test.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Import/SourceAbstractTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/Import/SourceAbstractTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/ImportTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/ImportTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Report/CsvTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/Report/CsvTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/ResourceModel/CollectionByPagesIteratorTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/ResourceModel/CollectionByPagesIteratorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/ResourceModel/HistoryTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/ResourceModel/HistoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Source/Import/AbstractBehaviorTestCase.php b/app/code/Magento/ImportExport/Test/Unit/Model/Source/Import/AbstractBehaviorTestCase.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Source/Import/Behavior/BasicTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/Source/Import/Behavior/BasicTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Source/Import/Behavior/CustomTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/Source/Import/Behavior/CustomTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/Test/Unit/Model/Source/Import/BehaviorAbstractTest.php b/app/code/Magento/ImportExport/Test/Unit/Model/Source/Import/BehaviorAbstractTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/composer.json b/app/code/Magento/ImportExport/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/etc/acl.xml b/app/code/Magento/ImportExport/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/etc/adminhtml/di.xml b/app/code/Magento/ImportExport/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/etc/adminhtml/menu.xml b/app/code/Magento/ImportExport/etc/adminhtml/menu.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/etc/adminhtml/routes.xml b/app/code/Magento/ImportExport/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/etc/config.xml b/app/code/Magento/ImportExport/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/etc/di.xml b/app/code/Magento/ImportExport/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/etc/export.xsd b/app/code/Magento/ImportExport/etc/export.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/etc/export_merged.xsd b/app/code/Magento/ImportExport/etc/export_merged.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/etc/import.xsd b/app/code/Magento/ImportExport/etc/import.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/etc/import_merged.xsd b/app/code/Magento/ImportExport/etc/import_merged.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/etc/module.xml b/app/code/Magento/ImportExport/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/i18n/en_US.csv b/app/code/Magento/ImportExport/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/registration.php b/app/code/Magento/ImportExport/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_export_getfilter.xml b/app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_export_getfilter.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_export_index.xml b/app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_export_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_history_grid_block.xml b/app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_history_grid_block.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_history_index.xml b/app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_history_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_import_busy.xml b/app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_import_busy.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_import_index.xml b/app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_import_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_import_start.xml b/app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_import_start.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_import_validate.xml b/app/code/Magento/ImportExport/view/adminhtml/layout/adminhtml_import_validate.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/view/adminhtml/templates/busy.phtml b/app/code/Magento/ImportExport/view/adminhtml/templates/busy.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/view/adminhtml/templates/export/form/after.phtml b/app/code/Magento/ImportExport/view/adminhtml/templates/export/form/after.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/view/adminhtml/templates/export/form/before.phtml b/app/code/Magento/ImportExport/view/adminhtml/templates/export/form/before.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/view/adminhtml/templates/export/form/filter/after.phtml b/app/code/Magento/ImportExport/view/adminhtml/templates/export/form/filter/after.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/view/adminhtml/templates/import/form/after.phtml b/app/code/Magento/ImportExport/view/adminhtml/templates/import/form/after.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/view/adminhtml/templates/import/form/before.phtml b/app/code/Magento/ImportExport/view/adminhtml/templates/import/form/before.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/view/adminhtml/templates/import/frame/result.phtml b/app/code/Magento/ImportExport/view/adminhtml/templates/import/frame/result.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ImportExport/view/adminhtml/web/css/importexport.css b/app/code/Magento/ImportExport/view/adminhtml/web/css/importexport.css
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/App/Indexer.php b/app/code/Magento/Indexer/App/Indexer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Block/Backend/Container.php b/app/code/Magento/Indexer/Block/Backend/Container.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Block/Backend/Grid/Column/Renderer/Scheduled.php b/app/code/Magento/Indexer/Block/Backend/Grid/Column/Renderer/Scheduled.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Block/Backend/Grid/Column/Renderer/Status.php b/app/code/Magento/Indexer/Block/Backend/Grid/Column/Renderer/Status.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Block/Backend/Grid/Column/Renderer/Updated.php b/app/code/Magento/Indexer/Block/Backend/Grid/Column/Renderer/Updated.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Block/Backend/Grid/ItemsUpdater.php b/app/code/Magento/Indexer/Block/Backend/Grid/ItemsUpdater.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Console/Command/AbstractIndexerCommand.php b/app/code/Magento/Indexer/Console/Command/AbstractIndexerCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Console/Command/AbstractIndexerManageCommand.php b/app/code/Magento/Indexer/Console/Command/AbstractIndexerManageCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Console/Command/IndexerInfoCommand.php b/app/code/Magento/Indexer/Console/Command/IndexerInfoCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Console/Command/IndexerReindexCommand.php b/app/code/Magento/Indexer/Console/Command/IndexerReindexCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Console/Command/IndexerResetStateCommand.php b/app/code/Magento/Indexer/Console/Command/IndexerResetStateCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Console/Command/IndexerSetModeCommand.php b/app/code/Magento/Indexer/Console/Command/IndexerSetModeCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Console/Command/IndexerShowModeCommand.php b/app/code/Magento/Indexer/Console/Command/IndexerShowModeCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Console/Command/IndexerStatusCommand.php b/app/code/Magento/Indexer/Console/Command/IndexerStatusCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Controller/Adminhtml/Indexer.php b/app/code/Magento/Indexer/Controller/Adminhtml/Indexer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Controller/Adminhtml/Indexer/ListAction.php b/app/code/Magento/Indexer/Controller/Adminhtml/Indexer/ListAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Controller/Adminhtml/Indexer/MassChangelog.php b/app/code/Magento/Indexer/Controller/Adminhtml/Indexer/MassChangelog.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Controller/Adminhtml/Indexer/MassOnTheFly.php b/app/code/Magento/Indexer/Controller/Adminhtml/Indexer/MassOnTheFly.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Cron/ClearChangelog.php b/app/code/Magento/Indexer/Cron/ClearChangelog.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Cron/ReindexAllInvalid.php b/app/code/Magento/Indexer/Cron/ReindexAllInvalid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Cron/UpdateMview.php b/app/code/Magento/Indexer/Cron/UpdateMview.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/LICENSE.txt b/app/code/Magento/Indexer/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/LICENSE_AFL.txt b/app/code/Magento/Indexer/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Model/Config.php b/app/code/Magento/Indexer/Model/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Model/Config/Data.php b/app/code/Magento/Indexer/Model/Config/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Model/Indexer.php b/app/code/Magento/Indexer/Model/Indexer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Model/Indexer/Collection.php b/app/code/Magento/Indexer/Model/Indexer/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Model/Indexer/DependencyDecorator.php b/app/code/Magento/Indexer/Model/Indexer/DependencyDecorator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Model/Indexer/State.php b/app/code/Magento/Indexer/Model/Indexer/State.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Model/Message/Invalid.php b/app/code/Magento/Indexer/Model/Message/Invalid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Model/Mview/View/State.php b/app/code/Magento/Indexer/Model/Mview/View/State.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Model/Processor.php b/app/code/Magento/Indexer/Model/Processor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Model/Processor/CleanCache.php b/app/code/Magento/Indexer/Model/Processor/CleanCache.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Model/ResourceModel/AbstractResource.php b/app/code/Magento/Indexer/Model/ResourceModel/AbstractResource.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Model/ResourceModel/Indexer/State.php b/app/code/Magento/Indexer/Model/ResourceModel/Indexer/State.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Model/ResourceModel/Indexer/State/Collection.php b/app/code/Magento/Indexer/Model/ResourceModel/Indexer/State/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Model/ResourceModel/Mview/View/State.php b/app/code/Magento/Indexer/Model/ResourceModel/Mview/View/State.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Model/ResourceModel/Mview/View/State/Collection.php b/app/code/Magento/Indexer/Model/ResourceModel/Mview/View/State/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Model/Source/DataInterface.php b/app/code/Magento/Indexer/Model/Source/DataInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Model/Source/ServiceSource.php b/app/code/Magento/Indexer/Model/Source/ServiceSource.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/README.md b/app/code/Magento/Indexer/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Setup/InstallData.php b/app/code/Magento/Indexer/Setup/InstallData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Setup/InstallSchema.php b/app/code/Magento/Indexer/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Setup/Recurring.php b/app/code/Magento/Indexer/Setup/Recurring.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Setup/RecurringData.php b/app/code/Magento/Indexer/Setup/RecurringData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Test/Unit/App/IndexerTest.php b/app/code/Magento/Indexer/Test/Unit/App/IndexerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Test/Unit/Block/Backend/ContainerTest.php b/app/code/Magento/Indexer/Test/Unit/Block/Backend/ContainerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Test/Unit/Block/Backend/Grid/Column/Renderer/ScheduledTest.php b/app/code/Magento/Indexer/Test/Unit/Block/Backend/Grid/Column/Renderer/ScheduledTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Test/Unit/Block/Backend/Grid/Column/Renderer/StatusTest.php b/app/code/Magento/Indexer/Test/Unit/Block/Backend/Grid/Column/Renderer/StatusTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Test/Unit/Block/Backend/Grid/Column/Renderer/UpdatedTest.php b/app/code/Magento/Indexer/Test/Unit/Block/Backend/Grid/Column/Renderer/UpdatedTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Test/Unit/Block/Backend/Grid/ItemsUpdaterTest.php b/app/code/Magento/Indexer/Test/Unit/Block/Backend/Grid/ItemsUpdaterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Test/Unit/Console/Command/AbstractIndexerCommandCommonSetup.php b/app/code/Magento/Indexer/Test/Unit/Console/Command/AbstractIndexerCommandCommonSetup.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Test/Unit/Console/Command/IndexerInfoCommandTest.php b/app/code/Magento/Indexer/Test/Unit/Console/Command/IndexerInfoCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Test/Unit/Console/Command/IndexerReindexCommandTest.php b/app/code/Magento/Indexer/Test/Unit/Console/Command/IndexerReindexCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Test/Unit/Console/Command/IndexerResetStateCommandTest.php b/app/code/Magento/Indexer/Test/Unit/Console/Command/IndexerResetStateCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Test/Unit/Console/Command/IndexerSetModeCommandTest.php b/app/code/Magento/Indexer/Test/Unit/Console/Command/IndexerSetModeCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Test/Unit/Console/Command/IndexerShowModeCommandTest.php b/app/code/Magento/Indexer/Test/Unit/Console/Command/IndexerShowModeCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Test/Unit/Console/Command/IndexerStatusCommandTest.php b/app/code/Magento/Indexer/Test/Unit/Console/Command/IndexerStatusCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Test/Unit/Controller/Adminhtml/Indexer/ListActionTest.php b/app/code/Magento/Indexer/Test/Unit/Controller/Adminhtml/Indexer/ListActionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Test/Unit/Controller/Adminhtml/Indexer/MassChangelogTest.php b/app/code/Magento/Indexer/Test/Unit/Controller/Adminhtml/Indexer/MassChangelogTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Test/Unit/Controller/Adminhtml/Indexer/MassOnTheFlyTest.php b/app/code/Magento/Indexer/Test/Unit/Controller/Adminhtml/Indexer/MassOnTheFlyTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Test/Unit/Model/CacheContextTest.php b/app/code/Magento/Indexer/Test/Unit/Model/CacheContextTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Test/Unit/Model/Config/DataTest.php b/app/code/Magento/Indexer/Test/Unit/Model/Config/DataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Test/Unit/Model/ConfigTest.php b/app/code/Magento/Indexer/Test/Unit/Model/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Test/Unit/Model/Indexer/AbstractProcessorStub.php b/app/code/Magento/Indexer/Test/Unit/Model/Indexer/AbstractProcessorStub.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Test/Unit/Model/Indexer/AbstractProcessorTest.php b/app/code/Magento/Indexer/Test/Unit/Model/Indexer/AbstractProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Test/Unit/Model/Indexer/CollectionTest.php b/app/code/Magento/Indexer/Test/Unit/Model/Indexer/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Test/Unit/Model/Indexer/DependencyDecoratorTest.php b/app/code/Magento/Indexer/Test/Unit/Model/Indexer/DependencyDecoratorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Test/Unit/Model/Indexer/StateTest.php b/app/code/Magento/Indexer/Test/Unit/Model/Indexer/StateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Test/Unit/Model/IndexerTest.php b/app/code/Magento/Indexer/Test/Unit/Model/IndexerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Test/Unit/Model/Message/InvalidTest.php b/app/code/Magento/Indexer/Test/Unit/Model/Message/InvalidTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Test/Unit/Model/Mview/View/StateTest.php b/app/code/Magento/Indexer/Test/Unit/Model/Mview/View/StateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Test/Unit/Model/Processor/CleanCacheTest.php b/app/code/Magento/Indexer/Test/Unit/Model/Processor/CleanCacheTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Test/Unit/Model/ProcessorTest.php b/app/code/Magento/Indexer/Test/Unit/Model/ProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Test/Unit/Model/ResourceModel/AbstractResourceStub.php b/app/code/Magento/Indexer/Test/Unit/Model/ResourceModel/AbstractResourceStub.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Test/Unit/Model/ResourceModel/AbstractResourceTest.php b/app/code/Magento/Indexer/Test/Unit/Model/ResourceModel/AbstractResourceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Test/Unit/Model/ResourceModel/Indexer/State/CollectionTest.php b/app/code/Magento/Indexer/Test/Unit/Model/ResourceModel/Indexer/State/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Test/Unit/Model/ResourceModel/Indexer/StateTest.php b/app/code/Magento/Indexer/Test/Unit/Model/ResourceModel/Indexer/StateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Test/Unit/Model/ResourceModel/Mview/View/State/CollectionTest.php b/app/code/Magento/Indexer/Test/Unit/Model/ResourceModel/Mview/View/State/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Test/Unit/Model/ResourceModel/Mview/View/StateTest.php b/app/code/Magento/Indexer/Test/Unit/Model/ResourceModel/Mview/View/StateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Test/Unit/Ui/DataProvider/Indexer/DataCollectionTest.php b/app/code/Magento/Indexer/Test/Unit/Ui/DataProvider/Indexer/DataCollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/Ui/DataProvider/Indexer/DataCollection.php b/app/code/Magento/Indexer/Ui/DataProvider/Indexer/DataCollection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/composer.json b/app/code/Magento/Indexer/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/etc/acl.xml b/app/code/Magento/Indexer/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/etc/adminhtml/di.xml b/app/code/Magento/Indexer/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/etc/adminhtml/menu.xml b/app/code/Magento/Indexer/etc/adminhtml/menu.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/etc/adminhtml/routes.xml b/app/code/Magento/Indexer/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/etc/cron_groups.xml b/app/code/Magento/Indexer/etc/cron_groups.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/etc/crontab.xml b/app/code/Magento/Indexer/etc/crontab.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/etc/di.xml b/app/code/Magento/Indexer/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/etc/module.xml b/app/code/Magento/Indexer/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/i18n/en_US.csv b/app/code/Magento/Indexer/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/registration.php b/app/code/Magento/Indexer/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/view/adminhtml/layout/indexer_indexer_list.xml b/app/code/Magento/Indexer/view/adminhtml/layout/indexer_indexer_list.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Indexer/view/adminhtml/layout/indexer_indexer_list_grid.xml b/app/code/Magento/Indexer/view/adminhtml/layout/indexer_indexer_list_grid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/Block/Button.php b/app/code/Magento/InstantPurchase/Block/Button.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/Controller/Button/PlaceOrder.php b/app/code/Magento/InstantPurchase/Controller/Button/PlaceOrder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/CustomerData/InstantPurchase.php b/app/code/Magento/InstantPurchase/CustomerData/InstantPurchase.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/Model/BillingAddressChoose/BillingAddressChooserInterface.php b/app/code/Magento/InstantPurchase/Model/BillingAddressChoose/BillingAddressChooserInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/Model/BillingAddressChoose/DefaultBillingAddressChooser.php b/app/code/Magento/InstantPurchase/Model/BillingAddressChoose/DefaultBillingAddressChooser.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/Model/Config.php b/app/code/Magento/InstantPurchase/Model/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/Model/InstantPurchaseChooser.php b/app/code/Magento/InstantPurchase/Model/InstantPurchaseChooser.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/Model/InstantPurchaseInterface.php b/app/code/Magento/InstantPurchase/Model/InstantPurchaseInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/Model/InstantPurchaseOption.php b/app/code/Magento/InstantPurchase/Model/InstantPurchaseOption.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/Model/InstantPurchaseOptionFactory.php b/app/code/Magento/InstantPurchase/Model/InstantPurchaseOptionFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/Model/InstantPurchaseOptionLoadingFactory.php b/app/code/Magento/InstantPurchase/Model/InstantPurchaseOptionLoadingFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/Model/PaymentMethodChoose/LastCreatedPaymentTokenChooser.php b/app/code/Magento/InstantPurchase/Model/PaymentMethodChoose/LastCreatedPaymentTokenChooser.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/Model/PaymentMethodChoose/PaymentTokenChooserInterface.php b/app/code/Magento/InstantPurchase/Model/PaymentMethodChoose/PaymentTokenChooserInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/Model/PlaceOrder.php b/app/code/Magento/InstantPurchase/Model/PlaceOrder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/Model/QuoteManagement/PaymentConfiguration.php b/app/code/Magento/InstantPurchase/Model/QuoteManagement/PaymentConfiguration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/Model/QuoteManagement/Purchase.php b/app/code/Magento/InstantPurchase/Model/QuoteManagement/Purchase.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/Model/QuoteManagement/QuoteCreation.php b/app/code/Magento/InstantPurchase/Model/QuoteManagement/QuoteCreation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/Model/QuoteManagement/QuoteFilling.php b/app/code/Magento/InstantPurchase/Model/QuoteManagement/QuoteFilling.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/Model/QuoteManagement/ShippingConfiguration.php b/app/code/Magento/InstantPurchase/Model/QuoteManagement/ShippingConfiguration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/Model/ShippingAddressChoose/DefaultShippingAddressChooser.php b/app/code/Magento/InstantPurchase/Model/ShippingAddressChoose/DefaultShippingAddressChooser.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/Model/ShippingAddressChoose/ShippingAddressChooserInterface.php b/app/code/Magento/InstantPurchase/Model/ShippingAddressChoose/ShippingAddressChooserInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/Model/ShippingMethodChoose/CarrierFinder.php b/app/code/Magento/InstantPurchase/Model/ShippingMethodChoose/CarrierFinder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/Model/ShippingMethodChoose/CheapestMethodChooser.php b/app/code/Magento/InstantPurchase/Model/ShippingMethodChoose/CheapestMethodChooser.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/Model/ShippingMethodChoose/CheapestMethodDeferredChooser.php b/app/code/Magento/InstantPurchase/Model/ShippingMethodChoose/CheapestMethodDeferredChooser.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/Model/ShippingMethodChoose/DeferredShippingMethodChooserInterface.php b/app/code/Magento/InstantPurchase/Model/ShippingMethodChoose/DeferredShippingMethodChooserInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/Model/ShippingMethodChoose/DeferredShippingMethodChooserPool.php b/app/code/Magento/InstantPurchase/Model/ShippingMethodChoose/DeferredShippingMethodChooserPool.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/Model/ShippingMethodChoose/ShippingMethodChooserInterface.php b/app/code/Magento/InstantPurchase/Model/ShippingMethodChoose/ShippingMethodChooserInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/Model/Ui/CustomerAddressesFormatter.php b/app/code/Magento/InstantPurchase/Model/Ui/CustomerAddressesFormatter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/Model/Ui/PaymentTokenFormatter.php b/app/code/Magento/InstantPurchase/Model/Ui/PaymentTokenFormatter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/Model/Ui/ShippingMethodFormatter.php b/app/code/Magento/InstantPurchase/Model/Ui/ShippingMethodFormatter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/PaymentMethodIntegration/AvailabilityCheckerInterface.php b/app/code/Magento/InstantPurchase/PaymentMethodIntegration/AvailabilityCheckerInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/PaymentMethodIntegration/Integration.php b/app/code/Magento/InstantPurchase/PaymentMethodIntegration/Integration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/PaymentMethodIntegration/IntegrationFactory.php b/app/code/Magento/InstantPurchase/PaymentMethodIntegration/IntegrationFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/PaymentMethodIntegration/IntegrationsManager.php b/app/code/Magento/InstantPurchase/PaymentMethodIntegration/IntegrationsManager.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/PaymentMethodIntegration/PaymentAdditionalInformationProviderInterface.php b/app/code/Magento/InstantPurchase/PaymentMethodIntegration/PaymentAdditionalInformationProviderInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/PaymentMethodIntegration/PaymentTokenFormatterInterface.php b/app/code/Magento/InstantPurchase/PaymentMethodIntegration/PaymentTokenFormatterInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/PaymentMethodIntegration/SimplePaymentTokenFormatter.php b/app/code/Magento/InstantPurchase/PaymentMethodIntegration/SimplePaymentTokenFormatter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/PaymentMethodIntegration/StaticAdditionalInformationProvider.php b/app/code/Magento/InstantPurchase/PaymentMethodIntegration/StaticAdditionalInformationProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/PaymentMethodIntegration/StaticAvailabilityChecker.php b/app/code/Magento/InstantPurchase/PaymentMethodIntegration/StaticAvailabilityChecker.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/README.md b/app/code/Magento/InstantPurchase/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/composer.json b/app/code/Magento/InstantPurchase/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/etc/adminhtml/system.xml b/app/code/Magento/InstantPurchase/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/etc/config.xml b/app/code/Magento/InstantPurchase/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/etc/di.xml b/app/code/Magento/InstantPurchase/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/etc/frontend/di.xml b/app/code/Magento/InstantPurchase/etc/frontend/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/etc/frontend/routes.xml b/app/code/Magento/InstantPurchase/etc/frontend/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/etc/frontend/sections.xml b/app/code/Magento/InstantPurchase/etc/frontend/sections.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/etc/module.xml b/app/code/Magento/InstantPurchase/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/registration.php b/app/code/Magento/InstantPurchase/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/view/frontend/layout/catalog_product_view.xml b/app/code/Magento/InstantPurchase/view/frontend/layout/catalog_product_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/view/frontend/layout/catalog_product_view_type_bundle.xml b/app/code/Magento/InstantPurchase/view/frontend/layout/catalog_product_view_type_bundle.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/view/frontend/templates/button.phtml b/app/code/Magento/InstantPurchase/view/frontend/templates/button.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/view/frontend/web/js/view/instant-purchase.js b/app/code/Magento/InstantPurchase/view/frontend/web/js/view/instant-purchase.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/view/frontend/web/template/confirmation.html b/app/code/Magento/InstantPurchase/view/frontend/web/template/confirmation.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/InstantPurchase/view/frontend/web/template/instant-purchase.html b/app/code/Magento/InstantPurchase/view/frontend/web/template/instant-purchase.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Api/AdminTokenServiceInterface.php b/app/code/Magento/Integration/Api/AdminTokenServiceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Api/AuthorizationServiceInterface.php b/app/code/Magento/Integration/Api/AuthorizationServiceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Api/CustomerTokenServiceInterface.php b/app/code/Magento/Integration/Api/CustomerTokenServiceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Api/IntegrationServiceInterface.php b/app/code/Magento/Integration/Api/IntegrationServiceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Api/OauthServiceInterface.php b/app/code/Magento/Integration/Api/OauthServiceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Block/Adminhtml/Integration.php b/app/code/Magento/Integration/Block/Adminhtml/Integration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Block/Adminhtml/Integration/Activate/Permissions/Tab/Webapi.php b/app/code/Magento/Integration/Block/Adminhtml/Integration/Activate/Permissions/Tab/Webapi.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Block/Adminhtml/Integration/Activate/Permissions/Tabs.php b/app/code/Magento/Integration/Block/Adminhtml/Integration/Activate/Permissions/Tabs.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Block/Adminhtml/Integration/Edit.php b/app/code/Magento/Integration/Block/Adminhtml/Integration/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Block/Adminhtml/Integration/Edit/Form.php b/app/code/Magento/Integration/Block/Adminhtml/Integration/Edit/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Block/Adminhtml/Integration/Edit/Tab/Info.php b/app/code/Magento/Integration/Block/Adminhtml/Integration/Edit/Tab/Info.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Block/Adminhtml/Integration/Edit/Tab/Webapi.php b/app/code/Magento/Integration/Block/Adminhtml/Integration/Edit/Tab/Webapi.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Block/Adminhtml/Integration/Edit/Tabs.php b/app/code/Magento/Integration/Block/Adminhtml/Integration/Edit/Tabs.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Block/Adminhtml/Integration/Grid.php b/app/code/Magento/Integration/Block/Adminhtml/Integration/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Block/Adminhtml/Integration/Tokens.php b/app/code/Magento/Integration/Block/Adminhtml/Integration/Tokens.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Button.php b/app/code/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Button.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Button/Delete.php b/app/code/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Button/Delete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Button/Edit.php b/app/code/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Button/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Link.php b/app/code/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Link.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Link/Activate.php b/app/code/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Link/Activate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Name.php b/app/code/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Name.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Controller/Adminhtml/Integration.php b/app/code/Magento/Integration/Controller/Adminhtml/Integration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Controller/Adminhtml/Integration/Delete.php b/app/code/Magento/Integration/Controller/Adminhtml/Integration/Delete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Controller/Adminhtml/Integration/Edit.php b/app/code/Magento/Integration/Controller/Adminhtml/Integration/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Controller/Adminhtml/Integration/Grid.php b/app/code/Magento/Integration/Controller/Adminhtml/Integration/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Controller/Adminhtml/Integration/Index.php b/app/code/Magento/Integration/Controller/Adminhtml/Integration/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Controller/Adminhtml/Integration/LoginSuccessCallback.php b/app/code/Magento/Integration/Controller/Adminhtml/Integration/LoginSuccessCallback.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Controller/Adminhtml/Integration/NewAction.php b/app/code/Magento/Integration/Controller/Adminhtml/Integration/NewAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Controller/Adminhtml/Integration/PermissionsDialog.php b/app/code/Magento/Integration/Controller/Adminhtml/Integration/PermissionsDialog.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Controller/Adminhtml/Integration/Save.php b/app/code/Magento/Integration/Controller/Adminhtml/Integration/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Controller/Adminhtml/Integration/TokensDialog.php b/app/code/Magento/Integration/Controller/Adminhtml/Integration/TokensDialog.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Controller/Adminhtml/Integration/TokensExchange.php b/app/code/Magento/Integration/Controller/Adminhtml/Integration/TokensExchange.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Controller/Token/Access.php b/app/code/Magento/Integration/Controller/Token/Access.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Controller/Token/Request.php b/app/code/Magento/Integration/Controller/Token/Request.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Cron/CleanExpiredAuthenticationFailures.php b/app/code/Magento/Integration/Cron/CleanExpiredAuthenticationFailures.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Cron/CleanExpiredTokens.php b/app/code/Magento/Integration/Cron/CleanExpiredTokens.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Helper/Data.php b/app/code/Magento/Integration/Helper/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Helper/Oauth/Data.php b/app/code/Magento/Integration/Helper/Oauth/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/LICENSE.txt b/app/code/Magento/Integration/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/LICENSE_AFL.txt b/app/code/Magento/Integration/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Model/AdminTokenService.php b/app/code/Magento/Integration/Model/AdminTokenService.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Model/AuthorizationService.php b/app/code/Magento/Integration/Model/AuthorizationService.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Model/Cache/Type.php b/app/code/Magento/Integration/Model/Cache/Type.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Model/Cache/TypeConsolidated.php b/app/code/Magento/Integration/Model/Cache/TypeConsolidated.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Model/Cache/TypeIntegration.php b/app/code/Magento/Integration/Model/Cache/TypeIntegration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Model/Config.php b/app/code/Magento/Integration/Model/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Model/Config/Consolidated/Converter.php b/app/code/Magento/Integration/Model/Config/Consolidated/Converter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Model/Config/Consolidated/Reader.php b/app/code/Magento/Integration/Model/Config/Consolidated/Reader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Model/Config/Consolidated/SchemaLocator.php b/app/code/Magento/Integration/Model/Config/Consolidated/SchemaLocator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Model/Config/Converter.php b/app/code/Magento/Integration/Model/Config/Converter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Model/Config/Integration/Converter.php b/app/code/Magento/Integration/Model/Config/Integration/Converter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Model/Config/Integration/Reader.php b/app/code/Magento/Integration/Model/Config/Integration/Reader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Model/Config/Integration/SchemaLocator.php b/app/code/Magento/Integration/Model/Config/Integration/SchemaLocator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Model/Config/Reader.php b/app/code/Magento/Integration/Model/Config/Reader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Model/Config/SchemaLocator.php b/app/code/Magento/Integration/Model/Config/SchemaLocator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Model/ConfigBasedIntegrationManager.php b/app/code/Magento/Integration/Model/ConfigBasedIntegrationManager.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Model/ConsolidatedConfig.php b/app/code/Magento/Integration/Model/ConsolidatedConfig.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Model/CredentialsValidator.php b/app/code/Magento/Integration/Model/CredentialsValidator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Model/CustomerTokenService.php b/app/code/Magento/Integration/Model/CustomerTokenService.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Model/Integration.php b/app/code/Magento/Integration/Model/Integration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Model/Integration/Source/Status.php b/app/code/Magento/Integration/Model/Integration/Source/Status.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Model/IntegrationConfig.php b/app/code/Magento/Integration/Model/IntegrationConfig.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Model/IntegrationService.php b/app/code/Magento/Integration/Model/IntegrationService.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Model/Message/RecreatedIntegration.php b/app/code/Magento/Integration/Model/Message/RecreatedIntegration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Model/Oauth/Consumer.php b/app/code/Magento/Integration/Model/Oauth/Consumer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Model/Oauth/Consumer/Validator/KeyLength.php b/app/code/Magento/Integration/Model/Oauth/Consumer/Validator/KeyLength.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Model/Oauth/Nonce.php b/app/code/Magento/Integration/Model/Oauth/Nonce.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Model/Oauth/Nonce/Generator.php b/app/code/Magento/Integration/Model/Oauth/Nonce/Generator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Model/Oauth/Token.php b/app/code/Magento/Integration/Model/Oauth/Token.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Model/Oauth/Token/Provider.php b/app/code/Magento/Integration/Model/Oauth/Token/Provider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Model/Oauth/Token/RequestLog/Config.php b/app/code/Magento/Integration/Model/Oauth/Token/RequestLog/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Model/Oauth/Token/RequestLog/ReaderInterface.php b/app/code/Magento/Integration/Model/Oauth/Token/RequestLog/ReaderInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Model/Oauth/Token/RequestLog/WriterInterface.php b/app/code/Magento/Integration/Model/Oauth/Token/RequestLog/WriterInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Model/Oauth/Token/RequestThrottler.php b/app/code/Magento/Integration/Model/Oauth/Token/RequestThrottler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Model/OauthService.php b/app/code/Magento/Integration/Model/OauthService.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Model/Plugin/Integration.php b/app/code/Magento/Integration/Model/Plugin/Integration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Model/ResourceModel/Integration.php b/app/code/Magento/Integration/Model/ResourceModel/Integration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Model/ResourceModel/Integration/Collection.php b/app/code/Magento/Integration/Model/ResourceModel/Integration/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Model/ResourceModel/Oauth/Consumer.php b/app/code/Magento/Integration/Model/ResourceModel/Oauth/Consumer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Model/ResourceModel/Oauth/Consumer/Collection.php b/app/code/Magento/Integration/Model/ResourceModel/Oauth/Consumer/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Model/ResourceModel/Oauth/Nonce.php b/app/code/Magento/Integration/Model/ResourceModel/Oauth/Nonce.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Model/ResourceModel/Oauth/Nonce/Collection.php b/app/code/Magento/Integration/Model/ResourceModel/Oauth/Nonce/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Model/ResourceModel/Oauth/Token.php b/app/code/Magento/Integration/Model/ResourceModel/Oauth/Token.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Model/ResourceModel/Oauth/Token/Collection.php b/app/code/Magento/Integration/Model/ResourceModel/Oauth/Token/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Model/ResourceModel/Oauth/Token/RequestLog.php b/app/code/Magento/Integration/Model/ResourceModel/Oauth/Token/RequestLog.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Plugin/Model/AdminUser.php b/app/code/Magento/Integration/Plugin/Model/AdminUser.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Plugin/Model/CustomerUser.php b/app/code/Magento/Integration/Plugin/Model/CustomerUser.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/README.md b/app/code/Magento/Integration/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Setup/InstallSchema.php b/app/code/Magento/Integration/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Setup/Recurring.php b/app/code/Magento/Integration/Setup/Recurring.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Setup/UpgradeData.php b/app/code/Magento/Integration/Setup/UpgradeData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Setup/UpgradeSchema.php b/app/code/Magento/Integration/Setup/UpgradeSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Block/Adminhtml/Integration/Edit/Tab/InfoTest.php b/app/code/Magento/Integration/Test/Unit/Block/Adminhtml/Integration/Edit/Tab/InfoTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Block/Adminhtml/Integration/Edit/Tab/WebapiTest.php b/app/code/Magento/Integration/Test/Unit/Block/Adminhtml/Integration/Edit/Tab/WebapiTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Block/Adminhtml/Widget/Grid/Column/Renderer/ButtonTest.php b/app/code/Magento/Integration/Test/Unit/Block/Adminhtml/Widget/Grid/Column/Renderer/ButtonTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Block/Adminhtml/Widget/Grid/Column/Renderer/LinkTest.php b/app/code/Magento/Integration/Test/Unit/Block/Adminhtml/Widget/Grid/Column/Renderer/LinkTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Block/Adminhtml/Widget/Grid/Column/Renderer/NameTest.php b/app/code/Magento/Integration/Test/Unit/Block/Adminhtml/Widget/Grid/Column/Renderer/NameTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/DeleteTest.php b/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/DeleteTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/EditTest.php b/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/EditTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/IndexTest.php b/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/IndexTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/NewActionTest.php b/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/NewActionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/PermissionsDialogTest.php b/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/PermissionsDialogTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/SaveTest.php b/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/SaveTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/TokensDialogTest.php b/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/TokensDialogTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/TokensExchangeTest.php b/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/Integration/TokensExchangeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/IntegrationTest.php b/app/code/Magento/Integration/Test/Unit/Controller/Adminhtml/IntegrationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Controller/Token/AccessTest.php b/app/code/Magento/Integration/Test/Unit/Controller/Token/AccessTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Controller/Token/RequestTest.php b/app/code/Magento/Integration/Test/Unit/Controller/Token/RequestTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Helper/DataTest.php b/app/code/Magento/Integration/Test/Unit/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Helper/Oauth/ConsumerTest.php b/app/code/Magento/Integration/Test/Unit/Helper/Oauth/ConsumerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Helper/Oauth/DataTest.php b/app/code/Magento/Integration/Test/Unit/Helper/Oauth/DataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Helper/Oauth/OauthTest.php b/app/code/Magento/Integration/Test/Unit/Helper/Oauth/OauthTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Helper/_files/acl-map.php b/app/code/Magento/Integration/Test/Unit/Helper/_files/acl-map.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Helper/_files/acl.php b/app/code/Magento/Integration/Test/Unit/Helper/_files/acl.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Model/AdminTokenServiceTest.php b/app/code/Magento/Integration/Test/Unit/Model/AdminTokenServiceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Model/AuthorizationServiceTest.php b/app/code/Magento/Integration/Test/Unit/Model/AuthorizationServiceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Model/Config/Consolidated/ConverterTest.php b/app/code/Magento/Integration/Test/Unit/Model/Config/Consolidated/ConverterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Model/Config/Consolidated/SchemaLocatorTest.php b/app/code/Magento/Integration/Test/Unit/Model/Config/Consolidated/SchemaLocatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Model/Config/Consolidated/XsdTest.php b/app/code/Magento/Integration/Test/Unit/Model/Config/Consolidated/XsdTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Model/Config/Consolidated/_files/acl.php b/app/code/Magento/Integration/Test/Unit/Model/Config/Consolidated/_files/acl.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Model/Config/Consolidated/_files/integration.php b/app/code/Magento/Integration/Test/Unit/Model/Config/Consolidated/_files/integration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Model/Config/Consolidated/_files/integration.xml b/app/code/Magento/Integration/Test/Unit/Model/Config/Consolidated/_files/integration.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Model/Config/ConverterTest.php b/app/code/Magento/Integration/Test/Unit/Model/Config/ConverterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Model/Config/Integration/ConverterTest.php b/app/code/Magento/Integration/Test/Unit/Model/Config/Integration/ConverterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Model/Config/Integration/SchemaLocatorTest.php b/app/code/Magento/Integration/Test/Unit/Model/Config/Integration/SchemaLocatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Model/Config/Integration/XsdTest.php b/app/code/Magento/Integration/Test/Unit/Model/Config/Integration/XsdTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Model/Config/Integration/_files/api.php b/app/code/Magento/Integration/Test/Unit/Model/Config/Integration/_files/api.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Model/Config/Integration/_files/api.xml b/app/code/Magento/Integration/Test/Unit/Model/Config/Integration/_files/api.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Model/Config/SchemaLocatorTest.php b/app/code/Magento/Integration/Test/Unit/Model/Config/SchemaLocatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Model/Config/XsdTest.php b/app/code/Magento/Integration/Test/Unit/Model/Config/XsdTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Model/Config/_files/config.xml b/app/code/Magento/Integration/Test/Unit/Model/Config/_files/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Model/Config/_files/integration.php b/app/code/Magento/Integration/Test/Unit/Model/Config/_files/integration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Model/ConsolidatedConfigTest.php b/app/code/Magento/Integration/Test/Unit/Model/ConsolidatedConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Model/CredentialsValidatorTest.php b/app/code/Magento/Integration/Test/Unit/Model/CredentialsValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Model/CustomerTokenServiceTest.php b/app/code/Magento/Integration/Test/Unit/Model/CustomerTokenServiceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Model/Integration/Source/StatusTest.php b/app/code/Magento/Integration/Test/Unit/Model/Integration/Source/StatusTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Model/IntegrationConfigTest.php b/app/code/Magento/Integration/Test/Unit/Model/IntegrationConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Model/IntegrationServiceTest.php b/app/code/Magento/Integration/Test/Unit/Model/IntegrationServiceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Model/IntegrationTest.php b/app/code/Magento/Integration/Test/Unit/Model/IntegrationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Model/ManagerTest.php b/app/code/Magento/Integration/Test/Unit/Model/ManagerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Model/Oauth/Consumer/Validator/KeyLengthTest.php b/app/code/Magento/Integration/Test/Unit/Model/Oauth/Consumer/Validator/KeyLengthTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Model/Oauth/ConsumerTest.php b/app/code/Magento/Integration/Test/Unit/Model/Oauth/ConsumerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Model/Oauth/NonceTest.php b/app/code/Magento/Integration/Test/Unit/Model/Oauth/NonceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Model/Oauth/Token/ProviderTest.php b/app/code/Magento/Integration/Test/Unit/Model/Oauth/Token/ProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Model/Oauth/TokenTest.php b/app/code/Magento/Integration/Test/Unit/Model/Oauth/TokenTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Model/OauthServiceTest.php b/app/code/Magento/Integration/Test/Unit/Model/OauthServiceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Model/Plugin/IntegrationTest.php b/app/code/Magento/Integration/Test/Unit/Model/Plugin/IntegrationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Model/ResourceModel/Integration/CollectionTest.php b/app/code/Magento/Integration/Test/Unit/Model/ResourceModel/Integration/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Model/ResourceModel/IntegrationTest.php b/app/code/Magento/Integration/Test/Unit/Model/ResourceModel/IntegrationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Model/ResourceModel/Oauth/ConsumerTest.php b/app/code/Magento/Integration/Test/Unit/Model/ResourceModel/Oauth/ConsumerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Model/ResourceModel/Oauth/NonceTest.php b/app/code/Magento/Integration/Test/Unit/Model/ResourceModel/Oauth/NonceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Model/ResourceModel/Oauth/Token/CollectionTest.php b/app/code/Magento/Integration/Test/Unit/Model/ResourceModel/Oauth/Token/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Model/ResourceModel/Oauth/TokenTest.php b/app/code/Magento/Integration/Test/Unit/Model/ResourceModel/Oauth/TokenTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/Test/Unit/Oauth/OauthTest.php b/app/code/Magento/Integration/Test/Unit/Oauth/OauthTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/composer.json b/app/code/Magento/Integration/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/etc/acl.xml b/app/code/Magento/Integration/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/etc/adminhtml/di.xml b/app/code/Magento/Integration/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/etc/adminhtml/menu.xml b/app/code/Magento/Integration/etc/adminhtml/menu.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/etc/adminhtml/routes.xml b/app/code/Magento/Integration/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/etc/adminhtml/system.xml b/app/code/Magento/Integration/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/etc/cache.xml b/app/code/Magento/Integration/etc/cache.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/etc/config.xml b/app/code/Magento/Integration/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/etc/crontab.xml b/app/code/Magento/Integration/etc/crontab.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/etc/di.xml b/app/code/Magento/Integration/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/etc/frontend/routes.xml b/app/code/Magento/Integration/etc/frontend/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/etc/integration/api.xsd b/app/code/Magento/Integration/etc/integration/api.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/etc/integration/config.xsd b/app/code/Magento/Integration/etc/integration/config.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/etc/integration/integration.xsd b/app/code/Magento/Integration/etc/integration/integration.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/etc/integration/integration_base.xsd b/app/code/Magento/Integration/etc/integration/integration_base.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/etc/integration/integration_file.xsd b/app/code/Magento/Integration/etc/integration/integration_file.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/etc/module.xml b/app/code/Magento/Integration/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/etc/webapi.xml b/app/code/Magento/Integration/etc/webapi.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/i18n/en_US.csv b/app/code/Magento/Integration/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/registration.php b/app/code/Magento/Integration/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_edit.xml b/app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_edit.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_grid.xml b/app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_grid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_grid_block.xml b/app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_grid_block.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_index.xml b/app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_new.xml b/app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_new.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_permissionsdialog.xml b/app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_permissionsdialog.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_tokensdialog.xml b/app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_tokensdialog.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_tokensexchange.xml b/app/code/Magento/Integration/view/adminhtml/layout/adminhtml_integration_tokensexchange.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/view/adminhtml/requirejs-config.js b/app/code/Magento/Integration/view/adminhtml/requirejs-config.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/view/adminhtml/templates/integration/activate/permissions.phtml b/app/code/Magento/Integration/view/adminhtml/templates/integration/activate/permissions.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/view/adminhtml/templates/integration/activate/permissions/tab/webapi.phtml b/app/code/Magento/Integration/view/adminhtml/templates/integration/activate/permissions/tab/webapi.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/view/adminhtml/templates/integration/popup_container.phtml b/app/code/Magento/Integration/view/adminhtml/templates/integration/popup_container.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/view/adminhtml/templates/integration/tokens_exchange.phtml b/app/code/Magento/Integration/view/adminhtml/templates/integration/tokens_exchange.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/view/adminhtml/templates/resourcetree.phtml b/app/code/Magento/Integration/view/adminhtml/templates/resourcetree.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Integration/view/adminhtml/web/js/integration.js b/app/code/Magento/Integration/view/adminhtml/web/js/integration.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/LayeredNavigation/Block/Navigation.php b/app/code/Magento/LayeredNavigation/Block/Navigation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/LayeredNavigation/Block/Navigation/FilterRenderer.php b/app/code/Magento/LayeredNavigation/Block/Navigation/FilterRenderer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/LayeredNavigation/Block/Navigation/FilterRendererInterface.php b/app/code/Magento/LayeredNavigation/Block/Navigation/FilterRendererInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/LayeredNavigation/Block/Navigation/State.php b/app/code/Magento/LayeredNavigation/Block/Navigation/State.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/LayeredNavigation/LICENSE.txt b/app/code/Magento/LayeredNavigation/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/LayeredNavigation/LICENSE_AFL.txt b/app/code/Magento/LayeredNavigation/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/LayeredNavigation/Model/Aggregation/Status.php b/app/code/Magento/LayeredNavigation/Model/Aggregation/Status.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/LayeredNavigation/Model/Attribute/Source/FilterableOptions.php b/app/code/Magento/LayeredNavigation/Model/Attribute/Source/FilterableOptions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/LayeredNavigation/Observer/Edit/Tab/Front/ProductAttributeFormBuildFrontTabObserver.php b/app/code/Magento/LayeredNavigation/Observer/Edit/Tab/Front/ProductAttributeFormBuildFrontTabObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/LayeredNavigation/Observer/Grid/ProductAttributeGridBuildObserver.php b/app/code/Magento/LayeredNavigation/Observer/Grid/ProductAttributeGridBuildObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/LayeredNavigation/README.md b/app/code/Magento/LayeredNavigation/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/LayeredNavigation/Test/Unit/Block/NavigationTest.php b/app/code/Magento/LayeredNavigation/Test/Unit/Block/NavigationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/LayeredNavigation/Test/Unit/Model/Aggregation/StatusTest.php b/app/code/Magento/LayeredNavigation/Test/Unit/Model/Aggregation/StatusTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/LayeredNavigation/composer.json b/app/code/Magento/LayeredNavigation/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/LayeredNavigation/etc/adminhtml/events.xml b/app/code/Magento/LayeredNavigation/etc/adminhtml/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/LayeredNavigation/etc/adminhtml/system.xml b/app/code/Magento/LayeredNavigation/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/LayeredNavigation/etc/config.xml b/app/code/Magento/LayeredNavigation/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/LayeredNavigation/etc/di.xml b/app/code/Magento/LayeredNavigation/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/LayeredNavigation/etc/frontend/di.xml b/app/code/Magento/LayeredNavigation/etc/frontend/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/LayeredNavigation/etc/module.xml b/app/code/Magento/LayeredNavigation/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/LayeredNavigation/i18n/en_US.csv b/app/code/Magento/LayeredNavigation/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/LayeredNavigation/registration.php b/app/code/Magento/LayeredNavigation/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/LayeredNavigation/view/adminhtml/ui_component/product_attribute_add_form.xml b/app/code/Magento/LayeredNavigation/view/adminhtml/ui_component/product_attribute_add_form.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/LayeredNavigation/view/adminhtml/ui_component/product_attributes_grid.xml b/app/code/Magento/LayeredNavigation/view/adminhtml/ui_component/product_attributes_grid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/LayeredNavigation/view/adminhtml/ui_component/product_attributes_listing.xml b/app/code/Magento/LayeredNavigation/view/adminhtml/ui_component/product_attributes_listing.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/LayeredNavigation/view/frontend/layout/catalog_category_view_type_layered.xml b/app/code/Magento/LayeredNavigation/view/frontend/layout/catalog_category_view_type_layered.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/LayeredNavigation/view/frontend/layout/catalog_category_view_type_layered_without_children.xml b/app/code/Magento/LayeredNavigation/view/frontend/layout/catalog_category_view_type_layered_without_children.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/LayeredNavigation/view/frontend/layout/catalogsearch_result_index.xml b/app/code/Magento/LayeredNavigation/view/frontend/layout/catalogsearch_result_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/LayeredNavigation/view/frontend/page_layout/1column.xml b/app/code/Magento/LayeredNavigation/view/frontend/page_layout/1column.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/LayeredNavigation/view/frontend/page_layout/2columns-left.xml b/app/code/Magento/LayeredNavigation/view/frontend/page_layout/2columns-left.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/LayeredNavigation/view/frontend/page_layout/2columns-right.xml b/app/code/Magento/LayeredNavigation/view/frontend/page_layout/2columns-right.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/LayeredNavigation/view/frontend/page_layout/3columns.xml b/app/code/Magento/LayeredNavigation/view/frontend/page_layout/3columns.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/LayeredNavigation/view/frontend/page_layout/empty.xml b/app/code/Magento/LayeredNavigation/view/frontend/page_layout/empty.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/LayeredNavigation/view/frontend/templates/layer/filter.phtml b/app/code/Magento/LayeredNavigation/view/frontend/templates/layer/filter.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/LayeredNavigation/view/frontend/templates/layer/state.phtml b/app/code/Magento/LayeredNavigation/view/frontend/templates/layer/state.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/LayeredNavigation/view/frontend/templates/layer/view.phtml b/app/code/Magento/LayeredNavigation/view/frontend/templates/layer/view.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Marketplace/Block/Index.php b/app/code/Magento/Marketplace/Block/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Marketplace/Block/Partners.php b/app/code/Magento/Marketplace/Block/Partners.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Marketplace/Controller/Adminhtml/Index.php b/app/code/Magento/Marketplace/Controller/Adminhtml/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Marketplace/Controller/Adminhtml/Index/Index.php b/app/code/Magento/Marketplace/Controller/Adminhtml/Index/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Marketplace/Controller/Adminhtml/Partners.php b/app/code/Magento/Marketplace/Controller/Adminhtml/Partners.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Marketplace/Controller/Adminhtml/Partners/Index.php b/app/code/Magento/Marketplace/Controller/Adminhtml/Partners/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Marketplace/Helper/Cache.php b/app/code/Magento/Marketplace/Helper/Cache.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Marketplace/LICENSE.txt b/app/code/Magento/Marketplace/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Marketplace/LICENSE_AFL.txt b/app/code/Magento/Marketplace/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Marketplace/Model/Partners.php b/app/code/Magento/Marketplace/Model/Partners.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Marketplace/README.md b/app/code/Magento/Marketplace/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Marketplace/Test/Unit/Block/PartnersTest.php b/app/code/Magento/Marketplace/Test/Unit/Block/PartnersTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Marketplace/Test/Unit/Controller/Index/IndexTest.php b/app/code/Magento/Marketplace/Test/Unit/Controller/Index/IndexTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Marketplace/Test/Unit/Controller/Partners/IndexTest.php b/app/code/Magento/Marketplace/Test/Unit/Controller/Partners/IndexTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Marketplace/Test/Unit/Helper/CacheTest.php b/app/code/Magento/Marketplace/Test/Unit/Helper/CacheTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Marketplace/Test/Unit/Model/PartnersTest.php b/app/code/Magento/Marketplace/Test/Unit/Model/PartnersTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Marketplace/composer.json b/app/code/Magento/Marketplace/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Marketplace/etc/adminhtml/menu.xml b/app/code/Magento/Marketplace/etc/adminhtml/menu.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Marketplace/etc/adminhtml/routes.xml b/app/code/Magento/Marketplace/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Marketplace/etc/module.xml b/app/code/Magento/Marketplace/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Marketplace/i18n/en_US.csv b/app/code/Magento/Marketplace/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Marketplace/registration.php b/app/code/Magento/Marketplace/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Marketplace/view/adminhtml/layout/marketplace_index_index.xml b/app/code/Magento/Marketplace/view/adminhtml/layout/marketplace_index_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Marketplace/view/adminhtml/layout/marketplace_partners_index.xml b/app/code/Magento/Marketplace/view/adminhtml/layout/marketplace_partners_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Marketplace/view/adminhtml/templates/index.phtml b/app/code/Magento/Marketplace/view/adminhtml/templates/index.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Marketplace/view/adminhtml/templates/partners.phtml b/app/code/Magento/Marketplace/view/adminhtml/templates/partners.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Marketplace/view/adminhtml/web/default.js b/app/code/Magento/Marketplace/view/adminhtml/web/default.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Marketplace/view/adminhtml/web/partners/images/magento-marketplace.svg b/app/code/Magento/Marketplace/view/adminhtml/web/partners/images/magento-marketplace.svg
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/App/Media.php b/app/code/Magento/MediaStorage/App/Media.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/Block/System/Config/System/Storage/Media/Synchronize.php b/app/code/Magento/MediaStorage/Block/System/Config/System/Storage/Media/Synchronize.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/Controller/Adminhtml/System/Config/System/Storage.php b/app/code/Magento/MediaStorage/Controller/Adminhtml/System/Config/System/Storage.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/Controller/Adminhtml/System/Config/System/Storage/Status.php b/app/code/Magento/MediaStorage/Controller/Adminhtml/System/Config/System/Storage/Status.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/Controller/Adminhtml/System/Config/System/Storage/Synchronize.php b/app/code/Magento/MediaStorage/Controller/Adminhtml/System/Config/System/Storage/Synchronize.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/Helper/File/Media.php b/app/code/Magento/MediaStorage/Helper/File/Media.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/Helper/File/Storage.php b/app/code/Magento/MediaStorage/Helper/File/Storage.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/Helper/File/Storage/Database.php b/app/code/Magento/MediaStorage/Helper/File/Storage/Database.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/LICENSE.txt b/app/code/Magento/MediaStorage/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/LICENSE_AFL.txt b/app/code/Magento/MediaStorage/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/Model/Asset/Plugin/CleanMergedJsCss.php b/app/code/Magento/MediaStorage/Model/Asset/Plugin/CleanMergedJsCss.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/Model/Config/Backend/Storage/Media/Database.php b/app/code/Magento/MediaStorage/Model/Config/Backend/Storage/Media/Database.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/Model/Config/Source/Storage/Media/Database.php b/app/code/Magento/MediaStorage/Model/Config/Source/Storage/Media/Database.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/Model/Config/Source/Storage/Media/Storage.php b/app/code/Magento/MediaStorage/Model/Config/Source/Storage/Media/Storage.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/Model/File/Storage.php b/app/code/Magento/MediaStorage/Model/File/Storage.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/Model/File/Storage/Config.php b/app/code/Magento/MediaStorage/Model/File/Storage/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/Model/File/Storage/Database.php b/app/code/Magento/MediaStorage/Model/File/Storage/Database.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/Model/File/Storage/Database/AbstractDatabase.php b/app/code/Magento/MediaStorage/Model/File/Storage/Database/AbstractDatabase.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/Model/File/Storage/Directory/Database.php b/app/code/Magento/MediaStorage/Model/File/Storage/Directory/Database.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/Model/File/Storage/File.php b/app/code/Magento/MediaStorage/Model/File/Storage/File.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/Model/File/Storage/Flag.php b/app/code/Magento/MediaStorage/Model/File/Storage/Flag.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/Model/File/Storage/Request.php b/app/code/Magento/MediaStorage/Model/File/Storage/Request.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/Model/File/Storage/Response.php b/app/code/Magento/MediaStorage/Model/File/Storage/Response.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/Model/File/Storage/Synchronization.php b/app/code/Magento/MediaStorage/Model/File/Storage/Synchronization.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/Model/File/Uploader.php b/app/code/Magento/MediaStorage/Model/File/Uploader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/Model/File/Validator/AvailablePath.php b/app/code/Magento/MediaStorage/Model/File/Validator/AvailablePath.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/Model/File/Validator/NotProtectedExtension.php b/app/code/Magento/MediaStorage/Model/File/Validator/NotProtectedExtension.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/Model/ResourceModel/File/Storage/AbstractStorage.php b/app/code/Magento/MediaStorage/Model/ResourceModel/File/Storage/AbstractStorage.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/Model/ResourceModel/File/Storage/Database.php b/app/code/Magento/MediaStorage/Model/ResourceModel/File/Storage/Database.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/Model/ResourceModel/File/Storage/Directory/Database.php b/app/code/Magento/MediaStorage/Model/ResourceModel/File/Storage/Directory/Database.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/Model/ResourceModel/File/Storage/File.php b/app/code/Magento/MediaStorage/Model/ResourceModel/File/Storage/File.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/README.md b/app/code/Magento/MediaStorage/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/Test/Unit/App/MediaTest.php b/app/code/Magento/MediaStorage/Test/Unit/App/MediaTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/Test/Unit/Helper/File/MediaTest.php b/app/code/Magento/MediaStorage/Test/Unit/Helper/File/MediaTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/Test/Unit/Helper/File/Storage/DatabaseTest.php b/app/code/Magento/MediaStorage/Test/Unit/Helper/File/Storage/DatabaseTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/Test/Unit/Helper/File/StorageTest.php b/app/code/Magento/MediaStorage/Test/Unit/Helper/File/StorageTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/Test/Unit/Model/Asset/Plugin/CleanMergedJsCssTest.php b/app/code/Magento/MediaStorage/Test/Unit/Model/Asset/Plugin/CleanMergedJsCssTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/Test/Unit/Model/Config/Source/Storage/Media/DatabaseTest.php b/app/code/Magento/MediaStorage/Test/Unit/Model/Config/Source/Storage/Media/DatabaseTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/Test/Unit/Model/File/Storage/ConfigTest.php b/app/code/Magento/MediaStorage/Test/Unit/Model/File/Storage/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/Test/Unit/Model/File/Storage/Directory/DatabaseTest.php b/app/code/Magento/MediaStorage/Test/Unit/Model/File/Storage/Directory/DatabaseTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/Test/Unit/Model/File/Storage/MediaTest.php b/app/code/Magento/MediaStorage/Test/Unit/Model/File/Storage/MediaTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/Test/Unit/Model/File/Storage/RequestTest.php b/app/code/Magento/MediaStorage/Test/Unit/Model/File/Storage/RequestTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/Test/Unit/Model/File/Storage/SynchronizationTest.php b/app/code/Magento/MediaStorage/Test/Unit/Model/File/Storage/SynchronizationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/Test/Unit/Model/File/Storage/_files/config.xml b/app/code/Magento/MediaStorage/Test/Unit/Model/File/Storage/_files/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/Test/Unit/Model/ResourceModel/File/Storage/FileTest.php b/app/code/Magento/MediaStorage/Test/Unit/Model/ResourceModel/File/Storage/FileTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/composer.json b/app/code/Magento/MediaStorage/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/etc/adminhtml/routes.xml b/app/code/Magento/MediaStorage/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/etc/adminhtml/system.xml b/app/code/Magento/MediaStorage/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/etc/di.xml b/app/code/Magento/MediaStorage/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/etc/module.xml b/app/code/Magento/MediaStorage/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/i18n/en_US.csv b/app/code/Magento/MediaStorage/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/registration.php b/app/code/Magento/MediaStorage/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/MediaStorage/view/adminhtml/templates/system/config/system/storage/media/synchronize.phtml b/app/code/Magento/MediaStorage/view/adminhtml/templates/system/config/system/storage/media/synchronize.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/Api/Data/ProductRender/MsrpPriceInfoInterface.php b/app/code/Magento/Msrp/Api/Data/ProductRender/MsrpPriceInfoInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/Block/Adminhtml/Product/Helper/Form/Type.php b/app/code/Magento/Msrp/Block/Adminhtml/Product/Helper/Form/Type.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/Block/Adminhtml/Product/Helper/Form/Type/Price.php b/app/code/Magento/Msrp/Block/Adminhtml/Product/Helper/Form/Type/Price.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/Block/Popup.php b/app/code/Magento/Msrp/Block/Popup.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/Block/Total.php b/app/code/Magento/Msrp/Block/Total.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/Helper/Data.php b/app/code/Magento/Msrp/Helper/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/LICENSE.txt b/app/code/Magento/Msrp/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/LICENSE_AFL.txt b/app/code/Magento/Msrp/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/Model/Config.php b/app/code/Magento/Msrp/Model/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/Model/Msrp.php b/app/code/Magento/Msrp/Model/Msrp.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/Model/Product/Attribute/Source/Type.php b/app/code/Magento/Msrp/Model/Product/Attribute/Source/Type.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/Model/Product/Attribute/Source/Type/Price.php b/app/code/Magento/Msrp/Model/Product/Attribute/Source/Type/Price.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/Model/Product/Options.php b/app/code/Magento/Msrp/Model/Product/Options.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/Model/ProductRender/MsrpPriceInfo.php b/app/code/Magento/Msrp/Model/ProductRender/MsrpPriceInfo.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/Model/Quote/Address/CanApplyMsrp.php b/app/code/Magento/Msrp/Model/Quote/Address/CanApplyMsrp.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/Model/Quote/Msrp.php b/app/code/Magento/Msrp/Model/Quote/Msrp.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/Observer/Frontend/Quote/SetCanApplyMsrpObserver.php b/app/code/Magento/Msrp/Observer/Frontend/Quote/SetCanApplyMsrpObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/Plugin/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Attributes.php b/app/code/Magento/Msrp/Plugin/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Attributes.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/Pricing/Price/MsrpPrice.php b/app/code/Magento/Msrp/Pricing/Price/MsrpPrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/Pricing/Price/MsrpPriceInterface.php b/app/code/Magento/Msrp/Pricing/Price/MsrpPriceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/Setup/InstallData.php b/app/code/Magento/Msrp/Setup/InstallData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/Setup/UpgradeData.php b/app/code/Magento/Msrp/Setup/UpgradeData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/Test/Unit/Helper/DataTest.php b/app/code/Magento/Msrp/Test/Unit/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/Test/Unit/Model/Product/Attribute/Source/Type/PriceTest.php b/app/code/Magento/Msrp/Test/Unit/Model/Product/Attribute/Source/Type/PriceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/Test/Unit/Observer/Frontend/Quote/SetCanApplyMsrpObserverTest.php b/app/code/Magento/Msrp/Test/Unit/Observer/Frontend/Quote/SetCanApplyMsrpObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/Test/Unit/Pricing/Price/MsrpPriceTest.php b/app/code/Magento/Msrp/Test/Unit/Pricing/Price/MsrpPriceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/Test/Unit/Ui/DataProvider/Product/Form/Modifier/MsrpTest.php b/app/code/Magento/Msrp/Test/Unit/Ui/DataProvider/Product/Form/Modifier/MsrpTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/Test/Unit/Ui/DataProvider/Product/Listing/Collector/MsrpPriceTest.php b/app/code/Magento/Msrp/Test/Unit/Ui/DataProvider/Product/Listing/Collector/MsrpPriceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/Ui/DataProvider/Product/Form/Modifier/Msrp.php b/app/code/Magento/Msrp/Ui/DataProvider/Product/Form/Modifier/Msrp.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/Ui/DataProvider/Product/Listing/Collector/MsrpPrice.php b/app/code/Magento/Msrp/Ui/DataProvider/Product/Listing/Collector/MsrpPrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/composer.json b/app/code/Magento/Msrp/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/etc/adminhtml/di.xml b/app/code/Magento/Msrp/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/etc/adminhtml/system.xml b/app/code/Magento/Msrp/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/etc/catalog_attributes.xml b/app/code/Magento/Msrp/etc/catalog_attributes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/etc/config.xml b/app/code/Magento/Msrp/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/etc/di.xml b/app/code/Magento/Msrp/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/etc/extension_attributes.xml b/app/code/Magento/Msrp/etc/extension_attributes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/etc/frontend/events.xml b/app/code/Magento/Msrp/etc/frontend/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/etc/module.xml b/app/code/Magento/Msrp/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/etc/webapi_rest/events.xml b/app/code/Magento/Msrp/etc/webapi_rest/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/etc/webapi_soap/events.xml b/app/code/Magento/Msrp/etc/webapi_soap/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/i18n/de_DE.csv b/app/code/Magento/Msrp/i18n/de_DE.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/i18n/en_US.csv b/app/code/Magento/Msrp/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/i18n/es_ES.csv b/app/code/Magento/Msrp/i18n/es_ES.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/i18n/fr_FR.csv b/app/code/Magento/Msrp/i18n/fr_FR.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/i18n/nl_NL.csv b/app/code/Magento/Msrp/i18n/nl_NL.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/i18n/pt_BR.csv b/app/code/Magento/Msrp/i18n/pt_BR.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/i18n/zh_Hans_CN.csv b/app/code/Magento/Msrp/i18n/zh_Hans_CN.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/registration.php b/app/code/Magento/Msrp/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/view/base/layout/catalog_product_prices.xml b/app/code/Magento/Msrp/view/base/layout/catalog_product_prices.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/view/base/templates/product/price/msrp.phtml b/app/code/Magento/Msrp/view/base/templates/product/price/msrp.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/view/base/web/js/msrp.js b/app/code/Magento/Msrp/view/base/web/js/msrp.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/view/frontend/layout/catalog_category_view.xml b/app/code/Magento/Msrp/view/frontend/layout/catalog_category_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/view/frontend/layout/catalog_product_compare_index.xml b/app/code/Magento/Msrp/view/frontend/layout/catalog_product_compare_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/view/frontend/layout/catalog_product_view.xml b/app/code/Magento/Msrp/view/frontend/layout/catalog_product_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/view/frontend/layout/catalog_product_view_type_downloadable.xml b/app/code/Magento/Msrp/view/frontend/layout/catalog_product_view_type_downloadable.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/view/frontend/layout/catalogsearch_advanced_result.xml b/app/code/Magento/Msrp/view/frontend/layout/catalogsearch_advanced_result.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/view/frontend/layout/catalogsearch_result_index.xml b/app/code/Magento/Msrp/view/frontend/layout/catalogsearch_result_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/view/frontend/layout/checkout_cart_index.xml b/app/code/Magento/Msrp/view/frontend/layout/checkout_cart_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/view/frontend/layout/checkout_cart_sidebar_total_renderers.xml b/app/code/Magento/Msrp/view/frontend/layout/checkout_cart_sidebar_total_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/view/frontend/layout/checkout_onepage_failure.xml b/app/code/Magento/Msrp/view/frontend/layout/checkout_onepage_failure.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/view/frontend/layout/checkout_onepage_success.xml b/app/code/Magento/Msrp/view/frontend/layout/checkout_onepage_success.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/view/frontend/layout/msrp_popup.xml b/app/code/Magento/Msrp/view/frontend/layout/msrp_popup.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/view/frontend/layout/review_product_list.xml b/app/code/Magento/Msrp/view/frontend/layout/review_product_list.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/view/frontend/layout/wishlist_index_configure_type_downloadable.xml b/app/code/Magento/Msrp/view/frontend/layout/wishlist_index_configure_type_downloadable.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/view/frontend/layout/wishlist_index_index.xml b/app/code/Magento/Msrp/view/frontend/layout/wishlist_index_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/view/frontend/layout/wishlist_search_view.xml b/app/code/Magento/Msrp/view/frontend/layout/wishlist_search_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/view/frontend/layout/wishlist_shared_index.xml b/app/code/Magento/Msrp/view/frontend/layout/wishlist_shared_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/view/frontend/requirejs-config.js b/app/code/Magento/Msrp/view/frontend/requirejs-config.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/view/frontend/templates/cart/subtotal.phtml b/app/code/Magento/Msrp/view/frontend/templates/cart/subtotal.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/view/frontend/templates/cart/totals.phtml b/app/code/Magento/Msrp/view/frontend/templates/cart/totals.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/view/frontend/templates/popup.phtml b/app/code/Magento/Msrp/view/frontend/templates/popup.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/view/frontend/templates/render/item/price_msrp_item.phtml b/app/code/Magento/Msrp/view/frontend/templates/render/item/price_msrp_item.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/view/frontend/templates/render/item/price_msrp_rss.phtml b/app/code/Magento/Msrp/view/frontend/templates/render/item/price_msrp_rss.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/view/frontend/ui_component/widget_recently_compared.xml b/app/code/Magento/Msrp/view/frontend/ui_component/widget_recently_compared.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/view/frontend/ui_component/widget_recently_viewed.xml b/app/code/Magento/Msrp/view/frontend/ui_component/widget_recently_viewed.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/view/frontend/web/js/product/list/columns/msrp-price.js b/app/code/Magento/Msrp/view/frontend/web/js/product/list/columns/msrp-price.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/view/frontend/web/js/view/checkout/minicart/subtotal/totals.js b/app/code/Magento/Msrp/view/frontend/web/js/view/checkout/minicart/subtotal/totals.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/view/frontend/web/template/checkout/minicart/subtotal/totals.html b/app/code/Magento/Msrp/view/frontend/web/template/checkout/minicart/subtotal/totals.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/view/frontend/web/template/product/item/popup.html b/app/code/Magento/Msrp/view/frontend/web/template/product/item/popup.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Msrp/view/frontend/web/template/product/price/price_box.html b/app/code/Magento/Msrp/view/frontend/web/template/product/price/price_box.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Block/Checkout/AbstractMultishipping.php b/app/code/Magento/Multishipping/Block/Checkout/AbstractMultishipping.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Block/Checkout/Address/Select.php b/app/code/Magento/Multishipping/Block/Checkout/Address/Select.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Block/Checkout/Addresses.php b/app/code/Magento/Multishipping/Block/Checkout/Addresses.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Block/Checkout/Billing.php b/app/code/Magento/Multishipping/Block/Checkout/Billing.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Block/Checkout/Billing/Items.php b/app/code/Magento/Multishipping/Block/Checkout/Billing/Items.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Block/Checkout/Link.php b/app/code/Magento/Multishipping/Block/Checkout/Link.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Block/Checkout/Overview.php b/app/code/Magento/Multishipping/Block/Checkout/Overview.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Block/Checkout/Payment/Info.php b/app/code/Magento/Multishipping/Block/Checkout/Payment/Info.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Block/Checkout/Shipping.php b/app/code/Magento/Multishipping/Block/Checkout/Shipping.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Block/Checkout/State.php b/app/code/Magento/Multishipping/Block/Checkout/State.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Block/Checkout/Success.php b/app/code/Magento/Multishipping/Block/Checkout/Success.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Controller/Checkout.php b/app/code/Magento/Multishipping/Controller/Checkout.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Controller/Checkout/Address.php b/app/code/Magento/Multishipping/Controller/Checkout/Address.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Controller/Checkout/Address/EditAddress.php b/app/code/Magento/Multishipping/Controller/Checkout/Address/EditAddress.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Controller/Checkout/Address/EditBilling.php b/app/code/Magento/Multishipping/Controller/Checkout/Address/EditBilling.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Controller/Checkout/Address/EditShipping.php b/app/code/Magento/Multishipping/Controller/Checkout/Address/EditShipping.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Controller/Checkout/Address/EditShippingPost.php b/app/code/Magento/Multishipping/Controller/Checkout/Address/EditShippingPost.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Controller/Checkout/Address/NewBilling.php b/app/code/Magento/Multishipping/Controller/Checkout/Address/NewBilling.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Controller/Checkout/Address/NewShipping.php b/app/code/Magento/Multishipping/Controller/Checkout/Address/NewShipping.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Controller/Checkout/Address/SaveBilling.php b/app/code/Magento/Multishipping/Controller/Checkout/Address/SaveBilling.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Controller/Checkout/Address/SelectBilling.php b/app/code/Magento/Multishipping/Controller/Checkout/Address/SelectBilling.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Controller/Checkout/Address/SetBilling.php b/app/code/Magento/Multishipping/Controller/Checkout/Address/SetBilling.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Controller/Checkout/Address/ShippingSaved.php b/app/code/Magento/Multishipping/Controller/Checkout/Address/ShippingSaved.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Controller/Checkout/Addresses.php b/app/code/Magento/Multishipping/Controller/Checkout/Addresses.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Controller/Checkout/AddressesPost.php b/app/code/Magento/Multishipping/Controller/Checkout/AddressesPost.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Controller/Checkout/BackToAddresses.php b/app/code/Magento/Multishipping/Controller/Checkout/BackToAddresses.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Controller/Checkout/BackToBilling.php b/app/code/Magento/Multishipping/Controller/Checkout/BackToBilling.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Controller/Checkout/BackToShipping.php b/app/code/Magento/Multishipping/Controller/Checkout/BackToShipping.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Controller/Checkout/Billing.php b/app/code/Magento/Multishipping/Controller/Checkout/Billing.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Controller/Checkout/Index.php b/app/code/Magento/Multishipping/Controller/Checkout/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Controller/Checkout/Login.php b/app/code/Magento/Multishipping/Controller/Checkout/Login.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Controller/Checkout/Overview.php b/app/code/Magento/Multishipping/Controller/Checkout/Overview.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Controller/Checkout/OverviewPost.php b/app/code/Magento/Multishipping/Controller/Checkout/OverviewPost.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Controller/Checkout/Plugin.php b/app/code/Magento/Multishipping/Controller/Checkout/Plugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Controller/Checkout/Register.php b/app/code/Magento/Multishipping/Controller/Checkout/Register.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Controller/Checkout/RemoveItem.php b/app/code/Magento/Multishipping/Controller/Checkout/RemoveItem.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Controller/Checkout/Shipping.php b/app/code/Magento/Multishipping/Controller/Checkout/Shipping.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Controller/Checkout/ShippingPost.php b/app/code/Magento/Multishipping/Controller/Checkout/ShippingPost.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Controller/Checkout/Success.php b/app/code/Magento/Multishipping/Controller/Checkout/Success.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Helper/Data.php b/app/code/Magento/Multishipping/Helper/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Helper/Url.php b/app/code/Magento/Multishipping/Helper/Url.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/LICENSE.txt b/app/code/Magento/Multishipping/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/LICENSE_AFL.txt b/app/code/Magento/Multishipping/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Model/Cart/Controller/CartPlugin.php b/app/code/Magento/Multishipping/Model/Cart/Controller/CartPlugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Model/Checkout/Type/Multishipping.php b/app/code/Magento/Multishipping/Model/Checkout/Type/Multishipping.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Model/Checkout/Type/Multishipping/Plugin.php b/app/code/Magento/Multishipping/Model/Checkout/Type/Multishipping/Plugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Model/Checkout/Type/Multishipping/State.php b/app/code/Magento/Multishipping/Model/Checkout/Type/Multishipping/State.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Model/Payment/Method/Specification/Enabled.php b/app/code/Magento/Multishipping/Model/Payment/Method/Specification/Enabled.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/README.md b/app/code/Magento/Multishipping/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Test/Unit/Block/Checkout/Address/SelectTest.php b/app/code/Magento/Multishipping/Test/Unit/Block/Checkout/Address/SelectTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Test/Unit/Block/Checkout/Billing/ItemsTest.php b/app/code/Magento/Multishipping/Test/Unit/Block/Checkout/Billing/ItemsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Test/Unit/Block/Checkout/OverviewTest.php b/app/code/Magento/Multishipping/Test/Unit/Block/Checkout/OverviewTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Test/Unit/Block/Checkout/Payment/InfoTest.php b/app/code/Magento/Multishipping/Test/Unit/Block/Checkout/Payment/InfoTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Test/Unit/Block/Checkout/ShippingTest.php b/app/code/Magento/Multishipping/Test/Unit/Block/Checkout/ShippingTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Test/Unit/Block/Checkout/StateTest.php b/app/code/Magento/Multishipping/Test/Unit/Block/Checkout/StateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Test/Unit/Block/Checkout/SuccessTest.php b/app/code/Magento/Multishipping/Test/Unit/Block/Checkout/SuccessTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Test/Unit/Controller/Checkout/Address/EditAddressTest.php b/app/code/Magento/Multishipping/Test/Unit/Controller/Checkout/Address/EditAddressTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Test/Unit/Controller/Checkout/Address/EditBillingTest.php b/app/code/Magento/Multishipping/Test/Unit/Controller/Checkout/Address/EditBillingTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Test/Unit/Controller/Checkout/Address/EditShippingTest.php b/app/code/Magento/Multishipping/Test/Unit/Controller/Checkout/Address/EditShippingTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Test/Unit/Controller/Checkout/Address/NewBillingTest.php b/app/code/Magento/Multishipping/Test/Unit/Controller/Checkout/Address/NewBillingTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Test/Unit/Controller/Checkout/Address/NewShippingTest.php b/app/code/Magento/Multishipping/Test/Unit/Controller/Checkout/Address/NewShippingTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Test/Unit/Controller/Checkout/Address/ShippingSavedTest.php b/app/code/Magento/Multishipping/Test/Unit/Controller/Checkout/Address/ShippingSavedTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Test/Unit/Controller/Checkout/PluginTest.php b/app/code/Magento/Multishipping/Test/Unit/Controller/Checkout/PluginTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Test/Unit/Helper/DataTest.php b/app/code/Magento/Multishipping/Test/Unit/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Test/Unit/Model/Cart/Controller/CartPluginTest.php b/app/code/Magento/Multishipping/Test/Unit/Model/Cart/Controller/CartPluginTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Test/Unit/Model/Checkout/Type/Multishipping/PluginTest.php b/app/code/Magento/Multishipping/Test/Unit/Model/Checkout/Type/Multishipping/PluginTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Test/Unit/Model/Checkout/Type/MultishippingTest.php b/app/code/Magento/Multishipping/Test/Unit/Model/Checkout/Type/MultishippingTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/Test/Unit/Model/Payment/Method/Specification/EnabledTest.php b/app/code/Magento/Multishipping/Test/Unit/Model/Payment/Method/Specification/EnabledTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/composer.json b/app/code/Magento/Multishipping/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/etc/acl.xml b/app/code/Magento/Multishipping/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/etc/adminhtml/system.xml b/app/code/Magento/Multishipping/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/etc/config.xml b/app/code/Magento/Multishipping/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/etc/frontend/di.xml b/app/code/Magento/Multishipping/etc/frontend/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/etc/frontend/page_types.xml b/app/code/Magento/Multishipping/etc/frontend/page_types.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/etc/frontend/routes.xml b/app/code/Magento/Multishipping/etc/frontend/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/etc/frontend/sections.xml b/app/code/Magento/Multishipping/etc/frontend/sections.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/etc/module.xml b/app/code/Magento/Multishipping/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/i18n/en_US.csv b/app/code/Magento/Multishipping/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/registration.php b/app/code/Magento/Multishipping/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/view/frontend/layout/checkout_cart_index.xml b/app/code/Magento/Multishipping/view/frontend/layout/checkout_cart_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout.xml b/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_address_editaddress.xml b/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_address_editaddress.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_address_editbilling.xml b/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_address_editbilling.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_address_editshipping.xml b/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_address_editshipping.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_address_newbilling.xml b/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_address_newbilling.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_address_newshipping.xml b/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_address_newshipping.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_address_select.xml b/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_address_select.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_address_selectbilling.xml b/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_address_selectbilling.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_addresses.xml b/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_addresses.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_billing.xml b/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_billing.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_customer_address.xml b/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_customer_address.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_login.xml b/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_login.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_overview.xml b/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_overview.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_register.xml b/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_register.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_shipping.xml b/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_shipping.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_success.xml b/app/code/Magento/Multishipping/view/frontend/layout/multishipping_checkout_success.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/view/frontend/requirejs-config.js b/app/code/Magento/Multishipping/view/frontend/requirejs-config.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/view/frontend/templates/checkout/address/select.phtml b/app/code/Magento/Multishipping/view/frontend/templates/checkout/address/select.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/view/frontend/templates/checkout/addresses.phtml b/app/code/Magento/Multishipping/view/frontend/templates/checkout/addresses.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/view/frontend/templates/checkout/billing.phtml b/app/code/Magento/Multishipping/view/frontend/templates/checkout/billing.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/view/frontend/templates/checkout/billing/items.phtml b/app/code/Magento/Multishipping/view/frontend/templates/checkout/billing/items.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/view/frontend/templates/checkout/item/default.phtml b/app/code/Magento/Multishipping/view/frontend/templates/checkout/item/default.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/view/frontend/templates/checkout/link.phtml b/app/code/Magento/Multishipping/view/frontend/templates/checkout/link.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/view/frontend/templates/checkout/overview.phtml b/app/code/Magento/Multishipping/view/frontend/templates/checkout/overview.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/view/frontend/templates/checkout/overview/item.phtml b/app/code/Magento/Multishipping/view/frontend/templates/checkout/overview/item.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/view/frontend/templates/checkout/shipping.phtml b/app/code/Magento/Multishipping/view/frontend/templates/checkout/shipping.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/view/frontend/templates/checkout/state.phtml b/app/code/Magento/Multishipping/view/frontend/templates/checkout/state.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/view/frontend/templates/checkout/success.phtml b/app/code/Magento/Multishipping/view/frontend/templates/checkout/success.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/view/frontend/templates/js/components.phtml b/app/code/Magento/Multishipping/view/frontend/templates/js/components.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/view/frontend/templates/multishipping/item/default.phtml b/app/code/Magento/Multishipping/view/frontend/templates/multishipping/item/default.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/view/frontend/web/js/multi-shipping.js b/app/code/Magento/Multishipping/view/frontend/web/js/multi-shipping.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/view/frontend/web/js/overview.js b/app/code/Magento/Multishipping/view/frontend/web/js/overview.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Multishipping/view/frontend/web/js/payment.js b/app/code/Magento/Multishipping/view/frontend/web/js/payment.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Console/Command/DeployMarker.php b/app/code/Magento/NewRelicReporting/Console/Command/DeployMarker.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/LICENSE.txt b/app/code/Magento/NewRelicReporting/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/LICENSE_AFL.txt b/app/code/Magento/NewRelicReporting/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Model/Apm/Deployments.php b/app/code/Magento/NewRelicReporting/Model/Apm/Deployments.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Model/Config.php b/app/code/Magento/NewRelicReporting/Model/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Model/Counter.php b/app/code/Magento/NewRelicReporting/Model/Counter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Model/Counts.php b/app/code/Magento/NewRelicReporting/Model/Counts.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Model/Cron.php b/app/code/Magento/NewRelicReporting/Model/Cron.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Model/Cron/ReportCounts.php b/app/code/Magento/NewRelicReporting/Model/Cron/ReportCounts.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Model/Cron/ReportModulesInfo.php b/app/code/Magento/NewRelicReporting/Model/Cron/ReportModulesInfo.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Model/Cron/ReportNewRelicCron.php b/app/code/Magento/NewRelicReporting/Model/Cron/ReportNewRelicCron.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Model/CronEvent.php b/app/code/Magento/NewRelicReporting/Model/CronEvent.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Model/Module.php b/app/code/Magento/NewRelicReporting/Model/Module.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Model/Module/Collect.php b/app/code/Magento/NewRelicReporting/Model/Module/Collect.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Model/NewRelicWrapper.php b/app/code/Magento/NewRelicReporting/Model/NewRelicWrapper.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Model/Observer/CheckConfig.php b/app/code/Magento/NewRelicReporting/Model/Observer/CheckConfig.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Model/Observer/ReportConcurrentAdmins.php b/app/code/Magento/NewRelicReporting/Model/Observer/ReportConcurrentAdmins.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Model/Observer/ReportConcurrentAdminsToNewRelic.php b/app/code/Magento/NewRelicReporting/Model/Observer/ReportConcurrentAdminsToNewRelic.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Model/Observer/ReportConcurrentUsers.php b/app/code/Magento/NewRelicReporting/Model/Observer/ReportConcurrentUsers.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Model/Observer/ReportConcurrentUsersToNewRelic.php b/app/code/Magento/NewRelicReporting/Model/Observer/ReportConcurrentUsersToNewRelic.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Model/Observer/ReportOrderPlaced.php b/app/code/Magento/NewRelicReporting/Model/Observer/ReportOrderPlaced.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Model/Observer/ReportOrderPlacedToNewRelic.php b/app/code/Magento/NewRelicReporting/Model/Observer/ReportOrderPlacedToNewRelic.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Model/Observer/ReportProductDeleted.php b/app/code/Magento/NewRelicReporting/Model/Observer/ReportProductDeleted.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Model/Observer/ReportProductDeletedToNewRelic.php b/app/code/Magento/NewRelicReporting/Model/Observer/ReportProductDeletedToNewRelic.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Model/Observer/ReportProductSaved.php b/app/code/Magento/NewRelicReporting/Model/Observer/ReportProductSaved.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Model/Observer/ReportProductSavedToNewRelic.php b/app/code/Magento/NewRelicReporting/Model/Observer/ReportProductSavedToNewRelic.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Model/Observer/ReportSystemCacheFlush.php b/app/code/Magento/NewRelicReporting/Model/Observer/ReportSystemCacheFlush.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Model/Observer/ReportSystemCacheFlushToNewRelic.php b/app/code/Magento/NewRelicReporting/Model/Observer/ReportSystemCacheFlushToNewRelic.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Model/Orders.php b/app/code/Magento/NewRelicReporting/Model/Orders.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Model/ResourceModel/Counts.php b/app/code/Magento/NewRelicReporting/Model/ResourceModel/Counts.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Model/ResourceModel/Counts/Collection.php b/app/code/Magento/NewRelicReporting/Model/ResourceModel/Counts/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Model/ResourceModel/Module.php b/app/code/Magento/NewRelicReporting/Model/ResourceModel/Module.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Model/ResourceModel/Module/Collection.php b/app/code/Magento/NewRelicReporting/Model/ResourceModel/Module/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Model/ResourceModel/Orders.php b/app/code/Magento/NewRelicReporting/Model/ResourceModel/Orders.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Model/ResourceModel/Orders/Collection.php b/app/code/Magento/NewRelicReporting/Model/ResourceModel/Orders/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Model/ResourceModel/System.php b/app/code/Magento/NewRelicReporting/Model/ResourceModel/System.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Model/ResourceModel/System/Collection.php b/app/code/Magento/NewRelicReporting/Model/ResourceModel/System/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Model/ResourceModel/Users.php b/app/code/Magento/NewRelicReporting/Model/ResourceModel/Users.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Model/ResourceModel/Users/Collection.php b/app/code/Magento/NewRelicReporting/Model/ResourceModel/Users/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Model/ServiceShellUser.php b/app/code/Magento/NewRelicReporting/Model/ServiceShellUser.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Model/System.php b/app/code/Magento/NewRelicReporting/Model/System.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Model/Users.php b/app/code/Magento/NewRelicReporting/Model/Users.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Plugin/HttpPlugin.php b/app/code/Magento/NewRelicReporting/Plugin/HttpPlugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/README.md b/app/code/Magento/NewRelicReporting/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Setup/InstallSchema.php b/app/code/Magento/NewRelicReporting/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Setup/UpgradeSchema.php b/app/code/Magento/NewRelicReporting/Setup/UpgradeSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Apm/DeploymentsTest.php b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Apm/DeploymentsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Test/Unit/Model/CounterTest.php b/app/code/Magento/NewRelicReporting/Test/Unit/Model/CounterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Cron/ReportCountsTest.php b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Cron/ReportCountsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Cron/ReportModulesInfoTest.php b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Cron/ReportModulesInfoTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Cron/ReportNewRelicCronTest.php b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Cron/ReportNewRelicCronTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Test/Unit/Model/CronEventTest.php b/app/code/Magento/NewRelicReporting/Test/Unit/Model/CronEventTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Test/Unit/Model/CronTest.php b/app/code/Magento/NewRelicReporting/Test/Unit/Model/CronTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Module/CollectTest.php b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Module/CollectTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/CheckConfigTest.php b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/CheckConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportConcurrentAdminsTest.php b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportConcurrentAdminsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportConcurrentAdminsToNewRelicTest.php b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportConcurrentAdminsToNewRelicTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportConcurrentUsersTest.php b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportConcurrentUsersTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportConcurrentUsersToNewRelicTest.php b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportConcurrentUsersToNewRelicTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportOrderPlacedTest.php b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportOrderPlacedTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportOrderPlacedToNewRelicTest.php b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportOrderPlacedToNewRelicTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportProductDeletedTest.php b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportProductDeletedTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportProductDeletedToNewRelicTest.php b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportProductDeletedToNewRelicTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportProductSavedTest.php b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportProductSavedTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportProductSavedToNewRelicTest.php b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportProductSavedToNewRelicTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportSystemCacheFlushTest.php b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportSystemCacheFlushTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportSystemCacheFlushToNewRelicTest.php b/app/code/Magento/NewRelicReporting/Test/Unit/Model/Observer/ReportSystemCacheFlushToNewRelicTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/composer.json b/app/code/Magento/NewRelicReporting/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/etc/acl.xml b/app/code/Magento/NewRelicReporting/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/etc/adminhtml/events.xml b/app/code/Magento/NewRelicReporting/etc/adminhtml/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/etc/adminhtml/system.xml b/app/code/Magento/NewRelicReporting/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/etc/config.xml b/app/code/Magento/NewRelicReporting/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/etc/crontab.xml b/app/code/Magento/NewRelicReporting/etc/crontab.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/etc/di.xml b/app/code/Magento/NewRelicReporting/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/etc/events.xml b/app/code/Magento/NewRelicReporting/etc/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/etc/frontend/events.xml b/app/code/Magento/NewRelicReporting/etc/frontend/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/etc/module.xml b/app/code/Magento/NewRelicReporting/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/i18n/en_US.csv b/app/code/Magento/NewRelicReporting/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/NewRelicReporting/registration.php b/app/code/Magento/NewRelicReporting/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Block/Adminhtml/Problem.php b/app/code/Magento/Newsletter/Block/Adminhtml/Problem.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Block/Adminhtml/Problem/Grid/Filter/Checkbox.php b/app/code/Magento/Newsletter/Block/Adminhtml/Problem/Grid/Filter/Checkbox.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Block/Adminhtml/Problem/Grid/Renderer/Checkbox.php b/app/code/Magento/Newsletter/Block/Adminhtml/Problem/Grid/Renderer/Checkbox.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Block/Adminhtml/Queue/Edit.php b/app/code/Magento/Newsletter/Block/Adminhtml/Queue/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Block/Adminhtml/Queue/Edit/Form.php b/app/code/Magento/Newsletter/Block/Adminhtml/Queue/Edit/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Block/Adminhtml/Queue/Grid/Renderer/Action.php b/app/code/Magento/Newsletter/Block/Adminhtml/Queue/Grid/Renderer/Action.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Block/Adminhtml/Queue/Preview.php b/app/code/Magento/Newsletter/Block/Adminhtml/Queue/Preview.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Block/Adminhtml/Queue/Preview/Form.php b/app/code/Magento/Newsletter/Block/Adminhtml/Queue/Preview/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Block/Adminhtml/Subscriber.php b/app/code/Magento/Newsletter/Block/Adminhtml/Subscriber.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Block/Adminhtml/Subscriber/Grid.php b/app/code/Magento/Newsletter/Block/Adminhtml/Subscriber/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Block/Adminhtml/Subscriber/Grid/Filter/Checkbox.php b/app/code/Magento/Newsletter/Block/Adminhtml/Subscriber/Grid/Filter/Checkbox.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Block/Adminhtml/Subscriber/Grid/Filter/Website.php b/app/code/Magento/Newsletter/Block/Adminhtml/Subscriber/Grid/Filter/Website.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Block/Adminhtml/Subscriber/Grid/Renderer/Checkbox.php b/app/code/Magento/Newsletter/Block/Adminhtml/Subscriber/Grid/Renderer/Checkbox.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Block/Adminhtml/Template.php b/app/code/Magento/Newsletter/Block/Adminhtml/Template.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Block/Adminhtml/Template/Edit.php b/app/code/Magento/Newsletter/Block/Adminhtml/Template/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Block/Adminhtml/Template/Edit/Form.php b/app/code/Magento/Newsletter/Block/Adminhtml/Template/Edit/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Block/Adminhtml/Template/Grid.php b/app/code/Magento/Newsletter/Block/Adminhtml/Template/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Block/Adminhtml/Template/Grid/Renderer/Action.php b/app/code/Magento/Newsletter/Block/Adminhtml/Template/Grid/Renderer/Action.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Block/Adminhtml/Template/Grid/Renderer/Sender.php b/app/code/Magento/Newsletter/Block/Adminhtml/Template/Grid/Renderer/Sender.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Block/Adminhtml/Template/Preview.php b/app/code/Magento/Newsletter/Block/Adminhtml/Template/Preview.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Block/Adminhtml/Template/Preview/Form.php b/app/code/Magento/Newsletter/Block/Adminhtml/Template/Preview/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Block/Subscribe.php b/app/code/Magento/Newsletter/Block/Subscribe.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Block/Subscribe/Grid/Options/GroupOptionHash.php b/app/code/Magento/Newsletter/Block/Subscribe/Grid/Options/GroupOptionHash.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Block/Subscribe/Grid/Options/StoreOptionHash.php b/app/code/Magento/Newsletter/Block/Subscribe/Grid/Options/StoreOptionHash.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Problem.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Problem.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Problem/Grid.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Problem/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Problem/Index.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Problem/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Queue.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Queue.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Cancel.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Cancel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Drop.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Drop.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Edit.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Grid.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Index.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Pause.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Pause.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Preview.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Preview.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Resume.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Resume.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Save.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Sending.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Sending.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Start.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Queue/Start.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Subscriber.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Subscriber.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Subscriber/ExportCsv.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Subscriber/ExportCsv.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Subscriber/ExportXml.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Subscriber/ExportXml.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Subscriber/Grid.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Subscriber/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Subscriber/Index.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Subscriber/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Subscriber/MassDelete.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Subscriber/MassDelete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Subscriber/MassUnsubscribe.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Subscriber/MassUnsubscribe.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Template.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Template.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Template/Delete.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Template/Delete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Template/Drop.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Template/Drop.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Template/Edit.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Template/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Template/Grid.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Template/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Template/Index.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Template/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Template/NewAction.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Template/NewAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Template/Preview.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Template/Preview.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Controller/Adminhtml/Template/Save.php b/app/code/Magento/Newsletter/Controller/Adminhtml/Template/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Controller/Manage.php b/app/code/Magento/Newsletter/Controller/Manage.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Controller/Manage/Index.php b/app/code/Magento/Newsletter/Controller/Manage/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Controller/Manage/Save.php b/app/code/Magento/Newsletter/Controller/Manage/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Controller/Subscriber.php b/app/code/Magento/Newsletter/Controller/Subscriber.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Controller/Subscriber/Confirm.php b/app/code/Magento/Newsletter/Controller/Subscriber/Confirm.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Controller/Subscriber/NewAction.php b/app/code/Magento/Newsletter/Controller/Subscriber/NewAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Controller/Subscriber/Unsubscribe.php b/app/code/Magento/Newsletter/Controller/Subscriber/Unsubscribe.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Helper/Data.php b/app/code/Magento/Newsletter/Helper/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/LICENSE.txt b/app/code/Magento/Newsletter/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/LICENSE_AFL.txt b/app/code/Magento/Newsletter/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Model/Observer.php b/app/code/Magento/Newsletter/Model/Observer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Model/Plugin/CustomerPlugin.php b/app/code/Magento/Newsletter/Model/Plugin/CustomerPlugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Model/Problem.php b/app/code/Magento/Newsletter/Model/Problem.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Model/Queue.php b/app/code/Magento/Newsletter/Model/Queue.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Model/Queue/Options/Status.php b/app/code/Magento/Newsletter/Model/Queue/Options/Status.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Model/Queue/TransportBuilder.php b/app/code/Magento/Newsletter/Model/Queue/TransportBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Model/ResourceModel/Grid/Collection.php b/app/code/Magento/Newsletter/Model/ResourceModel/Grid/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Model/ResourceModel/Problem.php b/app/code/Magento/Newsletter/Model/ResourceModel/Problem.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Model/ResourceModel/Problem/Collection.php b/app/code/Magento/Newsletter/Model/ResourceModel/Problem/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Model/ResourceModel/Queue.php b/app/code/Magento/Newsletter/Model/ResourceModel/Queue.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Model/ResourceModel/Queue/Collection.php b/app/code/Magento/Newsletter/Model/ResourceModel/Queue/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Model/ResourceModel/Queue/Grid/Collection.php b/app/code/Magento/Newsletter/Model/ResourceModel/Queue/Grid/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Model/ResourceModel/Subscriber.php b/app/code/Magento/Newsletter/Model/ResourceModel/Subscriber.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Model/ResourceModel/Subscriber/Collection.php b/app/code/Magento/Newsletter/Model/ResourceModel/Subscriber/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Model/ResourceModel/Subscriber/Grid/Collection.php b/app/code/Magento/Newsletter/Model/ResourceModel/Subscriber/Grid/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Model/ResourceModel/Template.php b/app/code/Magento/Newsletter/Model/ResourceModel/Template.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Model/ResourceModel/Template/Collection.php b/app/code/Magento/Newsletter/Model/ResourceModel/Template/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Model/Session.php b/app/code/Magento/Newsletter/Model/Session.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Model/Subscriber.php b/app/code/Magento/Newsletter/Model/Subscriber.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Model/Template.php b/app/code/Magento/Newsletter/Model/Template.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Model/Template/Filter.php b/app/code/Magento/Newsletter/Model/Template/Filter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/README.md b/app/code/Magento/Newsletter/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Setup/InstallSchema.php b/app/code/Magento/Newsletter/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Setup/UpgradeSchema.php b/app/code/Magento/Newsletter/Setup/UpgradeSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Test/Unit/Block/Adminhtml/Queue/PreviewTest.php b/app/code/Magento/Newsletter/Test/Unit/Block/Adminhtml/Queue/PreviewTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Test/Unit/Block/Adminhtml/Template/PreviewTest.php b/app/code/Magento/Newsletter/Test/Unit/Block/Adminhtml/Template/PreviewTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Test/Unit/Controller/Manage/SaveTest.php b/app/code/Magento/Newsletter/Test/Unit/Controller/Manage/SaveTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Test/Unit/Model/Plugin/CustomerPluginTest.php b/app/code/Magento/Newsletter/Test/Unit/Model/Plugin/CustomerPluginTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Test/Unit/Model/Queue/TransportBuilderTest.php b/app/code/Magento/Newsletter/Test/Unit/Model/Queue/TransportBuilderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Test/Unit/Model/QueueTest.php b/app/code/Magento/Newsletter/Test/Unit/Model/QueueTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Test/Unit/Model/SubscriberTest.php b/app/code/Magento/Newsletter/Test/Unit/Model/SubscriberTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Test/Unit/Model/Template/FilterTest.php b/app/code/Magento/Newsletter/Test/Unit/Model/Template/FilterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/Test/Unit/Model/TemplateTest.php b/app/code/Magento/Newsletter/Test/Unit/Model/TemplateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/composer.json b/app/code/Magento/Newsletter/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/etc/acl.xml b/app/code/Magento/Newsletter/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/etc/adminhtml/menu.xml b/app/code/Magento/Newsletter/etc/adminhtml/menu.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/etc/adminhtml/routes.xml b/app/code/Magento/Newsletter/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/etc/adminhtml/system.xml b/app/code/Magento/Newsletter/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/etc/config.xml b/app/code/Magento/Newsletter/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/etc/crontab.xml b/app/code/Magento/Newsletter/etc/crontab.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/etc/di.xml b/app/code/Magento/Newsletter/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/etc/email_templates.xml b/app/code/Magento/Newsletter/etc/email_templates.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/etc/extension_attributes.xml b/app/code/Magento/Newsletter/etc/extension_attributes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/etc/frontend/di.xml b/app/code/Magento/Newsletter/etc/frontend/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/etc/frontend/page_types.xml b/app/code/Magento/Newsletter/etc/frontend/page_types.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/etc/frontend/routes.xml b/app/code/Magento/Newsletter/etc/frontend/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/etc/module.xml b/app/code/Magento/Newsletter/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/i18n/en_US.csv b/app/code/Magento/Newsletter/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/registration.php b/app/code/Magento/Newsletter/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_problem_block.xml b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_problem_block.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_problem_grid.xml b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_problem_grid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_problem_index.xml b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_problem_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_queue_edit.xml b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_queue_edit.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_queue_grid.xml b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_queue_grid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_queue_grid_block.xml b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_queue_grid_block.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_queue_index.xml b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_queue_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_queue_preview.xml b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_queue_preview.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_queue_preview_popup.xml b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_queue_preview_popup.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_subscriber_block.xml b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_subscriber_block.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_subscriber_exportcsv.xml b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_subscriber_exportcsv.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_subscriber_exportxml.xml b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_subscriber_exportxml.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_subscriber_grid.xml b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_subscriber_grid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_subscriber_index.xml b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_subscriber_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_template_edit.xml b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_template_edit.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_template_preview.xml b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_template_preview.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_template_preview_popup.xml b/app/code/Magento/Newsletter/view/adminhtml/layout/newsletter_template_preview_popup.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/view/adminhtml/layout/preview.xml b/app/code/Magento/Newsletter/view/adminhtml/layout/preview.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/view/adminhtml/templates/preview/iframeswitcher.phtml b/app/code/Magento/Newsletter/view/adminhtml/templates/preview/iframeswitcher.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/view/adminhtml/templates/preview/store.phtml b/app/code/Magento/Newsletter/view/adminhtml/templates/preview/store.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/view/adminhtml/templates/problem/list.phtml b/app/code/Magento/Newsletter/view/adminhtml/templates/problem/list.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/view/adminhtml/templates/queue/edit.phtml b/app/code/Magento/Newsletter/view/adminhtml/templates/queue/edit.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/view/adminhtml/templates/queue/list.phtml b/app/code/Magento/Newsletter/view/adminhtml/templates/queue/list.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/view/adminhtml/templates/queue/preview.phtml b/app/code/Magento/Newsletter/view/adminhtml/templates/queue/preview.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/view/adminhtml/templates/subscriber/list.phtml b/app/code/Magento/Newsletter/view/adminhtml/templates/subscriber/list.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/view/adminhtml/templates/template/edit.phtml b/app/code/Magento/Newsletter/view/adminhtml/templates/template/edit.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/view/adminhtml/templates/template/list.phtml b/app/code/Magento/Newsletter/view/adminhtml/templates/template/list.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/view/adminhtml/templates/template/preview.phtml b/app/code/Magento/Newsletter/view/adminhtml/templates/template/preview.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/view/base/ui_component/customer_form.xml b/app/code/Magento/Newsletter/view/base/ui_component/customer_form.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/view/frontend/email/subscr_confirm.html b/app/code/Magento/Newsletter/view/frontend/email/subscr_confirm.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/view/frontend/email/subscr_success.html b/app/code/Magento/Newsletter/view/frontend/email/subscr_success.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/view/frontend/email/unsub_success.html b/app/code/Magento/Newsletter/view/frontend/email/unsub_success.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/view/frontend/layout/customer_account.xml b/app/code/Magento/Newsletter/view/frontend/layout/customer_account.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/view/frontend/layout/default.xml b/app/code/Magento/Newsletter/view/frontend/layout/default.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/view/frontend/layout/newsletter_manage_index.xml b/app/code/Magento/Newsletter/view/frontend/layout/newsletter_manage_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/view/frontend/templates/js/components.phtml b/app/code/Magento/Newsletter/view/frontend/templates/js/components.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Newsletter/view/frontend/templates/subscribe.phtml b/app/code/Magento/Newsletter/view/frontend/templates/subscribe.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/Block/Form/AbstractInstruction.php b/app/code/Magento/OfflinePayments/Block/Form/AbstractInstruction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/Block/Form/Banktransfer.php b/app/code/Magento/OfflinePayments/Block/Form/Banktransfer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/Block/Form/Cashondelivery.php b/app/code/Magento/OfflinePayments/Block/Form/Cashondelivery.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/Block/Form/Checkmo.php b/app/code/Magento/OfflinePayments/Block/Form/Checkmo.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/Block/Form/Purchaseorder.php b/app/code/Magento/OfflinePayments/Block/Form/Purchaseorder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/Block/Info/Checkmo.php b/app/code/Magento/OfflinePayments/Block/Info/Checkmo.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/Block/Info/Purchaseorder.php b/app/code/Magento/OfflinePayments/Block/Info/Purchaseorder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/LICENSE.txt b/app/code/Magento/OfflinePayments/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/LICENSE_AFL.txt b/app/code/Magento/OfflinePayments/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/Model/Banktransfer.php b/app/code/Magento/OfflinePayments/Model/Banktransfer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/Model/Cashondelivery.php b/app/code/Magento/OfflinePayments/Model/Cashondelivery.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/Model/Checkmo.php b/app/code/Magento/OfflinePayments/Model/Checkmo.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/Model/CheckmoConfigProvider.php b/app/code/Magento/OfflinePayments/Model/CheckmoConfigProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/Model/InstructionsConfigProvider.php b/app/code/Magento/OfflinePayments/Model/InstructionsConfigProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/Model/Purchaseorder.php b/app/code/Magento/OfflinePayments/Model/Purchaseorder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/Observer/BeforeOrderPaymentSaveObserver.php b/app/code/Magento/OfflinePayments/Observer/BeforeOrderPaymentSaveObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/README.md b/app/code/Magento/OfflinePayments/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/Test/Unit/Block/Form/AbstractInstructionTest.php b/app/code/Magento/OfflinePayments/Test/Unit/Block/Form/AbstractInstructionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/Test/Unit/Block/Info/CheckmoTest.php b/app/code/Magento/OfflinePayments/Test/Unit/Block/Info/CheckmoTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/Test/Unit/Model/BanktransferTest.php b/app/code/Magento/OfflinePayments/Test/Unit/Model/BanktransferTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/Test/Unit/Model/CashondeliveryTest.php b/app/code/Magento/OfflinePayments/Test/Unit/Model/CashondeliveryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/Test/Unit/Model/CheckmoConfigProviderTest.php b/app/code/Magento/OfflinePayments/Test/Unit/Model/CheckmoConfigProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/Test/Unit/Model/CheckmoTest.php b/app/code/Magento/OfflinePayments/Test/Unit/Model/CheckmoTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/Test/Unit/Model/InstructionsConfigProviderTest.php b/app/code/Magento/OfflinePayments/Test/Unit/Model/InstructionsConfigProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/Test/Unit/Model/PurchaseorderTest.php b/app/code/Magento/OfflinePayments/Test/Unit/Model/PurchaseorderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/Test/Unit/Observer/BeforeOrderPaymentSaveObserverTest.php b/app/code/Magento/OfflinePayments/Test/Unit/Observer/BeforeOrderPaymentSaveObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/composer.json b/app/code/Magento/OfflinePayments/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/etc/adminhtml/system.xml b/app/code/Magento/OfflinePayments/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/etc/config.xml b/app/code/Magento/OfflinePayments/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/etc/di.xml b/app/code/Magento/OfflinePayments/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/etc/events.xml b/app/code/Magento/OfflinePayments/etc/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/etc/frontend/di.xml b/app/code/Magento/OfflinePayments/etc/frontend/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/etc/module.xml b/app/code/Magento/OfflinePayments/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/etc/payment.xml b/app/code/Magento/OfflinePayments/etc/payment.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/i18n/en_US.csv b/app/code/Magento/OfflinePayments/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/registration.php b/app/code/Magento/OfflinePayments/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/view/adminhtml/templates/form/banktransfer.phtml b/app/code/Magento/OfflinePayments/view/adminhtml/templates/form/banktransfer.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/view/adminhtml/templates/form/cashondelivery.phtml b/app/code/Magento/OfflinePayments/view/adminhtml/templates/form/cashondelivery.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/view/adminhtml/templates/form/checkmo.phtml b/app/code/Magento/OfflinePayments/view/adminhtml/templates/form/checkmo.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/view/adminhtml/templates/form/purchaseorder.phtml b/app/code/Magento/OfflinePayments/view/adminhtml/templates/form/purchaseorder.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/view/adminhtml/templates/info/checkmo.phtml b/app/code/Magento/OfflinePayments/view/adminhtml/templates/info/checkmo.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/view/adminhtml/templates/info/pdf/checkmo.phtml b/app/code/Magento/OfflinePayments/view/adminhtml/templates/info/pdf/checkmo.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/view/adminhtml/templates/info/pdf/purchaseorder.phtml b/app/code/Magento/OfflinePayments/view/adminhtml/templates/info/pdf/purchaseorder.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/view/adminhtml/templates/info/purchaseorder.phtml b/app/code/Magento/OfflinePayments/view/adminhtml/templates/info/purchaseorder.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/view/frontend/layout/checkout_index_index.xml b/app/code/Magento/OfflinePayments/view/frontend/layout/checkout_index_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/view/frontend/templates/form/banktransfer.phtml b/app/code/Magento/OfflinePayments/view/frontend/templates/form/banktransfer.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/view/frontend/templates/form/cashondelivery.phtml b/app/code/Magento/OfflinePayments/view/frontend/templates/form/cashondelivery.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/view/frontend/templates/form/checkmo.phtml b/app/code/Magento/OfflinePayments/view/frontend/templates/form/checkmo.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/view/frontend/templates/form/purchaseorder.phtml b/app/code/Magento/OfflinePayments/view/frontend/templates/form/purchaseorder.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/view/frontend/templates/info/checkmo.phtml b/app/code/Magento/OfflinePayments/view/frontend/templates/info/checkmo.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/view/frontend/templates/info/purchaseorder.phtml b/app/code/Magento/OfflinePayments/view/frontend/templates/info/purchaseorder.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/view/frontend/web/js/view/payment/method-renderer/banktransfer-method.js b/app/code/Magento/OfflinePayments/view/frontend/web/js/view/payment/method-renderer/banktransfer-method.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/view/frontend/web/js/view/payment/method-renderer/cashondelivery-method.js b/app/code/Magento/OfflinePayments/view/frontend/web/js/view/payment/method-renderer/cashondelivery-method.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/view/frontend/web/js/view/payment/method-renderer/checkmo-method.js b/app/code/Magento/OfflinePayments/view/frontend/web/js/view/payment/method-renderer/checkmo-method.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/view/frontend/web/js/view/payment/method-renderer/purchaseorder-method.js b/app/code/Magento/OfflinePayments/view/frontend/web/js/view/payment/method-renderer/purchaseorder-method.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/view/frontend/web/js/view/payment/offline-payments.js b/app/code/Magento/OfflinePayments/view/frontend/web/js/view/payment/offline-payments.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/view/frontend/web/template/payment/banktransfer.html b/app/code/Magento/OfflinePayments/view/frontend/web/template/payment/banktransfer.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/view/frontend/web/template/payment/cashondelivery.html b/app/code/Magento/OfflinePayments/view/frontend/web/template/payment/cashondelivery.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/view/frontend/web/template/payment/checkmo.html b/app/code/Magento/OfflinePayments/view/frontend/web/template/payment/checkmo.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflinePayments/view/frontend/web/template/payment/purchaseorder-form.html b/app/code/Magento/OfflinePayments/view/frontend/web/template/payment/purchaseorder-form.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/Block/Adminhtml/Carrier/Tablerate/Grid.php b/app/code/Magento/OfflineShipping/Block/Adminhtml/Carrier/Tablerate/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/Block/Adminhtml/Form/Field/Export.php b/app/code/Magento/OfflineShipping/Block/Adminhtml/Form/Field/Export.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/Block/Adminhtml/Form/Field/Import.php b/app/code/Magento/OfflineShipping/Block/Adminhtml/Form/Field/Import.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/Controller/Adminhtml/System/Config/ExportTablerates.php b/app/code/Magento/OfflineShipping/Controller/Adminhtml/System/Config/ExportTablerates.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/LICENSE.txt b/app/code/Magento/OfflineShipping/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/LICENSE_AFL.txt b/app/code/Magento/OfflineShipping/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/Model/Carrier/Flatrate.php b/app/code/Magento/OfflineShipping/Model/Carrier/Flatrate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/Model/Carrier/Flatrate/ItemPriceCalculator.php b/app/code/Magento/OfflineShipping/Model/Carrier/Flatrate/ItemPriceCalculator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/Model/Carrier/Freeshipping.php b/app/code/Magento/OfflineShipping/Model/Carrier/Freeshipping.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/Model/Carrier/Pickup.php b/app/code/Magento/OfflineShipping/Model/Carrier/Pickup.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/Model/Carrier/Tablerate.php b/app/code/Magento/OfflineShipping/Model/Carrier/Tablerate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/Model/Config/Backend/Tablerate.php b/app/code/Magento/OfflineShipping/Model/Config/Backend/Tablerate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/Model/Config/Source/Flatrate.php b/app/code/Magento/OfflineShipping/Model/Config/Source/Flatrate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/Model/Config/Source/Tablerate.php b/app/code/Magento/OfflineShipping/Model/Config/Source/Tablerate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/Model/Plugin/Checkout/Block/Cart/Shipping.php b/app/code/Magento/OfflineShipping/Model/Plugin/Checkout/Block/Cart/Shipping.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/Model/Quote/Address/FreeShipping.php b/app/code/Magento/OfflineShipping/Model/Quote/Address/FreeShipping.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate.php b/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/CSV/ColumnNotFoundException.php b/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/CSV/ColumnNotFoundException.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/CSV/ColumnResolver.php b/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/CSV/ColumnResolver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/CSV/RowException.php b/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/CSV/RowException.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/CSV/RowParser.php b/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/CSV/RowParser.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/Collection.php b/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/DataHashGenerator.php b/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/DataHashGenerator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/Import.php b/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/Import.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/LocationDirectory.php b/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/LocationDirectory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/RateQuery.php b/app/code/Magento/OfflineShipping/Model/ResourceModel/Carrier/Tablerate/RateQuery.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/Model/SalesRule/Calculator.php b/app/code/Magento/OfflineShipping/Model/SalesRule/Calculator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/Model/SalesRule/Rule.php b/app/code/Magento/OfflineShipping/Model/SalesRule/Rule.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/Model/Source/SalesRule/FreeShippingOptions.php b/app/code/Magento/OfflineShipping/Model/Source/SalesRule/FreeShippingOptions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/README.md b/app/code/Magento/OfflineShipping/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/Setup/InstallSchema.php b/app/code/Magento/OfflineShipping/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/Setup/UpgradeData.php b/app/code/Magento/OfflineShipping/Setup/UpgradeData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/Setup/UpgradeSchema.php b/app/code/Magento/OfflineShipping/Setup/UpgradeSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/Test/Unit/Block/Adminhtml/Carrier/Tablerate/GridTest.php b/app/code/Magento/OfflineShipping/Test/Unit/Block/Adminhtml/Carrier/Tablerate/GridTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/Test/Unit/Block/Adminhtml/Form/Field/ExportTest.php b/app/code/Magento/OfflineShipping/Test/Unit/Block/Adminhtml/Form/Field/ExportTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/Test/Unit/Block/Adminhtml/Form/Field/ImportTest.php b/app/code/Magento/OfflineShipping/Test/Unit/Block/Adminhtml/Form/Field/ImportTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/Test/Unit/Model/Carrier/FlatrateTest.php b/app/code/Magento/OfflineShipping/Test/Unit/Model/Carrier/FlatrateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/Test/Unit/Model/Carrier/TablerateTest.php b/app/code/Magento/OfflineShipping/Test/Unit/Model/Carrier/TablerateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/Test/Unit/Model/Config/Backend/TablerateTest.php b/app/code/Magento/OfflineShipping/Test/Unit/Model/Config/Backend/TablerateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/Test/Unit/Model/Config/Source/FlatrateTest.php b/app/code/Magento/OfflineShipping/Test/Unit/Model/Config/Source/FlatrateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/Test/Unit/Model/Config/Source/TablerateTest.php b/app/code/Magento/OfflineShipping/Test/Unit/Model/Config/Source/TablerateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/Test/Unit/Model/Plugin/Checkout/Block/Cart/ShippingTest.php b/app/code/Magento/OfflineShipping/Test/Unit/Model/Plugin/Checkout/Block/Cart/ShippingTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/Test/Unit/Model/Quote/Address/FreeShippingTest.php b/app/code/Magento/OfflineShipping/Test/Unit/Model/Quote/Address/FreeShippingTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/Test/Unit/Model/ResourceModel/Carrier/Tablerate/CSV/ColumnResolverTest.php b/app/code/Magento/OfflineShipping/Test/Unit/Model/ResourceModel/Carrier/Tablerate/CSV/ColumnResolverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/Test/Unit/Model/ResourceModel/Carrier/Tablerate/CSV/RowParserTest.php b/app/code/Magento/OfflineShipping/Test/Unit/Model/ResourceModel/Carrier/Tablerate/CSV/RowParserTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/Test/Unit/Model/ResourceModel/Carrier/Tablerate/ImportTest.php b/app/code/Magento/OfflineShipping/Test/Unit/Model/ResourceModel/Carrier/Tablerate/ImportTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/Test/Unit/Model/SalesRule/CalculatorTest.php b/app/code/Magento/OfflineShipping/Test/Unit/Model/SalesRule/CalculatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/composer.json b/app/code/Magento/OfflineShipping/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/etc/adminhtml/routes.xml b/app/code/Magento/OfflineShipping/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/etc/adminhtml/system.xml b/app/code/Magento/OfflineShipping/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/etc/config.xml b/app/code/Magento/OfflineShipping/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/etc/di.xml b/app/code/Magento/OfflineShipping/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/etc/fieldset.xml b/app/code/Magento/OfflineShipping/etc/fieldset.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/etc/module.xml b/app/code/Magento/OfflineShipping/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/i18n/en_US.csv b/app/code/Magento/OfflineShipping/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/registration.php b/app/code/Magento/OfflineShipping/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/view/adminhtml/ui_component/sales_rule_form.xml b/app/code/Magento/OfflineShipping/view/adminhtml/ui_component/sales_rule_form.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/view/adminhtml/ui_component/salesrulestaging_update_form.xml b/app/code/Magento/OfflineShipping/view/adminhtml/ui_component/salesrulestaging_update_form.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/view/frontend/layout/checkout_cart_index.xml b/app/code/Magento/OfflineShipping/view/frontend/layout/checkout_cart_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/view/frontend/layout/checkout_index_index.xml b/app/code/Magento/OfflineShipping/view/frontend/layout/checkout_index_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/view/frontend/web/js/model/shipping-rates-validation-rules/flatrate.js b/app/code/Magento/OfflineShipping/view/frontend/web/js/model/shipping-rates-validation-rules/flatrate.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/view/frontend/web/js/model/shipping-rates-validation-rules/freeshipping.js b/app/code/Magento/OfflineShipping/view/frontend/web/js/model/shipping-rates-validation-rules/freeshipping.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/view/frontend/web/js/model/shipping-rates-validation-rules/tablerate.js b/app/code/Magento/OfflineShipping/view/frontend/web/js/model/shipping-rates-validation-rules/tablerate.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/view/frontend/web/js/model/shipping-rates-validator/flatrate.js b/app/code/Magento/OfflineShipping/view/frontend/web/js/model/shipping-rates-validator/flatrate.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/view/frontend/web/js/model/shipping-rates-validator/freeshipping.js b/app/code/Magento/OfflineShipping/view/frontend/web/js/model/shipping-rates-validator/freeshipping.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/view/frontend/web/js/model/shipping-rates-validator/tablerate.js b/app/code/Magento/OfflineShipping/view/frontend/web/js/model/shipping-rates-validator/tablerate.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/view/frontend/web/js/view/shipping-rates-validation/flatrate.js b/app/code/Magento/OfflineShipping/view/frontend/web/js/view/shipping-rates-validation/flatrate.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/view/frontend/web/js/view/shipping-rates-validation/freeshipping.js b/app/code/Magento/OfflineShipping/view/frontend/web/js/view/shipping-rates-validation/freeshipping.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/OfflineShipping/view/frontend/web/js/view/shipping-rates-validation/tablerate.js b/app/code/Magento/OfflineShipping/view/frontend/web/js/view/shipping-rates-validation/tablerate.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Block/Javascript.php b/app/code/Magento/PageCache/Block/Javascript.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Block/System/Config/Form/Field/Export.php b/app/code/Magento/PageCache/Block/System/Config/Form/Field/Export.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Block/System/Config/Form/Field/Export/Varnish4.php b/app/code/Magento/PageCache/Block/System/Config/Form/Field/Export/Varnish4.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Block/System/Config/Form/Field/Export/Varnish5.php b/app/code/Magento/PageCache/Block/System/Config/Form/Field/Export/Varnish5.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Console/Command/GenerateVclCommand.php b/app/code/Magento/PageCache/Console/Command/GenerateVclCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Controller/Adminhtml/PageCache/ExportVarnishConfig.php b/app/code/Magento/PageCache/Controller/Adminhtml/PageCache/ExportVarnishConfig.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Controller/Block.php b/app/code/Magento/PageCache/Controller/Block.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Controller/Block/Esi.php b/app/code/Magento/PageCache/Controller/Block/Esi.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Controller/Block/Render.php b/app/code/Magento/PageCache/Controller/Block/Render.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Exception/UnsupportedVarnishVersion.php b/app/code/Magento/PageCache/Exception/UnsupportedVarnishVersion.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Helper/Data.php b/app/code/Magento/PageCache/Helper/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/LICENSE.txt b/app/code/Magento/PageCache/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/LICENSE_AFL.txt b/app/code/Magento/PageCache/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Model/App/CacheIdentifierPlugin.php b/app/code/Magento/PageCache/Model/App/CacheIdentifierPlugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Model/App/FrontController/BuiltinPlugin.php b/app/code/Magento/PageCache/Model/App/FrontController/BuiltinPlugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Model/App/FrontController/VarnishPlugin.php b/app/code/Magento/PageCache/Model/App/FrontController/VarnishPlugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Model/App/PageCachePlugin.php b/app/code/Magento/PageCache/Model/App/PageCachePlugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Model/App/Response/HttpPlugin.php b/app/code/Magento/PageCache/Model/App/Response/HttpPlugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Model/Cache/Server.php b/app/code/Magento/PageCache/Model/Cache/Server.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Model/Cache/Type.php b/app/code/Magento/PageCache/Model/Cache/Type.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Model/Config.php b/app/code/Magento/PageCache/Model/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Model/Controller/Result/BuiltinPlugin.php b/app/code/Magento/PageCache/Model/Controller/Result/BuiltinPlugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Model/Controller/Result/VarnishPlugin.php b/app/code/Magento/PageCache/Model/Controller/Result/VarnishPlugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Model/DepersonalizeChecker.php b/app/code/Magento/PageCache/Model/DepersonalizeChecker.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Model/Layout/DepersonalizePlugin.php b/app/code/Magento/PageCache/Model/Layout/DepersonalizePlugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Model/Layout/LayoutPlugin.php b/app/code/Magento/PageCache/Model/Layout/LayoutPlugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Model/Layout/MergePlugin.php b/app/code/Magento/PageCache/Model/Layout/MergePlugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Model/System/Config/Backend/Ttl.php b/app/code/Magento/PageCache/Model/System/Config/Backend/Ttl.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Model/System/Config/Backend/Varnish.php b/app/code/Magento/PageCache/Model/System/Config/Backend/Varnish.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Model/System/Config/Source/Application.php b/app/code/Magento/PageCache/Model/System/Config/Source/Application.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Model/Varnish/VclGenerator.php b/app/code/Magento/PageCache/Model/Varnish/VclGenerator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Model/Varnish/VclTemplateLocator.php b/app/code/Magento/PageCache/Model/Varnish/VclTemplateLocator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Model/VclGeneratorInterface.php b/app/code/Magento/PageCache/Model/VclGeneratorInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Model/VclTemplateLocatorInterface.php b/app/code/Magento/PageCache/Model/VclTemplateLocatorInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Observer/FlushAllCache.php b/app/code/Magento/PageCache/Observer/FlushAllCache.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Observer/FlushCacheByTags.php b/app/code/Magento/PageCache/Observer/FlushCacheByTags.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Observer/FlushFormKey.php b/app/code/Magento/PageCache/Observer/FlushFormKey.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Observer/InvalidateCache.php b/app/code/Magento/PageCache/Observer/InvalidateCache.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Observer/ProcessLayoutRenderElement.php b/app/code/Magento/PageCache/Observer/ProcessLayoutRenderElement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Observer/RegisterFormKeyFromCookie.php b/app/code/Magento/PageCache/Observer/RegisterFormKeyFromCookie.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/README.md b/app/code/Magento/PageCache/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Test/Unit/App/CacheIdentifierPluginTest.php b/app/code/Magento/PageCache/Test/Unit/App/CacheIdentifierPluginTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Test/Unit/Block/Controller/StubBlock.php b/app/code/Magento/PageCache/Test/Unit/Block/Controller/StubBlock.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Test/Unit/Block/JavascriptTest.php b/app/code/Magento/PageCache/Test/Unit/Block/JavascriptTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Test/Unit/Controller/Adminhtml/PageCache/ExportVarnishConfigTest.php b/app/code/Magento/PageCache/Test/Unit/Controller/Adminhtml/PageCache/ExportVarnishConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Test/Unit/Controller/Block/EsiTest.php b/app/code/Magento/PageCache/Test/Unit/Controller/Block/EsiTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Test/Unit/Controller/Block/RenderTest.php b/app/code/Magento/PageCache/Test/Unit/Controller/Block/RenderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Test/Unit/Helper/DataTest.php b/app/code/Magento/PageCache/Test/Unit/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Test/Unit/Model/App/FrontController/BuiltinPluginTest.php b/app/code/Magento/PageCache/Test/Unit/Model/App/FrontController/BuiltinPluginTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Test/Unit/Model/App/FrontController/VarnishPluginTest.php b/app/code/Magento/PageCache/Test/Unit/Model/App/FrontController/VarnishPluginTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Test/Unit/Model/App/PageCachePluginTest.php b/app/code/Magento/PageCache/Test/Unit/Model/App/PageCachePluginTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Test/Unit/Model/App/Response/HttpPluginTest.php b/app/code/Magento/PageCache/Test/Unit/Model/App/Response/HttpPluginTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Test/Unit/Model/Cache/ServerTest.php b/app/code/Magento/PageCache/Test/Unit/Model/Cache/ServerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Test/Unit/Model/Cache/TypeTest.php b/app/code/Magento/PageCache/Test/Unit/Model/Cache/TypeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Test/Unit/Model/ConfigTest.php b/app/code/Magento/PageCache/Test/Unit/Model/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Test/Unit/Model/Controller/Result/BuiltinPluginTest.php b/app/code/Magento/PageCache/Test/Unit/Model/Controller/Result/BuiltinPluginTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Test/Unit/Model/Controller/Result/VarnishPluginTest.php b/app/code/Magento/PageCache/Test/Unit/Model/Controller/Result/VarnishPluginTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Test/Unit/Model/DepersonalizeCheckerTest.php b/app/code/Magento/PageCache/Test/Unit/Model/DepersonalizeCheckerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Test/Unit/Model/Layout/DepersonalizePluginTest.php b/app/code/Magento/PageCache/Test/Unit/Model/Layout/DepersonalizePluginTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Test/Unit/Model/Layout/LayoutPluginTest.php b/app/code/Magento/PageCache/Test/Unit/Model/Layout/LayoutPluginTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Test/Unit/Model/_files/result.vcl b/app/code/Magento/PageCache/Test/Unit/Model/_files/result.vcl
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Test/Unit/Model/_files/test.vcl b/app/code/Magento/PageCache/Test/Unit/Model/_files/test.vcl
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Test/Unit/Observer/FlushAllCacheTest.php b/app/code/Magento/PageCache/Test/Unit/Observer/FlushAllCacheTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Test/Unit/Observer/FlushCacheByTagsTest.php b/app/code/Magento/PageCache/Test/Unit/Observer/FlushCacheByTagsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Test/Unit/Observer/FlushFormKeyTest.php b/app/code/Magento/PageCache/Test/Unit/Observer/FlushFormKeyTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Test/Unit/Observer/InvalidateCacheTest.php b/app/code/Magento/PageCache/Test/Unit/Observer/InvalidateCacheTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Test/Unit/Observer/ProcessLayoutRenderElementTest.php b/app/code/Magento/PageCache/Test/Unit/Observer/ProcessLayoutRenderElementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/Test/Unit/Observer/RegisterFormKeyFromCookieTest.php b/app/code/Magento/PageCache/Test/Unit/Observer/RegisterFormKeyFromCookieTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/composer.json b/app/code/Magento/PageCache/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/etc/adminhtml/di.xml b/app/code/Magento/PageCache/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/etc/adminhtml/routes.xml b/app/code/Magento/PageCache/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/etc/adminhtml/system.xml b/app/code/Magento/PageCache/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/etc/cache.xml b/app/code/Magento/PageCache/etc/cache.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/etc/config.xml b/app/code/Magento/PageCache/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/etc/di.xml b/app/code/Magento/PageCache/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/etc/events.xml b/app/code/Magento/PageCache/etc/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/etc/frontend/di.xml b/app/code/Magento/PageCache/etc/frontend/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/etc/frontend/events.xml b/app/code/Magento/PageCache/etc/frontend/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/etc/frontend/routes.xml b/app/code/Magento/PageCache/etc/frontend/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/etc/module.xml b/app/code/Magento/PageCache/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/etc/varnish4.vcl b/app/code/Magento/PageCache/etc/varnish4.vcl
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/etc/varnish5.vcl b/app/code/Magento/PageCache/etc/varnish5.vcl
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/i18n/en_US.csv b/app/code/Magento/PageCache/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/registration.php b/app/code/Magento/PageCache/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/view/adminhtml/layout/adminhtml_system_config_edit.xml b/app/code/Magento/PageCache/view/adminhtml/layout/adminhtml_system_config_edit.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/view/adminhtml/templates/page_cache_validation.phtml b/app/code/Magento/PageCache/view/adminhtml/templates/page_cache_validation.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/view/frontend/layout/default.xml b/app/code/Magento/PageCache/view/frontend/layout/default.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/view/frontend/requirejs-config.js b/app/code/Magento/PageCache/view/frontend/requirejs-config.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/view/frontend/templates/javascript.phtml b/app/code/Magento/PageCache/view/frontend/templates/javascript.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/view/frontend/templates/js/components.phtml b/app/code/Magento/PageCache/view/frontend/templates/js/components.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/PageCache/view/frontend/web/js/page-cache.js b/app/code/Magento/PageCache/view/frontend/web/js/page-cache.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Api/Data/PaymentMethodInterface.php b/app/code/Magento/Payment/Api/Data/PaymentMethodInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Api/PaymentMethodListInterface.php b/app/code/Magento/Payment/Api/PaymentMethodListInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Api/PaymentVerificationInterface.php b/app/code/Magento/Payment/Api/PaymentVerificationInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Block/Adminhtml/Transparent/Form.php b/app/code/Magento/Payment/Block/Adminhtml/Transparent/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Block/ConfigurableInfo.php b/app/code/Magento/Payment/Block/ConfigurableInfo.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Block/Form.php b/app/code/Magento/Payment/Block/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Block/Form/Cc.php b/app/code/Magento/Payment/Block/Form/Cc.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Block/Form/Container.php b/app/code/Magento/Payment/Block/Form/Container.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Block/Info.php b/app/code/Magento/Payment/Block/Info.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Block/Info/AbstractContainer.php b/app/code/Magento/Payment/Block/Info/AbstractContainer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Block/Info/Cc.php b/app/code/Magento/Payment/Block/Info/Cc.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Block/Info/Instructions.php b/app/code/Magento/Payment/Block/Info/Instructions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Block/Info/Substitution.php b/app/code/Magento/Payment/Block/Info/Substitution.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Block/Transparent/Form.php b/app/code/Magento/Payment/Block/Transparent/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Block/Transparent/Iframe.php b/app/code/Magento/Payment/Block/Transparent/Iframe.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Block/Transparent/Info.php b/app/code/Magento/Payment/Block/Transparent/Info.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Command/CommandException.php b/app/code/Magento/Payment/Gateway/Command/CommandException.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Command/CommandManager.php b/app/code/Magento/Payment/Gateway/Command/CommandManager.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Command/CommandManagerInterface.php b/app/code/Magento/Payment/Gateway/Command/CommandManagerInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Command/CommandManagerPool.php b/app/code/Magento/Payment/Gateway/Command/CommandManagerPool.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Command/CommandManagerPoolInterface.php b/app/code/Magento/Payment/Gateway/Command/CommandManagerPoolInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Command/CommandPool.php b/app/code/Magento/Payment/Gateway/Command/CommandPool.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Command/CommandPoolInterface.php b/app/code/Magento/Payment/Gateway/Command/CommandPoolInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Command/GatewayCommand.php b/app/code/Magento/Payment/Gateway/Command/GatewayCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Command/NullCommand.php b/app/code/Magento/Payment/Gateway/Command/NullCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Command/Result/ArrayResult.php b/app/code/Magento/Payment/Gateway/Command/Result/ArrayResult.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Command/Result/BoolResult.php b/app/code/Magento/Payment/Gateway/Command/Result/BoolResult.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Command/ResultInterface.php b/app/code/Magento/Payment/Gateway/Command/ResultInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/CommandInterface.php b/app/code/Magento/Payment/Gateway/CommandInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Config/Config.php b/app/code/Magento/Payment/Gateway/Config/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Config/ConfigFactory.php b/app/code/Magento/Payment/Gateway/Config/ConfigFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Config/ConfigValueHandler.php b/app/code/Magento/Payment/Gateway/Config/ConfigValueHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Config/ValueHandlerInterface.php b/app/code/Magento/Payment/Gateway/Config/ValueHandlerInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Config/ValueHandlerPool.php b/app/code/Magento/Payment/Gateway/Config/ValueHandlerPool.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Config/ValueHandlerPoolInterface.php b/app/code/Magento/Payment/Gateway/Config/ValueHandlerPoolInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/ConfigFactoryInterface.php b/app/code/Magento/Payment/Gateway/ConfigFactoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/ConfigInterface.php b/app/code/Magento/Payment/Gateway/ConfigInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Data/AddressAdapterInterface.php b/app/code/Magento/Payment/Gateway/Data/AddressAdapterInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Data/Order/AddressAdapter.php b/app/code/Magento/Payment/Gateway/Data/Order/AddressAdapter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Data/Order/OrderAdapter.php b/app/code/Magento/Payment/Gateway/Data/Order/OrderAdapter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Data/OrderAdapterInterface.php b/app/code/Magento/Payment/Gateway/Data/OrderAdapterInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Data/PaymentDataObject.php b/app/code/Magento/Payment/Gateway/Data/PaymentDataObject.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Data/PaymentDataObjectFactory.php b/app/code/Magento/Payment/Gateway/Data/PaymentDataObjectFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Data/PaymentDataObjectFactoryInterface.php b/app/code/Magento/Payment/Gateway/Data/PaymentDataObjectFactoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Data/PaymentDataObjectInterface.php b/app/code/Magento/Payment/Gateway/Data/PaymentDataObjectInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Data/Quote/AddressAdapter.php b/app/code/Magento/Payment/Gateway/Data/Quote/AddressAdapter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Data/Quote/QuoteAdapter.php b/app/code/Magento/Payment/Gateway/Data/Quote/QuoteAdapter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/ErrorMapper/ErrorMessageMapper.php b/app/code/Magento/Payment/Gateway/ErrorMapper/ErrorMessageMapper.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/ErrorMapper/ErrorMessageMapperInterface.php b/app/code/Magento/Payment/Gateway/ErrorMapper/ErrorMessageMapperInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/ErrorMapper/MappingData.php b/app/code/Magento/Payment/Gateway/ErrorMapper/MappingData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/ErrorMapper/NullMappingData.php b/app/code/Magento/Payment/Gateway/ErrorMapper/NullMappingData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/ErrorMapper/XmlToArrayConverter.php b/app/code/Magento/Payment/Gateway/ErrorMapper/XmlToArrayConverter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Helper/ContextHelper.php b/app/code/Magento/Payment/Gateway/Helper/ContextHelper.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Helper/SubjectReader.php b/app/code/Magento/Payment/Gateway/Helper/SubjectReader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Http/Client/Soap.php b/app/code/Magento/Payment/Gateway/Http/Client/Soap.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Http/Client/Zend.php b/app/code/Magento/Payment/Gateway/Http/Client/Zend.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Http/ClientException.php b/app/code/Magento/Payment/Gateway/Http/ClientException.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Http/ClientInterface.php b/app/code/Magento/Payment/Gateway/Http/ClientInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Http/Converter/HtmlFormConverter.php b/app/code/Magento/Payment/Gateway/Http/Converter/HtmlFormConverter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Http/Converter/Soap/ObjectToArrayConverter.php b/app/code/Magento/Payment/Gateway/Http/Converter/Soap/ObjectToArrayConverter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Http/ConverterException.php b/app/code/Magento/Payment/Gateway/Http/ConverterException.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Http/ConverterInterface.php b/app/code/Magento/Payment/Gateway/Http/ConverterInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Http/Transfer.php b/app/code/Magento/Payment/Gateway/Http/Transfer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Http/TransferBuilder.php b/app/code/Magento/Payment/Gateway/Http/TransferBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Http/TransferFactoryInterface.php b/app/code/Magento/Payment/Gateway/Http/TransferFactoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Http/TransferInterface.php b/app/code/Magento/Payment/Gateway/Http/TransferInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Request/BuilderComposite.php b/app/code/Magento/Payment/Gateway/Request/BuilderComposite.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Request/BuilderInterface.php b/app/code/Magento/Payment/Gateway/Request/BuilderInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Response/HandlerChain.php b/app/code/Magento/Payment/Gateway/Response/HandlerChain.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Response/HandlerInterface.php b/app/code/Magento/Payment/Gateway/Response/HandlerInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Validator/AbstractValidator.php b/app/code/Magento/Payment/Gateway/Validator/AbstractValidator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Validator/CountryValidator.php b/app/code/Magento/Payment/Gateway/Validator/CountryValidator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Validator/Result.php b/app/code/Magento/Payment/Gateway/Validator/Result.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Validator/ResultInterface.php b/app/code/Magento/Payment/Gateway/Validator/ResultInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Validator/ValidatorComposite.php b/app/code/Magento/Payment/Gateway/Validator/ValidatorComposite.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Validator/ValidatorInterface.php b/app/code/Magento/Payment/Gateway/Validator/ValidatorInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Validator/ValidatorPool.php b/app/code/Magento/Payment/Gateway/Validator/ValidatorPool.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Gateway/Validator/ValidatorPoolInterface.php b/app/code/Magento/Payment/Gateway/Validator/ValidatorPoolInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Helper/Data.php b/app/code/Magento/Payment/Helper/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Helper/Formatter.php b/app/code/Magento/Payment/Helper/Formatter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/LICENSE.txt b/app/code/Magento/Payment/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/LICENSE_AFL.txt b/app/code/Magento/Payment/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/Cart.php b/app/code/Magento/Payment/Model/Cart.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/Cart/SalesModel/Factory.php b/app/code/Magento/Payment/Model/Cart/SalesModel/Factory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/Cart/SalesModel/Order.php b/app/code/Magento/Payment/Model/Cart/SalesModel/Order.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/Cart/SalesModel/Quote.php b/app/code/Magento/Payment/Model/Cart/SalesModel/Quote.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/Cart/SalesModel/SalesModelInterface.php b/app/code/Magento/Payment/Model/Cart/SalesModel/SalesModelInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/CcConfig.php b/app/code/Magento/Payment/Model/CcConfig.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/CcConfigProvider.php b/app/code/Magento/Payment/Model/CcConfigProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/CcGenericConfigProvider.php b/app/code/Magento/Payment/Model/CcGenericConfigProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/Checks/CanUseCheckout.php b/app/code/Magento/Payment/Model/Checks/CanUseCheckout.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/Checks/CanUseForCountry.php b/app/code/Magento/Payment/Model/Checks/CanUseForCountry.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/Checks/CanUseForCountry/CountryProvider.php b/app/code/Magento/Payment/Model/Checks/CanUseForCountry/CountryProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/Checks/CanUseForCurrency.php b/app/code/Magento/Payment/Model/Checks/CanUseForCurrency.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/Checks/CanUseInternal.php b/app/code/Magento/Payment/Model/Checks/CanUseInternal.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/Checks/Composite.php b/app/code/Magento/Payment/Model/Checks/Composite.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/Checks/SpecificationFactory.php b/app/code/Magento/Payment/Model/Checks/SpecificationFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/Checks/SpecificationInterface.php b/app/code/Magento/Payment/Model/Checks/SpecificationInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/Checks/TotalMinMax.php b/app/code/Magento/Payment/Model/Checks/TotalMinMax.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/Checks/ZeroTotal.php b/app/code/Magento/Payment/Model/Checks/ZeroTotal.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/Config.php b/app/code/Magento/Payment/Model/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/Config/Converter.php b/app/code/Magento/Payment/Model/Config/Converter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/Config/Reader.php b/app/code/Magento/Payment/Model/Config/Reader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/Config/SchemaLocator.php b/app/code/Magento/Payment/Model/Config/SchemaLocator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/Config/Source/Allmethods.php b/app/code/Magento/Payment/Model/Config/Source/Allmethods.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/Config/Source/Allspecificcountries.php b/app/code/Magento/Payment/Model/Config/Source/Allspecificcountries.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/Config/Source/Cctype.php b/app/code/Magento/Payment/Model/Config/Source/Cctype.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/IframeConfigProvider.php b/app/code/Magento/Payment/Model/IframeConfigProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/Info.php b/app/code/Magento/Payment/Model/Info.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/InfoInterface.php b/app/code/Magento/Payment/Model/InfoInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/Method/AbstractMethod.php b/app/code/Magento/Payment/Model/Method/AbstractMethod.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/Method/Adapter.php b/app/code/Magento/Payment/Model/Method/Adapter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/Method/Cc.php b/app/code/Magento/Payment/Model/Method/Cc.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/Method/ConfigInterface.php b/app/code/Magento/Payment/Model/Method/ConfigInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/Method/Factory.php b/app/code/Magento/Payment/Model/Method/Factory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/Method/Free.php b/app/code/Magento/Payment/Model/Method/Free.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/Method/InstanceFactory.php b/app/code/Magento/Payment/Model/Method/InstanceFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/Method/Logger.php b/app/code/Magento/Payment/Model/Method/Logger.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/Method/Online/GatewayInterface.php b/app/code/Magento/Payment/Model/Method/Online/GatewayInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/Method/Specification/AbstractSpecification.php b/app/code/Magento/Payment/Model/Method/Specification/AbstractSpecification.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/Method/Specification/Composite.php b/app/code/Magento/Payment/Model/Method/Specification/Composite.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/Method/Specification/Factory.php b/app/code/Magento/Payment/Model/Method/Specification/Factory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/Method/SpecificationInterface.php b/app/code/Magento/Payment/Model/Method/SpecificationInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/Method/Substitution.php b/app/code/Magento/Payment/Model/Method/Substitution.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/Method/TransparentInterface.php b/app/code/Magento/Payment/Model/Method/TransparentInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/MethodInterface.php b/app/code/Magento/Payment/Model/MethodInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/MethodList.php b/app/code/Magento/Payment/Model/MethodList.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/Paygate/Result.php b/app/code/Magento/Payment/Model/Paygate/Result.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/PaymentMethod.php b/app/code/Magento/Payment/Model/PaymentMethod.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/PaymentMethodList.php b/app/code/Magento/Payment/Model/PaymentMethodList.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/ResourceModel/Grid/GroupList.php b/app/code/Magento/Payment/Model/ResourceModel/Grid/GroupList.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/ResourceModel/Grid/TypeList.php b/app/code/Magento/Payment/Model/ResourceModel/Grid/TypeList.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/Source/Cctype.php b/app/code/Magento/Payment/Model/Source/Cctype.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Model/Source/Invoice.php b/app/code/Magento/Payment/Model/Source/Invoice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Observer/AbstractDataAssignObserver.php b/app/code/Magento/Payment/Observer/AbstractDataAssignObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Observer/SalesOrderBeforeSaveObserver.php b/app/code/Magento/Payment/Observer/SalesOrderBeforeSaveObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Observer/UpdateOrderStatusForPaymentMethodsObserver.php b/app/code/Magento/Payment/Observer/UpdateOrderStatusForPaymentMethodsObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Plugin/PaymentConfigurationProcess.php b/app/code/Magento/Payment/Plugin/PaymentConfigurationProcess.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/README.md b/app/code/Magento/Payment/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Block/Adminhtml/Transparent/FormTest.php b/app/code/Magento/Payment/Test/Unit/Block/Adminhtml/Transparent/FormTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Block/Adminhtml/Transparent/FormTesting.php b/app/code/Magento/Payment/Test/Unit/Block/Adminhtml/Transparent/FormTesting.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Block/Form/ContainerTest.php b/app/code/Magento/Payment/Test/Unit/Block/Form/ContainerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Block/FormTest.php b/app/code/Magento/Payment/Test/Unit/Block/FormTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Block/Info/CcTest.php b/app/code/Magento/Payment/Test/Unit/Block/Info/CcTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Block/Info/ContainerAbstractTest.php b/app/code/Magento/Payment/Test/Unit/Block/Info/ContainerAbstractTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Block/Info/InstructionsTest.php b/app/code/Magento/Payment/Test/Unit/Block/Info/InstructionsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Block/Info/SubstitutionTest.php b/app/code/Magento/Payment/Test/Unit/Block/Info/SubstitutionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Block/InfoTest.php b/app/code/Magento/Payment/Test/Unit/Block/InfoTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Block/Transparent/FormTest.php b/app/code/Magento/Payment/Test/Unit/Block/Transparent/FormTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Block/Transparent/FormTesting.php b/app/code/Magento/Payment/Test/Unit/Block/Transparent/FormTesting.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Gateway/Command/CommandPoolTest.php b/app/code/Magento/Payment/Test/Unit/Gateway/Command/CommandPoolTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Gateway/Command/GatewayCommandTest.php b/app/code/Magento/Payment/Test/Unit/Gateway/Command/GatewayCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Gateway/Config/ConfigTest.php b/app/code/Magento/Payment/Test/Unit/Gateway/Config/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Gateway/Config/ConfigValueHandlerTest.php b/app/code/Magento/Payment/Test/Unit/Gateway/Config/ConfigValueHandlerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Gateway/Config/ValueHandlerPoolTest.php b/app/code/Magento/Payment/Test/Unit/Gateway/Config/ValueHandlerPoolTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Gateway/Data/Order/AddressAdapterTest.php b/app/code/Magento/Payment/Test/Unit/Gateway/Data/Order/AddressAdapterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Gateway/Data/Order/OrderAdapterTest.php b/app/code/Magento/Payment/Test/Unit/Gateway/Data/Order/OrderAdapterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Gateway/Data/PaymentDataObjectFactoryTest.php b/app/code/Magento/Payment/Test/Unit/Gateway/Data/PaymentDataObjectFactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Gateway/Data/PaymentDataObjectTest.php b/app/code/Magento/Payment/Test/Unit/Gateway/Data/PaymentDataObjectTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Gateway/Data/Quote/AddressAdapterTest.php b/app/code/Magento/Payment/Test/Unit/Gateway/Data/Quote/AddressAdapterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Gateway/Data/Quote/QuoteAdapterTest.php b/app/code/Magento/Payment/Test/Unit/Gateway/Data/Quote/QuoteAdapterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Gateway/Http/Client/SoapTest.php b/app/code/Magento/Payment/Test/Unit/Gateway/Http/Client/SoapTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Gateway/Http/Client/ZendTest.php b/app/code/Magento/Payment/Test/Unit/Gateway/Http/Client/ZendTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Gateway/Http/Converter/HtmlFormConverterTest.php b/app/code/Magento/Payment/Test/Unit/Gateway/Http/Converter/HtmlFormConverterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Gateway/Http/Converter/Soap/ObjectToArrayConverterTest.php b/app/code/Magento/Payment/Test/Unit/Gateway/Http/Converter/Soap/ObjectToArrayConverterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Gateway/Http/TransferTest.php b/app/code/Magento/Payment/Test/Unit/Gateway/Http/TransferTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Gateway/Request/BuilderCompositeTest.php b/app/code/Magento/Payment/Test/Unit/Gateway/Request/BuilderCompositeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Gateway/Response/HandlerChainTest.php b/app/code/Magento/Payment/Test/Unit/Gateway/Response/HandlerChainTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Gateway/Validator/CountryValidatorTest.php b/app/code/Magento/Payment/Test/Unit/Gateway/Validator/CountryValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Gateway/Validator/ResultTest.php b/app/code/Magento/Payment/Test/Unit/Gateway/Validator/ResultTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Gateway/Validator/ValidatorCompositeTest.php b/app/code/Magento/Payment/Test/Unit/Gateway/Validator/ValidatorCompositeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Gateway/Validator/ValidatorPoolTest.php b/app/code/Magento/Payment/Test/Unit/Gateway/Validator/ValidatorPoolTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Helper/DataTest.php b/app/code/Magento/Payment/Test/Unit/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Model/Cart/SalesModel/FactoryTest.php b/app/code/Magento/Payment/Test/Unit/Model/Cart/SalesModel/FactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Model/Cart/SalesModel/OrderTest.php b/app/code/Magento/Payment/Test/Unit/Model/Cart/SalesModel/OrderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Model/Cart/SalesModel/QuoteTest.php b/app/code/Magento/Payment/Test/Unit/Model/Cart/SalesModel/QuoteTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Model/CartTest.php b/app/code/Magento/Payment/Test/Unit/Model/CartTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Model/CcConfigProviderTest.php b/app/code/Magento/Payment/Test/Unit/Model/CcConfigProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Model/CcConfigTest.php b/app/code/Magento/Payment/Test/Unit/Model/CcConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Model/CcGenericConfigProviderTest.php b/app/code/Magento/Payment/Test/Unit/Model/CcGenericConfigProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Model/Checks/CanUseCheckoutTest.php b/app/code/Magento/Payment/Test/Unit/Model/Checks/CanUseCheckoutTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Model/Checks/CanUseForCountry/CountryProviderTest.php b/app/code/Magento/Payment/Test/Unit/Model/Checks/CanUseForCountry/CountryProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Model/Checks/CanUseForCountryTest.php b/app/code/Magento/Payment/Test/Unit/Model/Checks/CanUseForCountryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Model/Checks/CanUseForCurrencyTest.php b/app/code/Magento/Payment/Test/Unit/Model/Checks/CanUseForCurrencyTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Model/Checks/CanUseInternalTest.php b/app/code/Magento/Payment/Test/Unit/Model/Checks/CanUseInternalTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Model/Checks/CompositeTest.php b/app/code/Magento/Payment/Test/Unit/Model/Checks/CompositeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Model/Checks/SpecificationFactoryTest.php b/app/code/Magento/Payment/Test/Unit/Model/Checks/SpecificationFactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Model/Checks/TotalMinMaxTest.php b/app/code/Magento/Payment/Test/Unit/Model/Checks/TotalMinMaxTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Model/Checks/ZeroTotalTest.php b/app/code/Magento/Payment/Test/Unit/Model/Checks/ZeroTotalTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Model/Config/ConverterTest.php b/app/code/Magento/Payment/Test/Unit/Model/Config/ConverterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Model/Config/SchemaLocatorTest.php b/app/code/Magento/Payment/Test/Unit/Model/Config/SchemaLocatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Model/Config/Source/AllmethodsTest.php b/app/code/Magento/Payment/Test/Unit/Model/Config/Source/AllmethodsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Model/Config/Source/AllspecificcountriesTest.php b/app/code/Magento/Payment/Test/Unit/Model/Config/Source/AllspecificcountriesTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Model/Config/Source/CctypeTest.php b/app/code/Magento/Payment/Test/Unit/Model/Config/Source/CctypeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Model/Config/_files/payment.xml b/app/code/Magento/Payment/Test/Unit/Model/Config/_files/payment.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Model/ConfigTest.php b/app/code/Magento/Payment/Test/Unit/Model/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Model/InfoTest.php b/app/code/Magento/Payment/Test/Unit/Model/InfoTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Model/Method/AbstractMethod/Stub.php b/app/code/Magento/Payment/Test/Unit/Model/Method/AbstractMethod/Stub.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Model/Method/AbstractMethodTest.php b/app/code/Magento/Payment/Test/Unit/Model/Method/AbstractMethodTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Model/Method/AdapterTest.php b/app/code/Magento/Payment/Test/Unit/Model/Method/AdapterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Model/Method/CcTest.php b/app/code/Magento/Payment/Test/Unit/Model/Method/CcTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Model/Method/FreeTest.php b/app/code/Magento/Payment/Test/Unit/Model/Method/FreeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Model/Method/LoggerTest.php b/app/code/Magento/Payment/Test/Unit/Model/Method/LoggerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Model/Method/Specification/CompositeTest.php b/app/code/Magento/Payment/Test/Unit/Model/Method/Specification/CompositeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Model/Method/SubstitutionTest.php b/app/code/Magento/Payment/Test/Unit/Model/Method/SubstitutionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Model/MethodListTest.php b/app/code/Magento/Payment/Test/Unit/Model/MethodListTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Model/PaymentMethodListTest.php b/app/code/Magento/Payment/Test/Unit/Model/PaymentMethodListTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Model/ResourceModel/Grid/GroupListTest.php b/app/code/Magento/Payment/Test/Unit/Model/ResourceModel/Grid/GroupListTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Model/ResourceModel/Grid/TypeListTest.php b/app/code/Magento/Payment/Test/Unit/Model/ResourceModel/Grid/TypeListTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Model/Source/CctypeTest.php b/app/code/Magento/Payment/Test/Unit/Model/Source/CctypeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Model/Source/InvoiceTest.php b/app/code/Magento/Payment/Test/Unit/Model/Source/InvoiceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Observer/SalesOrderBeforeSaveObserverTest.php b/app/code/Magento/Payment/Test/Unit/Observer/SalesOrderBeforeSaveObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Observer/UpdateOrderStatusForPaymentMethodsObserverTest.php b/app/code/Magento/Payment/Test/Unit/Observer/UpdateOrderStatusForPaymentMethodsObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Test/Unit/Plugin/PaymentConfigurationProcessTest.php b/app/code/Magento/Payment/Test/Unit/Plugin/PaymentConfigurationProcessTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/Ui/Component/Listing/Column/Method/Options.php b/app/code/Magento/Payment/Ui/Component/Listing/Column/Method/Options.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/composer.json b/app/code/Magento/Payment/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/etc/acl.xml b/app/code/Magento/Payment/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/etc/adminhtml/system.xml b/app/code/Magento/Payment/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/etc/config.xml b/app/code/Magento/Payment/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/etc/di.xml b/app/code/Magento/Payment/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/etc/error_mapping.xsd b/app/code/Magento/Payment/etc/error_mapping.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/etc/events.xml b/app/code/Magento/Payment/etc/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/etc/frontend/di.xml b/app/code/Magento/Payment/etc/frontend/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/etc/module.xml b/app/code/Magento/Payment/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/etc/payment.xml b/app/code/Magento/Payment/etc/payment.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/etc/payment.xsd b/app/code/Magento/Payment/etc/payment.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/etc/payment_file.xsd b/app/code/Magento/Payment/etc/payment_file.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/i18n/en_US.csv b/app/code/Magento/Payment/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/registration.php b/app/code/Magento/Payment/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/view/adminhtml/templates/form/cc.phtml b/app/code/Magento/Payment/view/adminhtml/templates/form/cc.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/view/adminhtml/templates/info/default.phtml b/app/code/Magento/Payment/view/adminhtml/templates/info/default.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/view/adminhtml/templates/info/instructions.phtml b/app/code/Magento/Payment/view/adminhtml/templates/info/instructions.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/view/adminhtml/templates/info/pdf/default.phtml b/app/code/Magento/Payment/view/adminhtml/templates/info/pdf/default.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/view/adminhtml/templates/info/substitution.phtml b/app/code/Magento/Payment/view/adminhtml/templates/info/substitution.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/view/adminhtml/templates/transparent/form.phtml b/app/code/Magento/Payment/view/adminhtml/templates/transparent/form.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/view/adminhtml/templates/transparent/iframe.phtml b/app/code/Magento/Payment/view/adminhtml/templates/transparent/iframe.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/view/adminhtml/templates/transparent/info.phtml b/app/code/Magento/Payment/view/adminhtml/templates/transparent/info.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/view/adminhtml/web/transparent.js b/app/code/Magento/Payment/view/adminhtml/web/transparent.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/view/base/web/images/cc/ae.png b/app/code/Magento/Payment/view/base/web/images/cc/ae.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/view/base/web/images/cc/di.png b/app/code/Magento/Payment/view/base/web/images/cc/di.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/view/base/web/images/cc/dn.png b/app/code/Magento/Payment/view/base/web/images/cc/dn.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/view/base/web/images/cc/jcb.png b/app/code/Magento/Payment/view/base/web/images/cc/jcb.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/view/base/web/images/cc/mc.png b/app/code/Magento/Payment/view/base/web/images/cc/mc.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/view/base/web/images/cc/md.png b/app/code/Magento/Payment/view/base/web/images/cc/md.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/view/base/web/images/cc/mi.png b/app/code/Magento/Payment/view/base/web/images/cc/mi.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/view/base/web/images/cc/sm.png b/app/code/Magento/Payment/view/base/web/images/cc/sm.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/view/base/web/images/cc/so.png b/app/code/Magento/Payment/view/base/web/images/cc/so.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/view/base/web/images/cc/un.png b/app/code/Magento/Payment/view/base/web/images/cc/un.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/view/base/web/images/cc/vi.png b/app/code/Magento/Payment/view/base/web/images/cc/vi.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/credit-card-data.js b/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/credit-card-data.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/credit-card-number-validator.js b/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/credit-card-number-validator.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/credit-card-number-validator/credit-card-type.js b/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/credit-card-number-validator/credit-card-type.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/credit-card-number-validator/luhn10-validator.js b/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/credit-card-number-validator/luhn10-validator.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/cvv-validator.js b/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/cvv-validator.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/expiration-date-validator.js b/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/expiration-date-validator.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/expiration-date-validator/expiration-month-validator.js b/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/expiration-date-validator/expiration-month-validator.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/expiration-date-validator/expiration-year-validator.js b/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/expiration-date-validator/expiration-year-validator.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/expiration-date-validator/parse-date.js b/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/expiration-date-validator/parse-date.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/validator.js b/app/code/Magento/Payment/view/base/web/js/model/credit-card-validation/validator.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/view/frontend/layout/checkout_index_index.xml b/app/code/Magento/Payment/view/frontend/layout/checkout_index_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/view/frontend/layout/checkout_onepage_review.xml b/app/code/Magento/Payment/view/frontend/layout/checkout_onepage_review.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/view/frontend/requirejs-config.js b/app/code/Magento/Payment/view/frontend/requirejs-config.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/view/frontend/templates/form/cc.phtml b/app/code/Magento/Payment/view/frontend/templates/form/cc.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/view/frontend/templates/info/default.phtml b/app/code/Magento/Payment/view/frontend/templates/info/default.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/view/frontend/templates/info/instructions.phtml b/app/code/Magento/Payment/view/frontend/templates/info/instructions.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/view/frontend/templates/info/pdf/default.phtml b/app/code/Magento/Payment/view/frontend/templates/info/pdf/default.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/view/frontend/templates/transparent/form.phtml b/app/code/Magento/Payment/view/frontend/templates/transparent/form.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/view/frontend/templates/transparent/iframe.phtml b/app/code/Magento/Payment/view/frontend/templates/transparent/iframe.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/view/frontend/templates/transparent/info.phtml b/app/code/Magento/Payment/view/frontend/templates/transparent/info.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/view/frontend/web/cc-type.js b/app/code/Magento/Payment/view/frontend/web/cc-type.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/view/frontend/web/js/view/payment/cc-form.js b/app/code/Magento/Payment/view/frontend/web/js/view/payment/cc-form.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/view/frontend/web/js/view/payment/iframe.js b/app/code/Magento/Payment/view/frontend/web/js/view/payment/iframe.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/view/frontend/web/js/view/payment/method-renderer/free-method.js b/app/code/Magento/Payment/view/frontend/web/js/view/payment/method-renderer/free-method.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/view/frontend/web/js/view/payment/payments.js b/app/code/Magento/Payment/view/frontend/web/js/view/payment/payments.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/view/frontend/web/template/payment/cc-form.html b/app/code/Magento/Payment/view/frontend/web/template/payment/cc-form.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/view/frontend/web/template/payment/free.html b/app/code/Magento/Payment/view/frontend/web/template/payment/free.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/view/frontend/web/template/payment/iframe.html b/app/code/Magento/Payment/view/frontend/web/template/payment/iframe.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Payment/view/frontend/web/transparent.js b/app/code/Magento/Payment/view/frontend/web/transparent.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Adminhtml/Billing/Agreement.php b/app/code/Magento/Paypal/Block/Adminhtml/Billing/Agreement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Adminhtml/Billing/Agreement/Grid.php b/app/code/Magento/Paypal/Block/Adminhtml/Billing/Agreement/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Adminhtml/Billing/Agreement/View.php b/app/code/Magento/Paypal/Block/Adminhtml/Billing/Agreement/View.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Adminhtml/Billing/Agreement/View/Form.php b/app/code/Magento/Paypal/Block/Adminhtml/Billing/Agreement/View/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Adminhtml/Billing/Agreement/View/Tab/Info.php b/app/code/Magento/Paypal/Block/Adminhtml/Billing/Agreement/View/Tab/Info.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Adminhtml/Billing/Agreement/View/Tab/Orders.php b/app/code/Magento/Paypal/Block/Adminhtml/Billing/Agreement/View/Tab/Orders.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Adminhtml/Billing/Agreement/View/Tabs.php b/app/code/Magento/Paypal/Block/Adminhtml/Billing/Agreement/View/Tabs.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Adminhtml/Customer/Edit/Tab/Agreement.php b/app/code/Magento/Paypal/Block/Adminhtml/Customer/Edit/Tab/Agreement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Adminhtml/Payflowpro/CcForm.php b/app/code/Magento/Paypal/Block/Adminhtml/Payflowpro/CcForm.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Adminhtml/Settlement/Details.php b/app/code/Magento/Paypal/Block/Adminhtml/Settlement/Details.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Adminhtml/Settlement/Details/Form.php b/app/code/Magento/Paypal/Block/Adminhtml/Settlement/Details/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Adminhtml/Settlement/Report.php b/app/code/Magento/Paypal/Block/Adminhtml/Settlement/Report.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Adminhtml/Store/SwitcherPlugin.php b/app/code/Magento/Paypal/Block/Adminhtml/Store/SwitcherPlugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/ApiWizard.php b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/ApiWizard.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/BmlApiWizard.php b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/BmlApiWizard.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Country.php b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Country.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Depends/BmlApiSortOrder.php b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Depends/BmlApiSortOrder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Depends/BmlSortOrder.php b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Depends/BmlSortOrder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Depends/MerchantId.php b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Depends/MerchantId.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Enable/AbstractEnable.php b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Enable/AbstractEnable.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Enable/Bml.php b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Enable/Bml.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Enable/BmlApi.php b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Enable/BmlApi.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Enable/Express.php b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Enable/Express.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Enable/InContext.php b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Enable/InContext.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Enable/InContextApi.php b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Enable/InContextApi.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Enable/Payment.php b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Enable/Payment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Hidden.php b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Field/Hidden.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Fieldset/Expanded.php b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Fieldset/Expanded.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Fieldset/Group.php b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Fieldset/Group.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Fieldset/Hint.php b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Fieldset/Hint.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Fieldset/Payment.php b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Fieldset/Payment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Payflowlink/Advanced.php b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Payflowlink/Advanced.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Payflowlink/Info.php b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/Payflowlink/Info.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Adminhtml/System/Config/ResolutionRules.php b/app/code/Magento/Paypal/Block/Adminhtml/System/Config/ResolutionRules.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Billing/Agreement/View.php b/app/code/Magento/Paypal/Block/Billing/Agreement/View.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Billing/Agreements.php b/app/code/Magento/Paypal/Block/Billing/Agreements.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Bml/Banners.php b/app/code/Magento/Paypal/Block/Bml/Banners.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Bml/Form.php b/app/code/Magento/Paypal/Block/Bml/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Bml/Shortcut.php b/app/code/Magento/Paypal/Block/Bml/Shortcut.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Cart/ValidationMessages.php b/app/code/Magento/Paypal/Block/Cart/ValidationMessages.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Checkout/Onepage/Success/BillingAgreement.php b/app/code/Magento/Paypal/Block/Checkout/Onepage/Success/BillingAgreement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Express/Form.php b/app/code/Magento/Paypal/Block/Express/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Express/InContext/Component.php b/app/code/Magento/Paypal/Block/Express/InContext/Component.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Express/InContext/Minicart/Button.php b/app/code/Magento/Paypal/Block/Express/InContext/Minicart/Button.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Express/Review.php b/app/code/Magento/Paypal/Block/Express/Review.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Express/Review/Billing.php b/app/code/Magento/Paypal/Block/Express/Review/Billing.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Express/Review/Details.php b/app/code/Magento/Paypal/Block/Express/Review/Details.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Express/Review/Shipping.php b/app/code/Magento/Paypal/Block/Express/Review/Shipping.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Express/Shortcut.php b/app/code/Magento/Paypal/Block/Express/Shortcut.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Hosted/Pro/Form.php b/app/code/Magento/Paypal/Block/Hosted/Pro/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Hosted/Pro/Iframe.php b/app/code/Magento/Paypal/Block/Hosted/Pro/Iframe.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Hosted/Pro/Info.php b/app/code/Magento/Paypal/Block/Hosted/Pro/Info.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Iframe.php b/app/code/Magento/Paypal/Block/Iframe.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Logo.php b/app/code/Magento/Paypal/Block/Logo.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Payflow/Advanced/Form.php b/app/code/Magento/Paypal/Block/Payflow/Advanced/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Payflow/Advanced/Iframe.php b/app/code/Magento/Paypal/Block/Payflow/Advanced/Iframe.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Payflow/Advanced/Info.php b/app/code/Magento/Paypal/Block/Payflow/Advanced/Info.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Payflow/Bml/Form.php b/app/code/Magento/Paypal/Block/Payflow/Bml/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Payflow/Customer/CardRenderer.php b/app/code/Magento/Paypal/Block/Payflow/Customer/CardRenderer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Payflow/Info.php b/app/code/Magento/Paypal/Block/Payflow/Info.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Payflow/Link/Form.php b/app/code/Magento/Paypal/Block/Payflow/Link/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Payflow/Link/Iframe.php b/app/code/Magento/Paypal/Block/Payflow/Link/Iframe.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Payflow/Link/Info.php b/app/code/Magento/Paypal/Block/Payflow/Link/Info.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/PayflowExpress/Form.php b/app/code/Magento/Paypal/Block/PayflowExpress/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Payment/Form/Billing/Agreement.php b/app/code/Magento/Paypal/Block/Payment/Form/Billing/Agreement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Payment/Info.php b/app/code/Magento/Paypal/Block/Payment/Info.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Block/Payment/Info/Billing/Agreement.php b/app/code/Magento/Paypal/Block/Payment/Info/Billing/Agreement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement.php b/app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/Cancel.php b/app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/Cancel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/CustomerGrid.php b/app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/CustomerGrid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/Delete.php b/app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/Delete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/Grid.php b/app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/Index.php b/app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/OrdersGrid.php b/app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/OrdersGrid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/View.php b/app/code/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/View.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Adminhtml/Paypal/Reports.php b/app/code/Magento/Paypal/Controller/Adminhtml/Paypal/Reports.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Adminhtml/Paypal/Reports/Details.php b/app/code/Magento/Paypal/Controller/Adminhtml/Paypal/Reports/Details.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Adminhtml/Paypal/Reports/Fetch.php b/app/code/Magento/Paypal/Controller/Adminhtml/Paypal/Reports/Fetch.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Adminhtml/Paypal/Reports/Grid.php b/app/code/Magento/Paypal/Controller/Adminhtml/Paypal/Reports/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Adminhtml/Paypal/Reports/Index.php b/app/code/Magento/Paypal/Controller/Adminhtml/Paypal/Reports/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Adminhtml/Transparent/RequestSecureToken.php b/app/code/Magento/Paypal/Controller/Adminhtml/Transparent/RequestSecureToken.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Adminhtml/Transparent/Response.php b/app/code/Magento/Paypal/Controller/Adminhtml/Transparent/Response.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Billing/Agreement.php b/app/code/Magento/Paypal/Controller/Billing/Agreement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Billing/Agreement/Cancel.php b/app/code/Magento/Paypal/Controller/Billing/Agreement/Cancel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Billing/Agreement/CancelWizard.php b/app/code/Magento/Paypal/Controller/Billing/Agreement/CancelWizard.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Billing/Agreement/Index.php b/app/code/Magento/Paypal/Controller/Billing/Agreement/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Billing/Agreement/ReturnWizard.php b/app/code/Magento/Paypal/Controller/Billing/Agreement/ReturnWizard.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Billing/Agreement/StartWizard.php b/app/code/Magento/Paypal/Controller/Billing/Agreement/StartWizard.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Billing/Agreement/View.php b/app/code/Magento/Paypal/Controller/Billing/Agreement/View.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Bml/Start.php b/app/code/Magento/Paypal/Controller/Bml/Start.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Express/AbstractExpress.php b/app/code/Magento/Paypal/Controller/Express/AbstractExpress.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Express/AbstractExpress/Cancel.php b/app/code/Magento/Paypal/Controller/Express/AbstractExpress/Cancel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Express/AbstractExpress/Edit.php b/app/code/Magento/Paypal/Controller/Express/AbstractExpress/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Express/AbstractExpress/PlaceOrder.php b/app/code/Magento/Paypal/Controller/Express/AbstractExpress/PlaceOrder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Express/AbstractExpress/ReturnAction.php b/app/code/Magento/Paypal/Controller/Express/AbstractExpress/ReturnAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Express/AbstractExpress/Review.php b/app/code/Magento/Paypal/Controller/Express/AbstractExpress/Review.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Express/AbstractExpress/SaveShippingMethod.php b/app/code/Magento/Paypal/Controller/Express/AbstractExpress/SaveShippingMethod.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Express/AbstractExpress/ShippingOptionsCallback.php b/app/code/Magento/Paypal/Controller/Express/AbstractExpress/ShippingOptionsCallback.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Express/AbstractExpress/Start.php b/app/code/Magento/Paypal/Controller/Express/AbstractExpress/Start.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Express/AbstractExpress/UpdateShippingMethods.php b/app/code/Magento/Paypal/Controller/Express/AbstractExpress/UpdateShippingMethods.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Express/Cancel.php b/app/code/Magento/Paypal/Controller/Express/Cancel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Express/Edit.php b/app/code/Magento/Paypal/Controller/Express/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Express/GetToken.php b/app/code/Magento/Paypal/Controller/Express/GetToken.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Express/PlaceOrder.php b/app/code/Magento/Paypal/Controller/Express/PlaceOrder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Express/ReturnAction.php b/app/code/Magento/Paypal/Controller/Express/ReturnAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Express/Review.php b/app/code/Magento/Paypal/Controller/Express/Review.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Express/SaveShippingMethod.php b/app/code/Magento/Paypal/Controller/Express/SaveShippingMethod.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Express/ShippingOptionsCallback.php b/app/code/Magento/Paypal/Controller/Express/ShippingOptionsCallback.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Express/Start.php b/app/code/Magento/Paypal/Controller/Express/Start.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Express/UpdateShippingMethods.php b/app/code/Magento/Paypal/Controller/Express/UpdateShippingMethods.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Hostedpro/Cancel.php b/app/code/Magento/Paypal/Controller/Hostedpro/Cancel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Hostedpro/Redirect.php b/app/code/Magento/Paypal/Controller/Hostedpro/Redirect.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Hostedpro/ReturnAction.php b/app/code/Magento/Paypal/Controller/Hostedpro/ReturnAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Ipn/Index.php b/app/code/Magento/Paypal/Controller/Ipn/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Payflow.php b/app/code/Magento/Paypal/Controller/Payflow.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Payflow/CancelPayment.php b/app/code/Magento/Paypal/Controller/Payflow/CancelPayment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Payflow/Form.php b/app/code/Magento/Paypal/Controller/Payflow/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Payflow/ReturnUrl.php b/app/code/Magento/Paypal/Controller/Payflow/ReturnUrl.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Payflow/SilentPost.php b/app/code/Magento/Paypal/Controller/Payflow/SilentPost.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Payflowadvanced/CancelPayment.php b/app/code/Magento/Paypal/Controller/Payflowadvanced/CancelPayment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Payflowadvanced/Form.php b/app/code/Magento/Paypal/Controller/Payflowadvanced/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Payflowadvanced/ReturnUrl.php b/app/code/Magento/Paypal/Controller/Payflowadvanced/ReturnUrl.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Payflowadvanced/SilentPost.php b/app/code/Magento/Paypal/Controller/Payflowadvanced/SilentPost.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Payflowbml/Start.php b/app/code/Magento/Paypal/Controller/Payflowbml/Start.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Payflowexpress/Cancel.php b/app/code/Magento/Paypal/Controller/Payflowexpress/Cancel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Payflowexpress/Edit.php b/app/code/Magento/Paypal/Controller/Payflowexpress/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Payflowexpress/PlaceOrder.php b/app/code/Magento/Paypal/Controller/Payflowexpress/PlaceOrder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Payflowexpress/ReturnAction.php b/app/code/Magento/Paypal/Controller/Payflowexpress/ReturnAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Payflowexpress/Review.php b/app/code/Magento/Paypal/Controller/Payflowexpress/Review.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Payflowexpress/SaveShippingMethod.php b/app/code/Magento/Paypal/Controller/Payflowexpress/SaveShippingMethod.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Payflowexpress/ShippingOptionsCallback.php b/app/code/Magento/Paypal/Controller/Payflowexpress/ShippingOptionsCallback.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Payflowexpress/Start.php b/app/code/Magento/Paypal/Controller/Payflowexpress/Start.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Payflowexpress/UpdateShippingMethods.php b/app/code/Magento/Paypal/Controller/Payflowexpress/UpdateShippingMethods.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Transparent/RequestSecureToken.php b/app/code/Magento/Paypal/Controller/Transparent/RequestSecureToken.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Controller/Transparent/Response.php b/app/code/Magento/Paypal/Controller/Transparent/Response.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Cron/FetchReports.php b/app/code/Magento/Paypal/Cron/FetchReports.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/CustomerData/BillingAgreement.php b/app/code/Magento/Paypal/CustomerData/BillingAgreement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Gateway/Payflowpro/Command/AuthorizationCommand.php b/app/code/Magento/Paypal/Gateway/Payflowpro/Command/AuthorizationCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Gateway/Payflowpro/Command/SaleCommand.php b/app/code/Magento/Paypal/Gateway/Payflowpro/Command/SaleCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Helper/Backend.php b/app/code/Magento/Paypal/Helper/Backend.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Helper/Checkout.php b/app/code/Magento/Paypal/Helper/Checkout.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Helper/Data.php b/app/code/Magento/Paypal/Helper/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Helper/Hss.php b/app/code/Magento/Paypal/Helper/Hss.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Helper/Shortcut/CheckoutValidator.php b/app/code/Magento/Paypal/Helper/Shortcut/CheckoutValidator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Helper/Shortcut/Factory.php b/app/code/Magento/Paypal/Helper/Shortcut/Factory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Helper/Shortcut/Validator.php b/app/code/Magento/Paypal/Helper/Shortcut/Validator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Helper/Shortcut/ValidatorInterface.php b/app/code/Magento/Paypal/Helper/Shortcut/ValidatorInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/LICENSE.txt b/app/code/Magento/Paypal/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/LICENSE_AFL.txt b/app/code/Magento/Paypal/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/AbstractConfig.php b/app/code/Magento/Paypal/Model/AbstractConfig.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/AbstractIpn.php b/app/code/Magento/Paypal/Model/AbstractIpn.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Api/AbstractApi.php b/app/code/Magento/Paypal/Model/Api/AbstractApi.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Api/Nvp.php b/app/code/Magento/Paypal/Model/Api/Nvp.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Api/PayflowNvp.php b/app/code/Magento/Paypal/Model/Api/PayflowNvp.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Api/ProcessableException.php b/app/code/Magento/Paypal/Model/Api/ProcessableException.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Api/Type/Factory.php b/app/code/Magento/Paypal/Model/Api/Type/Factory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Billing/AbstractAgreement.php b/app/code/Magento/Paypal/Model/Billing/AbstractAgreement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Billing/Agreement.php b/app/code/Magento/Paypal/Model/Billing/Agreement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Billing/Agreement/MethodInterface.php b/app/code/Magento/Paypal/Model/Billing/Agreement/MethodInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Billing/Agreement/OrdersUpdater.php b/app/code/Magento/Paypal/Model/Billing/Agreement/OrdersUpdater.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/BillingAgreementConfigProvider.php b/app/code/Magento/Paypal/Model/BillingAgreementConfigProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Bml.php b/app/code/Magento/Paypal/Model/Bml.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Cart.php b/app/code/Magento/Paypal/Model/Cart.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Cert.php b/app/code/Magento/Paypal/Model/Cert.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Config.php b/app/code/Magento/Paypal/Model/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Config/Factory.php b/app/code/Magento/Paypal/Model/Config/Factory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Config/Rules/Converter.php b/app/code/Magento/Paypal/Model/Config/Rules/Converter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Config/Rules/FileResolver.php b/app/code/Magento/Paypal/Model/Config/Rules/FileResolver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Config/Rules/Reader.php b/app/code/Magento/Paypal/Model/Config/Rules/Reader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Config/Rules/SchemaLocator.php b/app/code/Magento/Paypal/Model/Config/Rules/SchemaLocator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Config/Structure/Element/FieldPlugin.php b/app/code/Magento/Paypal/Model/Config/Structure/Element/FieldPlugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Config/Structure/PaymentSectionModifier.php b/app/code/Magento/Paypal/Model/Config/Structure/PaymentSectionModifier.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Config/StructurePlugin.php b/app/code/Magento/Paypal/Model/Config/StructurePlugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Direct.php b/app/code/Magento/Paypal/Model/Direct.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Express.php b/app/code/Magento/Paypal/Model/Express.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Express/Checkout.php b/app/code/Magento/Paypal/Model/Express/Checkout.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Express/Checkout/Factory.php b/app/code/Magento/Paypal/Model/Express/Checkout/Factory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Express/QuotePlugin.php b/app/code/Magento/Paypal/Model/Express/QuotePlugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/ExpressConfigProvider.php b/app/code/Magento/Paypal/Model/ExpressConfigProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Hostedpro.php b/app/code/Magento/Paypal/Model/Hostedpro.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Hostedpro/Request.php b/app/code/Magento/Paypal/Model/Hostedpro/Request.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/IframeConfigProvider.php b/app/code/Magento/Paypal/Model/IframeConfigProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Info.php b/app/code/Magento/Paypal/Model/Info.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/InstantPurchase/Payflow/Pro/TokenFormatter.php b/app/code/Magento/Paypal/Model/InstantPurchase/Payflow/Pro/TokenFormatter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Ipn.php b/app/code/Magento/Paypal/Model/Ipn.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/IpnFactory.php b/app/code/Magento/Paypal/Model/IpnFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/IpnInterface.php b/app/code/Magento/Paypal/Model/IpnInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Method/Agreement.php b/app/code/Magento/Paypal/Model/Method/Agreement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Method/Checks/SpecificationPlugin.php b/app/code/Magento/Paypal/Model/Method/Checks/SpecificationPlugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Payflow/AvsEmsCodeMapper.php b/app/code/Magento/Paypal/Model/Payflow/AvsEmsCodeMapper.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Payflow/Bml.php b/app/code/Magento/Paypal/Model/Payflow/Bml.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Payflow/CvvEmsCodeMapper.php b/app/code/Magento/Paypal/Model/Payflow/CvvEmsCodeMapper.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Payflow/Pro.php b/app/code/Magento/Paypal/Model/Payflow/Pro.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Payflow/Request.php b/app/code/Magento/Paypal/Model/Payflow/Request.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Payflow/Service/Gateway.php b/app/code/Magento/Paypal/Model/Payflow/Service/Gateway.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Payflow/Service/Request/SecureToken.php b/app/code/Magento/Paypal/Model/Payflow/Service/Request/SecureToken.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Payflow/Service/Response/Handler/CreditCardValidationHandler.php b/app/code/Magento/Paypal/Model/Payflow/Service/Response/Handler/CreditCardValidationHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Payflow/Service/Response/Handler/FraudHandler.php b/app/code/Magento/Paypal/Model/Payflow/Service/Response/Handler/FraudHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Payflow/Service/Response/Handler/HandlerComposite.php b/app/code/Magento/Paypal/Model/Payflow/Service/Response/Handler/HandlerComposite.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Payflow/Service/Response/Handler/HandlerInterface.php b/app/code/Magento/Paypal/Model/Payflow/Service/Response/Handler/HandlerInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Payflow/Service/Response/Transaction.php b/app/code/Magento/Paypal/Model/Payflow/Service/Response/Transaction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Payflow/Service/Response/Validator/AVSResponse.php b/app/code/Magento/Paypal/Model/Payflow/Service/Response/Validator/AVSResponse.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Payflow/Service/Response/Validator/CVV2Match.php b/app/code/Magento/Paypal/Model/Payflow/Service/Response/Validator/CVV2Match.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Payflow/Service/Response/Validator/IAVSResponse.php b/app/code/Magento/Paypal/Model/Payflow/Service/Response/Validator/IAVSResponse.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Payflow/Service/Response/Validator/ResponseValidator.php b/app/code/Magento/Paypal/Model/Payflow/Service/Response/Validator/ResponseValidator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Payflow/Service/Response/Validator/SecureToken.php b/app/code/Magento/Paypal/Model/Payflow/Service/Response/Validator/SecureToken.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Payflow/Service/Response/ValidatorInterface.php b/app/code/Magento/Paypal/Model/Payflow/Service/Response/ValidatorInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Payflow/Transparent.php b/app/code/Magento/Paypal/Model/Payflow/Transparent.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Payflow/Ui/Adminhtml/TokenUiComponentProvider.php b/app/code/Magento/Paypal/Model/Payflow/Ui/Adminhtml/TokenUiComponentProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Payflow/Ui/TokenUiComponentProvider.php b/app/code/Magento/Paypal/Model/Payflow/Ui/TokenUiComponentProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/PayflowConfig.php b/app/code/Magento/Paypal/Model/PayflowConfig.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/PayflowExpress.php b/app/code/Magento/Paypal/Model/PayflowExpress.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/PayflowExpress/Checkout.php b/app/code/Magento/Paypal/Model/PayflowExpress/Checkout.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Payflowadvanced.php b/app/code/Magento/Paypal/Model/Payflowadvanced.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Payflowlink.php b/app/code/Magento/Paypal/Model/Payflowlink.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Payflowpro.php b/app/code/Magento/Paypal/Model/Payflowpro.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Payment/Method/Billing/AbstractAgreement.php b/app/code/Magento/Paypal/Model/Payment/Method/Billing/AbstractAgreement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Pro.php b/app/code/Magento/Paypal/Model/Pro.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Report/Settlement.php b/app/code/Magento/Paypal/Model/Report/Settlement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/Report/Settlement/Row.php b/app/code/Magento/Paypal/Model/Report/Settlement/Row.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/ResourceModel/Billing/Agreement.php b/app/code/Magento/Paypal/Model/ResourceModel/Billing/Agreement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/ResourceModel/Billing/Agreement/Collection.php b/app/code/Magento/Paypal/Model/ResourceModel/Billing/Agreement/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/ResourceModel/Cert.php b/app/code/Magento/Paypal/Model/ResourceModel/Cert.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/ResourceModel/Report/Settlement.php b/app/code/Magento/Paypal/Model/ResourceModel/Report/Settlement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/ResourceModel/Report/Settlement/Options/TransactionEvents.php b/app/code/Magento/Paypal/Model/ResourceModel/Report/Settlement/Options/TransactionEvents.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/ResourceModel/Report/Settlement/Row.php b/app/code/Magento/Paypal/Model/ResourceModel/Report/Settlement/Row.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/ResourceModel/Report/Settlement/Row/Collection.php b/app/code/Magento/Paypal/Model/ResourceModel/Report/Settlement/Row/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/System/Config/Backend/Cert.php b/app/code/Magento/Paypal/Model/System/Config/Backend/Cert.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/System/Config/Backend/Cron.php b/app/code/Magento/Paypal/Model/System/Config/Backend/Cron.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/System/Config/Backend/MerchantCountry.php b/app/code/Magento/Paypal/Model/System/Config/Backend/MerchantCountry.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/System/Config/Source/BmlPosition.php b/app/code/Magento/Paypal/Model/System/Config/Source/BmlPosition.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/System/Config/Source/BmlSize.php b/app/code/Magento/Paypal/Model/System/Config/Source/BmlSize.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/System/Config/Source/BuyerCountry.php b/app/code/Magento/Paypal/Model/System/Config/Source/BuyerCountry.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/System/Config/Source/FetchingSchedule.php b/app/code/Magento/Paypal/Model/System/Config/Source/FetchingSchedule.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/System/Config/Source/Logo.php b/app/code/Magento/Paypal/Model/System/Config/Source/Logo.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/System/Config/Source/MerchantCountry.php b/app/code/Magento/Paypal/Model/System/Config/Source/MerchantCountry.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/System/Config/Source/PaymentActions.php b/app/code/Magento/Paypal/Model/System/Config/Source/PaymentActions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/System/Config/Source/PaymentActions/Express.php b/app/code/Magento/Paypal/Model/System/Config/Source/PaymentActions/Express.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/System/Config/Source/RequireBillingAddress.php b/app/code/Magento/Paypal/Model/System/Config/Source/RequireBillingAddress.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/System/Config/Source/UrlMethod.php b/app/code/Magento/Paypal/Model/System/Config/Source/UrlMethod.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Model/System/Config/Source/Yesnoshortcut.php b/app/code/Magento/Paypal/Model/System/Config/Source/Yesnoshortcut.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Observer/AddBillingAgreementToSessionObserver.php b/app/code/Magento/Paypal/Observer/AddBillingAgreementToSessionObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Observer/AddPaypalShortcutsObserver.php b/app/code/Magento/Paypal/Observer/AddPaypalShortcutsObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Observer/HtmlTransactionIdObserver.php b/app/code/Magento/Paypal/Observer/HtmlTransactionIdObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Observer/PayflowProAddCcData.php b/app/code/Magento/Paypal/Observer/PayflowProAddCcData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Observer/RestrictAdminBillingAgreementUsageObserver.php b/app/code/Magento/Paypal/Observer/RestrictAdminBillingAgreementUsageObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Observer/SaveOrderAfterSubmitObserver.php b/app/code/Magento/Paypal/Observer/SaveOrderAfterSubmitObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Observer/SetResponseAfterSaveOrderObserver.php b/app/code/Magento/Paypal/Observer/SetResponseAfterSaveOrderObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/README.md b/app/code/Magento/Paypal/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Setup/InstallData.php b/app/code/Magento/Paypal/Setup/InstallData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Setup/InstallSchema.php b/app/code/Magento/Paypal/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Setup/UpgradeSchema.php b/app/code/Magento/Paypal/Setup/UpgradeSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/Store/SwitcherPluginTest.php b/app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/Store/SwitcherPluginTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/System/Config/Field/CountryTest.php b/app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/System/Config/Field/CountryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/System/Config/Field/Enable/AbstractEnable/Stub.php b/app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/System/Config/Field/Enable/AbstractEnable/Stub.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/System/Config/Field/Enable/AbstractEnableTest.php b/app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/System/Config/Field/Enable/AbstractEnableTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/System/Config/Fieldset/GroupTest.php b/app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/System/Config/Fieldset/GroupTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/System/Config/Fieldset/HintTest.php b/app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/System/Config/Fieldset/HintTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/System/Config/Fieldset/PaymentTest.php b/app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/System/Config/Fieldset/PaymentTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/System/Config/ResolutionRulesTest.php b/app/code/Magento/Paypal/Test/Unit/Block/Adminhtml/System/Config/ResolutionRulesTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Block/Billing/Agreement/ViewTest.php b/app/code/Magento/Paypal/Test/Unit/Block/Billing/Agreement/ViewTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Block/Billing/AgreementsTest.php b/app/code/Magento/Paypal/Test/Unit/Block/Billing/AgreementsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Block/Bml/ShortcutTest.php b/app/code/Magento/Paypal/Test/Unit/Block/Bml/ShortcutTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Block/Express/FormTest.php b/app/code/Magento/Paypal/Test/Unit/Block/Express/FormTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Block/Express/ReviewTest.php b/app/code/Magento/Paypal/Test/Unit/Block/Express/ReviewTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Block/Express/ShortcutTest.php b/app/code/Magento/Paypal/Test/Unit/Block/Express/ShortcutTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Block/Payflow/Link/IframeTest.php b/app/code/Magento/Paypal/Test/Unit/Block/Payflow/Link/IframeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Block/PayflowExpress/FormTest.php b/app/code/Magento/Paypal/Test/Unit/Block/PayflowExpress/FormTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Controller/Billing/Agreement/CancelTest.php b/app/code/Magento/Paypal/Test/Unit/Controller/Billing/Agreement/CancelTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Controller/Express/PlaceOrderTest.php b/app/code/Magento/Paypal/Test/Unit/Controller/Express/PlaceOrderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Controller/Express/ReturnActionTest.php b/app/code/Magento/Paypal/Test/Unit/Controller/Express/ReturnActionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Controller/Express/StartTest.php b/app/code/Magento/Paypal/Test/Unit/Controller/Express/StartTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Controller/ExpressTest.php b/app/code/Magento/Paypal/Test/Unit/Controller/ExpressTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Controller/Ipn/IndexTest.php b/app/code/Magento/Paypal/Test/Unit/Controller/Ipn/IndexTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Controller/Payflow/ReturnUrlTest.php b/app/code/Magento/Paypal/Test/Unit/Controller/Payflow/ReturnUrlTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Controller/Transparent/RequestSecureTokenTest.php b/app/code/Magento/Paypal/Test/Unit/Controller/Transparent/RequestSecureTokenTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Controller/Transparent/ResponseTest.php b/app/code/Magento/Paypal/Test/Unit/Controller/Transparent/ResponseTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Cron/FetchReportsTest.php b/app/code/Magento/Paypal/Test/Unit/Cron/FetchReportsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/CustomerData/BillingAgreementTest.php b/app/code/Magento/Paypal/Test/Unit/CustomerData/BillingAgreementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Helper/BackendTest.php b/app/code/Magento/Paypal/Test/Unit/Helper/BackendTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Helper/CheckoutTest.php b/app/code/Magento/Paypal/Test/Unit/Helper/CheckoutTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Helper/DataTest.php b/app/code/Magento/Paypal/Test/Unit/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Helper/Shortcut/CheckoutValidatorTest.php b/app/code/Magento/Paypal/Test/Unit/Helper/Shortcut/CheckoutValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Helper/Shortcut/FactoryTest.php b/app/code/Magento/Paypal/Test/Unit/Helper/Shortcut/FactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Helper/Shortcut/ValidatorTest.php b/app/code/Magento/Paypal/Test/Unit/Helper/Shortcut/ValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/AbstractConfigTest.php b/app/code/Magento/Paypal/Test/Unit/Model/AbstractConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/AbstractConfigTesting.php b/app/code/Magento/Paypal/Test/Unit/Model/AbstractConfigTesting.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Api/NvpTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Api/NvpTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Api/ProcessableExceptionTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Api/ProcessableExceptionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Billing/AbstractAgreementTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Billing/AbstractAgreementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Billing/Agreement/OrdersUpdaterTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Billing/Agreement/OrdersUpdaterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Billing/AgreementTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Billing/AgreementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/BillingAgreementConfigProviderTest.php b/app/code/Magento/Paypal/Test/Unit/Model/BillingAgreementConfigProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/CartTest.php b/app/code/Magento/Paypal/Test/Unit/Model/CartTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Config/Rules/ConverterTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Config/Rules/ConverterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Config/Rules/ConvertibleContent/rules.xml b/app/code/Magento/Paypal/Test/Unit/Model/Config/Rules/ConvertibleContent/rules.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Config/Rules/FileResolverTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Config/Rules/FileResolverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Config/Rules/ReaderTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Config/Rules/ReaderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Config/Rules/SchemaLocatorTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Config/Rules/SchemaLocatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Config/Structure/Element/FieldPluginTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Config/Structure/Element/FieldPluginTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Config/Structure/PaymentSectionModifierTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Config/Structure/PaymentSectionModifierTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Config/Structure/_files/payment_section_structure_variations.php b/app/code/Magento/Paypal/Test/Unit/Model/Config/Structure/_files/payment_section_structure_variations.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Config/StructurePluginTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Config/StructurePluginTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/ConfigTest.php b/app/code/Magento/Paypal/Test/Unit/Model/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Express/CheckoutTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Express/CheckoutTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/ExpressConfigProviderTest.php b/app/code/Magento/Paypal/Test/Unit/Model/ExpressConfigProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/ExpressTest.php b/app/code/Magento/Paypal/Test/Unit/Model/ExpressTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Hostedpro/RequestTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Hostedpro/RequestTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/IframeConfigProviderTest.php b/app/code/Magento/Paypal/Test/Unit/Model/IframeConfigProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/InfoTest.php b/app/code/Magento/Paypal/Test/Unit/Model/InfoTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/IpnTest.php b/app/code/Magento/Paypal/Test/Unit/Model/IpnTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Method/AgreementTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Method/AgreementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Method/Checks/SpecificationPluginTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Method/Checks/SpecificationPluginTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Payflow/AvsEmsCodeMapperTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Payflow/AvsEmsCodeMapperTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Payflow/CvvEmsCodeMapperTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Payflow/CvvEmsCodeMapperTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/GatewayTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/GatewayTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Request/SecureTokenTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Request/SecureTokenTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Handler/CreditCardValidationHandlerTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Handler/CreditCardValidationHandlerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Handler/FraudHandlerTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Handler/FraudHandlerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Handler/HandlerCompositeTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Handler/HandlerCompositeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Handler/_files/fps_prexmldata.xml b/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Handler/_files/fps_prexmldata.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Handler/_files/xxe-xml.txt b/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Handler/_files/xxe-xml.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Handler/_files/xxe_fps_prexmldata.xml b/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Handler/_files/xxe_fps_prexmldata.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/TransactionTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/TransactionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Validator/AVSResponseTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Validator/AVSResponseTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Validator/CVV2MatchTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Validator/CVV2MatchTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Validator/IAVSResponseTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Validator/IAVSResponseTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Validator/ResponseValidatorTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Validator/ResponseValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Validator/SecureTokenTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Payflow/Service/Response/Validator/SecureTokenTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Payflow/TransparentTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Payflow/TransparentTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/PayflowConfigTest.php b/app/code/Magento/Paypal/Test/Unit/Model/PayflowConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/PayflowExpressTest.php b/app/code/Magento/Paypal/Test/Unit/Model/PayflowExpressTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/PayflowadvancedTest.php b/app/code/Magento/Paypal/Test/Unit/Model/PayflowadvancedTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/PayflowlinkTest.php b/app/code/Magento/Paypal/Test/Unit/Model/PayflowlinkTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/PayflowproTest.php b/app/code/Magento/Paypal/Test/Unit/Model/PayflowproTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Payment/Method/Billing/AbstractAgreementStub.php b/app/code/Magento/Paypal/Test/Unit/Model/Payment/Method/Billing/AbstractAgreementStub.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Payment/Method/Billing/AbstractAgreementTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Payment/Method/Billing/AbstractAgreementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/ProTest.php b/app/code/Magento/Paypal/Test/Unit/Model/ProTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/Report/Settlement/RowTest.php b/app/code/Magento/Paypal/Test/Unit/Model/Report/Settlement/RowTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/ResourceModel/Billing/AgreementTest.php b/app/code/Magento/Paypal/Test/Unit/Model/ResourceModel/Billing/AgreementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/System/Config/Source/BmlPositionTest.php b/app/code/Magento/Paypal/Test/Unit/Model/System/Config/Source/BmlPositionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/System/Config/Source/YesnoshortcutTest.php b/app/code/Magento/Paypal/Test/Unit/Model/System/Config/Source/YesnoshortcutTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Model/_files/additional_info_data.php b/app/code/Magento/Paypal/Test/Unit/Model/_files/additional_info_data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Observer/AddBillingAgreementToSessionObserverTest.php b/app/code/Magento/Paypal/Test/Unit/Observer/AddBillingAgreementToSessionObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Observer/AddPaypalShortcutsObserverTest.php b/app/code/Magento/Paypal/Test/Unit/Observer/AddPaypalShortcutsObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Observer/HtmlTransactionIdObserverTest.php b/app/code/Magento/Paypal/Test/Unit/Observer/HtmlTransactionIdObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Observer/RestrictAdminBillingAgreementUsageObserverTest.php b/app/code/Magento/Paypal/Test/Unit/Observer/RestrictAdminBillingAgreementUsageObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/Test/Unit/Observer/SetResponseAfterSaveOrderObserverTest.php b/app/code/Magento/Paypal/Test/Unit/Observer/SetResponseAfterSaveOrderObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/composer.json b/app/code/Magento/Paypal/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/etc/acl.xml b/app/code/Magento/Paypal/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/etc/adminhtml/di.xml b/app/code/Magento/Paypal/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/etc/adminhtml/events.xml b/app/code/Magento/Paypal/etc/adminhtml/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/etc/adminhtml/menu.xml b/app/code/Magento/Paypal/etc/adminhtml/menu.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/etc/adminhtml/routes.xml b/app/code/Magento/Paypal/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/etc/adminhtml/rules/payment_au.xml b/app/code/Magento/Paypal/etc/adminhtml/rules/payment_au.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/etc/adminhtml/rules/payment_ca.xml b/app/code/Magento/Paypal/etc/adminhtml/rules/payment_ca.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/etc/adminhtml/rules/payment_de.xml b/app/code/Magento/Paypal/etc/adminhtml/rules/payment_de.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/etc/adminhtml/rules/payment_es.xml b/app/code/Magento/Paypal/etc/adminhtml/rules/payment_es.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/etc/adminhtml/rules/payment_fr.xml b/app/code/Magento/Paypal/etc/adminhtml/rules/payment_fr.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/etc/adminhtml/rules/payment_gb.xml b/app/code/Magento/Paypal/etc/adminhtml/rules/payment_gb.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/etc/adminhtml/rules/payment_hk.xml b/app/code/Magento/Paypal/etc/adminhtml/rules/payment_hk.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/etc/adminhtml/rules/payment_it.xml b/app/code/Magento/Paypal/etc/adminhtml/rules/payment_it.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/etc/adminhtml/rules/payment_jp.xml b/app/code/Magento/Paypal/etc/adminhtml/rules/payment_jp.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/etc/adminhtml/rules/payment_nz.xml b/app/code/Magento/Paypal/etc/adminhtml/rules/payment_nz.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/etc/adminhtml/rules/payment_other.xml b/app/code/Magento/Paypal/etc/adminhtml/rules/payment_other.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/etc/adminhtml/rules/payment_us.xml b/app/code/Magento/Paypal/etc/adminhtml/rules/payment_us.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/etc/adminhtml/system.xml b/app/code/Magento/Paypal/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/etc/adminhtml/system/express_checkout.xml b/app/code/Magento/Paypal/etc/adminhtml/system/express_checkout.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/etc/adminhtml/system/payflow_advanced.xml b/app/code/Magento/Paypal/etc/adminhtml/system/payflow_advanced.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/etc/adminhtml/system/payflow_link.xml b/app/code/Magento/Paypal/etc/adminhtml/system/payflow_link.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/etc/adminhtml/system/payments_pro_hosted_solution.xml b/app/code/Magento/Paypal/etc/adminhtml/system/payments_pro_hosted_solution.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/etc/adminhtml/system/payments_pro_hosted_solution_with_express_checkout.xml b/app/code/Magento/Paypal/etc/adminhtml/system/payments_pro_hosted_solution_with_express_checkout.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/etc/adminhtml/system/paypal_payflowpro.xml b/app/code/Magento/Paypal/etc/adminhtml/system/paypal_payflowpro.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/etc/adminhtml/system/paypal_payflowpro_with_express_checkout.xml b/app/code/Magento/Paypal/etc/adminhtml/system/paypal_payflowpro_with_express_checkout.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/etc/config.xml b/app/code/Magento/Paypal/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/etc/crontab.xml b/app/code/Magento/Paypal/etc/crontab.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/etc/di.xml b/app/code/Magento/Paypal/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/etc/events.xml b/app/code/Magento/Paypal/etc/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/etc/frontend/di.xml b/app/code/Magento/Paypal/etc/frontend/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/etc/frontend/events.xml b/app/code/Magento/Paypal/etc/frontend/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/etc/frontend/page_types.xml b/app/code/Magento/Paypal/etc/frontend/page_types.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/etc/frontend/routes.xml b/app/code/Magento/Paypal/etc/frontend/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/etc/frontend/sections.xml b/app/code/Magento/Paypal/etc/frontend/sections.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/etc/module.xml b/app/code/Magento/Paypal/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/etc/payment.xml b/app/code/Magento/Paypal/etc/payment.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/etc/rules.xsd b/app/code/Magento/Paypal/etc/rules.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/i18n/en_US.csv b/app/code/Magento/Paypal/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/registration.php b/app/code/Magento/Paypal/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/adminhtml/layout/adminhtml_paypal_reports_block.xml b/app/code/Magento/Paypal/view/adminhtml/layout/adminhtml_paypal_reports_block.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/adminhtml/layout/adminhtml_system_config_edit.xml b/app/code/Magento/Paypal/view/adminhtml/layout/adminhtml_system_config_edit.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/adminhtml/layout/paypal_billing_agreement_customergrid.xml b/app/code/Magento/Paypal/view/adminhtml/layout/paypal_billing_agreement_customergrid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/adminhtml/layout/paypal_billing_agreement_grid.xml b/app/code/Magento/Paypal/view/adminhtml/layout/paypal_billing_agreement_grid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/adminhtml/layout/paypal_billing_agreement_index.xml b/app/code/Magento/Paypal/view/adminhtml/layout/paypal_billing_agreement_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/adminhtml/layout/paypal_billing_agreement_ordersgrid.xml b/app/code/Magento/Paypal/view/adminhtml/layout/paypal_billing_agreement_ordersgrid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/adminhtml/layout/paypal_billing_agreement_view.xml b/app/code/Magento/Paypal/view/adminhtml/layout/paypal_billing_agreement_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/adminhtml/layout/paypal_paypal_reports_grid.xml b/app/code/Magento/Paypal/view/adminhtml/layout/paypal_paypal_reports_grid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/adminhtml/layout/paypal_paypal_reports_index.xml b/app/code/Magento/Paypal/view/adminhtml/layout/paypal_paypal_reports_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/adminhtml/layout/sales_order_create_index.xml b/app/code/Magento/Paypal/view/adminhtml/layout/sales_order_create_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/adminhtml/layout/sales_order_create_load_block_billing_method.xml b/app/code/Magento/Paypal/view/adminhtml/layout/sales_order_create_load_block_billing_method.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/adminhtml/layout/transparent_payment_response.xml b/app/code/Magento/Paypal/view/adminhtml/layout/transparent_payment_response.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/adminhtml/templates/billing/agreement/form.phtml b/app/code/Magento/Paypal/view/adminhtml/templates/billing/agreement/form.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/adminhtml/templates/billing/agreement/view/form.phtml b/app/code/Magento/Paypal/view/adminhtml/templates/billing/agreement/view/form.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/adminhtml/templates/billing/agreement/view/tab/info.phtml b/app/code/Magento/Paypal/view/adminhtml/templates/billing/agreement/view/tab/info.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/adminhtml/templates/payflowpro/vault.phtml b/app/code/Magento/Paypal/view/adminhtml/templates/payflowpro/vault.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/adminhtml/templates/payment/form/billing/agreement.phtml b/app/code/Magento/Paypal/view/adminhtml/templates/payment/form/billing/agreement.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/adminhtml/templates/system/config/api_wizard.phtml b/app/code/Magento/Paypal/view/adminhtml/templates/system/config/api_wizard.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/adminhtml/templates/system/config/bml_api_wizard.phtml b/app/code/Magento/Paypal/view/adminhtml/templates/system/config/bml_api_wizard.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/adminhtml/templates/system/config/fieldset/hint.phtml b/app/code/Magento/Paypal/view/adminhtml/templates/system/config/fieldset/hint.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/adminhtml/templates/system/config/payflowlink/advanced.phtml b/app/code/Magento/Paypal/view/adminhtml/templates/system/config/payflowlink/advanced.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/adminhtml/templates/system/config/payflowlink/info.phtml b/app/code/Magento/Paypal/view/adminhtml/templates/system/config/payflowlink/info.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/adminhtml/templates/system/config/rules.phtml b/app/code/Magento/Paypal/view/adminhtml/templates/system/config/rules.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/adminhtml/templates/transparent/form.phtml b/app/code/Magento/Paypal/view/adminhtml/templates/transparent/form.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/adminhtml/templates/transparent/iframe.phtml b/app/code/Magento/Paypal/view/adminhtml/templates/transparent/iframe.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/adminhtml/web/images/AM_mc_vs_dc_ae.jpg b/app/code/Magento/Paypal/view/adminhtml/web/images/AM_mc_vs_dc_ae.jpg
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/adminhtml/web/images/logo-paypal.png b/app/code/Magento/Paypal/view/adminhtml/web/images/logo-paypal.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/adminhtml/web/images/paypal-logo.png b/app/code/Magento/Paypal/view/adminhtml/web/images/paypal-logo.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/adminhtml/web/images/pp-allinone.png b/app/code/Magento/Paypal/view/adminhtml/web/images/pp-allinone.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/adminhtml/web/images/pp-alt.png b/app/code/Magento/Paypal/view/adminhtml/web/images/pp-alt.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/adminhtml/web/images/pp-gateways.png b/app/code/Magento/Paypal/view/adminhtml/web/images/pp-gateways.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/adminhtml/web/images/pp-logo-200px.png b/app/code/Magento/Paypal/view/adminhtml/web/images/pp-logo-200px.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/adminhtml/web/images/pp-payflow-mark.png b/app/code/Magento/Paypal/view/adminhtml/web/images/pp-payflow-mark.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/adminhtml/web/images/pp-uk.png b/app/code/Magento/Paypal/view/adminhtml/web/images/pp-uk.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/adminhtml/web/js/payflowpro/vault.js b/app/code/Magento/Paypal/view/adminhtml/web/js/payflowpro/vault.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/adminhtml/web/js/predicate/confirm.js b/app/code/Magento/Paypal/view/adminhtml/web/js/predicate/confirm.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/adminhtml/web/js/rule.js b/app/code/Magento/Paypal/view/adminhtml/web/js/rule.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/adminhtml/web/js/rules.js b/app/code/Magento/Paypal/view/adminhtml/web/js/rules.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/adminhtml/web/js/solution.js b/app/code/Magento/Paypal/view/adminhtml/web/js/solution.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/adminhtml/web/js/solutions.js b/app/code/Magento/Paypal/view/adminhtml/web/js/solutions.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/adminhtml/web/logo.gif b/app/code/Magento/Paypal/view/adminhtml/web/logo.gif
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/adminhtml/web/section.png b/app/code/Magento/Paypal/view/adminhtml/web/section.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/adminhtml/web/styles.css b/app/code/Magento/Paypal/view/adminhtml/web/styles.css
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/base/requirejs-config.js b/app/code/Magento/Paypal/view/base/requirejs-config.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/base/ui_component/customer_form.xml b/app/code/Magento/Paypal/view/base/ui_component/customer_form.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/layout/catalog_category_view.xml b/app/code/Magento/Paypal/view/frontend/layout/catalog_category_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/layout/catalog_product_view.xml b/app/code/Magento/Paypal/view/frontend/layout/catalog_product_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/layout/checkout_cart_index.xml b/app/code/Magento/Paypal/view/frontend/layout/checkout_cart_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/layout/checkout_index_index.xml b/app/code/Magento/Paypal/view/frontend/layout/checkout_index_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/layout/checkout_onepage_review.xml b/app/code/Magento/Paypal/view/frontend/layout/checkout_onepage_review.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/layout/checkout_onepage_success.xml b/app/code/Magento/Paypal/view/frontend/layout/checkout_onepage_success.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/layout/cms_index_index.xml b/app/code/Magento/Paypal/view/frontend/layout/cms_index_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/layout/customer_account.xml b/app/code/Magento/Paypal/view/frontend/layout/customer_account.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/layout/default.xml b/app/code/Magento/Paypal/view/frontend/layout/default.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/layout/paypal_billing_agreement_index.xml b/app/code/Magento/Paypal/view/frontend/layout/paypal_billing_agreement_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/layout/paypal_billing_agreement_view.xml b/app/code/Magento/Paypal/view/frontend/layout/paypal_billing_agreement_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/layout/paypal_express_review.xml b/app/code/Magento/Paypal/view/frontend/layout/paypal_express_review.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/layout/paypal_express_review_details.xml b/app/code/Magento/Paypal/view/frontend/layout/paypal_express_review_details.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/layout/paypal_payflow_cancelpayment.xml b/app/code/Magento/Paypal/view/frontend/layout/paypal_payflow_cancelpayment.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/layout/paypal_payflow_form.xml b/app/code/Magento/Paypal/view/frontend/layout/paypal_payflow_form.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/layout/paypal_payflow_returnurl.xml b/app/code/Magento/Paypal/view/frontend/layout/paypal_payflow_returnurl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/layout/paypal_payflowadvanced_cancelpayment.xml b/app/code/Magento/Paypal/view/frontend/layout/paypal_payflowadvanced_cancelpayment.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/layout/paypal_payflowadvanced_form.xml b/app/code/Magento/Paypal/view/frontend/layout/paypal_payflowadvanced_form.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/layout/paypal_payflowadvanced_returnurl.xml b/app/code/Magento/Paypal/view/frontend/layout/paypal_payflowadvanced_returnurl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/layout/paypal_payflowexpress_review.xml b/app/code/Magento/Paypal/view/frontend/layout/paypal_payflowexpress_review.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/layout/transparent_payment_response.xml b/app/code/Magento/Paypal/view/frontend/layout/transparent_payment_response.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/layout/vault_cards_listaction.xml b/app/code/Magento/Paypal/view/frontend/layout/vault_cards_listaction.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/requirejs-config.js b/app/code/Magento/Paypal/view/frontend/requirejs-config.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/templates/billing/agreement/view.phtml b/app/code/Magento/Paypal/view/frontend/templates/billing/agreement/view.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/templates/billing/agreements.phtml b/app/code/Magento/Paypal/view/frontend/templates/billing/agreements.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/templates/bml.phtml b/app/code/Magento/Paypal/view/frontend/templates/bml.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/templates/checkout/onepage/review/totals.phtml b/app/code/Magento/Paypal/view/frontend/templates/checkout/onepage/review/totals.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/templates/checkout/onepage/success/billing_agreement.phtml b/app/code/Magento/Paypal/view/frontend/templates/checkout/onepage/success/billing_agreement.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/templates/express/in-context/component.phtml b/app/code/Magento/Paypal/view/frontend/templates/express/in-context/component.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/templates/express/in-context/shortcut/button.phtml b/app/code/Magento/Paypal/view/frontend/templates/express/in-context/shortcut/button.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/templates/express/review.phtml b/app/code/Magento/Paypal/view/frontend/templates/express/review.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/templates/express/review/details.phtml b/app/code/Magento/Paypal/view/frontend/templates/express/review/details.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/templates/express/review/shipping/method.phtml b/app/code/Magento/Paypal/view/frontend/templates/express/review/shipping/method.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/templates/express/shortcut.phtml b/app/code/Magento/Paypal/view/frontend/templates/express/shortcut.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/templates/express/shortcut/container.phtml b/app/code/Magento/Paypal/view/frontend/templates/express/shortcut/container.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/templates/hss/form.phtml b/app/code/Magento/Paypal/view/frontend/templates/hss/form.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/templates/hss/iframe.phtml b/app/code/Magento/Paypal/view/frontend/templates/hss/iframe.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/templates/hss/info.phtml b/app/code/Magento/Paypal/view/frontend/templates/hss/info.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/templates/hss/js.phtml b/app/code/Magento/Paypal/view/frontend/templates/hss/js.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/templates/hss/review/button.phtml b/app/code/Magento/Paypal/view/frontend/templates/hss/review/button.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/templates/js/components.phtml b/app/code/Magento/Paypal/view/frontend/templates/js/components.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/templates/partner/logo.phtml b/app/code/Magento/Paypal/view/frontend/templates/partner/logo.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/templates/payflowadvanced/form.phtml b/app/code/Magento/Paypal/view/frontend/templates/payflowadvanced/form.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/templates/payflowadvanced/info.phtml b/app/code/Magento/Paypal/view/frontend/templates/payflowadvanced/info.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/templates/payflowlink/form.phtml b/app/code/Magento/Paypal/view/frontend/templates/payflowlink/form.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/templates/payflowlink/info.phtml b/app/code/Magento/Paypal/view/frontend/templates/payflowlink/info.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/templates/payflowlink/redirect.phtml b/app/code/Magento/Paypal/view/frontend/templates/payflowlink/redirect.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/templates/payment/form/billing/agreement.phtml b/app/code/Magento/Paypal/view/frontend/templates/payment/form/billing/agreement.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/templates/payment/mark.phtml b/app/code/Magento/Paypal/view/frontend/templates/payment/mark.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/templates/payment/redirect.phtml b/app/code/Magento/Paypal/view/frontend/templates/payment/redirect.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/web/js/action/set-payment-method.js b/app/code/Magento/Paypal/view/frontend/web/js/action/set-payment-method.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/web/js/in-context/billing-agreement.js b/app/code/Magento/Paypal/view/frontend/web/js/in-context/billing-agreement.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/web/js/in-context/button.js b/app/code/Magento/Paypal/view/frontend/web/js/in-context/button.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/web/js/in-context/express-checkout.js b/app/code/Magento/Paypal/view/frontend/web/js/in-context/express-checkout.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/web/js/model/iframe-redirect.js b/app/code/Magento/Paypal/view/frontend/web/js/model/iframe-redirect.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/web/js/model/iframe.js b/app/code/Magento/Paypal/view/frontend/web/js/model/iframe.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/web/js/paypal-checkout.js b/app/code/Magento/Paypal/view/frontend/web/js/paypal-checkout.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/iframe-methods.js b/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/iframe-methods.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/in-context/checkout-express.js b/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/in-context/checkout-express.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/payflow-express-bml.js b/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/payflow-express-bml.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/payflow-express.js b/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/payflow-express.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/payflowpro-method.js b/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/payflowpro-method.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/payflowpro/vault.js b/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/payflowpro/vault.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/paypal-billing-agreement.js b/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/paypal-billing-agreement.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/paypal-express-abstract.js b/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/paypal-express-abstract.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/paypal-express-bml.js b/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/paypal-express-bml.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/paypal-express.js b/app/code/Magento/Paypal/view/frontend/web/js/view/payment/method-renderer/paypal-express.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/web/js/view/payment/paypal-payments.js b/app/code/Magento/Paypal/view/frontend/web/js/view/payment/paypal-payments.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/web/js/view/review/actions/iframe.js b/app/code/Magento/Paypal/view/frontend/web/js/view/review/actions/iframe.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/web/order-review.js b/app/code/Magento/Paypal/view/frontend/web/order-review.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/web/template/payment/express/billing-agreement.html b/app/code/Magento/Paypal/view/frontend/web/template/payment/express/billing-agreement.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/web/template/payment/iframe-methods.html b/app/code/Magento/Paypal/view/frontend/web/template/payment/iframe-methods.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/web/template/payment/payflow-express-bml.html b/app/code/Magento/Paypal/view/frontend/web/template/payment/payflow-express-bml.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/web/template/payment/payflow-express.html b/app/code/Magento/Paypal/view/frontend/web/template/payment/payflow-express.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/web/template/payment/payflowpro-form.html b/app/code/Magento/Paypal/view/frontend/web/template/payment/payflowpro-form.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/web/template/payment/paypal-express-bml.html b/app/code/Magento/Paypal/view/frontend/web/template/payment/paypal-express-bml.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/web/template/payment/paypal-express-in-context.html b/app/code/Magento/Paypal/view/frontend/web/template/payment/paypal-express-in-context.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/web/template/payment/paypal-express.html b/app/code/Magento/Paypal/view/frontend/web/template/payment/paypal-express.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/web/template/payment/paypal_billing_agreement-form.html b/app/code/Magento/Paypal/view/frontend/web/template/payment/paypal_billing_agreement-form.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Paypal/view/frontend/web/template/payment/paypal_direct-form.html b/app/code/Magento/Paypal/view/frontend/web/template/payment/paypal_direct-form.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Block/Form/Remember.php b/app/code/Magento/Persistent/Block/Form/Remember.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Block/Header/Additional.php b/app/code/Magento/Persistent/Block/Header/Additional.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Controller/Index.php b/app/code/Magento/Persistent/Controller/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Controller/Index/ExpressCheckout.php b/app/code/Magento/Persistent/Controller/Index/ExpressCheckout.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Controller/Index/SaveMethod.php b/app/code/Magento/Persistent/Controller/Index/SaveMethod.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Controller/Index/UnsetCookie.php b/app/code/Magento/Persistent/Controller/Index/UnsetCookie.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Helper/Data.php b/app/code/Magento/Persistent/Helper/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Helper/Session.php b/app/code/Magento/Persistent/Helper/Session.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/LICENSE.txt b/app/code/Magento/Persistent/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/LICENSE_AFL.txt b/app/code/Magento/Persistent/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Model/Checkout/AddressDataProcessorPlugin.php b/app/code/Magento/Persistent/Model/Checkout/AddressDataProcessorPlugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Model/Checkout/ConfigProviderPlugin.php b/app/code/Magento/Persistent/Model/Checkout/ConfigProviderPlugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Model/Checkout/GuestPaymentInformationManagementPlugin.php b/app/code/Magento/Persistent/Model/Checkout/GuestPaymentInformationManagementPlugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Model/CheckoutConfigProvider.php b/app/code/Magento/Persistent/Model/CheckoutConfigProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Model/Factory.php b/app/code/Magento/Persistent/Model/Factory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Model/Layout/DepersonalizePlugin.php b/app/code/Magento/Persistent/Model/Layout/DepersonalizePlugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Model/Observer.php b/app/code/Magento/Persistent/Model/Observer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Model/Persistent/Config.php b/app/code/Magento/Persistent/Model/Persistent/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Model/Plugin/CustomerData.php b/app/code/Magento/Persistent/Model/Plugin/CustomerData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Model/QuoteManager.php b/app/code/Magento/Persistent/Model/QuoteManager.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Model/ResourceModel/Session.php b/app/code/Magento/Persistent/Model/ResourceModel/Session.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Model/Session.php b/app/code/Magento/Persistent/Model/Session.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Observer/ApplyBlockPersistentDataObserver.php b/app/code/Magento/Persistent/Observer/ApplyBlockPersistentDataObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Observer/ApplyPersistentDataObserver.php b/app/code/Magento/Persistent/Observer/ApplyPersistentDataObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Observer/CheckExpirePersistentQuoteObserver.php b/app/code/Magento/Persistent/Observer/CheckExpirePersistentQuoteObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Observer/ClearExpiredCronJobObserver.php b/app/code/Magento/Persistent/Observer/ClearExpiredCronJobObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Observer/CustomerAuthenticatedEventObserver.php b/app/code/Magento/Persistent/Observer/CustomerAuthenticatedEventObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Observer/EmulateCustomerObserver.php b/app/code/Magento/Persistent/Observer/EmulateCustomerObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Observer/EmulateQuoteObserver.php b/app/code/Magento/Persistent/Observer/EmulateQuoteObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Observer/MakePersistentQuoteGuestObserver.php b/app/code/Magento/Persistent/Observer/MakePersistentQuoteGuestObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Observer/PreventClearCheckoutSessionObserver.php b/app/code/Magento/Persistent/Observer/PreventClearCheckoutSessionObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Observer/PreventExpressCheckoutObserver.php b/app/code/Magento/Persistent/Observer/PreventExpressCheckoutObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Observer/RefreshCustomerData.php b/app/code/Magento/Persistent/Observer/RefreshCustomerData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Observer/RemoveGuestPersistenceOnEmptyCartObserver.php b/app/code/Magento/Persistent/Observer/RemoveGuestPersistenceOnEmptyCartObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Observer/RemovePersistentCookieOnRegisterObserver.php b/app/code/Magento/Persistent/Observer/RemovePersistentCookieOnRegisterObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Observer/RenewCookieObserver.php b/app/code/Magento/Persistent/Observer/RenewCookieObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Observer/SetLoadPersistentQuoteObserver.php b/app/code/Magento/Persistent/Observer/SetLoadPersistentQuoteObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Observer/SetQuotePersistentDataObserver.php b/app/code/Magento/Persistent/Observer/SetQuotePersistentDataObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Observer/SetRememberMeCheckedStatusObserver.php b/app/code/Magento/Persistent/Observer/SetRememberMeCheckedStatusObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Observer/SetRememberMeStatusForAjaxLoginObserver.php b/app/code/Magento/Persistent/Observer/SetRememberMeStatusForAjaxLoginObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Observer/SynchronizePersistentInfoObserver.php b/app/code/Magento/Persistent/Observer/SynchronizePersistentInfoObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Observer/SynchronizePersistentOnLoginObserver.php b/app/code/Magento/Persistent/Observer/SynchronizePersistentOnLoginObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Observer/SynchronizePersistentOnLogoutObserver.php b/app/code/Magento/Persistent/Observer/SynchronizePersistentOnLogoutObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Observer/UpdateCustomerCookiesObserver.php b/app/code/Magento/Persistent/Observer/UpdateCustomerCookiesObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/README.md b/app/code/Magento/Persistent/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Setup/InstallSchema.php b/app/code/Magento/Persistent/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Test/Unit/Block/Header/AdditionalTest.php b/app/code/Magento/Persistent/Test/Unit/Block/Header/AdditionalTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Test/Unit/Helper/DataTest.php b/app/code/Magento/Persistent/Test/Unit/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Test/Unit/Model/Checkout/ConfigProviderPluginTest.php b/app/code/Magento/Persistent/Test/Unit/Model/Checkout/ConfigProviderPluginTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Test/Unit/Model/Checkout/GuestPaymentInformationManagementPluginTest.php b/app/code/Magento/Persistent/Test/Unit/Model/Checkout/GuestPaymentInformationManagementPluginTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Test/Unit/Model/FactoryTest.php b/app/code/Magento/Persistent/Test/Unit/Model/FactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Test/Unit/Model/Layout/DepersonalizePluginTest.php b/app/code/Magento/Persistent/Test/Unit/Model/Layout/DepersonalizePluginTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Test/Unit/Model/ObserverTest.php b/app/code/Magento/Persistent/Test/Unit/Model/ObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Test/Unit/Model/Plugin/CustomerDataTest.php b/app/code/Magento/Persistent/Test/Unit/Model/Plugin/CustomerDataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Test/Unit/Model/QuoteManagerTest.php b/app/code/Magento/Persistent/Test/Unit/Model/QuoteManagerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Test/Unit/Model/SessionTest.php b/app/code/Magento/Persistent/Test/Unit/Model/SessionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Test/Unit/Observer/ApplyBlockPersistentDataObserverTest.php b/app/code/Magento/Persistent/Test/Unit/Observer/ApplyBlockPersistentDataObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Test/Unit/Observer/ApplyPersistentDataObserverTest.php b/app/code/Magento/Persistent/Test/Unit/Observer/ApplyPersistentDataObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Test/Unit/Observer/CheckExpirePersistentQuoteObserverTest.php b/app/code/Magento/Persistent/Test/Unit/Observer/CheckExpirePersistentQuoteObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Test/Unit/Observer/ClearExpiredCronJobObserverTest.php b/app/code/Magento/Persistent/Test/Unit/Observer/ClearExpiredCronJobObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Test/Unit/Observer/CustomerAuthenticatedEventObserverTest.php b/app/code/Magento/Persistent/Test/Unit/Observer/CustomerAuthenticatedEventObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Test/Unit/Observer/EmulateCustomerObserverTest.php b/app/code/Magento/Persistent/Test/Unit/Observer/EmulateCustomerObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Test/Unit/Observer/EmulateQuoteObserverTest.php b/app/code/Magento/Persistent/Test/Unit/Observer/EmulateQuoteObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Test/Unit/Observer/MakePersistentQuoteGuestObserverTest.php b/app/code/Magento/Persistent/Test/Unit/Observer/MakePersistentQuoteGuestObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Test/Unit/Observer/PreventClearCheckoutSessionObserverTest.php b/app/code/Magento/Persistent/Test/Unit/Observer/PreventClearCheckoutSessionObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Test/Unit/Observer/PreventExpressCheckoutObserverTest.php b/app/code/Magento/Persistent/Test/Unit/Observer/PreventExpressCheckoutObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Test/Unit/Observer/RefreshCustomerDataTest.php b/app/code/Magento/Persistent/Test/Unit/Observer/RefreshCustomerDataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Test/Unit/Observer/RemoveGuestPersistenceOnEmptyCartObserverTest.php b/app/code/Magento/Persistent/Test/Unit/Observer/RemoveGuestPersistenceOnEmptyCartObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Test/Unit/Observer/RemovePersistentCookieOnRegisterObserverTest.php b/app/code/Magento/Persistent/Test/Unit/Observer/RemovePersistentCookieOnRegisterObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Test/Unit/Observer/RenewCookieObserverTest.php b/app/code/Magento/Persistent/Test/Unit/Observer/RenewCookieObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Test/Unit/Observer/SetLoadPersistentQuoteObserverTest.php b/app/code/Magento/Persistent/Test/Unit/Observer/SetLoadPersistentQuoteObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Test/Unit/Observer/SetQuotePersistentDataObserverTest.php b/app/code/Magento/Persistent/Test/Unit/Observer/SetQuotePersistentDataObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Test/Unit/Observer/SetRememberMeCheckedStatusObserverTest.php b/app/code/Magento/Persistent/Test/Unit/Observer/SetRememberMeCheckedStatusObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Test/Unit/Observer/SynchronizePersistentInfoObserverTest.php b/app/code/Magento/Persistent/Test/Unit/Observer/SynchronizePersistentInfoObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Test/Unit/Observer/SynchronizePersistentOnLogoutObserverTest.php b/app/code/Magento/Persistent/Test/Unit/Observer/SynchronizePersistentOnLogoutObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/Test/Unit/Observer/UpdateCustomerCookiesObserverTest.php b/app/code/Magento/Persistent/Test/Unit/Observer/UpdateCustomerCookiesObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/composer.json b/app/code/Magento/Persistent/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/etc/acl.xml b/app/code/Magento/Persistent/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/etc/adminhtml/system.xml b/app/code/Magento/Persistent/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/etc/config.xml b/app/code/Magento/Persistent/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/etc/crontab.xml b/app/code/Magento/Persistent/etc/crontab.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/etc/di.xml b/app/code/Magento/Persistent/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/etc/extension_attributes.xml b/app/code/Magento/Persistent/etc/extension_attributes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/etc/frontend/di.xml b/app/code/Magento/Persistent/etc/frontend/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/etc/frontend/events.xml b/app/code/Magento/Persistent/etc/frontend/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/etc/frontend/routes.xml b/app/code/Magento/Persistent/etc/frontend/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/etc/module.xml b/app/code/Magento/Persistent/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/etc/persistent.xml b/app/code/Magento/Persistent/etc/persistent.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/etc/persistent.xsd b/app/code/Magento/Persistent/etc/persistent.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/etc/webapi_rest/di.xml b/app/code/Magento/Persistent/etc/webapi_rest/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/etc/webapi_rest/events.xml b/app/code/Magento/Persistent/etc/webapi_rest/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/etc/webapi_soap/di.xml b/app/code/Magento/Persistent/etc/webapi_soap/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/etc/webapi_soap/events.xml b/app/code/Magento/Persistent/etc/webapi_soap/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/i18n/en_US.csv b/app/code/Magento/Persistent/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/registration.php b/app/code/Magento/Persistent/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/view/frontend/layout/customer_account_create.xml b/app/code/Magento/Persistent/view/frontend/layout/customer_account_create.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/view/frontend/layout/customer_account_login.xml b/app/code/Magento/Persistent/view/frontend/layout/customer_account_login.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/view/frontend/templates/remember_me.phtml b/app/code/Magento/Persistent/view/frontend/templates/remember_me.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/view/frontend/web/js/view/remember-me.js b/app/code/Magento/Persistent/view/frontend/web/js/view/remember-me.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Persistent/view/frontend/web/template/remember-me.html b/app/code/Magento/Persistent/view/frontend/web/template/remember-me.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/Block/Email/AbstractEmail.php b/app/code/Magento/ProductAlert/Block/Email/AbstractEmail.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/Block/Email/Price.php b/app/code/Magento/ProductAlert/Block/Email/Price.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/Block/Email/Stock.php b/app/code/Magento/ProductAlert/Block/Email/Stock.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/Block/Product/View.php b/app/code/Magento/ProductAlert/Block/Product/View.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/Block/Product/View/Price.php b/app/code/Magento/ProductAlert/Block/Product/View/Price.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/Block/Product/View/Stock.php b/app/code/Magento/ProductAlert/Block/Product/View/Stock.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/Controller/Add.php b/app/code/Magento/ProductAlert/Controller/Add.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/Controller/Add/Price.php b/app/code/Magento/ProductAlert/Controller/Add/Price.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/Controller/Add/Stock.php b/app/code/Magento/ProductAlert/Controller/Add/Stock.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/Controller/Unsubscribe.php b/app/code/Magento/ProductAlert/Controller/Unsubscribe.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/Controller/Unsubscribe/Price.php b/app/code/Magento/ProductAlert/Controller/Unsubscribe/Price.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/Controller/Unsubscribe/PriceAll.php b/app/code/Magento/ProductAlert/Controller/Unsubscribe/PriceAll.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/Controller/Unsubscribe/Stock.php b/app/code/Magento/ProductAlert/Controller/Unsubscribe/Stock.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/Controller/Unsubscribe/StockAll.php b/app/code/Magento/ProductAlert/Controller/Unsubscribe/StockAll.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/Helper/Data.php b/app/code/Magento/ProductAlert/Helper/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/LICENSE.txt b/app/code/Magento/ProductAlert/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/LICENSE_AFL.txt b/app/code/Magento/ProductAlert/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/Model/Email.php b/app/code/Magento/ProductAlert/Model/Email.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/Model/Observer.php b/app/code/Magento/ProductAlert/Model/Observer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/Model/Price.php b/app/code/Magento/ProductAlert/Model/Price.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/Model/ResourceModel/AbstractResource.php b/app/code/Magento/ProductAlert/Model/ResourceModel/AbstractResource.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/Model/ResourceModel/Price.php b/app/code/Magento/ProductAlert/Model/ResourceModel/Price.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/Model/ResourceModel/Price/Collection.php b/app/code/Magento/ProductAlert/Model/ResourceModel/Price/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/Model/ResourceModel/Price/Customer/Collection.php b/app/code/Magento/ProductAlert/Model/ResourceModel/Price/Customer/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/Model/ResourceModel/Stock.php b/app/code/Magento/ProductAlert/Model/ResourceModel/Stock.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/Model/ResourceModel/Stock/Collection.php b/app/code/Magento/ProductAlert/Model/ResourceModel/Stock/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/Model/ResourceModel/Stock/Customer/Collection.php b/app/code/Magento/ProductAlert/Model/ResourceModel/Stock/Customer/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/Model/Stock.php b/app/code/Magento/ProductAlert/Model/Stock.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/README.md b/app/code/Magento/ProductAlert/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/Setup/InstallSchema.php b/app/code/Magento/ProductAlert/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/Setup/Recurring.php b/app/code/Magento/ProductAlert/Setup/Recurring.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/Test/Unit/Block/Email/StockTest.php b/app/code/Magento/ProductAlert/Test/Unit/Block/Email/StockTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/Test/Unit/Block/Product/View/PriceTest.php b/app/code/Magento/ProductAlert/Test/Unit/Block/Product/View/PriceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/Test/Unit/Block/Product/View/StockTest.php b/app/code/Magento/ProductAlert/Test/Unit/Block/Product/View/StockTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/Test/Unit/Block/Product/ViewTest.php b/app/code/Magento/ProductAlert/Test/Unit/Block/Product/ViewTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/Test/Unit/Model/ObserverTest.php b/app/code/Magento/ProductAlert/Test/Unit/Model/ObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/composer.json b/app/code/Magento/ProductAlert/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/etc/adminhtml/system.xml b/app/code/Magento/ProductAlert/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/etc/config.xml b/app/code/Magento/ProductAlert/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/etc/crontab.xml b/app/code/Magento/ProductAlert/etc/crontab.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/etc/di.xml b/app/code/Magento/ProductAlert/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/etc/email_templates.xml b/app/code/Magento/ProductAlert/etc/email_templates.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/etc/frontend/routes.xml b/app/code/Magento/ProductAlert/etc/frontend/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/etc/module.xml b/app/code/Magento/ProductAlert/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/i18n/en_US.csv b/app/code/Magento/ProductAlert/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/registration.php b/app/code/Magento/ProductAlert/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/view/adminhtml/email/cron_error.html b/app/code/Magento/ProductAlert/view/adminhtml/email/cron_error.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/view/frontend/email/price_alert.html b/app/code/Magento/ProductAlert/view/frontend/email/price_alert.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/view/frontend/email/stock_alert.html b/app/code/Magento/ProductAlert/view/frontend/email/stock_alert.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/view/frontend/layout/catalog_product_view.xml b/app/code/Magento/ProductAlert/view/frontend/layout/catalog_product_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/view/frontend/templates/email/price.phtml b/app/code/Magento/ProductAlert/view/frontend/templates/email/price.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/view/frontend/templates/email/stock.phtml b/app/code/Magento/ProductAlert/view/frontend/templates/email/stock.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductAlert/view/frontend/templates/product/view.phtml b/app/code/Magento/ProductAlert/view/frontend/templates/product/view.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/Block/Adminhtml/Product/Edit/NewVideo.php b/app/code/Magento/ProductVideo/Block/Adminhtml/Product/Edit/NewVideo.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/Block/Product/View/Gallery.php b/app/code/Magento/ProductVideo/Block/Product/View/Gallery.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/Controller/Adminhtml/Product/Gallery/RetrieveImage.php b/app/code/Magento/ProductVideo/Controller/Adminhtml/Product/Gallery/RetrieveImage.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/Helper/Media.php b/app/code/Magento/ProductVideo/Helper/Media.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/LICENSE.txt b/app/code/Magento/ProductVideo/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/LICENSE_AFL.txt b/app/code/Magento/ProductVideo/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/Model/Plugin/Catalog/Product/Gallery/AbstractHandler.php b/app/code/Magento/ProductVideo/Model/Plugin/Catalog/Product/Gallery/AbstractHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/Model/Plugin/Catalog/Product/Gallery/CreateHandler.php b/app/code/Magento/ProductVideo/Model/Plugin/Catalog/Product/Gallery/CreateHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/Model/Plugin/Catalog/Product/Gallery/ReadHandler.php b/app/code/Magento/ProductVideo/Model/Plugin/Catalog/Product/Gallery/ReadHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/Model/Plugin/ExternalVideoResourceBackend.php b/app/code/Magento/ProductVideo/Model/Plugin/ExternalVideoResourceBackend.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/Model/Product/Attribute/Media/ExternalVideoEntryConverter.php b/app/code/Magento/ProductVideo/Model/Product/Attribute/Media/ExternalVideoEntryConverter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/Model/Product/Attribute/Media/VideoEntry.php b/app/code/Magento/ProductVideo/Model/Product/Attribute/Media/VideoEntry.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/Model/ResourceModel/Video.php b/app/code/Magento/ProductVideo/Model/ResourceModel/Video.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/Model/VideoExtractor.php b/app/code/Magento/ProductVideo/Model/VideoExtractor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/Observer/ChangeTemplateObserver.php b/app/code/Magento/ProductVideo/Observer/ChangeTemplateObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/README.md b/app/code/Magento/ProductVideo/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/Setup/InstallSchema.php b/app/code/Magento/ProductVideo/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/Test/Unit/Block/Adminhtml/Product/Edit/NewVideoTest.php b/app/code/Magento/ProductVideo/Test/Unit/Block/Adminhtml/Product/Edit/NewVideoTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/Test/Unit/Block/Product/View/GalleryTest.php b/app/code/Magento/ProductVideo/Test/Unit/Block/Product/View/GalleryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/Test/Unit/Controller/Adminhtml/Product/Gallery/RetrieveImageTest.php b/app/code/Magento/ProductVideo/Test/Unit/Controller/Adminhtml/Product/Gallery/RetrieveImageTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/Test/Unit/Helper/MediaTest.php b/app/code/Magento/ProductVideo/Test/Unit/Helper/MediaTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/Test/Unit/Model/Plugin/Catalog/Product/Gallery/CreateHandlerTest.php b/app/code/Magento/ProductVideo/Test/Unit/Model/Plugin/Catalog/Product/Gallery/CreateHandlerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/Test/Unit/Model/Plugin/Catalog/Product/Gallery/ReadHandlerTest.php b/app/code/Magento/ProductVideo/Test/Unit/Model/Plugin/Catalog/Product/Gallery/ReadHandlerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/Test/Unit/Model/Product/Attribute/Media/ExternalVideoEntryConverterTest.php b/app/code/Magento/ProductVideo/Test/Unit/Model/Product/Attribute/Media/ExternalVideoEntryConverterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/Test/Unit/Model/Product/Attribute/Media/VideoEntryTest.php b/app/code/Magento/ProductVideo/Test/Unit/Model/Product/Attribute/Media/VideoEntryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/Test/Unit/Observer/ChangeTemplateObserverTest.php b/app/code/Magento/ProductVideo/Test/Unit/Observer/ChangeTemplateObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/composer.json b/app/code/Magento/ProductVideo/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/etc/adminhtml/events.xml b/app/code/Magento/ProductVideo/etc/adminhtml/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/etc/adminhtml/routes.xml b/app/code/Magento/ProductVideo/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/etc/adminhtml/system.xml b/app/code/Magento/ProductVideo/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/etc/config.xml b/app/code/Magento/ProductVideo/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/etc/di.xml b/app/code/Magento/ProductVideo/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/etc/extension_attributes.xml b/app/code/Magento/ProductVideo/etc/extension_attributes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/etc/module.xml b/app/code/Magento/ProductVideo/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/i18n/de_DE.csv b/app/code/Magento/ProductVideo/i18n/de_DE.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/i18n/en_US.csv b/app/code/Magento/ProductVideo/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/i18n/es_ES.csv b/app/code/Magento/ProductVideo/i18n/es_ES.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/i18n/fr_FR.csv b/app/code/Magento/ProductVideo/i18n/fr_FR.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/i18n/nl_NL.csv b/app/code/Magento/ProductVideo/i18n/nl_NL.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/i18n/pt_BR.csv b/app/code/Magento/ProductVideo/i18n/pt_BR.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/i18n/zh_Hans_CN.csv b/app/code/Magento/ProductVideo/i18n/zh_Hans_CN.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/registration.php b/app/code/Magento/ProductVideo/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/view/adminhtml/layout/catalog_product_new.xml b/app/code/Magento/ProductVideo/view/adminhtml/layout/catalog_product_new.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/view/adminhtml/requirejs-config.js b/app/code/Magento/ProductVideo/view/adminhtml/requirejs-config.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/view/adminhtml/templates/product/edit/base_image.phtml b/app/code/Magento/ProductVideo/view/adminhtml/templates/product/edit/base_image.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/view/adminhtml/templates/product/edit/slideout/form.phtml b/app/code/Magento/ProductVideo/view/adminhtml/templates/product/edit/slideout/form.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/view/adminhtml/ui_component/product_form.xml b/app/code/Magento/ProductVideo/view/adminhtml/ui_component/product_form.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/view/adminhtml/web/images/camera.png b/app/code/Magento/ProductVideo/view/adminhtml/web/images/camera.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/view/adminhtml/web/images/gallery-sprite.png b/app/code/Magento/ProductVideo/view/adminhtml/web/images/gallery-sprite.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/view/adminhtml/web/js/get-video-information.js b/app/code/Magento/ProductVideo/view/adminhtml/web/js/get-video-information.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/view/adminhtml/web/js/new-video-dialog.js b/app/code/Magento/ProductVideo/view/adminhtml/web/js/new-video-dialog.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/view/adminhtml/web/js/video-modal.js b/app/code/Magento/ProductVideo/view/adminhtml/web/js/video-modal.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/view/frontend/layout/catalog_product_view.xml b/app/code/Magento/ProductVideo/view/frontend/layout/catalog_product_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/view/frontend/requirejs-config.js b/app/code/Magento/ProductVideo/view/frontend/requirejs-config.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/view/frontend/templates/product/view/gallery.phtml b/app/code/Magento/ProductVideo/view/frontend/templates/product/view/gallery.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/view/frontend/web/img/gallery-sprite.png b/app/code/Magento/ProductVideo/view/frontend/web/img/gallery-sprite.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/view/frontend/web/js/fotorama-add-video-events.js b/app/code/Magento/ProductVideo/view/frontend/web/js/fotorama-add-video-events.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ProductVideo/view/frontend/web/js/load-player.js b/app/code/Magento/ProductVideo/view/frontend/web/js/load-player.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Api/BillingAddressManagementInterface.php b/app/code/Magento/Quote/Api/BillingAddressManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Api/CartItemRepositoryInterface.php b/app/code/Magento/Quote/Api/CartItemRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Api/CartManagementInterface.php b/app/code/Magento/Quote/Api/CartManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Api/CartRepositoryInterface.php b/app/code/Magento/Quote/Api/CartRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Api/CartTotalManagementInterface.php b/app/code/Magento/Quote/Api/CartTotalManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Api/CartTotalRepositoryInterface.php b/app/code/Magento/Quote/Api/CartTotalRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Api/CouponManagementInterface.php b/app/code/Magento/Quote/Api/CouponManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Api/Data/AddressAdditionalDataInterface.php b/app/code/Magento/Quote/Api/Data/AddressAdditionalDataInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Api/Data/AddressInterface.php b/app/code/Magento/Quote/Api/Data/AddressInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Api/Data/CartInterface.php b/app/code/Magento/Quote/Api/Data/CartInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Api/Data/CartItemInterface.php b/app/code/Magento/Quote/Api/Data/CartItemInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Api/Data/CartSearchResultsInterface.php b/app/code/Magento/Quote/Api/Data/CartSearchResultsInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Api/Data/CurrencyInterface.php b/app/code/Magento/Quote/Api/Data/CurrencyInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Api/Data/EstimateAddressInterface.php b/app/code/Magento/Quote/Api/Data/EstimateAddressInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Api/Data/PaymentInterface.php b/app/code/Magento/Quote/Api/Data/PaymentInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Api/Data/PaymentMethodInterface.php b/app/code/Magento/Quote/Api/Data/PaymentMethodInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Api/Data/ProductOptionInterface.php b/app/code/Magento/Quote/Api/Data/ProductOptionInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Api/Data/ShippingAssignmentInterface.php b/app/code/Magento/Quote/Api/Data/ShippingAssignmentInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Api/Data/ShippingInterface.php b/app/code/Magento/Quote/Api/Data/ShippingInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Api/Data/ShippingMethodInterface.php b/app/code/Magento/Quote/Api/Data/ShippingMethodInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Api/Data/TotalSegmentInterface.php b/app/code/Magento/Quote/Api/Data/TotalSegmentInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Api/Data/TotalsAdditionalDataInterface.php b/app/code/Magento/Quote/Api/Data/TotalsAdditionalDataInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Api/Data/TotalsInterface.php b/app/code/Magento/Quote/Api/Data/TotalsInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Api/Data/TotalsItemInterface.php b/app/code/Magento/Quote/Api/Data/TotalsItemInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Api/GuestBillingAddressManagementInterface.php b/app/code/Magento/Quote/Api/GuestBillingAddressManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Api/GuestCartItemRepositoryInterface.php b/app/code/Magento/Quote/Api/GuestCartItemRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Api/GuestCartManagementInterface.php b/app/code/Magento/Quote/Api/GuestCartManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Api/GuestCartRepositoryInterface.php b/app/code/Magento/Quote/Api/GuestCartRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Api/GuestCartTotalManagementInterface.php b/app/code/Magento/Quote/Api/GuestCartTotalManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Api/GuestCartTotalRepositoryInterface.php b/app/code/Magento/Quote/Api/GuestCartTotalRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Api/GuestCouponManagementInterface.php b/app/code/Magento/Quote/Api/GuestCouponManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Api/GuestPaymentMethodManagementInterface.php b/app/code/Magento/Quote/Api/GuestPaymentMethodManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Api/GuestShipmentEstimationInterface.php b/app/code/Magento/Quote/Api/GuestShipmentEstimationInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Api/GuestShippingMethodManagementInterface.php b/app/code/Magento/Quote/Api/GuestShippingMethodManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Api/PaymentMethodManagementInterface.php b/app/code/Magento/Quote/Api/PaymentMethodManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Api/ShipmentEstimationInterface.php b/app/code/Magento/Quote/Api/ShipmentEstimationInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Api/ShippingMethodManagementInterface.php b/app/code/Magento/Quote/Api/ShippingMethodManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/LICENSE.txt b/app/code/Magento/Quote/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/LICENSE_AFL.txt b/app/code/Magento/Quote/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/AddressAdditionalData.php b/app/code/Magento/Quote/Model/AddressAdditionalData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/AddressAdditionalDataProcessor.php b/app/code/Magento/Quote/Model/AddressAdditionalDataProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/BillingAddressManagement.php b/app/code/Magento/Quote/Model/BillingAddressManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Cart/CartTotalManagement.php b/app/code/Magento/Quote/Model/Cart/CartTotalManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Cart/CartTotalRepository.php b/app/code/Magento/Quote/Model/Cart/CartTotalRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Cart/Currency.php b/app/code/Magento/Quote/Model/Cart/Currency.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Cart/ShippingMethod.php b/app/code/Magento/Quote/Model/Cart/ShippingMethod.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Cart/ShippingMethodConverter.php b/app/code/Magento/Quote/Model/Cart/ShippingMethodConverter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Cart/TotalSegment.php b/app/code/Magento/Quote/Model/Cart/TotalSegment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Cart/Totals.php b/app/code/Magento/Quote/Model/Cart/Totals.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Cart/Totals/Item.php b/app/code/Magento/Quote/Model/Cart/Totals/Item.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Cart/Totals/ItemConverter.php b/app/code/Magento/Quote/Model/Cart/Totals/ItemConverter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Cart/TotalsAdditionalData.php b/app/code/Magento/Quote/Model/Cart/TotalsAdditionalData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Cart/TotalsAdditionalDataProcessor.php b/app/code/Magento/Quote/Model/Cart/TotalsAdditionalDataProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Cart/TotalsConverter.php b/app/code/Magento/Quote/Model/Cart/TotalsConverter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/CouponManagement.php b/app/code/Magento/Quote/Model/CouponManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/CustomerManagement.php b/app/code/Magento/Quote/Model/CustomerManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/EstimateAddress.php b/app/code/Magento/Quote/Model/EstimateAddress.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/GuestCart/GuestBillingAddressManagement.php b/app/code/Magento/Quote/Model/GuestCart/GuestBillingAddressManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/GuestCart/GuestCartItemRepository.php b/app/code/Magento/Quote/Model/GuestCart/GuestCartItemRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/GuestCart/GuestCartManagement.php b/app/code/Magento/Quote/Model/GuestCart/GuestCartManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/GuestCart/GuestCartRepository.php b/app/code/Magento/Quote/Model/GuestCart/GuestCartRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/GuestCart/GuestCartTotalManagement.php b/app/code/Magento/Quote/Model/GuestCart/GuestCartTotalManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/GuestCart/GuestCartTotalRepository.php b/app/code/Magento/Quote/Model/GuestCart/GuestCartTotalRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/GuestCart/GuestCouponManagement.php b/app/code/Magento/Quote/Model/GuestCart/GuestCouponManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/GuestCart/GuestPaymentMethodManagement.php b/app/code/Magento/Quote/Model/GuestCart/GuestPaymentMethodManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/GuestCart/GuestShippingAddressManagement.php b/app/code/Magento/Quote/Model/GuestCart/GuestShippingAddressManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/GuestCart/GuestShippingAddressManagementInterface.php b/app/code/Magento/Quote/Model/GuestCart/GuestShippingAddressManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/GuestCart/GuestShippingMethodManagement.php b/app/code/Magento/Quote/Model/GuestCart/GuestShippingMethodManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/GuestCart/GuestShippingMethodManagementInterface.php b/app/code/Magento/Quote/Model/GuestCart/GuestShippingMethodManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/GuestCartManagement/Plugin/Authorization.php b/app/code/Magento/Quote/Model/GuestCartManagement/Plugin/Authorization.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/PaymentMethodManagement.php b/app/code/Magento/Quote/Model/PaymentMethodManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Product/Plugin/RemoveQuoteItems.php b/app/code/Magento/Quote/Model/Product/Plugin/RemoveQuoteItems.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Product/Plugin/UpdateQuoteItems.php b/app/code/Magento/Quote/Model/Product/Plugin/UpdateQuoteItems.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Product/QuoteItemsCleaner.php b/app/code/Magento/Quote/Model/Product/QuoteItemsCleaner.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Product/QuoteItemsCleanerInterface.php b/app/code/Magento/Quote/Model/Product/QuoteItemsCleanerInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/QueryResolver.php b/app/code/Magento/Quote/Model/QueryResolver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote.php b/app/code/Magento/Quote/Model/Quote.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/Address.php b/app/code/Magento/Quote/Model/Quote/Address.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/Address/BillingAddressPersister.php b/app/code/Magento/Quote/Model/Quote/Address/BillingAddressPersister.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/Address/CustomAttributeList.php b/app/code/Magento/Quote/Model/Quote/Address/CustomAttributeList.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/Address/CustomAttributeListInterface.php b/app/code/Magento/Quote/Model/Quote/Address/CustomAttributeListInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/Address/FreeShipping.php b/app/code/Magento/Quote/Model/Quote/Address/FreeShipping.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/Address/FreeShippingInterface.php b/app/code/Magento/Quote/Model/Quote/Address/FreeShippingInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/Address/Item.php b/app/code/Magento/Quote/Model/Quote/Address/Item.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/Address/Rate.php b/app/code/Magento/Quote/Model/Quote/Address/Rate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/Address/RateCollectorInterface.php b/app/code/Magento/Quote/Model/Quote/Address/RateCollectorInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/Address/RateCollectorInterfaceFactory.php b/app/code/Magento/Quote/Model/Quote/Address/RateCollectorInterfaceFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/Address/RateRequest.php b/app/code/Magento/Quote/Model/Quote/Address/RateRequest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/Address/RateResult/AbstractResult.php b/app/code/Magento/Quote/Model/Quote/Address/RateResult/AbstractResult.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/Address/RateResult/Error.php b/app/code/Magento/Quote/Model/Quote/Address/RateResult/Error.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/Address/RateResult/Method.php b/app/code/Magento/Quote/Model/Quote/Address/RateResult/Method.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/Address/Relation.php b/app/code/Magento/Quote/Model/Quote/Address/Relation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/Address/ToOrder.php b/app/code/Magento/Quote/Model/Quote/Address/ToOrder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/Address/ToOrderAddress.php b/app/code/Magento/Quote/Model/Quote/Address/ToOrderAddress.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/Address/Total.php b/app/code/Magento/Quote/Model/Quote/Address/Total.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/Address/Total/AbstractTotal.php b/app/code/Magento/Quote/Model/Quote/Address/Total/AbstractTotal.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/Address/Total/Collector.php b/app/code/Magento/Quote/Model/Quote/Address/Total/Collector.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/Address/Total/CollectorInterface.php b/app/code/Magento/Quote/Model/Quote/Address/Total/CollectorInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/Address/Total/Grand.php b/app/code/Magento/Quote/Model/Quote/Address/Total/Grand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/Address/Total/ReaderInterface.php b/app/code/Magento/Quote/Model/Quote/Address/Total/ReaderInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/Address/Total/Shipping.php b/app/code/Magento/Quote/Model/Quote/Address/Total/Shipping.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/Address/Total/Subtotal.php b/app/code/Magento/Quote/Model/Quote/Address/Total/Subtotal.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/Address/TotalFactory.php b/app/code/Magento/Quote/Model/Quote/Address/TotalFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/Address/Validator.php b/app/code/Magento/Quote/Model/Quote/Address/Validator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/Config.php b/app/code/Magento/Quote/Model/Quote/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/Item.php b/app/code/Magento/Quote/Model/Quote/Item.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/Item/AbstractItem.php b/app/code/Magento/Quote/Model/Quote/Item/AbstractItem.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/Item/CartItemOptionsProcessor.php b/app/code/Magento/Quote/Model/Quote/Item/CartItemOptionsProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/Item/CartItemPersister.php b/app/code/Magento/Quote/Model/Quote/Item/CartItemPersister.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/Item/CartItemProcessorInterface.php b/app/code/Magento/Quote/Model/Quote/Item/CartItemProcessorInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/Item/CartItemProcessorsPool.php b/app/code/Magento/Quote/Model/Quote/Item/CartItemProcessorsPool.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/Item/Compare.php b/app/code/Magento/Quote/Model/Quote/Item/Compare.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/Item/Option.php b/app/code/Magento/Quote/Model/Quote/Item/Option.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/Item/Processor.php b/app/code/Magento/Quote/Model/Quote/Item/Processor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/Item/RelatedProducts.php b/app/code/Magento/Quote/Model/Quote/Item/RelatedProducts.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/Item/Repository.php b/app/code/Magento/Quote/Model/Quote/Item/Repository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/Item/ToOrderItem.php b/app/code/Magento/Quote/Model/Quote/Item/ToOrderItem.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/Item/Updater.php b/app/code/Magento/Quote/Model/Quote/Item/Updater.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/Payment.php b/app/code/Magento/Quote/Model/Quote/Payment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/Payment/ToOrderPayment.php b/app/code/Magento/Quote/Model/Quote/Payment/ToOrderPayment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/ProductOption.php b/app/code/Magento/Quote/Model/Quote/ProductOption.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/Relation.php b/app/code/Magento/Quote/Model/Quote/Relation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/ShippingAssignment/ShippingAssignmentPersister.php b/app/code/Magento/Quote/Model/Quote/ShippingAssignment/ShippingAssignmentPersister.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/ShippingAssignment/ShippingAssignmentProcessor.php b/app/code/Magento/Quote/Model/Quote/ShippingAssignment/ShippingAssignmentProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/ShippingAssignment/ShippingProcessor.php b/app/code/Magento/Quote/Model/Quote/ShippingAssignment/ShippingProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/TotalsCollector.php b/app/code/Magento/Quote/Model/Quote/TotalsCollector.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/TotalsCollectorList.php b/app/code/Magento/Quote/Model/Quote/TotalsCollectorList.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/TotalsReader.php b/app/code/Magento/Quote/Model/Quote/TotalsReader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Quote/Validator/MinimumOrderAmount/ValidationMessage.php b/app/code/Magento/Quote/Model/Quote/Validator/MinimumOrderAmount/ValidationMessage.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/QuoteAddressValidator.php b/app/code/Magento/Quote/Model/QuoteAddressValidator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/QuoteIdMask.php b/app/code/Magento/Quote/Model/QuoteIdMask.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/QuoteManagement.php b/app/code/Magento/Quote/Model/QuoteManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/QuoteRepository.php b/app/code/Magento/Quote/Model/QuoteRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/QuoteRepository/LoadHandler.php b/app/code/Magento/Quote/Model/QuoteRepository/LoadHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/QuoteRepository/Plugin/AccessChangeQuoteControl.php b/app/code/Magento/Quote/Model/QuoteRepository/Plugin/AccessChangeQuoteControl.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/QuoteRepository/Plugin/Authorization.php b/app/code/Magento/Quote/Model/QuoteRepository/Plugin/Authorization.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/QuoteRepository/SaveHandler.php b/app/code/Magento/Quote/Model/QuoteRepository/SaveHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/QuoteValidator.php b/app/code/Magento/Quote/Model/QuoteValidator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote.php b/app/code/Magento/Quote/Model/ResourceModel/Quote.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote/Address.php b/app/code/Magento/Quote/Model/ResourceModel/Quote/Address.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Backend.php b/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Backend.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Backend/Child.php b/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Backend/Child.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Backend/Region.php b/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Backend/Region.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Frontend.php b/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Frontend.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Frontend/Custbalance.php b/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Frontend/Custbalance.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Frontend/Discount.php b/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Frontend/Discount.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Frontend/Grand.php b/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Frontend/Grand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Frontend/Shipping.php b/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Frontend/Shipping.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Frontend/Subtotal.php b/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Frontend/Subtotal.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Frontend/Tax.php b/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Attribute/Frontend/Tax.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Collection.php b/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Item.php b/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Item.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Item/Collection.php b/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Item/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Rate.php b/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Rate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Rate/Collection.php b/app/code/Magento/Quote/Model/ResourceModel/Quote/Address/Rate/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote/Collection.php b/app/code/Magento/Quote/Model/ResourceModel/Quote/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote/Item.php b/app/code/Magento/Quote/Model/ResourceModel/Quote/Item.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote/Item/Collection.php b/app/code/Magento/Quote/Model/ResourceModel/Quote/Item/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote/Item/Option.php b/app/code/Magento/Quote/Model/ResourceModel/Quote/Item/Option.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote/Item/Option/Collection.php b/app/code/Magento/Quote/Model/ResourceModel/Quote/Item/Option/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote/Payment.php b/app/code/Magento/Quote/Model/ResourceModel/Quote/Payment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote/Payment/Collection.php b/app/code/Magento/Quote/Model/ResourceModel/Quote/Payment/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/ResourceModel/Quote/QuoteIdMask.php b/app/code/Magento/Quote/Model/ResourceModel/Quote/QuoteIdMask.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Shipping.php b/app/code/Magento/Quote/Model/Shipping.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/ShippingAddressAssignment.php b/app/code/Magento/Quote/Model/ShippingAddressAssignment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/ShippingAddressManagement.php b/app/code/Magento/Quote/Model/ShippingAddressManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/ShippingAddressManagementInterface.php b/app/code/Magento/Quote/Model/ShippingAddressManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/ShippingAssignment.php b/app/code/Magento/Quote/Model/ShippingAssignment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/ShippingMethodManagement.php b/app/code/Magento/Quote/Model/ShippingMethodManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/ShippingMethodManagementInterface.php b/app/code/Magento/Quote/Model/ShippingMethodManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Model/Webapi/ParamOverriderCartId.php b/app/code/Magento/Quote/Model/Webapi/ParamOverriderCartId.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Observer/Backend/CustomerQuoteObserver.php b/app/code/Magento/Quote/Observer/Backend/CustomerQuoteObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Observer/Frontend/Quote/Address/CollectTotalsObserver.php b/app/code/Magento/Quote/Observer/Frontend/Quote/Address/CollectTotalsObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Observer/Frontend/Quote/Address/VatValidator.php b/app/code/Magento/Quote/Observer/Frontend/Quote/Address/VatValidator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Observer/Webapi/SubmitObserver.php b/app/code/Magento/Quote/Observer/Webapi/SubmitObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/README.md b/app/code/Magento/Quote/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Setup/ConvertSerializedDataToJson.php b/app/code/Magento/Quote/Setup/ConvertSerializedDataToJson.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Setup/InstallData.php b/app/code/Magento/Quote/Setup/InstallData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Setup/InstallSchema.php b/app/code/Magento/Quote/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Setup/QuoteSetup.php b/app/code/Magento/Quote/Setup/QuoteSetup.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Setup/UpgradeData.php b/app/code/Magento/Quote/Setup/UpgradeData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Setup/UpgradeSchema.php b/app/code/Magento/Quote/Setup/UpgradeSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/BillingAddressManagementTest.php b/app/code/Magento/Quote/Test/Unit/Model/BillingAddressManagementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/Cart/CartTotalManagementTest.php b/app/code/Magento/Quote/Test/Unit/Model/Cart/CartTotalManagementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/Cart/CartTotalRepositoryTest.php b/app/code/Magento/Quote/Test/Unit/Model/Cart/CartTotalRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/Cart/ShippingMethodConverterTest.php b/app/code/Magento/Quote/Test/Unit/Model/Cart/ShippingMethodConverterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/Cart/Totals/ItemConverterTest.php b/app/code/Magento/Quote/Test/Unit/Model/Cart/Totals/ItemConverterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/CouponManagementTest.php b/app/code/Magento/Quote/Test/Unit/Model/CouponManagementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/CustomerManagementTest.php b/app/code/Magento/Quote/Test/Unit/Model/CustomerManagementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestBillingAddressManagementTest.php b/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestBillingAddressManagementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestCartItemRepositoryTest.php b/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestCartItemRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestCartManagementTest.php b/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestCartManagementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestCartRepositoryTest.php b/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestCartRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestCartTestHelper.php b/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestCartTestHelper.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestCartTotalRepositoryTest.php b/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestCartTotalRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestCouponManagementTest.php b/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestCouponManagementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestPaymentMethodManagementTest.php b/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestPaymentMethodManagementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestShippingAddressManagementTest.php b/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestShippingAddressManagementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestShippingMethodManagementTest.php b/app/code/Magento/Quote/Test/Unit/Model/GuestCart/GuestShippingMethodManagementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/GuestCartManagement/Plugin/AuthorizationTest.php b/app/code/Magento/Quote/Test/Unit/Model/GuestCartManagement/Plugin/AuthorizationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/PaymentMethodManagementTest.php b/app/code/Magento/Quote/Test/Unit/Model/PaymentMethodManagementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/Product/Plugin/RemoveQuoteItemsTest.php b/app/code/Magento/Quote/Test/Unit/Model/Product/Plugin/RemoveQuoteItemsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/Product/Plugin/UpdateQuoteItemsTest.php b/app/code/Magento/Quote/Test/Unit/Model/Product/Plugin/UpdateQuoteItemsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/Product/QuoteItemsCleanerTest.php b/app/code/Magento/Quote/Test/Unit/Model/Product/QuoteItemsCleanerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/QueryResolverTest.php b/app/code/Magento/Quote/Test/Unit/Model/QueryResolverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/RelationTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/RelationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/ToOrderAddressTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/ToOrderAddressTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/ToOrderTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/ToOrderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/Total/GrandTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/Total/GrandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/Total/ShippingTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/Total/ShippingTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/Total/SubtotalTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/Total/SubtotalTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/TotalTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/TotalTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/ValidatorTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/Address/ValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/AddressTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/AddressTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/ConfigTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/AbstractItemTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/AbstractItemTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/CompareTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/CompareTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/ProcessorTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/ProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/RelatedProductsTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/RelatedProductsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/RepositoryTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/RepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/ToOrderItemTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/ToOrderItemTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/UpdaterTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/Item/UpdaterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/ItemTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/ItemTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/Payment/ToOrderPaymentTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/Payment/ToOrderPaymentTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/PaymentTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/PaymentTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/RelationTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/RelationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/ShippingAssignment/ShippingAssignmentProcessorTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/ShippingAssignment/ShippingAssignmentProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/ShippingAssignment/ShippingProcessorTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/ShippingAssignment/ShippingProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/TotalsReaderTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/TotalsReaderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/Validator/MinimumOrderAmount/ValidationMessageTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/Validator/MinimumOrderAmount/ValidationMessageTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/QuoteAddressValidatorTest.php b/app/code/Magento/Quote/Test/Unit/Model/QuoteAddressValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/QuoteIdMaskTest.php b/app/code/Magento/Quote/Test/Unit/Model/QuoteIdMaskTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/QuoteManagementTest.php b/app/code/Magento/Quote/Test/Unit/Model/QuoteManagementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/QuoteRepository/Plugin/AccessChangeQuoteControlTest.php b/app/code/Magento/Quote/Test/Unit/Model/QuoteRepository/Plugin/AccessChangeQuoteControlTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/QuoteRepository/Plugin/AuthorizationTest.php b/app/code/Magento/Quote/Test/Unit/Model/QuoteRepository/Plugin/AuthorizationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/QuoteRepository/SaveHandlerTest.php b/app/code/Magento/Quote/Test/Unit/Model/QuoteRepository/SaveHandlerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/QuoteRepositoryTest.php b/app/code/Magento/Quote/Test/Unit/Model/QuoteRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/QuoteTest.php b/app/code/Magento/Quote/Test/Unit/Model/QuoteTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/QuoteValidatorTest.php b/app/code/Magento/Quote/Test/Unit/Model/QuoteValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/ResourceModel/Quote/Item/CollectionTest.php b/app/code/Magento/Quote/Test/Unit/Model/ResourceModel/Quote/Item/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/ResourceModel/Quote/ItemTest.php b/app/code/Magento/Quote/Test/Unit/Model/ResourceModel/Quote/ItemTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/ResourceModel/Quote/QuoteAddressTest.php b/app/code/Magento/Quote/Test/Unit/Model/ResourceModel/Quote/QuoteAddressTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/ResourceModel/QuoteTest.php b/app/code/Magento/Quote/Test/Unit/Model/ResourceModel/QuoteTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/ShippingAddressAssignmentTest.php b/app/code/Magento/Quote/Test/Unit/Model/ShippingAddressAssignmentTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/ShippingAddressManagementTest.php b/app/code/Magento/Quote/Test/Unit/Model/ShippingAddressManagementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/ShippingMethodManagementTest.php b/app/code/Magento/Quote/Test/Unit/Model/ShippingMethodManagementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Model/Webapi/ParamOverriderCartIdTest.php b/app/code/Magento/Quote/Test/Unit/Model/Webapi/ParamOverriderCartIdTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Observer/Backend/CustomerQuoteObserverTest.php b/app/code/Magento/Quote/Test/Unit/Observer/Backend/CustomerQuoteObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Observer/Frontend/Quote/Address/CollectTotalsObserverTest.php b/app/code/Magento/Quote/Test/Unit/Observer/Frontend/Quote/Address/CollectTotalsObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Observer/Frontend/Quote/Address/VatValidatorTest.php b/app/code/Magento/Quote/Test/Unit/Observer/Frontend/Quote/Address/VatValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/Test/Unit/Observer/Webapi/SubmitObserverTest.php b/app/code/Magento/Quote/Test/Unit/Observer/Webapi/SubmitObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/composer.json b/app/code/Magento/Quote/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/etc/acl.xml b/app/code/Magento/Quote/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/etc/adminhtml/events.xml b/app/code/Magento/Quote/etc/adminhtml/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/etc/di.xml b/app/code/Magento/Quote/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/etc/events.xml b/app/code/Magento/Quote/etc/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/etc/extension_attributes.xml b/app/code/Magento/Quote/etc/extension_attributes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/etc/fieldset.xml b/app/code/Magento/Quote/etc/fieldset.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/etc/module.xml b/app/code/Magento/Quote/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/etc/sales.xml b/app/code/Magento/Quote/etc/sales.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/etc/webapi.xml b/app/code/Magento/Quote/etc/webapi.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/etc/webapi_rest/di.xml b/app/code/Magento/Quote/etc/webapi_rest/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/etc/webapi_rest/events.xml b/app/code/Magento/Quote/etc/webapi_rest/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/etc/webapi_soap/di.xml b/app/code/Magento/Quote/etc/webapi_soap/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/etc/webapi_soap/events.xml b/app/code/Magento/Quote/etc/webapi_soap/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/i18n/en_US.csv b/app/code/Magento/Quote/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Quote/registration.php b/app/code/Magento/Quote/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/QuoteAnalytics/LICENSE.txt b/app/code/Magento/QuoteAnalytics/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/QuoteAnalytics/LICENSE_AFL.txt b/app/code/Magento/QuoteAnalytics/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/QuoteAnalytics/README.md b/app/code/Magento/QuoteAnalytics/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/QuoteAnalytics/composer.json b/app/code/Magento/QuoteAnalytics/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/QuoteAnalytics/etc/analytics.xml b/app/code/Magento/QuoteAnalytics/etc/analytics.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/QuoteAnalytics/etc/module.xml b/app/code/Magento/QuoteAnalytics/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/QuoteAnalytics/etc/reports.xml b/app/code/Magento/QuoteAnalytics/etc/reports.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/QuoteAnalytics/registration.php b/app/code/Magento/QuoteAnalytics/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ReleaseNotification/Controller/Adminhtml/Notification/MarkUserNotified.php b/app/code/Magento/ReleaseNotification/Controller/Adminhtml/Notification/MarkUserNotified.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ReleaseNotification/LICENSE.txt b/app/code/Magento/ReleaseNotification/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ReleaseNotification/LICENSE_AFL.txt b/app/code/Magento/ReleaseNotification/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ReleaseNotification/Model/Condition/CanViewNotification.php b/app/code/Magento/ReleaseNotification/Model/Condition/CanViewNotification.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ReleaseNotification/Model/ResourceModel/Viewer/Logger.php b/app/code/Magento/ReleaseNotification/Model/ResourceModel/Viewer/Logger.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ReleaseNotification/Model/Viewer/Log.php b/app/code/Magento/ReleaseNotification/Model/Viewer/Log.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ReleaseNotification/README.md b/app/code/Magento/ReleaseNotification/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ReleaseNotification/Setup/InstallSchema.php b/app/code/Magento/ReleaseNotification/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ReleaseNotification/Test/Unit/Controller/Notification/MarkUserNotifiedTest.php b/app/code/Magento/ReleaseNotification/Test/Unit/Controller/Notification/MarkUserNotifiedTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ReleaseNotification/Test/Unit/Model/Condition/CanViewNotificationTest.php b/app/code/Magento/ReleaseNotification/Test/Unit/Model/Condition/CanViewNotificationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ReleaseNotification/Ui/DataProvider/DataProvider.php b/app/code/Magento/ReleaseNotification/Ui/DataProvider/DataProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ReleaseNotification/composer.json b/app/code/Magento/ReleaseNotification/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ReleaseNotification/etc/adminhtml/routes.xml b/app/code/Magento/ReleaseNotification/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ReleaseNotification/etc/module.xml b/app/code/Magento/ReleaseNotification/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ReleaseNotification/i18n/en_US.csv b/app/code/Magento/ReleaseNotification/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ReleaseNotification/registration.php b/app/code/Magento/ReleaseNotification/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ReleaseNotification/view/adminhtml/layout/adminhtml_dashboard_index.xml b/app/code/Magento/ReleaseNotification/view/adminhtml/layout/adminhtml_dashboard_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ReleaseNotification/view/adminhtml/ui_component/release_notification.xml b/app/code/Magento/ReleaseNotification/view/adminhtml/ui_component/release_notification.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ReleaseNotification/view/adminhtml/web/js/modal/component.js b/app/code/Magento/ReleaseNotification/view/adminhtml/web/js/modal/component.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Config/Form/Field/MtdStart.php b/app/code/Magento/Reports/Block/Adminhtml/Config/Form/Field/MtdStart.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Config/Form/Field/YtdStart.php b/app/code/Magento/Reports/Block/Adminhtml/Config/Form/Field/YtdStart.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Customer/Accounts.php b/app/code/Magento/Reports/Block/Adminhtml/Customer/Accounts.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Customer/Orders.php b/app/code/Magento/Reports/Block/Adminhtml/Customer/Orders.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Customer/Totals.php b/app/code/Magento/Reports/Block/Adminhtml/Customer/Totals.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Filter/Form.php b/app/code/Magento/Reports/Block/Adminhtml/Filter/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Grid.php b/app/code/Magento/Reports/Block/Adminhtml/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Grid/AbstractGrid.php b/app/code/Magento/Reports/Block/Adminhtml/Grid/AbstractGrid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Grid/Column/Renderer/Blanknumber.php b/app/code/Magento/Reports/Block/Adminhtml/Grid/Column/Renderer/Blanknumber.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Grid/Column/Renderer/Currency.php b/app/code/Magento/Reports/Block/Adminhtml/Grid/Column/Renderer/Currency.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Grid/Column/Renderer/Customer.php b/app/code/Magento/Reports/Block/Adminhtml/Grid/Column/Renderer/Customer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Grid/Column/Renderer/Product.php b/app/code/Magento/Reports/Block/Adminhtml/Grid/Column/Renderer/Product.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Grid/Shopcart.php b/app/code/Magento/Reports/Block/Adminhtml/Grid/Shopcart.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Product.php b/app/code/Magento/Reports/Block/Adminhtml/Product.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Product/Downloads.php b/app/code/Magento/Reports/Block/Adminhtml/Product/Downloads.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Product/Downloads/Grid.php b/app/code/Magento/Reports/Block/Adminhtml/Product/Downloads/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Product/Downloads/Renderer/Purchases.php b/app/code/Magento/Reports/Block/Adminhtml/Product/Downloads/Renderer/Purchases.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Product/Lowstock.php b/app/code/Magento/Reports/Block/Adminhtml/Product/Lowstock.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Product/Lowstock/Grid.php b/app/code/Magento/Reports/Block/Adminhtml/Product/Lowstock/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Product/Sold.php b/app/code/Magento/Reports/Block/Adminhtml/Product/Sold.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Product/Viewed.php b/app/code/Magento/Reports/Block/Adminhtml/Product/Viewed.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Product/Viewed/Grid.php b/app/code/Magento/Reports/Block/Adminhtml/Product/Viewed/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Refresh/Statistics.php b/app/code/Magento/Reports/Block/Adminhtml/Refresh/Statistics.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Review/Customer.php b/app/code/Magento/Reports/Block/Adminhtml/Review/Customer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Review/Detail.php b/app/code/Magento/Reports/Block/Adminhtml/Review/Detail.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Review/Detail/Grid.php b/app/code/Magento/Reports/Block/Adminhtml/Review/Detail/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Review/Product.php b/app/code/Magento/Reports/Block/Adminhtml/Review/Product.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Sales/Bestsellers.php b/app/code/Magento/Reports/Block/Adminhtml/Sales/Bestsellers.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Sales/Bestsellers/Grid.php b/app/code/Magento/Reports/Block/Adminhtml/Sales/Bestsellers/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Sales/Coupons.php b/app/code/Magento/Reports/Block/Adminhtml/Sales/Coupons.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Sales/Coupons/Grid.php b/app/code/Magento/Reports/Block/Adminhtml/Sales/Coupons/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Sales/Grid/Column/Renderer/Date.php b/app/code/Magento/Reports/Block/Adminhtml/Sales/Grid/Column/Renderer/Date.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Sales/Invoiced.php b/app/code/Magento/Reports/Block/Adminhtml/Sales/Invoiced.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Sales/Invoiced/Grid.php b/app/code/Magento/Reports/Block/Adminhtml/Sales/Invoiced/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Sales/Refunded.php b/app/code/Magento/Reports/Block/Adminhtml/Sales/Refunded.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Sales/Refunded/Grid.php b/app/code/Magento/Reports/Block/Adminhtml/Sales/Refunded/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Sales/Sales.php b/app/code/Magento/Reports/Block/Adminhtml/Sales/Sales.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Sales/Sales/Grid.php b/app/code/Magento/Reports/Block/Adminhtml/Sales/Sales/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Sales/Shipping.php b/app/code/Magento/Reports/Block/Adminhtml/Sales/Shipping.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Sales/Shipping/Grid.php b/app/code/Magento/Reports/Block/Adminhtml/Sales/Shipping/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Sales/Tax.php b/app/code/Magento/Reports/Block/Adminhtml/Sales/Tax.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Sales/Tax/Grid.php b/app/code/Magento/Reports/Block/Adminhtml/Sales/Tax/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Shopcart/Abandoned.php b/app/code/Magento/Reports/Block/Adminhtml/Shopcart/Abandoned.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Shopcart/Abandoned/Grid.php b/app/code/Magento/Reports/Block/Adminhtml/Shopcart/Abandoned/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Shopcart/Customer.php b/app/code/Magento/Reports/Block/Adminhtml/Shopcart/Customer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Shopcart/Customer/Grid.php b/app/code/Magento/Reports/Block/Adminhtml/Shopcart/Customer/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Shopcart/Product.php b/app/code/Magento/Reports/Block/Adminhtml/Shopcart/Product.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Shopcart/Product/Grid.php b/app/code/Magento/Reports/Block/Adminhtml/Shopcart/Product/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Wishlist.php b/app/code/Magento/Reports/Block/Adminhtml/Wishlist.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Adminhtml/Wishlist/Grid.php b/app/code/Magento/Reports/Block/Adminhtml/Wishlist/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Product/AbstractProduct.php b/app/code/Magento/Reports/Block/Product/AbstractProduct.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Product/Compared.php b/app/code/Magento/Reports/Block/Product/Compared.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Product/Viewed.php b/app/code/Magento/Reports/Block/Product/Viewed.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Product/Widget/Compared.php b/app/code/Magento/Reports/Block/Product/Widget/Compared.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Product/Widget/Viewed.php b/app/code/Magento/Reports/Block/Product/Widget/Viewed.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Block/Product/Widget/Viewed/Item.php b/app/code/Magento/Reports/Block/Product/Widget/Viewed/Item.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Index.php b/app/code/Magento/Reports/Controller/Adminhtml/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/AbstractReport.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/AbstractReport.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/Accounts.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/Accounts.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/ExportAccountsCsv.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/ExportAccountsCsv.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/ExportAccountsExcel.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/ExportAccountsExcel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/ExportOrdersCsv.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/ExportOrdersCsv.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/ExportOrdersExcel.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/ExportOrdersExcel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/ExportTotalsCsv.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/ExportTotalsCsv.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/ExportTotalsExcel.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/ExportTotalsExcel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/Orders.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/Orders.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/Totals.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Customer/Totals.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Product.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Product.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/Downloads.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/Downloads.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportDownloadsCsv.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportDownloadsCsv.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportDownloadsExcel.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportDownloadsExcel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportLowstockCsv.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportLowstockCsv.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportLowstockExcel.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportLowstockExcel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportSoldCsv.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportSoldCsv.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportSoldExcel.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportSoldExcel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportViewedCsv.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportViewedCsv.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportViewedExcel.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/ExportViewedExcel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/Lowstock.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/Lowstock.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/Sold.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/Sold.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/Viewed.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Product/Viewed.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Review.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Review.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/Customer.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/Customer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/ExportCustomerCsv.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/ExportCustomerCsv.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/ExportCustomerExcel.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/ExportCustomerExcel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/ExportProductCsv.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/ExportProductCsv.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/ExportProductDetailCsv.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/ExportProductDetailCsv.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/ExportProductDetailExcel.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/ExportProductDetailExcel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/ExportProductExcel.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/ExportProductExcel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/Product.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/Product.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/ProductDetail.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Review/ProductDetail.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/Bestsellers.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/Bestsellers.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/Coupons.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/Coupons.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportBestsellersCsv.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportBestsellersCsv.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportBestsellersExcel.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportBestsellersExcel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportCouponsCsv.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportCouponsCsv.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportCouponsExcel.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportCouponsExcel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportInvoicedCsv.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportInvoicedCsv.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportInvoicedExcel.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportInvoicedExcel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportRefundedCsv.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportRefundedCsv.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportRefundedExcel.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportRefundedExcel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportSalesCsv.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportSalesCsv.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportSalesExcel.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportSalesExcel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportShippingCsv.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportShippingCsv.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportShippingExcel.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportShippingExcel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportTaxCsv.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportTaxCsv.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportTaxExcel.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/ExportTaxExcel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/Invoiced.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/Invoiced.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/RefreshLifetime.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/RefreshLifetime.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/RefreshRecent.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/RefreshRecent.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/RefreshStatistics.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/RefreshStatistics.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/Refunded.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/Refunded.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/Sales.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/Sales.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/Shipping.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/Shipping.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/Tax.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Sales/Tax.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/Abandoned.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/Abandoned.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/Customer.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/Customer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/ExportAbandonedCsv.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/ExportAbandonedCsv.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/ExportAbandonedExcel.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/ExportAbandonedExcel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/ExportCustomerCsv.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/ExportCustomerCsv.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/ExportCustomerExcel.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/ExportCustomerExcel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/ExportProductCsv.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/ExportProductCsv.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/ExportProductExcel.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/ExportProductExcel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/Product.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Shopcart/Product.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Statistics.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Statistics.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Statistics/Index.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Statistics/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Statistics/RefreshLifetime.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Statistics/RefreshLifetime.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Controller/Adminhtml/Report/Statistics/RefreshRecent.php b/app/code/Magento/Reports/Controller/Adminhtml/Report/Statistics/RefreshRecent.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Helper/Data.php b/app/code/Magento/Reports/Helper/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/LICENSE.txt b/app/code/Magento/Reports/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/LICENSE_AFL.txt b/app/code/Magento/Reports/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/Config.php b/app/code/Magento/Reports/Model/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/Event.php b/app/code/Magento/Reports/Model/Event.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/Event/Type.php b/app/code/Magento/Reports/Model/Event/Type.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/Flag.php b/app/code/Magento/Reports/Model/Flag.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/Grouped/Collection.php b/app/code/Magento/Reports/Model/Grouped/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/Item.php b/app/code/Magento/Reports/Model/Item.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/Plugin/Log.php b/app/code/Magento/Reports/Model/Plugin/Log.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/Product/Index/AbstractIndex.php b/app/code/Magento/Reports/Model/Product/Index/AbstractIndex.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/Product/Index/Compared.php b/app/code/Magento/Reports/Model/Product/Index/Compared.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/Product/Index/Factory.php b/app/code/Magento/Reports/Model/Product/Index/Factory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/Product/Index/Viewed.php b/app/code/Magento/Reports/Model/Product/Index/Viewed.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/ResourceModel/Accounts/Collection.php b/app/code/Magento/Reports/Model/ResourceModel/Accounts/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/ResourceModel/Accounts/Collection/Initial.php b/app/code/Magento/Reports/Model/ResourceModel/Accounts/Collection/Initial.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/ResourceModel/Customer/Collection.php b/app/code/Magento/Reports/Model/ResourceModel/Customer/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/ResourceModel/Customer/Orders/Collection.php b/app/code/Magento/Reports/Model/ResourceModel/Customer/Orders/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/ResourceModel/Customer/Orders/Collection/Initial.php b/app/code/Magento/Reports/Model/ResourceModel/Customer/Orders/Collection/Initial.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/ResourceModel/Customer/Totals/Collection.php b/app/code/Magento/Reports/Model/ResourceModel/Customer/Totals/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/ResourceModel/Customer/Totals/Collection/Initial.php b/app/code/Magento/Reports/Model/ResourceModel/Customer/Totals/Collection/Initial.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/ResourceModel/Event.php b/app/code/Magento/Reports/Model/ResourceModel/Event.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/ResourceModel/Event/Collection.php b/app/code/Magento/Reports/Model/ResourceModel/Event/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/ResourceModel/Event/Type.php b/app/code/Magento/Reports/Model/ResourceModel/Event/Type.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/ResourceModel/Event/Type/Collection.php b/app/code/Magento/Reports/Model/ResourceModel/Event/Type/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/ResourceModel/Helper.php b/app/code/Magento/Reports/Model/ResourceModel/Helper.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/ResourceModel/HelperInterface.php b/app/code/Magento/Reports/Model/ResourceModel/HelperInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/ResourceModel/Order/Collection.php b/app/code/Magento/Reports/Model/ResourceModel/Order/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/ResourceModel/Product/Collection.php b/app/code/Magento/Reports/Model/ResourceModel/Product/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/ResourceModel/Product/Downloads/Collection.php b/app/code/Magento/Reports/Model/ResourceModel/Product/Downloads/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/ResourceModel/Product/Index/AbstractIndex.php b/app/code/Magento/Reports/Model/ResourceModel/Product/Index/AbstractIndex.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/ResourceModel/Product/Index/Collection/AbstractCollection.php b/app/code/Magento/Reports/Model/ResourceModel/Product/Index/Collection/AbstractCollection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/ResourceModel/Product/Index/Compared.php b/app/code/Magento/Reports/Model/ResourceModel/Product/Index/Compared.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/ResourceModel/Product/Index/Compared/Collection.php b/app/code/Magento/Reports/Model/ResourceModel/Product/Index/Compared/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/ResourceModel/Product/Index/Viewed.php b/app/code/Magento/Reports/Model/ResourceModel/Product/Index/Viewed.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/ResourceModel/Product/Index/Viewed/Collection.php b/app/code/Magento/Reports/Model/ResourceModel/Product/Index/Viewed/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/ResourceModel/Product/Lowstock/Collection.php b/app/code/Magento/Reports/Model/ResourceModel/Product/Lowstock/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/ResourceModel/Product/Sold/Collection.php b/app/code/Magento/Reports/Model/ResourceModel/Product/Sold/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/ResourceModel/Product/Sold/Collection/Initial.php b/app/code/Magento/Reports/Model/ResourceModel/Product/Sold/Collection/Initial.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/ResourceModel/Quote/Collection.php b/app/code/Magento/Reports/Model/ResourceModel/Quote/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/ResourceModel/Quote/CollectionFactory.php b/app/code/Magento/Reports/Model/ResourceModel/Quote/CollectionFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/ResourceModel/Quote/CollectionFactoryInterface.php b/app/code/Magento/Reports/Model/ResourceModel/Quote/CollectionFactoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/ResourceModel/Quote/Item/Collection.php b/app/code/Magento/Reports/Model/ResourceModel/Quote/Item/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/ResourceModel/Refresh/Collection.php b/app/code/Magento/Reports/Model/ResourceModel/Refresh/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/ResourceModel/Report/AbstractReport.php b/app/code/Magento/Reports/Model/ResourceModel/Report/AbstractReport.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/ResourceModel/Report/Collection.php b/app/code/Magento/Reports/Model/ResourceModel/Report/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/ResourceModel/Report/Collection/AbstractCollection.php b/app/code/Magento/Reports/Model/ResourceModel/Report/Collection/AbstractCollection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/ResourceModel/Report/Collection/Factory.php b/app/code/Magento/Reports/Model/ResourceModel/Report/Collection/Factory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/ResourceModel/Report/Product/Viewed.php b/app/code/Magento/Reports/Model/ResourceModel/Report/Product/Viewed.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/ResourceModel/Report/Product/Viewed/Collection.php b/app/code/Magento/Reports/Model/ResourceModel/Report/Product/Viewed/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/ResourceModel/Review/Collection.php b/app/code/Magento/Reports/Model/ResourceModel/Review/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/ResourceModel/Review/Customer/Collection.php b/app/code/Magento/Reports/Model/ResourceModel/Review/Customer/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/ResourceModel/Review/Product/Collection.php b/app/code/Magento/Reports/Model/ResourceModel/Review/Product/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/ResourceModel/Wishlist/Collection.php b/app/code/Magento/Reports/Model/ResourceModel/Wishlist/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Model/ResourceModel/Wishlist/Product/Collection.php b/app/code/Magento/Reports/Model/ResourceModel/Wishlist/Product/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Observer/CatalogProductCompareAddProductObserver.php b/app/code/Magento/Reports/Observer/CatalogProductCompareAddProductObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Observer/CatalogProductCompareClearObserver.php b/app/code/Magento/Reports/Observer/CatalogProductCompareClearObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Observer/CatalogProductViewObserver.php b/app/code/Magento/Reports/Observer/CatalogProductViewObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Observer/CheckoutCartAddProductObserver.php b/app/code/Magento/Reports/Observer/CheckoutCartAddProductObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Observer/CustomerLoginObserver.php b/app/code/Magento/Reports/Observer/CustomerLoginObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Observer/CustomerLogoutObserver.php b/app/code/Magento/Reports/Observer/CustomerLogoutObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Observer/EventSaver.php b/app/code/Magento/Reports/Observer/EventSaver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Observer/SendfriendProductObserver.php b/app/code/Magento/Reports/Observer/SendfriendProductObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Observer/WishlistAddProductObserver.php b/app/code/Magento/Reports/Observer/WishlistAddProductObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Observer/WishlistShareObserver.php b/app/code/Magento/Reports/Observer/WishlistShareObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/README.md b/app/code/Magento/Reports/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Setup/InstallData.php b/app/code/Magento/Reports/Setup/InstallData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Setup/InstallSchema.php b/app/code/Magento/Reports/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Setup/Recurring.php b/app/code/Magento/Reports/Setup/Recurring.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Test/Unit/Block/Adminhtml/Grid/AbstractGridTest.php b/app/code/Magento/Reports/Test/Unit/Block/Adminhtml/Grid/AbstractGridTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Test/Unit/Block/Adminhtml/Sales/Grid/Column/Renderer/DateTest.php b/app/code/Magento/Reports/Test/Unit/Block/Adminhtml/Sales/Grid/Column/Renderer/DateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Test/Unit/Block/Product/ComparedTest.php b/app/code/Magento/Reports/Test/Unit/Block/Product/ComparedTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Test/Unit/Block/Product/ViewedTest.php b/app/code/Magento/Reports/Test/Unit/Block/Product/ViewedTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/AbstractControllerTest.php b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/AbstractControllerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/AccountsTest.php b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/AccountsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/ExportAccountsCsvTest.php b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/ExportAccountsCsvTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/ExportAccountsExcelTest.php b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/ExportAccountsExcelTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/ExportOrdersCsvTest.php b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/ExportOrdersCsvTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/ExportOrdersExcelTest.php b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/ExportOrdersExcelTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/ExportTotalsCsvTest.php b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/ExportTotalsCsvTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/ExportTotalsExcelTest.php b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/ExportTotalsExcelTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/OrdersTest.php b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/OrdersTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/TotalsTest.php b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Customer/TotalsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/DownloadsTest.php b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/DownloadsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportDownloadsCsvTest.php b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportDownloadsCsvTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportDownloadsExcelTest.php b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportDownloadsExcelTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportLowstockCsvTest.php b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportLowstockCsvTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportLowstockExcelTest.php b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportLowstockExcelTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportSoldCsvTest.php b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportSoldCsvTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportSoldExcelTest.php b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportSoldExcelTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportViewedCsvTest.php b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportViewedCsvTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportViewedExcelTest.php b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ExportViewedExcelTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/LowstockTest.php b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/LowstockTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/SoldTest.php b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/SoldTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ViewedTest.php b/app/code/Magento/Reports/Test/Unit/Controller/Adminhtml/Report/Product/ViewedTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Test/Unit/Helper/DataTest.php b/app/code/Magento/Reports/Test/Unit/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Test/Unit/Model/Plugin/LogTest.php b/app/code/Magento/Reports/Test/Unit/Model/Plugin/LogTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Test/Unit/Model/Product/Index/ComparedTest.php b/app/code/Magento/Reports/Test/Unit/Model/Product/Index/ComparedTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Event/CollectionTest.php b/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Event/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/EventTest.php b/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/EventTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/HelperTest.php b/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/HelperTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Order/CollectionTest.php b/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Order/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Product/CollectionTest.php b/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Product/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Product/Sold/Collection/CollectionTest.php b/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Product/Sold/Collection/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Quote/CollectionTest.php b/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Quote/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Report/Collection/AbstractCollectionTest.php b/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Report/Collection/AbstractCollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Report/CollectionTest.php b/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Report/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Report/Product/ViewedTest.php b/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Report/Product/ViewedTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Report/Quote/CollectionTest.php b/app/code/Magento/Reports/Test/Unit/Model/ResourceModel/Report/Quote/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Test/Unit/Observer/CatalogProductCompareAddProductObserverTest.php b/app/code/Magento/Reports/Test/Unit/Observer/CatalogProductCompareAddProductObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Test/Unit/Observer/CatalogProductViewObserverTest.php b/app/code/Magento/Reports/Test/Unit/Observer/CatalogProductViewObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Test/Unit/Observer/CustomerLoginObserverTest.php b/app/code/Magento/Reports/Test/Unit/Observer/CustomerLoginObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/Test/Unit/Observer/CustomerLogoutObserverTest.php b/app/code/Magento/Reports/Test/Unit/Observer/CustomerLogoutObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/composer.json b/app/code/Magento/Reports/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/etc/acl.xml b/app/code/Magento/Reports/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/etc/adminhtml/di.xml b/app/code/Magento/Reports/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/etc/adminhtml/menu.xml b/app/code/Magento/Reports/etc/adminhtml/menu.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/etc/adminhtml/routes.xml b/app/code/Magento/Reports/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/etc/adminhtml/system.xml b/app/code/Magento/Reports/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/etc/config.xml b/app/code/Magento/Reports/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/etc/di.xml b/app/code/Magento/Reports/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/etc/frontend/events.xml b/app/code/Magento/Reports/etc/frontend/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/etc/module.xml b/app/code/Magento/Reports/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/etc/webapi_rest/events.xml b/app/code/Magento/Reports/etc/webapi_rest/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/etc/webapi_soap/events.xml b/app/code/Magento/Reports/etc/webapi_soap/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/i18n/en_US.csv b/app/code/Magento/Reports/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/registration.php b/app/code/Magento/Reports/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_accounts.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_accounts.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_accounts_grid.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_accounts_grid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_exportaccountscsv.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_exportaccountscsv.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_exportaccountsexcel.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_exportaccountsexcel.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_exportorderscsv.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_exportorderscsv.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_exportordersexcel.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_exportordersexcel.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_exporttotalscsv.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_exporttotalscsv.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_exporttotalsexcel.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_exporttotalsexcel.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_orders.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_orders.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_orders_grid.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_orders_grid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_totals.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_totals.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_totals_grid.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_customer_totals_grid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_grid.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_grid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_downloads.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_downloads.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_exportlowstockcsv.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_exportlowstockcsv.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_exportlowstockexcel.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_exportlowstockexcel.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_exportsoldcsv.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_exportsoldcsv.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_exportsoldexcel.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_exportsoldexcel.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_lowstock.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_lowstock.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_lowstock_grid.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_lowstock_grid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_sold.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_sold.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_sold_grid.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_sold_grid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_viewed.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_product_viewed.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_customer.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_customer.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_customer_grid.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_customer_grid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_exportcustomercsv.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_exportcustomercsv.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_exportcustomerexcel.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_exportcustomerexcel.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_exportproductcsv.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_exportproductcsv.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_exportproductexcel.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_exportproductexcel.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_product.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_product.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_product_grid.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_review_product_grid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_sales_bestsellers.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_sales_bestsellers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_sales_coupons.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_sales_coupons.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_sales_invoiced.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_sales_invoiced.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_sales_refunded.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_sales_refunded.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_sales_sales.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_sales_sales.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_sales_shipping.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_sales_shipping.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_sales_tax.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_sales_tax.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_shopcart_abandoned.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_shopcart_abandoned.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_report_statistics_index.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_report_statistics_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/adminhtml/layout/reports_sales.xml b/app/code/Magento/Reports/view/adminhtml/layout/reports_sales.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/adminhtml/templates/grid.phtml b/app/code/Magento/Reports/view/adminhtml/templates/grid.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/adminhtml/templates/report/grid/container.phtml b/app/code/Magento/Reports/view/adminhtml/templates/report/grid/container.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/adminhtml/templates/report/refresh/statistics.phtml b/app/code/Magento/Reports/view/adminhtml/templates/report/refresh/statistics.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/adminhtml/templates/report/wishlist.phtml b/app/code/Magento/Reports/view/adminhtml/templates/report/wishlist.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/adminhtml/templates/store/switcher.phtml b/app/code/Magento/Reports/view/adminhtml/templates/store/switcher.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/adminhtml/templates/store/switcher/enhanced.phtml b/app/code/Magento/Reports/view/adminhtml/templates/store/switcher/enhanced.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/adminhtml/web/images/product_widget_compared.gif b/app/code/Magento/Reports/view/adminhtml/web/images/product_widget_compared.gif
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/adminhtml/web/images/product_widget_viewed.gif b/app/code/Magento/Reports/view/adminhtml/web/images/product_widget_viewed.gif
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/frontend/layout/default.xml b/app/code/Magento/Reports/view/frontend/layout/default.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/frontend/layout/print.xml b/app/code/Magento/Reports/view/frontend/layout/print.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/frontend/requirejs-config.js b/app/code/Magento/Reports/view/frontend/requirejs-config.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/frontend/templates/js/components.phtml b/app/code/Magento/Reports/view/frontend/templates/js/components.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/frontend/templates/product/widget/viewed.phtml b/app/code/Magento/Reports/view/frontend/templates/product/widget/viewed.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/frontend/templates/product/widget/viewed/item.phtml b/app/code/Magento/Reports/view/frontend/templates/product/widget/viewed/item.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/frontend/templates/widget/compared/column/compared_default_list.phtml b/app/code/Magento/Reports/view/frontend/templates/widget/compared/column/compared_default_list.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/frontend/templates/widget/compared/column/compared_images_list.phtml b/app/code/Magento/Reports/view/frontend/templates/widget/compared/column/compared_images_list.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/frontend/templates/widget/compared/column/compared_names_list.phtml b/app/code/Magento/Reports/view/frontend/templates/widget/compared/column/compared_names_list.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/frontend/templates/widget/compared/content/compared_grid.phtml b/app/code/Magento/Reports/view/frontend/templates/widget/compared/content/compared_grid.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/frontend/templates/widget/compared/content/compared_list.phtml b/app/code/Magento/Reports/view/frontend/templates/widget/compared/content/compared_list.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/frontend/templates/widget/viewed/column/viewed_default_list.phtml b/app/code/Magento/Reports/view/frontend/templates/widget/viewed/column/viewed_default_list.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/frontend/templates/widget/viewed/column/viewed_images_list.phtml b/app/code/Magento/Reports/view/frontend/templates/widget/viewed/column/viewed_images_list.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/frontend/templates/widget/viewed/column/viewed_names_list.phtml b/app/code/Magento/Reports/view/frontend/templates/widget/viewed/column/viewed_names_list.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/frontend/templates/widget/viewed/content/viewed_grid.phtml b/app/code/Magento/Reports/view/frontend/templates/widget/viewed/content/viewed_grid.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/frontend/templates/widget/viewed/content/viewed_list.phtml b/app/code/Magento/Reports/view/frontend/templates/widget/viewed/content/viewed_list.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Reports/view/frontend/web/js/recently-viewed.js b/app/code/Magento/Reports/view/frontend/web/js/recently-viewed.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/RequireJs/Block/Html/Head/Config.php b/app/code/Magento/RequireJs/Block/Html/Head/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/RequireJs/LICENSE.txt b/app/code/Magento/RequireJs/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/RequireJs/LICENSE_AFL.txt b/app/code/Magento/RequireJs/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/RequireJs/Model/FileManager.php b/app/code/Magento/RequireJs/Model/FileManager.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/RequireJs/README.md b/app/code/Magento/RequireJs/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/RequireJs/Test/Unit/Block/Html/Head/ConfigTest.php b/app/code/Magento/RequireJs/Test/Unit/Block/Html/Head/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/RequireJs/Test/Unit/Model/FileManagerTest.php b/app/code/Magento/RequireJs/Test/Unit/Model/FileManagerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/RequireJs/composer.json b/app/code/Magento/RequireJs/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/RequireJs/etc/di.xml b/app/code/Magento/RequireJs/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/RequireJs/etc/module.xml b/app/code/Magento/RequireJs/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/RequireJs/i18n/en_US.csv b/app/code/Magento/RequireJs/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/RequireJs/registration.php b/app/code/Magento/RequireJs/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Block/Adminhtml/Add.php b/app/code/Magento/Review/Block/Adminhtml/Add.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Block/Adminhtml/Add/Form.php b/app/code/Magento/Review/Block/Adminhtml/Add/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Block/Adminhtml/Edit.php b/app/code/Magento/Review/Block/Adminhtml/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Block/Adminhtml/Edit/Form.php b/app/code/Magento/Review/Block/Adminhtml/Edit/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Block/Adminhtml/Grid.php b/app/code/Magento/Review/Block/Adminhtml/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Block/Adminhtml/Grid/Filter/Type.php b/app/code/Magento/Review/Block/Adminhtml/Grid/Filter/Type.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Block/Adminhtml/Grid/Renderer/Type.php b/app/code/Magento/Review/Block/Adminhtml/Grid/Renderer/Type.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Block/Adminhtml/Main.php b/app/code/Magento/Review/Block/Adminhtml/Main.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Block/Adminhtml/Product/Edit/Tab.php b/app/code/Magento/Review/Block/Adminhtml/Product/Edit/Tab.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Block/Adminhtml/Product/Edit/Tab/Reviews.php b/app/code/Magento/Review/Block/Adminhtml/Product/Edit/Tab/Reviews.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Block/Adminhtml/Product/Grid.php b/app/code/Magento/Review/Block/Adminhtml/Product/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Block/Adminhtml/Rating.php b/app/code/Magento/Review/Block/Adminhtml/Rating.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Block/Adminhtml/Rating/Detailed.php b/app/code/Magento/Review/Block/Adminhtml/Rating/Detailed.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Block/Adminhtml/Rating/Edit.php b/app/code/Magento/Review/Block/Adminhtml/Rating/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Block/Adminhtml/Rating/Edit/Form.php b/app/code/Magento/Review/Block/Adminhtml/Rating/Edit/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Block/Adminhtml/Rating/Edit/Tab/Form.php b/app/code/Magento/Review/Block/Adminhtml/Rating/Edit/Tab/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Block/Adminhtml/Rating/Edit/Tabs.php b/app/code/Magento/Review/Block/Adminhtml/Rating/Edit/Tabs.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Block/Adminhtml/Rating/Summary.php b/app/code/Magento/Review/Block/Adminhtml/Rating/Summary.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Block/Adminhtml/ReviewTab.php b/app/code/Magento/Review/Block/Adminhtml/ReviewTab.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Block/Adminhtml/Rss.php b/app/code/Magento/Review/Block/Adminhtml/Rss.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Block/Adminhtml/Rss/Grid/Link.php b/app/code/Magento/Review/Block/Adminhtml/Rss/Grid/Link.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Block/Customer/ListCustomer.php b/app/code/Magento/Review/Block/Customer/ListCustomer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Block/Customer/Recent.php b/app/code/Magento/Review/Block/Customer/Recent.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Block/Customer/View.php b/app/code/Magento/Review/Block/Customer/View.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Block/Form.php b/app/code/Magento/Review/Block/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Block/Form/Configure.php b/app/code/Magento/Review/Block/Form/Configure.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Block/Product/Compare/ListCompare/Plugin/Review.php b/app/code/Magento/Review/Block/Product/Compare/ListCompare/Plugin/Review.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Block/Product/Review.php b/app/code/Magento/Review/Block/Product/Review.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Block/Product/ReviewRenderer.php b/app/code/Magento/Review/Block/Product/ReviewRenderer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Block/Product/View.php b/app/code/Magento/Review/Block/Product/View.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Block/Product/View/ListView.php b/app/code/Magento/Review/Block/Product/View/ListView.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Block/Product/View/Other.php b/app/code/Magento/Review/Block/Product/View/Other.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Block/Rating/Entity/Detailed.php b/app/code/Magento/Review/Block/Rating/Entity/Detailed.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Block/View.php b/app/code/Magento/Review/Block/View.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Controller/Adminhtml/Product.php b/app/code/Magento/Review/Controller/Adminhtml/Product.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Controller/Adminhtml/Product/Delete.php b/app/code/Magento/Review/Controller/Adminhtml/Product/Delete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Controller/Adminhtml/Product/Edit.php b/app/code/Magento/Review/Controller/Adminhtml/Product/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Controller/Adminhtml/Product/Index.php b/app/code/Magento/Review/Controller/Adminhtml/Product/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Controller/Adminhtml/Product/JsonProductInfo.php b/app/code/Magento/Review/Controller/Adminhtml/Product/JsonProductInfo.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Controller/Adminhtml/Product/MassDelete.php b/app/code/Magento/Review/Controller/Adminhtml/Product/MassDelete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Controller/Adminhtml/Product/MassUpdateStatus.php b/app/code/Magento/Review/Controller/Adminhtml/Product/MassUpdateStatus.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Controller/Adminhtml/Product/MassVisibleIn.php b/app/code/Magento/Review/Controller/Adminhtml/Product/MassVisibleIn.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Controller/Adminhtml/Product/NewAction.php b/app/code/Magento/Review/Controller/Adminhtml/Product/NewAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Controller/Adminhtml/Product/Pending.php b/app/code/Magento/Review/Controller/Adminhtml/Product/Pending.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Controller/Adminhtml/Product/Post.php b/app/code/Magento/Review/Controller/Adminhtml/Product/Post.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Controller/Adminhtml/Product/ProductGrid.php b/app/code/Magento/Review/Controller/Adminhtml/Product/ProductGrid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Controller/Adminhtml/Product/RatingItems.php b/app/code/Magento/Review/Controller/Adminhtml/Product/RatingItems.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Controller/Adminhtml/Product/ReviewGrid.php b/app/code/Magento/Review/Controller/Adminhtml/Product/ReviewGrid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Controller/Adminhtml/Product/Reviews/Grid.php b/app/code/Magento/Review/Controller/Adminhtml/Product/Reviews/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Controller/Adminhtml/Product/Save.php b/app/code/Magento/Review/Controller/Adminhtml/Product/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Controller/Adminhtml/Rating.php b/app/code/Magento/Review/Controller/Adminhtml/Rating.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Controller/Adminhtml/Rating/Delete.php b/app/code/Magento/Review/Controller/Adminhtml/Rating/Delete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Controller/Adminhtml/Rating/Edit.php b/app/code/Magento/Review/Controller/Adminhtml/Rating/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Controller/Adminhtml/Rating/Index.php b/app/code/Magento/Review/Controller/Adminhtml/Rating/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Controller/Adminhtml/Rating/NewAction.php b/app/code/Magento/Review/Controller/Adminhtml/Rating/NewAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Controller/Adminhtml/Rating/Save.php b/app/code/Magento/Review/Controller/Adminhtml/Rating/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Controller/Customer.php b/app/code/Magento/Review/Controller/Customer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Controller/Customer/Index.php b/app/code/Magento/Review/Controller/Customer/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Controller/Customer/View.php b/app/code/Magento/Review/Controller/Customer/View.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Controller/Product.php b/app/code/Magento/Review/Controller/Product.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Controller/Product/ListAction.php b/app/code/Magento/Review/Controller/Product/ListAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Controller/Product/ListAjax.php b/app/code/Magento/Review/Controller/Product/ListAjax.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Controller/Product/Post.php b/app/code/Magento/Review/Controller/Product/Post.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Controller/Product/View.php b/app/code/Magento/Review/Controller/Product/View.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/CustomerData/Review.php b/app/code/Magento/Review/CustomerData/Review.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Helper/Action/Pager.php b/app/code/Magento/Review/Helper/Action/Pager.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Helper/Data.php b/app/code/Magento/Review/Helper/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/LICENSE.txt b/app/code/Magento/Review/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/LICENSE_AFL.txt b/app/code/Magento/Review/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Model/Rating.php b/app/code/Magento/Review/Model/Rating.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Model/Rating/Entity.php b/app/code/Magento/Review/Model/Rating/Entity.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Model/Rating/Option.php b/app/code/Magento/Review/Model/Rating/Option.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Model/Rating/Option/Vote.php b/app/code/Magento/Review/Model/Rating/Option/Vote.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Model/ResourceModel/Rating.php b/app/code/Magento/Review/Model/ResourceModel/Rating.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Model/ResourceModel/Rating/Collection.php b/app/code/Magento/Review/Model/ResourceModel/Rating/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Model/ResourceModel/Rating/Entity.php b/app/code/Magento/Review/Model/ResourceModel/Rating/Entity.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Model/ResourceModel/Rating/Grid/Collection.php b/app/code/Magento/Review/Model/ResourceModel/Rating/Grid/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Model/ResourceModel/Rating/Option.php b/app/code/Magento/Review/Model/ResourceModel/Rating/Option.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Model/ResourceModel/Rating/Option/Collection.php b/app/code/Magento/Review/Model/ResourceModel/Rating/Option/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Model/ResourceModel/Rating/Option/Vote.php b/app/code/Magento/Review/Model/ResourceModel/Rating/Option/Vote.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Model/ResourceModel/Rating/Option/Vote/Collection.php b/app/code/Magento/Review/Model/ResourceModel/Rating/Option/Vote/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Model/ResourceModel/Review.php b/app/code/Magento/Review/Model/ResourceModel/Review.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Model/ResourceModel/Review/Collection.php b/app/code/Magento/Review/Model/ResourceModel/Review/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Model/ResourceModel/Review/Product/Collection.php b/app/code/Magento/Review/Model/ResourceModel/Review/Product/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Model/ResourceModel/Review/Status.php b/app/code/Magento/Review/Model/ResourceModel/Review/Status.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Model/ResourceModel/Review/Status/Collection.php b/app/code/Magento/Review/Model/ResourceModel/Review/Status/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Model/ResourceModel/Review/Summary.php b/app/code/Magento/Review/Model/ResourceModel/Review/Summary.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Model/ResourceModel/Review/Summary/Collection.php b/app/code/Magento/Review/Model/ResourceModel/Review/Summary/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Model/Review.php b/app/code/Magento/Review/Model/Review.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Model/Review/Status.php b/app/code/Magento/Review/Model/Review/Status.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Model/Review/Summary.php b/app/code/Magento/Review/Model/Review/Summary.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Model/Rss.php b/app/code/Magento/Review/Model/Rss.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Observer/CatalogBlockProductCollectionBeforeToHtmlObserver.php b/app/code/Magento/Review/Observer/CatalogBlockProductCollectionBeforeToHtmlObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Observer/ProcessProductAfterDeleteEventObserver.php b/app/code/Magento/Review/Observer/ProcessProductAfterDeleteEventObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Observer/TagProductCollectionLoadAfterObserver.php b/app/code/Magento/Review/Observer/TagProductCollectionLoadAfterObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/README.md b/app/code/Magento/Review/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Setup/InstallData.php b/app/code/Magento/Review/Setup/InstallData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Setup/InstallSchema.php b/app/code/Magento/Review/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Test/Unit/Block/Adminhtml/MainTest.php b/app/code/Magento/Review/Test/Unit/Block/Adminhtml/MainTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Test/Unit/Block/Adminhtml/Rating/Edit/Tab/FormTest.php b/app/code/Magento/Review/Test/Unit/Block/Adminhtml/Rating/Edit/Tab/FormTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Test/Unit/Block/Adminhtml/Rss/Grid/LinkTest.php b/app/code/Magento/Review/Test/Unit/Block/Adminhtml/Rss/Grid/LinkTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Test/Unit/Block/Adminhtml/RssTest.php b/app/code/Magento/Review/Test/Unit/Block/Adminhtml/RssTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Test/Unit/Block/Customer/RecentTest.php b/app/code/Magento/Review/Test/Unit/Block/Customer/RecentTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Test/Unit/Block/FormTest.php b/app/code/Magento/Review/Test/Unit/Block/FormTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Test/Unit/Block/Product/ReviewTest.php b/app/code/Magento/Review/Test/Unit/Block/Product/ReviewTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Test/Unit/Controller/Adminhtml/Product/PostTest.php b/app/code/Magento/Review/Test/Unit/Controller/Adminhtml/Product/PostTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Test/Unit/Controller/Product/PostTest.php b/app/code/Magento/Review/Test/Unit/Controller/Product/PostTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Test/Unit/Helper/Action/PagerTest.php b/app/code/Magento/Review/Test/Unit/Helper/Action/PagerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Test/Unit/Model/RatingTest.php b/app/code/Magento/Review/Test/Unit/Model/RatingTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Test/Unit/Model/ResourceModel/Review/CollectionTest.php b/app/code/Magento/Review/Test/Unit/Model/ResourceModel/Review/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Test/Unit/Model/ResourceModel/Review/Product/CollectionTest.php b/app/code/Magento/Review/Test/Unit/Model/ResourceModel/Review/Product/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Test/Unit/Model/ResourceModel/Review/Summary/CollectionTest.php b/app/code/Magento/Review/Test/Unit/Model/ResourceModel/Review/Summary/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Test/Unit/Model/ReviewTest.php b/app/code/Magento/Review/Test/Unit/Model/ReviewTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Test/Unit/Model/RssTest.php b/app/code/Magento/Review/Test/Unit/Model/RssTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Test/Unit/Ui/Component/Listing/Columns/ReviewActionsTest.php b/app/code/Magento/Review/Test/Unit/Ui/Component/Listing/Columns/ReviewActionsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Test/Unit/Ui/Component/Listing/Columns/StatusTest.php b/app/code/Magento/Review/Test/Unit/Ui/Component/Listing/Columns/StatusTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Test/Unit/Ui/Component/Listing/Columns/TypeTest.php b/app/code/Magento/Review/Test/Unit/Ui/Component/Listing/Columns/TypeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Test/Unit/Ui/Component/Listing/Columns/VisibilityTest.php b/app/code/Magento/Review/Test/Unit/Ui/Component/Listing/Columns/VisibilityTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ReviewTest.php b/app/code/Magento/Review/Test/Unit/Ui/DataProvider/Product/Form/Modifier/ReviewTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Test/Unit/Ui/DataProvider/Product/ReviewDataProviderTest.php b/app/code/Magento/Review/Test/Unit/Ui/DataProvider/Product/ReviewDataProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Ui/Component/Listing/Columns/ReviewActions.php b/app/code/Magento/Review/Ui/Component/Listing/Columns/ReviewActions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Ui/Component/Listing/Columns/Status.php b/app/code/Magento/Review/Ui/Component/Listing/Columns/Status.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Ui/Component/Listing/Columns/Type.php b/app/code/Magento/Review/Ui/Component/Listing/Columns/Type.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Ui/Component/Listing/Columns/Visibility.php b/app/code/Magento/Review/Ui/Component/Listing/Columns/Visibility.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Ui/DataProvider/Product/Form/Modifier/Review.php b/app/code/Magento/Review/Ui/DataProvider/Product/Form/Modifier/Review.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Ui/DataProvider/Product/Listing/Collector/Review.php b/app/code/Magento/Review/Ui/DataProvider/Product/Listing/Collector/Review.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/Ui/DataProvider/Product/ReviewDataProvider.php b/app/code/Magento/Review/Ui/DataProvider/Product/ReviewDataProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/composer.json b/app/code/Magento/Review/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/etc/acl.xml b/app/code/Magento/Review/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/etc/adminhtml/di.xml b/app/code/Magento/Review/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/etc/adminhtml/events.xml b/app/code/Magento/Review/etc/adminhtml/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/etc/adminhtml/menu.xml b/app/code/Magento/Review/etc/adminhtml/menu.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/etc/adminhtml/routes.xml b/app/code/Magento/Review/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/etc/adminhtml/system.xml b/app/code/Magento/Review/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/etc/config.xml b/app/code/Magento/Review/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/etc/di.xml b/app/code/Magento/Review/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/etc/extension_attributes.xml b/app/code/Magento/Review/etc/extension_attributes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/etc/frontend/di.xml b/app/code/Magento/Review/etc/frontend/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/etc/frontend/events.xml b/app/code/Magento/Review/etc/frontend/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/etc/frontend/page_types.xml b/app/code/Magento/Review/etc/frontend/page_types.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/etc/frontend/routes.xml b/app/code/Magento/Review/etc/frontend/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/etc/frontend/sections.xml b/app/code/Magento/Review/etc/frontend/sections.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/etc/module.xml b/app/code/Magento/Review/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/i18n/en_US.csv b/app/code/Magento/Review/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/registration.php b/app/code/Magento/Review/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/view/adminhtml/layout/catalog_product_new.xml b/app/code/Magento/Review/view/adminhtml/layout/catalog_product_new.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/view/adminhtml/layout/rating_block.xml b/app/code/Magento/Review/view/adminhtml/layout/rating_block.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/view/adminhtml/layout/review_product_edit.xml b/app/code/Magento/Review/view/adminhtml/layout/review_product_edit.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/view/adminhtml/layout/review_product_index.xml b/app/code/Magento/Review/view/adminhtml/layout/review_product_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/view/adminhtml/layout/review_product_reviews_grid.xml b/app/code/Magento/Review/view/adminhtml/layout/review_product_reviews_grid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/view/adminhtml/layout/review_rating_edit.xml b/app/code/Magento/Review/view/adminhtml/layout/review_rating_edit.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/view/adminhtml/layout/review_rating_index.xml b/app/code/Magento/Review/view/adminhtml/layout/review_rating_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/view/adminhtml/templates/add.phtml b/app/code/Magento/Review/view/adminhtml/templates/add.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/view/adminhtml/templates/rating/detailed.phtml b/app/code/Magento/Review/view/adminhtml/templates/rating/detailed.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/view/adminhtml/templates/rating/form.phtml b/app/code/Magento/Review/view/adminhtml/templates/rating/form.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/view/adminhtml/templates/rating/options.phtml b/app/code/Magento/Review/view/adminhtml/templates/rating/options.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/view/adminhtml/templates/rating/stars/detailed.phtml b/app/code/Magento/Review/view/adminhtml/templates/rating/stars/detailed.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/view/adminhtml/templates/rating/stars/summary.phtml b/app/code/Magento/Review/view/adminhtml/templates/rating/stars/summary.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/view/adminhtml/templates/rss/grid/link.phtml b/app/code/Magento/Review/view/adminhtml/templates/rss/grid/link.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/view/adminhtml/ui_component/review_listing.xml b/app/code/Magento/Review/view/adminhtml/ui_component/review_listing.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/view/adminhtml/web/js/rating.js b/app/code/Magento/Review/view/adminhtml/web/js/rating.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/view/base/ui_component/customer_form.xml b/app/code/Magento/Review/view/base/ui_component/customer_form.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/view/frontend/layout/catalog_product_view.xml b/app/code/Magento/Review/view/frontend/layout/catalog_product_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/view/frontend/layout/checkout_cart_configure.xml b/app/code/Magento/Review/view/frontend/layout/checkout_cart_configure.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/view/frontend/layout/customer_account.xml b/app/code/Magento/Review/view/frontend/layout/customer_account.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/view/frontend/layout/customer_account_index.xml b/app/code/Magento/Review/view/frontend/layout/customer_account_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/view/frontend/layout/review_customer_index.xml b/app/code/Magento/Review/view/frontend/layout/review_customer_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/view/frontend/layout/review_customer_view.xml b/app/code/Magento/Review/view/frontend/layout/review_customer_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/view/frontend/layout/review_product_form_component.xml b/app/code/Magento/Review/view/frontend/layout/review_product_form_component.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/view/frontend/layout/review_product_list.xml b/app/code/Magento/Review/view/frontend/layout/review_product_list.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/view/frontend/layout/review_product_listajax.xml b/app/code/Magento/Review/view/frontend/layout/review_product_listajax.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/view/frontend/layout/review_product_view.xml b/app/code/Magento/Review/view/frontend/layout/review_product_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/view/frontend/layout/wishlist_index_configure.xml b/app/code/Magento/Review/view/frontend/layout/wishlist_index_configure.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/view/frontend/templates/customer/list.phtml b/app/code/Magento/Review/view/frontend/templates/customer/list.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/view/frontend/templates/customer/recent.phtml b/app/code/Magento/Review/view/frontend/templates/customer/recent.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/view/frontend/templates/customer/view.phtml b/app/code/Magento/Review/view/frontend/templates/customer/view.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/view/frontend/templates/detailed.phtml b/app/code/Magento/Review/view/frontend/templates/detailed.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/view/frontend/templates/empty.phtml b/app/code/Magento/Review/view/frontend/templates/empty.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/view/frontend/templates/form.phtml b/app/code/Magento/Review/view/frontend/templates/form.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/view/frontend/templates/helper/summary.phtml b/app/code/Magento/Review/view/frontend/templates/helper/summary.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/view/frontend/templates/helper/summary_short.phtml b/app/code/Magento/Review/view/frontend/templates/helper/summary_short.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/view/frontend/templates/product/view/count.phtml b/app/code/Magento/Review/view/frontend/templates/product/view/count.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/view/frontend/templates/product/view/list.phtml b/app/code/Magento/Review/view/frontend/templates/product/view/list.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/view/frontend/templates/product/view/other.phtml b/app/code/Magento/Review/view/frontend/templates/product/view/other.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/view/frontend/templates/redirect.phtml b/app/code/Magento/Review/view/frontend/templates/redirect.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/view/frontend/templates/review.phtml b/app/code/Magento/Review/view/frontend/templates/review.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/view/frontend/templates/view.phtml b/app/code/Magento/Review/view/frontend/templates/view.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/view/frontend/ui_component/widget_recently_compared.xml b/app/code/Magento/Review/view/frontend/ui_component/widget_recently_compared.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/view/frontend/ui_component/widget_recently_viewed.xml b/app/code/Magento/Review/view/frontend/ui_component/widget_recently_viewed.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/view/frontend/web/js/error-placement.js b/app/code/Magento/Review/view/frontend/web/js/error-placement.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/view/frontend/web/js/process-reviews.js b/app/code/Magento/Review/view/frontend/web/js/process-reviews.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/view/frontend/web/js/validate-review.js b/app/code/Magento/Review/view/frontend/web/js/validate-review.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Review/view/frontend/web/js/view/review.js b/app/code/Magento/Review/view/frontend/web/js/view/review.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ReviewAnalytics/LICENSE.txt b/app/code/Magento/ReviewAnalytics/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ReviewAnalytics/LICENSE_AFL.txt b/app/code/Magento/ReviewAnalytics/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ReviewAnalytics/README.md b/app/code/Magento/ReviewAnalytics/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ReviewAnalytics/composer.json b/app/code/Magento/ReviewAnalytics/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ReviewAnalytics/etc/analytics.xml b/app/code/Magento/ReviewAnalytics/etc/analytics.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ReviewAnalytics/etc/module.xml b/app/code/Magento/ReviewAnalytics/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ReviewAnalytics/etc/reports.xml b/app/code/Magento/ReviewAnalytics/etc/reports.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/ReviewAnalytics/registration.php b/app/code/Magento/ReviewAnalytics/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Robots/Block/Data.php b/app/code/Magento/Robots/Block/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Robots/Controller/Index/Index.php b/app/code/Magento/Robots/Controller/Index/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Robots/Controller/Router.php b/app/code/Magento/Robots/Controller/Router.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Robots/LICENSE.txt b/app/code/Magento/Robots/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Robots/LICENSE_AFL.txt b/app/code/Magento/Robots/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Robots/Model/Config/Value.php b/app/code/Magento/Robots/Model/Config/Value.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Robots/Model/Robots.php b/app/code/Magento/Robots/Model/Robots.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Robots/README.md b/app/code/Magento/Robots/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Robots/Test/Unit/Block/DataTest.php b/app/code/Magento/Robots/Test/Unit/Block/DataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Robots/Test/Unit/Controller/Index/IndexTest.php b/app/code/Magento/Robots/Test/Unit/Controller/Index/IndexTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Robots/Test/Unit/Controller/RouterTest.php b/app/code/Magento/Robots/Test/Unit/Controller/RouterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Robots/Test/Unit/Model/Config/ValueTest.php b/app/code/Magento/Robots/Test/Unit/Model/Config/ValueTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Robots/Test/Unit/Model/RobotsTest.php b/app/code/Magento/Robots/Test/Unit/Model/RobotsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Robots/composer.json b/app/code/Magento/Robots/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Robots/etc/di.xml b/app/code/Magento/Robots/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Robots/etc/frontend/di.xml b/app/code/Magento/Robots/etc/frontend/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Robots/etc/frontend/routes.xml b/app/code/Magento/Robots/etc/frontend/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Robots/etc/module.xml b/app/code/Magento/Robots/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Robots/registration.php b/app/code/Magento/Robots/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Robots/view/frontend/layout/robots_index_index.xml b/app/code/Magento/Robots/view/frontend/layout/robots_index_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Robots/view/frontend/page_layout/robots.xml b/app/code/Magento/Robots/view/frontend/page_layout/robots.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Robots/view/frontend/templates/robots.phtml b/app/code/Magento/Robots/view/frontend/templates/robots.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rss/App/Action/Plugin/BackendAuthentication.php b/app/code/Magento/Rss/App/Action/Plugin/BackendAuthentication.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rss/Block/Feeds.php b/app/code/Magento/Rss/Block/Feeds.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rss/Controller/Adminhtml/Feed.php b/app/code/Magento/Rss/Controller/Adminhtml/Feed.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rss/Controller/Adminhtml/Feed/Index.php b/app/code/Magento/Rss/Controller/Adminhtml/Feed/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rss/Controller/Feed.php b/app/code/Magento/Rss/Controller/Feed.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rss/Controller/Feed/Index.php b/app/code/Magento/Rss/Controller/Feed/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rss/Controller/Index.php b/app/code/Magento/Rss/Controller/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rss/Controller/Index/Index.php b/app/code/Magento/Rss/Controller/Index/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rss/LICENSE.txt b/app/code/Magento/Rss/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rss/LICENSE_AFL.txt b/app/code/Magento/Rss/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rss/Model/Rss.php b/app/code/Magento/Rss/Model/Rss.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rss/Model/RssManager.php b/app/code/Magento/Rss/Model/RssManager.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rss/Model/System/Config/Backend/Links.php b/app/code/Magento/Rss/Model/System/Config/Backend/Links.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rss/Model/UrlBuilder.php b/app/code/Magento/Rss/Model/UrlBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rss/README.md b/app/code/Magento/Rss/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rss/Test/Unit/App/Action/Plugin/BackendAuthenticationTest.php b/app/code/Magento/Rss/Test/Unit/App/Action/Plugin/BackendAuthenticationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rss/Test/Unit/Block/FeedsTest.php b/app/code/Magento/Rss/Test/Unit/Block/FeedsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rss/Test/Unit/Controller/Adminhtml/Feed/IndexTest.php b/app/code/Magento/Rss/Test/Unit/Controller/Adminhtml/Feed/IndexTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rss/Test/Unit/Controller/Feed/IndexTest.php b/app/code/Magento/Rss/Test/Unit/Controller/Feed/IndexTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rss/Test/Unit/Model/RssManagerTest.php b/app/code/Magento/Rss/Test/Unit/Model/RssManagerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rss/Test/Unit/Model/RssTest.php b/app/code/Magento/Rss/Test/Unit/Model/RssTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rss/Test/Unit/Model/UrlBuilderTest.php b/app/code/Magento/Rss/Test/Unit/Model/UrlBuilderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rss/composer.json b/app/code/Magento/Rss/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rss/etc/acl.xml b/app/code/Magento/Rss/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rss/etc/adminhtml/di.xml b/app/code/Magento/Rss/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rss/etc/adminhtml/routes.xml b/app/code/Magento/Rss/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rss/etc/adminhtml/system.xml b/app/code/Magento/Rss/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rss/etc/di.xml b/app/code/Magento/Rss/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rss/etc/frontend/page_types.xml b/app/code/Magento/Rss/etc/frontend/page_types.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rss/etc/frontend/routes.xml b/app/code/Magento/Rss/etc/frontend/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rss/etc/module.xml b/app/code/Magento/Rss/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rss/i18n/en_US.csv b/app/code/Magento/Rss/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rss/registration.php b/app/code/Magento/Rss/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rss/view/frontend/layout/default.xml b/app/code/Magento/Rss/view/frontend/layout/default.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rss/view/frontend/layout/rss_index_index.xml b/app/code/Magento/Rss/view/frontend/layout/rss_index_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rss/view/frontend/templates/feeds.phtml b/app/code/Magento/Rss/view/frontend/templates/feeds.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rule/Block/Actions.php b/app/code/Magento/Rule/Block/Actions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rule/Block/Conditions.php b/app/code/Magento/Rule/Block/Conditions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rule/Block/Editable.php b/app/code/Magento/Rule/Block/Editable.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rule/Block/Newchild.php b/app/code/Magento/Rule/Block/Newchild.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rule/Block/Rule.php b/app/code/Magento/Rule/Block/Rule.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rule/LICENSE.txt b/app/code/Magento/Rule/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rule/LICENSE_AFL.txt b/app/code/Magento/Rule/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rule/Model/AbstractModel.php b/app/code/Magento/Rule/Model/AbstractModel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rule/Model/Action/AbstractAction.php b/app/code/Magento/Rule/Model/Action/AbstractAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rule/Model/Action/ActionInterface.php b/app/code/Magento/Rule/Model/Action/ActionInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rule/Model/Action/Collection.php b/app/code/Magento/Rule/Model/Action/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rule/Model/ActionFactory.php b/app/code/Magento/Rule/Model/ActionFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rule/Model/Condition/AbstractCondition.php b/app/code/Magento/Rule/Model/Condition/AbstractCondition.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rule/Model/Condition/Combine.php b/app/code/Magento/Rule/Model/Condition/Combine.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rule/Model/Condition/ConditionInterface.php b/app/code/Magento/Rule/Model/Condition/ConditionInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rule/Model/Condition/Context.php b/app/code/Magento/Rule/Model/Condition/Context.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rule/Model/Condition/Product/AbstractProduct.php b/app/code/Magento/Rule/Model/Condition/Product/AbstractProduct.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rule/Model/Condition/Sql/Builder.php b/app/code/Magento/Rule/Model/Condition/Sql/Builder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rule/Model/Condition/Sql/Expression.php b/app/code/Magento/Rule/Model/Condition/Sql/Expression.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rule/Model/ConditionFactory.php b/app/code/Magento/Rule/Model/ConditionFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rule/Model/Renderer/Actions.php b/app/code/Magento/Rule/Model/Renderer/Actions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rule/Model/Renderer/Conditions.php b/app/code/Magento/Rule/Model/Renderer/Conditions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rule/Model/ResourceModel/AbstractResource.php b/app/code/Magento/Rule/Model/ResourceModel/AbstractResource.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rule/Model/ResourceModel/Rule/Collection/AbstractCollection.php b/app/code/Magento/Rule/Model/ResourceModel/Rule/Collection/AbstractCollection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rule/README.md b/app/code/Magento/Rule/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rule/Test/Unit/Model/AbstractModelTest.php b/app/code/Magento/Rule/Test/Unit/Model/AbstractModelTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rule/Test/Unit/Model/ActionFactoryTest.php b/app/code/Magento/Rule/Test/Unit/Model/ActionFactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rule/Test/Unit/Model/Condition/AbstractConditionTest.php b/app/code/Magento/Rule/Test/Unit/Model/Condition/AbstractConditionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rule/Test/Unit/Model/Condition/CombineTest.php b/app/code/Magento/Rule/Test/Unit/Model/Condition/CombineTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rule/Test/Unit/Model/Condition/Product/AbstractProductTest.php b/app/code/Magento/Rule/Test/Unit/Model/Condition/Product/AbstractProductTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rule/Test/Unit/Model/Condition/Sql/BuilderTest.php b/app/code/Magento/Rule/Test/Unit/Model/Condition/Sql/BuilderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rule/Test/Unit/Model/Condition/Sql/ExpressionTest.php b/app/code/Magento/Rule/Test/Unit/Model/Condition/Sql/ExpressionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rule/Test/Unit/Model/ConditionFactoryTest.php b/app/code/Magento/Rule/Test/Unit/Model/ConditionFactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rule/Test/Unit/Model/Renderer/ActionsTest.php b/app/code/Magento/Rule/Test/Unit/Model/Renderer/ActionsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rule/Test/Unit/Model/Renderer/ConditionsTest.php b/app/code/Magento/Rule/Test/Unit/Model/Renderer/ConditionsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rule/Test/Unit/Model/ResourceModel/Rule/Collection/AbstractCollectionTest.php b/app/code/Magento/Rule/Test/Unit/Model/ResourceModel/Rule/Collection/AbstractCollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rule/composer.json b/app/code/Magento/Rule/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rule/etc/module.xml b/app/code/Magento/Rule/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rule/i18n/en_US.csv b/app/code/Magento/Rule/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rule/registration.php b/app/code/Magento/Rule/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Rule/view/adminhtml/web/rules.js b/app/code/Magento/Rule/view/adminhtml/web/rules.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/CreditmemoCommentRepositoryInterface.php b/app/code/Magento/Sales/Api/CreditmemoCommentRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/CreditmemoItemRepositoryInterface.php b/app/code/Magento/Sales/Api/CreditmemoItemRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/CreditmemoManagementInterface.php b/app/code/Magento/Sales/Api/CreditmemoManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/CreditmemoRepositoryInterface.php b/app/code/Magento/Sales/Api/CreditmemoRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/CommentInterface.php b/app/code/Magento/Sales/Api/Data/CommentInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/CreditmemoCommentCreationInterface.php b/app/code/Magento/Sales/Api/Data/CreditmemoCommentCreationInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/CreditmemoCommentInterface.php b/app/code/Magento/Sales/Api/Data/CreditmemoCommentInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/CreditmemoCommentSearchResultInterface.php b/app/code/Magento/Sales/Api/Data/CreditmemoCommentSearchResultInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/CreditmemoCreationArgumentsInterface.php b/app/code/Magento/Sales/Api/Data/CreditmemoCreationArgumentsInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/CreditmemoInterface.php b/app/code/Magento/Sales/Api/Data/CreditmemoInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/CreditmemoItemCreationInterface.php b/app/code/Magento/Sales/Api/Data/CreditmemoItemCreationInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/CreditmemoItemInterface.php b/app/code/Magento/Sales/Api/Data/CreditmemoItemInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/CreditmemoItemSearchResultInterface.php b/app/code/Magento/Sales/Api/Data/CreditmemoItemSearchResultInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/CreditmemoSearchResultInterface.php b/app/code/Magento/Sales/Api/Data/CreditmemoSearchResultInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/EntityInterface.php b/app/code/Magento/Sales/Api/Data/EntityInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/InvoiceCommentCreationInterface.php b/app/code/Magento/Sales/Api/Data/InvoiceCommentCreationInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/InvoiceCommentInterface.php b/app/code/Magento/Sales/Api/Data/InvoiceCommentInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/InvoiceCommentSearchResultInterface.php b/app/code/Magento/Sales/Api/Data/InvoiceCommentSearchResultInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/InvoiceCreationArgumentsInterface.php b/app/code/Magento/Sales/Api/Data/InvoiceCreationArgumentsInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/InvoiceInterface.php b/app/code/Magento/Sales/Api/Data/InvoiceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/InvoiceItemCreationInterface.php b/app/code/Magento/Sales/Api/Data/InvoiceItemCreationInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/InvoiceItemInterface.php b/app/code/Magento/Sales/Api/Data/InvoiceItemInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/InvoiceItemSearchResultInterface.php b/app/code/Magento/Sales/Api/Data/InvoiceItemSearchResultInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/InvoiceSearchResultInterface.php b/app/code/Magento/Sales/Api/Data/InvoiceSearchResultInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/LineItemInterface.php b/app/code/Magento/Sales/Api/Data/LineItemInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/OrderAddressInterface.php b/app/code/Magento/Sales/Api/Data/OrderAddressInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/OrderAddressSearchResultInterface.php b/app/code/Magento/Sales/Api/Data/OrderAddressSearchResultInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/OrderInterface.php b/app/code/Magento/Sales/Api/Data/OrderInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/OrderItemInterface.php b/app/code/Magento/Sales/Api/Data/OrderItemInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/OrderItemSearchResultInterface.php b/app/code/Magento/Sales/Api/Data/OrderItemSearchResultInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/OrderPaymentInterface.php b/app/code/Magento/Sales/Api/Data/OrderPaymentInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/OrderPaymentSearchResultInterface.php b/app/code/Magento/Sales/Api/Data/OrderPaymentSearchResultInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/OrderSearchResultInterface.php b/app/code/Magento/Sales/Api/Data/OrderSearchResultInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/OrderStatusHistoryInterface.php b/app/code/Magento/Sales/Api/Data/OrderStatusHistoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/OrderStatusHistorySearchResultInterface.php b/app/code/Magento/Sales/Api/Data/OrderStatusHistorySearchResultInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/ShipmentCommentCreationInterface.php b/app/code/Magento/Sales/Api/Data/ShipmentCommentCreationInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/ShipmentCommentInterface.php b/app/code/Magento/Sales/Api/Data/ShipmentCommentInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/ShipmentCommentSearchResultInterface.php b/app/code/Magento/Sales/Api/Data/ShipmentCommentSearchResultInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/ShipmentCreationArgumentsInterface.php b/app/code/Magento/Sales/Api/Data/ShipmentCreationArgumentsInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/ShipmentInterface.php b/app/code/Magento/Sales/Api/Data/ShipmentInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/ShipmentItemCreationInterface.php b/app/code/Magento/Sales/Api/Data/ShipmentItemCreationInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/ShipmentItemInterface.php b/app/code/Magento/Sales/Api/Data/ShipmentItemInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/ShipmentItemSearchResultInterface.php b/app/code/Magento/Sales/Api/Data/ShipmentItemSearchResultInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/ShipmentPackageCreationInterface.php b/app/code/Magento/Sales/Api/Data/ShipmentPackageCreationInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/ShipmentPackageInterface.php b/app/code/Magento/Sales/Api/Data/ShipmentPackageInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/ShipmentSearchResultInterface.php b/app/code/Magento/Sales/Api/Data/ShipmentSearchResultInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/ShipmentTrackCreationInterface.php b/app/code/Magento/Sales/Api/Data/ShipmentTrackCreationInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/ShipmentTrackInterface.php b/app/code/Magento/Sales/Api/Data/ShipmentTrackInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/ShipmentTrackSearchResultInterface.php b/app/code/Magento/Sales/Api/Data/ShipmentTrackSearchResultInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/ShippingAssignmentInterface.php b/app/code/Magento/Sales/Api/Data/ShippingAssignmentInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/ShippingInterface.php b/app/code/Magento/Sales/Api/Data/ShippingInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/TotalInterface.php b/app/code/Magento/Sales/Api/Data/TotalInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/TrackInterface.php b/app/code/Magento/Sales/Api/Data/TrackInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/TransactionInterface.php b/app/code/Magento/Sales/Api/Data/TransactionInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Data/TransactionSearchResultInterface.php b/app/code/Magento/Sales/Api/Data/TransactionSearchResultInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Exception/CouldNotInvoiceExceptionInterface.php b/app/code/Magento/Sales/Api/Exception/CouldNotInvoiceExceptionInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Exception/CouldNotRefundExceptionInterface.php b/app/code/Magento/Sales/Api/Exception/CouldNotRefundExceptionInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Exception/CouldNotShipExceptionInterface.php b/app/code/Magento/Sales/Api/Exception/CouldNotShipExceptionInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/Exception/DocumentValidationExceptionInterface.php b/app/code/Magento/Sales/Api/Exception/DocumentValidationExceptionInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/InvoiceCommentRepositoryInterface.php b/app/code/Magento/Sales/Api/InvoiceCommentRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/InvoiceItemRepositoryInterface.php b/app/code/Magento/Sales/Api/InvoiceItemRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/InvoiceManagementInterface.php b/app/code/Magento/Sales/Api/InvoiceManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/InvoiceOrderInterface.php b/app/code/Magento/Sales/Api/InvoiceOrderInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/InvoiceRepositoryInterface.php b/app/code/Magento/Sales/Api/InvoiceRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/OrderAddressRepositoryInterface.php b/app/code/Magento/Sales/Api/OrderAddressRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/OrderCustomerManagementInterface.php b/app/code/Magento/Sales/Api/OrderCustomerManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/OrderItemRepositoryInterface.php b/app/code/Magento/Sales/Api/OrderItemRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/OrderManagementInterface.php b/app/code/Magento/Sales/Api/OrderManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/OrderPaymentRepositoryInterface.php b/app/code/Magento/Sales/Api/OrderPaymentRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/OrderRepositoryInterface.php b/app/code/Magento/Sales/Api/OrderRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/OrderStatusHistoryRepositoryInterface.php b/app/code/Magento/Sales/Api/OrderStatusHistoryRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/RefundInvoiceInterface.php b/app/code/Magento/Sales/Api/RefundInvoiceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/RefundOrderInterface.php b/app/code/Magento/Sales/Api/RefundOrderInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/ShipOrderInterface.php b/app/code/Magento/Sales/Api/ShipOrderInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/ShipmentCommentRepositoryInterface.php b/app/code/Magento/Sales/Api/ShipmentCommentRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/ShipmentItemRepositoryInterface.php b/app/code/Magento/Sales/Api/ShipmentItemRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/ShipmentManagementInterface.php b/app/code/Magento/Sales/Api/ShipmentManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/ShipmentRepositoryInterface.php b/app/code/Magento/Sales/Api/ShipmentRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/ShipmentTrackRepositoryInterface.php b/app/code/Magento/Sales/Api/ShipmentTrackRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Api/TransactionRepositoryInterface.php b/app/code/Magento/Sales/Api/TransactionRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Creditmemo.php b/app/code/Magento/Sales/Block/Adminhtml/Creditmemo.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/CustomerOrdersTab.php b/app/code/Magento/Sales/Block/Adminhtml/CustomerOrdersTab.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Invoice.php b/app/code/Magento/Sales/Block/Adminhtml/Invoice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Items/AbstractItems.php b/app/code/Magento/Sales/Block/Adminhtml/Items/AbstractItems.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Items/Column/DefaultColumn.php b/app/code/Magento/Sales/Block/Adminhtml/Items/Column/DefaultColumn.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Items/Column/Name.php b/app/code/Magento/Sales/Block/Adminhtml/Items/Column/Name.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Items/Column/Qty.php b/app/code/Magento/Sales/Block/Adminhtml/Items/Column/Qty.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Items/Renderer/DefaultRenderer.php b/app/code/Magento/Sales/Block/Adminhtml/Items/Renderer/DefaultRenderer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order.php b/app/code/Magento/Sales/Block/Adminhtml/Order.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/AbstractOrder.php b/app/code/Magento/Sales/Block/Adminhtml/Order/AbstractOrder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Address.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Address.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Address/Form.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Address/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Comments/View.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Comments/View.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/AbstractCreate.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/AbstractCreate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Billing/Address.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Billing/Address.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Billing/Method.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Billing/Method.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Billing/Method/Form.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Billing/Method/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Comment.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Comment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Coupons.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Coupons.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Coupons/Form.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Coupons/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Customer.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Customer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Data.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Form.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Form/AbstractForm.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Form/AbstractForm.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Form/Account.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Form/Account.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Form/Address.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Form/Address.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Giftmessage.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Giftmessage.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Giftmessage/Form.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Giftmessage/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Header.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Header.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Items.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Items.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Items/Grid.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Items/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Load.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Load.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Messages.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Messages.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Newsletter.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Newsletter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Newsletter/Form.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Newsletter/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Search.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Search.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Search/Grid.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Search/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Search/Grid/Renderer/Price.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Search/Grid/Renderer/Price.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Search/Grid/Renderer/Product.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Search/Grid/Renderer/Product.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Search/Grid/Renderer/Qty.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Search/Grid/Renderer/Qty.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Shipping/Address.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Shipping/Address.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Shipping/Method.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Shipping/Method.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Shipping/Method/Form.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Shipping/Method/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/AbstractSidebar.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/AbstractSidebar.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/Cart.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/Cart.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/Compared.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/Compared.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/Pcompared.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/Pcompared.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/Pviewed.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/Pviewed.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/Reorder.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/Reorder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/Viewed.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/Viewed.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/Wishlist.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Sidebar/Wishlist.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Store.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Store.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Store/Select.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Store/Select.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/DefaultTotals.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/DefaultTotals.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/Discount.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/Discount.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/Grandtotal.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/Grandtotal.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/Shipping.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/Shipping.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/Subtotal.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/Subtotal.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/Table.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/Table.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/Tax.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Create/Totals/Tax.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/Create.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/Create.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/Create/Adjustments.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/Create/Adjustments.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/Create/Form.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/Create/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/Create/Items.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/Create/Items.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/Totals.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/Totals.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/View.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/View.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/View/Comments.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/View/Comments.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/View/Form.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/View/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/View/Items.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Creditmemo/View/Items.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Details.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Details.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/Create.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/Create.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/Create/Form.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/Create/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/Create/Items.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/Create/Items.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/Totals.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/Totals.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/View.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/View.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/View/Comments.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/View/Comments.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/View/Form.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/View/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/View/Items.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Invoice/View/Items.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Payment.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Payment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Status.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Status.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Status/Assign.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Status/Assign.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Status/Assign/Form.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Status/Assign/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Status/Edit.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Status/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Status/Edit/Form.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Status/Edit/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Status/NewStatus.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Status/NewStatus.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Status/NewStatus/Form.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Status/NewStatus/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Totalbar.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Totalbar.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Totals.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Totals.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Totals/Item.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Totals/Item.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/Totals/Tax.php b/app/code/Magento/Sales/Block/Adminhtml/Order/Totals/Tax.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/View.php b/app/code/Magento/Sales/Block/Adminhtml/Order/View.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/View/Form.php b/app/code/Magento/Sales/Block/Adminhtml/Order/View/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/View/Giftmessage.php b/app/code/Magento/Sales/Block/Adminhtml/Order/View/Giftmessage.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/View/History.php b/app/code/Magento/Sales/Block/Adminhtml/Order/View/History.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/View/Info.php b/app/code/Magento/Sales/Block/Adminhtml/Order/View/Info.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/View/Items.php b/app/code/Magento/Sales/Block/Adminhtml/Order/View/Items.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/View/Items/Renderer/DefaultRenderer.php b/app/code/Magento/Sales/Block/Adminhtml/Order/View/Items/Renderer/DefaultRenderer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/View/Messages.php b/app/code/Magento/Sales/Block/Adminhtml/Order/View/Messages.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/View/Tab/Creditmemos.php b/app/code/Magento/Sales/Block/Adminhtml/Order/View/Tab/Creditmemos.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/View/Tab/History.php b/app/code/Magento/Sales/Block/Adminhtml/Order/View/Tab/History.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/View/Tab/Info.php b/app/code/Magento/Sales/Block/Adminhtml/Order/View/Tab/Info.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/View/Tab/Invoices.php b/app/code/Magento/Sales/Block/Adminhtml/Order/View/Tab/Invoices.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/View/Tab/Shipments.php b/app/code/Magento/Sales/Block/Adminhtml/Order/View/Tab/Shipments.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/View/Tab/Transactions.php b/app/code/Magento/Sales/Block/Adminhtml/Order/View/Tab/Transactions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Order/View/Tabs.php b/app/code/Magento/Sales/Block/Adminhtml/Order/View/Tabs.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Reorder/Renderer/Action.php b/app/code/Magento/Sales/Block/Adminhtml/Reorder/Renderer/Action.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Report/Filter/Form.php b/app/code/Magento/Sales/Block/Adminhtml/Report/Filter/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Report/Filter/Form/Coupon.php b/app/code/Magento/Sales/Block/Adminhtml/Report/Filter/Form/Coupon.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Report/Filter/Form/Order.php b/app/code/Magento/Sales/Block/Adminhtml/Report/Filter/Form/Order.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Rss/Order/Grid/Link.php b/app/code/Magento/Sales/Block/Adminhtml/Rss/Order/Grid/Link.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Shipment.php b/app/code/Magento/Sales/Block/Adminhtml/Shipment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/System/Config/Form/Fieldset/Order/Statuses.php b/app/code/Magento/Sales/Block/Adminhtml/System/Config/Form/Fieldset/Order/Statuses.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Totals.php b/app/code/Magento/Sales/Block/Adminhtml/Totals.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Transactions.php b/app/code/Magento/Sales/Block/Adminhtml/Transactions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Transactions/Detail.php b/app/code/Magento/Sales/Block/Adminhtml/Transactions/Detail.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Adminhtml/Transactions/Detail/Grid.php b/app/code/Magento/Sales/Block/Adminhtml/Transactions/Detail/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Guest/Link.php b/app/code/Magento/Sales/Block/Guest/Link.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Items/AbstractItems.php b/app/code/Magento/Sales/Block/Items/AbstractItems.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Order/Comments.php b/app/code/Magento/Sales/Block/Order/Comments.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Order/Creditmemo.php b/app/code/Magento/Sales/Block/Order/Creditmemo.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Order/Creditmemo/Items.php b/app/code/Magento/Sales/Block/Order/Creditmemo/Items.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Order/Creditmemo/Totals.php b/app/code/Magento/Sales/Block/Order/Creditmemo/Totals.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Order/Email/Creditmemo/Items.php b/app/code/Magento/Sales/Block/Order/Email/Creditmemo/Items.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Order/Email/Invoice/Items.php b/app/code/Magento/Sales/Block/Order/Email/Invoice/Items.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Order/Email/Items.php b/app/code/Magento/Sales/Block/Order/Email/Items.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Order/Email/Items/DefaultItems.php b/app/code/Magento/Sales/Block/Order/Email/Items/DefaultItems.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Order/Email/Items/Order/DefaultOrder.php b/app/code/Magento/Sales/Block/Order/Email/Items/Order/DefaultOrder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Order/Email/Shipment/Items.php b/app/code/Magento/Sales/Block/Order/Email/Shipment/Items.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Order/History.php b/app/code/Magento/Sales/Block/Order/History.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Order/History/Container.php b/app/code/Magento/Sales/Block/Order/History/Container.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Order/Info.php b/app/code/Magento/Sales/Block/Order/Info.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Order/Info/Buttons.php b/app/code/Magento/Sales/Block/Order/Info/Buttons.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Order/Info/Buttons/Rss.php b/app/code/Magento/Sales/Block/Order/Info/Buttons/Rss.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Order/Invoice.php b/app/code/Magento/Sales/Block/Order/Invoice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Order/Invoice/Items.php b/app/code/Magento/Sales/Block/Order/Invoice/Items.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Order/Invoice/Totals.php b/app/code/Magento/Sales/Block/Order/Invoice/Totals.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Order/Item/Renderer/DefaultRenderer.php b/app/code/Magento/Sales/Block/Order/Item/Renderer/DefaultRenderer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Order/Items.php b/app/code/Magento/Sales/Block/Order/Items.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Order/Link.php b/app/code/Magento/Sales/Block/Order/Link.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Order/PrintOrder/Creditmemo.php b/app/code/Magento/Sales/Block/Order/PrintOrder/Creditmemo.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Order/PrintOrder/Invoice.php b/app/code/Magento/Sales/Block/Order/PrintOrder/Invoice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Order/PrintOrder/Shipment.php b/app/code/Magento/Sales/Block/Order/PrintOrder/Shipment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Order/PrintShipment.php b/app/code/Magento/Sales/Block/Order/PrintShipment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Order/Recent.php b/app/code/Magento/Sales/Block/Order/Recent.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Order/Totals.php b/app/code/Magento/Sales/Block/Order/Totals.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Order/View.php b/app/code/Magento/Sales/Block/Order/View.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Reorder/Sidebar.php b/app/code/Magento/Sales/Block/Reorder/Sidebar.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Status/Grid/Column/State.php b/app/code/Magento/Sales/Block/Status/Grid/Column/State.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Status/Grid/Column/Unassign.php b/app/code/Magento/Sales/Block/Status/Grid/Column/Unassign.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Block/Widget/Guest/Form.php b/app/code/Magento/Sales/Block/Widget/Guest/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/AbstractController/Creditmemo.php b/app/code/Magento/Sales/Controller/AbstractController/Creditmemo.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/AbstractController/Invoice.php b/app/code/Magento/Sales/Controller/AbstractController/Invoice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/AbstractController/OrderLoader.php b/app/code/Magento/Sales/Controller/AbstractController/OrderLoader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/AbstractController/OrderLoaderInterface.php b/app/code/Magento/Sales/Controller/AbstractController/OrderLoaderInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/AbstractController/OrderViewAuthorization.php b/app/code/Magento/Sales/Controller/AbstractController/OrderViewAuthorization.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/AbstractController/OrderViewAuthorizationInterface.php b/app/code/Magento/Sales/Controller/AbstractController/OrderViewAuthorizationInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/AbstractController/PrintAction.php b/app/code/Magento/Sales/Controller/AbstractController/PrintAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/AbstractController/PrintCreditmemo.php b/app/code/Magento/Sales/Controller/AbstractController/PrintCreditmemo.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/AbstractController/PrintInvoice.php b/app/code/Magento/Sales/Controller/AbstractController/PrintInvoice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/AbstractController/PrintShipment.php b/app/code/Magento/Sales/Controller/AbstractController/PrintShipment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/AbstractController/Reorder.php b/app/code/Magento/Sales/Controller/AbstractController/Reorder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/AbstractController/Shipment.php b/app/code/Magento/Sales/Controller/AbstractController/Shipment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/AbstractController/View.php b/app/code/Magento/Sales/Controller/AbstractController/View.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/AbstractCreditmemo/Email.php b/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/AbstractCreditmemo/Email.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/AbstractCreditmemo/Grid.php b/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/AbstractCreditmemo/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/AbstractCreditmemo/Index.php b/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/AbstractCreditmemo/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/AbstractCreditmemo/Pdfcreditmemos.php b/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/AbstractCreditmemo/Pdfcreditmemos.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/AbstractCreditmemo/PrintAction.php b/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/AbstractCreditmemo/PrintAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/AbstractCreditmemo/View.php b/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/AbstractCreditmemo/View.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/Email.php b/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/Email.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/Grid.php b/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/Index.php b/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/Pdfcreditmemos.php b/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/Pdfcreditmemos.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/PrintAction.php b/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/PrintAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/View.php b/app/code/Magento/Sales/Controller/Adminhtml/Creditmemo/View.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Invoice/AbstractInvoice/Email.php b/app/code/Magento/Sales/Controller/Adminhtml/Invoice/AbstractInvoice/Email.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Invoice/AbstractInvoice/Grid.php b/app/code/Magento/Sales/Controller/Adminhtml/Invoice/AbstractInvoice/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Invoice/AbstractInvoice/Index.php b/app/code/Magento/Sales/Controller/Adminhtml/Invoice/AbstractInvoice/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Invoice/AbstractInvoice/Pdfinvoices.php b/app/code/Magento/Sales/Controller/Adminhtml/Invoice/AbstractInvoice/Pdfinvoices.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Invoice/AbstractInvoice/PrintAction.php b/app/code/Magento/Sales/Controller/Adminhtml/Invoice/AbstractInvoice/PrintAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Invoice/AbstractInvoice/View.php b/app/code/Magento/Sales/Controller/Adminhtml/Invoice/AbstractInvoice/View.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Invoice/Email.php b/app/code/Magento/Sales/Controller/Adminhtml/Invoice/Email.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Invoice/Grid.php b/app/code/Magento/Sales/Controller/Adminhtml/Invoice/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Invoice/Index.php b/app/code/Magento/Sales/Controller/Adminhtml/Invoice/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Invoice/Pdfinvoices.php b/app/code/Magento/Sales/Controller/Adminhtml/Invoice/Pdfinvoices.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Invoice/PrintAction.php b/app/code/Magento/Sales/Controller/Adminhtml/Invoice/PrintAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Invoice/View.php b/app/code/Magento/Sales/Controller/Adminhtml/Invoice/View.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order.php b/app/code/Magento/Sales/Controller/Adminhtml/Order.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/AbstractMassAction.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/AbstractMassAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/AddComment.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/AddComment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Address.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Address.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/AddressSave.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/AddressSave.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Cancel.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Cancel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/CommentsHistory.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/CommentsHistory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Create.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Create.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/AddConfigured.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/AddConfigured.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/Cancel.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/Cancel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/ConfigureProductToAdd.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/ConfigureProductToAdd.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/ConfigureQuoteItems.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/ConfigureQuoteItems.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/Index.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/LoadBlock.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/LoadBlock.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/ProcessData.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/ProcessData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/Reorder.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/Reorder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/Save.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/ShowUpdateResult.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/ShowUpdateResult.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/Start.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Create/Start.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/AddComment.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/AddComment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Cancel.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Cancel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Email.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Email.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Grid.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Index.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/NewAction.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/NewAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Pdfcreditmemos.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Pdfcreditmemos.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/PrintAction.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/PrintAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Save.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Start.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/Start.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/UpdateQty.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/UpdateQty.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/View.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/View.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/VoidAction.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemo/VoidAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/CreditmemoLoader.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/CreditmemoLoader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemos.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Creditmemos.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/AddConfigured.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/AddConfigured.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/Cancel.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/Cancel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/ConfigureProductToAdd.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/ConfigureProductToAdd.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/ConfigureQuoteItems.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/ConfigureQuoteItems.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/Index.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/LoadBlock.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/LoadBlock.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/ProcessData.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/ProcessData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/Reorder.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/Reorder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/Save.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/ShowUpdateResult.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/ShowUpdateResult.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/Start.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Edit/Start.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Email.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Email.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Grid.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Hold.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Hold.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Index.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/AddComment.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/AddComment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Cancel.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Cancel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Capture.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Capture.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Email.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Email.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Grid.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Index.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/NewAction.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/NewAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Pdfinvoices.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Pdfinvoices.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/PrintAction.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/PrintAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Save.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Start.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Start.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/UpdateQty.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/UpdateQty.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/View.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/View.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/VoidAction.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/VoidAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoices.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Invoices.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/MassCancel.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/MassCancel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/MassHold.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/MassHold.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/MassUnhold.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/MassUnhold.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/PdfDocumentsMassAction.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/PdfDocumentsMassAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Pdfcreditmemos.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Pdfcreditmemos.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Pdfdocs.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Pdfdocs.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Pdfinvoices.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Pdfinvoices.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Pdfshipments.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Pdfshipments.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/ReviewPayment.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/ReviewPayment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Shipments.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Shipments.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Status.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Status.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Status/Assign.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Status/Assign.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Status/AssignPost.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Status/AssignPost.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Status/Edit.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Status/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Status/Index.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Status/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Status/NewAction.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Status/NewAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Status/Save.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Status/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Status/Unassign.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Status/Unassign.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Transactions.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Transactions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/Unhold.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/Unhold.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/View.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/View.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/View/Giftmessage.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/View/Giftmessage.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/View/Giftmessage/Save.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/View/Giftmessage/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Order/VoidPayment.php b/app/code/Magento/Sales/Controller/Adminhtml/Order/VoidPayment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Shipment/AbstractShipment/Index.php b/app/code/Magento/Sales/Controller/Adminhtml/Shipment/AbstractShipment/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Shipment/AbstractShipment/Pdfshipments.php b/app/code/Magento/Sales/Controller/Adminhtml/Shipment/AbstractShipment/Pdfshipments.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Shipment/AbstractShipment/PrintAction.php b/app/code/Magento/Sales/Controller/Adminhtml/Shipment/AbstractShipment/PrintAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Shipment/AbstractShipment/View.php b/app/code/Magento/Sales/Controller/Adminhtml/Shipment/AbstractShipment/View.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Shipment/Index.php b/app/code/Magento/Sales/Controller/Adminhtml/Shipment/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Shipment/Pdfshipments.php b/app/code/Magento/Sales/Controller/Adminhtml/Shipment/Pdfshipments.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Shipment/PrintAction.php b/app/code/Magento/Sales/Controller/Adminhtml/Shipment/PrintAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Shipment/View.php b/app/code/Magento/Sales/Controller/Adminhtml/Shipment/View.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Transactions.php b/app/code/Magento/Sales/Controller/Adminhtml/Transactions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Transactions/Fetch.php b/app/code/Magento/Sales/Controller/Adminhtml/Transactions/Fetch.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Transactions/Grid.php b/app/code/Magento/Sales/Controller/Adminhtml/Transactions/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Transactions/Index.php b/app/code/Magento/Sales/Controller/Adminhtml/Transactions/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Adminhtml/Transactions/View.php b/app/code/Magento/Sales/Controller/Adminhtml/Transactions/View.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Download/DownloadCustomOption.php b/app/code/Magento/Sales/Controller/Download/DownloadCustomOption.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Guest/Creditmemo.php b/app/code/Magento/Sales/Controller/Guest/Creditmemo.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Guest/Form.php b/app/code/Magento/Sales/Controller/Guest/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Guest/Invoice.php b/app/code/Magento/Sales/Controller/Guest/Invoice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Guest/OrderLoader.php b/app/code/Magento/Sales/Controller/Guest/OrderLoader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Guest/OrderViewAuthorization.php b/app/code/Magento/Sales/Controller/Guest/OrderViewAuthorization.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Guest/PrintAction.php b/app/code/Magento/Sales/Controller/Guest/PrintAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Guest/PrintCreditmemo.php b/app/code/Magento/Sales/Controller/Guest/PrintCreditmemo.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Guest/PrintInvoice.php b/app/code/Magento/Sales/Controller/Guest/PrintInvoice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Guest/PrintShipment.php b/app/code/Magento/Sales/Controller/Guest/PrintShipment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Guest/Reorder.php b/app/code/Magento/Sales/Controller/Guest/Reorder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Guest/Shipment.php b/app/code/Magento/Sales/Controller/Guest/Shipment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Guest/View.php b/app/code/Magento/Sales/Controller/Guest/View.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Order/Creditmemo.php b/app/code/Magento/Sales/Controller/Order/Creditmemo.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Order/History.php b/app/code/Magento/Sales/Controller/Order/History.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Order/Invoice.php b/app/code/Magento/Sales/Controller/Order/Invoice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Order/Plugin/Authentication.php b/app/code/Magento/Sales/Controller/Order/Plugin/Authentication.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Order/PrintAction.php b/app/code/Magento/Sales/Controller/Order/PrintAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Order/PrintCreditmemo.php b/app/code/Magento/Sales/Controller/Order/PrintCreditmemo.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Order/PrintInvoice.php b/app/code/Magento/Sales/Controller/Order/PrintInvoice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Order/PrintShipment.php b/app/code/Magento/Sales/Controller/Order/PrintShipment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Order/Reorder.php b/app/code/Magento/Sales/Controller/Order/Reorder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Order/Shipment.php b/app/code/Magento/Sales/Controller/Order/Shipment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/Order/View.php b/app/code/Magento/Sales/Controller/Order/View.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Controller/OrderInterface.php b/app/code/Magento/Sales/Controller/OrderInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Cron/CleanExpiredQuotes.php b/app/code/Magento/Sales/Cron/CleanExpiredQuotes.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Cron/GridAsyncInsert.php b/app/code/Magento/Sales/Cron/GridAsyncInsert.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Cron/SendEmails.php b/app/code/Magento/Sales/Cron/SendEmails.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/CustomerData/LastOrderedItems.php b/app/code/Magento/Sales/CustomerData/LastOrderedItems.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Exception/CouldNotInvoiceException.php b/app/code/Magento/Sales/Exception/CouldNotInvoiceException.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Exception/CouldNotRefundException.php b/app/code/Magento/Sales/Exception/CouldNotRefundException.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Exception/CouldNotShipException.php b/app/code/Magento/Sales/Exception/CouldNotShipException.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Exception/DocumentValidationException.php b/app/code/Magento/Sales/Exception/DocumentValidationException.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Helper/Admin.php b/app/code/Magento/Sales/Helper/Admin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Helper/Data.php b/app/code/Magento/Sales/Helper/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Helper/Guest.php b/app/code/Magento/Sales/Helper/Guest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Helper/Reorder.php b/app/code/Magento/Sales/Helper/Reorder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/LICENSE.txt b/app/code/Magento/Sales/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/LICENSE_AFL.txt b/app/code/Magento/Sales/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/AbstractModel.php b/app/code/Magento/Sales/Model/AbstractModel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/AbstractNotifier.php b/app/code/Magento/Sales/Model/AbstractNotifier.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/AdminOrder/Create.php b/app/code/Magento/Sales/Model/AdminOrder/Create.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/AdminOrder/EmailSender.php b/app/code/Magento/Sales/Model/AdminOrder/EmailSender.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/AdminOrder/Product/Quote/Initializer.php b/app/code/Magento/Sales/Model/AdminOrder/Product/Quote/Initializer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Config.php b/app/code/Magento/Sales/Model/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Config/Backend/Email/AsyncSending.php b/app/code/Magento/Sales/Model/Config/Backend/Email/AsyncSending.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Config/Backend/Grid/AsyncIndexing.php b/app/code/Magento/Sales/Model/Config/Backend/Grid/AsyncIndexing.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Config/Converter.php b/app/code/Magento/Sales/Model/Config/Converter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Config/Data.php b/app/code/Magento/Sales/Model/Config/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Config/Ordered.php b/app/code/Magento/Sales/Model/Config/Ordered.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Config/Reader.php b/app/code/Magento/Sales/Model/Config/Reader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Config/SchemaLocator.php b/app/code/Magento/Sales/Model/Config/SchemaLocator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Config/Source/Order/Status.php b/app/code/Magento/Sales/Model/Config/Source/Order/Status.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Config/Source/Order/Status/NewStatus.php b/app/code/Magento/Sales/Model/Config/Source/Order/Status/NewStatus.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Config/Source/Order/Status/Newprocessing.php b/app/code/Magento/Sales/Model/Config/Source/Order/Status/Newprocessing.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Config/Source/Order/Status/Processing.php b/app/code/Magento/Sales/Model/Config/Source/Order/Status/Processing.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ConfigInterface.php b/app/code/Magento/Sales/Model/ConfigInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Convert/Order.php b/app/code/Magento/Sales/Model/Convert/Order.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/CronJob/AggregateSalesReportBestsellersData.php b/app/code/Magento/Sales/Model/CronJob/AggregateSalesReportBestsellersData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/CronJob/AggregateSalesReportInvoicedData.php b/app/code/Magento/Sales/Model/CronJob/AggregateSalesReportInvoicedData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/CronJob/AggregateSalesReportOrderData.php b/app/code/Magento/Sales/Model/CronJob/AggregateSalesReportOrderData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/CronJob/AggregateSalesReportRefundedData.php b/app/code/Magento/Sales/Model/CronJob/AggregateSalesReportRefundedData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/CronJob/CleanExpiredOrders.php b/app/code/Magento/Sales/Model/CronJob/CleanExpiredOrders.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/CustomerGroupRetriever.php b/app/code/Magento/Sales/Model/CustomerGroupRetriever.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Download.php b/app/code/Magento/Sales/Model/Download.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/EmailSenderHandler.php b/app/code/Magento/Sales/Model/EmailSenderHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/EntityInterface.php b/app/code/Magento/Sales/Model/EntityInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/EntityStorage.php b/app/code/Magento/Sales/Model/EntityStorage.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Grid/Child/CollectionUpdater.php b/app/code/Magento/Sales/Model/Grid/Child/CollectionUpdater.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Grid/CollectionUpdater.php b/app/code/Magento/Sales/Model/Grid/CollectionUpdater.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/GridAsyncInsert.php b/app/code/Magento/Sales/Model/GridAsyncInsert.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Increment.php b/app/code/Magento/Sales/Model/Increment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/InvoiceOrder.php b/app/code/Magento/Sales/Model/InvoiceOrder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order.php b/app/code/Magento/Sales/Model/Order.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Address.php b/app/code/Magento/Sales/Model/Order/Address.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Address/Renderer.php b/app/code/Magento/Sales/Model/Order/Address/Renderer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Address/Validator.php b/app/code/Magento/Sales/Model/Order/Address/Validator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/AddressRepository.php b/app/code/Magento/Sales/Model/Order/AddressRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Admin/Item.php b/app/code/Magento/Sales/Model/Order/Admin/Item.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Config.php b/app/code/Magento/Sales/Model/Order/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo.php b/app/code/Magento/Sales/Model/Order/Creditmemo.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/Comment.php b/app/code/Magento/Sales/Model/Order/Creditmemo/Comment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/Comment/Validator.php b/app/code/Magento/Sales/Model/Order/Creditmemo/Comment/Validator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/CommentCreation.php b/app/code/Magento/Sales/Model/Order/Creditmemo/CommentCreation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/CommentRepository.php b/app/code/Magento/Sales/Model/Order/Creditmemo/CommentRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/Config.php b/app/code/Magento/Sales/Model/Order/Creditmemo/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/CreationArguments.php b/app/code/Magento/Sales/Model/Order/Creditmemo/CreationArguments.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/CreditmemoValidator.php b/app/code/Magento/Sales/Model/Order/Creditmemo/CreditmemoValidator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/CreditmemoValidatorInterface.php b/app/code/Magento/Sales/Model/Order/Creditmemo/CreditmemoValidatorInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/Item.php b/app/code/Magento/Sales/Model/Order/Creditmemo/Item.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/Item/Validation/CreationQuantityValidator.php b/app/code/Magento/Sales/Model/Order/Creditmemo/Item/Validation/CreationQuantityValidator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/ItemCreation.php b/app/code/Magento/Sales/Model/Order/Creditmemo/ItemCreation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/ItemCreationValidator.php b/app/code/Magento/Sales/Model/Order/Creditmemo/ItemCreationValidator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/ItemCreationValidatorInterface.php b/app/code/Magento/Sales/Model/Order/Creditmemo/ItemCreationValidatorInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/ItemRepository.php b/app/code/Magento/Sales/Model/Order/Creditmemo/ItemRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/Notifier.php b/app/code/Magento/Sales/Model/Order/Creditmemo/Notifier.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/NotifierInterface.php b/app/code/Magento/Sales/Model/Order/Creditmemo/NotifierInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/RefundOperation.php b/app/code/Magento/Sales/Model/Order/Creditmemo/RefundOperation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/Sender/EmailSender.php b/app/code/Magento/Sales/Model/Order/Creditmemo/Sender/EmailSender.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/SenderInterface.php b/app/code/Magento/Sales/Model/Order/Creditmemo/SenderInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/Total/AbstractTotal.php b/app/code/Magento/Sales/Model/Order/Creditmemo/Total/AbstractTotal.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/Total/Cost.php b/app/code/Magento/Sales/Model/Order/Creditmemo/Total/Cost.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/Total/Discount.php b/app/code/Magento/Sales/Model/Order/Creditmemo/Total/Discount.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/Total/Grand.php b/app/code/Magento/Sales/Model/Order/Creditmemo/Total/Grand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/Total/Shipping.php b/app/code/Magento/Sales/Model/Order/Creditmemo/Total/Shipping.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/Total/Subtotal.php b/app/code/Magento/Sales/Model/Order/Creditmemo/Total/Subtotal.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/Total/Tax.php b/app/code/Magento/Sales/Model/Order/Creditmemo/Total/Tax.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/Validation/QuantityValidator.php b/app/code/Magento/Sales/Model/Order/Creditmemo/Validation/QuantityValidator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Creditmemo/Validation/TotalsValidator.php b/app/code/Magento/Sales/Model/Order/Creditmemo/Validation/TotalsValidator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/CreditmemoDocumentFactory.php b/app/code/Magento/Sales/Model/Order/CreditmemoDocumentFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/CreditmemoFactory.php b/app/code/Magento/Sales/Model/Order/CreditmemoFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/CreditmemoNotifier.php b/app/code/Magento/Sales/Model/Order/CreditmemoNotifier.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/CreditmemoRepository.php b/app/code/Magento/Sales/Model/Order/CreditmemoRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/CustomerManagement.php b/app/code/Magento/Sales/Model/Order/CustomerManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Email/Container/Container.php b/app/code/Magento/Sales/Model/Order/Email/Container/Container.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Email/Container/CreditmemoCommentIdentity.php b/app/code/Magento/Sales/Model/Order/Email/Container/CreditmemoCommentIdentity.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Email/Container/CreditmemoIdentity.php b/app/code/Magento/Sales/Model/Order/Email/Container/CreditmemoIdentity.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Email/Container/IdentityInterface.php b/app/code/Magento/Sales/Model/Order/Email/Container/IdentityInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Email/Container/InvoiceCommentIdentity.php b/app/code/Magento/Sales/Model/Order/Email/Container/InvoiceCommentIdentity.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Email/Container/InvoiceIdentity.php b/app/code/Magento/Sales/Model/Order/Email/Container/InvoiceIdentity.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Email/Container/OrderCommentIdentity.php b/app/code/Magento/Sales/Model/Order/Email/Container/OrderCommentIdentity.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Email/Container/OrderIdentity.php b/app/code/Magento/Sales/Model/Order/Email/Container/OrderIdentity.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Email/Container/ShipmentCommentIdentity.php b/app/code/Magento/Sales/Model/Order/Email/Container/ShipmentCommentIdentity.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Email/Container/ShipmentIdentity.php b/app/code/Magento/Sales/Model/Order/Email/Container/ShipmentIdentity.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Email/Container/Template.php b/app/code/Magento/Sales/Model/Order/Email/Container/Template.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Email/NotifySender.php b/app/code/Magento/Sales/Model/Order/Email/NotifySender.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Email/Sender.php b/app/code/Magento/Sales/Model/Order/Email/Sender.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Email/Sender/CreditmemoCommentSender.php b/app/code/Magento/Sales/Model/Order/Email/Sender/CreditmemoCommentSender.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Email/Sender/CreditmemoSender.php b/app/code/Magento/Sales/Model/Order/Email/Sender/CreditmemoSender.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Email/Sender/InvoiceCommentSender.php b/app/code/Magento/Sales/Model/Order/Email/Sender/InvoiceCommentSender.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Email/Sender/InvoiceSender.php b/app/code/Magento/Sales/Model/Order/Email/Sender/InvoiceSender.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Email/Sender/OrderCommentSender.php b/app/code/Magento/Sales/Model/Order/Email/Sender/OrderCommentSender.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Email/Sender/OrderSender.php b/app/code/Magento/Sales/Model/Order/Email/Sender/OrderSender.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Email/Sender/ShipmentCommentSender.php b/app/code/Magento/Sales/Model/Order/Email/Sender/ShipmentCommentSender.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Email/Sender/ShipmentSender.php b/app/code/Magento/Sales/Model/Order/Email/Sender/ShipmentSender.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Email/SenderBuilder.php b/app/code/Magento/Sales/Model/Order/Email/SenderBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Grid/Massaction/ItemsUpdater.php b/app/code/Magento/Sales/Model/Order/Grid/Massaction/ItemsUpdater.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Grid/Row/UrlGenerator.php b/app/code/Magento/Sales/Model/Order/Grid/Row/UrlGenerator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Invoice.php b/app/code/Magento/Sales/Model/Order/Invoice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Invoice/Comment.php b/app/code/Magento/Sales/Model/Order/Invoice/Comment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Invoice/Comment/Validator.php b/app/code/Magento/Sales/Model/Order/Invoice/Comment/Validator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Invoice/CommentCreation.php b/app/code/Magento/Sales/Model/Order/Invoice/CommentCreation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Invoice/CommentRepository.php b/app/code/Magento/Sales/Model/Order/Invoice/CommentRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Invoice/Config.php b/app/code/Magento/Sales/Model/Order/Invoice/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Invoice/CreationArguments.php b/app/code/Magento/Sales/Model/Order/Invoice/CreationArguments.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Invoice/Grid/Row/UrlGenerator.php b/app/code/Magento/Sales/Model/Order/Invoice/Grid/Row/UrlGenerator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Invoice/InvoiceValidator.php b/app/code/Magento/Sales/Model/Order/Invoice/InvoiceValidator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Invoice/InvoiceValidatorInterface.php b/app/code/Magento/Sales/Model/Order/Invoice/InvoiceValidatorInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Invoice/Item.php b/app/code/Magento/Sales/Model/Order/Invoice/Item.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Invoice/ItemCreation.php b/app/code/Magento/Sales/Model/Order/Invoice/ItemCreation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Invoice/ItemRepository.php b/app/code/Magento/Sales/Model/Order/Invoice/ItemRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Invoice/Notifier.php b/app/code/Magento/Sales/Model/Order/Invoice/Notifier.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Invoice/NotifierInterface.php b/app/code/Magento/Sales/Model/Order/Invoice/NotifierInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Invoice/PayOperation.php b/app/code/Magento/Sales/Model/Order/Invoice/PayOperation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Invoice/Plugin/AddressUpdate.php b/app/code/Magento/Sales/Model/Order/Invoice/Plugin/AddressUpdate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Invoice/Sender/EmailSender.php b/app/code/Magento/Sales/Model/Order/Invoice/Sender/EmailSender.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Invoice/SenderInterface.php b/app/code/Magento/Sales/Model/Order/Invoice/SenderInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Invoice/Total/AbstractTotal.php b/app/code/Magento/Sales/Model/Order/Invoice/Total/AbstractTotal.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Invoice/Total/Cost.php b/app/code/Magento/Sales/Model/Order/Invoice/Total/Cost.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Invoice/Total/Discount.php b/app/code/Magento/Sales/Model/Order/Invoice/Total/Discount.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Invoice/Total/Grand.php b/app/code/Magento/Sales/Model/Order/Invoice/Total/Grand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Invoice/Total/Shipping.php b/app/code/Magento/Sales/Model/Order/Invoice/Total/Shipping.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Invoice/Total/Subtotal.php b/app/code/Magento/Sales/Model/Order/Invoice/Total/Subtotal.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Invoice/Total/Tax.php b/app/code/Magento/Sales/Model/Order/Invoice/Total/Tax.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Invoice/Validation/CanRefund.php b/app/code/Magento/Sales/Model/Order/Invoice/Validation/CanRefund.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/InvoiceDocumentFactory.php b/app/code/Magento/Sales/Model/Order/InvoiceDocumentFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/InvoiceNotifier.php b/app/code/Magento/Sales/Model/Order/InvoiceNotifier.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/InvoiceQuantityValidator.php b/app/code/Magento/Sales/Model/Order/InvoiceQuantityValidator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/InvoiceRepository.php b/app/code/Magento/Sales/Model/Order/InvoiceRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/InvoiceStatisticInterface.php b/app/code/Magento/Sales/Model/Order/InvoiceStatisticInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Item.php b/app/code/Magento/Sales/Model/Order/Item.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/ItemRepository.php b/app/code/Magento/Sales/Model/Order/ItemRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/OrderStateResolverInterface.php b/app/code/Magento/Sales/Model/Order/OrderStateResolverInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/OrderValidator.php b/app/code/Magento/Sales/Model/Order/OrderValidator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/OrderValidatorInterface.php b/app/code/Magento/Sales/Model/Order/OrderValidatorInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Payment.php b/app/code/Magento/Sales/Model/Order/Payment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Payment/Info.php b/app/code/Magento/Sales/Model/Order/Payment/Info.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Payment/Operations/AbstractOperation.php b/app/code/Magento/Sales/Model/Order/Payment/Operations/AbstractOperation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Payment/Operations/AuthorizeOperation.php b/app/code/Magento/Sales/Model/Order/Payment/Operations/AuthorizeOperation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Payment/Operations/CaptureOperation.php b/app/code/Magento/Sales/Model/Order/Payment/Operations/CaptureOperation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Payment/Operations/OrderOperation.php b/app/code/Magento/Sales/Model/Order/Payment/Operations/OrderOperation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Payment/Operations/RegisterCaptureNotificationOperation.php b/app/code/Magento/Sales/Model/Order/Payment/Operations/RegisterCaptureNotificationOperation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Payment/Processor.php b/app/code/Magento/Sales/Model/Order/Payment/Processor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Payment/Repository.php b/app/code/Magento/Sales/Model/Order/Payment/Repository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Payment/State/AuthorizeCommand.php b/app/code/Magento/Sales/Model/Order/Payment/State/AuthorizeCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Payment/State/CaptureCommand.php b/app/code/Magento/Sales/Model/Order/Payment/State/CaptureCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Payment/State/CommandInterface.php b/app/code/Magento/Sales/Model/Order/Payment/State/CommandInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Payment/State/OrderCommand.php b/app/code/Magento/Sales/Model/Order/Payment/State/OrderCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Payment/State/RegisterCaptureNotificationCommand.php b/app/code/Magento/Sales/Model/Order/Payment/State/RegisterCaptureNotificationCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Payment/Transaction.php b/app/code/Magento/Sales/Model/Order/Payment/Transaction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Payment/Transaction/Builder.php b/app/code/Magento/Sales/Model/Order/Payment/Transaction/Builder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Payment/Transaction/BuilderInterface.php b/app/code/Magento/Sales/Model/Order/Payment/Transaction/BuilderInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Payment/Transaction/Manager.php b/app/code/Magento/Sales/Model/Order/Payment/Transaction/Manager.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Payment/Transaction/ManagerInterface.php b/app/code/Magento/Sales/Model/Order/Payment/Transaction/ManagerInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Payment/Transaction/Repository.php b/app/code/Magento/Sales/Model/Order/Payment/Transaction/Repository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/PaymentAdapter.php b/app/code/Magento/Sales/Model/Order/PaymentAdapter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/PaymentAdapterInterface.php b/app/code/Magento/Sales/Model/Order/PaymentAdapterInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Pdf/AbstractPdf.php b/app/code/Magento/Sales/Model/Order/Pdf/AbstractPdf.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Pdf/Config.php b/app/code/Magento/Sales/Model/Order/Pdf/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Pdf/Config/Converter.php b/app/code/Magento/Sales/Model/Order/Pdf/Config/Converter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Pdf/Config/Reader.php b/app/code/Magento/Sales/Model/Order/Pdf/Config/Reader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Pdf/Config/SchemaLocator.php b/app/code/Magento/Sales/Model/Order/Pdf/Config/SchemaLocator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Pdf/Creditmemo.php b/app/code/Magento/Sales/Model/Order/Pdf/Creditmemo.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Pdf/Invoice.php b/app/code/Magento/Sales/Model/Order/Pdf/Invoice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Pdf/Items/AbstractItems.php b/app/code/Magento/Sales/Model/Order/Pdf/Items/AbstractItems.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Pdf/Items/Creditmemo/DefaultCreditmemo.php b/app/code/Magento/Sales/Model/Order/Pdf/Items/Creditmemo/DefaultCreditmemo.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Pdf/Items/Invoice/DefaultInvoice.php b/app/code/Magento/Sales/Model/Order/Pdf/Items/Invoice/DefaultInvoice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Pdf/Items/Shipment/DefaultShipment.php b/app/code/Magento/Sales/Model/Order/Pdf/Items/Shipment/DefaultShipment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Pdf/ItemsFactory.php b/app/code/Magento/Sales/Model/Order/Pdf/ItemsFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Pdf/Shipment.php b/app/code/Magento/Sales/Model/Order/Pdf/Shipment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Pdf/Total/DefaultTotal.php b/app/code/Magento/Sales/Model/Order/Pdf/Total/DefaultTotal.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Pdf/Total/Factory.php b/app/code/Magento/Sales/Model/Order/Pdf/Total/Factory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/RefundAdapter.php b/app/code/Magento/Sales/Model/Order/RefundAdapter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/RefundAdapterInterface.php b/app/code/Magento/Sales/Model/Order/RefundAdapterInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Reorder/OrderedProductAvailabilityChecker.php b/app/code/Magento/Sales/Model/Order/Reorder/OrderedProductAvailabilityChecker.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Reorder/OrderedProductAvailabilityCheckerInterface.php b/app/code/Magento/Sales/Model/Order/Reorder/OrderedProductAvailabilityCheckerInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Reorder/UnavailableProductsProvider.php b/app/code/Magento/Sales/Model/Order/Reorder/UnavailableProductsProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Shipment.php b/app/code/Magento/Sales/Model/Order/Shipment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Shipment/Comment.php b/app/code/Magento/Sales/Model/Order/Shipment/Comment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Shipment/Comment/Validator.php b/app/code/Magento/Sales/Model/Order/Shipment/Comment/Validator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Shipment/CommentCreation.php b/app/code/Magento/Sales/Model/Order/Shipment/CommentCreation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Shipment/CommentRepository.php b/app/code/Magento/Sales/Model/Order/Shipment/CommentRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Shipment/CreationArguments.php b/app/code/Magento/Sales/Model/Order/Shipment/CreationArguments.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Shipment/Item.php b/app/code/Magento/Sales/Model/Order/Shipment/Item.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Shipment/ItemCreation.php b/app/code/Magento/Sales/Model/Order/Shipment/ItemCreation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Shipment/ItemRepository.php b/app/code/Magento/Sales/Model/Order/Shipment/ItemRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Shipment/Notifier.php b/app/code/Magento/Sales/Model/Order/Shipment/Notifier.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Shipment/NotifierInterface.php b/app/code/Magento/Sales/Model/Order/Shipment/NotifierInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Shipment/OrderRegistrar.php b/app/code/Magento/Sales/Model/Order/Shipment/OrderRegistrar.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Shipment/OrderRegistrarInterface.php b/app/code/Magento/Sales/Model/Order/Shipment/OrderRegistrarInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Shipment/Package.php b/app/code/Magento/Sales/Model/Order/Shipment/Package.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Shipment/PackageCreation.php b/app/code/Magento/Sales/Model/Order/Shipment/PackageCreation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Shipment/Sender/EmailSender.php b/app/code/Magento/Sales/Model/Order/Shipment/Sender/EmailSender.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Shipment/SenderInterface.php b/app/code/Magento/Sales/Model/Order/Shipment/SenderInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Shipment/ShipmentValidator.php b/app/code/Magento/Sales/Model/Order/Shipment/ShipmentValidator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Shipment/ShipmentValidatorInterface.php b/app/code/Magento/Sales/Model/Order/Shipment/ShipmentValidatorInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Shipment/Track.php b/app/code/Magento/Sales/Model/Order/Shipment/Track.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Shipment/Track/Validator.php b/app/code/Magento/Sales/Model/Order/Shipment/Track/Validator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Shipment/TrackCreation.php b/app/code/Magento/Sales/Model/Order/Shipment/TrackCreation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Shipment/TrackRepository.php b/app/code/Magento/Sales/Model/Order/Shipment/TrackRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Shipment/Validation/QuantityValidator.php b/app/code/Magento/Sales/Model/Order/Shipment/Validation/QuantityValidator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Shipment/Validation/TrackValidator.php b/app/code/Magento/Sales/Model/Order/Shipment/Validation/TrackValidator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/ShipmentDocumentFactory.php b/app/code/Magento/Sales/Model/Order/ShipmentDocumentFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/ShipmentFactory.php b/app/code/Magento/Sales/Model/Order/ShipmentFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/ShipmentRepository.php b/app/code/Magento/Sales/Model/Order/ShipmentRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Shipping.php b/app/code/Magento/Sales/Model/Order/Shipping.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/ShippingAssignment.php b/app/code/Magento/Sales/Model/Order/ShippingAssignment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/ShippingAssignmentBuilder.php b/app/code/Magento/Sales/Model/Order/ShippingAssignmentBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/ShippingBuilder.php b/app/code/Magento/Sales/Model/Order/ShippingBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/ShippingTotal.php b/app/code/Magento/Sales/Model/Order/ShippingTotal.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/StateResolver.php b/app/code/Magento/Sales/Model/Order/StateResolver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Status.php b/app/code/Magento/Sales/Model/Order/Status.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Status/History.php b/app/code/Magento/Sales/Model/Order/Status/History.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Status/History/Validator.php b/app/code/Magento/Sales/Model/Order/Status/History/Validator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Status/HistoryRepository.php b/app/code/Magento/Sales/Model/Order/Status/HistoryRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/StatusResolver.php b/app/code/Magento/Sales/Model/Order/StatusResolver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Tax.php b/app/code/Magento/Sales/Model/Order/Tax.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Tax/Item.php b/app/code/Magento/Sales/Model/Order/Tax/Item.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Total.php b/app/code/Magento/Sales/Model/Order/Total.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Total/AbstractTotal.php b/app/code/Magento/Sales/Model/Order/Total/AbstractTotal.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Total/Config/Base.php b/app/code/Magento/Sales/Model/Order/Total/Config/Base.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/TotalFactory.php b/app/code/Magento/Sales/Model/Order/TotalFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Validation/CanInvoice.php b/app/code/Magento/Sales/Model/Order/Validation/CanInvoice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Validation/CanRefund.php b/app/code/Magento/Sales/Model/Order/Validation/CanRefund.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Validation/CanShip.php b/app/code/Magento/Sales/Model/Order/Validation/CanShip.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Validation/InvoiceOrder.php b/app/code/Magento/Sales/Model/Order/Validation/InvoiceOrder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Validation/InvoiceOrderInterface.php b/app/code/Magento/Sales/Model/Order/Validation/InvoiceOrderInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Validation/RefundInvoice.php b/app/code/Magento/Sales/Model/Order/Validation/RefundInvoice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Validation/RefundInvoiceInterface.php b/app/code/Magento/Sales/Model/Order/Validation/RefundInvoiceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Validation/RefundOrder.php b/app/code/Magento/Sales/Model/Order/Validation/RefundOrder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Validation/RefundOrderInterface.php b/app/code/Magento/Sales/Model/Order/Validation/RefundOrderInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Validation/ShipOrder.php b/app/code/Magento/Sales/Model/Order/Validation/ShipOrder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Order/Validation/ShipOrderInterface.php b/app/code/Magento/Sales/Model/Order/Validation/ShipOrderInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/OrderIncrementIdChecker.php b/app/code/Magento/Sales/Model/OrderIncrementIdChecker.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/OrderNotifier.php b/app/code/Magento/Sales/Model/OrderNotifier.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/OrderRepository.php b/app/code/Magento/Sales/Model/OrderRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/RefundInvoice.php b/app/code/Magento/Sales/Model/RefundInvoice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/RefundOrder.php b/app/code/Magento/Sales/Model/RefundOrder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/AbstractGrid.php b/app/code/Magento/Sales/Model/ResourceModel/AbstractGrid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Attribute.php b/app/code/Magento/Sales/Model/ResourceModel/Attribute.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Collection/AbstractCollection.php b/app/code/Magento/Sales/Model/ResourceModel/Collection/AbstractCollection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/EntityAbstract.php b/app/code/Magento/Sales/Model/ResourceModel/EntityAbstract.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Grid.php b/app/code/Magento/Sales/Model/ResourceModel/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Grid/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Grid/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/GridInterface.php b/app/code/Magento/Sales/Model/ResourceModel/GridInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/GridPool.php b/app/code/Magento/Sales/Model/ResourceModel/GridPool.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Helper.php b/app/code/Magento/Sales/Model/ResourceModel/Helper.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/HelperInterface.php b/app/code/Magento/Sales/Model/ResourceModel/HelperInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Metadata.php b/app/code/Magento/Sales/Model/ResourceModel/Metadata.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order.php b/app/code/Magento/Sales/Model/ResourceModel/Order.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Address.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Address.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Address/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Address/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Attribute/Backend/Billing.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Attribute/Backend/Billing.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Attribute/Backend/Child.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Attribute/Backend/Child.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Attribute/Backend/Shipping.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Attribute/Backend/Shipping.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Collection/AbstractCollection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Collection/AbstractCollection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Collection/Factory.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Collection/Factory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/CollectionFactory.php b/app/code/Magento/Sales/Model/ResourceModel/Order/CollectionFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/CollectionFactoryInterface.php b/app/code/Magento/Sales/Model/ResourceModel/Order/CollectionFactoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Comment/Collection/AbstractCollection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Comment/Collection/AbstractCollection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Attribute/Backend/Child.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Attribute/Backend/Child.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Comment.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Comment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Comment/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Comment/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Grid/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Grid/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Grid/StatusList.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Grid/StatusList.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Item.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Item.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Item/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Item/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Order/Grid/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Order/Grid/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Relation.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Relation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Relation/Refund.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Creditmemo/Relation/Refund.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Customer/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Customer/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Grid/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Grid/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Handler/Address.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Handler/Address.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Handler/State.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Handler/State.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Attribute/Backend/Child.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Attribute/Backend/Child.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Attribute/Backend/Item.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Attribute/Backend/Item.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Attribute/Backend/Order.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Attribute/Backend/Order.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Comment.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Comment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Comment/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Comment/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Grid/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Grid/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Grid/StatusList.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Grid/StatusList.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Item.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Item.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Item/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Item/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Orders/Grid/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Orders/Grid/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Relation.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Invoice/Relation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Item.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Item.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Item/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Item/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Payment.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Payment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Payment/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Payment/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Payment/Transaction.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Payment/Transaction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Payment/Transaction/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Payment/Transaction/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Plugin/Authorization.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Plugin/Authorization.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Relation.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Relation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Rss/OrderStatus.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Rss/OrderStatus.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Attribute/Backend/Child.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Attribute/Backend/Child.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Comment.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Comment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Comment/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Comment/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Grid/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Grid/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Item.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Item.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Item/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Item/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Order/Grid/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Order/Grid/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Relation.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Relation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Track.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Track.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Track/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Shipment/Track/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Status.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Status.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Status/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Status/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Status/History.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Status/History.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Status/History/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Status/History/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Tax.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Tax.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Tax/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Tax/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Order/Tax/Item.php b/app/code/Magento/Sales/Model/ResourceModel/Order/Tax/Item.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Provider/NotSyncedDataProvider.php b/app/code/Magento/Sales/Model/ResourceModel/Provider/NotSyncedDataProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Provider/NotSyncedDataProviderInterface.php b/app/code/Magento/Sales/Model/ResourceModel/Provider/NotSyncedDataProviderInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Provider/UpdatedAtListProvider.php b/app/code/Magento/Sales/Model/ResourceModel/Provider/UpdatedAtListProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Provider/UpdatedIdListProvider.php b/app/code/Magento/Sales/Model/ResourceModel/Provider/UpdatedIdListProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Report.php b/app/code/Magento/Sales/Model/ResourceModel/Report.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Report/AbstractReport.php b/app/code/Magento/Sales/Model/ResourceModel/Report/AbstractReport.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Report/Bestsellers.php b/app/code/Magento/Sales/Model/ResourceModel/Report/Bestsellers.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Report/Bestsellers/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Report/Bestsellers/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Report/Collection/AbstractCollection.php b/app/code/Magento/Sales/Model/ResourceModel/Report/Collection/AbstractCollection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Report/Invoiced.php b/app/code/Magento/Sales/Model/ResourceModel/Report/Invoiced.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Report/Invoiced/Collection/Invoiced.php b/app/code/Magento/Sales/Model/ResourceModel/Report/Invoiced/Collection/Invoiced.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Report/Invoiced/Collection/Order.php b/app/code/Magento/Sales/Model/ResourceModel/Report/Invoiced/Collection/Order.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Report/Order.php b/app/code/Magento/Sales/Model/ResourceModel/Report/Order.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Report/Order/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Report/Order/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Report/Order/Createdat.php b/app/code/Magento/Sales/Model/ResourceModel/Report/Order/Createdat.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Report/Order/Updatedat.php b/app/code/Magento/Sales/Model/ResourceModel/Report/Order/Updatedat.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Report/Order/Updatedat/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Report/Order/Updatedat/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Report/Refunded.php b/app/code/Magento/Sales/Model/ResourceModel/Report/Refunded.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Report/Refunded/Collection/Order.php b/app/code/Magento/Sales/Model/ResourceModel/Report/Refunded/Collection/Order.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Report/Refunded/Collection/Refunded.php b/app/code/Magento/Sales/Model/ResourceModel/Report/Refunded/Collection/Refunded.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Report/Shipping.php b/app/code/Magento/Sales/Model/ResourceModel/Report/Shipping.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Report/Shipping/Collection/Order.php b/app/code/Magento/Sales/Model/ResourceModel/Report/Shipping/Collection/Order.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Report/Shipping/Collection/Shipment.php b/app/code/Magento/Sales/Model/ResourceModel/Report/Shipping/Collection/Shipment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Sale/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Sale/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Status/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Status/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Transaction/Grid/Collection.php b/app/code/Magento/Sales/Model/ResourceModel/Transaction/Grid/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ResourceModel/Transaction/Grid/TypeList.php b/app/code/Magento/Sales/Model/ResourceModel/Transaction/Grid/TypeList.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Rss/NewOrder.php b/app/code/Magento/Sales/Model/Rss/NewOrder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Rss/OrderStatus.php b/app/code/Magento/Sales/Model/Rss/OrderStatus.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Service/CreditmemoService.php b/app/code/Magento/Sales/Model/Service/CreditmemoService.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Service/InvoiceService.php b/app/code/Magento/Sales/Model/Service/InvoiceService.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Service/OrderService.php b/app/code/Magento/Sales/Model/Service/OrderService.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Service/ShipmentService.php b/app/code/Magento/Sales/Model/Service/ShipmentService.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ShipOrder.php b/app/code/Magento/Sales/Model/ShipOrder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Spi/CreditmemoCommentResourceInterface.php b/app/code/Magento/Sales/Model/Spi/CreditmemoCommentResourceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Spi/CreditmemoItemResourceInterface.php b/app/code/Magento/Sales/Model/Spi/CreditmemoItemResourceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Spi/CreditmemoResourceInterface.php b/app/code/Magento/Sales/Model/Spi/CreditmemoResourceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Spi/InvoiceCommentResourceInterface.php b/app/code/Magento/Sales/Model/Spi/InvoiceCommentResourceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Spi/InvoiceItemResourceInterface.php b/app/code/Magento/Sales/Model/Spi/InvoiceItemResourceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Spi/InvoiceResourceInterface.php b/app/code/Magento/Sales/Model/Spi/InvoiceResourceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Spi/OrderAddressResourceInterface.php b/app/code/Magento/Sales/Model/Spi/OrderAddressResourceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Spi/OrderItemResourceInterface.php b/app/code/Magento/Sales/Model/Spi/OrderItemResourceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Spi/OrderPaymentResourceInterface.php b/app/code/Magento/Sales/Model/Spi/OrderPaymentResourceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Spi/OrderResourceInterface.php b/app/code/Magento/Sales/Model/Spi/OrderResourceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Spi/OrderStatusHistoryResourceInterface.php b/app/code/Magento/Sales/Model/Spi/OrderStatusHistoryResourceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Spi/ShipmentCommentResourceInterface.php b/app/code/Magento/Sales/Model/Spi/ShipmentCommentResourceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Spi/ShipmentItemResourceInterface.php b/app/code/Magento/Sales/Model/Spi/ShipmentItemResourceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Spi/ShipmentResourceInterface.php b/app/code/Magento/Sales/Model/Spi/ShipmentResourceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Spi/ShipmentTrackResourceInterface.php b/app/code/Magento/Sales/Model/Spi/ShipmentTrackResourceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Spi/TransactionResourceInterface.php b/app/code/Magento/Sales/Model/Spi/TransactionResourceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Status/ListFactory.php b/app/code/Magento/Sales/Model/Status/ListFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Status/ListStatus.php b/app/code/Magento/Sales/Model/Status/ListStatus.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/Validator.php b/app/code/Magento/Sales/Model/Validator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ValidatorInterface.php b/app/code/Magento/Sales/Model/ValidatorInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ValidatorResult.php b/app/code/Magento/Sales/Model/ValidatorResult.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ValidatorResultInterface.php b/app/code/Magento/Sales/Model/ValidatorResultInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Model/ValidatorResultMerger.php b/app/code/Magento/Sales/Model/ValidatorResultMerger.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Observer/Backend/CatalogPriceRule.php b/app/code/Magento/Sales/Observer/Backend/CatalogPriceRule.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Observer/Backend/CatalogProductSaveAfterObserver.php b/app/code/Magento/Sales/Observer/Backend/CatalogProductSaveAfterObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Observer/Backend/SubtractQtyFromQuotesObserver.php b/app/code/Magento/Sales/Observer/Backend/SubtractQtyFromQuotesObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Observer/Frontend/AddVatRequestParamsOrderComment.php b/app/code/Magento/Sales/Observer/Frontend/AddVatRequestParamsOrderComment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Observer/Frontend/RestoreCustomerGroupId.php b/app/code/Magento/Sales/Observer/Frontend/RestoreCustomerGroupId.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Observer/GridAsyncInsertObserver.php b/app/code/Magento/Sales/Observer/GridAsyncInsertObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Observer/GridProcessAddressChange.php b/app/code/Magento/Sales/Observer/GridProcessAddressChange.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Observer/GridSyncInsertObserver.php b/app/code/Magento/Sales/Observer/GridSyncInsertObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Observer/GridSyncRemoveObserver.php b/app/code/Magento/Sales/Observer/GridSyncRemoveObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Observer/Virtual/SendEmails.php b/app/code/Magento/Sales/Observer/Virtual/SendEmails.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/README.md b/app/code/Magento/Sales/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Setup/InstallData.php b/app/code/Magento/Sales/Setup/InstallData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Setup/InstallSchema.php b/app/code/Magento/Sales/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Setup/SalesOrderPaymentDataConverter.php b/app/code/Magento/Sales/Setup/SalesOrderPaymentDataConverter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Setup/SalesSetup.php b/app/code/Magento/Sales/Setup/SalesSetup.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Setup/SerializedDataConverter.php b/app/code/Magento/Sales/Setup/SerializedDataConverter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Setup/UpgradeData.php b/app/code/Magento/Sales/Setup/UpgradeData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Setup/UpgradeSchema.php b/app/code/Magento/Sales/Setup/UpgradeSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Items/AbstractItemsTest.php b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Items/AbstractItemsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Items/AbstractTest.php b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Items/AbstractTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Items/Column/DefaultColumnTest.php b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Items/Column/DefaultColumnTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Address/FormTest.php b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Address/FormTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Comments/ViewTest.php b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Comments/ViewTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Create/AbstractCreateTest.php b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Create/AbstractCreateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Create/CustomerTest.php b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Create/CustomerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Create/Items/GridTest.php b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Create/Items/GridTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Create/Search/Grid/Renderer/QtyTest.php b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Create/Search/Grid/Renderer/QtyTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Create/Sidebar/AbstractSidebarTest.php b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Create/Sidebar/AbstractSidebarTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Create/TotalsTest.php b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Create/TotalsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Creditmemo/Create/ItemsTest.php b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Creditmemo/Create/ItemsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Invoice/ViewTest.php b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Invoice/ViewTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Status/Assign/FormTest.php b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Status/Assign/FormTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Totals/TaxTest.php b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/Totals/TaxTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/View/GiftmessageTest.php b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/View/GiftmessageTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/View/HistoryTest.php b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/View/HistoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/View/InfoTest.php b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/View/InfoTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/View/Tab/HistoryTest.php b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/View/Tab/HistoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/View/Tab/Stub/OnlineMethod.php b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/View/Tab/Stub/OnlineMethod.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/View/Tab/TransactionsTest.php b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Order/View/Tab/TransactionsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Rss/Order/Grid/LinkTest.php b/app/code/Magento/Sales/Test/Unit/Block/Adminhtml/Rss/Order/Grid/LinkTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Block/Guest/LinkTest.php b/app/code/Magento/Sales/Test/Unit/Block/Guest/LinkTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Block/Items/AbstractTest.php b/app/code/Magento/Sales/Test/Unit/Block/Items/AbstractTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Block/Order/Create/TotalsTest.php b/app/code/Magento/Sales/Test/Unit/Block/Order/Create/TotalsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Block/Order/Email/Items/DefaultItemsTest.php b/app/code/Magento/Sales/Test/Unit/Block/Order/Email/Items/DefaultItemsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Block/Order/Email/Items/Order/DefaultOrderTest.php b/app/code/Magento/Sales/Test/Unit/Block/Order/Email/Items/Order/DefaultOrderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Block/Order/HistoryTest.php b/app/code/Magento/Sales/Test/Unit/Block/Order/HistoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Block/Order/Info/Buttons/RssTest.php b/app/code/Magento/Sales/Test/Unit/Block/Order/Info/Buttons/RssTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Block/Order/Item/Renderer/DefaultRendererTest.php b/app/code/Magento/Sales/Test/Unit/Block/Order/Item/Renderer/DefaultRendererTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Block/Order/PrintShipmentTest.php b/app/code/Magento/Sales/Test/Unit/Block/Order/PrintShipmentTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Block/Order/RecentTest.php b/app/code/Magento/Sales/Test/Unit/Block/Order/RecentTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Block/Reorder/SidebarTest.php b/app/code/Magento/Sales/Test/Unit/Block/Reorder/SidebarTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Block/Status/Grid/Column/StateTest.php b/app/code/Magento/Sales/Test/Unit/Block/Status/Grid/Column/StateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Creditmemo/AbstractCreditmemo/EmailTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Creditmemo/AbstractCreditmemo/EmailTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Invoice/AbstractInvoice/EmailTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Invoice/AbstractInvoice/EmailTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/CancelTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/CancelTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Create/ProcessDataTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Create/ProcessDataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Create/ReorderTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Create/ReorderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/AddCommentTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/AddCommentTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/CancelTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/CancelTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/NewActionTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/NewActionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/PrintActionTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/PrintActionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/SaveTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/SaveTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/UpdateQtyTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/UpdateQtyTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/ViewTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/ViewTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/VoidActionTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Creditmemo/VoidActionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/CreditmemoLoaderTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/CreditmemoLoaderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/EmailTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/EmailTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/HoldTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/HoldTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/AddCommentTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/AddCommentTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/CancelTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/CancelTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/CaptureTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/CaptureTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/NewActionTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/NewActionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/PrintActionTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/PrintActionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/SaveTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/SaveTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/UpdateQtyTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/UpdateQtyTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/ViewTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/ViewTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/VoidActionTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/Invoice/VoidActionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/MassCancelTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/MassCancelTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/MassHoldTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/MassHoldTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/MassUnholdTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/MassUnholdTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/ReviewPaymentTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/ReviewPaymentTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/UnholdTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/UnholdTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/ViewTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/Order/ViewTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/PdfDocumentsMassActionTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Adminhtml/PdfDocumentsMassActionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Download/DownloadCustomOptionTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Download/DownloadCustomOptionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Controller/Guest/ViewTest.php b/app/code/Magento/Sales/Test/Unit/Controller/Guest/ViewTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Cron/CleanExpiredQuotesTest.php b/app/code/Magento/Sales/Test/Unit/Cron/CleanExpiredQuotesTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/CustomerData/LastOrderedItemsTest.php b/app/code/Magento/Sales/Test/Unit/CustomerData/LastOrderedItemsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Helper/AdminTest.php b/app/code/Magento/Sales/Test/Unit/Helper/AdminTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Helper/DataTest.php b/app/code/Magento/Sales/Test/Unit/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Helper/GuestTest.php b/app/code/Magento/Sales/Test/Unit/Helper/GuestTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Helper/ReorderTest.php b/app/code/Magento/Sales/Test/Unit/Helper/ReorderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/AbstractModelTest.php b/app/code/Magento/Sales/Test/Unit/Model/AbstractModelTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/AdminOrder/CreateTest.php b/app/code/Magento/Sales/Test/Unit/Model/AdminOrder/CreateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/AdminOrder/EmailSenderTest.php b/app/code/Magento/Sales/Test/Unit/Model/AdminOrder/EmailSenderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/AdminOrder/Product/Quote/InitializerTest.php b/app/code/Magento/Sales/Test/Unit/Model/AdminOrder/Product/Quote/InitializerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Config/Backend/Email/AsyncSendingTest.php b/app/code/Magento/Sales/Test/Unit/Model/Config/Backend/Email/AsyncSendingTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Config/Backend/Grid/AsyncIndexingTest.php b/app/code/Magento/Sales/Test/Unit/Model/Config/Backend/Grid/AsyncIndexingTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Config/ConverterTest.php b/app/code/Magento/Sales/Test/Unit/Model/Config/ConverterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Config/DataTest.php b/app/code/Magento/Sales/Test/Unit/Model/Config/DataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Config/ReaderTest.php b/app/code/Magento/Sales/Test/Unit/Model/Config/ReaderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Config/SchemaLocatorTest.php b/app/code/Magento/Sales/Test/Unit/Model/Config/SchemaLocatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Config/Source/Order/StatusTest.php b/app/code/Magento/Sales/Test/Unit/Model/Config/Source/Order/StatusTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Config/XsdTest.php b/app/code/Magento/Sales/Test/Unit/Model/Config/XsdTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Config/_files/core_totals_config.php b/app/code/Magento/Sales/Test/Unit/Model/Config/_files/core_totals_config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Config/_files/custom_totals_config.php b/app/code/Magento/Sales/Test/Unit/Model/Config/_files/custom_totals_config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Config/_files/sales_invalid.xml b/app/code/Magento/Sales/Test/Unit/Model/Config/_files/sales_invalid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Config/_files/sales_invalid_duplicates.xml b/app/code/Magento/Sales/Test/Unit/Model/Config/_files/sales_invalid_duplicates.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Config/_files/sales_invalid_root_node.xml b/app/code/Magento/Sales/Test/Unit/Model/Config/_files/sales_invalid_root_node.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Config/_files/sales_invalid_scope.xml b/app/code/Magento/Sales/Test/Unit/Model/Config/_files/sales_invalid_scope.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Config/_files/sales_invalid_without_attributes.xml b/app/code/Magento/Sales/Test/Unit/Model/Config/_files/sales_invalid_without_attributes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Config/_files/sales_valid.xml b/app/code/Magento/Sales/Test/Unit/Model/Config/_files/sales_valid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/ConfigTest.php b/app/code/Magento/Sales/Test/Unit/Model/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/CronJob/AggregateSalesReportBestsellersDataTest.php b/app/code/Magento/Sales/Test/Unit/Model/CronJob/AggregateSalesReportBestsellersDataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/CronJob/AggregateSalesReportInvoicedDataTest.php b/app/code/Magento/Sales/Test/Unit/Model/CronJob/AggregateSalesReportInvoicedDataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/CronJob/AggregateSalesReportOrderDataTest.php b/app/code/Magento/Sales/Test/Unit/Model/CronJob/AggregateSalesReportOrderDataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/CronJob/AggregateSalesReportRefundedDataTest.php b/app/code/Magento/Sales/Test/Unit/Model/CronJob/AggregateSalesReportRefundedDataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/CronJob/CleanExpiredOrdersTest.php b/app/code/Magento/Sales/Test/Unit/Model/CronJob/CleanExpiredOrdersTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/CustomerGroupRetrieverTest.php b/app/code/Magento/Sales/Test/Unit/Model/CustomerGroupRetrieverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/DownloadTest.php b/app/code/Magento/Sales/Test/Unit/Model/DownloadTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/EmailSenderHandlerTest.php b/app/code/Magento/Sales/Test/Unit/Model/EmailSenderHandlerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Grid/Child/CollectionUpdaterTest.php b/app/code/Magento/Sales/Test/Unit/Model/Grid/Child/CollectionUpdaterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Grid/CollectionUpdaterTest.php b/app/code/Magento/Sales/Test/Unit/Model/Grid/CollectionUpdaterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/GridAsyncInsertTest.php b/app/code/Magento/Sales/Test/Unit/Model/GridAsyncInsertTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/IncrementTest.php b/app/code/Magento/Sales/Test/Unit/Model/IncrementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/InvoiceOrderTest.php b/app/code/Magento/Sales/Test/Unit/Model/InvoiceOrderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/InvoiceRepositoryTest.php b/app/code/Magento/Sales/Test/Unit/Model/InvoiceRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Address/RendererTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Address/RendererTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Address/ValidatorTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Address/ValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/AddressRepositoryTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/AddressRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/AddressTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/AddressTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Admin/ItemTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Admin/ItemTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/ConfigTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Comment/ValidatorTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Comment/ValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/CommentRepositoryTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/CommentRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Item/Validation/CreateQuantityValidatorTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Item/Validation/CreateQuantityValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/ItemTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/ItemTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/RefundOperationTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/RefundOperationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Sender/EmailSenderTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Sender/EmailSenderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Total/CostTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Total/CostTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Total/DiscountTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Total/DiscountTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Total/ShippingTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Total/ShippingTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Total/SubtotalTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Total/SubtotalTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Total/TaxTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Total/TaxTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Validation/QuantityValidatorTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Creditmemo/Validation/QuantityValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/CreditmemoDocumentFactoryTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/CreditmemoDocumentFactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/CreditmemoNotifierTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/CreditmemoNotifierTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/CreditmemoRepositoryTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/CreditmemoRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/CreditmemoTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/CreditmemoTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/CustomerManagementTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/CustomerManagementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/CreditmemoCommentIdentityTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/CreditmemoCommentIdentityTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/CreditmemoIdentityTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/CreditmemoIdentityTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/InvoiceCommentIdentityTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/InvoiceCommentIdentityTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/InvoiceIdentityTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/InvoiceIdentityTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/OrderCommentIdentityTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/OrderCommentIdentityTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/OrderIdentityTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/OrderIdentityTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/ShipmentCommentIdentityTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/ShipmentCommentIdentityTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/ShipmentIdentityTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/ShipmentIdentityTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/TemplateTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Container/TemplateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/AbstractSenderTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/AbstractSenderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/CreditmemoCommentSenderTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/CreditmemoCommentSenderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/CreditmemoSenderTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/CreditmemoSenderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/InvoiceCommentSenderTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/InvoiceCommentSenderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/InvoiceSenderTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/InvoiceSenderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/OrderCommentSenderTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/OrderCommentSenderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/OrderSenderTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/OrderSenderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/ShipmentCommentSenderTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/ShipmentCommentSenderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/ShipmentSenderTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Sender/ShipmentSenderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/SenderBuilderTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/SenderBuilderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Stub/TransportInterfaceMock.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Email/Stub/TransportInterfaceMock.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Grid/Massaction/ItemsUpdaterTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Grid/Massaction/ItemsUpdaterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Grid/Row/UrlGeneratorTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Grid/Row/UrlGeneratorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/Comment/ValidatorTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/Comment/ValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/CommentRepositoryTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/CommentRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/Grid/Row/UrlGeneratorTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/Grid/Row/UrlGeneratorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/ItemTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/ItemTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/PayOperationTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/PayOperationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/Plugin/AddressUpdateTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/Plugin/AddressUpdateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/Sender/EmailSenderTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/Sender/EmailSenderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/Total/ShippingTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/Total/ShippingTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/Total/TaxTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/Total/TaxTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/Validation/CanRefundTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Invoice/Validation/CanRefundTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/InvoiceDocumentFactoryTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/InvoiceDocumentFactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/InvoiceNotifierTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/InvoiceNotifierTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/InvoiceQuantityValidatorTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/InvoiceQuantityValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/InvoiceTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/InvoiceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/ItemRepositoryTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/ItemRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/ItemTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/ItemTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/InfoTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/InfoTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/Operations/CaptureOperationTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/Operations/CaptureOperationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/RepositoryTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/RepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/State/AuthorizeCommandTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/State/AuthorizeCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/State/CaptureCommandTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/State/CaptureCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/State/OrderCommandTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/State/OrderCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/State/RegisterCaptureNotificationCommandTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/State/RegisterCaptureNotificationCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/Transaction/BuilderTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/Transaction/BuilderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/Transaction/ManagerTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/Transaction/ManagerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/Transaction/RepositoryTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/Transaction/RepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/TransactionTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Payment/TransactionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/PaymentAdapterTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/PaymentAdapterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/PaymentTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/PaymentTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/AbstractTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/AbstractTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/ConverterTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/ConverterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/ReaderTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/ReaderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/SchemaLocatorTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/SchemaLocatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/XsdTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/XsdTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/_files/pdf_merged.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/_files/pdf_merged.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/_files/pdf_merged.xml b/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/_files/pdf_merged.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/_files/pdf_one.xml b/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/_files/pdf_one.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/_files/pdf_two.xml b/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Config/_files/pdf_two.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/ConfigTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/InvoiceTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/InvoiceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Total/FactoryTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Pdf/Total/FactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/RefundAdapterTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/RefundAdapterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Reorder/OrderProductAvailabilityCheckerTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Reorder/OrderProductAvailabilityCheckerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Reorder/UnavailableProductsProviderTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Reorder/UnavailableProductsProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/Comment/ValidatorTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/Comment/ValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/CommentRepositoryTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/CommentRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/OrderRegistrarTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/OrderRegistrarTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/Sender/EmailSenderTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/Sender/EmailSenderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/Track/ValidatorTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/Track/ValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/TrackTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/TrackTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/Validation/QuantityValidatorTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/Validation/QuantityValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/Validation/TrackValidatorTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Shipment/Validation/TrackValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/ShipmentDocumentFactoryTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/ShipmentDocumentFactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/ShipmentFactoryTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/ShipmentFactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/ShipmentRepositoryTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/ShipmentRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/ShipmentTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/ShipmentTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/StateResolverTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/StateResolverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Status/History/ValidatorTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Status/History/ValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Status/HistoryTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Status/HistoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/StatusResolverTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/StatusResolverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/StatusTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/StatusTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Total/Config/BaseTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Total/Config/BaseTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Validation/CanInvoiceTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Validation/CanInvoiceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Validation/CanRefundTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Validation/CanRefundTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Order/Validation/CanShipTest.php b/app/code/Magento/Sales/Test/Unit/Model/Order/Validation/CanShipTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/OrderIncrementIdCheckerTest.php b/app/code/Magento/Sales/Test/Unit/Model/OrderIncrementIdCheckerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/OrderNotifierTest.php b/app/code/Magento/Sales/Test/Unit/Model/OrderNotifierTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/OrderRepositoryTest.php b/app/code/Magento/Sales/Test/Unit/Model/OrderRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/OrderTest.php b/app/code/Magento/Sales/Test/Unit/Model/OrderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/RefundInvoiceTest.php b/app/code/Magento/Sales/Test/Unit/Model/RefundInvoiceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/RefundOrderTest.php b/app/code/Magento/Sales/Test/Unit/Model/RefundOrderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/AttributeTest.php b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/AttributeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/GridPoolTest.php b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/GridPoolTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/HelperTest.php b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/HelperTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/AddressTest.php b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/AddressTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Creditmemo/CommentTest.php b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Creditmemo/CommentTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Creditmemo/Relation/RefundTest.php b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Creditmemo/Relation/RefundTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Creditmemo/RelationTest.php b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Creditmemo/RelationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Handler/AddressTest.php b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Handler/AddressTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Handler/StateTest.php b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Handler/StateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Invoice/CommentTest.php b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Invoice/CommentTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Invoice/RelationTest.php b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Invoice/RelationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Plugin/AuthorizationTest.php b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Plugin/AuthorizationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/RelationTest.php b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/RelationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Shipment/CommentTest.php b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Shipment/CommentTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Shipment/RelationTest.php b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Shipment/RelationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Shipment/TrackTest.php b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Shipment/TrackTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Status/History/CollectionTest.php b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Status/History/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Status/HistoryTest.php b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Status/HistoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/StatusTest.php b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/StatusTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Tax/ItemTest.php b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Order/Tax/ItemTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/OrderTest.php b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/OrderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Provider/NotSyncedDataProviderTest.php b/app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Provider/NotSyncedDataProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Rss/NewOrderTest.php b/app/code/Magento/Sales/Test/Unit/Model/Rss/NewOrderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Rss/OrderStatusTest.php b/app/code/Magento/Sales/Test/Unit/Model/Rss/OrderStatusTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Service/CreditmemoServiceTest.php b/app/code/Magento/Sales/Test/Unit/Model/Service/CreditmemoServiceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Service/InvoiceServiceTest.php b/app/code/Magento/Sales/Test/Unit/Model/Service/InvoiceServiceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Service/OrderServiceTest.php b/app/code/Magento/Sales/Test/Unit/Model/Service/OrderServiceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Service/ShipmentServiceTest.php b/app/code/Magento/Sales/Test/Unit/Model/Service/ShipmentServiceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/ShipOrderTest.php b/app/code/Magento/Sales/Test/Unit/Model/ShipOrderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Model/Status/ListStatusTest.php b/app/code/Magento/Sales/Test/Unit/Model/Status/ListStatusTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Observer/Backend/CatalogPriceRuleTest.php b/app/code/Magento/Sales/Test/Unit/Observer/Backend/CatalogPriceRuleTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Observer/Backend/CatalogProductSaveAfterObserverTest.php b/app/code/Magento/Sales/Test/Unit/Observer/Backend/CatalogProductSaveAfterObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Observer/Backend/SubtractQtyFromQuotesObserverTest.php b/app/code/Magento/Sales/Test/Unit/Observer/Backend/SubtractQtyFromQuotesObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Observer/Frontend/AddVatRequestParamsOrderCommentTest.php b/app/code/Magento/Sales/Test/Unit/Observer/Frontend/AddVatRequestParamsOrderCommentTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Observer/Frontend/RestoreCustomerGroupIdTest.php b/app/code/Magento/Sales/Test/Unit/Observer/Frontend/RestoreCustomerGroupIdTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Observer/GridProcessAddressChangeTest.php b/app/code/Magento/Sales/Test/Unit/Observer/GridProcessAddressChangeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Observer/GridSyncInsertObserverTest.php b/app/code/Magento/Sales/Test/Unit/Observer/GridSyncInsertObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Observer/GridSyncRemoveObserverTest.php b/app/code/Magento/Sales/Test/Unit/Observer/GridSyncRemoveObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Setup/SalesOrderPaymentDataConverterTest.php b/app/code/Magento/Sales/Test/Unit/Setup/SalesOrderPaymentDataConverterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Setup/SerializedDataConverterTest.php b/app/code/Magento/Sales/Test/Unit/Setup/SerializedDataConverterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Ui/Component/DataProvider/DocumentTest.php b/app/code/Magento/Sales/Test/Unit/Ui/Component/DataProvider/DocumentTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/AddressTest.php b/app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/AddressTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/CustomerGroupTest.php b/app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/CustomerGroupTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/PaymentMethodTest.php b/app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/PaymentMethodTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/PriceTest.php b/app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/PriceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/PurchasedPriceTest.php b/app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/PurchasedPriceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/Status/OptionsTest.php b/app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/Status/OptionsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/StatusTest.php b/app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/StatusTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/ViewActionTest.php b/app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/ViewActionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Ui/Component/Control/PdfAction.php b/app/code/Magento/Sales/Ui/Component/Control/PdfAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Ui/Component/DataProvider/Document.php b/app/code/Magento/Sales/Ui/Component/DataProvider/Document.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Ui/Component/Listing/Column/Address.php b/app/code/Magento/Sales/Ui/Component/Listing/Column/Address.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Ui/Component/Listing/Column/Creditmemo/State.php b/app/code/Magento/Sales/Ui/Component/Listing/Column/Creditmemo/State.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Ui/Component/Listing/Column/Creditmemo/State/Options.php b/app/code/Magento/Sales/Ui/Component/Listing/Column/Creditmemo/State/Options.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Ui/Component/Listing/Column/CustomerGroup.php b/app/code/Magento/Sales/Ui/Component/Listing/Column/CustomerGroup.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Ui/Component/Listing/Column/Invoice/State.php b/app/code/Magento/Sales/Ui/Component/Listing/Column/Invoice/State.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Ui/Component/Listing/Column/Invoice/State/Options.php b/app/code/Magento/Sales/Ui/Component/Listing/Column/Invoice/State/Options.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Ui/Component/Listing/Column/PaymentMethod.php b/app/code/Magento/Sales/Ui/Component/Listing/Column/PaymentMethod.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Ui/Component/Listing/Column/Price.php b/app/code/Magento/Sales/Ui/Component/Listing/Column/Price.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Ui/Component/Listing/Column/PurchasedPrice.php b/app/code/Magento/Sales/Ui/Component/Listing/Column/PurchasedPrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Ui/Component/Listing/Column/Status.php b/app/code/Magento/Sales/Ui/Component/Listing/Column/Status.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Ui/Component/Listing/Column/Status/Options.php b/app/code/Magento/Sales/Ui/Component/Listing/Column/Status/Options.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/Ui/Component/Listing/Column/ViewAction.php b/app/code/Magento/Sales/Ui/Component/Listing/Column/ViewAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/composer.json b/app/code/Magento/Sales/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/etc/acl.xml b/app/code/Magento/Sales/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/etc/adminhtml/di.xml b/app/code/Magento/Sales/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/etc/adminhtml/events.xml b/app/code/Magento/Sales/etc/adminhtml/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/etc/adminhtml/menu.xml b/app/code/Magento/Sales/etc/adminhtml/menu.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/etc/adminhtml/routes.xml b/app/code/Magento/Sales/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/etc/adminhtml/system.xml b/app/code/Magento/Sales/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/etc/catalog_attributes.xml b/app/code/Magento/Sales/etc/catalog_attributes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/etc/config.xml b/app/code/Magento/Sales/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/etc/crontab.xml b/app/code/Magento/Sales/etc/crontab.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/etc/di.xml b/app/code/Magento/Sales/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/etc/email_templates.xml b/app/code/Magento/Sales/etc/email_templates.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/etc/events.xml b/app/code/Magento/Sales/etc/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/etc/extension_attributes.xml b/app/code/Magento/Sales/etc/extension_attributes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/etc/fieldset.xml b/app/code/Magento/Sales/etc/fieldset.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/etc/frontend/di.xml b/app/code/Magento/Sales/etc/frontend/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/etc/frontend/events.xml b/app/code/Magento/Sales/etc/frontend/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/etc/frontend/page_types.xml b/app/code/Magento/Sales/etc/frontend/page_types.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/etc/frontend/routes.xml b/app/code/Magento/Sales/etc/frontend/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/etc/frontend/sections.xml b/app/code/Magento/Sales/etc/frontend/sections.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/etc/module.xml b/app/code/Magento/Sales/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/etc/pdf.xml b/app/code/Magento/Sales/etc/pdf.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/etc/pdf.xsd b/app/code/Magento/Sales/etc/pdf.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/etc/pdf_file.xsd b/app/code/Magento/Sales/etc/pdf_file.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/etc/resources.xml b/app/code/Magento/Sales/etc/resources.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/etc/sales.xml b/app/code/Magento/Sales/etc/sales.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/etc/sales.xsd b/app/code/Magento/Sales/etc/sales.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/etc/webapi.xml b/app/code/Magento/Sales/etc/webapi.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/etc/webapi_rest/di.xml b/app/code/Magento/Sales/etc/webapi_rest/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/etc/webapi_rest/events.xml b/app/code/Magento/Sales/etc/webapi_rest/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/etc/webapi_soap/di.xml b/app/code/Magento/Sales/etc/webapi_soap/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/etc/webapi_soap/events.xml b/app/code/Magento/Sales/etc/webapi_soap/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/etc/widget.xml b/app/code/Magento/Sales/etc/widget.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/i18n/en_US.csv b/app/code/Magento/Sales/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/registration.php b/app/code/Magento/Sales/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_creditmemo_exportcsv.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_creditmemo_exportcsv.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_creditmemo_exportexcel.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_creditmemo_exportexcel.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_creditmemo_grid.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_creditmemo_grid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_creditmemo_index.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_creditmemo_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_creditmemo_item_price.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_creditmemo_item_price.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_invoice_exportcsv.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_invoice_exportcsv.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_invoice_exportexcel.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_invoice_exportexcel.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_invoice_grid.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_invoice_grid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_invoice_index.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_invoice_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_invoice_item_price.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_invoice_item_price.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_addcomment.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_addcomment.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_address.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_address.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_customer_block.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_customer_block.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_index.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_item_price.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_item_price.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_billing_address.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_billing_address.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_billing_method.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_billing_method.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_comment.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_comment.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_customer_grid.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_customer_grid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_data.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_data.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_form_account.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_form_account.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_giftmessage.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_giftmessage.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_header.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_header.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_items.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_items.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_json.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_json.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_message.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_message.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_newsletter.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_newsletter.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_plain.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_plain.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_search.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_search.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_search_grid.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_search_grid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_shipping_address.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_shipping_address.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_shipping_method.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_shipping_method.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar_cart.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar_cart.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar_compared.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar_compared.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar_pcompared.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar_pcompared.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar_pviewed.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar_pviewed.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar_reorder.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar_reorder.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar_viewed.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar_viewed.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar_wishlist.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_sidebar_wishlist.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_totals.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_create_load_block_totals.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_creditmemo_addcomment.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_creditmemo_addcomment.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_creditmemo_grid_block.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_creditmemo_grid_block.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_creditmemo_new.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_creditmemo_new.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_creditmemo_updateqty.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_creditmemo_updateqty.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_creditmemo_view.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_creditmemo_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_creditmemos.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_creditmemos.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_edit_index.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_edit_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_exportcsv.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_exportcsv.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_exportexcel.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_exportexcel.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_grid.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_grid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_index.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_invoice_addcomment.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_invoice_addcomment.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_invoice_grid_block.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_invoice_grid_block.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_invoice_new.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_invoice_new.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_invoice_updateqty.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_invoice_updateqty.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_invoice_view.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_invoice_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_invoices.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_invoices.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_item_price.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_item_price.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_shipment_grid_block.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_shipment_grid_block.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_shipments.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_shipments.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_status_assign.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_status_assign.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_status_edit.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_status_edit.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_status_index.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_status_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_status_new.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_status_new.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_transactions.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_transactions.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_transactions_grid_block.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_transactions_grid_block.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_order_view.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_order_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_shipment_exportcsv.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_shipment_exportcsv.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_shipment_exportexcel.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_shipment_exportexcel.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_shipment_index.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_shipment_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_transaction_child_block.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_transaction_child_block.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_transactions_grid.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_transactions_grid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_transactions_grid_block.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_transactions_grid_block.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_transactions_index.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_transactions_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/layout/sales_transactions_view.xml b/app/code/Magento/Sales/view/adminhtml/layout/sales_transactions_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/requirejs-config.js b/app/code/Magento/Sales/view/adminhtml/requirejs-config.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/items/column/name.phtml b/app/code/Magento/Sales/view/adminhtml/templates/items/column/name.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/items/column/qty.phtml b/app/code/Magento/Sales/view/adminhtml/templates/items/column/qty.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/items/price/row.phtml b/app/code/Magento/Sales/view/adminhtml/templates/items/price/row.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/items/price/total.phtml b/app/code/Magento/Sales/view/adminhtml/templates/items/price/total.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/items/price/unit.phtml b/app/code/Magento/Sales/view/adminhtml/templates/items/price/unit.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/items/renderer/default.phtml b/app/code/Magento/Sales/view/adminhtml/templates/items/renderer/default.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/address/form.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/address/form.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/comments/view.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/comments/view.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/abstract.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/abstract.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/billing/method/form.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/billing/method/form.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/comment.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/comment.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/coupons/form.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/coupons/form.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/data.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/data.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/form.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/form.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/form/account.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/form/account.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/form/address.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/form/address.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/giftmessage.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/giftmessage.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/items.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/items.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/items/grid.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/items/grid.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/items/price/row.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/items/price/row.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/items/price/total.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/items/price/total.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/items/price/unit.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/items/price/unit.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/js.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/js.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/newsletter/form.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/newsletter/form.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/shipping/method/form.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/shipping/method/form.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/sidebar.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/sidebar.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/sidebar/items.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/sidebar/items.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/store/select.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/store/select.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/totals.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/totals.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/totals/default.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/totals/default.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/totals/grandtotal.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/totals/grandtotal.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/totals/shipping.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/totals/shipping.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/create/totals/subtotal.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/create/totals/subtotal.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/creditmemo/create/form.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/creditmemo/create/form.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/creditmemo/create/items.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/creditmemo/create/items.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/creditmemo/create/items/renderer/default.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/creditmemo/create/items/renderer/default.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/creditmemo/create/totals/adjustments.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/creditmemo/create/totals/adjustments.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/creditmemo/view/form.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/creditmemo/view/form.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/creditmemo/view/items.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/creditmemo/view/items.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/creditmemo/view/items/renderer/default.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/creditmemo/view/items/renderer/default.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/details.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/details.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/giftoptions.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/giftoptions.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/invoice/create/form.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/invoice/create/form.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/invoice/create/items.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/invoice/create/items.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/invoice/create/items/renderer/default.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/invoice/create/items/renderer/default.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/invoice/view/form.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/invoice/view/form.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/invoice/view/items.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/invoice/view/items.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/invoice/view/items/renderer/default.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/invoice/view/items/renderer/default.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/totalbar.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/totalbar.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/totals.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/totals.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/totals/discount.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/totals/discount.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/totals/due.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/totals/due.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/totals/footer.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/totals/footer.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/totals/grand.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/totals/grand.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/totals/item.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/totals/item.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/totals/main.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/totals/main.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/totals/paid.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/totals/paid.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/totals/refunded.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/totals/refunded.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/totals/shipping.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/totals/shipping.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/totals/tax.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/totals/tax.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/view/form.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/view/form.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/view/giftmessage.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/view/giftmessage.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/view/history.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/view/history.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/view/info.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/view/info.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/view/items.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/view/items.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/view/items/renderer/default.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/view/items/renderer/default.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/view/tab/history.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/view/tab/history.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/order/view/tab/info.phtml b/app/code/Magento/Sales/view/adminhtml/templates/order/view/tab/info.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/page/js/components.phtml b/app/code/Magento/Sales/view/adminhtml/templates/page/js/components.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/rss/order/grid/link.phtml b/app/code/Magento/Sales/view/adminhtml/templates/rss/order/grid/link.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/templates/transactions/detail.phtml b/app/code/Magento/Sales/view/adminhtml/templates/transactions/detail.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/ui_component/sales_order_creditmemo_grid.xml b/app/code/Magento/Sales/view/adminhtml/ui_component/sales_order_creditmemo_grid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/ui_component/sales_order_grid.xml b/app/code/Magento/Sales/view/adminhtml/ui_component/sales_order_grid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/ui_component/sales_order_invoice_grid.xml b/app/code/Magento/Sales/view/adminhtml/ui_component/sales_order_invoice_grid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/ui_component/sales_order_shipment_grid.xml b/app/code/Magento/Sales/view/adminhtml/ui_component/sales_order_shipment_grid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/ui_component/sales_order_view_creditmemo_grid.xml b/app/code/Magento/Sales/view/adminhtml/ui_component/sales_order_view_creditmemo_grid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/ui_component/sales_order_view_invoice_grid.xml b/app/code/Magento/Sales/view/adminhtml/ui_component/sales_order_view_invoice_grid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/ui_component/sales_order_view_shipment_grid.xml b/app/code/Magento/Sales/view/adminhtml/ui_component/sales_order_view_shipment_grid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/web/js/bootstrap/order-create-index.js b/app/code/Magento/Sales/view/adminhtml/web/js/bootstrap/order-create-index.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/web/js/bootstrap/order-post-action.js b/app/code/Magento/Sales/view/adminhtml/web/js/bootstrap/order-post-action.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/web/order/create/form.js b/app/code/Magento/Sales/view/adminhtml/web/order/create/form.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/web/order/create/giftmessage.js b/app/code/Magento/Sales/view/adminhtml/web/order/create/giftmessage.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/web/order/create/scripts.js b/app/code/Magento/Sales/view/adminhtml/web/order/create/scripts.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/web/order/edit/address/form.js b/app/code/Magento/Sales/view/adminhtml/web/order/edit/address/form.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/web/order/edit/message.js b/app/code/Magento/Sales/view/adminhtml/web/order/edit/message.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/web/order/giftoptions_tooltip.js b/app/code/Magento/Sales/view/adminhtml/web/order/giftoptions_tooltip.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/adminhtml/web/order/view/post-wrapper.js b/app/code/Magento/Sales/view/adminhtml/web/order/view/post-wrapper.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/base/ui_component/customer_form.xml b/app/code/Magento/Sales/view/base/ui_component/customer_form.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/email/creditmemo_new.html b/app/code/Magento/Sales/view/frontend/email/creditmemo_new.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/email/creditmemo_new_guest.html b/app/code/Magento/Sales/view/frontend/email/creditmemo_new_guest.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/email/creditmemo_update.html b/app/code/Magento/Sales/view/frontend/email/creditmemo_update.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/email/creditmemo_update_guest.html b/app/code/Magento/Sales/view/frontend/email/creditmemo_update_guest.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/email/invoice_new.html b/app/code/Magento/Sales/view/frontend/email/invoice_new.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/email/invoice_new_guest.html b/app/code/Magento/Sales/view/frontend/email/invoice_new_guest.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/email/invoice_update.html b/app/code/Magento/Sales/view/frontend/email/invoice_update.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/email/invoice_update_guest.html b/app/code/Magento/Sales/view/frontend/email/invoice_update_guest.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/email/order_new.html b/app/code/Magento/Sales/view/frontend/email/order_new.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/email/order_new_guest.html b/app/code/Magento/Sales/view/frontend/email/order_new_guest.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/email/order_update.html b/app/code/Magento/Sales/view/frontend/email/order_update.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/email/order_update_guest.html b/app/code/Magento/Sales/view/frontend/email/order_update_guest.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/email/shipment_new.html b/app/code/Magento/Sales/view/frontend/email/shipment_new.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/email/shipment_new_guest.html b/app/code/Magento/Sales/view/frontend/email/shipment_new_guest.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/email/shipment_update.html b/app/code/Magento/Sales/view/frontend/email/shipment_update.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/email/shipment_update_guest.html b/app/code/Magento/Sales/view/frontend/email/shipment_update_guest.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/layout/checkout_index_index.xml b/app/code/Magento/Sales/view/frontend/layout/checkout_index_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/layout/customer_account.xml b/app/code/Magento/Sales/view/frontend/layout/customer_account.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/layout/customer_account_index.xml b/app/code/Magento/Sales/view/frontend/layout/customer_account_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/layout/default.xml b/app/code/Magento/Sales/view/frontend/layout/default.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_email_item_price.xml b/app/code/Magento/Sales/view/frontend/layout/sales_email_item_price.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_email_order_creditmemo_items.xml b/app/code/Magento/Sales/view/frontend/layout/sales_email_order_creditmemo_items.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_email_order_creditmemo_renderers.xml b/app/code/Magento/Sales/view/frontend/layout/sales_email_order_creditmemo_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_email_order_invoice_items.xml b/app/code/Magento/Sales/view/frontend/layout/sales_email_order_invoice_items.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_email_order_invoice_renderers.xml b/app/code/Magento/Sales/view/frontend/layout/sales_email_order_invoice_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_email_order_items.xml b/app/code/Magento/Sales/view/frontend/layout/sales_email_order_items.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_email_order_renderers.xml b/app/code/Magento/Sales/view/frontend/layout/sales_email_order_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_email_order_shipment_items.xml b/app/code/Magento/Sales/view/frontend/layout/sales_email_order_shipment_items.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_email_order_shipment_renderers.xml b/app/code/Magento/Sales/view/frontend/layout/sales_email_order_shipment_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_guest_creditmemo.xml b/app/code/Magento/Sales/view/frontend/layout/sales_guest_creditmemo.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_guest_form.xml b/app/code/Magento/Sales/view/frontend/layout/sales_guest_form.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_guest_invoice.xml b/app/code/Magento/Sales/view/frontend/layout/sales_guest_invoice.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_guest_print.xml b/app/code/Magento/Sales/view/frontend/layout/sales_guest_print.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_guest_printcreditmemo.xml b/app/code/Magento/Sales/view/frontend/layout/sales_guest_printcreditmemo.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_guest_printinvoice.xml b/app/code/Magento/Sales/view/frontend/layout/sales_guest_printinvoice.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_guest_printshipment.xml b/app/code/Magento/Sales/view/frontend/layout/sales_guest_printshipment.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_guest_reorder.xml b/app/code/Magento/Sales/view/frontend/layout/sales_guest_reorder.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_guest_shipment.xml b/app/code/Magento/Sales/view/frontend/layout/sales_guest_shipment.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_guest_view.xml b/app/code/Magento/Sales/view/frontend/layout/sales_guest_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_order_creditmemo.xml b/app/code/Magento/Sales/view/frontend/layout/sales_order_creditmemo.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_order_creditmemo_renderers.xml b/app/code/Magento/Sales/view/frontend/layout/sales_order_creditmemo_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_order_guest_info_links.xml b/app/code/Magento/Sales/view/frontend/layout/sales_order_guest_info_links.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_order_history.xml b/app/code/Magento/Sales/view/frontend/layout/sales_order_history.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_order_info_links.xml b/app/code/Magento/Sales/view/frontend/layout/sales_order_info_links.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_order_invoice.xml b/app/code/Magento/Sales/view/frontend/layout/sales_order_invoice.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_order_invoice_renderers.xml b/app/code/Magento/Sales/view/frontend/layout/sales_order_invoice_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_order_item_price.xml b/app/code/Magento/Sales/view/frontend/layout/sales_order_item_price.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_order_item_renderers.xml b/app/code/Magento/Sales/view/frontend/layout/sales_order_item_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_order_print.xml b/app/code/Magento/Sales/view/frontend/layout/sales_order_print.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_order_print_creditmemo_renderers.xml b/app/code/Magento/Sales/view/frontend/layout/sales_order_print_creditmemo_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_order_print_invoice_renderers.xml b/app/code/Magento/Sales/view/frontend/layout/sales_order_print_invoice_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_order_print_renderers.xml b/app/code/Magento/Sales/view/frontend/layout/sales_order_print_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_order_print_shipment_renderers.xml b/app/code/Magento/Sales/view/frontend/layout/sales_order_print_shipment_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_order_printcreditmemo.xml b/app/code/Magento/Sales/view/frontend/layout/sales_order_printcreditmemo.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_order_printinvoice.xml b/app/code/Magento/Sales/view/frontend/layout/sales_order_printinvoice.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_order_printshipment.xml b/app/code/Magento/Sales/view/frontend/layout/sales_order_printshipment.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_order_reorder.xml b/app/code/Magento/Sales/view/frontend/layout/sales_order_reorder.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_order_shipment.xml b/app/code/Magento/Sales/view/frontend/layout/sales_order_shipment.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_order_shipment_renderers.xml b/app/code/Magento/Sales/view/frontend/layout/sales_order_shipment_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/layout/sales_order_view.xml b/app/code/Magento/Sales/view/frontend/layout/sales_order_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/requirejs-config.js b/app/code/Magento/Sales/view/frontend/requirejs-config.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/templates/email/creditmemo/items.phtml b/app/code/Magento/Sales/view/frontend/templates/email/creditmemo/items.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/templates/email/invoice/items.phtml b/app/code/Magento/Sales/view/frontend/templates/email/invoice/items.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/templates/email/items.phtml b/app/code/Magento/Sales/view/frontend/templates/email/items.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/templates/email/items/creditmemo/default.phtml b/app/code/Magento/Sales/view/frontend/templates/email/items/creditmemo/default.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/templates/email/items/invoice/default.phtml b/app/code/Magento/Sales/view/frontend/templates/email/items/invoice/default.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/templates/email/items/order/default.phtml b/app/code/Magento/Sales/view/frontend/templates/email/items/order/default.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/templates/email/items/price/row.phtml b/app/code/Magento/Sales/view/frontend/templates/email/items/price/row.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/templates/email/items/shipment/default.phtml b/app/code/Magento/Sales/view/frontend/templates/email/items/shipment/default.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/templates/email/shipment/items.phtml b/app/code/Magento/Sales/view/frontend/templates/email/shipment/items.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/templates/email/shipment/track.phtml b/app/code/Magento/Sales/view/frontend/templates/email/shipment/track.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/templates/guest/form.phtml b/app/code/Magento/Sales/view/frontend/templates/guest/form.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/templates/items/price/row.phtml b/app/code/Magento/Sales/view/frontend/templates/items/price/row.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/templates/items/price/total_after_discount.phtml b/app/code/Magento/Sales/view/frontend/templates/items/price/total_after_discount.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/templates/items/price/unit.phtml b/app/code/Magento/Sales/view/frontend/templates/items/price/unit.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/templates/js/components.phtml b/app/code/Magento/Sales/view/frontend/templates/js/components.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/templates/order/comments.phtml b/app/code/Magento/Sales/view/frontend/templates/order/comments.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/templates/order/creditmemo.phtml b/app/code/Magento/Sales/view/frontend/templates/order/creditmemo.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/templates/order/creditmemo/items.phtml b/app/code/Magento/Sales/view/frontend/templates/order/creditmemo/items.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/templates/order/creditmemo/items/renderer/default.phtml b/app/code/Magento/Sales/view/frontend/templates/order/creditmemo/items/renderer/default.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/templates/order/history.phtml b/app/code/Magento/Sales/view/frontend/templates/order/history.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/templates/order/info.phtml b/app/code/Magento/Sales/view/frontend/templates/order/info.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/templates/order/info/buttons.phtml b/app/code/Magento/Sales/view/frontend/templates/order/info/buttons.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/templates/order/info/buttons/rss.phtml b/app/code/Magento/Sales/view/frontend/templates/order/info/buttons/rss.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/templates/order/invoice.phtml b/app/code/Magento/Sales/view/frontend/templates/order/invoice.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/templates/order/invoice/items.phtml b/app/code/Magento/Sales/view/frontend/templates/order/invoice/items.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/templates/order/invoice/items/renderer/default.phtml b/app/code/Magento/Sales/view/frontend/templates/order/invoice/items/renderer/default.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/templates/order/items.phtml b/app/code/Magento/Sales/view/frontend/templates/order/items.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/templates/order/items/renderer/default.phtml b/app/code/Magento/Sales/view/frontend/templates/order/items/renderer/default.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/templates/order/order_comments.phtml b/app/code/Magento/Sales/view/frontend/templates/order/order_comments.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/templates/order/order_date.phtml b/app/code/Magento/Sales/view/frontend/templates/order/order_date.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/templates/order/order_status.phtml b/app/code/Magento/Sales/view/frontend/templates/order/order_status.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/templates/order/print/creditmemo.phtml b/app/code/Magento/Sales/view/frontend/templates/order/print/creditmemo.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/templates/order/print/invoice.phtml b/app/code/Magento/Sales/view/frontend/templates/order/print/invoice.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/templates/order/print/shipment.phtml b/app/code/Magento/Sales/view/frontend/templates/order/print/shipment.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/templates/order/recent.phtml b/app/code/Magento/Sales/view/frontend/templates/order/recent.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/templates/order/shipment/items/renderer/default.phtml b/app/code/Magento/Sales/view/frontend/templates/order/shipment/items/renderer/default.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/templates/order/totals.phtml b/app/code/Magento/Sales/view/frontend/templates/order/totals.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/templates/order/view.phtml b/app/code/Magento/Sales/view/frontend/templates/order/view.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/templates/reorder/sidebar.phtml b/app/code/Magento/Sales/view/frontend/templates/reorder/sidebar.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/templates/widget/guest/form.phtml b/app/code/Magento/Sales/view/frontend/templates/widget/guest/form.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/web/gift-message.js b/app/code/Magento/Sales/view/frontend/web/gift-message.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/web/js/view/last-ordered-items.js b/app/code/Magento/Sales/view/frontend/web/js/view/last-ordered-items.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sales/view/frontend/web/orders-returns.js b/app/code/Magento/Sales/view/frontend/web/orders-returns.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesAnalytics/LICENSE.txt b/app/code/Magento/SalesAnalytics/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesAnalytics/LICENSE_AFL.txt b/app/code/Magento/SalesAnalytics/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesAnalytics/README.md b/app/code/Magento/SalesAnalytics/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesAnalytics/composer.json b/app/code/Magento/SalesAnalytics/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesAnalytics/etc/analytics.xml b/app/code/Magento/SalesAnalytics/etc/analytics.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesAnalytics/etc/module.xml b/app/code/Magento/SalesAnalytics/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesAnalytics/etc/reports.xml b/app/code/Magento/SalesAnalytics/etc/reports.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesAnalytics/registration.php b/app/code/Magento/SalesAnalytics/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesInventory/LICENSE.txt b/app/code/Magento/SalesInventory/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesInventory/LICENSE_AFL.txt b/app/code/Magento/SalesInventory/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesInventory/Model/Order/ReturnProcessor.php b/app/code/Magento/SalesInventory/Model/Order/ReturnProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesInventory/Model/Order/ReturnValidator.php b/app/code/Magento/SalesInventory/Model/Order/ReturnValidator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesInventory/Model/Plugin/Order/ReturnToStockInvoice.php b/app/code/Magento/SalesInventory/Model/Plugin/Order/ReturnToStockInvoice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesInventory/Model/Plugin/Order/ReturnToStockOrder.php b/app/code/Magento/SalesInventory/Model/Plugin/Order/ReturnToStockOrder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesInventory/Model/Plugin/Order/Validation/InvoiceRefundCreationArguments.php b/app/code/Magento/SalesInventory/Model/Plugin/Order/Validation/InvoiceRefundCreationArguments.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesInventory/Model/Plugin/Order/Validation/OrderRefundCreationArguments.php b/app/code/Magento/SalesInventory/Model/Plugin/Order/Validation/OrderRefundCreationArguments.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesInventory/Observer/RefundOrderInventoryObserver.php b/app/code/Magento/SalesInventory/Observer/RefundOrderInventoryObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesInventory/README.md b/app/code/Magento/SalesInventory/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesInventory/Test/Unit/Model/Order/ReturnProcessorTest.php b/app/code/Magento/SalesInventory/Test/Unit/Model/Order/ReturnProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesInventory/Test/Unit/Model/Order/ReturnValidatorTest.php b/app/code/Magento/SalesInventory/Test/Unit/Model/Order/ReturnValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesInventory/Test/Unit/Model/Plugin/Order/ReturnToStockInvoiceTest.php b/app/code/Magento/SalesInventory/Test/Unit/Model/Plugin/Order/ReturnToStockInvoiceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesInventory/Test/Unit/Model/Plugin/Order/ReturnToStockOrderTest.php b/app/code/Magento/SalesInventory/Test/Unit/Model/Plugin/Order/ReturnToStockOrderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesInventory/Test/Unit/Model/Plugin/Order/Validation/InvoiceRefundCreationArgumentsTest.php b/app/code/Magento/SalesInventory/Test/Unit/Model/Plugin/Order/Validation/InvoiceRefundCreationArgumentsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesInventory/Test/Unit/Model/Plugin/Order/Validation/OrderRefundCreationArgumentsTest.php b/app/code/Magento/SalesInventory/Test/Unit/Model/Plugin/Order/Validation/OrderRefundCreationArgumentsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesInventory/Test/Unit/Observer/RefundOrderInventoryObserverTest.php b/app/code/Magento/SalesInventory/Test/Unit/Observer/RefundOrderInventoryObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesInventory/composer.json b/app/code/Magento/SalesInventory/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesInventory/etc/di.xml b/app/code/Magento/SalesInventory/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesInventory/etc/events.xml b/app/code/Magento/SalesInventory/etc/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesInventory/etc/extension_attributes.xml b/app/code/Magento/SalesInventory/etc/extension_attributes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesInventory/etc/module.xml b/app/code/Magento/SalesInventory/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesInventory/i18n/en_US.csv b/app/code/Magento/SalesInventory/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesInventory/registration.php b/app/code/Magento/SalesInventory/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Api/CouponManagementInterface.php b/app/code/Magento/SalesRule/Api/CouponManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Api/CouponRepositoryInterface.php b/app/code/Magento/SalesRule/Api/CouponRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Api/Data/ConditionInterface.php b/app/code/Magento/SalesRule/Api/Data/ConditionInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Api/Data/CouponGenerationSpecInterface.php b/app/code/Magento/SalesRule/Api/Data/CouponGenerationSpecInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Api/Data/CouponInterface.php b/app/code/Magento/SalesRule/Api/Data/CouponInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Api/Data/CouponMassDeleteResultInterface.php b/app/code/Magento/SalesRule/Api/Data/CouponMassDeleteResultInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Api/Data/CouponSearchResultInterface.php b/app/code/Magento/SalesRule/Api/Data/CouponSearchResultInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Api/Data/RuleInterface.php b/app/code/Magento/SalesRule/Api/Data/RuleInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Api/Data/RuleLabelInterface.php b/app/code/Magento/SalesRule/Api/Data/RuleLabelInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Api/Data/RuleSearchResultInterface.php b/app/code/Magento/SalesRule/Api/Data/RuleSearchResultInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Api/RuleRepositoryInterface.php b/app/code/Magento/SalesRule/Api/RuleRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote.php b/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/DeleteButton.php b/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/DeleteButton.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/GenericButton.php b/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/GenericButton.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/ResetButton.php b/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/ResetButton.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/SaveAndContinueButton.php b/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/SaveAndContinueButton.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/SaveButton.php b/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/SaveButton.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Actions.php b/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Actions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Conditions.php b/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Conditions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Coupons.php b/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Coupons.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Coupons/Form.php b/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Coupons/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Coupons/Grid.php b/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Coupons/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Coupons/Grid/Column/Renderer/Used.php b/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Coupons/Grid/Column/Renderer/Used.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Labels.php b/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/Labels.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Widget/Chooser.php b/app/code/Magento/SalesRule/Block/Adminhtml/Promo/Widget/Chooser.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Block/Rss/Discounts.php b/app/code/Magento/SalesRule/Block/Rss/Discounts.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Block/Widget/Form/Element/Dependence.php b/app/code/Magento/SalesRule/Block/Widget/Form/Element/Dependence.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote.php b/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/ApplyRules.php b/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/ApplyRules.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/Chooser.php b/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/Chooser.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/CouponsGrid.php b/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/CouponsGrid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/CouponsMassDelete.php b/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/CouponsMassDelete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/Delete.php b/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/Delete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/Edit.php b/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/ExportCouponsCsv.php b/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/ExportCouponsCsv.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/ExportCouponsXml.php b/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/ExportCouponsXml.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/Generate.php b/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/Generate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/Index.php b/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/NewAction.php b/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/NewAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/NewActionHtml.php b/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/NewActionHtml.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/NewConditionHtml.php b/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/NewConditionHtml.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/Save.php b/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Widget/Chooser.php b/app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Widget/Chooser.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Cron/AggregateSalesReportCouponsData.php b/app/code/Magento/SalesRule/Cron/AggregateSalesReportCouponsData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Helper/Coupon.php b/app/code/Magento/SalesRule/Helper/Coupon.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/LICENSE.txt b/app/code/Magento/SalesRule/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/LICENSE_AFL.txt b/app/code/Magento/SalesRule/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/Converter/ToDataModel.php b/app/code/Magento/SalesRule/Model/Converter/ToDataModel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/Converter/ToModel.php b/app/code/Magento/SalesRule/Model/Converter/ToModel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/Coupon.php b/app/code/Magento/SalesRule/Model/Coupon.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/Coupon/Codegenerator.php b/app/code/Magento/SalesRule/Model/Coupon/Codegenerator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/Coupon/CodegeneratorInterface.php b/app/code/Magento/SalesRule/Model/Coupon/CodegeneratorInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/Coupon/Massgenerator.php b/app/code/Magento/SalesRule/Model/Coupon/Massgenerator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/CouponGenerator.php b/app/code/Magento/SalesRule/Model/CouponGenerator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/CouponRepository.php b/app/code/Magento/SalesRule/Model/CouponRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/Data/Condition.php b/app/code/Magento/SalesRule/Model/Data/Condition.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/Data/CouponGenerationSpec.php b/app/code/Magento/SalesRule/Model/Data/CouponGenerationSpec.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/Data/CouponMassDeleteResult.php b/app/code/Magento/SalesRule/Model/Data/CouponMassDeleteResult.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/Data/Rule.php b/app/code/Magento/SalesRule/Model/Data/Rule.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/Data/RuleLabel.php b/app/code/Magento/SalesRule/Model/Data/RuleLabel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/Plugin/QuoteConfigProductAttributes.php b/app/code/Magento/SalesRule/Model/Plugin/QuoteConfigProductAttributes.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/Plugin/ResourceModel/Rule.php b/app/code/Magento/SalesRule/Model/Plugin/ResourceModel/Rule.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/Plugin/Rule.php b/app/code/Magento/SalesRule/Model/Plugin/Rule.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/Quote/Discount.php b/app/code/Magento/SalesRule/Model/Quote/Discount.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/RegistryConstants.php b/app/code/Magento/SalesRule/Model/RegistryConstants.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/ResourceModel/Coupon.php b/app/code/Magento/SalesRule/Model/ResourceModel/Coupon.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/ResourceModel/Coupon/Collection.php b/app/code/Magento/SalesRule/Model/ResourceModel/Coupon/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/ResourceModel/Coupon/Usage.php b/app/code/Magento/SalesRule/Model/ResourceModel/Coupon/Usage.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/ResourceModel/ReadHandler.php b/app/code/Magento/SalesRule/Model/ResourceModel/ReadHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/ResourceModel/Report/Collection.php b/app/code/Magento/SalesRule/Model/ResourceModel/Report/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/ResourceModel/Report/Rule.php b/app/code/Magento/SalesRule/Model/ResourceModel/Report/Rule.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/ResourceModel/Report/Rule/Createdat.php b/app/code/Magento/SalesRule/Model/ResourceModel/Report/Rule/Createdat.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/ResourceModel/Report/Rule/Updatedat.php b/app/code/Magento/SalesRule/Model/ResourceModel/Report/Rule/Updatedat.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/ResourceModel/Report/Updatedat/Collection.php b/app/code/Magento/SalesRule/Model/ResourceModel/Report/Updatedat/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/ResourceModel/Rule.php b/app/code/Magento/SalesRule/Model/ResourceModel/Rule.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/ResourceModel/Rule/Collection.php b/app/code/Magento/SalesRule/Model/ResourceModel/Rule/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/ResourceModel/Rule/Customer.php b/app/code/Magento/SalesRule/Model/ResourceModel/Rule/Customer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/ResourceModel/Rule/Customer/Collection.php b/app/code/Magento/SalesRule/Model/ResourceModel/Rule/Customer/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/ResourceModel/Rule/DateApplier.php b/app/code/Magento/SalesRule/Model/ResourceModel/Rule/DateApplier.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/ResourceModel/Rule/Quote/Collection.php b/app/code/Magento/SalesRule/Model/ResourceModel/Rule/Quote/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/ResourceModel/SaveHandler.php b/app/code/Magento/SalesRule/Model/ResourceModel/SaveHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/Rss/Discounts.php b/app/code/Magento/SalesRule/Model/Rss/Discounts.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/Rule.php b/app/code/Magento/SalesRule/Model/Rule.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/Rule/Action/Collection.php b/app/code/Magento/SalesRule/Model/Rule/Action/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/Rule/Action/Discount/AbstractDiscount.php b/app/code/Magento/SalesRule/Model/Rule/Action/Discount/AbstractDiscount.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/Rule/Action/Discount/BuyXGetY.php b/app/code/Magento/SalesRule/Model/Rule/Action/Discount/BuyXGetY.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/Rule/Action/Discount/ByFixed.php b/app/code/Magento/SalesRule/Model/Rule/Action/Discount/ByFixed.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/Rule/Action/Discount/ByPercent.php b/app/code/Magento/SalesRule/Model/Rule/Action/Discount/ByPercent.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/Rule/Action/Discount/CalculatorFactory.php b/app/code/Magento/SalesRule/Model/Rule/Action/Discount/CalculatorFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/Rule/Action/Discount/CartFixed.php b/app/code/Magento/SalesRule/Model/Rule/Action/Discount/CartFixed.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/Rule/Action/Discount/Data.php b/app/code/Magento/SalesRule/Model/Rule/Action/Discount/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/Rule/Action/Discount/DiscountInterface.php b/app/code/Magento/SalesRule/Model/Rule/Action/Discount/DiscountInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/Rule/Action/Discount/ToFixed.php b/app/code/Magento/SalesRule/Model/Rule/Action/Discount/ToFixed.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/Rule/Action/Discount/ToPercent.php b/app/code/Magento/SalesRule/Model/Rule/Action/Discount/ToPercent.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/Rule/Action/Product.php b/app/code/Magento/SalesRule/Model/Rule/Action/Product.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/Rule/Condition/Address.php b/app/code/Magento/SalesRule/Model/Rule/Condition/Address.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/Rule/Condition/Combine.php b/app/code/Magento/SalesRule/Model/Rule/Condition/Combine.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/Rule/Condition/Product.php b/app/code/Magento/SalesRule/Model/Rule/Condition/Product.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/Rule/Condition/Product/Combine.php b/app/code/Magento/SalesRule/Model/Rule/Condition/Product/Combine.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/Rule/Condition/Product/Found.php b/app/code/Magento/SalesRule/Model/Rule/Condition/Product/Found.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/Rule/Condition/Product/Subselect.php b/app/code/Magento/SalesRule/Model/Rule/Condition/Product/Subselect.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/Rule/Customer.php b/app/code/Magento/SalesRule/Model/Rule/Customer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/Rule/DataProvider.php b/app/code/Magento/SalesRule/Model/Rule/DataProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/Rule/Metadata/ValueProvider.php b/app/code/Magento/SalesRule/Model/Rule/Metadata/ValueProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/RuleRepository.php b/app/code/Magento/SalesRule/Model/RuleRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/RulesApplier.php b/app/code/Magento/SalesRule/Model/RulesApplier.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/Service/CouponManagementService.php b/app/code/Magento/SalesRule/Model/Service/CouponManagementService.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/Spi/CouponResourceInterface.php b/app/code/Magento/SalesRule/Model/Spi/CouponResourceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/System/Config/Source/Coupon/Format.php b/app/code/Magento/SalesRule/Model/System/Config/Source/Coupon/Format.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/Utility.php b/app/code/Magento/SalesRule/Model/Utility.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/Validator.php b/app/code/Magento/SalesRule/Model/Validator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Model/Validator/Pool.php b/app/code/Magento/SalesRule/Model/Validator/Pool.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Observer/AddSalesRuleNameToOrderObserver.php b/app/code/Magento/SalesRule/Observer/AddSalesRuleNameToOrderObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Observer/CatalogAttributeDeleteAfterObserver.php b/app/code/Magento/SalesRule/Observer/CatalogAttributeDeleteAfterObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Observer/CatalogAttributeSaveAfterObserver.php b/app/code/Magento/SalesRule/Observer/CatalogAttributeSaveAfterObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Observer/CheckSalesRulesAvailability.php b/app/code/Magento/SalesRule/Observer/CheckSalesRulesAvailability.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Observer/SalesOrderAfterPlaceObserver.php b/app/code/Magento/SalesRule/Observer/SalesOrderAfterPlaceObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Plugin/CartTotalRepository.php b/app/code/Magento/SalesRule/Plugin/CartTotalRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/README.md b/app/code/Magento/SalesRule/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Setup/InstallData.php b/app/code/Magento/SalesRule/Setup/InstallData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Setup/InstallSchema.php b/app/code/Magento/SalesRule/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Setup/UpgradeData.php b/app/code/Magento/SalesRule/Setup/UpgradeData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Setup/UpgradeSchema.php b/app/code/Magento/SalesRule/Setup/UpgradeSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Test/Unit/Block/Adminhtml/Promo/Quote/Edit/DeleteButtonTest.php b/app/code/Magento/SalesRule/Test/Unit/Block/Adminhtml/Promo/Quote/Edit/DeleteButtonTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Test/Unit/Block/Adminhtml/Promo/Quote/Edit/GenericButtonTest.php b/app/code/Magento/SalesRule/Test/Unit/Block/Adminhtml/Promo/Quote/Edit/GenericButtonTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Test/Unit/Block/Adminhtml/Promo/Quote/Edit/ResetButtonTest.php b/app/code/Magento/SalesRule/Test/Unit/Block/Adminhtml/Promo/Quote/Edit/ResetButtonTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Test/Unit/Block/Adminhtml/Promo/Quote/Edit/SaveAndContinueButtonTest.php b/app/code/Magento/SalesRule/Test/Unit/Block/Adminhtml/Promo/Quote/Edit/SaveAndContinueButtonTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Test/Unit/Block/Adminhtml/Promo/Quote/Edit/SaveButtonTest.php b/app/code/Magento/SalesRule/Test/Unit/Block/Adminhtml/Promo/Quote/Edit/SaveButtonTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Test/Unit/Block/Rss/DiscountsTest.php b/app/code/Magento/SalesRule/Test/Unit/Block/Rss/DiscountsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Test/Unit/Controller/Adminhtml/Promo/Quote/GenerateTest.php b/app/code/Magento/SalesRule/Test/Unit/Controller/Adminhtml/Promo/Quote/GenerateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Test/Unit/Cron/AggregateSalesReportCouponsDataTest.php b/app/code/Magento/SalesRule/Test/Unit/Cron/AggregateSalesReportCouponsDataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Test/Unit/Helper/CouponTest.php b/app/code/Magento/SalesRule/Test/Unit/Helper/CouponTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/Converter/ToDataModelTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/Converter/ToDataModelTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/Converter/ToModelTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/Converter/ToModelTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/Coupon/CodegeneratorTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/Coupon/CodegeneratorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/Coupon/MassgeneratorTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/Coupon/MassgeneratorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/CouponRepositoryTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/CouponRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/CouponTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/CouponTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/Plugin/QuoteConfigProductAttributesTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/Plugin/QuoteConfigProductAttributesTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/Plugin/ResourceModel/RuleTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/Plugin/ResourceModel/RuleTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/Plugin/RuleTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/Plugin/RuleTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/Quote/DiscountTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/Quote/DiscountTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/ResourceModel/ReadHandlerTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/ResourceModel/ReadHandlerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/ResourceModel/Report/CollectionTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/ResourceModel/Report/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/ResourceModel/Report/RuleTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/ResourceModel/Report/RuleTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/ResourceModel/Rule/DateApplierTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/ResourceModel/Rule/DateApplierTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/ResourceModel/RuleTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/ResourceModel/RuleTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/ResourceModel/SaveHandlerTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/ResourceModel/SaveHandlerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/Rss/DiscountsTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/Rss/DiscountsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/Rule/Action/Discount/ByPercentTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/Rule/Action/Discount/ByPercentTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/Rule/Action/Discount/CartFixedTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/Rule/Action/Discount/CartFixedTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/Rule/Action/Discount/ToPercentTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/Rule/Action/Discount/ToPercentTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/Rule/Condition/ProductTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/Rule/Condition/ProductTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/Rule/DataProviderTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/Rule/DataProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/Rule/Metadata/ValueProviderTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/Rule/Metadata/ValueProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/Rule/Metadata/_files/MetaData.php b/app/code/Magento/SalesRule/Test/Unit/Model/Rule/Metadata/_files/MetaData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/RuleRepositoryTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/RuleRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/RuleTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/RuleTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/RulesApplierTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/RulesApplierTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/Service/CouponManagementServiceTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/Service/CouponManagementServiceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/System/Config/Source/Coupon/FormatTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/System/Config/Source/Coupon/FormatTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/UtilityTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/UtilityTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/Validator/PoolTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/Validator/PoolTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/ValidatorTest.php b/app/code/Magento/SalesRule/Test/Unit/Model/ValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/_files/quote_item_downloadable.php b/app/code/Magento/SalesRule/Test/Unit/Model/_files/quote_item_downloadable.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Test/Unit/Model/_files/quote_item_simple.php b/app/code/Magento/SalesRule/Test/Unit/Model/_files/quote_item_simple.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Test/Unit/Observer/AddSalesRuleNameToOrderObserverTest.php b/app/code/Magento/SalesRule/Test/Unit/Observer/AddSalesRuleNameToOrderObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Test/Unit/Observer/CatalogAttributeDeleteAfterObserverTest.php b/app/code/Magento/SalesRule/Test/Unit/Observer/CatalogAttributeDeleteAfterObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Test/Unit/Observer/CatalogAttributeSaveAfterObserverTest.php b/app/code/Magento/SalesRule/Test/Unit/Observer/CatalogAttributeSaveAfterObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/Test/Unit/Observer/SalesOrderAfterPlaceObserverTest.php b/app/code/Magento/SalesRule/Test/Unit/Observer/SalesOrderAfterPlaceObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/composer.json b/app/code/Magento/SalesRule/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/etc/acl.xml b/app/code/Magento/SalesRule/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/etc/adminhtml/di.xml b/app/code/Magento/SalesRule/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/etc/adminhtml/events.xml b/app/code/Magento/SalesRule/etc/adminhtml/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/etc/adminhtml/menu.xml b/app/code/Magento/SalesRule/etc/adminhtml/menu.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/etc/adminhtml/routes.xml b/app/code/Magento/SalesRule/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/etc/adminhtml/system.xml b/app/code/Magento/SalesRule/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/etc/config.xml b/app/code/Magento/SalesRule/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/etc/crontab.xml b/app/code/Magento/SalesRule/etc/crontab.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/etc/di.xml b/app/code/Magento/SalesRule/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/etc/events.xml b/app/code/Magento/SalesRule/etc/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/etc/fieldset.xml b/app/code/Magento/SalesRule/etc/fieldset.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/etc/frontend/di.xml b/app/code/Magento/SalesRule/etc/frontend/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/etc/module.xml b/app/code/Magento/SalesRule/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/etc/sales.xml b/app/code/Magento/SalesRule/etc/sales.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/etc/webapi.xml b/app/code/Magento/SalesRule/etc/webapi.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/i18n/en_US.csv b/app/code/Magento/SalesRule/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/registration.php b/app/code/Magento/SalesRule/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/view/adminhtml/layout/sales_rule_promo_quote_couponsgrid.xml b/app/code/Magento/SalesRule/view/adminhtml/layout/sales_rule_promo_quote_couponsgrid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/view/adminhtml/layout/sales_rule_promo_quote_edit.xml b/app/code/Magento/SalesRule/view/adminhtml/layout/sales_rule_promo_quote_edit.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/view/adminhtml/layout/sales_rule_promo_quote_index.xml b/app/code/Magento/SalesRule/view/adminhtml/layout/sales_rule_promo_quote_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/view/adminhtml/templates/promo/salesrulejs.phtml b/app/code/Magento/SalesRule/view/adminhtml/templates/promo/salesrulejs.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/view/adminhtml/templates/tab/coupons.phtml b/app/code/Magento/SalesRule/view/adminhtml/templates/tab/coupons.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/view/adminhtml/ui_component/sales_rule_form.xml b/app/code/Magento/SalesRule/view/adminhtml/ui_component/sales_rule_form.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/view/base/web/js/form/element/coupon-type.js b/app/code/Magento/SalesRule/view/base/web/js/form/element/coupon-type.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/view/base/web/js/form/element/manage-coupon-codes.js b/app/code/Magento/SalesRule/view/base/web/js/form/element/manage-coupon-codes.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/view/frontend/layout/checkout_cart_index.xml b/app/code/Magento/SalesRule/view/frontend/layout/checkout_cart_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/view/frontend/layout/checkout_index_index.xml b/app/code/Magento/SalesRule/view/frontend/layout/checkout_index_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/view/frontend/web/js/action/cancel-coupon.js b/app/code/Magento/SalesRule/view/frontend/web/js/action/cancel-coupon.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/view/frontend/web/js/action/set-coupon-code.js b/app/code/Magento/SalesRule/view/frontend/web/js/action/set-coupon-code.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/view/frontend/web/js/model/payment/discount-messages.js b/app/code/Magento/SalesRule/view/frontend/web/js/model/payment/discount-messages.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/view/frontend/web/js/view/cart/totals/discount.js b/app/code/Magento/SalesRule/view/frontend/web/js/view/cart/totals/discount.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/view/frontend/web/js/view/payment/discount-messages.js b/app/code/Magento/SalesRule/view/frontend/web/js/view/payment/discount-messages.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/view/frontend/web/js/view/payment/discount.js b/app/code/Magento/SalesRule/view/frontend/web/js/view/payment/discount.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/view/frontend/web/js/view/summary/discount.js b/app/code/Magento/SalesRule/view/frontend/web/js/view/summary/discount.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/view/frontend/web/template/cart/totals/discount.html b/app/code/Magento/SalesRule/view/frontend/web/template/cart/totals/discount.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/view/frontend/web/template/payment/discount.html b/app/code/Magento/SalesRule/view/frontend/web/template/payment/discount.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesRule/view/frontend/web/template/summary/discount.html b/app/code/Magento/SalesRule/view/frontend/web/template/summary/discount.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesSequence/LICENSE.txt b/app/code/Magento/SalesSequence/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesSequence/LICENSE_AFL.txt b/app/code/Magento/SalesSequence/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesSequence/Model/Builder.php b/app/code/Magento/SalesSequence/Model/Builder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesSequence/Model/Config.php b/app/code/Magento/SalesSequence/Model/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesSequence/Model/EntityPool.php b/app/code/Magento/SalesSequence/Model/EntityPool.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesSequence/Model/Manager.php b/app/code/Magento/SalesSequence/Model/Manager.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesSequence/Model/Meta.php b/app/code/Magento/SalesSequence/Model/Meta.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesSequence/Model/Profile.php b/app/code/Magento/SalesSequence/Model/Profile.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesSequence/Model/ResourceModel/Meta.php b/app/code/Magento/SalesSequence/Model/ResourceModel/Meta.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesSequence/Model/ResourceModel/Profile.php b/app/code/Magento/SalesSequence/Model/ResourceModel/Profile.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesSequence/Model/Sequence.php b/app/code/Magento/SalesSequence/Model/Sequence.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesSequence/Observer/SequenceCreatorObserver.php b/app/code/Magento/SalesSequence/Observer/SequenceCreatorObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesSequence/README.md b/app/code/Magento/SalesSequence/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesSequence/Setup/InstallData.php b/app/code/Magento/SalesSequence/Setup/InstallData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesSequence/Setup/InstallSchema.php b/app/code/Magento/SalesSequence/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesSequence/Setup/RecurringData.php b/app/code/Magento/SalesSequence/Setup/RecurringData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesSequence/Setup/SequenceCreator.php b/app/code/Magento/SalesSequence/Setup/SequenceCreator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesSequence/Test/Unit/Model/BuilderTest.php b/app/code/Magento/SalesSequence/Test/Unit/Model/BuilderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesSequence/Test/Unit/Model/ManagerTest.php b/app/code/Magento/SalesSequence/Test/Unit/Model/ManagerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesSequence/Test/Unit/Model/ResourceModel/MetaTest.php b/app/code/Magento/SalesSequence/Test/Unit/Model/ResourceModel/MetaTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesSequence/Test/Unit/Model/ResourceModel/ProfileTest.php b/app/code/Magento/SalesSequence/Test/Unit/Model/ResourceModel/ProfileTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesSequence/Test/Unit/Model/SequenceTest.php b/app/code/Magento/SalesSequence/Test/Unit/Model/SequenceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesSequence/composer.json b/app/code/Magento/SalesSequence/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesSequence/etc/module.xml b/app/code/Magento/SalesSequence/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesSequence/i18n/en_US.csv b/app/code/Magento/SalesSequence/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SalesSequence/registration.php b/app/code/Magento/SalesSequence/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SampleData/Console/Command/SampleDataDeployCommand.php b/app/code/Magento/SampleData/Console/Command/SampleDataDeployCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SampleData/Console/Command/SampleDataRemoveCommand.php b/app/code/Magento/SampleData/Console/Command/SampleDataRemoveCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SampleData/Console/Command/SampleDataResetCommand.php b/app/code/Magento/SampleData/Console/Command/SampleDataResetCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SampleData/Console/CommandList.php b/app/code/Magento/SampleData/Console/CommandList.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SampleData/Model/Dependency.php b/app/code/Magento/SampleData/Model/Dependency.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SampleData/README.md b/app/code/Magento/SampleData/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SampleData/Setup/InstallData.php b/app/code/Magento/SampleData/Setup/InstallData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SampleData/Test/Unit/Console/Command/AbstractSampleDataCommandTest.php b/app/code/Magento/SampleData/Test/Unit/Console/Command/AbstractSampleDataCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SampleData/Test/Unit/Console/Command/SampleDataDeployCommandTest.php b/app/code/Magento/SampleData/Test/Unit/Console/Command/SampleDataDeployCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SampleData/Test/Unit/Console/Command/SampleDataRemoveCommandTest.php b/app/code/Magento/SampleData/Test/Unit/Console/Command/SampleDataRemoveCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SampleData/cli_commands.php b/app/code/Magento/SampleData/cli_commands.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SampleData/composer.json b/app/code/Magento/SampleData/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SampleData/etc/di.xml b/app/code/Magento/SampleData/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SampleData/etc/module.xml b/app/code/Magento/SampleData/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SampleData/registration.php b/app/code/Magento/SampleData/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Adapter/Query/Preprocessor/Synonyms.php b/app/code/Magento/Search/Adapter/Query/Preprocessor/Synonyms.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Api/Data/SynonymGroupInterface.php b/app/code/Magento/Search/Api/Data/SynonymGroupInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Api/SearchInterface.php b/app/code/Magento/Search/Api/SearchInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Api/SynonymAnalyzerInterface.php b/app/code/Magento/Search/Api/SynonymAnalyzerInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Api/SynonymGroupRepositoryInterface.php b/app/code/Magento/Search/Api/SynonymGroupRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Block/Adminhtml/Dashboard/Last.php b/app/code/Magento/Search/Block/Adminhtml/Dashboard/Last.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Block/Adminhtml/Dashboard/Top.php b/app/code/Magento/Search/Block/Adminhtml/Dashboard/Top.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Block/Adminhtml/Reports/Search.php b/app/code/Magento/Search/Block/Adminhtml/Reports/Search.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Block/Adminhtml/Synonyms.php b/app/code/Magento/Search/Block/Adminhtml/Synonyms.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Block/Adminhtml/Synonyms/Edit/BackButton.php b/app/code/Magento/Search/Block/Adminhtml/Synonyms/Edit/BackButton.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Block/Adminhtml/Synonyms/Edit/DeleteButton.php b/app/code/Magento/Search/Block/Adminhtml/Synonyms/Edit/DeleteButton.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Block/Adminhtml/Synonyms/Edit/GenericButton.php b/app/code/Magento/Search/Block/Adminhtml/Synonyms/Edit/GenericButton.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Block/Adminhtml/Synonyms/Edit/ResetButton.php b/app/code/Magento/Search/Block/Adminhtml/Synonyms/Edit/ResetButton.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Block/Adminhtml/Synonyms/Edit/SaveAndContinueButton.php b/app/code/Magento/Search/Block/Adminhtml/Synonyms/Edit/SaveAndContinueButton.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Block/Adminhtml/Synonyms/Edit/SaveButton.php b/app/code/Magento/Search/Block/Adminhtml/Synonyms/Edit/SaveButton.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Block/Adminhtml/Term.php b/app/code/Magento/Search/Block/Adminhtml/Term.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Block/Adminhtml/Term/Edit.php b/app/code/Magento/Search/Block/Adminhtml/Term/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Block/Adminhtml/Term/Edit/Form.php b/app/code/Magento/Search/Block/Adminhtml/Term/Edit/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Block/Term.php b/app/code/Magento/Search/Block/Term.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Controller/Adminhtml/Synonyms/Delete.php b/app/code/Magento/Search/Controller/Adminhtml/Synonyms/Delete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Controller/Adminhtml/Synonyms/Edit.php b/app/code/Magento/Search/Controller/Adminhtml/Synonyms/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Controller/Adminhtml/Synonyms/Index.php b/app/code/Magento/Search/Controller/Adminhtml/Synonyms/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Controller/Adminhtml/Synonyms/MassDelete.php b/app/code/Magento/Search/Controller/Adminhtml/Synonyms/MassDelete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Controller/Adminhtml/Synonyms/NewAction.php b/app/code/Magento/Search/Controller/Adminhtml/Synonyms/NewAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Controller/Adminhtml/Synonyms/ResultPageBuilder.php b/app/code/Magento/Search/Controller/Adminhtml/Synonyms/ResultPageBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Controller/Adminhtml/Synonyms/Save.php b/app/code/Magento/Search/Controller/Adminhtml/Synonyms/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Controller/Adminhtml/Term.php b/app/code/Magento/Search/Controller/Adminhtml/Term.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Controller/Adminhtml/Term/Delete.php b/app/code/Magento/Search/Controller/Adminhtml/Term/Delete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Controller/Adminhtml/Term/Edit.php b/app/code/Magento/Search/Controller/Adminhtml/Term/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Controller/Adminhtml/Term/ExportSearchCsv.php b/app/code/Magento/Search/Controller/Adminhtml/Term/ExportSearchCsv.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Controller/Adminhtml/Term/ExportSearchExcel.php b/app/code/Magento/Search/Controller/Adminhtml/Term/ExportSearchExcel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Controller/Adminhtml/Term/Index.php b/app/code/Magento/Search/Controller/Adminhtml/Term/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Controller/Adminhtml/Term/MassDelete.php b/app/code/Magento/Search/Controller/Adminhtml/Term/MassDelete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Controller/Adminhtml/Term/NewAction.php b/app/code/Magento/Search/Controller/Adminhtml/Term/NewAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Controller/Adminhtml/Term/Report.php b/app/code/Magento/Search/Controller/Adminhtml/Term/Report.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Controller/Adminhtml/Term/Save.php b/app/code/Magento/Search/Controller/Adminhtml/Term/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Controller/Ajax/Suggest.php b/app/code/Magento/Search/Controller/Ajax/Suggest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Controller/RegistryConstants.php b/app/code/Magento/Search/Controller/RegistryConstants.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Controller/Term/Popular.php b/app/code/Magento/Search/Controller/Term/Popular.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Helper/Data.php b/app/code/Magento/Search/Helper/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/LICENSE.txt b/app/code/Magento/Search/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/LICENSE_AFL.txt b/app/code/Magento/Search/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Model/AdapterFactory.php b/app/code/Magento/Search/Model/AdapterFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Model/Adminhtml/System/Config/Source/Engine.php b/app/code/Magento/Search/Model/Adminhtml/System/Config/Source/Engine.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Model/Autocomplete.php b/app/code/Magento/Search/Model/Autocomplete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Model/Autocomplete/DataProviderInterface.php b/app/code/Magento/Search/Model/Autocomplete/DataProviderInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Model/Autocomplete/Item.php b/app/code/Magento/Search/Model/Autocomplete/Item.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Model/Autocomplete/ItemFactory.php b/app/code/Magento/Search/Model/Autocomplete/ItemFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Model/Autocomplete/ItemInterface.php b/app/code/Magento/Search/Model/Autocomplete/ItemInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Model/AutocompleteInterface.php b/app/code/Magento/Search/Model/AutocompleteInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Model/EngineResolver.php b/app/code/Magento/Search/Model/EngineResolver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Model/Query.php b/app/code/Magento/Search/Model/Query.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Model/QueryFactory.php b/app/code/Magento/Search/Model/QueryFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Model/QueryFactoryInterface.php b/app/code/Magento/Search/Model/QueryFactoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Model/QueryInterface.php b/app/code/Magento/Search/Model/QueryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Model/QueryResult.php b/app/code/Magento/Search/Model/QueryResult.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Model/ResourceModel/Query.php b/app/code/Magento/Search/Model/ResourceModel/Query.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Model/ResourceModel/Query/Collection.php b/app/code/Magento/Search/Model/ResourceModel/Query/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Model/ResourceModel/SynonymGroup.php b/app/code/Magento/Search/Model/ResourceModel/SynonymGroup.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Model/ResourceModel/SynonymGroup/Collection.php b/app/code/Magento/Search/Model/ResourceModel/SynonymGroup/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Model/ResourceModel/SynonymReader.php b/app/code/Magento/Search/Model/ResourceModel/SynonymReader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Model/Search.php b/app/code/Magento/Search/Model/Search.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Model/SearchCollectionFactory.php b/app/code/Magento/Search/Model/SearchCollectionFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Model/SearchCollectionInterface.php b/app/code/Magento/Search/Model/SearchCollectionInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Model/SearchEngine.php b/app/code/Magento/Search/Model/SearchEngine.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Model/SearchEngine/Config.php b/app/code/Magento/Search/Model/SearchEngine/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Model/SearchEngine/Config/Data.php b/app/code/Magento/Search/Model/SearchEngine/Config/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Model/SearchEngine/MenuBuilder.php b/app/code/Magento/Search/Model/SearchEngine/MenuBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Model/Synonym/DataProvider.php b/app/code/Magento/Search/Model/Synonym/DataProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Model/Synonym/MergeConflictException.php b/app/code/Magento/Search/Model/Synonym/MergeConflictException.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Model/SynonymAnalyzer.php b/app/code/Magento/Search/Model/SynonymAnalyzer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Model/SynonymGroup.php b/app/code/Magento/Search/Model/SynonymGroup.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Model/SynonymGroupRepository.php b/app/code/Magento/Search/Model/SynonymGroupRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Model/SynonymReader.php b/app/code/Magento/Search/Model/SynonymReader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/README.md b/app/code/Magento/Search/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Setup/InstallSchema.php b/app/code/Magento/Search/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Setup/UpgradeSchema.php b/app/code/Magento/Search/Setup/UpgradeSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Test/Unit/Adapter/Query/Preprocessor/SynonymsTest.php b/app/code/Magento/Search/Test/Unit/Adapter/Query/Preprocessor/SynonymsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Test/Unit/Controller/Adminhtml/Ajax/SuggestTest.php b/app/code/Magento/Search/Test/Unit/Controller/Adminhtml/Ajax/SuggestTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Test/Unit/Controller/Adminhtml/Synonyms/DeleteTest.php b/app/code/Magento/Search/Test/Unit/Controller/Adminhtml/Synonyms/DeleteTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Test/Unit/Controller/Adminhtml/Term/ExportSearchCsvTest.php b/app/code/Magento/Search/Test/Unit/Controller/Adminhtml/Term/ExportSearchCsvTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Test/Unit/Controller/Adminhtml/Term/IndexTest.php b/app/code/Magento/Search/Test/Unit/Controller/Adminhtml/Term/IndexTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Test/Unit/Controller/Adminhtml/Term/MassDeleteTest.php b/app/code/Magento/Search/Test/Unit/Controller/Adminhtml/Term/MassDeleteTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Test/Unit/Controller/Adminhtml/Term/ReportTest.php b/app/code/Magento/Search/Test/Unit/Controller/Adminhtml/Term/ReportTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Test/Unit/Controller/Adminhtml/Term/SaveTest.php b/app/code/Magento/Search/Test/Unit/Controller/Adminhtml/Term/SaveTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Test/Unit/Helper/DataTest.php b/app/code/Magento/Search/Test/Unit/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Test/Unit/Model/AdapterFactoryTest.php b/app/code/Magento/Search/Test/Unit/Model/AdapterFactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Test/Unit/Model/AutocompleteTest.php b/app/code/Magento/Search/Test/Unit/Model/AutocompleteTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Test/Unit/Model/QueryFactoryTest.php b/app/code/Magento/Search/Test/Unit/Model/QueryFactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Test/Unit/Model/QueryResultTest.php b/app/code/Magento/Search/Test/Unit/Model/QueryResultTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Test/Unit/Model/QueryTest.php b/app/code/Magento/Search/Test/Unit/Model/QueryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Test/Unit/Model/ResourceModel/QueryTest.php b/app/code/Magento/Search/Test/Unit/Model/ResourceModel/QueryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Test/Unit/Model/ResourceModel/SynonymGroupTest.php b/app/code/Magento/Search/Test/Unit/Model/ResourceModel/SynonymGroupTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Test/Unit/Model/SearchEngine/ConfigTest.php b/app/code/Magento/Search/Test/Unit/Model/SearchEngine/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Test/Unit/Model/SearchEngine/MenuBuilderTest.php b/app/code/Magento/Search/Test/Unit/Model/SearchEngine/MenuBuilderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Test/Unit/Model/SearchEngineTest.php b/app/code/Magento/Search/Test/Unit/Model/SearchEngineTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Test/Unit/Model/SynonymGroupRepositoryTest.php b/app/code/Magento/Search/Test/Unit/Model/SynonymGroupRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Test/Unit/Model/SynonymGroupTest.php b/app/code/Magento/Search/Test/Unit/Model/SynonymGroupTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Ui/Component/Listing/Column/Scope/Options.php b/app/code/Magento/Search/Ui/Component/Listing/Column/Scope/Options.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Ui/Component/Listing/Column/Store/Options.php b/app/code/Magento/Search/Ui/Component/Listing/Column/Store/Options.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Ui/Component/Listing/Column/StoreView.php b/app/code/Magento/Search/Ui/Component/Listing/Column/StoreView.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Ui/Component/Listing/Column/SynonymActions.php b/app/code/Magento/Search/Ui/Component/Listing/Column/SynonymActions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Ui/Component/Listing/Column/Website.php b/app/code/Magento/Search/Ui/Component/Listing/Column/Website.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/Ui/Component/Listing/Column/Website/Options.php b/app/code/Magento/Search/Ui/Component/Listing/Column/Website/Options.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/composer.json b/app/code/Magento/Search/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/etc/acl.xml b/app/code/Magento/Search/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/etc/adminhtml/menu.xml b/app/code/Magento/Search/etc/adminhtml/menu.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/etc/adminhtml/routes.xml b/app/code/Magento/Search/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/etc/adminhtml/system.xml b/app/code/Magento/Search/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/etc/frontend/page_types.xml b/app/code/Magento/Search/etc/frontend/page_types.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/etc/frontend/routes.xml b/app/code/Magento/Search/etc/frontend/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/etc/module.xml b/app/code/Magento/Search/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/etc/search_engine.xml b/app/code/Magento/Search/etc/search_engine.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/etc/webapi.xml b/app/code/Magento/Search/etc/webapi.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/i18n/de_DE.csv b/app/code/Magento/Search/i18n/de_DE.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/i18n/en_US.csv b/app/code/Magento/Search/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/i18n/es_ES.csv b/app/code/Magento/Search/i18n/es_ES.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/i18n/fr_FR.csv b/app/code/Magento/Search/i18n/fr_FR.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/i18n/nl_NL.csv b/app/code/Magento/Search/i18n/nl_NL.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/i18n/pt_BR.csv b/app/code/Magento/Search/i18n/pt_BR.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/i18n/zh_Hans_CN.csv b/app/code/Magento/Search/i18n/zh_Hans_CN.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/registration.php b/app/code/Magento/Search/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/view/adminhtml/layout/adminhtml_dashboard_index.xml b/app/code/Magento/Search/view/adminhtml/layout/adminhtml_dashboard_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/view/adminhtml/layout/search_synonyms_edit.xml b/app/code/Magento/Search/view/adminhtml/layout/search_synonyms_edit.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/view/adminhtml/layout/search_synonyms_index.xml b/app/code/Magento/Search/view/adminhtml/layout/search_synonyms_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/view/adminhtml/layout/search_synonyms_new.xml b/app/code/Magento/Search/view/adminhtml/layout/search_synonyms_new.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/view/adminhtml/layout/search_term_block.xml b/app/code/Magento/Search/view/adminhtml/layout/search_term_block.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/view/adminhtml/layout/search_term_edit.xml b/app/code/Magento/Search/view/adminhtml/layout/search_term_edit.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/view/adminhtml/layout/search_term_exportsearchcsv.xml b/app/code/Magento/Search/view/adminhtml/layout/search_term_exportsearchcsv.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/view/adminhtml/layout/search_term_exportsearchexcel.xml b/app/code/Magento/Search/view/adminhtml/layout/search_term_exportsearchexcel.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/view/adminhtml/layout/search_term_grid_block.xml b/app/code/Magento/Search/view/adminhtml/layout/search_term_grid_block.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/view/adminhtml/layout/search_term_index.xml b/app/code/Magento/Search/view/adminhtml/layout/search_term_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/view/adminhtml/layout/search_term_report.xml b/app/code/Magento/Search/view/adminhtml/layout/search_term_report.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/view/adminhtml/layout/search_term_report_block.xml b/app/code/Magento/Search/view/adminhtml/layout/search_term_report_block.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/view/adminhtml/ui_component/search_synonyms_form.xml b/app/code/Magento/Search/view/adminhtml/ui_component/search_synonyms_form.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/view/adminhtml/ui_component/search_synonyms_grid.xml b/app/code/Magento/Search/view/adminhtml/ui_component/search_synonyms_grid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/view/frontend/layout/default.xml b/app/code/Magento/Search/view/frontend/layout/default.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/view/frontend/layout/search_term_popular.xml b/app/code/Magento/Search/view/frontend/layout/search_term_popular.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/view/frontend/requirejs-config.js b/app/code/Magento/Search/view/frontend/requirejs-config.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/view/frontend/templates/form.mini.phtml b/app/code/Magento/Search/view/frontend/templates/form.mini.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/view/frontend/templates/term.phtml b/app/code/Magento/Search/view/frontend/templates/term.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Search/view/frontend/web/form-mini.js b/app/code/Magento/Search/view/frontend/web/form-mini.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/Block/Adminhtml/Session/Activity.php b/app/code/Magento/Security/Block/Adminhtml/Session/Activity.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/Controller/Adminhtml/Session/Activity.php b/app/code/Magento/Security/Controller/Adminhtml/Session/Activity.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/Controller/Adminhtml/Session/LogoutAll.php b/app/code/Magento/Security/Controller/Adminhtml/Session/LogoutAll.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/LICENSE.txt b/app/code/Magento/Security/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/LICENSE_AFL.txt b/app/code/Magento/Security/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/Model/AdminSessionInfo.php b/app/code/Magento/Security/Model/AdminSessionInfo.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/Model/AdminSessionsManager.php b/app/code/Magento/Security/Model/AdminSessionsManager.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/Model/Config.php b/app/code/Magento/Security/Model/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/Model/Config/Source/ResetMethod.php b/app/code/Magento/Security/Model/Config/Source/ResetMethod.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/Model/ConfigInterface.php b/app/code/Magento/Security/Model/ConfigInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/Model/PasswordResetRequestEvent.php b/app/code/Magento/Security/Model/PasswordResetRequestEvent.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/Model/Plugin/AccountManagement.php b/app/code/Magento/Security/Model/Plugin/AccountManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/Model/Plugin/Auth.php b/app/code/Magento/Security/Model/Plugin/Auth.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/Model/Plugin/AuthSession.php b/app/code/Magento/Security/Model/Plugin/AuthSession.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/Model/Plugin/LoginController.php b/app/code/Magento/Security/Model/Plugin/LoginController.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/Model/ResourceModel/AdminSessionInfo.php b/app/code/Magento/Security/Model/ResourceModel/AdminSessionInfo.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/Model/ResourceModel/AdminSessionInfo/Collection.php b/app/code/Magento/Security/Model/ResourceModel/AdminSessionInfo/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/Model/ResourceModel/PasswordResetRequestEvent.php b/app/code/Magento/Security/Model/ResourceModel/PasswordResetRequestEvent.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/Model/ResourceModel/PasswordResetRequestEvent/Collection.php b/app/code/Magento/Security/Model/ResourceModel/PasswordResetRequestEvent/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/Model/ResourceModel/PasswordResetRequestEvent/CollectionFactory.php b/app/code/Magento/Security/Model/ResourceModel/PasswordResetRequestEvent/CollectionFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/Model/SecurityChecker/Frequency.php b/app/code/Magento/Security/Model/SecurityChecker/Frequency.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/Model/SecurityChecker/Quantity.php b/app/code/Magento/Security/Model/SecurityChecker/Quantity.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/Model/SecurityChecker/SecurityCheckerInterface.php b/app/code/Magento/Security/Model/SecurityChecker/SecurityCheckerInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/Model/SecurityCookie.php b/app/code/Magento/Security/Model/SecurityCookie.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/Model/SecurityManager.php b/app/code/Magento/Security/Model/SecurityManager.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/README.md b/app/code/Magento/Security/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/Setup/InstallSchema.php b/app/code/Magento/Security/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/Setup/UpgradeSchema.php b/app/code/Magento/Security/Setup/UpgradeSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/Test/Unit/Block/Adminhtml/Session/ActivityTest.php b/app/code/Magento/Security/Test/Unit/Block/Adminhtml/Session/ActivityTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/Test/Unit/Controller/Adminhtml/Session/ActivityTest.php b/app/code/Magento/Security/Test/Unit/Controller/Adminhtml/Session/ActivityTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/Test/Unit/Controller/Adminhtml/Session/LogoutAllTest.php b/app/code/Magento/Security/Test/Unit/Controller/Adminhtml/Session/LogoutAllTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/Test/Unit/Model/AdminSessionInfoTest.php b/app/code/Magento/Security/Test/Unit/Model/AdminSessionInfoTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/Test/Unit/Model/AdminSessionsManagerTest.php b/app/code/Magento/Security/Test/Unit/Model/AdminSessionsManagerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/Test/Unit/Model/Config/Source/ResetMethodTest.php b/app/code/Magento/Security/Test/Unit/Model/Config/Source/ResetMethodTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/Test/Unit/Model/ConfigTest.php b/app/code/Magento/Security/Test/Unit/Model/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/Test/Unit/Model/Plugin/AccountManagementTest.php b/app/code/Magento/Security/Test/Unit/Model/Plugin/AccountManagementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/Test/Unit/Model/Plugin/AuthSessionTest.php b/app/code/Magento/Security/Test/Unit/Model/Plugin/AuthSessionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/Test/Unit/Model/Plugin/AuthTest.php b/app/code/Magento/Security/Test/Unit/Model/Plugin/AuthTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/Test/Unit/Model/Plugin/LoginControllerTest.php b/app/code/Magento/Security/Test/Unit/Model/Plugin/LoginControllerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/Test/Unit/Model/ResourceModel/AdminSessionInfo/CollectionTest.php b/app/code/Magento/Security/Test/Unit/Model/ResourceModel/AdminSessionInfo/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/Test/Unit/Model/ResourceModel/AdminSessionInfoTest.php b/app/code/Magento/Security/Test/Unit/Model/ResourceModel/AdminSessionInfoTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/Test/Unit/Model/ResourceModel/PasswordResetRequestEvent/CollectionFactoryTest.php b/app/code/Magento/Security/Test/Unit/Model/ResourceModel/PasswordResetRequestEvent/CollectionFactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/Test/Unit/Model/ResourceModel/PasswordResetRequestEvent/CollectionTest.php b/app/code/Magento/Security/Test/Unit/Model/ResourceModel/PasswordResetRequestEvent/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/Test/Unit/Model/ResourceModel/PasswordResetRequestEventTest.php b/app/code/Magento/Security/Test/Unit/Model/ResourceModel/PasswordResetRequestEventTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/Test/Unit/Model/SecurityChecker/FrequencyTest.php b/app/code/Magento/Security/Test/Unit/Model/SecurityChecker/FrequencyTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/Test/Unit/Model/SecurityChecker/QuantityTest.php b/app/code/Magento/Security/Test/Unit/Model/SecurityChecker/QuantityTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/Test/Unit/Model/SecurityCookieTest.php b/app/code/Magento/Security/Test/Unit/Model/SecurityCookieTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/Test/Unit/Model/SecurityManagerTest.php b/app/code/Magento/Security/Test/Unit/Model/SecurityManagerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/composer.json b/app/code/Magento/Security/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/etc/adminhtml/di.xml b/app/code/Magento/Security/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/etc/adminhtml/routes.xml b/app/code/Magento/Security/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/etc/adminhtml/system.xml b/app/code/Magento/Security/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/etc/config.xml b/app/code/Magento/Security/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/etc/crontab.xml b/app/code/Magento/Security/etc/crontab.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/etc/di.xml b/app/code/Magento/Security/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/etc/module.xml b/app/code/Magento/Security/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/i18n/en_US.csv b/app/code/Magento/Security/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/registration.php b/app/code/Magento/Security/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/view/adminhtml/layout/default.xml b/app/code/Magento/Security/view/adminhtml/layout/default.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/view/adminhtml/layout/security_session_activity.xml b/app/code/Magento/Security/view/adminhtml/layout/security_session_activity.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/view/adminhtml/page_layout/admin-popup.xml b/app/code/Magento/Security/view/adminhtml/page_layout/admin-popup.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/view/adminhtml/requirejs-config.js b/app/code/Magento/Security/view/adminhtml/requirejs-config.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/view/adminhtml/templates/page/activity_link.phtml b/app/code/Magento/Security/view/adminhtml/templates/page/activity_link.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/view/adminhtml/templates/session/activity.phtml b/app/code/Magento/Security/view/adminhtml/templates/session/activity.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/view/adminhtml/web/css/activity.css b/app/code/Magento/Security/view/adminhtml/web/css/activity.css
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Security/view/adminhtml/web/js/confirm-redirect.js b/app/code/Magento/Security/view/adminhtml/web/js/confirm-redirect.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SendFriend/Block/Plugin/Catalog/Product/View.php b/app/code/Magento/SendFriend/Block/Plugin/Catalog/Product/View.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SendFriend/Block/Send.php b/app/code/Magento/SendFriend/Block/Send.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SendFriend/Controller/Product.php b/app/code/Magento/SendFriend/Controller/Product.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SendFriend/Controller/Product/Send.php b/app/code/Magento/SendFriend/Controller/Product/Send.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SendFriend/Controller/Product/Sendmail.php b/app/code/Magento/SendFriend/Controller/Product/Sendmail.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SendFriend/Helper/Data.php b/app/code/Magento/SendFriend/Helper/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SendFriend/LICENSE.txt b/app/code/Magento/SendFriend/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SendFriend/LICENSE_AFL.txt b/app/code/Magento/SendFriend/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SendFriend/Model/ResourceModel/SendFriend.php b/app/code/Magento/SendFriend/Model/ResourceModel/SendFriend.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SendFriend/Model/ResourceModel/SendFriend/Collection.php b/app/code/Magento/SendFriend/Model/ResourceModel/SendFriend/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SendFriend/Model/SendFriend.php b/app/code/Magento/SendFriend/Model/SendFriend.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SendFriend/Model/Source/Checktype.php b/app/code/Magento/SendFriend/Model/Source/Checktype.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SendFriend/README.md b/app/code/Magento/SendFriend/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SendFriend/Setup/InstallSchema.php b/app/code/Magento/SendFriend/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SendFriend/Test/Unit/Block/Plugin/Catalog/Product/ViewTest.php b/app/code/Magento/SendFriend/Test/Unit/Block/Plugin/Catalog/Product/ViewTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SendFriend/Test/Unit/Block/SendTest.php b/app/code/Magento/SendFriend/Test/Unit/Block/SendTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SendFriend/Test/Unit/Controller/Product/SendTest.php b/app/code/Magento/SendFriend/Test/Unit/Controller/Product/SendTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SendFriend/Test/Unit/Controller/Product/SendmailTest.php b/app/code/Magento/SendFriend/Test/Unit/Controller/Product/SendmailTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SendFriend/Test/Unit/Model/SendFriendTest.php b/app/code/Magento/SendFriend/Test/Unit/Model/SendFriendTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SendFriend/composer.json b/app/code/Magento/SendFriend/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SendFriend/etc/adminhtml/system.xml b/app/code/Magento/SendFriend/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SendFriend/etc/config.xml b/app/code/Magento/SendFriend/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SendFriend/etc/email_templates.xml b/app/code/Magento/SendFriend/etc/email_templates.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SendFriend/etc/frontend/di.xml b/app/code/Magento/SendFriend/etc/frontend/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SendFriend/etc/frontend/page_types.xml b/app/code/Magento/SendFriend/etc/frontend/page_types.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SendFriend/etc/frontend/routes.xml b/app/code/Magento/SendFriend/etc/frontend/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SendFriend/etc/module.xml b/app/code/Magento/SendFriend/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SendFriend/i18n/en_US.csv b/app/code/Magento/SendFriend/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SendFriend/registration.php b/app/code/Magento/SendFriend/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SendFriend/view/frontend/email/product_share.html b/app/code/Magento/SendFriend/view/frontend/email/product_share.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SendFriend/view/frontend/layout/sendfriend_product_send.xml b/app/code/Magento/SendFriend/view/frontend/layout/sendfriend_product_send.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SendFriend/view/frontend/templates/send.phtml b/app/code/Magento/SendFriend/view/frontend/templates/send.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SendFriend/view/frontend/web/back-event.js b/app/code/Magento/SendFriend/view/frontend/web/back-event.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Block/Adminhtml/Create.php b/app/code/Magento/Shipping/Block/Adminhtml/Create.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Block/Adminhtml/Create/Form.php b/app/code/Magento/Shipping/Block/Adminhtml/Create/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Block/Adminhtml/Create/Items.php b/app/code/Magento/Shipping/Block/Adminhtml/Create/Items.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Block/Adminhtml/Order/Packaging.php b/app/code/Magento/Shipping/Block/Adminhtml/Order/Packaging.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Block/Adminhtml/Order/Packaging/Grid.php b/app/code/Magento/Shipping/Block/Adminhtml/Order/Packaging/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Block/Adminhtml/Order/Tracking.php b/app/code/Magento/Shipping/Block/Adminhtml/Order/Tracking.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Block/Adminhtml/Order/Tracking/Invoice.php b/app/code/Magento/Shipping/Block/Adminhtml/Order/Tracking/Invoice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Block/Adminhtml/Order/Tracking/View.php b/app/code/Magento/Shipping/Block/Adminhtml/Order/Tracking/View.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Block/Adminhtml/View.php b/app/code/Magento/Shipping/Block/Adminhtml/View.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Block/Adminhtml/View/Comments.php b/app/code/Magento/Shipping/Block/Adminhtml/View/Comments.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Block/Adminhtml/View/Form.php b/app/code/Magento/Shipping/Block/Adminhtml/View/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Block/Adminhtml/View/Items.php b/app/code/Magento/Shipping/Block/Adminhtml/View/Items.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Block/Items.php b/app/code/Magento/Shipping/Block/Items.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Block/Order/Shipment.php b/app/code/Magento/Shipping/Block/Order/Shipment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Block/Tracking/Ajax.php b/app/code/Magento/Shipping/Block/Tracking/Ajax.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Block/Tracking/Link.php b/app/code/Magento/Shipping/Block/Tracking/Link.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Block/Tracking/Popup.php b/app/code/Magento/Shipping/Block/Tracking/Popup.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/AddComment.php b/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/AddComment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/AddTrack.php b/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/AddTrack.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/CreateLabel.php b/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/CreateLabel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/Email.php b/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/Email.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/GetShippingItemsGrid.php b/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/GetShippingItemsGrid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/Index.php b/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/MassPrintShippingLabel.php b/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/MassPrintShippingLabel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/NewAction.php b/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/NewAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/Pdfshipments.php b/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/Pdfshipments.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/PrintAction.php b/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/PrintAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/PrintLabel.php b/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/PrintLabel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/PrintPackage.php b/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/PrintPackage.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/RemoveTrack.php b/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/RemoveTrack.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/Save.php b/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/Start.php b/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/Start.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/View.php b/app/code/Magento/Shipping/Controller/Adminhtml/Order/Shipment/View.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Controller/Adminhtml/Order/ShipmentLoader.php b/app/code/Magento/Shipping/Controller/Adminhtml/Order/ShipmentLoader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Controller/Adminhtml/Shipment/MassPrintShippingLabel.php b/app/code/Magento/Shipping/Controller/Adminhtml/Shipment/MassPrintShippingLabel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Controller/Tracking/Popup.php b/app/code/Magento/Shipping/Controller/Tracking/Popup.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Helper/Carrier.php b/app/code/Magento/Shipping/Helper/Carrier.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Helper/Data.php b/app/code/Magento/Shipping/Helper/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/LICENSE.txt b/app/code/Magento/Shipping/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/LICENSE_AFL.txt b/app/code/Magento/Shipping/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Model/Carrier/AbstractCarrier.php b/app/code/Magento/Shipping/Model/Carrier/AbstractCarrier.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Model/Carrier/AbstractCarrierInterface.php b/app/code/Magento/Shipping/Model/Carrier/AbstractCarrierInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Model/Carrier/AbstractCarrierOnline.php b/app/code/Magento/Shipping/Model/Carrier/AbstractCarrierOnline.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Model/Carrier/CarrierInterface.php b/app/code/Magento/Shipping/Model/Carrier/CarrierInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Model/Carrier/Source/GenericDefault.php b/app/code/Magento/Shipping/Model/Carrier/Source/GenericDefault.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Model/Carrier/Source/GenericInterface.php b/app/code/Magento/Shipping/Model/Carrier/Source/GenericInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Model/CarrierFactory.php b/app/code/Magento/Shipping/Model/CarrierFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Model/CarrierFactoryInterface.php b/app/code/Magento/Shipping/Model/CarrierFactoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Model/Config.php b/app/code/Magento/Shipping/Model/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Model/Config/Source/Allmethods.php b/app/code/Magento/Shipping/Model/Config/Source/Allmethods.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Model/Config/Source/Allspecificcountries.php b/app/code/Magento/Shipping/Model/Config/Source/Allspecificcountries.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Model/Config/Source/Online/Mode.php b/app/code/Magento/Shipping/Model/Config/Source/Online/Mode.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Model/Config/Source/Online/Requesttype.php b/app/code/Magento/Shipping/Model/Config/Source/Online/Requesttype.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Model/Info.php b/app/code/Magento/Shipping/Model/Info.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Model/Observer.php b/app/code/Magento/Shipping/Model/Observer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Model/Order/Pdf/Packaging.php b/app/code/Magento/Shipping/Model/Order/Pdf/Packaging.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Model/Order/Track.php b/app/code/Magento/Shipping/Model/Order/Track.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Model/Rate/Result.php b/app/code/Magento/Shipping/Model/Rate/Result.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Model/ResourceModel/Order/Track/Collection.php b/app/code/Magento/Shipping/Model/ResourceModel/Order/Track/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Model/Shipment/Request.php b/app/code/Magento/Shipping/Model/Shipment/Request.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Model/Shipment/ReturnShipment.php b/app/code/Magento/Shipping/Model/Shipment/ReturnShipment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Model/ShipmentNotifier.php b/app/code/Magento/Shipping/Model/ShipmentNotifier.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Model/Shipping.php b/app/code/Magento/Shipping/Model/Shipping.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Model/Shipping/LabelGenerator.php b/app/code/Magento/Shipping/Model/Shipping/LabelGenerator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Model/Shipping/Labels.php b/app/code/Magento/Shipping/Model/Shipping/Labels.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Model/Simplexml/Element.php b/app/code/Magento/Shipping/Model/Simplexml/Element.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Model/Source/HandlingAction.php b/app/code/Magento/Shipping/Model/Source/HandlingAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Model/Source/HandlingType.php b/app/code/Magento/Shipping/Model/Source/HandlingType.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Model/Tracking/Result.php b/app/code/Magento/Shipping/Model/Tracking/Result.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Model/Tracking/Result/AbstractResult.php b/app/code/Magento/Shipping/Model/Tracking/Result/AbstractResult.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Model/Tracking/Result/Error.php b/app/code/Magento/Shipping/Model/Tracking/Result/Error.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Model/Tracking/Result/Status.php b/app/code/Magento/Shipping/Model/Tracking/Result/Status.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/README.md b/app/code/Magento/Shipping/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Test/Unit/Block/Adminhtml/Order/TrackingTest.php b/app/code/Magento/Shipping/Test/Unit/Block/Adminhtml/Order/TrackingTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/AddCommentTest.php b/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/AddCommentTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/AddTrackTest.php b/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/AddTrackTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/CreateLabelTest.php b/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/CreateLabelTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/EmailTest.php b/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/EmailTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/GetShippingItemsGridTest.php b/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/GetShippingItemsGridTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/NewActionTest.php b/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/NewActionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/PrintLabelTest.php b/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/PrintLabelTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/PrintPackageTest.php b/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/PrintPackageTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/RemoveTrackTest.php b/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/RemoveTrackTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/SaveTest.php b/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/SaveTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/ViewTest.php b/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/Shipment/ViewTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/ShipmentLoaderTest.php b/app/code/Magento/Shipping/Test/Unit/Controller/Adminhtml/Order/ShipmentLoaderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Test/Unit/Helper/CarrierTest.php b/app/code/Magento/Shipping/Test/Unit/Helper/CarrierTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Test/Unit/Model/Carrier/AbstractCarrierOnline/xxe-xml.txt b/app/code/Magento/Shipping/Test/Unit/Model/Carrier/AbstractCarrierOnline/xxe-xml.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Test/Unit/Model/Carrier/AbstractCarrierOnlineTest.php b/app/code/Magento/Shipping/Test/Unit/Model/Carrier/AbstractCarrierOnlineTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Test/Unit/Model/Order/TrackTest.php b/app/code/Magento/Shipping/Test/Unit/Model/Order/TrackTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Test/Unit/Model/ShipmentNotifierTest.php b/app/code/Magento/Shipping/Test/Unit/Model/ShipmentNotifierTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Test/Unit/Model/ShipmentTest.php b/app/code/Magento/Shipping/Test/Unit/Model/ShipmentTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Test/Unit/Model/Shipping/LabelGeneratorTest.php b/app/code/Magento/Shipping/Test/Unit/Model/Shipping/LabelGeneratorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Test/Unit/Model/Shipping/LabelsTest.php b/app/code/Magento/Shipping/Test/Unit/Model/Shipping/LabelsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Test/Unit/Model/ShippingTest.php b/app/code/Magento/Shipping/Test/Unit/Model/ShippingTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/Test/Unit/Model/Simplexml/ElementTest.php b/app/code/Magento/Shipping/Test/Unit/Model/Simplexml/ElementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/composer.json b/app/code/Magento/Shipping/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/etc/acl.xml b/app/code/Magento/Shipping/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/etc/adminhtml/di.xml b/app/code/Magento/Shipping/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/etc/adminhtml/routes.xml b/app/code/Magento/Shipping/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/etc/adminhtml/system.xml b/app/code/Magento/Shipping/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/etc/config.xml b/app/code/Magento/Shipping/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/etc/crontab.xml b/app/code/Magento/Shipping/etc/crontab.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/etc/di.xml b/app/code/Magento/Shipping/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/etc/frontend/page_types.xml b/app/code/Magento/Shipping/etc/frontend/page_types.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/etc/frontend/routes.xml b/app/code/Magento/Shipping/etc/frontend/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/etc/module.xml b/app/code/Magento/Shipping/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/i18n/en_US.csv b/app/code/Magento/Shipping/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/registration.php b/app/code/Magento/Shipping/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/view/adminhtml/layout/adminhtml_order_shipment_addcomment.xml b/app/code/Magento/Shipping/view/adminhtml/layout/adminhtml_order_shipment_addcomment.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/view/adminhtml/layout/adminhtml_order_shipment_addtrack.xml b/app/code/Magento/Shipping/view/adminhtml/layout/adminhtml_order_shipment_addtrack.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/view/adminhtml/layout/adminhtml_order_shipment_new.xml b/app/code/Magento/Shipping/view/adminhtml/layout/adminhtml_order_shipment_new.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/view/adminhtml/layout/adminhtml_order_shipment_removetrack.xml b/app/code/Magento/Shipping/view/adminhtml/layout/adminhtml_order_shipment_removetrack.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/view/adminhtml/layout/adminhtml_order_shipment_view.xml b/app/code/Magento/Shipping/view/adminhtml/layout/adminhtml_order_shipment_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/view/adminhtml/layout/sales_order_invoice_new.xml b/app/code/Magento/Shipping/view/adminhtml/layout/sales_order_invoice_new.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/view/adminhtml/layout/sales_order_view.xml b/app/code/Magento/Shipping/view/adminhtml/layout/sales_order_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/view/adminhtml/templates/create/form.phtml b/app/code/Magento/Shipping/view/adminhtml/templates/create/form.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/view/adminhtml/templates/create/items.phtml b/app/code/Magento/Shipping/view/adminhtml/templates/create/items.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/view/adminhtml/templates/create/items/renderer/default.phtml b/app/code/Magento/Shipping/view/adminhtml/templates/create/items/renderer/default.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/view/adminhtml/templates/order/packaging/grid.phtml b/app/code/Magento/Shipping/view/adminhtml/templates/order/packaging/grid.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/view/adminhtml/templates/order/packaging/packed.phtml b/app/code/Magento/Shipping/view/adminhtml/templates/order/packaging/packed.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/view/adminhtml/templates/order/packaging/popup.phtml b/app/code/Magento/Shipping/view/adminhtml/templates/order/packaging/popup.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/view/adminhtml/templates/order/packaging/popup_content.phtml b/app/code/Magento/Shipping/view/adminhtml/templates/order/packaging/popup_content.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/view/adminhtml/templates/order/tracking.phtml b/app/code/Magento/Shipping/view/adminhtml/templates/order/tracking.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/view/adminhtml/templates/order/tracking/view.phtml b/app/code/Magento/Shipping/view/adminhtml/templates/order/tracking/view.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/view/adminhtml/templates/order/view/info.phtml b/app/code/Magento/Shipping/view/adminhtml/templates/order/view/info.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/view/adminhtml/templates/view/form.phtml b/app/code/Magento/Shipping/view/adminhtml/templates/view/form.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/view/adminhtml/templates/view/items.phtml b/app/code/Magento/Shipping/view/adminhtml/templates/view/items.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/view/adminhtml/templates/view/items/renderer/default.phtml b/app/code/Magento/Shipping/view/adminhtml/templates/view/items/renderer/default.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/view/adminhtml/web/js/packages.js b/app/code/Magento/Shipping/view/adminhtml/web/js/packages.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/view/adminhtml/web/order/packaging.js b/app/code/Magento/Shipping/view/adminhtml/web/order/packaging.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/view/frontend/layout/checkout_index_index.xml b/app/code/Magento/Shipping/view/frontend/layout/checkout_index_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/view/frontend/layout/sales_guest_reorder.xml b/app/code/Magento/Shipping/view/frontend/layout/sales_guest_reorder.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/view/frontend/layout/sales_guest_shipment.xml b/app/code/Magento/Shipping/view/frontend/layout/sales_guest_shipment.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/view/frontend/layout/sales_guest_view.xml b/app/code/Magento/Shipping/view/frontend/layout/sales_guest_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/view/frontend/layout/sales_order_reorder.xml b/app/code/Magento/Shipping/view/frontend/layout/sales_order_reorder.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/view/frontend/layout/sales_order_shipment.xml b/app/code/Magento/Shipping/view/frontend/layout/sales_order_shipment.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/view/frontend/layout/sales_order_view.xml b/app/code/Magento/Shipping/view/frontend/layout/sales_order_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/view/frontend/layout/shipping_tracking_popup.xml b/app/code/Magento/Shipping/view/frontend/layout/shipping_tracking_popup.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/view/frontend/templates/items.phtml b/app/code/Magento/Shipping/view/frontend/templates/items.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/view/frontend/templates/order/shipment.phtml b/app/code/Magento/Shipping/view/frontend/templates/order/shipment.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/view/frontend/templates/tracking/details.phtml b/app/code/Magento/Shipping/view/frontend/templates/tracking/details.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/view/frontend/templates/tracking/link.phtml b/app/code/Magento/Shipping/view/frontend/templates/tracking/link.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/view/frontend/templates/tracking/popup.phtml b/app/code/Magento/Shipping/view/frontend/templates/tracking/popup.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/view/frontend/templates/tracking/progress.phtml b/app/code/Magento/Shipping/view/frontend/templates/tracking/progress.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/view/frontend/web/js/model/config.js b/app/code/Magento/Shipping/view/frontend/web/js/model/config.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/view/frontend/web/js/view/checkout/shipping/shipping-policy.js b/app/code/Magento/Shipping/view/frontend/web/js/view/checkout/shipping/shipping-policy.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Shipping/view/frontend/web/template/checkout/shipping/shipping-policy.html b/app/code/Magento/Shipping/view/frontend/web/template/checkout/shipping/shipping-policy.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Api/CaseCreationServiceInterface.php b/app/code/Magento/Signifyd/Api/CaseCreationServiceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Api/CaseManagementInterface.php b/app/code/Magento/Signifyd/Api/CaseManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Api/CaseRepositoryInterface.php b/app/code/Magento/Signifyd/Api/CaseRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Api/Data/CaseInterface.php b/app/code/Magento/Signifyd/Api/Data/CaseInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Api/Data/CaseSearchResultsInterface.php b/app/code/Magento/Signifyd/Api/Data/CaseSearchResultsInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Api/GuaranteeCancelingServiceInterface.php b/app/code/Magento/Signifyd/Api/GuaranteeCancelingServiceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Api/GuaranteeCreationServiceInterface.php b/app/code/Magento/Signifyd/Api/GuaranteeCreationServiceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Block/Adminhtml/CaseInfo.php b/app/code/Magento/Signifyd/Block/Adminhtml/CaseInfo.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Block/Adminhtml/System/Config/Field/WebhookUrl.php b/app/code/Magento/Signifyd/Block/Adminhtml/System/Config/Field/WebhookUrl.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Block/Adminhtml/System/Config/Fieldset/Info.php b/app/code/Magento/Signifyd/Block/Adminhtml/System/Config/Fieldset/Info.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Block/Fingerprint.php b/app/code/Magento/Signifyd/Block/Fingerprint.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Controller/Webhooks/Handler.php b/app/code/Magento/Signifyd/Controller/Webhooks/Handler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/LICENSE.txt b/app/code/Magento/Signifyd/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/LICENSE_AFL.txt b/app/code/Magento/Signifyd/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/CaseEntity.php b/app/code/Magento/Signifyd/Model/CaseEntity.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/CaseManagement.php b/app/code/Magento/Signifyd/Model/CaseManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/CaseRepository.php b/app/code/Magento/Signifyd/Model/CaseRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/CaseServices/CreationService.php b/app/code/Magento/Signifyd/Model/CaseServices/CreationService.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/CaseServices/StubUpdatingService.php b/app/code/Magento/Signifyd/Model/CaseServices/StubUpdatingService.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/CaseServices/UpdatingService.php b/app/code/Magento/Signifyd/Model/CaseServices/UpdatingService.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/CaseServices/UpdatingServiceFactory.php b/app/code/Magento/Signifyd/Model/CaseServices/UpdatingServiceFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/CaseServices/UpdatingServiceInterface.php b/app/code/Magento/Signifyd/Model/CaseServices/UpdatingServiceInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/CommentsHistoryUpdater.php b/app/code/Magento/Signifyd/Model/CommentsHistoryUpdater.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/Config.php b/app/code/Magento/Signifyd/Model/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/CustomerOrders.php b/app/code/Magento/Signifyd/Model/CustomerOrders.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/Guarantee/CancelGuaranteeAbility.php b/app/code/Magento/Signifyd/Model/Guarantee/CancelGuaranteeAbility.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/Guarantee/CancelingService.php b/app/code/Magento/Signifyd/Model/Guarantee/CancelingService.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/Guarantee/CreateGuaranteeAbility.php b/app/code/Magento/Signifyd/Model/Guarantee/CreateGuaranteeAbility.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/Guarantee/CreationService.php b/app/code/Magento/Signifyd/Model/Guarantee/CreationService.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/MessageGenerators/CaseRescore.php b/app/code/Magento/Signifyd/Model/MessageGenerators/CaseRescore.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/MessageGenerators/GeneratorException.php b/app/code/Magento/Signifyd/Model/MessageGenerators/GeneratorException.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/MessageGenerators/GeneratorFactory.php b/app/code/Magento/Signifyd/Model/MessageGenerators/GeneratorFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/MessageGenerators/GeneratorInterface.php b/app/code/Magento/Signifyd/Model/MessageGenerators/GeneratorInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/MessageGenerators/PatternGenerator.php b/app/code/Magento/Signifyd/Model/MessageGenerators/PatternGenerator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/OrderStateService.php b/app/code/Magento/Signifyd/Model/OrderStateService.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/PaymentMethodMapper/PaymentMethodMapper.php b/app/code/Magento/Signifyd/Model/PaymentMethodMapper/PaymentMethodMapper.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/PaymentMethodMapper/XmlToArrayConfigConverter.php b/app/code/Magento/Signifyd/Model/PaymentMethodMapper/XmlToArrayConfigConverter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/PaymentVerificationFactory.php b/app/code/Magento/Signifyd/Model/PaymentVerificationFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/PredefinedVerificationCode.php b/app/code/Magento/Signifyd/Model/PredefinedVerificationCode.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/QuoteSession/Adminhtml/BackendSession.php b/app/code/Magento/Signifyd/Model/QuoteSession/Adminhtml/BackendSession.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/QuoteSession/FrontendSession.php b/app/code/Magento/Signifyd/Model/QuoteSession/FrontendSession.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/QuoteSession/QuoteSessionInterface.php b/app/code/Magento/Signifyd/Model/QuoteSession/QuoteSessionInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/ResourceModel/CaseEntity.php b/app/code/Magento/Signifyd/Model/ResourceModel/CaseEntity.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/ResourceModel/CaseEntity/Collection.php b/app/code/Magento/Signifyd/Model/ResourceModel/CaseEntity/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/SalesOrderGrid/NotSyncedOrderIdListProvider.php b/app/code/Magento/Signifyd/Model/SalesOrderGrid/NotSyncedOrderIdListProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/SalesOrderGrid/OrderGridUpdater.php b/app/code/Magento/Signifyd/Model/SalesOrderGrid/OrderGridUpdater.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/SignifydGateway/ApiCallException.php b/app/code/Magento/Signifyd/Model/SignifydGateway/ApiCallException.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/SignifydGateway/ApiClient.php b/app/code/Magento/Signifyd/Model/SignifydGateway/ApiClient.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/SignifydGateway/Client/HttpClientFactory.php b/app/code/Magento/Signifyd/Model/SignifydGateway/Client/HttpClientFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/SignifydGateway/Client/RequestBuilder.php b/app/code/Magento/Signifyd/Model/SignifydGateway/Client/RequestBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/SignifydGateway/Client/RequestSender.php b/app/code/Magento/Signifyd/Model/SignifydGateway/Client/RequestSender.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/SignifydGateway/Client/ResponseHandler.php b/app/code/Magento/Signifyd/Model/SignifydGateway/Client/ResponseHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/SignifydGateway/Debugger/BlackHole.php b/app/code/Magento/Signifyd/Model/SignifydGateway/Debugger/BlackHole.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/SignifydGateway/Debugger/DebuggerFactory.php b/app/code/Magento/Signifyd/Model/SignifydGateway/Debugger/DebuggerFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/SignifydGateway/Debugger/DebuggerInterface.php b/app/code/Magento/Signifyd/Model/SignifydGateway/Debugger/DebuggerInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/SignifydGateway/Debugger/Log.php b/app/code/Magento/Signifyd/Model/SignifydGateway/Debugger/Log.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/SignifydGateway/Gateway.php b/app/code/Magento/Signifyd/Model/SignifydGateway/Gateway.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/SignifydGateway/GatewayException.php b/app/code/Magento/Signifyd/Model/SignifydGateway/GatewayException.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/SignifydGateway/Request/AddressBuilder.php b/app/code/Magento/Signifyd/Model/SignifydGateway/Request/AddressBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/SignifydGateway/Request/CardBuilder.php b/app/code/Magento/Signifyd/Model/SignifydGateway/Request/CardBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/SignifydGateway/Request/ClientVersionBuilder.php b/app/code/Magento/Signifyd/Model/SignifydGateway/Request/ClientVersionBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/SignifydGateway/Request/CreateCaseBuilder.php b/app/code/Magento/Signifyd/Model/SignifydGateway/Request/CreateCaseBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/SignifydGateway/Request/CreateCaseBuilderInterface.php b/app/code/Magento/Signifyd/Model/SignifydGateway/Request/CreateCaseBuilderInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/SignifydGateway/Request/PurchaseBuilder.php b/app/code/Magento/Signifyd/Model/SignifydGateway/Request/PurchaseBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/SignifydGateway/Request/RecipientBuilder.php b/app/code/Magento/Signifyd/Model/SignifydGateway/Request/RecipientBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/SignifydGateway/Request/SellerBuilder.php b/app/code/Magento/Signifyd/Model/SignifydGateway/Request/SellerBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/SignifydGateway/Request/UserAccountBuilder.php b/app/code/Magento/Signifyd/Model/SignifydGateway/Request/UserAccountBuilder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/SignifydGateway/Response/WebhookMessage.php b/app/code/Magento/Signifyd/Model/SignifydGateway/Response/WebhookMessage.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/SignifydGateway/Response/WebhookMessageReader.php b/app/code/Magento/Signifyd/Model/SignifydGateway/Response/WebhookMessageReader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/SignifydGateway/Response/WebhookRequest.php b/app/code/Magento/Signifyd/Model/SignifydGateway/Response/WebhookRequest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/SignifydGateway/Response/WebhookRequestValidator.php b/app/code/Magento/Signifyd/Model/SignifydGateway/Response/WebhookRequestValidator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Model/SignifydOrderSessionId.php b/app/code/Magento/Signifyd/Model/SignifydOrderSessionId.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Observer/PlaceOrder.php b/app/code/Magento/Signifyd/Observer/PlaceOrder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Plugin/OrderPlugin.php b/app/code/Magento/Signifyd/Plugin/OrderPlugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Plugin/PaymentPlugin.php b/app/code/Magento/Signifyd/Plugin/PaymentPlugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/README.md b/app/code/Magento/Signifyd/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Setup/InstallSchema.php b/app/code/Magento/Signifyd/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Test/Unit/Block/Adminhtml/CaseInfoTest.php b/app/code/Magento/Signifyd/Test/Unit/Block/Adminhtml/CaseInfoTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Test/Unit/Controller/Webhooks/HandlerTest.php b/app/code/Magento/Signifyd/Test/Unit/Controller/Webhooks/HandlerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Test/Unit/Model/CaseServices/UpdatingServiceFactoryTest.php b/app/code/Magento/Signifyd/Test/Unit/Model/CaseServices/UpdatingServiceFactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Test/Unit/Model/CaseServices/UpdatingServiceTest.php b/app/code/Magento/Signifyd/Test/Unit/Model/CaseServices/UpdatingServiceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Test/Unit/Model/CommentsHistoryUpdaterTest.php b/app/code/Magento/Signifyd/Test/Unit/Model/CommentsHistoryUpdaterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Test/Unit/Model/CustomerOrdersTest.php b/app/code/Magento/Signifyd/Test/Unit/Model/CustomerOrdersTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Test/Unit/Model/Guarantee/CancelGuaranteeAbilityTest.php b/app/code/Magento/Signifyd/Test/Unit/Model/Guarantee/CancelGuaranteeAbilityTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Test/Unit/Model/Guarantee/CancelingServiceTest.php b/app/code/Magento/Signifyd/Test/Unit/Model/Guarantee/CancelingServiceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Test/Unit/Model/Guarantee/CreateGuaranteeAbilityTest.php b/app/code/Magento/Signifyd/Test/Unit/Model/Guarantee/CreateGuaranteeAbilityTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Test/Unit/Model/Guarantee/CreationServiceTest.php b/app/code/Magento/Signifyd/Test/Unit/Model/Guarantee/CreationServiceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Test/Unit/Model/MessageGenerators/CaseRescoreTest.php b/app/code/Magento/Signifyd/Test/Unit/Model/MessageGenerators/CaseRescoreTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Test/Unit/Model/MessageGenerators/GeneratorFactoryTest.php b/app/code/Magento/Signifyd/Test/Unit/Model/MessageGenerators/GeneratorFactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Test/Unit/Model/MessageGenerators/PatternGeneratorTest.php b/app/code/Magento/Signifyd/Test/Unit/Model/MessageGenerators/PatternGeneratorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Test/Unit/Model/OrderStateServiceTest.php b/app/code/Magento/Signifyd/Test/Unit/Model/OrderStateServiceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Test/Unit/Model/PaymentMethodMapper/XmlToArrayConfigConverterTest.php b/app/code/Magento/Signifyd/Test/Unit/Model/PaymentMethodMapper/XmlToArrayConfigConverterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Test/Unit/Model/PaymentMethodMapper/_files/expected_array.php b/app/code/Magento/Signifyd/Test/Unit/Model/PaymentMethodMapper/_files/expected_array.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Test/Unit/Model/PaymentMethodMapper/_files/signifyd_payment_mapping.xml b/app/code/Magento/Signifyd/Test/Unit/Model/PaymentMethodMapper/_files/signifyd_payment_mapping.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Test/Unit/Model/PaymentVerificationFactoryTest.php b/app/code/Magento/Signifyd/Test/Unit/Model/PaymentVerificationFactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Test/Unit/Model/SalesOrderGrid/OrderGridUpdaterTest.php b/app/code/Magento/Signifyd/Test/Unit/Model/SalesOrderGrid/OrderGridUpdaterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Test/Unit/Model/SignifydGateway/Client/HttpClientFactoryTest.php b/app/code/Magento/Signifyd/Test/Unit/Model/SignifydGateway/Client/HttpClientFactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Test/Unit/Model/SignifydGateway/Client/ResponseHandlerTest.php b/app/code/Magento/Signifyd/Test/Unit/Model/SignifydGateway/Client/ResponseHandlerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Test/Unit/Model/SignifydGateway/GatewayTest.php b/app/code/Magento/Signifyd/Test/Unit/Model/SignifydGateway/GatewayTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Test/Unit/Model/SignifydGateway/Response/WebhookMessageReaderTest.php b/app/code/Magento/Signifyd/Test/Unit/Model/SignifydGateway/Response/WebhookMessageReaderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Test/Unit/Model/SignifydGateway/Response/WebhookRequestValidatorTest.php b/app/code/Magento/Signifyd/Test/Unit/Model/SignifydGateway/Response/WebhookRequestValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Test/Unit/Model/SignifydOrderSessionIdTest.php b/app/code/Magento/Signifyd/Test/Unit/Model/SignifydOrderSessionIdTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Test/Unit/Observer/PlaceOrderTest.php b/app/code/Magento/Signifyd/Test/Unit/Observer/PlaceOrderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/Ui/Component/Listing/Column/Guarantee/Options.php b/app/code/Magento/Signifyd/Ui/Component/Listing/Column/Guarantee/Options.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/composer.json b/app/code/Magento/Signifyd/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/etc/acl.xml b/app/code/Magento/Signifyd/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/etc/adminhtml/di.xml b/app/code/Magento/Signifyd/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/etc/adminhtml/routes.xml b/app/code/Magento/Signifyd/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/etc/adminhtml/system.xml b/app/code/Magento/Signifyd/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/etc/config.xml b/app/code/Magento/Signifyd/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/etc/di.xml b/app/code/Magento/Signifyd/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/etc/events.xml b/app/code/Magento/Signifyd/etc/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/etc/frontend/di.xml b/app/code/Magento/Signifyd/etc/frontend/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/etc/frontend/routes.xml b/app/code/Magento/Signifyd/etc/frontend/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/etc/module.xml b/app/code/Magento/Signifyd/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/etc/signifyd_payment_mapping.xml b/app/code/Magento/Signifyd/etc/signifyd_payment_mapping.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/etc/signifyd_payment_mapping.xsd b/app/code/Magento/Signifyd/etc/signifyd_payment_mapping.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/i18n/en_US.csv b/app/code/Magento/Signifyd/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/registration.php b/app/code/Magento/Signifyd/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/view/adminhtml/layout/sales_order_view.xml b/app/code/Magento/Signifyd/view/adminhtml/layout/sales_order_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/view/adminhtml/templates/case_info.phtml b/app/code/Magento/Signifyd/view/adminhtml/templates/case_info.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/view/adminhtml/ui_component/sales_order_grid.xml b/app/code/Magento/Signifyd/view/adminhtml/ui_component/sales_order_grid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/view/adminhtml/web/images/logo.png b/app/code/Magento/Signifyd/view/adminhtml/web/images/logo.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/view/frontend/layout/checkout_cart_index.xml b/app/code/Magento/Signifyd/view/frontend/layout/checkout_cart_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/view/frontend/layout/checkout_index_index.xml b/app/code/Magento/Signifyd/view/frontend/layout/checkout_index_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Signifyd/view/frontend/templates/fingerprint.phtml b/app/code/Magento/Signifyd/view/frontend/templates/fingerprint.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/Block/Adminhtml/Edit.php b/app/code/Magento/Sitemap/Block/Adminhtml/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/Block/Adminhtml/Edit/Form.php b/app/code/Magento/Sitemap/Block/Adminhtml/Edit/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/Block/Adminhtml/Grid/Renderer/Action.php b/app/code/Magento/Sitemap/Block/Adminhtml/Grid/Renderer/Action.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/Block/Adminhtml/Grid/Renderer/Link.php b/app/code/Magento/Sitemap/Block/Adminhtml/Grid/Renderer/Link.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/Block/Adminhtml/Grid/Renderer/Time.php b/app/code/Magento/Sitemap/Block/Adminhtml/Grid/Renderer/Time.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/Block/Adminhtml/Sitemap.php b/app/code/Magento/Sitemap/Block/Adminhtml/Sitemap.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/Block/Robots.php b/app/code/Magento/Sitemap/Block/Robots.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap.php b/app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap/Delete.php b/app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap/Delete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap/Edit.php b/app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap/Generate.php b/app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap/Generate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap/Index.php b/app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap/NewAction.php b/app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap/NewAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap/Save.php b/app/code/Magento/Sitemap/Controller/Adminhtml/Sitemap/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/Helper/Data.php b/app/code/Magento/Sitemap/Helper/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/LICENSE.txt b/app/code/Magento/Sitemap/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/LICENSE_AFL.txt b/app/code/Magento/Sitemap/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/Model/Config/Backend/Priority.php b/app/code/Magento/Sitemap/Model/Config/Backend/Priority.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/Model/Config/Backend/Robots.php b/app/code/Magento/Sitemap/Model/Config/Backend/Robots.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/Model/Config/Source/Frequency.php b/app/code/Magento/Sitemap/Model/Config/Source/Frequency.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/Model/Observer.php b/app/code/Magento/Sitemap/Model/Observer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/Model/ResourceModel/Catalog/Category.php b/app/code/Magento/Sitemap/Model/ResourceModel/Catalog/Category.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/Model/ResourceModel/Catalog/Product.php b/app/code/Magento/Sitemap/Model/ResourceModel/Catalog/Product.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/Model/ResourceModel/Cms/Page.php b/app/code/Magento/Sitemap/Model/ResourceModel/Cms/Page.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/Model/ResourceModel/Sitemap.php b/app/code/Magento/Sitemap/Model/ResourceModel/Sitemap.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/Model/ResourceModel/Sitemap/Collection.php b/app/code/Magento/Sitemap/Model/ResourceModel/Sitemap/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/Model/Sitemap.php b/app/code/Magento/Sitemap/Model/Sitemap.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/Model/Source/Product/Image/IncludeImage.php b/app/code/Magento/Sitemap/Model/Source/Product/Image/IncludeImage.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/README.md b/app/code/Magento/Sitemap/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/Setup/InstallSchema.php b/app/code/Magento/Sitemap/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/Test/Unit/Block/RobotsTest.php b/app/code/Magento/Sitemap/Test/Unit/Block/RobotsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/Test/Unit/Controller/Adminhtml/Sitemap/DeleteTest.php b/app/code/Magento/Sitemap/Test/Unit/Controller/Adminhtml/Sitemap/DeleteTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/Test/Unit/Controller/Adminhtml/Sitemap/SaveTest.php b/app/code/Magento/Sitemap/Test/Unit/Controller/Adminhtml/Sitemap/SaveTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/Test/Unit/Helper/DataTest.php b/app/code/Magento/Sitemap/Test/Unit/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/Test/Unit/Model/Config/Backend/RobotsTest.php b/app/code/Magento/Sitemap/Test/Unit/Model/Config/Backend/RobotsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/Test/Unit/Model/ObserverTest.php b/app/code/Magento/Sitemap/Test/Unit/Model/ObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/Test/Unit/Model/SitemapTest.php b/app/code/Magento/Sitemap/Test/Unit/Model/SitemapTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/Test/Unit/Model/_files/sitemap-1-1.xml b/app/code/Magento/Sitemap/Test/Unit/Model/_files/sitemap-1-1.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/Test/Unit/Model/_files/sitemap-1-2.xml b/app/code/Magento/Sitemap/Test/Unit/Model/_files/sitemap-1-2.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/Test/Unit/Model/_files/sitemap-1-3.xml b/app/code/Magento/Sitemap/Test/Unit/Model/_files/sitemap-1-3.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/Test/Unit/Model/_files/sitemap-1-4.xml b/app/code/Magento/Sitemap/Test/Unit/Model/_files/sitemap-1-4.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/Test/Unit/Model/_files/sitemap-index.xml b/app/code/Magento/Sitemap/Test/Unit/Model/_files/sitemap-index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/Test/Unit/Model/_files/sitemap-single.xml b/app/code/Magento/Sitemap/Test/Unit/Model/_files/sitemap-single.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/composer.json b/app/code/Magento/Sitemap/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/etc/acl.xml b/app/code/Magento/Sitemap/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/etc/adminhtml/menu.xml b/app/code/Magento/Sitemap/etc/adminhtml/menu.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/etc/adminhtml/routes.xml b/app/code/Magento/Sitemap/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/etc/adminhtml/system.xml b/app/code/Magento/Sitemap/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/etc/config.xml b/app/code/Magento/Sitemap/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/etc/crontab.xml b/app/code/Magento/Sitemap/etc/crontab.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/etc/di.xml b/app/code/Magento/Sitemap/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/etc/email_templates.xml b/app/code/Magento/Sitemap/etc/email_templates.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/etc/module.xml b/app/code/Magento/Sitemap/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/i18n/en_US.csv b/app/code/Magento/Sitemap/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/registration.php b/app/code/Magento/Sitemap/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/view/adminhtml/email/generate_warnings.html b/app/code/Magento/Sitemap/view/adminhtml/email/generate_warnings.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/view/adminhtml/layout/adminhtml_sitemap_index.xml b/app/code/Magento/Sitemap/view/adminhtml/layout/adminhtml_sitemap_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/view/adminhtml/layout/adminhtml_sitemap_index_grid_block.xml b/app/code/Magento/Sitemap/view/adminhtml/layout/adminhtml_sitemap_index_grid_block.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Sitemap/view/frontend/layout/robots_index_index.xml b/app/code/Magento/Sitemap/view/frontend/layout/robots_index_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Api/Data/GroupInterface.php b/app/code/Magento/Store/Api/Data/GroupInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Api/Data/StoreConfigInterface.php b/app/code/Magento/Store/Api/Data/StoreConfigInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Api/Data/StoreInterface.php b/app/code/Magento/Store/Api/Data/StoreInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Api/Data/WebsiteInterface.php b/app/code/Magento/Store/Api/Data/WebsiteInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Api/GroupRepositoryInterface.php b/app/code/Magento/Store/Api/GroupRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Api/StoreConfigManagerInterface.php b/app/code/Magento/Store/Api/StoreConfigManagerInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Api/StoreCookieManagerInterface.php b/app/code/Magento/Store/Api/StoreCookieManagerInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Api/StoreManagementInterface.php b/app/code/Magento/Store/Api/StoreManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Api/StoreRepositoryInterface.php b/app/code/Magento/Store/Api/StoreRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Api/StoreResolverInterface.php b/app/code/Magento/Store/Api/StoreResolverInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Api/StoreWebsiteRelationInterface.php b/app/code/Magento/Store/Api/StoreWebsiteRelationInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Api/WebsiteManagementInterface.php b/app/code/Magento/Store/Api/WebsiteManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Api/WebsiteRepositoryInterface.php b/app/code/Magento/Store/Api/WebsiteRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/App/Action/Plugin/Context.php b/app/code/Magento/Store/App/Action/Plugin/Context.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/App/Action/Plugin/StoreCheck.php b/app/code/Magento/Store/App/Action/Plugin/StoreCheck.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/App/Config/Source/InitialConfigSource.php b/app/code/Magento/Store/App/Config/Source/InitialConfigSource.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/App/Config/Source/RuntimeConfigSource.php b/app/code/Magento/Store/App/Config/Source/RuntimeConfigSource.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/App/Config/Type/Scopes.php b/app/code/Magento/Store/App/Config/Type/Scopes.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/App/FrontController/Plugin/DefaultStore.php b/app/code/Magento/Store/App/FrontController/Plugin/DefaultStore.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/App/FrontController/Plugin/RequestPreprocessor.php b/app/code/Magento/Store/App/FrontController/Plugin/RequestPreprocessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/App/Request/PathInfoProcessor.php b/app/code/Magento/Store/App/Request/PathInfoProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/App/Response/Redirect.php b/app/code/Magento/Store/App/Response/Redirect.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Block/Store/Switcher.php b/app/code/Magento/Store/Block/Store/Switcher.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Block/Switcher.php b/app/code/Magento/Store/Block/Switcher.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Console/Command/StoreListCommand.php b/app/code/Magento/Store/Console/Command/StoreListCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Console/Command/WebsiteListCommand.php b/app/code/Magento/Store/Console/Command/WebsiteListCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Controller/Store/SwitchAction.php b/app/code/Magento/Store/Controller/Store/SwitchAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/LICENSE.txt b/app/code/Magento/Store/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/LICENSE_AFL.txt b/app/code/Magento/Store/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/Address/Renderer.php b/app/code/Magento/Store/Model/Address/Renderer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/App/Emulation.php b/app/code/Magento/Store/Model/App/Emulation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/Argument/Interpreter/ServiceUrl.php b/app/code/Magento/Store/Model/Argument/Interpreter/ServiceUrl.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/BaseUrlChecker.php b/app/code/Magento/Store/Model/BaseUrlChecker.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/Config/Converter.php b/app/code/Magento/Store/Model/Config/Converter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/Config/Importer.php b/app/code/Magento/Store/Model/Config/Importer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/Config/Importer/DataDifferenceCalculator.php b/app/code/Magento/Store/Model/Config/Importer/DataDifferenceCalculator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/Config/Importer/Processor/Create.php b/app/code/Magento/Store/Model/Config/Importer/Processor/Create.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/Config/Importer/Processor/Delete.php b/app/code/Magento/Store/Model/Config/Importer/Processor/Delete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/Config/Importer/Processor/ProcessorFactory.php b/app/code/Magento/Store/Model/Config/Importer/Processor/ProcessorFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/Config/Importer/Processor/ProcessorInterface.php b/app/code/Magento/Store/Model/Config/Importer/Processor/ProcessorInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/Config/Importer/Processor/Update.php b/app/code/Magento/Store/Model/Config/Importer/Processor/Update.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/Config/Placeholder.php b/app/code/Magento/Store/Model/Config/Placeholder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/Config/Processor/Fallback.php b/app/code/Magento/Store/Model/Config/Processor/Fallback.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/Config/Processor/Placeholder.php b/app/code/Magento/Store/Model/Config/Processor/Placeholder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/Config/Reader/Source/Dynamic/DefaultScope.php b/app/code/Magento/Store/Model/Config/Reader/Source/Dynamic/DefaultScope.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/Config/Reader/Source/Dynamic/Store.php b/app/code/Magento/Store/Model/Config/Reader/Source/Dynamic/Store.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/Config/Reader/Source/Dynamic/Website.php b/app/code/Magento/Store/Model/Config/Reader/Source/Dynamic/Website.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/Config/Reader/Source/Initial/DefaultScope.php b/app/code/Magento/Store/Model/Config/Reader/Source/Initial/DefaultScope.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/Config/Reader/Source/Initial/Store.php b/app/code/Magento/Store/Model/Config/Reader/Source/Initial/Store.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/Config/Reader/Source/Initial/Website.php b/app/code/Magento/Store/Model/Config/Reader/Source/Initial/Website.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/Config/StoreView.php b/app/code/Magento/Store/Model/Config/StoreView.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/Config/Validator.php b/app/code/Magento/Store/Model/Config/Validator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/Data/StoreConfig.php b/app/code/Magento/Store/Model/Data/StoreConfig.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/DefaultStoreScopeProvider.php b/app/code/Magento/Store/Model/DefaultStoreScopeProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/Group.php b/app/code/Magento/Store/Model/Group.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/GroupRepository.php b/app/code/Magento/Store/Model/GroupRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/HeaderProvider/Hsts.php b/app/code/Magento/Store/Model/HeaderProvider/Hsts.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/HeaderProvider/UpgradeInsecure.php b/app/code/Magento/Store/Model/HeaderProvider/UpgradeInsecure.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/Information.php b/app/code/Magento/Store/Model/Information.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/Message/EmptyGroupCategory.php b/app/code/Magento/Store/Model/Message/EmptyGroupCategory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/PathConfig.php b/app/code/Magento/Store/Model/PathConfig.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/Plugin/StoreCookie.php b/app/code/Magento/Store/Model/Plugin/StoreCookie.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/Resolver/Group.php b/app/code/Magento/Store/Model/Resolver/Group.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/Resolver/Store.php b/app/code/Magento/Store/Model/Resolver/Store.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/Resolver/Website.php b/app/code/Magento/Store/Model/Resolver/Website.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/ResourceModel/Config/Collection/Scoped.php b/app/code/Magento/Store/Model/ResourceModel/Config/Collection/Scoped.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/ResourceModel/Group.php b/app/code/Magento/Store/Model/ResourceModel/Group.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/ResourceModel/Group/Collection.php b/app/code/Magento/Store/Model/ResourceModel/Group/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/ResourceModel/Store.php b/app/code/Magento/Store/Model/ResourceModel/Store.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/ResourceModel/Store/Collection.php b/app/code/Magento/Store/Model/ResourceModel/Store/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/ResourceModel/StoreWebsiteRelation.php b/app/code/Magento/Store/Model/ResourceModel/StoreWebsiteRelation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/ResourceModel/Website.php b/app/code/Magento/Store/Model/ResourceModel/Website.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/ResourceModel/Website/Collection.php b/app/code/Magento/Store/Model/ResourceModel/Website/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/ResourceModel/Website/Grid/Collection.php b/app/code/Magento/Store/Model/ResourceModel/Website/Grid/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/ScopeFallbackResolver.php b/app/code/Magento/Store/Model/ScopeFallbackResolver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/ScopeInterface.php b/app/code/Magento/Store/Model/ScopeInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/ScopeTreeProvider.php b/app/code/Magento/Store/Model/ScopeTreeProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/ScopeTypeNormalizer.php b/app/code/Magento/Store/Model/ScopeTypeNormalizer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/ScopeValidator.php b/app/code/Magento/Store/Model/ScopeValidator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/Service/StoreConfigManager.php b/app/code/Magento/Store/Model/Service/StoreConfigManager.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/Store.php b/app/code/Magento/Store/Model/Store.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/StoreCookieManager.php b/app/code/Magento/Store/Model/StoreCookieManager.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/StoreIsInactiveException.php b/app/code/Magento/Store/Model/StoreIsInactiveException.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/StoreManagement.php b/app/code/Magento/Store/Model/StoreManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/StoreManager.php b/app/code/Magento/Store/Model/StoreManager.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/StoreManagerInterface.php b/app/code/Magento/Store/Model/StoreManagerInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/StoreRepository.php b/app/code/Magento/Store/Model/StoreRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/StoreResolver.php b/app/code/Magento/Store/Model/StoreResolver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/StoreResolver/Group.php b/app/code/Magento/Store/Model/StoreResolver/Group.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/StoreResolver/ReaderInterface.php b/app/code/Magento/Store/Model/StoreResolver/ReaderInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/StoreResolver/ReaderList.php b/app/code/Magento/Store/Model/StoreResolver/ReaderList.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/StoreResolver/Store.php b/app/code/Magento/Store/Model/StoreResolver/Store.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/StoreResolver/Website.php b/app/code/Magento/Store/Model/StoreResolver/Website.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/StoreScopeProvider.php b/app/code/Magento/Store/Model/StoreScopeProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/StoresConfig.php b/app/code/Magento/Store/Model/StoresConfig.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/System/Store.php b/app/code/Magento/Store/Model/System/Store.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/Website.php b/app/code/Magento/Store/Model/Website.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/WebsiteManagement.php b/app/code/Magento/Store/Model/WebsiteManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Model/WebsiteRepository.php b/app/code/Magento/Store/Model/WebsiteRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/README.md b/app/code/Magento/Store/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Setup/InstallSchema.php b/app/code/Magento/Store/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Setup/UpgradeData.php b/app/code/Magento/Store/Setup/UpgradeData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Setup/UpgradeSchema.php b/app/code/Magento/Store/Setup/UpgradeSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/App/Action/Plugin/ContextTest.php b/app/code/Magento/Store/Test/Unit/App/Action/Plugin/ContextTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/App/Action/Plugin/StoreCheckTest.php b/app/code/Magento/Store/Test/Unit/App/Action/Plugin/StoreCheckTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/App/Config/Source/InitialConfigSourceTest.php b/app/code/Magento/Store/Test/Unit/App/Config/Source/InitialConfigSourceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/App/Config/Source/RuntimeConfigSourceTest.php b/app/code/Magento/Store/Test/Unit/App/Config/Source/RuntimeConfigSourceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/App/Config/Type/ScopesTest.php b/app/code/Magento/Store/Test/Unit/App/Config/Type/ScopesTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/App/FrontController/Plugin/RequestPreprocessorTest.php b/app/code/Magento/Store/Test/Unit/App/FrontController/Plugin/RequestPreprocessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/App/Request/PathInfoProcessorTest.php b/app/code/Magento/Store/Test/Unit/App/Request/PathInfoProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/App/Response/RedirectTest.php b/app/code/Magento/Store/Test/Unit/App/Response/RedirectTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Block/Store/SwitcherTest.php b/app/code/Magento/Store/Test/Unit/Block/Store/SwitcherTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Block/SwitcherTest.php b/app/code/Magento/Store/Test/Unit/Block/SwitcherTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Console/Command/StoreListCommandTest.php b/app/code/Magento/Store/Test/Unit/Console/Command/StoreListCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Console/Command/WebsiteListCommandTest.php b/app/code/Magento/Store/Test/Unit/Console/Command/WebsiteListCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Controller/Store/SwitchActionTest.php b/app/code/Magento/Store/Test/Unit/Controller/Store/SwitchActionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Model/Address/RendererTest.php b/app/code/Magento/Store/Test/Unit/Model/Address/RendererTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Model/App/EmulationTest.php b/app/code/Magento/Store/Test/Unit/Model/App/EmulationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Model/BaseUrlCheckerTest.php b/app/code/Magento/Store/Test/Unit/Model/BaseUrlCheckerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Model/Config/ConverterTest.php b/app/code/Magento/Store/Test/Unit/Model/Config/ConverterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Model/Config/Importer/DataDifferenceCalculatorTest.php b/app/code/Magento/Store/Test/Unit/Model/Config/Importer/DataDifferenceCalculatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Model/Config/Importer/Processor/CreateTest.php b/app/code/Magento/Store/Test/Unit/Model/Config/Importer/Processor/CreateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Model/Config/Importer/Processor/DeleteTest.php b/app/code/Magento/Store/Test/Unit/Model/Config/Importer/Processor/DeleteTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Model/Config/Importer/Processor/ProcessorFactoryTest.php b/app/code/Magento/Store/Test/Unit/Model/Config/Importer/Processor/ProcessorFactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Model/Config/Importer/Processor/UpdateTest.php b/app/code/Magento/Store/Test/Unit/Model/Config/Importer/Processor/UpdateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Model/Config/ImporterTest.php b/app/code/Magento/Store/Test/Unit/Model/Config/ImporterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Model/Config/PlaceholderTest.php b/app/code/Magento/Store/Test/Unit/Model/Config/PlaceholderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Model/Config/Processor/PlaceholderTest.php b/app/code/Magento/Store/Test/Unit/Model/Config/Processor/PlaceholderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Model/Config/Reader/Source/Dynamic/DefaultScopeTest.php b/app/code/Magento/Store/Test/Unit/Model/Config/Reader/Source/Dynamic/DefaultScopeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Model/Config/Reader/Source/Dynamic/StoreTest.php b/app/code/Magento/Store/Test/Unit/Model/Config/Reader/Source/Dynamic/StoreTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Model/Config/Reader/Source/Dynamic/WebsiteTest.php b/app/code/Magento/Store/Test/Unit/Model/Config/Reader/Source/Dynamic/WebsiteTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Model/Config/Reader/Source/Initial/DefaultScopeTest.php b/app/code/Magento/Store/Test/Unit/Model/Config/Reader/Source/Initial/DefaultScopeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Model/Config/Reader/Source/Initial/StoreTest.php b/app/code/Magento/Store/Test/Unit/Model/Config/Reader/Source/Initial/StoreTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Model/Config/Reader/Source/Initial/WebsiteTest.php b/app/code/Magento/Store/Test/Unit/Model/Config/Reader/Source/Initial/WebsiteTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Model/Config/ValidatorTest.php b/app/code/Magento/Store/Test/Unit/Model/Config/ValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Model/HeaderProvider/HstsTest.php b/app/code/Magento/Store/Test/Unit/Model/HeaderProvider/HstsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Model/HeaderProvider/UpgradeInsecureTest.php b/app/code/Magento/Store/Test/Unit/Model/HeaderProvider/UpgradeInsecureTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Model/InformationTest.php b/app/code/Magento/Store/Test/Unit/Model/InformationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Model/Message/EmptyGroupCategoryTest.php b/app/code/Magento/Store/Test/Unit/Model/Message/EmptyGroupCategoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Model/PathConfigTest.php b/app/code/Magento/Store/Test/Unit/Model/PathConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Model/Plugin/StoreCookieTest.php b/app/code/Magento/Store/Test/Unit/Model/Plugin/StoreCookieTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Model/Resolver/GroupTest.php b/app/code/Magento/Store/Test/Unit/Model/Resolver/GroupTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Model/Resolver/StoreTest.php b/app/code/Magento/Store/Test/Unit/Model/Resolver/StoreTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Model/Resolver/WebsiteTest.php b/app/code/Magento/Store/Test/Unit/Model/Resolver/WebsiteTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Model/ResourceModel/StoreWebsiteRelationTest.php b/app/code/Magento/Store/Test/Unit/Model/ResourceModel/StoreWebsiteRelationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Model/ScopeFallbackResolverTest.php b/app/code/Magento/Store/Test/Unit/Model/ScopeFallbackResolverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Model/ScopeTreeProviderTest.php b/app/code/Magento/Store/Test/Unit/Model/ScopeTreeProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Model/ScopeTypeNormalizerTest.php b/app/code/Magento/Store/Test/Unit/Model/ScopeTypeNormalizerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Model/ScopeValidatorTest.php b/app/code/Magento/Store/Test/Unit/Model/ScopeValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Model/Service/StoreConfigManagerTest.php b/app/code/Magento/Store/Test/Unit/Model/Service/StoreConfigManagerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Model/StoreManagementTest.php b/app/code/Magento/Store/Test/Unit/Model/StoreManagementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Model/StoreManagerTest.php b/app/code/Magento/Store/Test/Unit/Model/StoreManagerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Model/StoreRepositoryTest.php b/app/code/Magento/Store/Test/Unit/Model/StoreRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Model/StoreTest.php b/app/code/Magento/Store/Test/Unit/Model/StoreTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Model/StoresConfigTest.php b/app/code/Magento/Store/Test/Unit/Model/StoresConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Model/System/StoreTest.php b/app/code/Magento/Store/Test/Unit/Model/System/StoreTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Model/WebsiteManagementTest.php b/app/code/Magento/Store/Test/Unit/Model/WebsiteManagementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Model/WebsiteRepositoryTest.php b/app/code/Magento/Store/Test/Unit/Model/WebsiteRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Model/WebsiteTest.php b/app/code/Magento/Store/Test/Unit/Model/WebsiteTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Setup/UpgradeDataTest.php b/app/code/Magento/Store/Test/Unit/Setup/UpgradeDataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Ui/Component/Listing/Column/StoreTest.php b/app/code/Magento/Store/Test/Unit/Ui/Component/Listing/Column/StoreTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Url/Plugin/RouteParamsResolverTest.php b/app/code/Magento/Store/Test/Unit/Url/Plugin/RouteParamsResolverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Test/Unit/Url/Plugin/SecurityInfoTest.php b/app/code/Magento/Store/Test/Unit/Url/Plugin/SecurityInfoTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Ui/Component/Form/Fieldset/Websites.php b/app/code/Magento/Store/Ui/Component/Form/Fieldset/Websites.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Ui/Component/Listing/Column/Store.php b/app/code/Magento/Store/Ui/Component/Listing/Column/Store.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Ui/Component/Listing/Column/Store/Options.php b/app/code/Magento/Store/Ui/Component/Listing/Column/Store/Options.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Url/Plugin/RouteParamsResolver.php b/app/code/Magento/Store/Url/Plugin/RouteParamsResolver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/Url/Plugin/SecurityInfo.php b/app/code/Magento/Store/Url/Plugin/SecurityInfo.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/composer.json b/app/code/Magento/Store/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/etc/adminhtml/di.xml b/app/code/Magento/Store/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/etc/cache.xml b/app/code/Magento/Store/etc/cache.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/etc/config.xml b/app/code/Magento/Store/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/etc/config.xsd b/app/code/Magento/Store/etc/config.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/etc/data_source/website.xml b/app/code/Magento/Store/etc/data_source/website.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/etc/di.xml b/app/code/Magento/Store/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/etc/frontend/di.xml b/app/code/Magento/Store/etc/frontend/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/etc/frontend/routes.xml b/app/code/Magento/Store/etc/frontend/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/etc/frontend/sections.xml b/app/code/Magento/Store/etc/frontend/sections.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/etc/module.xml b/app/code/Magento/Store/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/etc/webapi.xml b/app/code/Magento/Store/etc/webapi.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/i18n/en_US.csv b/app/code/Magento/Store/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/registration.php b/app/code/Magento/Store/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/view/frontend/templates/switch/flags.phtml b/app/code/Magento/Store/view/frontend/templates/switch/flags.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/view/frontend/templates/switch/languages.phtml b/app/code/Magento/Store/view/frontend/templates/switch/languages.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Store/view/frontend/templates/switch/stores.phtml b/app/code/Magento/Store/view/frontend/templates/switch/stores.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/Block/Index.php b/app/code/Magento/Swagger/Block/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/Controller/Index/Index.php b/app/code/Magento/Swagger/Controller/Index/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/LICENSE.txt b/app/code/Magento/Swagger/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/LICENSE_AFL.txt b/app/code/Magento/Swagger/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/README.md b/app/code/Magento/Swagger/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/Test/Unit/Controller/Index/IndexTest.php b/app/code/Magento/Swagger/Test/Unit/Controller/Index/IndexTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/composer.json b/app/code/Magento/Swagger/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/etc/frontend/routes.xml b/app/code/Magento/Swagger/etc/frontend/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/etc/module.xml b/app/code/Magento/Swagger/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/registration.php b/app/code/Magento/Swagger/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/view/frontend/layout/swagger_index_index.xml b/app/code/Magento/Swagger/view/frontend/layout/swagger_index_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/view/frontend/templates/swagger-ui/LICENSE.txt b/app/code/Magento/Swagger/view/frontend/templates/swagger-ui/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/view/frontend/templates/swagger-ui/index.phtml b/app/code/Magento/Swagger/view/frontend/templates/swagger-ui/index.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/view/frontend/web/swagger-ui/LICENSE.txt b/app/code/Magento/Swagger/view/frontend/web/swagger-ui/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/view/frontend/web/swagger-ui/css/print.css b/app/code/Magento/Swagger/view/frontend/web/swagger-ui/css/print.css
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/view/frontend/web/swagger-ui/css/reset.css b/app/code/Magento/Swagger/view/frontend/web/swagger-ui/css/reset.css
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/view/frontend/web/swagger-ui/css/screen.css b/app/code/Magento/Swagger/view/frontend/web/swagger-ui/css/screen.css
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/view/frontend/web/swagger-ui/css/style.css b/app/code/Magento/Swagger/view/frontend/web/swagger-ui/css/style.css
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/view/frontend/web/swagger-ui/css/typography.css b/app/code/Magento/Swagger/view/frontend/web/swagger-ui/css/typography.css
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/view/frontend/web/swagger-ui/fonts/droid-sans-v6-latin-700.eot b/app/code/Magento/Swagger/view/frontend/web/swagger-ui/fonts/droid-sans-v6-latin-700.eot
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/view/frontend/web/swagger-ui/fonts/droid-sans-v6-latin-700.svg b/app/code/Magento/Swagger/view/frontend/web/swagger-ui/fonts/droid-sans-v6-latin-700.svg
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/view/frontend/web/swagger-ui/fonts/droid-sans-v6-latin-700.ttf b/app/code/Magento/Swagger/view/frontend/web/swagger-ui/fonts/droid-sans-v6-latin-700.ttf
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/view/frontend/web/swagger-ui/fonts/droid-sans-v6-latin-700.woff b/app/code/Magento/Swagger/view/frontend/web/swagger-ui/fonts/droid-sans-v6-latin-700.woff
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/view/frontend/web/swagger-ui/fonts/droid-sans-v6-latin-700.woff2 b/app/code/Magento/Swagger/view/frontend/web/swagger-ui/fonts/droid-sans-v6-latin-700.woff2
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/view/frontend/web/swagger-ui/fonts/droid-sans-v6-latin-regular.eot b/app/code/Magento/Swagger/view/frontend/web/swagger-ui/fonts/droid-sans-v6-latin-regular.eot
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/view/frontend/web/swagger-ui/fonts/droid-sans-v6-latin-regular.svg b/app/code/Magento/Swagger/view/frontend/web/swagger-ui/fonts/droid-sans-v6-latin-regular.svg
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/view/frontend/web/swagger-ui/fonts/droid-sans-v6-latin-regular.ttf b/app/code/Magento/Swagger/view/frontend/web/swagger-ui/fonts/droid-sans-v6-latin-regular.ttf
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/view/frontend/web/swagger-ui/fonts/droid-sans-v6-latin-regular.woff b/app/code/Magento/Swagger/view/frontend/web/swagger-ui/fonts/droid-sans-v6-latin-regular.woff
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/view/frontend/web/swagger-ui/fonts/droid-sans-v6-latin-regular.woff2 b/app/code/Magento/Swagger/view/frontend/web/swagger-ui/fonts/droid-sans-v6-latin-regular.woff2
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/view/frontend/web/swagger-ui/images/explorer_icons.png b/app/code/Magento/Swagger/view/frontend/web/swagger-ui/images/explorer_icons.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/view/frontend/web/swagger-ui/images/logo_small.png b/app/code/Magento/Swagger/view/frontend/web/swagger-ui/images/logo_small.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/view/frontend/web/swagger-ui/images/pet_store_api.png b/app/code/Magento/Swagger/view/frontend/web/swagger-ui/images/pet_store_api.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/view/frontend/web/swagger-ui/images/throbber.gif b/app/code/Magento/Swagger/view/frontend/web/swagger-ui/images/throbber.gif
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/view/frontend/web/swagger-ui/images/wordnik_api.png b/app/code/Magento/Swagger/view/frontend/web/swagger-ui/images/wordnik_api.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lang/en.js b/app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lang/en.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lang/es.js b/app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lang/es.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lang/pt.js b/app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lang/pt.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lang/ru.js b/app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lang/ru.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lang/translator.js b/app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lang/translator.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lib/backbone-min.js b/app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lib/backbone-min.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lib/handlebars.min-v4.0.10.js b/app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lib/handlebars.min-v4.0.10.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lib/highlight.9.1.0.pack.js b/app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lib/highlight.9.1.0.pack.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lib/highlight.9.1.0.pack_extended.js b/app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lib/highlight.9.1.0.pack_extended.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lib/jquery-1.8.0.min.js b/app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lib/jquery-1.8.0.min.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lib/jquery.ba-bbq.min.js b/app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lib/jquery.ba-bbq.min.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lib/jquery.slideto.min.js b/app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lib/jquery.slideto.min.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lib/jquery.wiggle.min.js b/app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lib/jquery.wiggle.min.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lib/jsoneditor.min.js b/app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lib/jsoneditor.min.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lib/lodash.min.js b/app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lib/lodash.min.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lib/marked.js b/app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lib/marked.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lib/object-assign-pollyfill.js b/app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lib/object-assign-pollyfill.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lib/swagger-oauth.js b/app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lib/swagger-oauth.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lib/underscore-min.js b/app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lib/underscore-min.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lib/underscore-min.map b/app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/lib/underscore-min.map
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/magento-swagger.js b/app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/magento-swagger.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/swagger-ui.js b/app/code/Magento/Swagger/view/frontend/web/swagger-ui/js/swagger-ui.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Block/Adminhtml/Attribute/Edit/Options/AbstractSwatch.php b/app/code/Magento/Swatches/Block/Adminhtml/Attribute/Edit/Options/AbstractSwatch.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Block/Adminhtml/Attribute/Edit/Options/Text.php b/app/code/Magento/Swatches/Block/Adminhtml/Attribute/Edit/Options/Text.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Block/Adminhtml/Attribute/Edit/Options/Visual.php b/app/code/Magento/Swatches/Block/Adminhtml/Attribute/Edit/Options/Visual.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Block/Adminhtml/Product/Attribute/Edit/Form.php b/app/code/Magento/Swatches/Block/Adminhtml/Product/Attribute/Edit/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Block/LayeredNavigation/RenderLayered.php b/app/code/Magento/Swatches/Block/LayeredNavigation/RenderLayered.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Block/Product/Renderer/Configurable.php b/app/code/Magento/Swatches/Block/Product/Renderer/Configurable.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Block/Product/Renderer/Listing/Configurable.php b/app/code/Magento/Swatches/Block/Product/Renderer/Listing/Configurable.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Controller/Adminhtml/Iframe/Show.php b/app/code/Magento/Swatches/Controller/Adminhtml/Iframe/Show.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Controller/Adminhtml/Product/Attribute/Plugin/Save.php b/app/code/Magento/Swatches/Controller/Adminhtml/Product/Attribute/Plugin/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Controller/Ajax/Media.php b/app/code/Magento/Swatches/Controller/Ajax/Media.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Helper/Data.php b/app/code/Magento/Swatches/Helper/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Helper/Media.php b/app/code/Magento/Swatches/Helper/Media.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/LICENSE.txt b/app/code/Magento/Swatches/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/LICENSE_AFL.txt b/app/code/Magento/Swatches/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Model/AttributesList.php b/app/code/Magento/Swatches/Model/AttributesList.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Model/Form/Element/AbstractSwatch.php b/app/code/Magento/Swatches/Model/Form/Element/AbstractSwatch.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Model/Form/Element/SwatchText.php b/app/code/Magento/Swatches/Model/Form/Element/SwatchText.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Model/Form/Element/SwatchVisual.php b/app/code/Magento/Swatches/Model/Form/Element/SwatchVisual.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Model/Plugin/Configurable.php b/app/code/Magento/Swatches/Model/Plugin/Configurable.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Model/Plugin/EavAttribute.php b/app/code/Magento/Swatches/Model/Plugin/EavAttribute.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Model/Plugin/FilterRenderer.php b/app/code/Magento/Swatches/Model/Plugin/FilterRenderer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Model/Plugin/Product.php b/app/code/Magento/Swatches/Model/Plugin/Product.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Model/Plugin/ProductImage.php b/app/code/Magento/Swatches/Model/Plugin/ProductImage.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Model/ResourceModel/Swatch.php b/app/code/Magento/Swatches/Model/ResourceModel/Swatch.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Model/ResourceModel/Swatch/Collection.php b/app/code/Magento/Swatches/Model/ResourceModel/Swatch/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Model/Swatch.php b/app/code/Magento/Swatches/Model/Swatch.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Model/SwatchAttributeCodes.php b/app/code/Magento/Swatches/Model/SwatchAttributeCodes.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Model/SwatchAttributesProvider.php b/app/code/Magento/Swatches/Model/SwatchAttributesProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Observer/AddFieldsToAttributeObserver.php b/app/code/Magento/Swatches/Observer/AddFieldsToAttributeObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Observer/AddSwatchAttributeTypeObserver.php b/app/code/Magento/Swatches/Observer/AddSwatchAttributeTypeObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Plugin/Catalog/CacheInvalidate.php b/app/code/Magento/Swatches/Plugin/Catalog/CacheInvalidate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/README.md b/app/code/Magento/Swatches/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Setup/InstallData.php b/app/code/Magento/Swatches/Setup/InstallData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Setup/InstallSchema.php b/app/code/Magento/Swatches/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Setup/UpgradeData.php b/app/code/Magento/Swatches/Setup/UpgradeData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Test/Unit/Block/Adminhtml/Attribute/Edit/Options/AbstractSwatchTest.php b/app/code/Magento/Swatches/Test/Unit/Block/Adminhtml/Attribute/Edit/Options/AbstractSwatchTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Test/Unit/Block/Adminhtml/Product/Attribute/Edit/FormTest.php b/app/code/Magento/Swatches/Test/Unit/Block/Adminhtml/Product/Attribute/Edit/FormTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Test/Unit/Block/LayeredNavigation/RenderLayeredTest.php b/app/code/Magento/Swatches/Test/Unit/Block/LayeredNavigation/RenderLayeredTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Test/Unit/Block/Product/Renderer/ConfigurableTest.php b/app/code/Magento/Swatches/Test/Unit/Block/Product/Renderer/ConfigurableTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Test/Unit/Block/Product/Renderer/Listing/ConfigurableTest.php b/app/code/Magento/Swatches/Test/Unit/Block/Product/Renderer/Listing/ConfigurableTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Test/Unit/Controller/Adminhtml/Iframe/ShowTest.php b/app/code/Magento/Swatches/Test/Unit/Controller/Adminhtml/Iframe/ShowTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Test/Unit/Controller/Adminhtml/Product/Attribute/Plugin/SaveTest.php b/app/code/Magento/Swatches/Test/Unit/Controller/Adminhtml/Product/Attribute/Plugin/SaveTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Test/Unit/Controller/Ajax/MediaTest.php b/app/code/Magento/Swatches/Test/Unit/Controller/Ajax/MediaTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Test/Unit/Helper/DataTest.php b/app/code/Magento/Swatches/Test/Unit/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Test/Unit/Helper/MediaTest.php b/app/code/Magento/Swatches/Test/Unit/Helper/MediaTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Test/Unit/Model/AttributesListTest.php b/app/code/Magento/Swatches/Test/Unit/Model/AttributesListTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Test/Unit/Model/Form/Element/AbstractSwatchTest.php b/app/code/Magento/Swatches/Test/Unit/Model/Form/Element/AbstractSwatchTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Test/Unit/Model/Plugin/ConfigurableTest.php b/app/code/Magento/Swatches/Test/Unit/Model/Plugin/ConfigurableTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Test/Unit/Model/Plugin/EavAttributeTest.php b/app/code/Magento/Swatches/Test/Unit/Model/Plugin/EavAttributeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Test/Unit/Model/Plugin/FilterRendererTest.php b/app/code/Magento/Swatches/Test/Unit/Model/Plugin/FilterRendererTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Test/Unit/Model/Plugin/ProductImageTest.php b/app/code/Magento/Swatches/Test/Unit/Model/Plugin/ProductImageTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Test/Unit/Model/Plugin/ProductTest.php b/app/code/Magento/Swatches/Test/Unit/Model/Plugin/ProductTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Test/Unit/Model/SwatchAttributeCodesTest.php b/app/code/Magento/Swatches/Test/Unit/Model/SwatchAttributeCodesTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Test/Unit/Model/SwatchAttributesProviderTest.php b/app/code/Magento/Swatches/Test/Unit/Model/SwatchAttributesProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Test/Unit/Observer/AddFieldsToAttributeObserverTest.php b/app/code/Magento/Swatches/Test/Unit/Observer/AddFieldsToAttributeObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Test/Unit/Observer/AddSwatchAttributeTypeObserverTest.php b/app/code/Magento/Swatches/Test/Unit/Observer/AddSwatchAttributeTypeObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/Test/Unit/Plugin/Catalog/CacheInvalidateTest.php b/app/code/Magento/Swatches/Test/Unit/Plugin/Catalog/CacheInvalidateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/composer.json b/app/code/Magento/Swatches/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/etc/acl.xml b/app/code/Magento/Swatches/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/etc/adminhtml/di.xml b/app/code/Magento/Swatches/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/etc/adminhtml/events.xml b/app/code/Magento/Swatches/etc/adminhtml/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/etc/adminhtml/routes.xml b/app/code/Magento/Swatches/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/etc/adminhtml/system.xml b/app/code/Magento/Swatches/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/etc/config.xml b/app/code/Magento/Swatches/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/etc/di.xml b/app/code/Magento/Swatches/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/etc/frontend/routes.xml b/app/code/Magento/Swatches/etc/frontend/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/etc/module.xml b/app/code/Magento/Swatches/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/etc/view.xml b/app/code/Magento/Swatches/etc/view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/i18n/de_DE.csv b/app/code/Magento/Swatches/i18n/de_DE.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/i18n/en_US.csv b/app/code/Magento/Swatches/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/i18n/es_ES.csv b/app/code/Magento/Swatches/i18n/es_ES.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/i18n/fr_FR.csv b/app/code/Magento/Swatches/i18n/fr_FR.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/i18n/nl_NL.csv b/app/code/Magento/Swatches/i18n/nl_NL.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/i18n/pt_BR.csv b/app/code/Magento/Swatches/i18n/pt_BR.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/i18n/zh_Hans_CN.csv b/app/code/Magento/Swatches/i18n/zh_Hans_CN.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/registration.php b/app/code/Magento/Swatches/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/view/adminhtml/layout/catalog_product_attribute_edit.xml b/app/code/Magento/Swatches/view/adminhtml/layout/catalog_product_attribute_edit.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/view/adminhtml/layout/catalog_product_form.xml b/app/code/Magento/Swatches/view/adminhtml/layout/catalog_product_form.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/view/adminhtml/layout/catalog_product_superconfig_config.xml b/app/code/Magento/Swatches/view/adminhtml/layout/catalog_product_superconfig_config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/view/adminhtml/requirejs-config.js b/app/code/Magento/Swatches/view/adminhtml/requirejs-config.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/view/adminhtml/templates/catalog/product/attribute/js.phtml b/app/code/Magento/Swatches/view/adminhtml/templates/catalog/product/attribute/js.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/view/adminhtml/templates/catalog/product/attribute/text.phtml b/app/code/Magento/Swatches/view/adminhtml/templates/catalog/product/attribute/text.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/view/adminhtml/templates/catalog/product/attribute/visual.phtml b/app/code/Magento/Swatches/view/adminhtml/templates/catalog/product/attribute/visual.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/view/adminhtml/templates/catalog/product/edit/attribute/steps/attributes_values.phtml b/app/code/Magento/Swatches/view/adminhtml/templates/catalog/product/edit/attribute/steps/attributes_values.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/view/adminhtml/ui_component/design_config_form.xml b/app/code/Magento/Swatches/view/adminhtml/ui_component/design_config_form.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/view/adminhtml/ui_component/product_attribute_add_form.xml b/app/code/Magento/Swatches/view/adminhtml/ui_component/product_attribute_add_form.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/view/adminhtml/web/css/swatches.css b/app/code/Magento/Swatches/view/adminhtml/web/css/swatches.css
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/view/adminhtml/web/js/form/element/swatch-visual.js b/app/code/Magento/Swatches/view/adminhtml/web/js/form/element/swatch-visual.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/view/adminhtml/web/js/product-attributes.js b/app/code/Magento/Swatches/view/adminhtml/web/js/product-attributes.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/view/adminhtml/web/js/text.js b/app/code/Magento/Swatches/view/adminhtml/web/js/text.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/view/adminhtml/web/js/type-change.js b/app/code/Magento/Swatches/view/adminhtml/web/js/type-change.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/view/adminhtml/web/js/visual.js b/app/code/Magento/Swatches/view/adminhtml/web/js/visual.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/view/adminhtml/web/template/swatch-visual.html b/app/code/Magento/Swatches/view/adminhtml/web/template/swatch-visual.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/view/frontend/layout/catalog_category_view.xml b/app/code/Magento/Swatches/view/frontend/layout/catalog_category_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/view/frontend/layout/catalogsearch_advanced_result.xml b/app/code/Magento/Swatches/view/frontend/layout/catalogsearch_advanced_result.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/view/frontend/layout/catalogsearch_result_index.xml b/app/code/Magento/Swatches/view/frontend/layout/catalogsearch_result_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/view/frontend/layout/checkout_cart_configure_type_configurable.xml b/app/code/Magento/Swatches/view/frontend/layout/checkout_cart_configure_type_configurable.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/view/frontend/layout/wishlist_index_configure_type_configurable.xml b/app/code/Magento/Swatches/view/frontend/layout/wishlist_index_configure_type_configurable.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/view/frontend/templates/product/layered/renderer.phtml b/app/code/Magento/Swatches/view/frontend/templates/product/layered/renderer.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/view/frontend/templates/product/listing/renderer.phtml b/app/code/Magento/Swatches/view/frontend/templates/product/listing/renderer.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/view/frontend/templates/product/view/renderer.phtml b/app/code/Magento/Swatches/view/frontend/templates/product/view/renderer.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/view/frontend/web/css/swatches.css b/app/code/Magento/Swatches/view/frontend/web/css/swatches.css
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/view/frontend/web/images/loader-2.gif b/app/code/Magento/Swatches/view/frontend/web/images/loader-2.gif
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/view/frontend/web/js/catalog-add-to-cart.js b/app/code/Magento/Swatches/view/frontend/web/js/catalog-add-to-cart.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/view/frontend/web/js/configurable-customer-data.js b/app/code/Magento/Swatches/view/frontend/web/js/configurable-customer-data.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Swatches/view/frontend/web/js/swatch-renderer.js b/app/code/Magento/Swatches/view/frontend/web/js/swatch-renderer.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SwatchesLayeredNavigation/LICENSE.txt b/app/code/Magento/SwatchesLayeredNavigation/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SwatchesLayeredNavigation/LICENSE_AFL.txt b/app/code/Magento/SwatchesLayeredNavigation/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SwatchesLayeredNavigation/README.md b/app/code/Magento/SwatchesLayeredNavigation/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SwatchesLayeredNavigation/composer.json b/app/code/Magento/SwatchesLayeredNavigation/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SwatchesLayeredNavigation/etc/module.xml b/app/code/Magento/SwatchesLayeredNavigation/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SwatchesLayeredNavigation/registration.php b/app/code/Magento/SwatchesLayeredNavigation/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/SwatchesLayeredNavigation/view/adminhtml/ui_component/product_attribute_add_form.xml b/app/code/Magento/SwatchesLayeredNavigation/view/adminhtml/ui_component/product_attribute_add_form.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Api/Data/AppliedTaxInterface.php b/app/code/Magento/Tax/Api/Data/AppliedTaxInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Api/Data/AppliedTaxRateInterface.php b/app/code/Magento/Tax/Api/Data/AppliedTaxRateInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Api/Data/GrandTotalDetailsInterface.php b/app/code/Magento/Tax/Api/Data/GrandTotalDetailsInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Api/Data/GrandTotalRatesInterface.php b/app/code/Magento/Tax/Api/Data/GrandTotalRatesInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Api/Data/OrderTaxDetailsAppliedTaxInterface.php b/app/code/Magento/Tax/Api/Data/OrderTaxDetailsAppliedTaxInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Api/Data/OrderTaxDetailsInterface.php b/app/code/Magento/Tax/Api/Data/OrderTaxDetailsInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Api/Data/OrderTaxDetailsItemInterface.php b/app/code/Magento/Tax/Api/Data/OrderTaxDetailsItemInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Api/Data/QuoteDetailsInterface.php b/app/code/Magento/Tax/Api/Data/QuoteDetailsInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Api/Data/QuoteDetailsItemInterface.php b/app/code/Magento/Tax/Api/Data/QuoteDetailsItemInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Api/Data/TaxClassInterface.php b/app/code/Magento/Tax/Api/Data/TaxClassInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Api/Data/TaxClassKeyInterface.php b/app/code/Magento/Tax/Api/Data/TaxClassKeyInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Api/Data/TaxClassSearchResultsInterface.php b/app/code/Magento/Tax/Api/Data/TaxClassSearchResultsInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Api/Data/TaxDetailsInterface.php b/app/code/Magento/Tax/Api/Data/TaxDetailsInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Api/Data/TaxDetailsItemInterface.php b/app/code/Magento/Tax/Api/Data/TaxDetailsItemInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Api/Data/TaxRateInterface.php b/app/code/Magento/Tax/Api/Data/TaxRateInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Api/Data/TaxRateSearchResultsInterface.php b/app/code/Magento/Tax/Api/Data/TaxRateSearchResultsInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Api/Data/TaxRateTitleInterface.php b/app/code/Magento/Tax/Api/Data/TaxRateTitleInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Api/Data/TaxRuleInterface.php b/app/code/Magento/Tax/Api/Data/TaxRuleInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Api/Data/TaxRuleSearchResultsInterface.php b/app/code/Magento/Tax/Api/Data/TaxRuleSearchResultsInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Api/OrderTaxManagementInterface.php b/app/code/Magento/Tax/Api/OrderTaxManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Api/TaxAddressManagerInterface.php b/app/code/Magento/Tax/Api/TaxAddressManagerInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Api/TaxCalculationInterface.php b/app/code/Magento/Tax/Api/TaxCalculationInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Api/TaxClassManagementInterface.php b/app/code/Magento/Tax/Api/TaxClassManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Api/TaxClassRepositoryInterface.php b/app/code/Magento/Tax/Api/TaxClassRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Api/TaxRateManagementInterface.php b/app/code/Magento/Tax/Api/TaxRateManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Api/TaxRateRepositoryInterface.php b/app/code/Magento/Tax/Api/TaxRateRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Api/TaxRuleRepositoryInterface.php b/app/code/Magento/Tax/Api/TaxRuleRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Block/Adminhtml/Frontend/Region/Updater.php b/app/code/Magento/Tax/Block/Adminhtml/Frontend/Region/Updater.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Block/Adminhtml/Items/Price/Renderer.php b/app/code/Magento/Tax/Block/Adminhtml/Items/Price/Renderer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Block/Adminhtml/Rate/Form.php b/app/code/Magento/Tax/Block/Adminhtml/Rate/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Block/Adminhtml/Rate/Grid/Renderer/Data.php b/app/code/Magento/Tax/Block/Adminhtml/Rate/Grid/Renderer/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Block/Adminhtml/Rate/Title.php b/app/code/Magento/Tax/Block/Adminhtml/Rate/Title.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Block/Adminhtml/Rate/Title/Fieldset.php b/app/code/Magento/Tax/Block/Adminhtml/Rate/Title/Fieldset.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Block/Adminhtml/Rate/Toolbar/Add.php b/app/code/Magento/Tax/Block/Adminhtml/Rate/Toolbar/Add.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Block/Adminhtml/Rate/Toolbar/Save.php b/app/code/Magento/Tax/Block/Adminhtml/Rate/Toolbar/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Block/Adminhtml/Rule.php b/app/code/Magento/Tax/Block/Adminhtml/Rule.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Block/Adminhtml/Rule/Edit.php b/app/code/Magento/Tax/Block/Adminhtml/Rule/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Block/Adminhtml/Rule/Edit/Form.php b/app/code/Magento/Tax/Block/Adminhtml/Rule/Edit/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Block/Checkout/Discount.php b/app/code/Magento/Tax/Block/Checkout/Discount.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Block/Checkout/Grandtotal.php b/app/code/Magento/Tax/Block/Checkout/Grandtotal.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Block/Checkout/Shipping.php b/app/code/Magento/Tax/Block/Checkout/Shipping.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Block/Checkout/Shipping/Price.php b/app/code/Magento/Tax/Block/Checkout/Shipping/Price.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Block/Checkout/Subtotal.php b/app/code/Magento/Tax/Block/Checkout/Subtotal.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Block/Checkout/Tax.php b/app/code/Magento/Tax/Block/Checkout/Tax.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Block/Grid/Renderer/Codes.php b/app/code/Magento/Tax/Block/Grid/Renderer/Codes.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Block/Item/Price/Renderer.php b/app/code/Magento/Tax/Block/Item/Price/Renderer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Block/Sales/Order/Tax.php b/app/code/Magento/Tax/Block/Sales/Order/Tax.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Controller/Adminhtml/Rate.php b/app/code/Magento/Tax/Controller/Adminhtml/Rate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Controller/Adminhtml/Rate/Add.php b/app/code/Magento/Tax/Controller/Adminhtml/Rate/Add.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Controller/Adminhtml/Rate/AjaxDelete.php b/app/code/Magento/Tax/Controller/Adminhtml/Rate/AjaxDelete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Controller/Adminhtml/Rate/AjaxLoad.php b/app/code/Magento/Tax/Controller/Adminhtml/Rate/AjaxLoad.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Controller/Adminhtml/Rate/AjaxSave.php b/app/code/Magento/Tax/Controller/Adminhtml/Rate/AjaxSave.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Controller/Adminhtml/Rate/Delete.php b/app/code/Magento/Tax/Controller/Adminhtml/Rate/Delete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Controller/Adminhtml/Rate/Edit.php b/app/code/Magento/Tax/Controller/Adminhtml/Rate/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Controller/Adminhtml/Rate/Index.php b/app/code/Magento/Tax/Controller/Adminhtml/Rate/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Controller/Adminhtml/Rate/Save.php b/app/code/Magento/Tax/Controller/Adminhtml/Rate/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Controller/Adminhtml/Rule.php b/app/code/Magento/Tax/Controller/Adminhtml/Rule.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Controller/Adminhtml/Rule/AjaxLoadRates.php b/app/code/Magento/Tax/Controller/Adminhtml/Rule/AjaxLoadRates.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Controller/Adminhtml/Rule/Delete.php b/app/code/Magento/Tax/Controller/Adminhtml/Rule/Delete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Controller/Adminhtml/Rule/Edit.php b/app/code/Magento/Tax/Controller/Adminhtml/Rule/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Controller/Adminhtml/Rule/Index.php b/app/code/Magento/Tax/Controller/Adminhtml/Rule/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Controller/Adminhtml/Rule/NewAction.php b/app/code/Magento/Tax/Controller/Adminhtml/Rule/NewAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Controller/Adminhtml/Rule/Save.php b/app/code/Magento/Tax/Controller/Adminhtml/Rule/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Controller/Adminhtml/Tax.php b/app/code/Magento/Tax/Controller/Adminhtml/Tax.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Controller/Adminhtml/Tax/AjaxDelete.php b/app/code/Magento/Tax/Controller/Adminhtml/Tax/AjaxDelete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Controller/Adminhtml/Tax/AjaxSave.php b/app/code/Magento/Tax/Controller/Adminhtml/Tax/AjaxSave.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Controller/Adminhtml/Tax/IgnoreTaxNotification.php b/app/code/Magento/Tax/Controller/Adminhtml/Tax/IgnoreTaxNotification.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Controller/RegistryConstants.php b/app/code/Magento/Tax/Controller/RegistryConstants.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/CustomerData/CheckoutTotalsJsLayoutDataProvider.php b/app/code/Magento/Tax/CustomerData/CheckoutTotalsJsLayoutDataProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Helper/Data.php b/app/code/Magento/Tax/Helper/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/LICENSE.txt b/app/code/Magento/Tax/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/LICENSE_AFL.txt b/app/code/Magento/Tax/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/AggregateSalesReportTaxData.php b/app/code/Magento/Tax/Model/AggregateSalesReportTaxData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/Api/SearchCriteria/JoinProcessor/CalculationData.php b/app/code/Magento/Tax/Model/Api/SearchCriteria/JoinProcessor/CalculationData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/Api/SearchCriteria/JoinProcessor/CustomerTaxClass.php b/app/code/Magento/Tax/Model/Api/SearchCriteria/JoinProcessor/CustomerTaxClass.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/Api/SearchCriteria/JoinProcessor/ProductTaxClass.php b/app/code/Magento/Tax/Model/Api/SearchCriteria/JoinProcessor/ProductTaxClass.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/Api/SearchCriteria/JoinProcessor/Rate.php b/app/code/Magento/Tax/Model/Api/SearchCriteria/JoinProcessor/Rate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/Api/SearchCriteria/JoinProcessor/RateCode.php b/app/code/Magento/Tax/Model/Api/SearchCriteria/JoinProcessor/RateCode.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/App/Action/ContextPlugin.php b/app/code/Magento/Tax/Model/App/Action/ContextPlugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/Calculation.php b/app/code/Magento/Tax/Model/Calculation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/Calculation/AbstractAggregateCalculator.php b/app/code/Magento/Tax/Model/Calculation/AbstractAggregateCalculator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/Calculation/AbstractCalculator.php b/app/code/Magento/Tax/Model/Calculation/AbstractCalculator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/Calculation/CalculatorFactory.php b/app/code/Magento/Tax/Model/Calculation/CalculatorFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/Calculation/GrandTotalDetails.php b/app/code/Magento/Tax/Model/Calculation/GrandTotalDetails.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/Calculation/GrandTotalRates.php b/app/code/Magento/Tax/Model/Calculation/GrandTotalRates.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/Calculation/Rate.php b/app/code/Magento/Tax/Model/Calculation/Rate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/Calculation/Rate/Converter.php b/app/code/Magento/Tax/Model/Calculation/Rate/Converter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/Calculation/Rate/Title.php b/app/code/Magento/Tax/Model/Calculation/Rate/Title.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/Calculation/RateFactory.php b/app/code/Magento/Tax/Model/Calculation/RateFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/Calculation/RateRegistry.php b/app/code/Magento/Tax/Model/Calculation/RateRegistry.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/Calculation/RateRepository.php b/app/code/Magento/Tax/Model/Calculation/RateRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/Calculation/RowBaseCalculator.php b/app/code/Magento/Tax/Model/Calculation/RowBaseCalculator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/Calculation/Rule.php b/app/code/Magento/Tax/Model/Calculation/Rule.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/Calculation/Rule/Validator.php b/app/code/Magento/Tax/Model/Calculation/Rule/Validator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/Calculation/TaxRuleRegistry.php b/app/code/Magento/Tax/Model/Calculation/TaxRuleRegistry.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/Calculation/TotalBaseCalculator.php b/app/code/Magento/Tax/Model/Calculation/TotalBaseCalculator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/Calculation/UnitBaseCalculator.php b/app/code/Magento/Tax/Model/Calculation/UnitBaseCalculator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/ClassModel.php b/app/code/Magento/Tax/Model/ClassModel.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/ClassModelRegistry.php b/app/code/Magento/Tax/Model/ClassModelRegistry.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/Config.php b/app/code/Magento/Tax/Model/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/Config/Notification.php b/app/code/Magento/Tax/Model/Config/Notification.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/Config/Price/IncludePrice.php b/app/code/Magento/Tax/Model/Config/Price/IncludePrice.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/Config/Source/Apply/On.php b/app/code/Magento/Tax/Model/Config/Source/Apply/On.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/Config/Source/Basedon.php b/app/code/Magento/Tax/Model/Config/Source/Basedon.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/Config/Source/Catalog.php b/app/code/Magento/Tax/Model/Config/Source/Catalog.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/Config/TaxClass.php b/app/code/Magento/Tax/Model/Config/TaxClass.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/Layout/DepersonalizePlugin.php b/app/code/Magento/Tax/Model/Layout/DepersonalizePlugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/Plugin/OrderSave.php b/app/code/Magento/Tax/Model/Plugin/OrderSave.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/Quote/GrandTotalDetailsPlugin.php b/app/code/Magento/Tax/Model/Quote/GrandTotalDetailsPlugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/Quote/ToOrderConverter.php b/app/code/Magento/Tax/Model/Quote/ToOrderConverter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/Rate/Provider.php b/app/code/Magento/Tax/Model/Rate/Provider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/Rate/Source.php b/app/code/Magento/Tax/Model/Rate/Source.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/ResourceModel/Calculation.php b/app/code/Magento/Tax/Model/ResourceModel/Calculation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/ResourceModel/Calculation/Collection.php b/app/code/Magento/Tax/Model/ResourceModel/Calculation/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/ResourceModel/Calculation/Rate.php b/app/code/Magento/Tax/Model/ResourceModel/Calculation/Rate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/ResourceModel/Calculation/Rate/Collection.php b/app/code/Magento/Tax/Model/ResourceModel/Calculation/Rate/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/ResourceModel/Calculation/Rate/Title.php b/app/code/Magento/Tax/Model/ResourceModel/Calculation/Rate/Title.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/ResourceModel/Calculation/Rate/Title/Collection.php b/app/code/Magento/Tax/Model/ResourceModel/Calculation/Rate/Title/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/ResourceModel/Calculation/Rule.php b/app/code/Magento/Tax/Model/ResourceModel/Calculation/Rule.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/ResourceModel/Calculation/Rule/Collection.php b/app/code/Magento/Tax/Model/ResourceModel/Calculation/Rule/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/ResourceModel/Report/Collection.php b/app/code/Magento/Tax/Model/ResourceModel/Report/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/ResourceModel/Report/Tax.php b/app/code/Magento/Tax/Model/ResourceModel/Report/Tax.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/ResourceModel/Report/Tax/Createdat.php b/app/code/Magento/Tax/Model/ResourceModel/Report/Tax/Createdat.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/ResourceModel/Report/Tax/Updatedat.php b/app/code/Magento/Tax/Model/ResourceModel/Report/Tax/Updatedat.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/ResourceModel/Report/Updatedat/Collection.php b/app/code/Magento/Tax/Model/ResourceModel/Report/Updatedat/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/ResourceModel/Sales/Order/Tax.php b/app/code/Magento/Tax/Model/ResourceModel/Sales/Order/Tax.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/ResourceModel/Sales/Order/Tax/Collection.php b/app/code/Magento/Tax/Model/ResourceModel/Sales/Order/Tax/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/ResourceModel/TaxClass.php b/app/code/Magento/Tax/Model/ResourceModel/TaxClass.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/ResourceModel/TaxClass/Collection.php b/app/code/Magento/Tax/Model/ResourceModel/TaxClass/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/Sales/Order/Details.php b/app/code/Magento/Tax/Model/Sales/Order/Details.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/Sales/Order/Tax.php b/app/code/Magento/Tax/Model/Sales/Order/Tax.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/Sales/Order/TaxManagement.php b/app/code/Magento/Tax/Model/Sales/Order/TaxManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/Sales/Pdf/Grandtotal.php b/app/code/Magento/Tax/Model/Sales/Pdf/Grandtotal.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/Sales/Pdf/Shipping.php b/app/code/Magento/Tax/Model/Sales/Pdf/Shipping.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/Sales/Pdf/Subtotal.php b/app/code/Magento/Tax/Model/Sales/Pdf/Subtotal.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/Sales/Pdf/Tax.php b/app/code/Magento/Tax/Model/Sales/Pdf/Tax.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/Sales/Quote/ItemDetails.php b/app/code/Magento/Tax/Model/Sales/Quote/ItemDetails.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/Sales/Quote/QuoteDetails.php b/app/code/Magento/Tax/Model/Sales/Quote/QuoteDetails.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/Sales/Total/Quote/CommonTaxCollector.php b/app/code/Magento/Tax/Model/Sales/Total/Quote/CommonTaxCollector.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/Sales/Total/Quote/Shipping.php b/app/code/Magento/Tax/Model/Sales/Total/Quote/Shipping.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/Sales/Total/Quote/Subtotal.php b/app/code/Magento/Tax/Model/Sales/Total/Quote/Subtotal.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/System/Config/Source/Algorithm.php b/app/code/Magento/Tax/Model/System/Config/Source/Algorithm.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/System/Config/Source/Apply.php b/app/code/Magento/Tax/Model/System/Config/Source/Apply.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/System/Config/Source/PriceType.php b/app/code/Magento/Tax/Model/System/Config/Source/PriceType.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/System/Config/Source/Tax/Country.php b/app/code/Magento/Tax/Model/System/Config/Source/Tax/Country.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/System/Config/Source/Tax/Display/Type.php b/app/code/Magento/Tax/Model/System/Config/Source/Tax/Display/Type.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/System/Config/Source/Tax/Region.php b/app/code/Magento/Tax/Model/System/Config/Source/Tax/Region.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/System/Message/Notification/ApplyDiscountOnPrices.php b/app/code/Magento/Tax/Model/System/Message/Notification/ApplyDiscountOnPrices.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/System/Message/Notification/DiscountErrors.php b/app/code/Magento/Tax/Model/System/Message/Notification/DiscountErrors.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/System/Message/Notification/RoundingErrors.php b/app/code/Magento/Tax/Model/System/Message/Notification/RoundingErrors.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/System/Message/NotificationInterface.php b/app/code/Magento/Tax/Model/System/Message/NotificationInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/System/Message/Notifications.php b/app/code/Magento/Tax/Model/System/Message/Notifications.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/TaxAddressManager.php b/app/code/Magento/Tax/Model/TaxAddressManager.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/TaxCalculation.php b/app/code/Magento/Tax/Model/TaxCalculation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/TaxClass/AbstractType.php b/app/code/Magento/Tax/Model/TaxClass/AbstractType.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/TaxClass/Factory.php b/app/code/Magento/Tax/Model/TaxClass/Factory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/TaxClass/Key.php b/app/code/Magento/Tax/Model/TaxClass/Key.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/TaxClass/Management.php b/app/code/Magento/Tax/Model/TaxClass/Management.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/TaxClass/Repository.php b/app/code/Magento/Tax/Model/TaxClass/Repository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/TaxClass/Source/Customer.php b/app/code/Magento/Tax/Model/TaxClass/Source/Customer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/TaxClass/Source/Product.php b/app/code/Magento/Tax/Model/TaxClass/Source/Product.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/TaxClass/Type/Customer.php b/app/code/Magento/Tax/Model/TaxClass/Type/Customer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/TaxClass/Type/Product.php b/app/code/Magento/Tax/Model/TaxClass/Type/Product.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/TaxClass/Type/TypeInterface.php b/app/code/Magento/Tax/Model/TaxClass/Type/TypeInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/TaxConfigProvider.php b/app/code/Magento/Tax/Model/TaxConfigProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/TaxDetails/AppliedTax.php b/app/code/Magento/Tax/Model/TaxDetails/AppliedTax.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/TaxDetails/AppliedTaxRate.php b/app/code/Magento/Tax/Model/TaxDetails/AppliedTaxRate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/TaxDetails/ItemDetails.php b/app/code/Magento/Tax/Model/TaxDetails/ItemDetails.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/TaxDetails/TaxDetails.php b/app/code/Magento/Tax/Model/TaxDetails/TaxDetails.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/TaxRateCollection.php b/app/code/Magento/Tax/Model/TaxRateCollection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/TaxRateManagement.php b/app/code/Magento/Tax/Model/TaxRateManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/TaxRuleCollection.php b/app/code/Magento/Tax/Model/TaxRuleCollection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Model/TaxRuleRepository.php b/app/code/Magento/Tax/Model/TaxRuleRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Observer/AfterAddressSaveObserver.php b/app/code/Magento/Tax/Observer/AfterAddressSaveObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Observer/CustomerLoggedInObserver.php b/app/code/Magento/Tax/Observer/CustomerLoggedInObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Observer/GetPriceConfigurationObserver.php b/app/code/Magento/Tax/Observer/GetPriceConfigurationObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Observer/UpdateProductOptionsObserver.php b/app/code/Magento/Tax/Observer/UpdateProductOptionsObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Plugin/Checkout/CustomerData/Cart.php b/app/code/Magento/Tax/Plugin/Checkout/CustomerData/Cart.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Plugin/Ui/DataProvider/TaxSettings.php b/app/code/Magento/Tax/Plugin/Ui/DataProvider/TaxSettings.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Pricing/Adjustment.php b/app/code/Magento/Tax/Pricing/Adjustment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Pricing/Render/Adjustment.php b/app/code/Magento/Tax/Pricing/Render/Adjustment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/README.md b/app/code/Magento/Tax/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Setup/InstallData.php b/app/code/Magento/Tax/Setup/InstallData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Setup/InstallSchema.php b/app/code/Magento/Tax/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Setup/TaxSetup.php b/app/code/Magento/Tax/Setup/TaxSetup.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Setup/UpgradeData.php b/app/code/Magento/Tax/Setup/UpgradeData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/App/Action/ContextPluginTest.php b/app/code/Magento/Tax/Test/Unit/App/Action/ContextPluginTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Block/Adminhtml/Items/Price/RendererTest.php b/app/code/Magento/Tax/Test/Unit/Block/Adminhtml/Items/Price/RendererTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Block/Adminhtml/Rule/Edit/FormTest.php b/app/code/Magento/Tax/Test/Unit/Block/Adminhtml/Rule/Edit/FormTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Block/Checkout/Shipping/PriceTest.php b/app/code/Magento/Tax/Test/Unit/Block/Checkout/Shipping/PriceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Block/Checkout/ShippingTest.php b/app/code/Magento/Tax/Test/Unit/Block/Checkout/ShippingTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Block/Grid/Renderer/CodesTest.php b/app/code/Magento/Tax/Test/Unit/Block/Grid/Renderer/CodesTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Block/Item/Price/RendererTest.php b/app/code/Magento/Tax/Test/Unit/Block/Item/Price/RendererTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Controller/Adminhtml/Rate/AjaxLoadTest.php b/app/code/Magento/Tax/Test/Unit/Controller/Adminhtml/Rate/AjaxLoadTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Controller/Adminhtml/Rule/AjaxLoadRatesTest.php b/app/code/Magento/Tax/Test/Unit/Controller/Adminhtml/Rule/AjaxLoadRatesTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Controller/Adminhtml/Tax/IgnoreTaxNotificationTest.php b/app/code/Magento/Tax/Test/Unit/Controller/Adminhtml/Tax/IgnoreTaxNotificationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/GetterSetterTest.php b/app/code/Magento/Tax/Test/Unit/GetterSetterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Helper/DataTest.php b/app/code/Magento/Tax/Test/Unit/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Model/Calculation/CalculatorFactoryTest.php b/app/code/Magento/Tax/Test/Unit/Model/Calculation/CalculatorFactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Model/Calculation/Rate/ConverterTest.php b/app/code/Magento/Tax/Test/Unit/Model/Calculation/Rate/ConverterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Model/Calculation/RateRegistryTest.php b/app/code/Magento/Tax/Test/Unit/Model/Calculation/RateRegistryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Model/Calculation/RateRepositoryTest.php b/app/code/Magento/Tax/Test/Unit/Model/Calculation/RateRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Model/Calculation/RateTest.php b/app/code/Magento/Tax/Test/Unit/Model/Calculation/RateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Model/Calculation/RowBaseAndTotalBaseCalculatorTestCase.php b/app/code/Magento/Tax/Test/Unit/Model/Calculation/RowBaseAndTotalBaseCalculatorTestCase.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Model/Calculation/RowBaseCalculatorTest.php b/app/code/Magento/Tax/Test/Unit/Model/Calculation/RowBaseCalculatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Model/Calculation/TaxRuleRegistryTest.php b/app/code/Magento/Tax/Test/Unit/Model/Calculation/TaxRuleRegistryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Model/Calculation/TotalBaseCalculatorTest.php b/app/code/Magento/Tax/Test/Unit/Model/Calculation/TotalBaseCalculatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Model/Calculation/UnitBaseCalculatorTest.php b/app/code/Magento/Tax/Test/Unit/Model/Calculation/UnitBaseCalculatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Model/ClassModelRegistryTest.php b/app/code/Magento/Tax/Test/Unit/Model/ClassModelRegistryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Model/Config/TaxClassTest.php b/app/code/Magento/Tax/Test/Unit/Model/Config/TaxClassTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Model/ConfigTest.php b/app/code/Magento/Tax/Test/Unit/Model/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Model/Plugin/OrderSaveTest.php b/app/code/Magento/Tax/Test/Unit/Model/Plugin/OrderSaveTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Model/Quote/GrandTotalDetailsPluginTest.php b/app/code/Magento/Tax/Test/Unit/Model/Quote/GrandTotalDetailsPluginTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Model/Quote/ToOrderConverterTest.php b/app/code/Magento/Tax/Test/Unit/Model/Quote/ToOrderConverterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Model/ResourceModel/CalculationTest.php b/app/code/Magento/Tax/Test/Unit/Model/ResourceModel/CalculationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Model/Sales/Order/TaxManagementTest.php b/app/code/Magento/Tax/Test/Unit/Model/Sales/Order/TaxManagementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Model/Sales/Total/Quote/CommonTaxCollectorTest.php b/app/code/Magento/Tax/Test/Unit/Model/Sales/Total/Quote/CommonTaxCollectorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Model/Sales/Total/Quote/ShippingTest.php b/app/code/Magento/Tax/Test/Unit/Model/Sales/Total/Quote/ShippingTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Model/Sales/Total/Quote/SubtotalTest.php b/app/code/Magento/Tax/Test/Unit/Model/Sales/Total/Quote/SubtotalTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Model/Sales/Total/Quote/TaxTest.php b/app/code/Magento/Tax/Test/Unit/Model/Sales/Total/Quote/TaxTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Model/System/Message/Notification/ApplyDiscountOnPricesTest.php b/app/code/Magento/Tax/Test/Unit/Model/System/Message/Notification/ApplyDiscountOnPricesTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Model/System/Message/Notification/DiscountErrorsTest.php b/app/code/Magento/Tax/Test/Unit/Model/System/Message/Notification/DiscountErrorsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Model/System/Message/Notification/RoundingErrorsTest.php b/app/code/Magento/Tax/Test/Unit/Model/System/Message/Notification/RoundingErrorsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Model/System/Message/NotificationsTest.php b/app/code/Magento/Tax/Test/Unit/Model/System/Message/NotificationsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Model/TaxAddressManagerTest.php b/app/code/Magento/Tax/Test/Unit/Model/TaxAddressManagerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Model/TaxCalculationTest.php b/app/code/Magento/Tax/Test/Unit/Model/TaxCalculationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Model/TaxClass/FactoryTest.php b/app/code/Magento/Tax/Test/Unit/Model/TaxClass/FactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Model/TaxClass/ManagementTest.php b/app/code/Magento/Tax/Test/Unit/Model/TaxClass/ManagementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Model/TaxClass/RepositoryTest.php b/app/code/Magento/Tax/Test/Unit/Model/TaxClass/RepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Model/TaxClass/Source/CustomerTest.php b/app/code/Magento/Tax/Test/Unit/Model/TaxClass/Source/CustomerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Model/TaxClass/Source/ProductTest.php b/app/code/Magento/Tax/Test/Unit/Model/TaxClass/Source/ProductTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Model/TaxClass/Type/CustomerTest.php b/app/code/Magento/Tax/Test/Unit/Model/TaxClass/Type/CustomerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Model/TaxClass/Type/ProductTest.php b/app/code/Magento/Tax/Test/Unit/Model/TaxClass/Type/ProductTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Model/TaxConfigProviderTest.php b/app/code/Magento/Tax/Test/Unit/Model/TaxConfigProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Model/TaxRateCollectionTest.php b/app/code/Magento/Tax/Test/Unit/Model/TaxRateCollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Model/TaxRateManagementTest.php b/app/code/Magento/Tax/Test/Unit/Model/TaxRateManagementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Model/TaxRuleCollectionTest.php b/app/code/Magento/Tax/Test/Unit/Model/TaxRuleCollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Model/TaxRuleRepositoryTest.php b/app/code/Magento/Tax/Test/Unit/Model/TaxRuleRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Observer/AfterAddressSaveObserverTest.php b/app/code/Magento/Tax/Test/Unit/Observer/AfterAddressSaveObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Observer/CustomerLoggedInObserverTest.php b/app/code/Magento/Tax/Test/Unit/Observer/CustomerLoggedInObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Observer/GetPriceConfigurationObserverTest.php b/app/code/Magento/Tax/Test/Unit/Observer/GetPriceConfigurationObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Observer/UpdateProductOptionsObserverTest.php b/app/code/Magento/Tax/Test/Unit/Observer/UpdateProductOptionsObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Plugin/Checkout/CustomerData/CartTest.php b/app/code/Magento/Tax/Test/Unit/Plugin/Checkout/CustomerData/CartTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Pricing/AdjustmentTest.php b/app/code/Magento/Tax/Test/Unit/Pricing/AdjustmentTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Pricing/Render/AdjustmentTest.php b/app/code/Magento/Tax/Test/Unit/Pricing/Render/AdjustmentTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Setup/TaxSetupTest.php b/app/code/Magento/Tax/Test/Unit/Setup/TaxSetupTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Test/Unit/Ui/DataProvider/Product/Listing/Collector/TaxTest.php b/app/code/Magento/Tax/Test/Unit/Ui/DataProvider/Product/Listing/Collector/TaxTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/Ui/DataProvider/Product/Listing/Collector/Tax.php b/app/code/Magento/Tax/Ui/DataProvider/Product/Listing/Collector/Tax.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/composer.json b/app/code/Magento/Tax/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/etc/acl.xml b/app/code/Magento/Tax/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/etc/adminhtml/di.xml b/app/code/Magento/Tax/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/etc/adminhtml/menu.xml b/app/code/Magento/Tax/etc/adminhtml/menu.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/etc/adminhtml/routes.xml b/app/code/Magento/Tax/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/etc/adminhtml/system.xml b/app/code/Magento/Tax/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/etc/catalog_attributes.xml b/app/code/Magento/Tax/etc/catalog_attributes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/etc/config.xml b/app/code/Magento/Tax/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/etc/crontab.xml b/app/code/Magento/Tax/etc/crontab.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/etc/di.xml b/app/code/Magento/Tax/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/etc/events.xml b/app/code/Magento/Tax/etc/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/etc/extension_attributes.xml b/app/code/Magento/Tax/etc/extension_attributes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/etc/fieldset.xml b/app/code/Magento/Tax/etc/fieldset.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/etc/frontend/di.xml b/app/code/Magento/Tax/etc/frontend/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/etc/frontend/events.xml b/app/code/Magento/Tax/etc/frontend/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/etc/module.xml b/app/code/Magento/Tax/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/etc/pdf.xml b/app/code/Magento/Tax/etc/pdf.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/etc/sales.xml b/app/code/Magento/Tax/etc/sales.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/etc/webapi.xml b/app/code/Magento/Tax/etc/webapi.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/i18n/en_US.csv b/app/code/Magento/Tax/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/registration.php b/app/code/Magento/Tax/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/adminhtml/layout/sales_creditmemo_item_price.xml b/app/code/Magento/Tax/view/adminhtml/layout/sales_creditmemo_item_price.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/adminhtml/layout/sales_invoice_item_price.xml b/app/code/Magento/Tax/view/adminhtml/layout/sales_invoice_item_price.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/adminhtml/layout/sales_order_create_item_price.xml b/app/code/Magento/Tax/view/adminhtml/layout/sales_order_create_item_price.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/adminhtml/layout/sales_order_item_price.xml b/app/code/Magento/Tax/view/adminhtml/layout/sales_order_item_price.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/adminhtml/layout/tax_rate_block.xml b/app/code/Magento/Tax/view/adminhtml/layout/tax_rate_block.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/adminhtml/layout/tax_rate_exportcsv.xml b/app/code/Magento/Tax/view/adminhtml/layout/tax_rate_exportcsv.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/adminhtml/layout/tax_rate_exportxml.xml b/app/code/Magento/Tax/view/adminhtml/layout/tax_rate_exportxml.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/adminhtml/layout/tax_rate_index.xml b/app/code/Magento/Tax/view/adminhtml/layout/tax_rate_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/adminhtml/layout/tax_rule_block.xml b/app/code/Magento/Tax/view/adminhtml/layout/tax_rule_block.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/adminhtml/layout/tax_rule_edit.xml b/app/code/Magento/Tax/view/adminhtml/layout/tax_rule_edit.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/adminhtml/layout/tax_rule_index.xml b/app/code/Magento/Tax/view/adminhtml/layout/tax_rule_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/adminhtml/templates/class/page/edit.phtml b/app/code/Magento/Tax/view/adminhtml/templates/class/page/edit.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/adminhtml/templates/items/price/row.phtml b/app/code/Magento/Tax/view/adminhtml/templates/items/price/row.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/adminhtml/templates/items/price/total.phtml b/app/code/Magento/Tax/view/adminhtml/templates/items/price/total.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/adminhtml/templates/items/price/unit.phtml b/app/code/Magento/Tax/view/adminhtml/templates/items/price/unit.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/adminhtml/templates/order/create/items/price/row.phtml b/app/code/Magento/Tax/view/adminhtml/templates/order/create/items/price/row.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/adminhtml/templates/order/create/items/price/total.phtml b/app/code/Magento/Tax/view/adminhtml/templates/order/create/items/price/total.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/adminhtml/templates/order/create/items/price/unit.phtml b/app/code/Magento/Tax/view/adminhtml/templates/order/create/items/price/unit.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/adminhtml/templates/rate/form.phtml b/app/code/Magento/Tax/view/adminhtml/templates/rate/form.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/adminhtml/templates/rate/js.phtml b/app/code/Magento/Tax/view/adminhtml/templates/rate/js.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/adminhtml/templates/rate/title.phtml b/app/code/Magento/Tax/view/adminhtml/templates/rate/title.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/adminhtml/templates/rule/edit.phtml b/app/code/Magento/Tax/view/adminhtml/templates/rule/edit.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/adminhtml/templates/rule/rate/form.phtml b/app/code/Magento/Tax/view/adminhtml/templates/rule/rate/form.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/adminhtml/templates/toolbar/class/add.phtml b/app/code/Magento/Tax/view/adminhtml/templates/toolbar/class/add.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/adminhtml/templates/toolbar/class/save.phtml b/app/code/Magento/Tax/view/adminhtml/templates/toolbar/class/save.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/adminhtml/templates/toolbar/rate/add.phtml b/app/code/Magento/Tax/view/adminhtml/templates/toolbar/rate/add.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/adminhtml/templates/toolbar/rate/save.phtml b/app/code/Magento/Tax/view/adminhtml/templates/toolbar/rate/save.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/adminhtml/templates/toolbar/rule/add.phtml b/app/code/Magento/Tax/view/adminhtml/templates/toolbar/rule/add.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/adminhtml/templates/toolbar/rule/save.phtml b/app/code/Magento/Tax/view/adminhtml/templates/toolbar/rule/save.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/adminhtml/web/js/bootstrap.js b/app/code/Magento/Tax/view/adminhtml/web/js/bootstrap.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/base/layout/catalog_product_prices.xml b/app/code/Magento/Tax/view/base/layout/catalog_product_prices.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/base/templates/pricing/adjustment.phtml b/app/code/Magento/Tax/view/base/templates/pricing/adjustment.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/base/templates/pricing/adjustment/bundle.phtml b/app/code/Magento/Tax/view/base/templates/pricing/adjustment/bundle.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/base/web/js/price/adjustment.js b/app/code/Magento/Tax/view/base/web/js/price/adjustment.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/base/web/template/price/adjustment.html b/app/code/Magento/Tax/view/base/web/template/price/adjustment.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/base/web/template/price/bundle/adjustment.html b/app/code/Magento/Tax/view/base/web/template/price/bundle/adjustment.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/frontend/layout/checkout_cart_index.xml b/app/code/Magento/Tax/view/frontend/layout/checkout_cart_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/frontend/layout/checkout_cart_sidebar_total_renderers.xml b/app/code/Magento/Tax/view/frontend/layout/checkout_cart_sidebar_total_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/frontend/layout/checkout_index_index.xml b/app/code/Magento/Tax/view/frontend/layout/checkout_index_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/frontend/layout/checkout_item_price_renderers.xml b/app/code/Magento/Tax/view/frontend/layout/checkout_item_price_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/frontend/layout/sales_email_item_price.xml b/app/code/Magento/Tax/view/frontend/layout/sales_email_item_price.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/frontend/layout/sales_order_item_price.xml b/app/code/Magento/Tax/view/frontend/layout/sales_order_item_price.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/frontend/templates/checkout/cart/item/price/sidebar.phtml b/app/code/Magento/Tax/view/frontend/templates/checkout/cart/item/price/sidebar.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/frontend/templates/checkout/discount.phtml b/app/code/Magento/Tax/view/frontend/templates/checkout/discount.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/frontend/templates/checkout/grandtotal.phtml b/app/code/Magento/Tax/view/frontend/templates/checkout/grandtotal.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/frontend/templates/checkout/shipping.phtml b/app/code/Magento/Tax/view/frontend/templates/checkout/shipping.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/frontend/templates/checkout/shipping/price.phtml b/app/code/Magento/Tax/view/frontend/templates/checkout/shipping/price.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/frontend/templates/checkout/subtotal.phtml b/app/code/Magento/Tax/view/frontend/templates/checkout/subtotal.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/frontend/templates/checkout/tax.phtml b/app/code/Magento/Tax/view/frontend/templates/checkout/tax.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/frontend/templates/email/items/price/row.phtml b/app/code/Magento/Tax/view/frontend/templates/email/items/price/row.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/frontend/templates/item/price/row.phtml b/app/code/Magento/Tax/view/frontend/templates/item/price/row.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/frontend/templates/item/price/total_after_discount.phtml b/app/code/Magento/Tax/view/frontend/templates/item/price/total_after_discount.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/frontend/templates/item/price/unit.phtml b/app/code/Magento/Tax/view/frontend/templates/item/price/unit.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/frontend/templates/order/tax.phtml b/app/code/Magento/Tax/view/frontend/templates/order/tax.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/frontend/ui_component/widget_recently_compared.xml b/app/code/Magento/Tax/view/frontend/ui_component/widget_recently_compared.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/frontend/ui_component/widget_recently_viewed.xml b/app/code/Magento/Tax/view/frontend/ui_component/widget_recently_viewed.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/frontend/web/js/view/checkout/cart/totals/grand-total.js b/app/code/Magento/Tax/view/frontend/web/js/view/checkout/cart/totals/grand-total.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/frontend/web/js/view/checkout/cart/totals/shipping.js b/app/code/Magento/Tax/view/frontend/web/js/view/checkout/cart/totals/shipping.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/frontend/web/js/view/checkout/cart/totals/tax.js b/app/code/Magento/Tax/view/frontend/web/js/view/checkout/cart/totals/tax.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/frontend/web/js/view/checkout/minicart/subtotal/totals.js b/app/code/Magento/Tax/view/frontend/web/js/view/checkout/minicart/subtotal/totals.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/frontend/web/js/view/checkout/shipping_method/price.js b/app/code/Magento/Tax/view/frontend/web/js/view/checkout/shipping_method/price.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/frontend/web/js/view/checkout/summary/grand-total.js b/app/code/Magento/Tax/view/frontend/web/js/view/checkout/summary/grand-total.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/frontend/web/js/view/checkout/summary/item/details/subtotal.js b/app/code/Magento/Tax/view/frontend/web/js/view/checkout/summary/item/details/subtotal.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/frontend/web/js/view/checkout/summary/shipping.js b/app/code/Magento/Tax/view/frontend/web/js/view/checkout/summary/shipping.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/frontend/web/js/view/checkout/summary/subtotal.js b/app/code/Magento/Tax/view/frontend/web/js/view/checkout/summary/subtotal.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/frontend/web/js/view/checkout/summary/tax.js b/app/code/Magento/Tax/view/frontend/web/js/view/checkout/summary/tax.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/frontend/web/template/checkout/cart/totals/grand-total.html b/app/code/Magento/Tax/view/frontend/web/template/checkout/cart/totals/grand-total.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/frontend/web/template/checkout/cart/totals/shipping.html b/app/code/Magento/Tax/view/frontend/web/template/checkout/cart/totals/shipping.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/frontend/web/template/checkout/cart/totals/tax.html b/app/code/Magento/Tax/view/frontend/web/template/checkout/cart/totals/tax.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/frontend/web/template/checkout/minicart/subtotal/totals.html b/app/code/Magento/Tax/view/frontend/web/template/checkout/minicart/subtotal/totals.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/frontend/web/template/checkout/shipping_method/price.html b/app/code/Magento/Tax/view/frontend/web/template/checkout/shipping_method/price.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/frontend/web/template/checkout/summary/grand-total.html b/app/code/Magento/Tax/view/frontend/web/template/checkout/summary/grand-total.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/frontend/web/template/checkout/summary/item/details/subtotal.html b/app/code/Magento/Tax/view/frontend/web/template/checkout/summary/item/details/subtotal.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/frontend/web/template/checkout/summary/shipping.html b/app/code/Magento/Tax/view/frontend/web/template/checkout/summary/shipping.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/frontend/web/template/checkout/summary/subtotal.html b/app/code/Magento/Tax/view/frontend/web/template/checkout/summary/subtotal.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Tax/view/frontend/web/template/checkout/summary/tax.html b/app/code/Magento/Tax/view/frontend/web/template/checkout/summary/tax.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/TaxImportExport/Block/Adminhtml/Rate/Grid/Renderer/Country.php b/app/code/Magento/TaxImportExport/Block/Adminhtml/Rate/Grid/Renderer/Country.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/TaxImportExport/Block/Adminhtml/Rate/ImportExport.php b/app/code/Magento/TaxImportExport/Block/Adminhtml/Rate/ImportExport.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/TaxImportExport/Block/Adminhtml/Rate/ImportExportHeader.php b/app/code/Magento/TaxImportExport/Block/Adminhtml/Rate/ImportExportHeader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/TaxImportExport/Controller/Adminhtml/Rate.php b/app/code/Magento/TaxImportExport/Controller/Adminhtml/Rate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/TaxImportExport/Controller/Adminhtml/Rate/ExportCsv.php b/app/code/Magento/TaxImportExport/Controller/Adminhtml/Rate/ExportCsv.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/TaxImportExport/Controller/Adminhtml/Rate/ExportPost.php b/app/code/Magento/TaxImportExport/Controller/Adminhtml/Rate/ExportPost.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/TaxImportExport/Controller/Adminhtml/Rate/ExportXml.php b/app/code/Magento/TaxImportExport/Controller/Adminhtml/Rate/ExportXml.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/TaxImportExport/Controller/Adminhtml/Rate/ImportExport.php b/app/code/Magento/TaxImportExport/Controller/Adminhtml/Rate/ImportExport.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/TaxImportExport/Controller/Adminhtml/Rate/ImportPost.php b/app/code/Magento/TaxImportExport/Controller/Adminhtml/Rate/ImportPost.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/TaxImportExport/LICENSE.txt b/app/code/Magento/TaxImportExport/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/TaxImportExport/LICENSE_AFL.txt b/app/code/Magento/TaxImportExport/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/TaxImportExport/Model/Rate/CsvImportHandler.php b/app/code/Magento/TaxImportExport/Model/Rate/CsvImportHandler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/TaxImportExport/Test/Unit/Controller/Adminhtml/Rate/ExportPostTest.php b/app/code/Magento/TaxImportExport/Test/Unit/Controller/Adminhtml/Rate/ExportPostTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/TaxImportExport/composer.json b/app/code/Magento/TaxImportExport/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/TaxImportExport/etc/acl.xml b/app/code/Magento/TaxImportExport/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/TaxImportExport/etc/adminhtml/menu.xml b/app/code/Magento/TaxImportExport/etc/adminhtml/menu.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/TaxImportExport/etc/adminhtml/routes.xml b/app/code/Magento/TaxImportExport/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/TaxImportExport/etc/module.xml b/app/code/Magento/TaxImportExport/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/TaxImportExport/i18n/en_US.csv b/app/code/Magento/TaxImportExport/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/TaxImportExport/registration.php b/app/code/Magento/TaxImportExport/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/TaxImportExport/view/adminhtml/layout/tax_rate_block.xml b/app/code/Magento/TaxImportExport/view/adminhtml/layout/tax_rate_block.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/TaxImportExport/view/adminhtml/layout/tax_rule_edit.xml b/app/code/Magento/TaxImportExport/view/adminhtml/layout/tax_rule_edit.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/TaxImportExport/view/adminhtml/templates/importExport.phtml b/app/code/Magento/TaxImportExport/view/adminhtml/templates/importExport.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/TaxImportExport/view/adminhtml/templates/importExportHeader.phtml b/app/code/Magento/TaxImportExport/view/adminhtml/templates/importExportHeader.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Api/Data/DesignConfigDataInterface.php b/app/code/Magento/Theme/Api/Data/DesignConfigDataInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Api/Data/DesignConfigInterface.php b/app/code/Magento/Theme/Api/Data/DesignConfigInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Api/DesignConfigRepositoryInterface.php b/app/code/Magento/Theme/Api/DesignConfigRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Block/Adminhtml/Design/Config/Edit/BackButton.php b/app/code/Magento/Theme/Block/Adminhtml/Design/Config/Edit/BackButton.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Block/Adminhtml/Design/Config/Edit/SaveAndContinueButton.php b/app/code/Magento/Theme/Block/Adminhtml/Design/Config/Edit/SaveAndContinueButton.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Block/Adminhtml/Design/Config/Edit/SaveButton.php b/app/code/Magento/Theme/Block/Adminhtml/Design/Config/Edit/SaveButton.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Block/Adminhtml/Design/Config/Edit/Scope.php b/app/code/Magento/Theme/Block/Adminhtml/Design/Config/Edit/Scope.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Block/Adminhtml/System/Design/Theme.php b/app/code/Magento/Theme/Block/Adminhtml/System/Design/Theme.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Block/Adminhtml/System/Design/Theme/Edit.php b/app/code/Magento/Theme/Block/Adminhtml/System/Design/Theme/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Block/Adminhtml/System/Design/Theme/Edit/AbstractTab.php b/app/code/Magento/Theme/Block/Adminhtml/System/Design/Theme/Edit/AbstractTab.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Block/Adminhtml/System/Design/Theme/Edit/Form.php b/app/code/Magento/Theme/Block/Adminhtml/System/Design/Theme/Edit/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Block/Adminhtml/System/Design/Theme/Edit/Form/Element/File.php b/app/code/Magento/Theme/Block/Adminhtml/System/Design/Theme/Edit/Form/Element/File.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Block/Adminhtml/System/Design/Theme/Edit/Form/Element/Image.php b/app/code/Magento/Theme/Block/Adminhtml/System/Design/Theme/Edit/Form/Element/Image.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Block/Adminhtml/System/Design/Theme/Edit/Form/Element/Links.php b/app/code/Magento/Theme/Block/Adminhtml/System/Design/Theme/Edit/Form/Element/Links.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Block/Adminhtml/System/Design/Theme/Edit/Tab/Css.php b/app/code/Magento/Theme/Block/Adminhtml/System/Design/Theme/Edit/Tab/Css.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Block/Adminhtml/System/Design/Theme/Edit/Tab/General.php b/app/code/Magento/Theme/Block/Adminhtml/System/Design/Theme/Edit/Tab/General.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Block/Adminhtml/System/Design/Theme/Edit/Tab/Js.php b/app/code/Magento/Theme/Block/Adminhtml/System/Design/Theme/Edit/Tab/Js.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Block/Adminhtml/System/Design/Theme/Edit/Tabs.php b/app/code/Magento/Theme/Block/Adminhtml/System/Design/Theme/Edit/Tabs.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Block/Adminhtml/Wysiwyg/Files/Content.php b/app/code/Magento/Theme/Block/Adminhtml/Wysiwyg/Files/Content.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Block/Adminhtml/Wysiwyg/Files/Content/Files.php b/app/code/Magento/Theme/Block/Adminhtml/Wysiwyg/Files/Content/Files.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Block/Adminhtml/Wysiwyg/Files/Content/Uploader.php b/app/code/Magento/Theme/Block/Adminhtml/Wysiwyg/Files/Content/Uploader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Block/Adminhtml/Wysiwyg/Files/Tree.php b/app/code/Magento/Theme/Block/Adminhtml/Wysiwyg/Files/Tree.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Block/Html/Breadcrumbs.php b/app/code/Magento/Theme/Block/Html/Breadcrumbs.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Block/Html/Footer.php b/app/code/Magento/Theme/Block/Html/Footer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Block/Html/Header.php b/app/code/Magento/Theme/Block/Html/Header.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Block/Html/Header/Logo.php b/app/code/Magento/Theme/Block/Html/Header/Logo.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Block/Html/Notices.php b/app/code/Magento/Theme/Block/Html/Notices.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Block/Html/Pager.php b/app/code/Magento/Theme/Block/Html/Pager.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Block/Html/Title.php b/app/code/Magento/Theme/Block/Html/Title.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Block/Html/Topmenu.php b/app/code/Magento/Theme/Block/Html/Topmenu.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Block/Html/Welcome.php b/app/code/Magento/Theme/Block/Html/Welcome.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Console/Command/ThemeUninstallCommand.php b/app/code/Magento/Theme/Console/Command/ThemeUninstallCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Controller/Adminhtml/Design/Config/Edit.php b/app/code/Magento/Theme/Controller/Adminhtml/Design/Config/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Controller/Adminhtml/Design/Config/FileUploader/Save.php b/app/code/Magento/Theme/Controller/Adminhtml/Design/Config/FileUploader/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Controller/Adminhtml/Design/Config/Index.php b/app/code/Magento/Theme/Controller/Adminhtml/Design/Config/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Controller/Adminhtml/Design/Config/Save.php b/app/code/Magento/Theme/Controller/Adminhtml/Design/Config/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Controller/Adminhtml/System/Design/Theme.php b/app/code/Magento/Theme/Controller/Adminhtml/System/Design/Theme.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Controller/Adminhtml/System/Design/Theme/Delete.php b/app/code/Magento/Theme/Controller/Adminhtml/System/Design/Theme/Delete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Controller/Adminhtml/System/Design/Theme/DownloadCss.php b/app/code/Magento/Theme/Controller/Adminhtml/System/Design/Theme/DownloadCss.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Controller/Adminhtml/System/Design/Theme/DownloadCustomCss.php b/app/code/Magento/Theme/Controller/Adminhtml/System/Design/Theme/DownloadCustomCss.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Controller/Adminhtml/System/Design/Theme/Edit.php b/app/code/Magento/Theme/Controller/Adminhtml/System/Design/Theme/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Controller/Adminhtml/System/Design/Theme/Grid.php b/app/code/Magento/Theme/Controller/Adminhtml/System/Design/Theme/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Controller/Adminhtml/System/Design/Theme/Index.php b/app/code/Magento/Theme/Controller/Adminhtml/System/Design/Theme/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Controller/Adminhtml/System/Design/Theme/NewAction.php b/app/code/Magento/Theme/Controller/Adminhtml/System/Design/Theme/NewAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Controller/Adminhtml/System/Design/Theme/Save.php b/app/code/Magento/Theme/Controller/Adminhtml/System/Design/Theme/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Controller/Adminhtml/System/Design/Theme/UploadCss.php b/app/code/Magento/Theme/Controller/Adminhtml/System/Design/Theme/UploadCss.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Controller/Adminhtml/System/Design/Theme/UploadJs.php b/app/code/Magento/Theme/Controller/Adminhtml/System/Design/Theme/UploadJs.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Controller/Adminhtml/System/Design/Wysiwyg/Files.php b/app/code/Magento/Theme/Controller/Adminhtml/System/Design/Wysiwyg/Files.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Controller/Adminhtml/System/Design/Wysiwyg/Files/Contents.php b/app/code/Magento/Theme/Controller/Adminhtml/System/Design/Wysiwyg/Files/Contents.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Controller/Adminhtml/System/Design/Wysiwyg/Files/DeleteFiles.php b/app/code/Magento/Theme/Controller/Adminhtml/System/Design/Wysiwyg/Files/DeleteFiles.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Controller/Adminhtml/System/Design/Wysiwyg/Files/DeleteFolder.php b/app/code/Magento/Theme/Controller/Adminhtml/System/Design/Wysiwyg/Files/DeleteFolder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Controller/Adminhtml/System/Design/Wysiwyg/Files/Index.php b/app/code/Magento/Theme/Controller/Adminhtml/System/Design/Wysiwyg/Files/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Controller/Adminhtml/System/Design/Wysiwyg/Files/NewFolder.php b/app/code/Magento/Theme/Controller/Adminhtml/System/Design/Wysiwyg/Files/NewFolder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Controller/Adminhtml/System/Design/Wysiwyg/Files/OnInsert.php b/app/code/Magento/Theme/Controller/Adminhtml/System/Design/Wysiwyg/Files/OnInsert.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Controller/Adminhtml/System/Design/Wysiwyg/Files/PreviewImage.php b/app/code/Magento/Theme/Controller/Adminhtml/System/Design/Wysiwyg/Files/PreviewImage.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Controller/Adminhtml/System/Design/Wysiwyg/Files/TreeJson.php b/app/code/Magento/Theme/Controller/Adminhtml/System/Design/Wysiwyg/Files/TreeJson.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Controller/Adminhtml/System/Design/Wysiwyg/Files/Upload.php b/app/code/Magento/Theme/Controller/Adminhtml/System/Design/Wysiwyg/Files/Upload.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Controller/Result/MessagePlugin.php b/app/code/Magento/Theme/Controller/Result/MessagePlugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/CustomerData/Messages.php b/app/code/Magento/Theme/CustomerData/Messages.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Helper/Storage.php b/app/code/Magento/Theme/Helper/Storage.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Helper/Theme.php b/app/code/Magento/Theme/Helper/Theme.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/LICENSE.txt b/app/code/Magento/Theme/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/LICENSE_AFL.txt b/app/code/Magento/Theme/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Config.php b/app/code/Magento/Theme/Model/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Config/Customization.php b/app/code/Magento/Theme/Model/Config/Customization.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Config/Importer.php b/app/code/Magento/Theme/Model/Config/Importer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Config/Processor/DesignTheme.php b/app/code/Magento/Theme/Model/Config/Processor/DesignTheme.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/CopyService.php b/app/code/Magento/Theme/Model/CopyService.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Data/Design/Config.php b/app/code/Magento/Theme/Model/Data/Design/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Data/Design/Config/Data.php b/app/code/Magento/Theme/Model/Data/Design/Config/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Data/Design/ConfigFactory.php b/app/code/Magento/Theme/Model/Data/Design/ConfigFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Design.php b/app/code/Magento/Theme/Model/Design.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Design/Backend/Exceptions.php b/app/code/Magento/Theme/Model/Design/Backend/Exceptions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Design/Backend/Favicon.php b/app/code/Magento/Theme/Model/Design/Backend/Favicon.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Design/Backend/File.php b/app/code/Magento/Theme/Model/Design/Backend/File.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Design/Backend/Image.php b/app/code/Magento/Theme/Model/Design/Backend/Image.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Design/Backend/Logo.php b/app/code/Magento/Theme/Model/Design/Backend/Logo.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Design/Backend/Theme.php b/app/code/Magento/Theme/Model/Design/Backend/Theme.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Design/BackendModelFactory.php b/app/code/Magento/Theme/Model/Design/BackendModelFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Design/Config/DataProvider.php b/app/code/Magento/Theme/Model/Design/Config/DataProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Design/Config/DataProvider/DataLoader.php b/app/code/Magento/Theme/Model/Design/Config/DataProvider/DataLoader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Design/Config/DataProvider/MetadataLoader.php b/app/code/Magento/Theme/Model/Design/Config/DataProvider/MetadataLoader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Design/Config/FileUploader/FileProcessor.php b/app/code/Magento/Theme/Model/Design/Config/FileUploader/FileProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Design/Config/MetadataProvider.php b/app/code/Magento/Theme/Model/Design/Config/MetadataProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Design/Config/MetadataProviderInterface.php b/app/code/Magento/Theme/Model/Design/Config/MetadataProviderInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Design/Config/Plugin.php b/app/code/Magento/Theme/Model/Design/Config/Plugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Design/Config/Plugin/Dump.php b/app/code/Magento/Theme/Model/Design/Config/Plugin/Dump.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Design/Config/Storage.php b/app/code/Magento/Theme/Model/Design/Config/Storage.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Design/Config/Validator.php b/app/code/Magento/Theme/Model/Design/Config/Validator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Design/Config/ValueChecker.php b/app/code/Magento/Theme/Model/Design/Config/ValueChecker.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Design/Config/ValueProcessor.php b/app/code/Magento/Theme/Model/Design/Config/ValueProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Design/Theme/Label.php b/app/code/Magento/Theme/Model/Design/Theme/Label.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/DesignConfigRepository.php b/app/code/Magento/Theme/Model/DesignConfigRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Favicon/Favicon.php b/app/code/Magento/Theme/Model/Favicon/Favicon.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Indexer/Design/Config.php b/app/code/Magento/Theme/Model/Indexer/Design/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Indexer/Design/Config/FieldsProvider.php b/app/code/Magento/Theme/Model/Indexer/Design/Config/FieldsProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Indexer/Design/Config/Plugin/Store.php b/app/code/Magento/Theme/Model/Indexer/Design/Config/Plugin/Store.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Indexer/Design/Config/Plugin/StoreGroup.php b/app/code/Magento/Theme/Model/Indexer/Design/Config/Plugin/StoreGroup.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Indexer/Design/Config/Plugin/Website.php b/app/code/Magento/Theme/Model/Indexer/Design/Config/Plugin/Website.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Layout/Config.php b/app/code/Magento/Theme/Model/Layout/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Layout/Config/Converter.php b/app/code/Magento/Theme/Model/Layout/Config/Converter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Layout/Config/Reader.php b/app/code/Magento/Theme/Model/Layout/Config/Reader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Layout/Config/SchemaLocator.php b/app/code/Magento/Theme/Model/Layout/Config/SchemaLocator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Layout/Source/Layout.php b/app/code/Magento/Theme/Model/Layout/Source/Layout.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/PageLayout/Config/Builder.php b/app/code/Magento/Theme/Model/PageLayout/Config/Builder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/ResourceModel/Design.php b/app/code/Magento/Theme/Model/ResourceModel/Design.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/ResourceModel/Design/Collection.php b/app/code/Magento/Theme/Model/ResourceModel/Design/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/ResourceModel/Design/Config.php b/app/code/Magento/Theme/Model/ResourceModel/Design/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/ResourceModel/Design/Config/Collection.php b/app/code/Magento/Theme/Model/ResourceModel/Design/Config/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/ResourceModel/Design/Config/Scope/Collection.php b/app/code/Magento/Theme/Model/ResourceModel/Design/Config/Scope/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/ResourceModel/Theme.php b/app/code/Magento/Theme/Model/ResourceModel/Theme.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/ResourceModel/Theme/Collection.php b/app/code/Magento/Theme/Model/ResourceModel/Theme/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/ResourceModel/Theme/Customization/Update.php b/app/code/Magento/Theme/Model/ResourceModel/Theme/Customization/Update.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/ResourceModel/Theme/Data/Collection.php b/app/code/Magento/Theme/Model/ResourceModel/Theme/Data/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/ResourceModel/Theme/File.php b/app/code/Magento/Theme/Model/ResourceModel/Theme/File.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/ResourceModel/Theme/File/Collection.php b/app/code/Magento/Theme/Model/ResourceModel/Theme/File/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/ResourceModel/Theme/Grid/Collection.php b/app/code/Magento/Theme/Model/ResourceModel/Theme/Grid/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Source/InitialThemeSource.php b/app/code/Magento/Theme/Model/Source/InitialThemeSource.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Theme.php b/app/code/Magento/Theme/Model/Theme.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Theme/Collection.php b/app/code/Magento/Theme/Model/Theme/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Theme/Customization/Config.php b/app/code/Magento/Theme/Model/Theme/Customization/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Theme/Customization/File/CustomCss.php b/app/code/Magento/Theme/Model/Theme/Customization/File/CustomCss.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Theme/Data.php b/app/code/Magento/Theme/Model/Theme/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Theme/Data/Collection.php b/app/code/Magento/Theme/Model/Theme/Data/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Theme/Domain/Physical.php b/app/code/Magento/Theme/Model/Theme/Domain/Physical.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Theme/Domain/Staging.php b/app/code/Magento/Theme/Model/Theme/Domain/Staging.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Theme/Domain/Virtual.php b/app/code/Magento/Theme/Model/Theme/Domain/Virtual.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Theme/File.php b/app/code/Magento/Theme/Model/Theme/File.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Theme/FileProvider.php b/app/code/Magento/Theme/Model/Theme/FileProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Theme/Image/Path.php b/app/code/Magento/Theme/Model/Theme/Image/Path.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Theme/Plugin/Registration.php b/app/code/Magento/Theme/Model/Theme/Plugin/Registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Theme/Registration.php b/app/code/Magento/Theme/Model/Theme/Registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Theme/Resolver.php b/app/code/Magento/Theme/Model/Theme/Resolver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Theme/SingleFile.php b/app/code/Magento/Theme/Model/Theme/SingleFile.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Theme/Source/Theme.php b/app/code/Magento/Theme/Model/Theme/Source/Theme.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Theme/ThemeDependencyChecker.php b/app/code/Magento/Theme/Model/Theme/ThemeDependencyChecker.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Theme/ThemePackageInfo.php b/app/code/Magento/Theme/Model/Theme/ThemePackageInfo.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Theme/ThemeProvider.php b/app/code/Magento/Theme/Model/Theme/ThemeProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Theme/ThemeUninstaller.php b/app/code/Magento/Theme/Model/Theme/ThemeUninstaller.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/ThemeValidator.php b/app/code/Magento/Theme/Model/ThemeValidator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Uploader/Service.php b/app/code/Magento/Theme/Model/Uploader/Service.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Url/Plugin/Signature.php b/app/code/Magento/Theme/Model/Url/Plugin/Signature.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/View/Design.php b/app/code/Magento/Theme/Model/View/Design.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Model/Wysiwyg/Storage.php b/app/code/Magento/Theme/Model/Wysiwyg/Storage.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Observer/ApplyThemeCustomizationObserver.php b/app/code/Magento/Theme/Observer/ApplyThemeCustomizationObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Observer/CheckThemeIsAssignedObserver.php b/app/code/Magento/Theme/Observer/CheckThemeIsAssignedObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Observer/CleanThemeRelatedContentObserver.php b/app/code/Magento/Theme/Observer/CleanThemeRelatedContentObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/README.md b/app/code/Magento/Theme/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Setup/InstallData.php b/app/code/Magento/Theme/Setup/InstallData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Setup/InstallSchema.php b/app/code/Magento/Theme/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Setup/RecurringData.php b/app/code/Magento/Theme/Setup/RecurringData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Setup/UpgradeData.php b/app/code/Magento/Theme/Setup/UpgradeData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Block/Adminhtml/Design/Config/Edit/BackButtonTest.php b/app/code/Magento/Theme/Test/Unit/Block/Adminhtml/Design/Config/Edit/BackButtonTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Block/Adminhtml/Design/Config/Edit/SaveButtonTest.php b/app/code/Magento/Theme/Test/Unit/Block/Adminhtml/Design/Config/Edit/SaveButtonTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Block/Adminhtml/Design/Config/Edit/ScopeTest.php b/app/code/Magento/Theme/Test/Unit/Block/Adminhtml/Design/Config/Edit/ScopeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Block/Adminhtml/System/Design/Theme/Edit/Form/Element/FileTest.php b/app/code/Magento/Theme/Test/Unit/Block/Adminhtml/System/Design/Theme/Edit/Form/Element/FileTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Block/Adminhtml/System/Design/Theme/Edit/FormTest.php b/app/code/Magento/Theme/Test/Unit/Block/Adminhtml/System/Design/Theme/Edit/FormTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Block/Adminhtml/System/Design/Theme/Tab/CssTest.php b/app/code/Magento/Theme/Test/Unit/Block/Adminhtml/System/Design/Theme/Tab/CssTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Block/Adminhtml/System/Design/Theme/Tab/JsTest.php b/app/code/Magento/Theme/Test/Unit/Block/Adminhtml/System/Design/Theme/Tab/JsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Block/Adminhtml/System/Design/Theme/TabAbstractTest.php b/app/code/Magento/Theme/Test/Unit/Block/Adminhtml/System/Design/Theme/TabAbstractTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Block/Adminhtml/Wysiwyg/Files/ContentTest.php b/app/code/Magento/Theme/Test/Unit/Block/Adminhtml/Wysiwyg/Files/ContentTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Block/Adminhtml/Wysiwyg/Files/TreeTest.php b/app/code/Magento/Theme/Test/Unit/Block/Adminhtml/Wysiwyg/Files/TreeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Block/Html/FooterTest.php b/app/code/Magento/Theme/Test/Unit/Block/Html/FooterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Block/Html/Header/LogoTest.php b/app/code/Magento/Theme/Test/Unit/Block/Html/Header/LogoTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Block/Html/HeaderTest.php b/app/code/Magento/Theme/Test/Unit/Block/Html/HeaderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Block/Html/TitleTest.php b/app/code/Magento/Theme/Test/Unit/Block/Html/TitleTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Block/Html/TopmenuTest.php b/app/code/Magento/Theme/Test/Unit/Block/Html/TopmenuTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Block/Html/_files/logo/default/image.gif b/app/code/Magento/Theme/Test/Unit/Block/Html/_files/logo/default/image.gif
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Console/Command/ThemeUninstallCommandTest.php b/app/code/Magento/Theme/Test/Unit/Console/Command/ThemeUninstallCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/Design/Config/EditTest.php b/app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/Design/Config/EditTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/Design/Config/FileUploader/SaveTest.php b/app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/Design/Config/FileUploader/SaveTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/Design/Config/IndexTest.php b/app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/Design/Config/IndexTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/Design/Config/SaveTest.php b/app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/Design/Config/SaveTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/System/Design/Theme/DeleteTest.php b/app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/System/Design/Theme/DeleteTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/System/Design/Theme/DownloadCssTest.php b/app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/System/Design/Theme/DownloadCssTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/System/Design/Theme/DownloadCustomCssTest.php b/app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/System/Design/Theme/DownloadCustomCssTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/System/Design/Theme/EditTest.php b/app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/System/Design/Theme/EditTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/System/Design/Theme/GridTest.php b/app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/System/Design/Theme/GridTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/System/Design/Theme/IndexTest.php b/app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/System/Design/Theme/IndexTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/System/Design/Theme/SaveTest.php b/app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/System/Design/Theme/SaveTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/System/Design/Theme/UploadCssTest.php b/app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/System/Design/Theme/UploadCssTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/System/Design/Theme/UploadJsTest.php b/app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/System/Design/Theme/UploadJsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/System/Design/ThemeTest.php b/app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/System/Design/ThemeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/System/Design/Wysiwyg/Files/ContentsTest.php b/app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/System/Design/Wysiwyg/Files/ContentsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/System/Design/Wysiwyg/Files/DeleteFilesTest.php b/app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/System/Design/Wysiwyg/Files/DeleteFilesTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/System/Design/Wysiwyg/Files/DeleteFolderTest.php b/app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/System/Design/Wysiwyg/Files/DeleteFolderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/System/Design/Wysiwyg/Files/IndexTest.php b/app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/System/Design/Wysiwyg/Files/IndexTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/System/Design/Wysiwyg/Files/OnInsertTest.php b/app/code/Magento/Theme/Test/Unit/Controller/Adminhtml/System/Design/Wysiwyg/Files/OnInsertTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Controller/Result/MessagePluginTest.php b/app/code/Magento/Theme/Test/Unit/Controller/Result/MessagePluginTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/CustomerData/MessagesTest.php b/app/code/Magento/Theme/Test/Unit/CustomerData/MessagesTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Helper/StorageTest.php b/app/code/Magento/Theme/Test/Unit/Helper/StorageTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Helper/ThemeTest.php b/app/code/Magento/Theme/Test/Unit/Helper/ThemeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Config/CustomizationTest.php b/app/code/Magento/Theme/Test/Unit/Model/Config/CustomizationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Config/ImporterTest.php b/app/code/Magento/Theme/Test/Unit/Model/Config/ImporterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Config/Processor/DesignThemeTest.php b/app/code/Magento/Theme/Test/Unit/Model/Config/Processor/DesignThemeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Config/ValidatorTest.php b/app/code/Magento/Theme/Test/Unit/Model/Config/ValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Config/_files/template_fixture.html b/app/code/Magento/Theme/Test/Unit/Model/Config/_files/template_fixture.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/ConfigTest.php b/app/code/Magento/Theme/Test/Unit/Model/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/CopyServiceTest.php b/app/code/Magento/Theme/Test/Unit/Model/CopyServiceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Data/Design/ConfigFactoryTest.php b/app/code/Magento/Theme/Test/Unit/Model/Data/Design/ConfigFactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Design/Backend/ExceptionsTest.php b/app/code/Magento/Theme/Test/Unit/Model/Design/Backend/ExceptionsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Design/Backend/FileTest.php b/app/code/Magento/Theme/Test/Unit/Model/Design/Backend/FileTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Design/Backend/ThemeTest.php b/app/code/Magento/Theme/Test/Unit/Model/Design/Backend/ThemeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Design/BackendModelFactoryTest.php b/app/code/Magento/Theme/Test/Unit/Model/Design/BackendModelFactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Design/Config/DataProvider/DataLoaderTest.php b/app/code/Magento/Theme/Test/Unit/Model/Design/Config/DataProvider/DataLoaderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Design/Config/DataProvider/MetadataLoaderTest.php b/app/code/Magento/Theme/Test/Unit/Model/Design/Config/DataProvider/MetadataLoaderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Design/Config/DataProviderTest.php b/app/code/Magento/Theme/Test/Unit/Model/Design/Config/DataProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Design/Config/FileUploader/FileProcessorTest.php b/app/code/Magento/Theme/Test/Unit/Model/Design/Config/FileUploader/FileProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Design/Config/Plugin/DumpTest.php b/app/code/Magento/Theme/Test/Unit/Model/Design/Config/Plugin/DumpTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Design/Config/PluginTest.php b/app/code/Magento/Theme/Test/Unit/Model/Design/Config/PluginTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Design/Config/StorageTest.php b/app/code/Magento/Theme/Test/Unit/Model/Design/Config/StorageTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Design/Config/ValueCheckerTest.php b/app/code/Magento/Theme/Test/Unit/Model/Design/Config/ValueCheckerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Design/Config/ValueProcessorTest.php b/app/code/Magento/Theme/Test/Unit/Model/Design/Config/ValueProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/DesignConfigRepositoryTest.php b/app/code/Magento/Theme/Test/Unit/Model/DesignConfigRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/DesignTest.php b/app/code/Magento/Theme/Test/Unit/Model/DesignTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Favicon/FaviconTest.php b/app/code/Magento/Theme/Test/Unit/Model/Favicon/FaviconTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Indexer/Design/Config/Plugin/StoreGroupTest.php b/app/code/Magento/Theme/Test/Unit/Model/Indexer/Design/Config/Plugin/StoreGroupTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Indexer/Design/Config/Plugin/StoreTest.php b/app/code/Magento/Theme/Test/Unit/Model/Indexer/Design/Config/Plugin/StoreTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Indexer/Design/Config/Plugin/WebsiteTest.php b/app/code/Magento/Theme/Test/Unit/Model/Indexer/Design/Config/Plugin/WebsiteTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Indexer/Design/ConfigTest.php b/app/code/Magento/Theme/Test/Unit/Model/Indexer/Design/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Layout/Config/ConverterTest.php b/app/code/Magento/Theme/Test/Unit/Model/Layout/Config/ConverterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Layout/Config/SchemaLocatorTest.php b/app/code/Magento/Theme/Test/Unit/Model/Layout/Config/SchemaLocatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Layout/Config/_files/page_layouts.xml b/app/code/Magento/Theme/Test/Unit/Model/Layout/Config/_files/page_layouts.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Layout/ConfigTest.php b/app/code/Magento/Theme/Test/Unit/Model/Layout/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Layout/Source/LayoutTest.php b/app/code/Magento/Theme/Test/Unit/Model/Layout/Source/LayoutTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/PageLayout/Config/BuilderTest.php b/app/code/Magento/Theme/Test/Unit/Model/PageLayout/Config/BuilderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/ResourceModel/Design/Config/Scope/CollectionTest.php b/app/code/Magento/Theme/Test/Unit/Model/ResourceModel/Design/Config/Scope/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Source/InitialThemeSourceTest.php b/app/code/Magento/Theme/Test/Unit/Model/Source/InitialThemeSourceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Theme/CollectionTest.php b/app/code/Magento/Theme/Test/Unit/Model/Theme/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Theme/Customization/ConfigTest.php b/app/code/Magento/Theme/Test/Unit/Model/Theme/Customization/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Theme/Customization/File/CustomCssTest.php b/app/code/Magento/Theme/Test/Unit/Model/Theme/Customization/File/CustomCssTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Theme/DataTest.php b/app/code/Magento/Theme/Test/Unit/Model/Theme/DataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Theme/Domain/PhysicalTest.php b/app/code/Magento/Theme/Test/Unit/Model/Theme/Domain/PhysicalTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Theme/Domain/StagingTest.php b/app/code/Magento/Theme/Test/Unit/Model/Theme/Domain/StagingTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Theme/Domain/VirtualTest.php b/app/code/Magento/Theme/Test/Unit/Model/Theme/Domain/VirtualTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Theme/FileProviderTest.php b/app/code/Magento/Theme/Test/Unit/Model/Theme/FileProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Theme/FileTest.php b/app/code/Magento/Theme/Test/Unit/Model/Theme/FileTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Theme/Image/PathTest.php b/app/code/Magento/Theme/Test/Unit/Model/Theme/Image/PathTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Theme/Plugin/RegistrationTest.php b/app/code/Magento/Theme/Test/Unit/Model/Theme/Plugin/RegistrationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Theme/RegistrationTest.php b/app/code/Magento/Theme/Test/Unit/Model/Theme/RegistrationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Theme/ResolverTest.php b/app/code/Magento/Theme/Test/Unit/Model/Theme/ResolverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Theme/SingleFileTest.php b/app/code/Magento/Theme/Test/Unit/Model/Theme/SingleFileTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Theme/Source/ThemeTest.php b/app/code/Magento/Theme/Test/Unit/Model/Theme/Source/ThemeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Theme/ThemeDependencyCheckerTest.php b/app/code/Magento/Theme/Test/Unit/Model/Theme/ThemeDependencyCheckerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Theme/ThemePackageInfoTest.php b/app/code/Magento/Theme/Test/Unit/Model/Theme/ThemePackageInfoTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Theme/ThemeProviderTest.php b/app/code/Magento/Theme/Test/Unit/Model/Theme/ThemeProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Theme/ThemeUninstallerTest.php b/app/code/Magento/Theme/Test/Unit/Model/Theme/ThemeUninstallerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Theme/ValidationTest.php b/app/code/Magento/Theme/Test/Unit/Model/Theme/ValidationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/ThemeTest.php b/app/code/Magento/Theme/Test/Unit/Model/ThemeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/ThemeValidatorTest.php b/app/code/Magento/Theme/Test/Unit/Model/ThemeValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Uploader/ServiceTest.php b/app/code/Magento/Theme/Test/Unit/Model/Uploader/ServiceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Url/Plugin/SignatureTest.php b/app/code/Magento/Theme/Test/Unit/Model/Url/Plugin/SignatureTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/View/DesignTest.php b/app/code/Magento/Theme/Test/Unit/Model/View/DesignTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/Wysiwyg/StorageTest.php b/app/code/Magento/Theme/Test/Unit/Model/Wysiwyg/StorageTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/_files/frontend/magento_iphone/theme.xml b/app/code/Magento/Theme/Test/Unit/Model/_files/frontend/magento_iphone/theme.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Model/_files/frontend/magento_iphone/theme_invalid.xml b/app/code/Magento/Theme/Test/Unit/Model/_files/frontend/magento_iphone/theme_invalid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Observer/ApplyThemeCustomizationObserverTest.php b/app/code/Magento/Theme/Test/Unit/Observer/ApplyThemeCustomizationObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Observer/CheckThemeIsAssignedObserverTest.php b/app/code/Magento/Theme/Test/Unit/Observer/CheckThemeIsAssignedObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Observer/CleanThemeRelatedContentObserverTest.php b/app/code/Magento/Theme/Test/Unit/Observer/CleanThemeRelatedContentObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Ui/Component/Design/Config/SearchRobots/ResetButtonTest.php b/app/code/Magento/Theme/Test/Unit/Ui/Component/Design/Config/SearchRobots/ResetButtonTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Test/Unit/Ui/Component/Listing/Column/EditActionTest.php b/app/code/Magento/Theme/Test/Unit/Ui/Component/Listing/Column/EditActionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Ui/Component/Design/Config/DataProvider.php b/app/code/Magento/Theme/Ui/Component/Design/Config/DataProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Ui/Component/Design/Config/SearchRobots/ResetButton.php b/app/code/Magento/Theme/Ui/Component/Design/Config/SearchRobots/ResetButton.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/Ui/Component/Listing/Column/EditAction.php b/app/code/Magento/Theme/Ui/Component/Listing/Column/EditAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/composer.json b/app/code/Magento/Theme/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/etc/acl.xml b/app/code/Magento/Theme/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/etc/adminhtml/di.xml b/app/code/Magento/Theme/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/etc/adminhtml/menu.xml b/app/code/Magento/Theme/etc/adminhtml/menu.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/etc/adminhtml/routes.xml b/app/code/Magento/Theme/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/etc/config.xml b/app/code/Magento/Theme/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/etc/di.xml b/app/code/Magento/Theme/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/etc/events.xml b/app/code/Magento/Theme/etc/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/etc/extension_attributes.xml b/app/code/Magento/Theme/etc/extension_attributes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/etc/frontend/di.xml b/app/code/Magento/Theme/etc/frontend/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/etc/frontend/events.xml b/app/code/Magento/Theme/etc/frontend/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/etc/frontend/sections.xml b/app/code/Magento/Theme/etc/frontend/sections.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/etc/indexer.xml b/app/code/Magento/Theme/etc/indexer.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/etc/module.xml b/app/code/Magento/Theme/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/etc/mview.xml b/app/code/Magento/Theme/etc/mview.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/i18n/en_US.csv b/app/code/Magento/Theme/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/registration.php b/app/code/Magento/Theme/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/adminhtml/layout/adminhtml_system_design_theme_block.xml b/app/code/Magento/Theme/view/adminhtml/layout/adminhtml_system_design_theme_block.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/adminhtml/layout/adminhtml_system_design_theme_edit.xml b/app/code/Magento/Theme/view/adminhtml/layout/adminhtml_system_design_theme_edit.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/adminhtml/layout/adminhtml_system_design_theme_grid.xml b/app/code/Magento/Theme/view/adminhtml/layout/adminhtml_system_design_theme_grid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/adminhtml/layout/adminhtml_system_design_theme_index.xml b/app/code/Magento/Theme/view/adminhtml/layout/adminhtml_system_design_theme_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/adminhtml/layout/adminhtml_system_design_wysiwyg_files_contents.xml b/app/code/Magento/Theme/view/adminhtml/layout/adminhtml_system_design_wysiwyg_files_contents.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/adminhtml/layout/adminhtml_system_design_wysiwyg_files_index.xml b/app/code/Magento/Theme/view/adminhtml/layout/adminhtml_system_design_wysiwyg_files_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/adminhtml/layout/theme_design_config_edit.xml b/app/code/Magento/Theme/view/adminhtml/layout/theme_design_config_edit.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/adminhtml/layout/theme_design_config_index.xml b/app/code/Magento/Theme/view/adminhtml/layout/theme_design_config_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/adminhtml/layouts.xml b/app/code/Magento/Theme/view/adminhtml/layouts.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/adminhtml/page_layout/admin-1column.xml b/app/code/Magento/Theme/view/adminhtml/page_layout/admin-1column.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/adminhtml/page_layout/admin-2columns-left.xml b/app/code/Magento/Theme/view/adminhtml/page_layout/admin-2columns-left.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/adminhtml/page_layout/admin-empty.xml b/app/code/Magento/Theme/view/adminhtml/page_layout/admin-empty.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/adminhtml/page_layout/admin-login.xml b/app/code/Magento/Theme/view/adminhtml/page_layout/admin-login.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/adminhtml/requirejs-config.js b/app/code/Magento/Theme/view/adminhtml/requirejs-config.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/adminhtml/templates/browser/content.phtml b/app/code/Magento/Theme/view/adminhtml/templates/browser/content.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/adminhtml/templates/browser/content/files.phtml b/app/code/Magento/Theme/view/adminhtml/templates/browser/content/files.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/adminhtml/templates/browser/content/uploader.phtml b/app/code/Magento/Theme/view/adminhtml/templates/browser/content/uploader.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/adminhtml/templates/design/config/edit/scope.phtml b/app/code/Magento/Theme/view/adminhtml/templates/design/config/edit/scope.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/adminhtml/templates/tabs/css.phtml b/app/code/Magento/Theme/view/adminhtml/templates/tabs/css.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/adminhtml/templates/tabs/fieldset/js.phtml b/app/code/Magento/Theme/view/adminhtml/templates/tabs/fieldset/js.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/adminhtml/templates/tabs/js.phtml b/app/code/Magento/Theme/view/adminhtml/templates/tabs/js.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/adminhtml/templates/title.phtml b/app/code/Magento/Theme/view/adminhtml/templates/title.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/adminhtml/ui_component/design_config_form.xml b/app/code/Magento/Theme/view/adminhtml/ui_component/design_config_form.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/adminhtml/ui_component/design_config_listing.xml b/app/code/Magento/Theme/view/adminhtml/ui_component/design_config_listing.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/adminhtml/web/calendar.png b/app/code/Magento/Theme/view/adminhtml/web/calendar.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/adminhtml/web/css/theme.css b/app/code/Magento/Theme/view/adminhtml/web/css/theme.css
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/adminhtml/web/fam_book_open.png b/app/code/Magento/Theme/view/adminhtml/web/fam_book_open.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/adminhtml/web/favicon.ico b/app/code/Magento/Theme/view/adminhtml/web/favicon.ico
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/adminhtml/web/images/bkg_movable-arrows.png b/app/code/Magento/Theme/view/adminhtml/web/images/bkg_movable-arrows.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/adminhtml/web/images/js_icon.gif b/app/code/Magento/Theme/view/adminhtml/web/images/js_icon.gif
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/adminhtml/web/js/bootstrap.js b/app/code/Magento/Theme/view/adminhtml/web/js/bootstrap.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/adminhtml/web/js/custom-js-list.js b/app/code/Magento/Theme/view/adminhtml/web/js/custom-js-list.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/adminhtml/web/js/form.js b/app/code/Magento/Theme/view/adminhtml/web/js/form.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/adminhtml/web/js/form/component/robots-reset-button.js b/app/code/Magento/Theme/view/adminhtml/web/js/form/component/robots-reset-button.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/adminhtml/web/js/sortable.js b/app/code/Magento/Theme/view/adminhtml/web/js/sortable.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/adminhtml/web/prototype/magento.css b/app/code/Magento/Theme/view/adminhtml/web/prototype/magento.css
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/adminhtml/web/template/form/button-field.html b/app/code/Magento/Theme/view/adminhtml/web/template/form/button-field.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/adminhtml/web/template/form/element/button.html b/app/code/Magento/Theme/view/adminhtml/web/template/form/element/button.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/adminhtml/web/theme/default_preview.jpg b/app/code/Magento/Theme/view/adminhtml/web/theme/default_preview.jpg
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/base/layouts.xml b/app/code/Magento/Theme/view/base/layouts.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/base/page_layout/empty.xml b/app/code/Magento/Theme/view/base/page_layout/empty.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/base/requirejs-config.js b/app/code/Magento/Theme/view/base/requirejs-config.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/base/templates/root.phtml b/app/code/Magento/Theme/view/base/templates/root.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/layout/default.xml b/app/code/Magento/Theme/view/frontend/layout/default.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/layout/default_head_blocks.xml b/app/code/Magento/Theme/view/frontend/layout/default_head_blocks.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/layout/page_calendar.xml b/app/code/Magento/Theme/view/frontend/layout/page_calendar.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/layout/print.xml b/app/code/Magento/Theme/view/frontend/layout/print.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/layouts.xml b/app/code/Magento/Theme/view/frontend/layouts.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/page_layout/1column.xml b/app/code/Magento/Theme/view/frontend/page_layout/1column.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/page_layout/2columns-left.xml b/app/code/Magento/Theme/view/frontend/page_layout/2columns-left.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/page_layout/2columns-right.xml b/app/code/Magento/Theme/view/frontend/page_layout/2columns-right.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/page_layout/3columns.xml b/app/code/Magento/Theme/view/frontend/page_layout/3columns.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/requirejs-config.js b/app/code/Magento/Theme/view/frontend/requirejs-config.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/templates/callouts/left_col.phtml b/app/code/Magento/Theme/view/frontend/templates/callouts/left_col.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/templates/callouts/right_col.phtml b/app/code/Magento/Theme/view/frontend/templates/callouts/right_col.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/templates/html/absolute_footer.phtml b/app/code/Magento/Theme/view/frontend/templates/html/absolute_footer.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/templates/html/block.phtml b/app/code/Magento/Theme/view/frontend/templates/html/block.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/templates/html/breadcrumbs.phtml b/app/code/Magento/Theme/view/frontend/templates/html/breadcrumbs.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/templates/html/bugreport.phtml b/app/code/Magento/Theme/view/frontend/templates/html/bugreport.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/templates/html/collapsible.phtml b/app/code/Magento/Theme/view/frontend/templates/html/collapsible.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/templates/html/container.phtml b/app/code/Magento/Theme/view/frontend/templates/html/container.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/templates/html/copyright.phtml b/app/code/Magento/Theme/view/frontend/templates/html/copyright.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/templates/html/footer.phtml b/app/code/Magento/Theme/view/frontend/templates/html/footer.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/templates/html/header.phtml b/app/code/Magento/Theme/view/frontend/templates/html/header.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/templates/html/header/logo.phtml b/app/code/Magento/Theme/view/frontend/templates/html/header/logo.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/templates/html/messages.phtml b/app/code/Magento/Theme/view/frontend/templates/html/messages.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/templates/html/notices.phtml b/app/code/Magento/Theme/view/frontend/templates/html/notices.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/templates/html/pager.phtml b/app/code/Magento/Theme/view/frontend/templates/html/pager.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/templates/html/print.phtml b/app/code/Magento/Theme/view/frontend/templates/html/print.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/templates/html/sections.phtml b/app/code/Magento/Theme/view/frontend/templates/html/sections.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/templates/html/skip.phtml b/app/code/Magento/Theme/view/frontend/templates/html/skip.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/templates/html/skiptarget.phtml b/app/code/Magento/Theme/view/frontend/templates/html/skiptarget.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/templates/html/title.phtml b/app/code/Magento/Theme/view/frontend/templates/html/title.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/templates/html/topmenu.phtml b/app/code/Magento/Theme/view/frontend/templates/html/topmenu.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/templates/js/calendar.phtml b/app/code/Magento/Theme/view/frontend/templates/js/calendar.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/templates/js/components.phtml b/app/code/Magento/Theme/view/frontend/templates/js/components.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/templates/js/cookie.phtml b/app/code/Magento/Theme/view/frontend/templates/js/cookie.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/templates/js/polyfill.phtml b/app/code/Magento/Theme/view/frontend/templates/js/polyfill.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/templates/link.phtml b/app/code/Magento/Theme/view/frontend/templates/link.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/templates/messages.phtml b/app/code/Magento/Theme/view/frontend/templates/messages.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/templates/page/js/require_js.phtml b/app/code/Magento/Theme/view/frontend/templates/page/js/require_js.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/templates/template.phtml b/app/code/Magento/Theme/view/frontend/templates/template.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/templates/text.phtml b/app/code/Magento/Theme/view/frontend/templates/text.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/web/calendar.png b/app/code/Magento/Theme/view/frontend/web/calendar.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/web/css/tabs.css b/app/code/Magento/Theme/view/frontend/web/css/tabs.css
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/web/css/validate.css b/app/code/Magento/Theme/view/frontend/web/css/validate.css
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/web/fam_book_open.png b/app/code/Magento/Theme/view/frontend/web/fam_book_open.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/web/favicon.ico b/app/code/Magento/Theme/view/frontend/web/favicon.ico
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/web/images/validation_advice_bg.gif b/app/code/Magento/Theme/view/frontend/web/images/validation_advice_bg.gif
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/web/js/row-builder.js b/app/code/Magento/Theme/view/frontend/web/js/row-builder.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/web/js/truncate.js b/app/code/Magento/Theme/view/frontend/web/js/truncate.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/web/js/view/messages.js b/app/code/Magento/Theme/view/frontend/web/js/view/messages.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/web/menu.js b/app/code/Magento/Theme/view/frontend/web/menu.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/frontend/web/prototype/magento.css b/app/code/Magento/Theme/view/frontend/web/prototype/magento.css
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Theme/view/install/web/favicon.ico b/app/code/Magento/Theme/view/install/web/favicon.ico
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/App/Config/Type/Translation.php b/app/code/Magento/Translation/App/Config/Type/Translation.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/Block/Html/Head/Config.php b/app/code/Magento/Translation/Block/Html/Head/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/Block/Js.php b/app/code/Magento/Translation/Block/Js.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/Console/Command/UninstallLanguageCommand.php b/app/code/Magento/Translation/Console/Command/UninstallLanguageCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/Controller/Ajax/Index.php b/app/code/Magento/Translation/Controller/Ajax/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/LICENSE.txt b/app/code/Magento/Translation/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/LICENSE_AFL.txt b/app/code/Magento/Translation/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/Model/FileManager.php b/app/code/Magento/Translation/Model/FileManager.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/Model/Inline/CacheManager.php b/app/code/Magento/Translation/Model/Inline/CacheManager.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/Model/Inline/Config.php b/app/code/Magento/Translation/Model/Inline/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/Model/Inline/Parser.php b/app/code/Magento/Translation/Model/Inline/Parser.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/Model/Js/Config.php b/app/code/Magento/Translation/Model/Js/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/Model/Js/Config/Source/Strategy.php b/app/code/Magento/Translation/Model/Js/Config/Source/Strategy.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/Model/Js/DataProvider.php b/app/code/Magento/Translation/Model/Js/DataProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/Model/Js/DataProviderInterface.php b/app/code/Magento/Translation/Model/Js/DataProviderInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/Model/Js/PreProcessor.php b/app/code/Magento/Translation/Model/Js/PreProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/Model/Json/PreProcessor.php b/app/code/Magento/Translation/Model/Json/PreProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/Model/ResourceModel/StringUtils.php b/app/code/Magento/Translation/Model/ResourceModel/StringUtils.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/Model/ResourceModel/Translate.php b/app/code/Magento/Translation/Model/ResourceModel/Translate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/Model/Source/InitialTranslationSource.php b/app/code/Magento/Translation/Model/Source/InitialTranslationSource.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/Model/StringUtils.php b/app/code/Magento/Translation/Model/StringUtils.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/README.md b/app/code/Magento/Translation/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/Setup/InstallSchema.php b/app/code/Magento/Translation/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/Test/Unit/App/Config/Type/TranslationTest.php b/app/code/Magento/Translation/Test/Unit/App/Config/Type/TranslationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/Test/Unit/Block/JsTest.php b/app/code/Magento/Translation/Test/Unit/Block/JsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/Test/Unit/Console/Command/UninstallLanguageCommandTest.php b/app/code/Magento/Translation/Test/Unit/Console/Command/UninstallLanguageCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/Test/Unit/Model/FileManagerTest.php b/app/code/Magento/Translation/Test/Unit/Model/FileManagerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/Test/Unit/Model/Inline/CacheManagerTest.php b/app/code/Magento/Translation/Test/Unit/Model/Inline/CacheManagerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/Test/Unit/Model/Inline/ConfigTest.php b/app/code/Magento/Translation/Test/Unit/Model/Inline/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/Test/Unit/Model/Inline/ParserTest.php b/app/code/Magento/Translation/Test/Unit/Model/Inline/ParserTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/Test/Unit/Model/Inline/_files/datatranslate_fixture.html b/app/code/Magento/Translation/Test/Unit/Model/Inline/_files/datatranslate_fixture.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/Test/Unit/Model/Js/Config/Source/StrategyTest.php b/app/code/Magento/Translation/Test/Unit/Model/Js/Config/Source/StrategyTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/Test/Unit/Model/Js/ConfigTest.php b/app/code/Magento/Translation/Test/Unit/Model/Js/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/Test/Unit/Model/Js/DataProviderTest.php b/app/code/Magento/Translation/Test/Unit/Model/Js/DataProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/Test/Unit/Model/Js/PreProcessorTest.php b/app/code/Magento/Translation/Test/Unit/Model/Js/PreProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/Test/Unit/Model/Json/PreProcessorTest.php b/app/code/Magento/Translation/Test/Unit/Model/Json/PreProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/Test/Unit/Model/Source/InitialTranslationSourceTest.php b/app/code/Magento/Translation/Test/Unit/Model/Source/InitialTranslationSourceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/composer.json b/app/code/Magento/Translation/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/etc/adminhtml/di.xml b/app/code/Magento/Translation/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/etc/adminhtml/routes.xml b/app/code/Magento/Translation/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/etc/adminhtml/system.xml b/app/code/Magento/Translation/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/etc/cache.xml b/app/code/Magento/Translation/etc/cache.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/etc/config.xml b/app/code/Magento/Translation/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/etc/di.xml b/app/code/Magento/Translation/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/etc/frontend/routes.xml b/app/code/Magento/Translation/etc/frontend/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/etc/module.xml b/app/code/Magento/Translation/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/i18n/en_US.csv b/app/code/Magento/Translation/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/registration.php b/app/code/Magento/Translation/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/view/adminhtml/templates/translate_inline.phtml b/app/code/Magento/Translation/view/adminhtml/templates/translate_inline.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/view/base/templates/translate.phtml b/app/code/Magento/Translation/view/base/templates/translate.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/view/base/web/js/i18n-config.js b/app/code/Magento/Translation/view/base/web/js/i18n-config.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/view/frontend/requirejs-config.js b/app/code/Magento/Translation/view/frontend/requirejs-config.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/view/frontend/templates/translate_inline.phtml b/app/code/Magento/Translation/view/frontend/templates/translate_inline.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/view/frontend/web/add-class.js b/app/code/Magento/Translation/view/frontend/web/add-class.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/view/frontend/web/translate_edit_icon.png b/app/code/Magento/Translation/view/frontend/web/translate_edit_icon.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Translation/view/frontend/web/translate_edit_icon_hover.png b/app/code/Magento/Translation/view/frontend/web/translate_edit_icon_hover.png
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Api/BookmarkManagementInterface.php b/app/code/Magento/Ui/Api/BookmarkManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Api/BookmarkRepositoryInterface.php b/app/code/Magento/Ui/Api/BookmarkRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Api/Data/BookmarkExtensionInterface.php b/app/code/Magento/Ui/Api/Data/BookmarkExtensionInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Api/Data/BookmarkInterface.php b/app/code/Magento/Ui/Api/Data/BookmarkInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Api/Data/BookmarkSearchResultsInterface.php b/app/code/Magento/Ui/Api/Data/BookmarkSearchResultsInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Block/Component/StepsWizard.php b/app/code/Magento/Ui/Block/Component/StepsWizard.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Block/Component/StepsWizard/StepAbstract.php b/app/code/Magento/Ui/Block/Component/StepsWizard/StepAbstract.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Block/Component/StepsWizard/StepInterface.php b/app/code/Magento/Ui/Block/Component/StepsWizard/StepInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Block/Logger.php b/app/code/Magento/Ui/Block/Logger.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Block/Wrapper.php b/app/code/Magento/Ui/Block/Wrapper.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/AbstractComponent.php b/app/code/Magento/Ui/Component/AbstractComponent.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Action.php b/app/code/Magento/Ui/Component/Action.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Bookmark.php b/app/code/Magento/Ui/Component/Bookmark.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Container.php b/app/code/Magento/Ui/Component/Container.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Control/Action.php b/app/code/Magento/Ui/Component/Control/Action.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Control/ActionPool.php b/app/code/Magento/Ui/Component/Control/ActionPool.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Control/Button.php b/app/code/Magento/Ui/Component/Control/Button.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Control/Container.php b/app/code/Magento/Ui/Component/Control/Container.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Control/Item.php b/app/code/Magento/Ui/Component/Control/Item.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Control/Link.php b/app/code/Magento/Ui/Component/Control/Link.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Control/SplitButton.php b/app/code/Magento/Ui/Component/Control/SplitButton.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/DataSource.php b/app/code/Magento/Ui/Component/DataSource.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/DynamicRows.php b/app/code/Magento/Ui/Component/DynamicRows.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/ExportButton.php b/app/code/Magento/Ui/Component/ExportButton.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Filters.php b/app/code/Magento/Ui/Component/Filters.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Filters/FilterModifier.php b/app/code/Magento/Ui/Component/Filters/FilterModifier.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Filters/Type/AbstractFilter.php b/app/code/Magento/Ui/Component/Filters/Type/AbstractFilter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Filters/Type/Date.php b/app/code/Magento/Ui/Component/Filters/Type/Date.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Filters/Type/DateRange.php b/app/code/Magento/Ui/Component/Filters/Type/DateRange.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Filters/Type/Input.php b/app/code/Magento/Ui/Component/Filters/Type/Input.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Filters/Type/Range.php b/app/code/Magento/Ui/Component/Filters/Type/Range.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Filters/Type/Search.php b/app/code/Magento/Ui/Component/Filters/Type/Search.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Filters/Type/Select.php b/app/code/Magento/Ui/Component/Filters/Type/Select.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Form.php b/app/code/Magento/Ui/Component/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Form/AttributeMapper.php b/app/code/Magento/Ui/Component/Form/AttributeMapper.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Form/Collection.php b/app/code/Magento/Ui/Component/Form/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Form/Element/AbstractElement.php b/app/code/Magento/Ui/Component/Form/Element/AbstractElement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Form/Element/AbstractOptionsField.php b/app/code/Magento/Ui/Component/Form/Element/AbstractOptionsField.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Form/Element/ActionDelete.php b/app/code/Magento/Ui/Component/Form/Element/ActionDelete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Form/Element/Checkbox.php b/app/code/Magento/Ui/Component/Form/Element/Checkbox.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Form/Element/CheckboxSet.php b/app/code/Magento/Ui/Component/Form/Element/CheckboxSet.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Form/Element/DataType/AbstractDataType.php b/app/code/Magento/Ui/Component/Form/Element/DataType/AbstractDataType.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Form/Element/DataType/Boolean.php b/app/code/Magento/Ui/Component/Form/Element/DataType/Boolean.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Form/Element/DataType/DataTypeInterface.php b/app/code/Magento/Ui/Component/Form/Element/DataType/DataTypeInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Form/Element/DataType/Date.php b/app/code/Magento/Ui/Component/Form/Element/DataType/Date.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Form/Element/DataType/Email.php b/app/code/Magento/Ui/Component/Form/Element/DataType/Email.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Form/Element/DataType/Media.php b/app/code/Magento/Ui/Component/Form/Element/DataType/Media.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Form/Element/DataType/Number.php b/app/code/Magento/Ui/Component/Form/Element/DataType/Number.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Form/Element/DataType/Password.php b/app/code/Magento/Ui/Component/Form/Element/DataType/Password.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Form/Element/DataType/Price.php b/app/code/Magento/Ui/Component/Form/Element/DataType/Price.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Form/Element/DataType/Text.php b/app/code/Magento/Ui/Component/Form/Element/DataType/Text.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Form/Element/ElementInterface.php b/app/code/Magento/Ui/Component/Form/Element/ElementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Form/Element/Hidden.php b/app/code/Magento/Ui/Component/Form/Element/Hidden.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Form/Element/Input.php b/app/code/Magento/Ui/Component/Form/Element/Input.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Form/Element/MultiSelect.php b/app/code/Magento/Ui/Component/Form/Element/MultiSelect.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Form/Element/Multiline.php b/app/code/Magento/Ui/Component/Form/Element/Multiline.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Form/Element/Radio.php b/app/code/Magento/Ui/Component/Form/Element/Radio.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Form/Element/RadioSet.php b/app/code/Magento/Ui/Component/Form/Element/RadioSet.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Form/Element/Range.php b/app/code/Magento/Ui/Component/Form/Element/Range.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Form/Element/Select.php b/app/code/Magento/Ui/Component/Form/Element/Select.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Form/Element/Textarea.php b/app/code/Magento/Ui/Component/Form/Element/Textarea.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Form/Element/Wysiwyg.php b/app/code/Magento/Ui/Component/Form/Element/Wysiwyg.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Form/Field.php b/app/code/Magento/Ui/Component/Form/Field.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Form/Fieldset.php b/app/code/Magento/Ui/Component/Form/Fieldset.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Form/Fieldset/Factory.php b/app/code/Magento/Ui/Component/Form/Fieldset/Factory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/HtmlContent.php b/app/code/Magento/Ui/Component/HtmlContent.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Layout.php b/app/code/Magento/Ui/Component/Layout.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Layout/Tabs.php b/app/code/Magento/Ui/Component/Layout/Tabs.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Layout/Tabs/Nav.php b/app/code/Magento/Ui/Component/Layout/Tabs/Nav.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Layout/Tabs/Tab.php b/app/code/Magento/Ui/Component/Layout/Tabs/Tab.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Layout/Tabs/TabInterface.php b/app/code/Magento/Ui/Component/Layout/Tabs/TabInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Layout/Tabs/TabWrapper.php b/app/code/Magento/Ui/Component/Layout/Tabs/TabWrapper.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Listing.php b/app/code/Magento/Ui/Component/Listing.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Listing/Columns.php b/app/code/Magento/Ui/Component/Listing/Columns.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Listing/Columns/Column.php b/app/code/Magento/Ui/Component/Listing/Columns/Column.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Listing/Columns/ColumnInterface.php b/app/code/Magento/Ui/Component/Listing/Columns/ColumnInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Listing/Columns/Date.php b/app/code/Magento/Ui/Component/Listing/Columns/Date.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Listing/RowInterface.php b/app/code/Magento/Ui/Component/Listing/RowInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/MassAction.php b/app/code/Magento/Ui/Component/MassAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/MassAction/Columns/Column.php b/app/code/Magento/Ui/Component/MassAction/Columns/Column.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/MassAction/Filter.php b/app/code/Magento/Ui/Component/MassAction/Filter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Modal.php b/app/code/Magento/Ui/Component/Modal.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Paging.php b/app/code/Magento/Ui/Component/Paging.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Wrapper/Block.php b/app/code/Magento/Ui/Component/Wrapper/Block.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Wrapper/UiComponent.php b/app/code/Magento/Ui/Component/Wrapper/UiComponent.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Wysiwyg/Config.php b/app/code/Magento/Ui/Component/Wysiwyg/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Component/Wysiwyg/ConfigInterface.php b/app/code/Magento/Ui/Component/Wysiwyg/ConfigInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Config/Argument/Parser/ArrayType.php b/app/code/Magento/Ui/Config/Argument/Parser/ArrayType.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Config/Argument/Parser/Composite.php b/app/code/Magento/Ui/Config/Argument/Parser/Composite.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Config/Argument/Parser/ConfigurableObjectType.php b/app/code/Magento/Ui/Config/Argument/Parser/ConfigurableObjectType.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Config/Argument/Parser/ConverterType.php b/app/code/Magento/Ui/Config/Argument/Parser/ConverterType.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Config/Argument/Parser/Url.php b/app/code/Magento/Ui/Config/Argument/Parser/Url.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Config/Argument/Parser/XpathType.php b/app/code/Magento/Ui/Config/Argument/Parser/XpathType.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Config/Argument/ParserInterface.php b/app/code/Magento/Ui/Config/Argument/ParserInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Config/Converter.php b/app/code/Magento/Ui/Config/Converter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Config/Converter/Actions.php b/app/code/Magento/Ui/Config/Converter/Actions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Config/Converter/AdditionalClasses.php b/app/code/Magento/Ui/Config/Converter/AdditionalClasses.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Config/Converter/Buttons.php b/app/code/Magento/Ui/Config/Converter/Buttons.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Config/Converter/Communication.php b/app/code/Magento/Ui/Config/Converter/Communication.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Config/Converter/Composite.php b/app/code/Magento/Ui/Config/Converter/Composite.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Config/Converter/Deps.php b/app/code/Magento/Ui/Config/Converter/Deps.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Config/Converter/HtmlContent.php b/app/code/Magento/Ui/Config/Converter/HtmlContent.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Config/Converter/Item.php b/app/code/Magento/Ui/Config/Converter/Item.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Config/Converter/Options.php b/app/code/Magento/Ui/Config/Converter/Options.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Config/Converter/StorageConfig.php b/app/code/Magento/Ui/Config/Converter/StorageConfig.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Config/Converter/Url.php b/app/code/Magento/Ui/Config/Converter/Url.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Config/ConverterInterface.php b/app/code/Magento/Ui/Config/ConverterInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Config/ConverterUtils.php b/app/code/Magento/Ui/Config/ConverterUtils.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Config/Data.php b/app/code/Magento/Ui/Config/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Config/Reader.php b/app/code/Magento/Ui/Config/Reader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Config/Reader/Definition.php b/app/code/Magento/Ui/Config/Reader/Definition.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Config/Reader/Definition/Data.php b/app/code/Magento/Ui/Config/Reader/Definition/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Config/Reader/Definition/SchemaLocator.php b/app/code/Magento/Ui/Config/Reader/Definition/SchemaLocator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Config/Reader/DefinitionMap.php b/app/code/Magento/Ui/Config/Reader/DefinitionMap.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Config/Reader/DefinitionMap/Converter.php b/app/code/Magento/Ui/Config/Reader/DefinitionMap/Converter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Config/Reader/DefinitionMap/SchemaLocator.php b/app/code/Magento/Ui/Config/Reader/DefinitionMap/SchemaLocator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Config/Reader/Dom.php b/app/code/Magento/Ui/Config/Reader/Dom.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Config/Reader/FileResolver.php b/app/code/Magento/Ui/Config/Reader/FileResolver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Config/Reader/SchemaLocator.php b/app/code/Magento/Ui/Config/Reader/SchemaLocator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Config/Reader/Template/SchemaLocator.php b/app/code/Magento/Ui/Config/Reader/Template/SchemaLocator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Controller/Adminhtml/AbstractAction.php b/app/code/Magento/Ui/Controller/Adminhtml/AbstractAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Controller/Adminhtml/Bookmark/Delete.php b/app/code/Magento/Ui/Controller/Adminhtml/Bookmark/Delete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Controller/Adminhtml/Bookmark/Save.php b/app/code/Magento/Ui/Controller/Adminhtml/Bookmark/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Controller/Adminhtml/Export/GridToCsv.php b/app/code/Magento/Ui/Controller/Adminhtml/Export/GridToCsv.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Controller/Adminhtml/Export/GridToXml.php b/app/code/Magento/Ui/Controller/Adminhtml/Export/GridToXml.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Controller/Adminhtml/Index/Render.php b/app/code/Magento/Ui/Controller/Adminhtml/Index/Render.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Controller/Adminhtml/Index/Render/Handle.php b/app/code/Magento/Ui/Controller/Adminhtml/Index/Render/Handle.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Controller/Index/Render.php b/app/code/Magento/Ui/Controller/Index/Render.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Controller/UiActionInterface.php b/app/code/Magento/Ui/Controller/UiActionInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/DataProvider/AbstractDataProvider.php b/app/code/Magento/Ui/DataProvider/AbstractDataProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/DataProvider/AddFieldToCollection.php b/app/code/Magento/Ui/DataProvider/AddFieldToCollection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/DataProvider/AddFieldToCollectionInterface.php b/app/code/Magento/Ui/DataProvider/AddFieldToCollectionInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/DataProvider/AddFilterToCollectionInterface.php b/app/code/Magento/Ui/DataProvider/AddFilterToCollectionInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/DataProvider/EavValidationRules.php b/app/code/Magento/Ui/DataProvider/EavValidationRules.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/DataProvider/Mapper/FormElement.php b/app/code/Magento/Ui/DataProvider/Mapper/FormElement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/DataProvider/Mapper/MapperInterface.php b/app/code/Magento/Ui/DataProvider/Mapper/MapperInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/DataProvider/Mapper/MetaProperties.php b/app/code/Magento/Ui/DataProvider/Mapper/MetaProperties.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/DataProvider/Modifier/Dummy.php b/app/code/Magento/Ui/DataProvider/Modifier/Dummy.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/DataProvider/Modifier/ModifierFactory.php b/app/code/Magento/Ui/DataProvider/Modifier/ModifierFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/DataProvider/Modifier/ModifierInterface.php b/app/code/Magento/Ui/DataProvider/Modifier/ModifierInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/DataProvider/Modifier/Pool.php b/app/code/Magento/Ui/DataProvider/Modifier/Pool.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/DataProvider/Modifier/PoolInterface.php b/app/code/Magento/Ui/DataProvider/Modifier/PoolInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/LICENSE.txt b/app/code/Magento/Ui/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/LICENSE_AFL.txt b/app/code/Magento/Ui/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Model/Bookmark.php b/app/code/Magento/Ui/Model/Bookmark.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Model/BookmarkManagement.php b/app/code/Magento/Ui/Model/BookmarkManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Model/Config.php b/app/code/Magento/Ui/Model/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Model/Export/ConvertToCsv.php b/app/code/Magento/Ui/Model/Export/ConvertToCsv.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Model/Export/ConvertToXml.php b/app/code/Magento/Ui/Model/Export/ConvertToXml.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Model/Export/MetadataProvider.php b/app/code/Magento/Ui/Model/Export/MetadataProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Model/Export/SearchResultIterator.php b/app/code/Magento/Ui/Model/Export/SearchResultIterator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Model/Manager.php b/app/code/Magento/Ui/Model/Manager.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Model/ResourceModel/Bookmark.php b/app/code/Magento/Ui/Model/ResourceModel/Bookmark.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Model/ResourceModel/Bookmark/Collection.php b/app/code/Magento/Ui/Model/ResourceModel/Bookmark/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Model/ResourceModel/BookmarkRepository.php b/app/code/Magento/Ui/Model/ResourceModel/BookmarkRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Model/UiComponentGenerator.php b/app/code/Magento/Ui/Model/UiComponentGenerator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/README.md b/app/code/Magento/Ui/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Setup/InstallSchema.php b/app/code/Magento/Ui/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/TemplateEngine/Xhtml/Compiler/Element/Content.php b/app/code/Magento/Ui/TemplateEngine/Xhtml/Compiler/Element/Content.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/TemplateEngine/Xhtml/Compiler/Element/Form.php b/app/code/Magento/Ui/TemplateEngine/Xhtml/Compiler/Element/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/TemplateEngine/Xhtml/Compiler/Element/Render.php b/app/code/Magento/Ui/TemplateEngine/Xhtml/Compiler/Element/Render.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/TemplateEngine/Xhtml/Result.php b/app/code/Magento/Ui/TemplateEngine/Xhtml/Result.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Component/AbstractComponentTest.php b/app/code/Magento/Ui/Test/Unit/Component/AbstractComponentTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Component/Control/ActionPoolTest.php b/app/code/Magento/Ui/Test/Unit/Component/Control/ActionPoolTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Component/Control/ActionTest.php b/app/code/Magento/Ui/Test/Unit/Component/Control/ActionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Component/Control/ButtonTest.php b/app/code/Magento/Ui/Test/Unit/Component/Control/ButtonTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Component/Control/ContainerTest.php b/app/code/Magento/Ui/Test/Unit/Component/Control/ContainerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Component/Control/LinkTest.php b/app/code/Magento/Ui/Test/Unit/Component/Control/LinkTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Component/ExportButtonTest.php b/app/code/Magento/Ui/Test/Unit/Component/ExportButtonTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Component/Filters/FilterModifierTest.php b/app/code/Magento/Ui/Test/Unit/Component/Filters/FilterModifierTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Component/Filters/Type/DateRangeTest.php b/app/code/Magento/Ui/Test/Unit/Component/Filters/Type/DateRangeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Component/Filters/Type/DateTest.php b/app/code/Magento/Ui/Test/Unit/Component/Filters/Type/DateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Component/Filters/Type/InputTest.php b/app/code/Magento/Ui/Test/Unit/Component/Filters/Type/InputTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Component/Filters/Type/RangeTest.php b/app/code/Magento/Ui/Test/Unit/Component/Filters/Type/RangeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Component/Filters/Type/SelectTest.php b/app/code/Magento/Ui/Test/Unit/Component/Filters/Type/SelectTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Component/FiltersTest.php b/app/code/Magento/Ui/Test/Unit/Component/FiltersTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Component/Form/Element/AbstractElementTest.php b/app/code/Magento/Ui/Test/Unit/Component/Form/Element/AbstractElementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Component/Form/Element/ActionDeleteTest.php b/app/code/Magento/Ui/Test/Unit/Component/Form/Element/ActionDeleteTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Component/Form/Element/CheckboxSetTest.php b/app/code/Magento/Ui/Test/Unit/Component/Form/Element/CheckboxSetTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Component/Form/Element/DataType/DateTest.php b/app/code/Magento/Ui/Test/Unit/Component/Form/Element/DataType/DateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Component/Form/Element/DataType/MediaTest.php b/app/code/Magento/Ui/Test/Unit/Component/Form/Element/DataType/MediaTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Component/Form/Element/MultiSelectTest.php b/app/code/Magento/Ui/Test/Unit/Component/Form/Element/MultiSelectTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Component/Form/Element/RadioSetTest.php b/app/code/Magento/Ui/Test/Unit/Component/Form/Element/RadioSetTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Component/Form/Element/SelectTest.php b/app/code/Magento/Ui/Test/Unit/Component/Form/Element/SelectTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Component/Form/Element/WysiwygTest.php b/app/code/Magento/Ui/Test/Unit/Component/Form/Element/WysiwygTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Component/Form/Field/MultilineTest.php b/app/code/Magento/Ui/Test/Unit/Component/Form/Field/MultilineTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Component/Form/FieldTest.php b/app/code/Magento/Ui/Test/Unit/Component/Form/FieldTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Component/FormTest.php b/app/code/Magento/Ui/Test/Unit/Component/FormTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Component/Listing/Columns/ColumnTest.php b/app/code/Magento/Ui/Test/Unit/Component/Listing/Columns/ColumnTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Component/Listing/Columns/DateTest.php b/app/code/Magento/Ui/Test/Unit/Component/Listing/Columns/DateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Component/Listing/ColumnsTest.php b/app/code/Magento/Ui/Test/Unit/Component/Listing/ColumnsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Component/ListingTest.php b/app/code/Magento/Ui/Test/Unit/Component/ListingTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Component/MassAction/Columns/ColumnTest.php b/app/code/Magento/Ui/Test/Unit/Component/MassAction/Columns/ColumnTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Component/MassAction/FilterTest.php b/app/code/Magento/Ui/Test/Unit/Component/MassAction/FilterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Component/MassActionTest.php b/app/code/Magento/Ui/Test/Unit/Component/MassActionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Component/PagingTest.php b/app/code/Magento/Ui/Test/Unit/Component/PagingTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Config/Converter/ActionsTest.php b/app/code/Magento/Ui/Test/Unit/Config/Converter/ActionsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Config/Converter/AdditionalClassesTest.php b/app/code/Magento/Ui/Test/Unit/Config/Converter/AdditionalClassesTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Config/Converter/ButtonsTest.php b/app/code/Magento/Ui/Test/Unit/Config/Converter/ButtonsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Config/Converter/CommunicationTest.php b/app/code/Magento/Ui/Test/Unit/Config/Converter/CommunicationTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Config/Converter/CompositeTest.php b/app/code/Magento/Ui/Test/Unit/Config/Converter/CompositeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Config/Converter/DepsTest.php b/app/code/Magento/Ui/Test/Unit/Config/Converter/DepsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Config/Converter/HtmlContentTest.php b/app/code/Magento/Ui/Test/Unit/Config/Converter/HtmlContentTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Config/Converter/ItemTest.php b/app/code/Magento/Ui/Test/Unit/Config/Converter/ItemTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Config/Converter/OptionsTest.php b/app/code/Magento/Ui/Test/Unit/Config/Converter/OptionsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Config/Converter/StorageConfigTest.php b/app/code/Magento/Ui/Test/Unit/Config/Converter/StorageConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Config/Converter/UrlTest.php b/app/code/Magento/Ui/Test/Unit/Config/Converter/UrlTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Config/Converter/_files/test.xml b/app/code/Magento/Ui/Test/Unit/Config/Converter/_files/test.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Config/Converter/_files/testForm.xml b/app/code/Magento/Ui/Test/Unit/Config/Converter/_files/testForm.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Controller/Adminhtml/Export/GridToCsvTest.php b/app/code/Magento/Ui/Test/Unit/Controller/Adminhtml/Export/GridToCsvTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Controller/Adminhtml/Export/GridToXmlTest.php b/app/code/Magento/Ui/Test/Unit/Controller/Adminhtml/Export/GridToXmlTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Controller/Adminhtml/Index/Render/HandleTest.php b/app/code/Magento/Ui/Test/Unit/Controller/Adminhtml/Index/Render/HandleTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Controller/Adminhtml/Index/RenderTest.php b/app/code/Magento/Ui/Test/Unit/Controller/Adminhtml/Index/RenderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/DataProvider/EavValidationRulesTest.php b/app/code/Magento/Ui/Test/Unit/DataProvider/EavValidationRulesTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/DataProvider/Modifier/PoolTest.php b/app/code/Magento/Ui/Test/Unit/DataProvider/Modifier/PoolTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Model/BookmarkManagementTest.php b/app/code/Magento/Ui/Test/Unit/Model/BookmarkManagementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Model/Export/ConvertToCsvTest.php b/app/code/Magento/Ui/Test/Unit/Model/Export/ConvertToCsvTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Model/Export/ConvertToXmlTest.php b/app/code/Magento/Ui/Test/Unit/Model/Export/ConvertToXmlTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Model/Export/MetadataProviderTest.php b/app/code/Magento/Ui/Test/Unit/Model/Export/MetadataProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Model/ManagerTest.php b/app/code/Magento/Ui/Test/Unit/Model/ManagerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Model/ResourceModel/BookmarkRepositoryTest.php b/app/code/Magento/Ui/Test/Unit/Model/ResourceModel/BookmarkRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/Model/UiComponentGeneratorTest.php b/app/code/Magento/Ui/Test/Unit/Model/UiComponentGeneratorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/Test/Unit/TemplateEngine/Xhtml/ResultTest.php b/app/code/Magento/Ui/Test/Unit/TemplateEngine/Xhtml/ResultTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/composer.json b/app/code/Magento/Ui/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/etc/adminhtml/di.xml b/app/code/Magento/Ui/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/etc/adminhtml/routes.xml b/app/code/Magento/Ui/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/etc/adminhtml/system.xml b/app/code/Magento/Ui/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/etc/config.xml b/app/code/Magento/Ui/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/etc/data_source.xsd b/app/code/Magento/Ui/etc/data_source.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/etc/di.xml b/app/code/Magento/Ui/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/etc/frontend/routes.xml b/app/code/Magento/Ui/etc/frontend/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/etc/module.xml b/app/code/Magento/Ui/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/etc/ui_components.xsd b/app/code/Magento/Ui/etc/ui_components.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/etc/ui_configuration.xsd b/app/code/Magento/Ui/etc/ui_configuration.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/etc/ui_definition.map.xsd b/app/code/Magento/Ui/etc/ui_definition.map.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/etc/ui_definition.xsd b/app/code/Magento/Ui/etc/ui_definition.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/etc/ui_template.xsd b/app/code/Magento/Ui/etc/ui_template.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/i18n/de_DE.csv b/app/code/Magento/Ui/i18n/de_DE.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/i18n/en_US.csv b/app/code/Magento/Ui/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/i18n/es_ES.csv b/app/code/Magento/Ui/i18n/es_ES.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/i18n/fr_FR.csv b/app/code/Magento/Ui/i18n/fr_FR.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/i18n/nl_NL.csv b/app/code/Magento/Ui/i18n/nl_NL.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/i18n/pt_BR.csv b/app/code/Magento/Ui/i18n/pt_BR.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/i18n/zh_Hans_CN.csv b/app/code/Magento/Ui/i18n/zh_Hans_CN.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/registration.php b/app/code/Magento/Ui/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/adminhtml/web/templates/modal/modal-prompt-content.html b/app/code/Magento/Ui/view/adminhtml/web/templates/modal/modal-prompt-content.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/layout/default.xml b/app/code/Magento/Ui/view/base/layout/default.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/requirejs-config.js b/app/code/Magento/Ui/view/base/requirejs-config.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/templates/container/content/default.phtml b/app/code/Magento/Ui/view/base/templates/container/content/default.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/templates/context/default.phtml b/app/code/Magento/Ui/view/base/templates/context/default.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/templates/control/button/default.phtml b/app/code/Magento/Ui/view/base/templates/control/button/default.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/templates/control/button/split.phtml b/app/code/Magento/Ui/view/base/templates/control/button/split.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/templates/form/default.phtml b/app/code/Magento/Ui/view/base/templates/form/default.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/templates/label/default.phtml b/app/code/Magento/Ui/view/base/templates/label/default.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/templates/layout/tabs/default.phtml b/app/code/Magento/Ui/view/base/templates/layout/tabs/default.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/templates/layout/tabs/nav/default.phtml b/app/code/Magento/Ui/view/base/templates/layout/tabs/nav/default.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/templates/logger.phtml b/app/code/Magento/Ui/view/base/templates/logger.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/templates/stepswizard.phtml b/app/code/Magento/Ui/view/base/templates/stepswizard.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition.map.xml b/app/code/Magento/Ui/view/base/ui_component/etc/definition.map.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/action.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/action.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/actionDelete.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/actionDelete.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/actions.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/actions.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/actionsColumn.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/actionsColumn.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/bookmark.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/bookmark.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/boolean.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/boolean.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/button.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/button.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/checkbox.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/checkbox.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/checkboxset.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/checkboxset.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/column.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/column.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/columns.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/columns.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/columnsControls.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/columnsControls.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/component.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/component.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/container.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/container.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/dataProvider.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/dataProvider.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/dataSource.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/dataSource.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/date.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/date.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/dynamicRows.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/dynamicRows.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/email.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/email.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/exportButton.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/exportButton.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/field.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/field.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/fieldset.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/fieldset.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/file.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/file.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/fileUploader.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/fileUploader.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/filterRange.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/filterRange.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/filters.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/filters.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/form.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/form.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/hidden.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/hidden.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/htmlContent.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/htmlContent.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/inlineEditing.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/inlineEditing.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/input.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/input.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/insertForm.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/insertForm.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/insertListing.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/insertListing.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/listing.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/listing.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/listingToolbar.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/listingToolbar.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/massaction.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/massaction.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/modal.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/modal.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/multiline.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/multiline.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/multiselect.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/multiselect.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/nav.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/nav.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/number.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/number.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/paging.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/paging.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/price.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/price.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/radioset.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/radioset.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/select.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/select.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/selectionsColumn.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/selectionsColumn.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/tab.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/tab.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/text.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/text.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/textarea.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/textarea.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/ui_component.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/ui_component.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/ui_settings.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/ui_settings.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/etc/definition/wysiwyg.xsd b/app/code/Magento/Ui/view/base/ui_component/etc/definition/wysiwyg.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/templates/container/default.xhtml b/app/code/Magento/Ui/view/base/ui_component/templates/container/default.xhtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/templates/export/button.xhtml b/app/code/Magento/Ui/view/base/ui_component/templates/export/button.xhtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/templates/form/collapsible.xhtml b/app/code/Magento/Ui/view/base/ui_component/templates/form/collapsible.xhtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/templates/form/default.xhtml b/app/code/Magento/Ui/view/base/ui_component/templates/form/default.xhtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/ui_component/templates/listing/default.xhtml b/app/code/Magento/Ui/view/base/ui_component/templates/listing/default.xhtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/block-loader.js b/app/code/Magento/Ui/view/base/web/js/block-loader.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/core/app.js b/app/code/Magento/Ui/view/base/web/js/core/app.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/core/renderer/layout.js b/app/code/Magento/Ui/view/base/web/js/core/renderer/layout.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/core/renderer/types.js b/app/code/Magento/Ui/view/base/web/js/core/renderer/types.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/dynamic-rows/action-delete.js b/app/code/Magento/Ui/view/base/web/js/dynamic-rows/action-delete.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/dynamic-rows/dnd.js b/app/code/Magento/Ui/view/base/web/js/dynamic-rows/dnd.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/dynamic-rows/dynamic-rows-grid.js b/app/code/Magento/Ui/view/base/web/js/dynamic-rows/dynamic-rows-grid.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/dynamic-rows/dynamic-rows.js b/app/code/Magento/Ui/view/base/web/js/dynamic-rows/dynamic-rows.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/dynamic-rows/record.js b/app/code/Magento/Ui/view/base/web/js/dynamic-rows/record.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/form/adapter.js b/app/code/Magento/Ui/view/base/web/js/form/adapter.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/form/button-adapter.js b/app/code/Magento/Ui/view/base/web/js/form/button-adapter.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/form/client.js b/app/code/Magento/Ui/view/base/web/js/form/client.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/form/components/area.js b/app/code/Magento/Ui/view/base/web/js/form/components/area.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/form/components/button.js b/app/code/Magento/Ui/view/base/web/js/form/components/button.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/form/components/collection.js b/app/code/Magento/Ui/view/base/web/js/form/components/collection.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/form/components/collection/item.js b/app/code/Magento/Ui/view/base/web/js/form/components/collection/item.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/form/components/fieldset.js b/app/code/Magento/Ui/view/base/web/js/form/components/fieldset.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/form/components/group.js b/app/code/Magento/Ui/view/base/web/js/form/components/group.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/form/components/html.js b/app/code/Magento/Ui/view/base/web/js/form/components/html.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/form/components/insert-form.js b/app/code/Magento/Ui/view/base/web/js/form/components/insert-form.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/form/components/insert-listing.js b/app/code/Magento/Ui/view/base/web/js/form/components/insert-listing.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/form/components/insert.js b/app/code/Magento/Ui/view/base/web/js/form/components/insert.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/form/components/tab.js b/app/code/Magento/Ui/view/base/web/js/form/components/tab.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/form/components/tab_group.js b/app/code/Magento/Ui/view/base/web/js/form/components/tab_group.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/form/element/boolean.js b/app/code/Magento/Ui/view/base/web/js/form/element/boolean.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/form/element/checkbox-set.js b/app/code/Magento/Ui/view/base/web/js/form/element/checkbox-set.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/form/element/country.js b/app/code/Magento/Ui/view/base/web/js/form/element/country.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/form/element/date.js b/app/code/Magento/Ui/view/base/web/js/form/element/date.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/form/element/file-uploader.js b/app/code/Magento/Ui/view/base/web/js/form/element/file-uploader.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/form/element/media.js b/app/code/Magento/Ui/view/base/web/js/form/element/media.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/form/element/multiselect.js b/app/code/Magento/Ui/view/base/web/js/form/element/multiselect.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/form/element/post-code.js b/app/code/Magento/Ui/view/base/web/js/form/element/post-code.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/form/element/region.js b/app/code/Magento/Ui/view/base/web/js/form/element/region.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/form/element/select.js b/app/code/Magento/Ui/view/base/web/js/form/element/select.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/form/element/single-checkbox-toggle-notice.js b/app/code/Magento/Ui/view/base/web/js/form/element/single-checkbox-toggle-notice.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/form/element/single-checkbox-use-config.js b/app/code/Magento/Ui/view/base/web/js/form/element/single-checkbox-use-config.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/form/element/single-checkbox.js b/app/code/Magento/Ui/view/base/web/js/form/element/single-checkbox.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/form/element/text.js b/app/code/Magento/Ui/view/base/web/js/form/element/text.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/form/element/textarea.js b/app/code/Magento/Ui/view/base/web/js/form/element/textarea.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/form/element/ui-select.js b/app/code/Magento/Ui/view/base/web/js/form/element/ui-select.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/form/element/website.js b/app/code/Magento/Ui/view/base/web/js/form/element/website.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/form/element/wysiwyg.js b/app/code/Magento/Ui/view/base/web/js/form/element/wysiwyg.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/form/form.js b/app/code/Magento/Ui/view/base/web/js/form/form.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/form/provider.js b/app/code/Magento/Ui/view/base/web/js/form/provider.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/form/switcher.js b/app/code/Magento/Ui/view/base/web/js/form/switcher.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/grid/columns/actions.js b/app/code/Magento/Ui/view/base/web/js/grid/columns/actions.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/grid/columns/column.js b/app/code/Magento/Ui/view/base/web/js/grid/columns/column.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/grid/columns/date.js b/app/code/Magento/Ui/view/base/web/js/grid/columns/date.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/grid/columns/expandable.js b/app/code/Magento/Ui/view/base/web/js/grid/columns/expandable.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/grid/columns/link.js b/app/code/Magento/Ui/view/base/web/js/grid/columns/link.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/grid/columns/multiselect.js b/app/code/Magento/Ui/view/base/web/js/grid/columns/multiselect.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/grid/columns/select.js b/app/code/Magento/Ui/view/base/web/js/grid/columns/select.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/grid/columns/thumbnail.js b/app/code/Magento/Ui/view/base/web/js/grid/columns/thumbnail.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/grid/controls/bookmarks/bookmarks.js b/app/code/Magento/Ui/view/base/web/js/grid/controls/bookmarks/bookmarks.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/grid/controls/bookmarks/storage.js b/app/code/Magento/Ui/view/base/web/js/grid/controls/bookmarks/storage.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/grid/controls/columns.js b/app/code/Magento/Ui/view/base/web/js/grid/controls/columns.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/grid/data-storage.js b/app/code/Magento/Ui/view/base/web/js/grid/data-storage.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/grid/dnd.js b/app/code/Magento/Ui/view/base/web/js/grid/dnd.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/grid/editing/bulk.js b/app/code/Magento/Ui/view/base/web/js/grid/editing/bulk.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/grid/editing/client.js b/app/code/Magento/Ui/view/base/web/js/grid/editing/client.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/grid/editing/editor-view.js b/app/code/Magento/Ui/view/base/web/js/grid/editing/editor-view.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/grid/editing/editor.js b/app/code/Magento/Ui/view/base/web/js/grid/editing/editor.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/grid/editing/record.js b/app/code/Magento/Ui/view/base/web/js/grid/editing/record.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/grid/export.js b/app/code/Magento/Ui/view/base/web/js/grid/export.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/grid/filters/chips.js b/app/code/Magento/Ui/view/base/web/js/grid/filters/chips.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/grid/filters/filters.js b/app/code/Magento/Ui/view/base/web/js/grid/filters/filters.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/grid/filters/range.js b/app/code/Magento/Ui/view/base/web/js/grid/filters/range.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/grid/listing.js b/app/code/Magento/Ui/view/base/web/js/grid/listing.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/grid/massactions.js b/app/code/Magento/Ui/view/base/web/js/grid/massactions.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/grid/paging/paging.js b/app/code/Magento/Ui/view/base/web/js/grid/paging/paging.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/grid/paging/sizes.js b/app/code/Magento/Ui/view/base/web/js/grid/paging/sizes.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/grid/provider.js b/app/code/Magento/Ui/view/base/web/js/grid/provider.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/grid/resize.js b/app/code/Magento/Ui/view/base/web/js/grid/resize.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/grid/search/search.js b/app/code/Magento/Ui/view/base/web/js/grid/search/search.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/grid/sticky/sticky.js b/app/code/Magento/Ui/view/base/web/js/grid/sticky/sticky.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/grid/toolbar.js b/app/code/Magento/Ui/view/base/web/js/grid/toolbar.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/grid/tree-massactions.js b/app/code/Magento/Ui/view/base/web/js/grid/tree-massactions.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/collapsible.js b/app/code/Magento/Ui/view/base/web/js/lib/collapsible.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/core/class.js b/app/code/Magento/Ui/view/base/web/js/lib/core/class.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/core/collection.js b/app/code/Magento/Ui/view/base/web/js/lib/core/collection.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/core/element/element.js b/app/code/Magento/Ui/view/base/web/js/lib/core/element/element.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/core/element/links.js b/app/code/Magento/Ui/view/base/web/js/lib/core/element/links.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/core/events.js b/app/code/Magento/Ui/view/base/web/js/lib/core/events.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/core/storage/local.js b/app/code/Magento/Ui/view/base/web/js/lib/core/storage/local.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/key-codes.js b/app/code/Magento/Ui/view/base/web/js/lib/key-codes.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/after-render.js b/app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/after-render.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/autoselect.js b/app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/autoselect.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/bind-html.js b/app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/bind-html.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/bootstrap.js b/app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/bootstrap.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/collapsible.js b/app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/collapsible.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/datepicker.js b/app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/datepicker.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/fadeVisible.js b/app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/fadeVisible.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/i18n.js b/app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/i18n.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/keyboard.js b/app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/keyboard.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/mage-init.js b/app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/mage-init.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/optgroup.js b/app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/optgroup.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/outer_click.js b/app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/outer_click.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/range.js b/app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/range.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/resizable.js b/app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/resizable.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/scope.js b/app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/scope.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/simple-checked.js b/app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/simple-checked.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/staticChecked.js b/app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/staticChecked.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/tooltip.js b/app/code/Magento/Ui/view/base/web/js/lib/knockout/bindings/tooltip.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/knockout/bootstrap.js b/app/code/Magento/Ui/view/base/web/js/lib/knockout/bootstrap.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/knockout/extender/bound-nodes.js b/app/code/Magento/Ui/view/base/web/js/lib/knockout/extender/bound-nodes.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/knockout/extender/observable_array.js b/app/code/Magento/Ui/view/base/web/js/lib/knockout/extender/observable_array.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/knockout/template/engine.js b/app/code/Magento/Ui/view/base/web/js/lib/knockout/template/engine.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/knockout/template/loader.js b/app/code/Magento/Ui/view/base/web/js/lib/knockout/template/loader.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/knockout/template/observable_source.js b/app/code/Magento/Ui/view/base/web/js/lib/knockout/template/observable_source.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/knockout/template/renderer.js b/app/code/Magento/Ui/view/base/web/js/lib/knockout/template/renderer.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/logger/console-logger.js b/app/code/Magento/Ui/view/base/web/js/lib/logger/console-logger.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/logger/console-output-handler.js b/app/code/Magento/Ui/view/base/web/js/lib/logger/console-output-handler.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/logger/entry-factory.js b/app/code/Magento/Ui/view/base/web/js/lib/logger/entry-factory.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/logger/entry.js b/app/code/Magento/Ui/view/base/web/js/lib/logger/entry.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/logger/formatter.js b/app/code/Magento/Ui/view/base/web/js/lib/logger/formatter.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/logger/levels-pool.js b/app/code/Magento/Ui/view/base/web/js/lib/logger/levels-pool.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/logger/logger-utils.js b/app/code/Magento/Ui/view/base/web/js/lib/logger/logger-utils.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/logger/logger.js b/app/code/Magento/Ui/view/base/web/js/lib/logger/logger.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/logger/message-pool.js b/app/code/Magento/Ui/view/base/web/js/lib/logger/message-pool.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/registry/registry.js b/app/code/Magento/Ui/view/base/web/js/lib/registry/registry.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/spinner.js b/app/code/Magento/Ui/view/base/web/js/lib/spinner.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/step-wizard.js b/app/code/Magento/Ui/view/base/web/js/lib/step-wizard.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/validation/rules.js b/app/code/Magento/Ui/view/base/web/js/lib/validation/rules.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/validation/utils.js b/app/code/Magento/Ui/view/base/web/js/lib/validation/utils.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/validation/validator.js b/app/code/Magento/Ui/view/base/web/js/lib/validation/validator.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/view/utils/async.js b/app/code/Magento/Ui/view/base/web/js/lib/view/utils/async.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/view/utils/bindings.js b/app/code/Magento/Ui/view/base/web/js/lib/view/utils/bindings.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/view/utils/dom-observer.js b/app/code/Magento/Ui/view/base/web/js/lib/view/utils/dom-observer.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/lib/view/utils/raf.js b/app/code/Magento/Ui/view/base/web/js/lib/view/utils/raf.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/modal/alert.js b/app/code/Magento/Ui/view/base/web/js/modal/alert.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/modal/confirm.js b/app/code/Magento/Ui/view/base/web/js/modal/confirm.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/modal/modal-component.js b/app/code/Magento/Ui/view/base/web/js/modal/modal-component.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/modal/modal.js b/app/code/Magento/Ui/view/base/web/js/modal/modal.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/modal/modalToggle.js b/app/code/Magento/Ui/view/base/web/js/modal/modalToggle.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/modal/prompt.js b/app/code/Magento/Ui/view/base/web/js/modal/prompt.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/timeline/timeline-view.js b/app/code/Magento/Ui/view/base/web/js/timeline/timeline-view.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/js/timeline/timeline.js b/app/code/Magento/Ui/view/base/web/js/timeline/timeline.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/area.html b/app/code/Magento/Ui/view/base/web/templates/area.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/block-loader.html b/app/code/Magento/Ui/view/base/web/templates/block-loader.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/collection.html b/app/code/Magento/Ui/view/base/web/templates/collection.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/content/content.html b/app/code/Magento/Ui/view/base/web/templates/content/content.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/dynamic-rows/cells/action-delete.html b/app/code/Magento/Ui/view/base/web/templates/dynamic-rows/cells/action-delete.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/dynamic-rows/cells/dnd.html b/app/code/Magento/Ui/view/base/web/templates/dynamic-rows/cells/dnd.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/dynamic-rows/cells/text.html b/app/code/Magento/Ui/view/base/web/templates/dynamic-rows/cells/text.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/dynamic-rows/cells/thumbnail.html b/app/code/Magento/Ui/view/base/web/templates/dynamic-rows/cells/thumbnail.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/dynamic-rows/templates/collapsible.html b/app/code/Magento/Ui/view/base/web/templates/dynamic-rows/templates/collapsible.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/dynamic-rows/templates/default.html b/app/code/Magento/Ui/view/base/web/templates/dynamic-rows/templates/default.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/dynamic-rows/templates/grid.html b/app/code/Magento/Ui/view/base/web/templates/dynamic-rows/templates/grid.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/form/collection.html b/app/code/Magento/Ui/view/base/web/templates/form/collection.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/form/components/button/container.html b/app/code/Magento/Ui/view/base/web/templates/form/components/button/container.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/form/components/button/simple.html b/app/code/Magento/Ui/view/base/web/templates/form/components/button/simple.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/form/components/collection.html b/app/code/Magento/Ui/view/base/web/templates/form/components/collection.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/form/components/collection/preview.html b/app/code/Magento/Ui/view/base/web/templates/form/components/collection/preview.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/form/components/complex.html b/app/code/Magento/Ui/view/base/web/templates/form/components/complex.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/form/components/single/checkbox.html b/app/code/Magento/Ui/view/base/web/templates/form/components/single/checkbox.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/form/components/single/field.html b/app/code/Magento/Ui/view/base/web/templates/form/components/single/field.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/form/components/single/radio.html b/app/code/Magento/Ui/view/base/web/templates/form/components/single/radio.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/form/components/single/switcher.html b/app/code/Magento/Ui/view/base/web/templates/form/components/single/switcher.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/form/element/button.html b/app/code/Magento/Ui/view/base/web/templates/form/element/button.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/form/element/checkbox-set.html b/app/code/Magento/Ui/view/base/web/templates/form/element/checkbox-set.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/form/element/checkbox.html b/app/code/Magento/Ui/view/base/web/templates/form/element/checkbox.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/form/element/date.html b/app/code/Magento/Ui/view/base/web/templates/form/element/date.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/form/element/email.html b/app/code/Magento/Ui/view/base/web/templates/form/element/email.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/form/element/helper/fallback-reset.html b/app/code/Magento/Ui/view/base/web/templates/form/element/helper/fallback-reset.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/form/element/helper/service.html b/app/code/Magento/Ui/view/base/web/templates/form/element/helper/service.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/form/element/helper/tooltip.html b/app/code/Magento/Ui/view/base/web/templates/form/element/helper/tooltip.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/form/element/hidden.html b/app/code/Magento/Ui/view/base/web/templates/form/element/hidden.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/form/element/html.html b/app/code/Magento/Ui/view/base/web/templates/form/element/html.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/form/element/input.html b/app/code/Magento/Ui/view/base/web/templates/form/element/input.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/form/element/media.html b/app/code/Magento/Ui/view/base/web/templates/form/element/media.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/form/element/multiselect.html b/app/code/Magento/Ui/view/base/web/templates/form/element/multiselect.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/form/element/preview.html b/app/code/Magento/Ui/view/base/web/templates/form/element/preview.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/form/element/price.html b/app/code/Magento/Ui/view/base/web/templates/form/element/price.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/form/element/radio.html b/app/code/Magento/Ui/view/base/web/templates/form/element/radio.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/form/element/select.html b/app/code/Magento/Ui/view/base/web/templates/form/element/select.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/form/element/split-button.html b/app/code/Magento/Ui/view/base/web/templates/form/element/split-button.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/form/element/switcher.html b/app/code/Magento/Ui/view/base/web/templates/form/element/switcher.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/form/element/text.html b/app/code/Magento/Ui/view/base/web/templates/form/element/text.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/form/element/textDate.html b/app/code/Magento/Ui/view/base/web/templates/form/element/textDate.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/form/element/textarea.html b/app/code/Magento/Ui/view/base/web/templates/form/element/textarea.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/form/element/uploader/preview.html b/app/code/Magento/Ui/view/base/web/templates/form/element/uploader/preview.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/form/element/uploader/uploader.html b/app/code/Magento/Ui/view/base/web/templates/form/element/uploader/uploader.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/form/element/wysiwyg.html b/app/code/Magento/Ui/view/base/web/templates/form/element/wysiwyg.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/form/field.html b/app/code/Magento/Ui/view/base/web/templates/form/field.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/form/fieldset.html b/app/code/Magento/Ui/view/base/web/templates/form/fieldset.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/form/insert.html b/app/code/Magento/Ui/view/base/web/templates/form/insert.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/grid/actions.html b/app/code/Magento/Ui/view/base/web/templates/grid/actions.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/grid/cells/actions.html b/app/code/Magento/Ui/view/base/web/templates/grid/cells/actions.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/grid/cells/expandable.html b/app/code/Magento/Ui/view/base/web/templates/grid/cells/expandable.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/grid/cells/expandable/content.html b/app/code/Magento/Ui/view/base/web/templates/grid/cells/expandable/content.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/grid/cells/html.html b/app/code/Magento/Ui/view/base/web/templates/grid/cells/html.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/grid/cells/link.html b/app/code/Magento/Ui/view/base/web/templates/grid/cells/link.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/grid/cells/multiselect.html b/app/code/Magento/Ui/view/base/web/templates/grid/cells/multiselect.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/grid/cells/onoff.html b/app/code/Magento/Ui/view/base/web/templates/grid/cells/onoff.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/grid/cells/text.html b/app/code/Magento/Ui/view/base/web/templates/grid/cells/text.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/grid/cells/thumbnail.html b/app/code/Magento/Ui/view/base/web/templates/grid/cells/thumbnail.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/grid/cells/thumbnail/preview.html b/app/code/Magento/Ui/view/base/web/templates/grid/cells/thumbnail/preview.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/grid/columns/multiselect.html b/app/code/Magento/Ui/view/base/web/templates/grid/columns/multiselect.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/grid/columns/onoff.html b/app/code/Magento/Ui/view/base/web/templates/grid/columns/onoff.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/grid/columns/text.html b/app/code/Magento/Ui/view/base/web/templates/grid/columns/text.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/grid/controls/bookmarks/bookmarks.html b/app/code/Magento/Ui/view/base/web/templates/grid/controls/bookmarks/bookmarks.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/grid/controls/bookmarks/view.html b/app/code/Magento/Ui/view/base/web/templates/grid/controls/bookmarks/view.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/grid/controls/columns.html b/app/code/Magento/Ui/view/base/web/templates/grid/controls/columns.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/grid/editing/bulk.html b/app/code/Magento/Ui/view/base/web/templates/grid/editing/bulk.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/grid/editing/field.html b/app/code/Magento/Ui/view/base/web/templates/grid/editing/field.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/grid/editing/header-buttons.html b/app/code/Magento/Ui/view/base/web/templates/grid/editing/header-buttons.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/grid/editing/row-buttons.html b/app/code/Magento/Ui/view/base/web/templates/grid/editing/row-buttons.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/grid/editing/row.html b/app/code/Magento/Ui/view/base/web/templates/grid/editing/row.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/grid/exportButton.html b/app/code/Magento/Ui/view/base/web/templates/grid/exportButton.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/grid/filters/chips.html b/app/code/Magento/Ui/view/base/web/templates/grid/filters/chips.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/grid/filters/elements/group.html b/app/code/Magento/Ui/view/base/web/templates/grid/filters/elements/group.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/grid/filters/elements/ui-select-optgroup.html b/app/code/Magento/Ui/view/base/web/templates/grid/filters/elements/ui-select-optgroup.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/grid/filters/elements/ui-select.html b/app/code/Magento/Ui/view/base/web/templates/grid/filters/elements/ui-select.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/grid/filters/field.html b/app/code/Magento/Ui/view/base/web/templates/grid/filters/field.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/grid/filters/filters.html b/app/code/Magento/Ui/view/base/web/templates/grid/filters/filters.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/grid/listing.html b/app/code/Magento/Ui/view/base/web/templates/grid/listing.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/grid/paging-total.html b/app/code/Magento/Ui/view/base/web/templates/grid/paging-total.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/grid/paging/paging-detailed-total.html b/app/code/Magento/Ui/view/base/web/templates/grid/paging/paging-detailed-total.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/grid/paging/paging.html b/app/code/Magento/Ui/view/base/web/templates/grid/paging/paging.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/grid/paging/sizes.html b/app/code/Magento/Ui/view/base/web/templates/grid/paging/sizes.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/grid/search/search.html b/app/code/Magento/Ui/view/base/web/templates/grid/search/search.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/grid/sticky/filters.html b/app/code/Magento/Ui/view/base/web/templates/grid/sticky/filters.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/grid/sticky/listing.html b/app/code/Magento/Ui/view/base/web/templates/grid/sticky/listing.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/grid/sticky/sticky.html b/app/code/Magento/Ui/view/base/web/templates/grid/sticky/sticky.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/grid/submenu.html b/app/code/Magento/Ui/view/base/web/templates/grid/submenu.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/grid/toolbar.html b/app/code/Magento/Ui/view/base/web/templates/grid/toolbar.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/grid/tree-massactions.html b/app/code/Magento/Ui/view/base/web/templates/grid/tree-massactions.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/grid/view-switcher.html b/app/code/Magento/Ui/view/base/web/templates/grid/view-switcher.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/group/group.html b/app/code/Magento/Ui/view/base/web/templates/group/group.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/list/listing.html b/app/code/Magento/Ui/view/base/web/templates/list/listing.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/modal/modal-component.html b/app/code/Magento/Ui/view/base/web/templates/modal/modal-component.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/modal/modal-custom.html b/app/code/Magento/Ui/view/base/web/templates/modal/modal-custom.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/modal/modal-popup.html b/app/code/Magento/Ui/view/base/web/templates/modal/modal-popup.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/modal/modal-prompt-content.html b/app/code/Magento/Ui/view/base/web/templates/modal/modal-prompt-content.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/modal/modal-slide.html b/app/code/Magento/Ui/view/base/web/templates/modal/modal-slide.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/tab.html b/app/code/Magento/Ui/view/base/web/templates/tab.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/timeline/record.html b/app/code/Magento/Ui/view/base/web/templates/timeline/record.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/timeline/timeline.html b/app/code/Magento/Ui/view/base/web/templates/timeline/timeline.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/base/web/templates/tooltip/tooltip.html b/app/code/Magento/Ui/view/base/web/templates/tooltip/tooltip.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/frontend/web/js/model/messageList.js b/app/code/Magento/Ui/view/frontend/web/js/model/messageList.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/frontend/web/js/model/messages.js b/app/code/Magento/Ui/view/frontend/web/js/model/messages.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/frontend/web/js/view/messages.js b/app/code/Magento/Ui/view/frontend/web/js/view/messages.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/frontend/web/template/messages.html b/app/code/Magento/Ui/view/frontend/web/template/messages.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/frontend/web/templates/form/element/checkbox.html b/app/code/Magento/Ui/view/frontend/web/templates/form/element/checkbox.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/frontend/web/templates/form/element/date.html b/app/code/Magento/Ui/view/frontend/web/templates/form/element/date.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/frontend/web/templates/form/element/email.html b/app/code/Magento/Ui/view/frontend/web/templates/form/element/email.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/frontend/web/templates/form/element/helper/tooltip.html b/app/code/Magento/Ui/view/frontend/web/templates/form/element/helper/tooltip.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/frontend/web/templates/form/element/input.html b/app/code/Magento/Ui/view/frontend/web/templates/form/element/input.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/frontend/web/templates/form/element/password.html b/app/code/Magento/Ui/view/frontend/web/templates/form/element/password.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/frontend/web/templates/form/element/select.html b/app/code/Magento/Ui/view/frontend/web/templates/form/element/select.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/frontend/web/templates/form/field.html b/app/code/Magento/Ui/view/frontend/web/templates/form/field.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ui/view/frontend/web/templates/group/group.html b/app/code/Magento/Ui/view/frontend/web/templates/group/group.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ups/Block/Backend/System/CarrierConfig.php b/app/code/Magento/Ups/Block/Backend/System/CarrierConfig.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ups/Helper/Config.php b/app/code/Magento/Ups/Helper/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ups/LICENSE.txt b/app/code/Magento/Ups/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ups/LICENSE_AFL.txt b/app/code/Magento/Ups/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ups/Model/Carrier.php b/app/code/Magento/Ups/Model/Carrier.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ups/Model/Config/Source/Container.php b/app/code/Magento/Ups/Model/Config/Source/Container.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ups/Model/Config/Source/DestType.php b/app/code/Magento/Ups/Model/Config/Source/DestType.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ups/Model/Config/Source/Freemethod.php b/app/code/Magento/Ups/Model/Config/Source/Freemethod.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ups/Model/Config/Source/Generic.php b/app/code/Magento/Ups/Model/Config/Source/Generic.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ups/Model/Config/Source/Method.php b/app/code/Magento/Ups/Model/Config/Source/Method.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ups/Model/Config/Source/OriginShipment.php b/app/code/Magento/Ups/Model/Config/Source/OriginShipment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ups/Model/Config/Source/Pickup.php b/app/code/Magento/Ups/Model/Config/Source/Pickup.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ups/Model/Config/Source/Type.php b/app/code/Magento/Ups/Model/Config/Source/Type.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ups/Model/Config/Source/Unitofmeasure.php b/app/code/Magento/Ups/Model/Config/Source/Unitofmeasure.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ups/README.md b/app/code/Magento/Ups/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ups/Test/Unit/Helper/ConfigTest.php b/app/code/Magento/Ups/Test/Unit/Helper/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ups/Test/Unit/Model/CarrierTest.php b/app/code/Magento/Ups/Test/Unit/Model/CarrierTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ups/composer.json b/app/code/Magento/Ups/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ups/etc/adminhtml/system.xml b/app/code/Magento/Ups/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ups/etc/config.xml b/app/code/Magento/Ups/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ups/etc/di.xml b/app/code/Magento/Ups/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ups/etc/module.xml b/app/code/Magento/Ups/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ups/i18n/en_US.csv b/app/code/Magento/Ups/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ups/registration.php b/app/code/Magento/Ups/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ups/view/adminhtml/layout/adminhtml_system_config_edit.xml b/app/code/Magento/Ups/view/adminhtml/layout/adminhtml_system_config_edit.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ups/view/adminhtml/templates/system/shipping/carrier_config.phtml b/app/code/Magento/Ups/view/adminhtml/templates/system/shipping/carrier_config.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ups/view/frontend/layout/checkout_cart_index.xml b/app/code/Magento/Ups/view/frontend/layout/checkout_cart_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ups/view/frontend/layout/checkout_index_index.xml b/app/code/Magento/Ups/view/frontend/layout/checkout_index_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ups/view/frontend/web/js/model/shipping-rates-validation-rules.js b/app/code/Magento/Ups/view/frontend/web/js/model/shipping-rates-validation-rules.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ups/view/frontend/web/js/model/shipping-rates-validator.js b/app/code/Magento/Ups/view/frontend/web/js/model/shipping-rates-validator.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Ups/view/frontend/web/js/view/shipping-rates-validation.js b/app/code/Magento/Ups/view/frontend/web/js/view/shipping-rates-validation.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Block/Catalog/Category/Edit.php b/app/code/Magento/UrlRewrite/Block/Catalog/Category/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Block/Catalog/Category/Tree.php b/app/code/Magento/UrlRewrite/Block/Catalog/Category/Tree.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Block/Catalog/Edit/Form.php b/app/code/Magento/UrlRewrite/Block/Catalog/Edit/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Block/Catalog/Product/Edit.php b/app/code/Magento/UrlRewrite/Block/Catalog/Product/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Block/Catalog/Product/Grid.php b/app/code/Magento/UrlRewrite/Block/Catalog/Product/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Block/Cms/Page/Edit.php b/app/code/Magento/UrlRewrite/Block/Cms/Page/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Block/Cms/Page/Edit/Form.php b/app/code/Magento/UrlRewrite/Block/Cms/Page/Edit/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Block/Cms/Page/Grid.php b/app/code/Magento/UrlRewrite/Block/Cms/Page/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Block/Edit.php b/app/code/Magento/UrlRewrite/Block/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Block/Edit/Form.php b/app/code/Magento/UrlRewrite/Block/Edit/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Block/GridContainer.php b/app/code/Magento/UrlRewrite/Block/GridContainer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Block/Link.php b/app/code/Magento/UrlRewrite/Block/Link.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Block/Plugin/Store/Switcher/SetRedirectUrl.php b/app/code/Magento/UrlRewrite/Block/Plugin/Store/Switcher/SetRedirectUrl.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Block/Selector.php b/app/code/Magento/UrlRewrite/Block/Selector.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Controller/Adminhtml/Url/Rewrite.php b/app/code/Magento/UrlRewrite/Controller/Adminhtml/Url/Rewrite.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Controller/Adminhtml/Url/Rewrite/CategoriesJson.php b/app/code/Magento/UrlRewrite/Controller/Adminhtml/Url/Rewrite/CategoriesJson.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Controller/Adminhtml/Url/Rewrite/CmsPageGrid.php b/app/code/Magento/UrlRewrite/Controller/Adminhtml/Url/Rewrite/CmsPageGrid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Controller/Adminhtml/Url/Rewrite/Delete.php b/app/code/Magento/UrlRewrite/Controller/Adminhtml/Url/Rewrite/Delete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Controller/Adminhtml/Url/Rewrite/Edit.php b/app/code/Magento/UrlRewrite/Controller/Adminhtml/Url/Rewrite/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Controller/Adminhtml/Url/Rewrite/Index.php b/app/code/Magento/UrlRewrite/Controller/Adminhtml/Url/Rewrite/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Controller/Adminhtml/Url/Rewrite/ProductGrid.php b/app/code/Magento/UrlRewrite/Controller/Adminhtml/Url/Rewrite/ProductGrid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Controller/Adminhtml/Url/Rewrite/Save.php b/app/code/Magento/UrlRewrite/Controller/Adminhtml/Url/Rewrite/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Controller/Router.php b/app/code/Magento/UrlRewrite/Controller/Router.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Helper/UrlRewrite.php b/app/code/Magento/UrlRewrite/Helper/UrlRewrite.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/LICENSE.txt b/app/code/Magento/UrlRewrite/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/LICENSE_AFL.txt b/app/code/Magento/UrlRewrite/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Model/Exception/UrlAlreadyExistsException.php b/app/code/Magento/UrlRewrite/Model/Exception/UrlAlreadyExistsException.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Model/MergeDataProvider.php b/app/code/Magento/UrlRewrite/Model/MergeDataProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Model/Message/UrlRewriteExceptionMessageFactory.php b/app/code/Magento/UrlRewrite/Model/Message/UrlRewriteExceptionMessageFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Model/OptionProvider.php b/app/code/Magento/UrlRewrite/Model/OptionProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Model/ResourceModel/UrlRewrite.php b/app/code/Magento/UrlRewrite/Model/ResourceModel/UrlRewrite.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Model/ResourceModel/UrlRewriteCollection.php b/app/code/Magento/UrlRewrite/Model/ResourceModel/UrlRewriteCollection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Model/Storage/AbstractStorage.php b/app/code/Magento/UrlRewrite/Model/Storage/AbstractStorage.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Model/Storage/DbStorage.php b/app/code/Magento/UrlRewrite/Model/Storage/DbStorage.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Model/StorageInterface.php b/app/code/Magento/UrlRewrite/Model/StorageInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Model/UrlFinderInterface.php b/app/code/Magento/UrlRewrite/Model/UrlFinderInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Model/UrlPersistInterface.php b/app/code/Magento/UrlRewrite/Model/UrlPersistInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Model/UrlRewrite.php b/app/code/Magento/UrlRewrite/Model/UrlRewrite.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/README.md b/app/code/Magento/UrlRewrite/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Service/V1/Data/UrlRewrite.php b/app/code/Magento/UrlRewrite/Service/V1/Data/UrlRewrite.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Setup/InstallSchema.php b/app/code/Magento/UrlRewrite/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Setup/UpgradeData.php b/app/code/Magento/UrlRewrite/Setup/UpgradeData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Test/Unit/Block/Catalog/Edit/FormTest.php b/app/code/Magento/UrlRewrite/Test/Unit/Block/Catalog/Edit/FormTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Test/Unit/Block/Plugin/Store/Switcher/SetRedirectUrlTest.php b/app/code/Magento/UrlRewrite/Test/Unit/Block/Plugin/Store/Switcher/SetRedirectUrlTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Test/Unit/Controller/RouterTest.php b/app/code/Magento/UrlRewrite/Test/Unit/Controller/RouterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Test/Unit/Helper/UrlRewriteTest.php b/app/code/Magento/UrlRewrite/Test/Unit/Helper/UrlRewriteTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Test/Unit/Model/Exception/UrlAlreadyExistsExceptionTest.php b/app/code/Magento/UrlRewrite/Test/Unit/Model/Exception/UrlAlreadyExistsExceptionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Test/Unit/Model/MergeDataProviderTest.php b/app/code/Magento/UrlRewrite/Test/Unit/Model/MergeDataProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Test/Unit/Model/Message/UrlRewriteExceptionMessageFactoryTest.php b/app/code/Magento/UrlRewrite/Test/Unit/Model/Message/UrlRewriteExceptionMessageFactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Test/Unit/Model/ResourceModel/UrlRewriteCollectionTest.php b/app/code/Magento/UrlRewrite/Test/Unit/Model/ResourceModel/UrlRewriteCollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Test/Unit/Model/Storage/AbstractStorageTest.php b/app/code/Magento/UrlRewrite/Test/Unit/Model/Storage/AbstractStorageTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Test/Unit/Model/Storage/DbStorageTest.php b/app/code/Magento/UrlRewrite/Test/Unit/Model/Storage/DbStorageTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Test/Unit/Model/UrlRewriteTest.php b/app/code/Magento/UrlRewrite/Test/Unit/Model/UrlRewriteTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/Test/Unit/Service/V1/Data/UrlRewriteTest.php b/app/code/Magento/UrlRewrite/Test/Unit/Service/V1/Data/UrlRewriteTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/composer.json b/app/code/Magento/UrlRewrite/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/etc/acl.xml b/app/code/Magento/UrlRewrite/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/etc/adminhtml/di.xml b/app/code/Magento/UrlRewrite/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/etc/adminhtml/menu.xml b/app/code/Magento/UrlRewrite/etc/adminhtml/menu.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/etc/adminhtml/routes.xml b/app/code/Magento/UrlRewrite/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/etc/config.xml b/app/code/Magento/UrlRewrite/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/etc/di.xml b/app/code/Magento/UrlRewrite/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/etc/frontend/di.xml b/app/code/Magento/UrlRewrite/etc/frontend/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/etc/module.xml b/app/code/Magento/UrlRewrite/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/i18n/en_US.csv b/app/code/Magento/UrlRewrite/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/registration.php b/app/code/Magento/UrlRewrite/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/view/adminhtml/layout/adminhtml_url_rewrite_index.xml b/app/code/Magento/UrlRewrite/view/adminhtml/layout/adminhtml_url_rewrite_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/view/adminhtml/templates/categories.phtml b/app/code/Magento/UrlRewrite/view/adminhtml/templates/categories.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/view/adminhtml/templates/edit.phtml b/app/code/Magento/UrlRewrite/view/adminhtml/templates/edit.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/view/adminhtml/templates/messages/url_duplicate_message.phtml b/app/code/Magento/UrlRewrite/view/adminhtml/templates/messages/url_duplicate_message.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/UrlRewrite/view/adminhtml/templates/selector.phtml b/app/code/Magento/UrlRewrite/view/adminhtml/templates/selector.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Api/Data/UserInterface.php b/app/code/Magento/User/Api/Data/UserInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Block/Adminhtml/Locks.php b/app/code/Magento/User/Block/Adminhtml/Locks.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Block/Buttons.php b/app/code/Magento/User/Block/Buttons.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Block/Role.php b/app/code/Magento/User/Block/Role.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Block/Role/Edit.php b/app/code/Magento/User/Block/Role/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Block/Role/Grid/User.php b/app/code/Magento/User/Block/Role/Grid/User.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Block/Role/Tab/Edit.php b/app/code/Magento/User/Block/Role/Tab/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Block/Role/Tab/Info.php b/app/code/Magento/User/Block/Role/Tab/Info.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Block/Role/Tab/Users.php b/app/code/Magento/User/Block/Role/Tab/Users.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Block/User.php b/app/code/Magento/User/Block/User.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Block/User/Edit.php b/app/code/Magento/User/Block/User/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Block/User/Edit/Form.php b/app/code/Magento/User/Block/User/Edit/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Block/User/Edit/Tab/Main.php b/app/code/Magento/User/Block/User/Edit/Tab/Main.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Block/User/Edit/Tab/Roles.php b/app/code/Magento/User/Block/User/Edit/Tab/Roles.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Block/User/Edit/Tabs.php b/app/code/Magento/User/Block/User/Edit/Tabs.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Console/UnlockAdminAccountCommand.php b/app/code/Magento/User/Console/UnlockAdminAccountCommand.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Controller/Adminhtml/Auth.php b/app/code/Magento/User/Controller/Adminhtml/Auth.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Controller/Adminhtml/Auth/Forgotpassword.php b/app/code/Magento/User/Controller/Adminhtml/Auth/Forgotpassword.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Controller/Adminhtml/Auth/ResetPassword.php b/app/code/Magento/User/Controller/Adminhtml/Auth/ResetPassword.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Controller/Adminhtml/Auth/ResetPasswordPost.php b/app/code/Magento/User/Controller/Adminhtml/Auth/ResetPasswordPost.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Controller/Adminhtml/Locks.php b/app/code/Magento/User/Controller/Adminhtml/Locks.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Controller/Adminhtml/Locks/Grid.php b/app/code/Magento/User/Controller/Adminhtml/Locks/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Controller/Adminhtml/Locks/Index.php b/app/code/Magento/User/Controller/Adminhtml/Locks/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Controller/Adminhtml/Locks/MassUnlock.php b/app/code/Magento/User/Controller/Adminhtml/Locks/MassUnlock.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Controller/Adminhtml/User.php b/app/code/Magento/User/Controller/Adminhtml/User.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Controller/Adminhtml/User/Delete.php b/app/code/Magento/User/Controller/Adminhtml/User/Delete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Controller/Adminhtml/User/Edit.php b/app/code/Magento/User/Controller/Adminhtml/User/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Controller/Adminhtml/User/Index.php b/app/code/Magento/User/Controller/Adminhtml/User/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Controller/Adminhtml/User/InvalidateToken.php b/app/code/Magento/User/Controller/Adminhtml/User/InvalidateToken.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Controller/Adminhtml/User/NewAction.php b/app/code/Magento/User/Controller/Adminhtml/User/NewAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Controller/Adminhtml/User/Role.php b/app/code/Magento/User/Controller/Adminhtml/User/Role.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Controller/Adminhtml/User/Role/Delete.php b/app/code/Magento/User/Controller/Adminhtml/User/Role/Delete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Controller/Adminhtml/User/Role/EditRole.php b/app/code/Magento/User/Controller/Adminhtml/User/Role/EditRole.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Controller/Adminhtml/User/Role/Editrolegrid.php b/app/code/Magento/User/Controller/Adminhtml/User/Role/Editrolegrid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Controller/Adminhtml/User/Role/Index.php b/app/code/Magento/User/Controller/Adminhtml/User/Role/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Controller/Adminhtml/User/Role/RoleGrid.php b/app/code/Magento/User/Controller/Adminhtml/User/Role/RoleGrid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Controller/Adminhtml/User/Role/SaveRole.php b/app/code/Magento/User/Controller/Adminhtml/User/Role/SaveRole.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Controller/Adminhtml/User/RoleGrid.php b/app/code/Magento/User/Controller/Adminhtml/User/RoleGrid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Controller/Adminhtml/User/RolesGrid.php b/app/code/Magento/User/Controller/Adminhtml/User/RolesGrid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Controller/Adminhtml/User/Save.php b/app/code/Magento/User/Controller/Adminhtml/User/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Controller/Adminhtml/User/Validate.php b/app/code/Magento/User/Controller/Adminhtml/User/Validate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Helper/Data.php b/app/code/Magento/User/Helper/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/LICENSE.txt b/app/code/Magento/User/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/LICENSE_AFL.txt b/app/code/Magento/User/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Model/Authorization/AdminSessionUserContext.php b/app/code/Magento/User/Model/Authorization/AdminSessionUserContext.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Model/Backend/Config/ObserverConfig.php b/app/code/Magento/User/Model/Backend/Config/ObserverConfig.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Model/Plugin/AuthorizationRole.php b/app/code/Magento/User/Model/Plugin/AuthorizationRole.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Model/ResourceModel/Role/User/Collection.php b/app/code/Magento/User/Model/ResourceModel/Role/User/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Model/ResourceModel/User.php b/app/code/Magento/User/Model/ResourceModel/User.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Model/ResourceModel/User/Collection.php b/app/code/Magento/User/Model/ResourceModel/User/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Model/ResourceModel/User/Locked/Collection.php b/app/code/Magento/User/Model/ResourceModel/User/Locked/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Model/System/Config/Source/Password.php b/app/code/Magento/User/Model/System/Config/Source/Password.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Model/User.php b/app/code/Magento/User/Model/User.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Model/UserValidationRules.php b/app/code/Magento/User/Model/UserValidationRules.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Observer/Backend/AuthObserver.php b/app/code/Magento/User/Observer/Backend/AuthObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Observer/Backend/ForceAdminPasswordChangeObserver.php b/app/code/Magento/User/Observer/Backend/ForceAdminPasswordChangeObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Observer/Backend/TrackAdminNewPasswordObserver.php b/app/code/Magento/User/Observer/Backend/TrackAdminNewPasswordObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/README.md b/app/code/Magento/User/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Setup/InstallSchema.php b/app/code/Magento/User/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Setup/UpgradeData.php b/app/code/Magento/User/Setup/UpgradeData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Setup/UpgradeSchema.php b/app/code/Magento/User/Setup/UpgradeSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Test/Unit/Block/Role/EditTest.php b/app/code/Magento/User/Test/Unit/Block/Role/EditTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Test/Unit/Block/Role/Grid/UserTest.php b/app/code/Magento/User/Test/Unit/Block/Role/Grid/UserTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Test/Unit/Block/Role/Tab/EditTest.php b/app/code/Magento/User/Test/Unit/Block/Role/Tab/EditTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Test/Unit/Block/Role/Tab/InfoTest.php b/app/code/Magento/User/Test/Unit/Block/Role/Tab/InfoTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Test/Unit/Block/Role/Tab/UsersTest.php b/app/code/Magento/User/Test/Unit/Block/Role/Tab/UsersTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Test/Unit/Console/UnlockAdminAccountCommandTest.php b/app/code/Magento/User/Test/Unit/Console/UnlockAdminAccountCommandTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Test/Unit/Controller/Adminhtml/User/DeleteTest.php b/app/code/Magento/User/Test/Unit/Controller/Adminhtml/User/DeleteTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Test/Unit/Helper/DataTest.php b/app/code/Magento/User/Test/Unit/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Test/Unit/Model/Authorization/AdminSessionUserContextTest.php b/app/code/Magento/User/Test/Unit/Model/Authorization/AdminSessionUserContextTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Test/Unit/Model/Plugin/AuthorizationRoleTest.php b/app/code/Magento/User/Test/Unit/Model/Plugin/AuthorizationRoleTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Test/Unit/Model/ResourceModel/UserTest.php b/app/code/Magento/User/Test/Unit/Model/ResourceModel/UserTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Test/Unit/Model/UserTest.php b/app/code/Magento/User/Test/Unit/Model/UserTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Test/Unit/Model/UserValidationRulesTest.php b/app/code/Magento/User/Test/Unit/Model/UserValidationRulesTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Test/Unit/Observer/Backend/AuthObserverTest.php b/app/code/Magento/User/Test/Unit/Observer/Backend/AuthObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Test/Unit/Observer/Backend/ForceAdminPasswordChangeObserverTest.php b/app/code/Magento/User/Test/Unit/Observer/Backend/ForceAdminPasswordChangeObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/Test/Unit/Observer/Backend/TrackAdminNewPasswordObserverTest.php b/app/code/Magento/User/Test/Unit/Observer/Backend/TrackAdminNewPasswordObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/composer.json b/app/code/Magento/User/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/etc/acl.xml b/app/code/Magento/User/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/etc/adminhtml/menu.xml b/app/code/Magento/User/etc/adminhtml/menu.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/etc/adminhtml/routes.xml b/app/code/Magento/User/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/etc/adminhtml/system.xml b/app/code/Magento/User/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/etc/config.xml b/app/code/Magento/User/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/etc/di.xml b/app/code/Magento/User/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/etc/email_templates.xml b/app/code/Magento/User/etc/email_templates.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/etc/module.xml b/app/code/Magento/User/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/etc/webapi_rest/di.xml b/app/code/Magento/User/etc/webapi_rest/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/i18n/en_US.csv b/app/code/Magento/User/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/registration.php b/app/code/Magento/User/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/view/adminhtml/email/password_reset_confirmation.html b/app/code/Magento/User/view/adminhtml/email/password_reset_confirmation.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/view/adminhtml/email/user_notification.html b/app/code/Magento/User/view/adminhtml/email/user_notification.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/view/adminhtml/layout/adminhtml_auth_forgotpassword.xml b/app/code/Magento/User/view/adminhtml/layout/adminhtml_auth_forgotpassword.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/view/adminhtml/layout/adminhtml_auth_login.xml b/app/code/Magento/User/view/adminhtml/layout/adminhtml_auth_login.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/view/adminhtml/layout/adminhtml_auth_resetpassword.xml b/app/code/Magento/User/view/adminhtml/layout/adminhtml_auth_resetpassword.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/view/adminhtml/layout/adminhtml_locks_block.xml b/app/code/Magento/User/view/adminhtml/layout/adminhtml_locks_block.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/view/adminhtml/layout/adminhtml_locks_grid.xml b/app/code/Magento/User/view/adminhtml/layout/adminhtml_locks_grid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/view/adminhtml/layout/adminhtml_locks_index.xml b/app/code/Magento/User/view/adminhtml/layout/adminhtml_locks_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/view/adminhtml/layout/adminhtml_user_edit.xml b/app/code/Magento/User/view/adminhtml/layout/adminhtml_user_edit.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/view/adminhtml/layout/adminhtml_user_grid_block.xml b/app/code/Magento/User/view/adminhtml/layout/adminhtml_user_grid_block.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/view/adminhtml/layout/adminhtml_user_index.xml b/app/code/Magento/User/view/adminhtml/layout/adminhtml_user_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/view/adminhtml/layout/adminhtml_user_role_editrole.xml b/app/code/Magento/User/view/adminhtml/layout/adminhtml_user_role_editrole.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/view/adminhtml/layout/adminhtml_user_role_editrolegrid.xml b/app/code/Magento/User/view/adminhtml/layout/adminhtml_user_role_editrolegrid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/view/adminhtml/layout/adminhtml_user_role_grid_block.xml b/app/code/Magento/User/view/adminhtml/layout/adminhtml_user_role_grid_block.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/view/adminhtml/layout/adminhtml_user_role_index.xml b/app/code/Magento/User/view/adminhtml/layout/adminhtml_user_role_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/view/adminhtml/layout/adminhtml_user_role_rolegrid.xml b/app/code/Magento/User/view/adminhtml/layout/adminhtml_user_role_rolegrid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/view/adminhtml/layout/adminhtml_user_rolegrid.xml b/app/code/Magento/User/view/adminhtml/layout/adminhtml_user_rolegrid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/view/adminhtml/layout/adminhtml_user_rolesgrid.xml b/app/code/Magento/User/view/adminhtml/layout/adminhtml_user_rolesgrid.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/view/adminhtml/requirejs-config.js b/app/code/Magento/User/view/adminhtml/requirejs-config.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/view/adminhtml/templates/admin/forgotpassword.phtml b/app/code/Magento/User/view/adminhtml/templates/admin/forgotpassword.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/view/adminhtml/templates/admin/forgotpassword_url.phtml b/app/code/Magento/User/view/adminhtml/templates/admin/forgotpassword_url.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/view/adminhtml/templates/admin/resetforgottenpassword.phtml b/app/code/Magento/User/view/adminhtml/templates/admin/resetforgottenpassword.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/view/adminhtml/templates/role/edit.phtml b/app/code/Magento/User/view/adminhtml/templates/role/edit.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/view/adminhtml/templates/role/info.phtml b/app/code/Magento/User/view/adminhtml/templates/role/info.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/view/adminhtml/templates/role/users.phtml b/app/code/Magento/User/view/adminhtml/templates/role/users.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/view/adminhtml/templates/role/users_grid_js.phtml b/app/code/Magento/User/view/adminhtml/templates/role/users_grid_js.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/view/adminhtml/templates/user/roles_grid_js.phtml b/app/code/Magento/User/view/adminhtml/templates/user/roles_grid_js.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/view/adminhtml/web/app-config.js b/app/code/Magento/User/view/adminhtml/web/app-config.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/view/adminhtml/web/js/delete-user-account.js b/app/code/Magento/User/view/adminhtml/web/js/delete-user-account.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/User/view/adminhtml/web/js/roles-tree.js b/app/code/Magento/User/view/adminhtml/web/js/roles-tree.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Usps/Block/Adminhtml/Order/Packaging/Plugin/DisplayGirth.php b/app/code/Magento/Usps/Block/Adminhtml/Order/Packaging/Plugin/DisplayGirth.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Usps/Helper/Data.php b/app/code/Magento/Usps/Helper/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Usps/LICENSE.txt b/app/code/Magento/Usps/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Usps/LICENSE_AFL.txt b/app/code/Magento/Usps/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Usps/Model/Carrier.php b/app/code/Magento/Usps/Model/Carrier.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Usps/Model/Source/Container.php b/app/code/Magento/Usps/Model/Source/Container.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Usps/Model/Source/Freemethod.php b/app/code/Magento/Usps/Model/Source/Freemethod.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Usps/Model/Source/Generic.php b/app/code/Magento/Usps/Model/Source/Generic.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Usps/Model/Source/Machinable.php b/app/code/Magento/Usps/Model/Source/Machinable.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Usps/Model/Source/Method.php b/app/code/Magento/Usps/Model/Source/Method.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Usps/Model/Source/Size.php b/app/code/Magento/Usps/Model/Source/Size.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Usps/README.md b/app/code/Magento/Usps/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Usps/Setup/UpgradeData.php b/app/code/Magento/Usps/Setup/UpgradeData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Usps/Test/Unit/Helper/DataTest.php b/app/code/Magento/Usps/Test/Unit/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Usps/Test/Unit/Model/CarrierTest.php b/app/code/Magento/Usps/Test/Unit/Model/CarrierTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Usps/Test/Unit/Model/Source/GenericTest.php b/app/code/Magento/Usps/Test/Unit/Model/Source/GenericTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Usps/Test/Unit/Model/_files/rates_request_data.php b/app/code/Magento/Usps/Test/Unit/Model/_files/rates_request_data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Usps/Test/Unit/Model/_files/response_rates.xml b/app/code/Magento/Usps/Test/Unit/Model/_files/response_rates.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Usps/Test/Unit/Model/_files/return_shipment_request_data.php b/app/code/Magento/Usps/Test/Unit/Model/_files/return_shipment_request_data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Usps/Test/Unit/Model/_files/success_usps_response_rates.xml b/app/code/Magento/Usps/Test/Unit/Model/_files/success_usps_response_rates.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Usps/Test/Unit/Model/_files/success_usps_response_return_shipment.xml b/app/code/Magento/Usps/Test/Unit/Model/_files/success_usps_response_return_shipment.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Usps/composer.json b/app/code/Magento/Usps/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Usps/etc/adminhtml/di.xml b/app/code/Magento/Usps/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Usps/etc/adminhtml/system.xml b/app/code/Magento/Usps/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Usps/etc/config.xml b/app/code/Magento/Usps/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Usps/etc/di.xml b/app/code/Magento/Usps/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Usps/etc/module.xml b/app/code/Magento/Usps/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Usps/i18n/en_US.csv b/app/code/Magento/Usps/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Usps/registration.php b/app/code/Magento/Usps/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Usps/view/frontend/layout/checkout_cart_index.xml b/app/code/Magento/Usps/view/frontend/layout/checkout_cart_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Usps/view/frontend/layout/checkout_index_index.xml b/app/code/Magento/Usps/view/frontend/layout/checkout_index_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Usps/view/frontend/web/js/model/shipping-rates-validation-rules.js b/app/code/Magento/Usps/view/frontend/web/js/model/shipping-rates-validation-rules.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Usps/view/frontend/web/js/model/shipping-rates-validator.js b/app/code/Magento/Usps/view/frontend/web/js/model/shipping-rates-validator.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Usps/view/frontend/web/js/view/shipping-rates-validation.js b/app/code/Magento/Usps/view/frontend/web/js/view/shipping-rates-validation.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Variable/Block/System/Variable.php b/app/code/Magento/Variable/Block/System/Variable.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Variable/Block/System/Variable/Edit.php b/app/code/Magento/Variable/Block/System/Variable/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Variable/Block/System/Variable/Edit/Form.php b/app/code/Magento/Variable/Block/System/Variable/Edit/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Variable/Controller/Adminhtml/System/Variable.php b/app/code/Magento/Variable/Controller/Adminhtml/System/Variable.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Variable/Controller/Adminhtml/System/Variable/Delete.php b/app/code/Magento/Variable/Controller/Adminhtml/System/Variable/Delete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Variable/Controller/Adminhtml/System/Variable/Edit.php b/app/code/Magento/Variable/Controller/Adminhtml/System/Variable/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Variable/Controller/Adminhtml/System/Variable/Index.php b/app/code/Magento/Variable/Controller/Adminhtml/System/Variable/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Variable/Controller/Adminhtml/System/Variable/NewAction.php b/app/code/Magento/Variable/Controller/Adminhtml/System/Variable/NewAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Variable/Controller/Adminhtml/System/Variable/Save.php b/app/code/Magento/Variable/Controller/Adminhtml/System/Variable/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Variable/Controller/Adminhtml/System/Variable/Validate.php b/app/code/Magento/Variable/Controller/Adminhtml/System/Variable/Validate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Variable/Controller/Adminhtml/System/Variable/WysiwygPlugin.php b/app/code/Magento/Variable/Controller/Adminhtml/System/Variable/WysiwygPlugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Variable/LICENSE.txt b/app/code/Magento/Variable/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Variable/LICENSE_AFL.txt b/app/code/Magento/Variable/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Variable/Model/ResourceModel/Variable.php b/app/code/Magento/Variable/Model/ResourceModel/Variable.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Variable/Model/ResourceModel/Variable/Collection.php b/app/code/Magento/Variable/Model/ResourceModel/Variable/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Variable/Model/Variable.php b/app/code/Magento/Variable/Model/Variable.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Variable/Model/Variable/Config.php b/app/code/Magento/Variable/Model/Variable/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Variable/README.md b/app/code/Magento/Variable/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Variable/Setup/InstallSchema.php b/app/code/Magento/Variable/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Variable/Test/Unit/Controller/Adminhtml/System/Variable/ValidateTest.php b/app/code/Magento/Variable/Test/Unit/Controller/Adminhtml/System/Variable/ValidateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Variable/Test/Unit/Model/Variable/ConfigTest.php b/app/code/Magento/Variable/Test/Unit/Model/Variable/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Variable/Test/Unit/Model/VariableTest.php b/app/code/Magento/Variable/Test/Unit/Model/VariableTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Variable/composer.json b/app/code/Magento/Variable/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Variable/etc/acl.xml b/app/code/Magento/Variable/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Variable/etc/adminhtml/menu.xml b/app/code/Magento/Variable/etc/adminhtml/menu.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Variable/etc/adminhtml/routes.xml b/app/code/Magento/Variable/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Variable/etc/module.xml b/app/code/Magento/Variable/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Variable/i18n/en_US.csv b/app/code/Magento/Variable/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Variable/registration.php b/app/code/Magento/Variable/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Variable/view/adminhtml/layout/adminhtml_system_variable_edit.xml b/app/code/Magento/Variable/view/adminhtml/layout/adminhtml_system_variable_edit.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Variable/view/adminhtml/layout/adminhtml_system_variable_grid_block.xml b/app/code/Magento/Variable/view/adminhtml/layout/adminhtml_system_variable_grid_block.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Variable/view/adminhtml/layout/adminhtml_system_variable_index.xml b/app/code/Magento/Variable/view/adminhtml/layout/adminhtml_system_variable_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Variable/view/adminhtml/templates/system/variable/js.phtml b/app/code/Magento/Variable/view/adminhtml/templates/system/variable/js.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Variable/view/adminhtml/web/variables.js b/app/code/Magento/Variable/view/adminhtml/web/variables.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Api/Data/PaymentTokenFactoryInterface.php b/app/code/Magento/Vault/Api/Data/PaymentTokenFactoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Api/Data/PaymentTokenInterface.php b/app/code/Magento/Vault/Api/Data/PaymentTokenInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Api/Data/PaymentTokenInterfaceFactory.php b/app/code/Magento/Vault/Api/Data/PaymentTokenInterfaceFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Api/Data/PaymentTokenSearchResultsInterface.php b/app/code/Magento/Vault/Api/Data/PaymentTokenSearchResultsInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Api/PaymentMethodListInterface.php b/app/code/Magento/Vault/Api/PaymentMethodListInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Api/PaymentTokenManagementInterface.php b/app/code/Magento/Vault/Api/PaymentTokenManagementInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Api/PaymentTokenRepositoryInterface.php b/app/code/Magento/Vault/Api/PaymentTokenRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Block/AbstractCardRenderer.php b/app/code/Magento/Vault/Block/AbstractCardRenderer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Block/AbstractTokenRenderer.php b/app/code/Magento/Vault/Block/AbstractTokenRenderer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Block/CardRendererInterface.php b/app/code/Magento/Vault/Block/CardRendererInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Block/Customer/AccountTokens.php b/app/code/Magento/Vault/Block/Customer/AccountTokens.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Block/Customer/CreditCards.php b/app/code/Magento/Vault/Block/Customer/CreditCards.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Block/Customer/IconInterface.php b/app/code/Magento/Vault/Block/Customer/IconInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Block/Customer/PaymentTokens.php b/app/code/Magento/Vault/Block/Customer/PaymentTokens.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Block/Form.php b/app/code/Magento/Vault/Block/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Block/TokenRendererInterface.php b/app/code/Magento/Vault/Block/TokenRendererInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Controller/Cards/DeleteAction.php b/app/code/Magento/Vault/Controller/Cards/DeleteAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Controller/Cards/ListAction.php b/app/code/Magento/Vault/Controller/Cards/ListAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Controller/CardsManagement.php b/app/code/Magento/Vault/Controller/CardsManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/LICENSE.txt b/app/code/Magento/Vault/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/LICENSE_AFL.txt b/app/code/Magento/Vault/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Model/AbstractPaymentTokenFactory.php b/app/code/Magento/Vault/Model/AbstractPaymentTokenFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Model/AccountPaymentTokenFactory.php b/app/code/Magento/Vault/Model/AccountPaymentTokenFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Model/CreditCardTokenFactory.php b/app/code/Magento/Vault/Model/CreditCardTokenFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Model/CustomerTokenManagement.php b/app/code/Magento/Vault/Model/CustomerTokenManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Model/Method/NullPaymentProvider.php b/app/code/Magento/Vault/Model/Method/NullPaymentProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Model/Method/Vault.php b/app/code/Magento/Vault/Model/Method/Vault.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Model/PaymentMethodList.php b/app/code/Magento/Vault/Model/PaymentMethodList.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Model/PaymentToken.php b/app/code/Magento/Vault/Model/PaymentToken.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Model/PaymentTokenFactory.php b/app/code/Magento/Vault/Model/PaymentTokenFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Model/PaymentTokenManagement.php b/app/code/Magento/Vault/Model/PaymentTokenManagement.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Model/PaymentTokenRepository.php b/app/code/Magento/Vault/Model/PaymentTokenRepository.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Model/ResourceModel/PaymentToken.php b/app/code/Magento/Vault/Model/ResourceModel/PaymentToken.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Model/ResourceModel/PaymentToken/Collection.php b/app/code/Magento/Vault/Model/ResourceModel/PaymentToken/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Model/Ui/Adminhtml/TokensConfigProvider.php b/app/code/Magento/Vault/Model/Ui/Adminhtml/TokensConfigProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Model/Ui/TokenUiComponent.php b/app/code/Magento/Vault/Model/Ui/TokenUiComponent.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Model/Ui/TokenUiComponentInterface.php b/app/code/Magento/Vault/Model/Ui/TokenUiComponentInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Model/Ui/TokenUiComponentProviderInterface.php b/app/code/Magento/Vault/Model/Ui/TokenUiComponentProviderInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Model/Ui/TokensConfigProvider.php b/app/code/Magento/Vault/Model/Ui/TokensConfigProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Model/Ui/VaultConfigProvider.php b/app/code/Magento/Vault/Model/Ui/VaultConfigProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Model/VaultPaymentInterface.php b/app/code/Magento/Vault/Model/VaultPaymentInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Observer/AfterPaymentSaveObserver.php b/app/code/Magento/Vault/Observer/AfterPaymentSaveObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Observer/PaymentTokenAssigner.php b/app/code/Magento/Vault/Observer/PaymentTokenAssigner.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Observer/VaultEnableAssigner.php b/app/code/Magento/Vault/Observer/VaultEnableAssigner.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Plugin/PaymentVaultAttributesLoad.php b/app/code/Magento/Vault/Plugin/PaymentVaultAttributesLoad.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Plugin/PaymentVaultConfigurationProcess.php b/app/code/Magento/Vault/Plugin/PaymentVaultConfigurationProcess.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/README.md b/app/code/Magento/Vault/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Setup/InstallSchema.php b/app/code/Magento/Vault/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Setup/UpgradeData.php b/app/code/Magento/Vault/Setup/UpgradeData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Setup/UpgradeSchema.php b/app/code/Magento/Vault/Setup/UpgradeSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Test/Unit/Block/Customer/AccountTokensTest.php b/app/code/Magento/Vault/Test/Unit/Block/Customer/AccountTokensTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Test/Unit/Model/AccountPaymentTokenFactoryTest.php b/app/code/Magento/Vault/Test/Unit/Model/AccountPaymentTokenFactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Test/Unit/Model/CreditCardTokenFactoryTest.php b/app/code/Magento/Vault/Test/Unit/Model/CreditCardTokenFactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Test/Unit/Model/CustomerTokenManagementTest.php b/app/code/Magento/Vault/Test/Unit/Model/CustomerTokenManagementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Test/Unit/Model/Method/VaultTest.php b/app/code/Magento/Vault/Test/Unit/Model/Method/VaultTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Test/Unit/Model/PaymentMethodListTest.php b/app/code/Magento/Vault/Test/Unit/Model/PaymentMethodListTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Test/Unit/Model/PaymentTokenManagementTest.php b/app/code/Magento/Vault/Test/Unit/Model/PaymentTokenManagementTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Test/Unit/Model/PaymentTokenRepositoryTest.php b/app/code/Magento/Vault/Test/Unit/Model/PaymentTokenRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Test/Unit/Model/Ui/Adminhtml/TokensConfigProviderTest.php b/app/code/Magento/Vault/Test/Unit/Model/Ui/Adminhtml/TokensConfigProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Test/Unit/Model/Ui/TokensConfigProviderTest.php b/app/code/Magento/Vault/Test/Unit/Model/Ui/TokensConfigProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Test/Unit/Model/Ui/VaultConfigProviderTest.php b/app/code/Magento/Vault/Test/Unit/Model/Ui/VaultConfigProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Test/Unit/Observer/AfterPaymentSaveObserverTest.php b/app/code/Magento/Vault/Test/Unit/Observer/AfterPaymentSaveObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Test/Unit/Observer/PaymentTokenAssignerTest.php b/app/code/Magento/Vault/Test/Unit/Observer/PaymentTokenAssignerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Test/Unit/Observer/VaultEnableAssignerTest.php b/app/code/Magento/Vault/Test/Unit/Observer/VaultEnableAssignerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/Test/Unit/Plugin/PaymentVaultConfigurationProcessTest.php b/app/code/Magento/Vault/Test/Unit/Plugin/PaymentVaultConfigurationProcessTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/composer.json b/app/code/Magento/Vault/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/etc/adminhtml/di.xml b/app/code/Magento/Vault/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/etc/config.xml b/app/code/Magento/Vault/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/etc/di.xml b/app/code/Magento/Vault/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/etc/events.xml b/app/code/Magento/Vault/etc/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/etc/extension_attributes.xml b/app/code/Magento/Vault/etc/extension_attributes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/etc/frontend/di.xml b/app/code/Magento/Vault/etc/frontend/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/etc/frontend/routes.xml b/app/code/Magento/Vault/etc/frontend/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/etc/module.xml b/app/code/Magento/Vault/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/i18n/en_US.csv b/app/code/Magento/Vault/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/registration.php b/app/code/Magento/Vault/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/view/adminhtml/templates/form/vault.phtml b/app/code/Magento/Vault/view/adminhtml/templates/form/vault.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/view/adminhtml/web/js/vault.js b/app/code/Magento/Vault/view/adminhtml/web/js/vault.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/view/frontend/layout/checkout_index_index.xml b/app/code/Magento/Vault/view/frontend/layout/checkout_index_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/view/frontend/layout/customer_account.xml b/app/code/Magento/Vault/view/frontend/layout/customer_account.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/view/frontend/layout/vault_cards_listaction.xml b/app/code/Magento/Vault/view/frontend/layout/vault_cards_listaction.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/view/frontend/templates/cards_list.phtml b/app/code/Magento/Vault/view/frontend/templates/cards_list.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/view/frontend/templates/customer_account/credit_card.phtml b/app/code/Magento/Vault/view/frontend/templates/customer_account/credit_card.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/view/frontend/templates/token_list.phtml b/app/code/Magento/Vault/view/frontend/templates/token_list.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/view/frontend/web/js/customer_account/deleteWidget.js b/app/code/Magento/Vault/view/frontend/web/js/customer_account/deleteWidget.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/view/frontend/web/js/view/payment/method-renderer/vault.js b/app/code/Magento/Vault/view/frontend/web/js/view/payment/method-renderer/vault.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/view/frontend/web/js/view/payment/vault-enabler.js b/app/code/Magento/Vault/view/frontend/web/js/view/payment/vault-enabler.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/view/frontend/web/js/view/payment/vault.js b/app/code/Magento/Vault/view/frontend/web/js/view/payment/vault.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Vault/view/frontend/web/template/payment/form.html b/app/code/Magento/Vault/view/frontend/web/template/payment/form.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Version/Controller/Index/Index.php b/app/code/Magento/Version/Controller/Index/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Version/LICENSE.txt b/app/code/Magento/Version/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Version/LICENSE_AFL.txt b/app/code/Magento/Version/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Version/README.md b/app/code/Magento/Version/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Version/composer.json b/app/code/Magento/Version/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Version/etc/frontend/routes.xml b/app/code/Magento/Version/etc/frontend/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Version/etc/module.xml b/app/code/Magento/Version/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Version/i18n/en_US.csv b/app/code/Magento/Version/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Version/registration.php b/app/code/Magento/Version/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Controller/PathProcessor.php b/app/code/Magento/Webapi/Controller/PathProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Controller/Rest.php b/app/code/Magento/Webapi/Controller/Rest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Controller/Rest/InputParamsResolver.php b/app/code/Magento/Webapi/Controller/Rest/InputParamsResolver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Controller/Rest/ParamOverriderCustomerId.php b/app/code/Magento/Webapi/Controller/Rest/ParamOverriderCustomerId.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Controller/Rest/ParamsOverrider.php b/app/code/Magento/Webapi/Controller/Rest/ParamsOverrider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Controller/Rest/RequestValidator.php b/app/code/Magento/Webapi/Controller/Rest/RequestValidator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Controller/Rest/Router.php b/app/code/Magento/Webapi/Controller/Rest/Router.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Controller/Rest/Router/Route.php b/app/code/Magento/Webapi/Controller/Rest/Router/Route.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Controller/Soap.php b/app/code/Magento/Webapi/Controller/Soap.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Controller/Soap/Request/Handler.php b/app/code/Magento/Webapi/Controller/Soap/Request/Handler.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/LICENSE.txt b/app/code/Magento/Webapi/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/LICENSE_AFL.txt b/app/code/Magento/Webapi/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Model/AbstractSchemaGenerator.php b/app/code/Magento/Webapi/Model/AbstractSchemaGenerator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Model/Authorization/GuestUserContext.php b/app/code/Magento/Webapi/Model/Authorization/GuestUserContext.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Model/Authorization/OauthUserContext.php b/app/code/Magento/Webapi/Model/Authorization/OauthUserContext.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Model/Authorization/TokenUserContext.php b/app/code/Magento/Webapi/Model/Authorization/TokenUserContext.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Model/Cache/Type/Webapi.php b/app/code/Magento/Webapi/Model/Cache/Type/Webapi.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Model/Config.php b/app/code/Magento/Webapi/Model/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Model/Config/ClassReflector.php b/app/code/Magento/Webapi/Model/Config/ClassReflector.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Model/Config/Converter.php b/app/code/Magento/Webapi/Model/Config/Converter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Model/Config/Reader.php b/app/code/Magento/Webapi/Model/Config/Reader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Model/Config/SchemaLocator.php b/app/code/Magento/Webapi/Model/Config/SchemaLocator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Model/Plugin/Authorization/CustomerSessionUserContext.php b/app/code/Magento/Webapi/Model/Plugin/Authorization/CustomerSessionUserContext.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Model/Plugin/GuestAuthorization.php b/app/code/Magento/Webapi/Model/Plugin/GuestAuthorization.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Model/Plugin/Manager.php b/app/code/Magento/Webapi/Model/Plugin/Manager.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Model/Rest/Config.php b/app/code/Magento/Webapi/Model/Rest/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Model/Rest/Swagger.php b/app/code/Magento/Webapi/Model/Rest/Swagger.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Model/Rest/Swagger/Generator.php b/app/code/Magento/Webapi/Model/Rest/Swagger/Generator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Model/ServiceMetadata.php b/app/code/Magento/Webapi/Model/ServiceMetadata.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Model/Soap/Config.php b/app/code/Magento/Webapi/Model/Soap/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Model/Soap/Fault.php b/app/code/Magento/Webapi/Model/Soap/Fault.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Model/Soap/Server.php b/app/code/Magento/Webapi/Model/Soap/Server.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Model/Soap/ServerFactory.php b/app/code/Magento/Webapi/Model/Soap/ServerFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Model/Soap/Wsdl.php b/app/code/Magento/Webapi/Model/Soap/Wsdl.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Model/Soap/Wsdl/ComplexTypeStrategy.php b/app/code/Magento/Webapi/Model/Soap/Wsdl/ComplexTypeStrategy.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Model/Soap/Wsdl/Generator.php b/app/code/Magento/Webapi/Model/Soap/Wsdl/Generator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Model/Soap/WsdlFactory.php b/app/code/Magento/Webapi/Model/Soap/WsdlFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Model/UrlDecoder.php b/app/code/Magento/Webapi/Model/UrlDecoder.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Model/WebapiRoleLocator.php b/app/code/Magento/Webapi/Model/WebapiRoleLocator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/README.md b/app/code/Magento/Webapi/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Test/Unit/Controller/PathProcessorTest.php b/app/code/Magento/Webapi/Test/Unit/Controller/PathProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Test/Unit/Controller/Rest/ParamOverriderCustomerIdTest.php b/app/code/Magento/Webapi/Test/Unit/Controller/Rest/ParamOverriderCustomerIdTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Test/Unit/Controller/Rest/ParamsOverriderTest.php b/app/code/Magento/Webapi/Test/Unit/Controller/Rest/ParamsOverriderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Test/Unit/Controller/Rest/RequestValidatorTest.php b/app/code/Magento/Webapi/Test/Unit/Controller/Rest/RequestValidatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Test/Unit/Controller/Rest/Router/RouteTest.php b/app/code/Magento/Webapi/Test/Unit/Controller/Rest/Router/RouteTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Test/Unit/Controller/Rest/RouterTest.php b/app/code/Magento/Webapi/Test/Unit/Controller/Rest/RouterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Test/Unit/Controller/RestTest.php b/app/code/Magento/Webapi/Test/Unit/Controller/RestTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Test/Unit/Controller/Soap/Request/HandlerTest.php b/app/code/Magento/Webapi/Test/Unit/Controller/Soap/Request/HandlerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Test/Unit/Controller/SoapTest.php b/app/code/Magento/Webapi/Test/Unit/Controller/SoapTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Test/Unit/ExceptionTest.php b/app/code/Magento/Webapi/Test/Unit/ExceptionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Test/Unit/Model/Authorization/GuestUserContextTest.php b/app/code/Magento/Webapi/Test/Unit/Model/Authorization/GuestUserContextTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Test/Unit/Model/Authorization/OauthUserContextTest.php b/app/code/Magento/Webapi/Test/Unit/Model/Authorization/OauthUserContextTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Test/Unit/Model/Authorization/TokenUserContextTest.php b/app/code/Magento/Webapi/Test/Unit/Model/Authorization/TokenUserContextTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Test/Unit/Model/Config/ClassReflectorTest.php b/app/code/Magento/Webapi/Test/Unit/Model/Config/ClassReflectorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Test/Unit/Model/Config/ConverterTest.php b/app/code/Magento/Webapi/Test/Unit/Model/Config/ConverterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Test/Unit/Model/Config/TestServiceForClassReflector.php b/app/code/Magento/Webapi/Test/Unit/Model/Config/TestServiceForClassReflector.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Test/Unit/Model/Config/_files/webapi.php b/app/code/Magento/Webapi/Test/Unit/Model/Config/_files/webapi.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Test/Unit/Model/Config/_files/webapi.xml b/app/code/Magento/Webapi/Test/Unit/Model/Config/_files/webapi.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Test/Unit/Model/ConfigTest.php b/app/code/Magento/Webapi/Test/Unit/Model/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Test/Unit/Model/DataObjectProcessorTest.php b/app/code/Magento/Webapi/Test/Unit/Model/DataObjectProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Test/Unit/Model/Plugin/ManagerTest.php b/app/code/Magento/Webapi/Test/Unit/Model/Plugin/ManagerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Test/Unit/Model/Rest/Swagger/GeneratorTest.php b/app/code/Magento/Webapi/Test/Unit/Model/Rest/Swagger/GeneratorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Test/Unit/Model/ServiceMetadataTest.php b/app/code/Magento/Webapi/Test/Unit/Model/ServiceMetadataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Test/Unit/Model/Soap/FaultTest.php b/app/code/Magento/Webapi/Test/Unit/Model/Soap/FaultTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Test/Unit/Model/Soap/ServerTest.php b/app/code/Magento/Webapi/Test/Unit/Model/Soap/ServerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Test/Unit/Model/Soap/Wsdl/ComplexTypeStrategyTest.php b/app/code/Magento/Webapi/Test/Unit/Model/Soap/Wsdl/ComplexTypeStrategyTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Test/Unit/Model/Soap/Wsdl/GeneratorTest.php b/app/code/Magento/Webapi/Test/Unit/Model/Soap/Wsdl/GeneratorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Test/Unit/Model/Soap/WsdlFactoryTest.php b/app/code/Magento/Webapi/Test/Unit/Model/Soap/WsdlFactoryTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Test/Unit/Model/WebapiRoleLocatorTest.php b/app/code/Magento/Webapi/Test/Unit/Model/WebapiRoleLocatorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Test/Unit/Model/_files/acl.php b/app/code/Magento/Webapi/Test/Unit/Model/_files/acl.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Test/Unit/Model/_files/acl.xml b/app/code/Magento/Webapi/Test/Unit/Model/_files/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Test/Unit/Model/_files/acl.xsd b/app/code/Magento/Webapi/Test/Unit/Model/_files/acl.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/Test/Unit/_files/soap_fault/soap_fault_expected_xmls.php b/app/code/Magento/Webapi/Test/Unit/_files/soap_fault/soap_fault_expected_xmls.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/composer.json b/app/code/Magento/Webapi/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/etc/adminhtml/system.xml b/app/code/Magento/Webapi/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/etc/cache.xml b/app/code/Magento/Webapi/etc/cache.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/etc/di.xml b/app/code/Magento/Webapi/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/etc/frontend/routes.xml b/app/code/Magento/Webapi/etc/frontend/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/etc/module.xml b/app/code/Magento/Webapi/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/etc/webapi.xsd b/app/code/Magento/Webapi/etc/webapi.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/etc/webapi_rest/di.xml b/app/code/Magento/Webapi/etc/webapi_rest/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/etc/webapi_soap/di.xml b/app/code/Magento/Webapi/etc/webapi_soap/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/i18n/en_US.csv b/app/code/Magento/Webapi/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/registration.php b/app/code/Magento/Webapi/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/view/adminhtml/layout/adminhtml_integration_edit.xml b/app/code/Magento/Webapi/view/adminhtml/layout/adminhtml_integration_edit.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Webapi/view/adminhtml/layout/adminhtml_integration_permissionsdialog.xml b/app/code/Magento/Webapi/view/adminhtml/layout/adminhtml_integration_permissionsdialog.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/WebapiSecurity/LICENSE.txt b/app/code/Magento/WebapiSecurity/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/WebapiSecurity/LICENSE_AFL.txt b/app/code/Magento/WebapiSecurity/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/WebapiSecurity/Model/Plugin/AnonymousResourceSecurity.php b/app/code/Magento/WebapiSecurity/Model/Plugin/AnonymousResourceSecurity.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/WebapiSecurity/Model/Plugin/CacheInvalidator.php b/app/code/Magento/WebapiSecurity/Model/Plugin/CacheInvalidator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/WebapiSecurity/README.md b/app/code/Magento/WebapiSecurity/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/WebapiSecurity/composer.json b/app/code/Magento/WebapiSecurity/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/WebapiSecurity/etc/adminhtml/system.xml b/app/code/Magento/WebapiSecurity/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/WebapiSecurity/etc/config.xml b/app/code/Magento/WebapiSecurity/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/WebapiSecurity/etc/di.xml b/app/code/Magento/WebapiSecurity/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/WebapiSecurity/etc/module.xml b/app/code/Magento/WebapiSecurity/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/WebapiSecurity/i18n/en_US.csv b/app/code/Magento/WebapiSecurity/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/WebapiSecurity/registration.php b/app/code/Magento/WebapiSecurity/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Api/Data/ProductRender/WeeeAdjustmentAttributeInterface.php b/app/code/Magento/Weee/Api/Data/ProductRender/WeeeAdjustmentAttributeInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Block/Adminhtml/Items/Price/Renderer.php b/app/code/Magento/Weee/Block/Adminhtml/Items/Price/Renderer.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Block/Element/Weee/Tax.php b/app/code/Magento/Weee/Block/Element/Weee/Tax.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Block/Renderer/Weee/Tax.php b/app/code/Magento/Weee/Block/Renderer/Weee/Tax.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Block/Sales/Order/Totals.php b/app/code/Magento/Weee/Block/Sales/Order/Totals.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Helper/Data.php b/app/code/Magento/Weee/Helper/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/LICENSE.txt b/app/code/Magento/Weee/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/LICENSE_AFL.txt b/app/code/Magento/Weee/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Model/App/Action/ContextPlugin.php b/app/code/Magento/Weee/Model/App/Action/ContextPlugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Model/Attribute/Backend/Weee/Tax.php b/app/code/Magento/Weee/Model/Attribute/Backend/Weee/Tax.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Model/Config.php b/app/code/Magento/Weee/Model/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Model/Config/Source/Display.php b/app/code/Magento/Weee/Model/Config/Source/Display.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Model/ProductRender/WeeeAdjustmentAttribute.php b/app/code/Magento/Weee/Model/ProductRender/WeeeAdjustmentAttribute.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Model/ResourceModel/Attribute/Backend/Weee/Tax.php b/app/code/Magento/Weee/Model/ResourceModel/Attribute/Backend/Weee/Tax.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Model/ResourceModel/Tax.php b/app/code/Magento/Weee/Model/ResourceModel/Tax.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Model/Sales/Pdf/Weee.php b/app/code/Magento/Weee/Model/Sales/Pdf/Weee.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Model/Tax.php b/app/code/Magento/Weee/Model/Tax.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Model/Total/Creditmemo/Weee.php b/app/code/Magento/Weee/Model/Total/Creditmemo/Weee.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Model/Total/Invoice/Weee.php b/app/code/Magento/Weee/Model/Total/Invoice/Weee.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Model/Total/Quote/Weee.php b/app/code/Magento/Weee/Model/Total/Quote/Weee.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Model/Total/Quote/WeeeTax.php b/app/code/Magento/Weee/Model/Total/Quote/WeeeTax.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Model/WeeeConfigProvider.php b/app/code/Magento/Weee/Model/WeeeConfigProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Observer/AddPaymentWeeeItem.php b/app/code/Magento/Weee/Observer/AddPaymentWeeeItem.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Observer/AddWeeeTaxAttributeTypeObserver.php b/app/code/Magento/Weee/Observer/AddWeeeTaxAttributeTypeObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Observer/AfterAddressSave.php b/app/code/Magento/Weee/Observer/AfterAddressSave.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Observer/AssignBackendModelToAttributeObserver.php b/app/code/Magento/Weee/Observer/AssignBackendModelToAttributeObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Observer/CustomerLoggedIn.php b/app/code/Magento/Weee/Observer/CustomerLoggedIn.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Observer/GetPriceConfigurationObserver.php b/app/code/Magento/Weee/Observer/GetPriceConfigurationObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Observer/SetWeeeRendererInFormObserver.php b/app/code/Magento/Weee/Observer/SetWeeeRendererInFormObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Observer/UpdateElementTypesObserver.php b/app/code/Magento/Weee/Observer/UpdateElementTypesObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Observer/UpdateExcludedFieldListObserver.php b/app/code/Magento/Weee/Observer/UpdateExcludedFieldListObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Observer/UpdateProductOptionsObserver.php b/app/code/Magento/Weee/Observer/UpdateProductOptionsObserver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Plugin/Checkout/CustomerData/Cart.php b/app/code/Magento/Weee/Plugin/Checkout/CustomerData/Cart.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Plugin/Ui/DataProvider/WeeeSettings.php b/app/code/Magento/Weee/Plugin/Ui/DataProvider/WeeeSettings.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Pricing/Adjustment.php b/app/code/Magento/Weee/Pricing/Adjustment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Pricing/Render/Adjustment.php b/app/code/Magento/Weee/Pricing/Render/Adjustment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Pricing/Render/TaxAdjustment.php b/app/code/Magento/Weee/Pricing/Render/TaxAdjustment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Pricing/TaxAdjustment.php b/app/code/Magento/Weee/Pricing/TaxAdjustment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/README.md b/app/code/Magento/Weee/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Setup/InstallData.php b/app/code/Magento/Weee/Setup/InstallData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Setup/InstallSchema.php b/app/code/Magento/Weee/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Setup/Recurring.php b/app/code/Magento/Weee/Setup/Recurring.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Test/Unit/App/Action/ContextPluginTest.php b/app/code/Magento/Weee/Test/Unit/App/Action/ContextPluginTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Test/Unit/Block/Element/Weee/TaxTest.php b/app/code/Magento/Weee/Test/Unit/Block/Element/Weee/TaxTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Test/Unit/Block/Item/Price/RendererTest.php b/app/code/Magento/Weee/Test/Unit/Block/Item/Price/RendererTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Test/Unit/Helper/DataTest.php b/app/code/Magento/Weee/Test/Unit/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Test/Unit/Model/Attribute/Backend/Weee/TaxTest.php b/app/code/Magento/Weee/Test/Unit/Model/Attribute/Backend/Weee/TaxTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Test/Unit/Model/ConfigTest.php b/app/code/Magento/Weee/Test/Unit/Model/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Test/Unit/Model/ResourceModel/Attribute/Backend/Weee/TaxTest.php b/app/code/Magento/Weee/Test/Unit/Model/ResourceModel/Attribute/Backend/Weee/TaxTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Test/Unit/Model/ResourceModel/TaxTest.php b/app/code/Magento/Weee/Test/Unit/Model/ResourceModel/TaxTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Test/Unit/Model/TaxTest.php b/app/code/Magento/Weee/Test/Unit/Model/TaxTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Test/Unit/Model/Total/Creditmemo/WeeeTest.php b/app/code/Magento/Weee/Test/Unit/Model/Total/Creditmemo/WeeeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Test/Unit/Model/Total/Invoice/WeeeTest.php b/app/code/Magento/Weee/Test/Unit/Model/Total/Invoice/WeeeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Test/Unit/Model/Total/Quote/WeeeTaxTest.php b/app/code/Magento/Weee/Test/Unit/Model/Total/Quote/WeeeTaxTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Test/Unit/Model/Total/Quote/WeeeTest.php b/app/code/Magento/Weee/Test/Unit/Model/Total/Quote/WeeeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Test/Unit/Model/WeeeConfigProviderTest.php b/app/code/Magento/Weee/Test/Unit/Model/WeeeConfigProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Test/Unit/Observer/AfterAddressSaveTest.php b/app/code/Magento/Weee/Test/Unit/Observer/AfterAddressSaveTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Test/Unit/Observer/CustomerLoggedInTest.php b/app/code/Magento/Weee/Test/Unit/Observer/CustomerLoggedInTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Test/Unit/Observer/GetPriceConfigurationObserverTest.php b/app/code/Magento/Weee/Test/Unit/Observer/GetPriceConfigurationObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Test/Unit/Observer/UpdateProductOptionsObserverTest.php b/app/code/Magento/Weee/Test/Unit/Observer/UpdateProductOptionsObserverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Test/Unit/Pricing/AdjustmentTest.php b/app/code/Magento/Weee/Test/Unit/Pricing/AdjustmentTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Test/Unit/Pricing/Render/AdjustmentTest.php b/app/code/Magento/Weee/Test/Unit/Pricing/Render/AdjustmentTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Test/Unit/Pricing/Render/TaxAdjustmentTest.php b/app/code/Magento/Weee/Test/Unit/Pricing/Render/TaxAdjustmentTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Test/Unit/Pricing/TaxAdjustmentTest.php b/app/code/Magento/Weee/Test/Unit/Pricing/TaxAdjustmentTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Test/Unit/Ui/DataProvider/Product/Form/Modifier/Manager/WebsiteTest.php b/app/code/Magento/Weee/Test/Unit/Ui/DataProvider/Product/Form/Modifier/Manager/WebsiteTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Test/Unit/Ui/DataProvider/Product/Form/Modifier/WeeeTest.php b/app/code/Magento/Weee/Test/Unit/Ui/DataProvider/Product/Form/Modifier/WeeeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Test/Unit/Ui/DataProvider/Product/Listing/Collector/WeeeTest.php b/app/code/Magento/Weee/Test/Unit/Ui/DataProvider/Product/Listing/Collector/WeeeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Ui/DataProvider/Product/Form/Modifier/Manager/Website.php b/app/code/Magento/Weee/Ui/DataProvider/Product/Form/Modifier/Manager/Website.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Ui/DataProvider/Product/Form/Modifier/Weee.php b/app/code/Magento/Weee/Ui/DataProvider/Product/Form/Modifier/Weee.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/Ui/DataProvider/Product/Listing/Collector/Weee.php b/app/code/Magento/Weee/Ui/DataProvider/Product/Listing/Collector/Weee.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/composer.json b/app/code/Magento/Weee/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/etc/adminhtml/di.xml b/app/code/Magento/Weee/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/etc/adminhtml/events.xml b/app/code/Magento/Weee/etc/adminhtml/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/etc/adminhtml/system.xml b/app/code/Magento/Weee/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/etc/config.xml b/app/code/Magento/Weee/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/etc/di.xml b/app/code/Magento/Weee/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/etc/events.xml b/app/code/Magento/Weee/etc/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/etc/extension_attributes.xml b/app/code/Magento/Weee/etc/extension_attributes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/etc/fieldset.xml b/app/code/Magento/Weee/etc/fieldset.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/etc/frontend/di.xml b/app/code/Magento/Weee/etc/frontend/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/etc/frontend/events.xml b/app/code/Magento/Weee/etc/frontend/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/etc/module.xml b/app/code/Magento/Weee/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/etc/pdf.xml b/app/code/Magento/Weee/etc/pdf.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/etc/sales.xml b/app/code/Magento/Weee/etc/sales.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/i18n/en_US.csv b/app/code/Magento/Weee/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/registration.php b/app/code/Magento/Weee/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/adminhtml/layout/catalog_product_form.xml b/app/code/Magento/Weee/view/adminhtml/layout/catalog_product_form.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/adminhtml/layout/sales_creditmemo_item_price.xml b/app/code/Magento/Weee/view/adminhtml/layout/sales_creditmemo_item_price.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/adminhtml/layout/sales_invoice_item_price.xml b/app/code/Magento/Weee/view/adminhtml/layout/sales_invoice_item_price.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/adminhtml/layout/sales_order_create_item_price.xml b/app/code/Magento/Weee/view/adminhtml/layout/sales_order_create_item_price.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/adminhtml/layout/sales_order_creditmemo_new.xml b/app/code/Magento/Weee/view/adminhtml/layout/sales_order_creditmemo_new.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/adminhtml/layout/sales_order_creditmemo_updateqty.xml b/app/code/Magento/Weee/view/adminhtml/layout/sales_order_creditmemo_updateqty.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/adminhtml/layout/sales_order_creditmemo_view.xml b/app/code/Magento/Weee/view/adminhtml/layout/sales_order_creditmemo_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/adminhtml/layout/sales_order_invoice_new.xml b/app/code/Magento/Weee/view/adminhtml/layout/sales_order_invoice_new.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/adminhtml/layout/sales_order_invoice_updateqty.xml b/app/code/Magento/Weee/view/adminhtml/layout/sales_order_invoice_updateqty.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/adminhtml/layout/sales_order_invoice_view.xml b/app/code/Magento/Weee/view/adminhtml/layout/sales_order_invoice_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/adminhtml/layout/sales_order_item_price.xml b/app/code/Magento/Weee/view/adminhtml/layout/sales_order_item_price.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/adminhtml/layout/sales_order_view.xml b/app/code/Magento/Weee/view/adminhtml/layout/sales_order_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/adminhtml/requirejs-config.js b/app/code/Magento/Weee/view/adminhtml/requirejs-config.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/adminhtml/templates/items/price/row.phtml b/app/code/Magento/Weee/view/adminhtml/templates/items/price/row.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/adminhtml/templates/items/price/total.phtml b/app/code/Magento/Weee/view/adminhtml/templates/items/price/total.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/adminhtml/templates/items/price/unit.phtml b/app/code/Magento/Weee/view/adminhtml/templates/items/price/unit.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/adminhtml/templates/order/create/items/price/row.phtml b/app/code/Magento/Weee/view/adminhtml/templates/order/create/items/price/row.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/adminhtml/templates/order/create/items/price/total.phtml b/app/code/Magento/Weee/view/adminhtml/templates/order/create/items/price/total.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/adminhtml/templates/order/create/items/price/unit.phtml b/app/code/Magento/Weee/view/adminhtml/templates/order/create/items/price/unit.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/adminhtml/templates/renderer/tax.phtml b/app/code/Magento/Weee/view/adminhtml/templates/renderer/tax.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/adminhtml/ui_component/product_attribute_add_form.xml b/app/code/Magento/Weee/view/adminhtml/ui_component/product_attribute_add_form.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/adminhtml/web/js/fpt-attribute.js b/app/code/Magento/Weee/view/adminhtml/web/js/fpt-attribute.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/adminhtml/web/js/fpt-group.js b/app/code/Magento/Weee/view/adminhtml/web/js/fpt-group.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/adminhtml/web/js/regions-tax-select.js b/app/code/Magento/Weee/view/adminhtml/web/js/regions-tax-select.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/adminhtml/web/styles.css b/app/code/Magento/Weee/view/adminhtml/web/styles.css
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/base/layout/catalog_product_prices.xml b/app/code/Magento/Weee/view/base/layout/catalog_product_prices.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/base/templates/pricing/adjustment.phtml b/app/code/Magento/Weee/view/base/templates/pricing/adjustment.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/base/web/js/price/adjustment.js b/app/code/Magento/Weee/view/base/web/js/price/adjustment.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/base/web/template/price/adjustment.html b/app/code/Magento/Weee/view/base/web/template/price/adjustment.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/frontend/layout/checkout_cart_index.xml b/app/code/Magento/Weee/view/frontend/layout/checkout_cart_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/frontend/layout/checkout_index_index.xml b/app/code/Magento/Weee/view/frontend/layout/checkout_index_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/frontend/layout/checkout_item_price_renderers.xml b/app/code/Magento/Weee/view/frontend/layout/checkout_item_price_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/frontend/layout/default.xml b/app/code/Magento/Weee/view/frontend/layout/default.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/frontend/layout/sales_email_item_price.xml b/app/code/Magento/Weee/view/frontend/layout/sales_email_item_price.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/frontend/layout/sales_email_order_creditmemo_items.xml b/app/code/Magento/Weee/view/frontend/layout/sales_email_order_creditmemo_items.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/frontend/layout/sales_email_order_invoice_items.xml b/app/code/Magento/Weee/view/frontend/layout/sales_email_order_invoice_items.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/frontend/layout/sales_email_order_items.xml b/app/code/Magento/Weee/view/frontend/layout/sales_email_order_items.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/frontend/layout/sales_guest_creditmemo.xml b/app/code/Magento/Weee/view/frontend/layout/sales_guest_creditmemo.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/frontend/layout/sales_guest_invoice.xml b/app/code/Magento/Weee/view/frontend/layout/sales_guest_invoice.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/frontend/layout/sales_guest_print.xml b/app/code/Magento/Weee/view/frontend/layout/sales_guest_print.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/frontend/layout/sales_guest_printcreditmemo.xml b/app/code/Magento/Weee/view/frontend/layout/sales_guest_printcreditmemo.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/frontend/layout/sales_guest_printinvoice.xml b/app/code/Magento/Weee/view/frontend/layout/sales_guest_printinvoice.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/frontend/layout/sales_guest_view.xml b/app/code/Magento/Weee/view/frontend/layout/sales_guest_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/frontend/layout/sales_order_creditmemo.xml b/app/code/Magento/Weee/view/frontend/layout/sales_order_creditmemo.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/frontend/layout/sales_order_invoice.xml b/app/code/Magento/Weee/view/frontend/layout/sales_order_invoice.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/frontend/layout/sales_order_item_price.xml b/app/code/Magento/Weee/view/frontend/layout/sales_order_item_price.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/frontend/layout/sales_order_print.xml b/app/code/Magento/Weee/view/frontend/layout/sales_order_print.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/frontend/layout/sales_order_printcreditmemo.xml b/app/code/Magento/Weee/view/frontend/layout/sales_order_printcreditmemo.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/frontend/layout/sales_order_printinvoice.xml b/app/code/Magento/Weee/view/frontend/layout/sales_order_printinvoice.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/frontend/layout/sales_order_view.xml b/app/code/Magento/Weee/view/frontend/layout/sales_order_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/frontend/requirejs-config.js b/app/code/Magento/Weee/view/frontend/requirejs-config.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/frontend/templates/checkout/cart/item/price/sidebar.phtml b/app/code/Magento/Weee/view/frontend/templates/checkout/cart/item/price/sidebar.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/frontend/templates/checkout/onepage/review/item/price/row_excl_tax.phtml b/app/code/Magento/Weee/view/frontend/templates/checkout/onepage/review/item/price/row_excl_tax.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/frontend/templates/checkout/onepage/review/item/price/row_incl_tax.phtml b/app/code/Magento/Weee/view/frontend/templates/checkout/onepage/review/item/price/row_incl_tax.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/frontend/templates/checkout/onepage/review/item/price/unit_excl_tax.phtml b/app/code/Magento/Weee/view/frontend/templates/checkout/onepage/review/item/price/unit_excl_tax.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/frontend/templates/checkout/onepage/review/item/price/unit_incl_tax.phtml b/app/code/Magento/Weee/view/frontend/templates/checkout/onepage/review/item/price/unit_incl_tax.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/frontend/templates/email/items/price/row.phtml b/app/code/Magento/Weee/view/frontend/templates/email/items/price/row.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/frontend/templates/item/price/row.phtml b/app/code/Magento/Weee/view/frontend/templates/item/price/row.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/frontend/templates/item/price/total_after_discount.phtml b/app/code/Magento/Weee/view/frontend/templates/item/price/total_after_discount.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/frontend/templates/item/price/unit.phtml b/app/code/Magento/Weee/view/frontend/templates/item/price/unit.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/frontend/ui_component/widget_recently_compared.xml b/app/code/Magento/Weee/view/frontend/ui_component/widget_recently_compared.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/frontend/ui_component/widget_recently_viewed.xml b/app/code/Magento/Weee/view/frontend/ui_component/widget_recently_viewed.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/frontend/web/js/view/cart/totals/weee.js b/app/code/Magento/Weee/view/frontend/web/js/view/cart/totals/weee.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/frontend/web/js/view/checkout/summary/item/price/row_excl_tax.js b/app/code/Magento/Weee/view/frontend/web/js/view/checkout/summary/item/price/row_excl_tax.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/frontend/web/js/view/checkout/summary/item/price/row_incl_tax.js b/app/code/Magento/Weee/view/frontend/web/js/view/checkout/summary/item/price/row_incl_tax.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/frontend/web/js/view/checkout/summary/item/price/weee.js b/app/code/Magento/Weee/view/frontend/web/js/view/checkout/summary/item/price/weee.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/frontend/web/js/view/checkout/summary/weee.js b/app/code/Magento/Weee/view/frontend/web/js/view/checkout/summary/weee.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/frontend/web/tax-toggle.js b/app/code/Magento/Weee/view/frontend/web/tax-toggle.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/frontend/web/template/checkout/summary/item/price/row_excl_tax.html b/app/code/Magento/Weee/view/frontend/web/template/checkout/summary/item/price/row_excl_tax.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/frontend/web/template/checkout/summary/item/price/row_incl_tax.html b/app/code/Magento/Weee/view/frontend/web/template/checkout/summary/item/price/row_incl_tax.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Weee/view/frontend/web/template/checkout/summary/weee.html b/app/code/Magento/Weee/view/frontend/web/template/checkout/summary/weee.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Block/Adminhtml/Widget.php b/app/code/Magento/Widget/Block/Adminhtml/Widget.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Block/Adminhtml/Widget/Catalog/Category/Chooser.php b/app/code/Magento/Widget/Block/Adminhtml/Widget/Catalog/Category/Chooser.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Block/Adminhtml/Widget/Chooser.php b/app/code/Magento/Widget/Block/Adminhtml/Widget/Chooser.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Block/Adminhtml/Widget/Form.php b/app/code/Magento/Widget/Block/Adminhtml/Widget/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Block/Adminhtml/Widget/Instance.php b/app/code/Magento/Widget/Block/Adminhtml/Widget/Instance.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit.php b/app/code/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/Container.php b/app/code/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/Container.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/DesignAbstraction.php b/app/code/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/DesignAbstraction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/Layout.php b/app/code/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/Layout.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/Template.php b/app/code/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/Template.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Form.php b/app/code/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Form.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Tab/Main.php b/app/code/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Tab/Main.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Tab/Main/Layout.php b/app/code/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Tab/Main/Layout.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Tab/Properties.php b/app/code/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Tab/Properties.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Tab/Settings.php b/app/code/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Tab/Settings.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Tabs.php b/app/code/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Tabs.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Block/Adminhtml/Widget/Options.php b/app/code/Magento/Widget/Block/Adminhtml/Widget/Options.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Block/BlockInterface.php b/app/code/Magento/Widget/Block/BlockInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Controller/Adminhtml/Widget/BuildWidget.php b/app/code/Magento/Widget/Controller/Adminhtml/Widget/BuildWidget.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Controller/Adminhtml/Widget/Index.php b/app/code/Magento/Widget/Controller/Adminhtml/Widget/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Controller/Adminhtml/Widget/Instance.php b/app/code/Magento/Widget/Controller/Adminhtml/Widget/Instance.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Controller/Adminhtml/Widget/Instance/Blocks.php b/app/code/Magento/Widget/Controller/Adminhtml/Widget/Instance/Blocks.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Controller/Adminhtml/Widget/Instance/Categories.php b/app/code/Magento/Widget/Controller/Adminhtml/Widget/Instance/Categories.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Controller/Adminhtml/Widget/Instance/Delete.php b/app/code/Magento/Widget/Controller/Adminhtml/Widget/Instance/Delete.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Controller/Adminhtml/Widget/Instance/Edit.php b/app/code/Magento/Widget/Controller/Adminhtml/Widget/Instance/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Controller/Adminhtml/Widget/Instance/Index.php b/app/code/Magento/Widget/Controller/Adminhtml/Widget/Instance/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Controller/Adminhtml/Widget/Instance/NewAction.php b/app/code/Magento/Widget/Controller/Adminhtml/Widget/Instance/NewAction.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Controller/Adminhtml/Widget/Instance/Products.php b/app/code/Magento/Widget/Controller/Adminhtml/Widget/Instance/Products.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Controller/Adminhtml/Widget/Instance/Save.php b/app/code/Magento/Widget/Controller/Adminhtml/Widget/Instance/Save.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Controller/Adminhtml/Widget/Instance/Template.php b/app/code/Magento/Widget/Controller/Adminhtml/Widget/Instance/Template.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Controller/Adminhtml/Widget/Instance/Validate.php b/app/code/Magento/Widget/Controller/Adminhtml/Widget/Instance/Validate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Controller/Adminhtml/Widget/LoadOptions.php b/app/code/Magento/Widget/Controller/Adminhtml/Widget/LoadOptions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Helper/Conditions.php b/app/code/Magento/Widget/Helper/Conditions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/LICENSE.txt b/app/code/Magento/Widget/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/LICENSE_AFL.txt b/app/code/Magento/Widget/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Model/Config/Converter.php b/app/code/Magento/Widget/Model/Config/Converter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Model/Config/Data.php b/app/code/Magento/Widget/Model/Config/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Model/Config/FileResolver.php b/app/code/Magento/Widget/Model/Config/FileResolver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Model/Config/Reader.php b/app/code/Magento/Widget/Model/Config/Reader.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Model/Config/SchemaLocator.php b/app/code/Magento/Widget/Model/Config/SchemaLocator.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Model/Layout/Link.php b/app/code/Magento/Widget/Model/Layout/Link.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Model/Layout/Update.php b/app/code/Magento/Widget/Model/Layout/Update.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Model/NamespaceResolver.php b/app/code/Magento/Widget/Model/NamespaceResolver.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Model/ResourceModel/Layout/Link.php b/app/code/Magento/Widget/Model/ResourceModel/Layout/Link.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Model/ResourceModel/Layout/Link/Collection.php b/app/code/Magento/Widget/Model/ResourceModel/Layout/Link/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Model/ResourceModel/Layout/Plugin.php b/app/code/Magento/Widget/Model/ResourceModel/Layout/Plugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Model/ResourceModel/Layout/Update.php b/app/code/Magento/Widget/Model/ResourceModel/Layout/Update.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Model/ResourceModel/Layout/Update/Collection.php b/app/code/Magento/Widget/Model/ResourceModel/Layout/Update/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Model/ResourceModel/Widget.php b/app/code/Magento/Widget/Model/ResourceModel/Widget.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Model/ResourceModel/Widget/Instance.php b/app/code/Magento/Widget/Model/ResourceModel/Widget/Instance.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Model/ResourceModel/Widget/Instance/Collection.php b/app/code/Magento/Widget/Model/ResourceModel/Widget/Instance/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Model/ResourceModel/Widget/Instance/Options/ThemeId.php b/app/code/Magento/Widget/Model/ResourceModel/Widget/Instance/Options/ThemeId.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Model/ResourceModel/Widget/Instance/Options/Themes.php b/app/code/Magento/Widget/Model/ResourceModel/Widget/Instance/Options/Themes.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Model/ResourceModel/Widget/Instance/Options/Types.php b/app/code/Magento/Widget/Model/ResourceModel/Widget/Instance/Options/Types.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Model/Template/Filter.php b/app/code/Magento/Widget/Model/Template/Filter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Model/Template/FilterEmulate.php b/app/code/Magento/Widget/Model/Template/FilterEmulate.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Model/Widget.php b/app/code/Magento/Widget/Model/Widget.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Model/Widget/Config.php b/app/code/Magento/Widget/Model/Widget/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Model/Widget/Instance.php b/app/code/Magento/Widget/Model/Widget/Instance.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Model/Widget/Instance/OptionsFactory.php b/app/code/Magento/Widget/Model/Widget/Instance/OptionsFactory.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/README.md b/app/code/Magento/Widget/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Setup/InstallData.php b/app/code/Magento/Widget/Setup/InstallData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Setup/InstallSchema.php b/app/code/Magento/Widget/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Setup/LayoutUpdateConverter.php b/app/code/Magento/Widget/Setup/LayoutUpdateConverter.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Setup/UpgradeData.php b/app/code/Magento/Widget/Setup/UpgradeData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Test/Unit/Block/Adminhtml/Widget/Catalog/Category/ChooserTest.php b/app/code/Magento/Widget/Test/Unit/Block/Adminhtml/Widget/Catalog/Category/ChooserTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Test/Unit/Block/Adminhtml/Widget/Instance/Edit/Chooser/AbstractContainerTest.php b/app/code/Magento/Widget/Test/Unit/Block/Adminhtml/Widget/Instance/Edit/Chooser/AbstractContainerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Test/Unit/Block/Adminhtml/Widget/Instance/Edit/Chooser/ContainerTest.php b/app/code/Magento/Widget/Test/Unit/Block/Adminhtml/Widget/Instance/Edit/Chooser/ContainerTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Test/Unit/Block/Adminhtml/Widget/Instance/Edit/Tab/PropertiesTest.php b/app/code/Magento/Widget/Test/Unit/Block/Adminhtml/Widget/Instance/Edit/Tab/PropertiesTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Test/Unit/Controller/Adminhtml/Widget/Instance/CategoriesTest.php b/app/code/Magento/Widget/Test/Unit/Controller/Adminhtml/Widget/Instance/CategoriesTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Test/Unit/Controller/Adminhtml/Widget/LoadOptionsTest.php b/app/code/Magento/Widget/Test/Unit/Controller/Adminhtml/Widget/LoadOptionsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Test/Unit/Helper/ConditionsTest.php b/app/code/Magento/Widget/Test/Unit/Helper/ConditionsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Test/Unit/Model/Config/ConverterTest.php b/app/code/Magento/Widget/Test/Unit/Model/Config/ConverterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Test/Unit/Model/Config/FileResolverTest.php b/app/code/Magento/Widget/Test/Unit/Model/Config/FileResolverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Test/Unit/Model/NamespaceResolverTest.php b/app/code/Magento/Widget/Test/Unit/Model/NamespaceResolverTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Test/Unit/Model/ResourceModel/Layout/AbstractTestCase.php b/app/code/Magento/Widget/Test/Unit/Model/ResourceModel/Layout/AbstractTestCase.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Test/Unit/Model/ResourceModel/Layout/Link/CollectionTest.php b/app/code/Magento/Widget/Test/Unit/Model/ResourceModel/Layout/Link/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Test/Unit/Model/ResourceModel/Layout/Update/CollectionTest.php b/app/code/Magento/Widget/Test/Unit/Model/ResourceModel/Layout/Update/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Test/Unit/Model/ResourceModel/Widget/Instance/Options/ThemesTest.php b/app/code/Magento/Widget/Test/Unit/Model/ResourceModel/Widget/Instance/Options/ThemesTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Test/Unit/Model/Template/FilterEmulateTest.php b/app/code/Magento/Widget/Test/Unit/Model/Template/FilterEmulateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Test/Unit/Model/Template/FilterTest.php b/app/code/Magento/Widget/Test/Unit/Model/Template/FilterTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Test/Unit/Model/Widget/InstanceTest.php b/app/code/Magento/Widget/Test/Unit/Model/Widget/InstanceTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Test/Unit/Model/WidgetTest.php b/app/code/Magento/Widget/Test/Unit/Model/WidgetTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Test/Unit/Model/_files/mappedConfigArray1.php b/app/code/Magento/Widget/Test/Unit/Model/_files/mappedConfigArray1.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Test/Unit/Model/_files/mappedConfigArray2.php b/app/code/Magento/Widget/Test/Unit/Model/_files/mappedConfigArray2.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Test/Unit/Model/_files/mappedConfigArrayAll.php b/app/code/Magento/Widget/Test/Unit/Model/_files/mappedConfigArrayAll.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Test/Unit/Model/_files/widget.xml b/app/code/Magento/Widget/Test/Unit/Model/_files/widget.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/Test/Unit/Model/_files/widget_config.php b/app/code/Magento/Widget/Test/Unit/Model/_files/widget_config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/composer.json b/app/code/Magento/Widget/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/etc/acl.xml b/app/code/Magento/Widget/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/etc/adminhtml/di.xml b/app/code/Magento/Widget/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/etc/adminhtml/menu.xml b/app/code/Magento/Widget/etc/adminhtml/menu.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/etc/adminhtml/routes.xml b/app/code/Magento/Widget/etc/adminhtml/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/etc/di.xml b/app/code/Magento/Widget/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/etc/module.xml b/app/code/Magento/Widget/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/etc/types.xsd b/app/code/Magento/Widget/etc/types.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/etc/widget.xsd b/app/code/Magento/Widget/etc/widget.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/etc/widget_file.xsd b/app/code/Magento/Widget/etc/widget_file.xsd
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/i18n/en_US.csv b/app/code/Magento/Widget/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/registration.php b/app/code/Magento/Widget/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/view/adminhtml/layout/adminhtml_widget_index.xml b/app/code/Magento/Widget/view/adminhtml/layout/adminhtml_widget_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/view/adminhtml/layout/adminhtml_widget_instance_block.xml b/app/code/Magento/Widget/view/adminhtml/layout/adminhtml_widget_instance_block.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/view/adminhtml/layout/adminhtml_widget_instance_edit.xml b/app/code/Magento/Widget/view/adminhtml/layout/adminhtml_widget_instance_edit.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/view/adminhtml/layout/adminhtml_widget_instance_index.xml b/app/code/Magento/Widget/view/adminhtml/layout/adminhtml_widget_instance_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/view/adminhtml/layout/adminhtml_widget_loadoptions.xml b/app/code/Magento/Widget/view/adminhtml/layout/adminhtml_widget_loadoptions.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/view/adminhtml/templates/catalog/category/widget/tree.phtml b/app/code/Magento/Widget/view/adminhtml/templates/catalog/category/widget/tree.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/view/adminhtml/templates/instance/edit/layout.phtml b/app/code/Magento/Widget/view/adminhtml/templates/instance/edit/layout.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/view/adminhtml/templates/instance/js.phtml b/app/code/Magento/Widget/view/adminhtml/templates/instance/js.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/view/adminhtml/web/placeholder.gif b/app/code/Magento/Widget/view/adminhtml/web/placeholder.gif
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/view/frontend/layout/default.xml b/app/code/Magento/Widget/view/frontend/layout/default.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Widget/view/frontend/layout/print.xml b/app/code/Magento/Widget/view/frontend/layout/print.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Block/AbstractBlock.php b/app/code/Magento/Wishlist/Block/AbstractBlock.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Block/AddToWishlist.php b/app/code/Magento/Wishlist/Block/AddToWishlist.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Block/Adminhtml/Widget/Grid/Column/Filter/Text.php b/app/code/Magento/Wishlist/Block/Adminhtml/Widget/Grid/Column/Filter/Text.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Block/Adminhtml/WishlistTab.php b/app/code/Magento/Wishlist/Block/Adminhtml/WishlistTab.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Block/Cart/Item/Renderer/Actions/MoveToWishlist.php b/app/code/Magento/Wishlist/Block/Cart/Item/Renderer/Actions/MoveToWishlist.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Block/Catalog/Product/ProductList/Item/AddTo/Wishlist.php b/app/code/Magento/Wishlist/Block/Catalog/Product/ProductList/Item/AddTo/Wishlist.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Block/Catalog/Product/View/AddTo/Wishlist.php b/app/code/Magento/Wishlist/Block/Catalog/Product/View/AddTo/Wishlist.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Block/Customer/Sharing.php b/app/code/Magento/Wishlist/Block/Customer/Sharing.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Block/Customer/Sidebar.php b/app/code/Magento/Wishlist/Block/Customer/Sidebar.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Block/Customer/Wishlist.php b/app/code/Magento/Wishlist/Block/Customer/Wishlist.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Block/Customer/Wishlist/Button.php b/app/code/Magento/Wishlist/Block/Customer/Wishlist/Button.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Block/Customer/Wishlist/Item/Column.php b/app/code/Magento/Wishlist/Block/Customer/Wishlist/Item/Column.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Block/Customer/Wishlist/Item/Column/Actions.php b/app/code/Magento/Wishlist/Block/Customer/Wishlist/Item/Column/Actions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Block/Customer/Wishlist/Item/Column/Cart.php b/app/code/Magento/Wishlist/Block/Customer/Wishlist/Item/Column/Cart.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Block/Customer/Wishlist/Item/Column/Comment.php b/app/code/Magento/Wishlist/Block/Customer/Wishlist/Item/Column/Comment.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Block/Customer/Wishlist/Item/Column/Edit.php b/app/code/Magento/Wishlist/Block/Customer/Wishlist/Item/Column/Edit.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Block/Customer/Wishlist/Item/Column/Image.php b/app/code/Magento/Wishlist/Block/Customer/Wishlist/Item/Column/Image.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Block/Customer/Wishlist/Item/Column/Info.php b/app/code/Magento/Wishlist/Block/Customer/Wishlist/Item/Column/Info.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Block/Customer/Wishlist/Item/Column/Remove.php b/app/code/Magento/Wishlist/Block/Customer/Wishlist/Item/Column/Remove.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Block/Customer/Wishlist/Item/Options.php b/app/code/Magento/Wishlist/Block/Customer/Wishlist/Item/Options.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Block/Customer/Wishlist/Items.php b/app/code/Magento/Wishlist/Block/Customer/Wishlist/Items.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Block/Item/Configure.php b/app/code/Magento/Wishlist/Block/Item/Configure.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Block/Link.php b/app/code/Magento/Wishlist/Block/Link.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Block/Rss/EmailLink.php b/app/code/Magento/Wishlist/Block/Rss/EmailLink.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Block/Rss/Link.php b/app/code/Magento/Wishlist/Block/Rss/Link.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Block/Share/Email/Items.php b/app/code/Magento/Wishlist/Block/Share/Email/Items.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Block/Share/Wishlist.php b/app/code/Magento/Wishlist/Block/Share/Wishlist.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Controller/AbstractIndex.php b/app/code/Magento/Wishlist/Controller/AbstractIndex.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Controller/Index/Add.php b/app/code/Magento/Wishlist/Controller/Index/Add.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Controller/Index/Allcart.php b/app/code/Magento/Wishlist/Controller/Index/Allcart.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Controller/Index/Cart.php b/app/code/Magento/Wishlist/Controller/Index/Cart.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Controller/Index/Configure.php b/app/code/Magento/Wishlist/Controller/Index/Configure.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Controller/Index/DownloadCustomOption.php b/app/code/Magento/Wishlist/Controller/Index/DownloadCustomOption.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Controller/Index/Fromcart.php b/app/code/Magento/Wishlist/Controller/Index/Fromcart.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Controller/Index/Index.php b/app/code/Magento/Wishlist/Controller/Index/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Controller/Index/Plugin.php b/app/code/Magento/Wishlist/Controller/Index/Plugin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Controller/Index/Remove.php b/app/code/Magento/Wishlist/Controller/Index/Remove.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Controller/Index/Send.php b/app/code/Magento/Wishlist/Controller/Index/Send.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Controller/Index/Share.php b/app/code/Magento/Wishlist/Controller/Index/Share.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Controller/Index/Update.php b/app/code/Magento/Wishlist/Controller/Index/Update.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Controller/Index/UpdateItemOptions.php b/app/code/Magento/Wishlist/Controller/Index/UpdateItemOptions.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Controller/IndexInterface.php b/app/code/Magento/Wishlist/Controller/IndexInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Controller/Shared/Allcart.php b/app/code/Magento/Wishlist/Controller/Shared/Allcart.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Controller/Shared/Cart.php b/app/code/Magento/Wishlist/Controller/Shared/Cart.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Controller/Shared/Index.php b/app/code/Magento/Wishlist/Controller/Shared/Index.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Controller/Shared/WishlistProvider.php b/app/code/Magento/Wishlist/Controller/Shared/WishlistProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Controller/WishlistProvider.php b/app/code/Magento/Wishlist/Controller/WishlistProvider.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Controller/WishlistProviderInterface.php b/app/code/Magento/Wishlist/Controller/WishlistProviderInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/CustomerData/Wishlist.php b/app/code/Magento/Wishlist/CustomerData/Wishlist.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Helper/Data.php b/app/code/Magento/Wishlist/Helper/Data.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Helper/Rss.php b/app/code/Magento/Wishlist/Helper/Rss.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/LICENSE.txt b/app/code/Magento/Wishlist/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/LICENSE_AFL.txt b/app/code/Magento/Wishlist/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Model/AuthenticationState.php b/app/code/Magento/Wishlist/Model/AuthenticationState.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Model/AuthenticationStateInterface.php b/app/code/Magento/Wishlist/Model/AuthenticationStateInterface.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Model/Config.php b/app/code/Magento/Wishlist/Model/Config.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Model/Config/Source/Summary.php b/app/code/Magento/Wishlist/Model/Config/Source/Summary.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Model/Item.php b/app/code/Magento/Wishlist/Model/Item.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Model/Item/Option.php b/app/code/Magento/Wishlist/Model/Item/Option.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Model/ItemCarrier.php b/app/code/Magento/Wishlist/Model/ItemCarrier.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Model/LocaleQuantityProcessor.php b/app/code/Magento/Wishlist/Model/LocaleQuantityProcessor.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Model/ResourceModel/Item.php b/app/code/Magento/Wishlist/Model/ResourceModel/Item.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Model/ResourceModel/Item/Collection.php b/app/code/Magento/Wishlist/Model/ResourceModel/Item/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Model/ResourceModel/Item/Collection/Grid.php b/app/code/Magento/Wishlist/Model/ResourceModel/Item/Collection/Grid.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Model/ResourceModel/Item/Option.php b/app/code/Magento/Wishlist/Model/ResourceModel/Item/Option.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Model/ResourceModel/Item/Option/Collection.php b/app/code/Magento/Wishlist/Model/ResourceModel/Item/Option/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Model/ResourceModel/Wishlist.php b/app/code/Magento/Wishlist/Model/ResourceModel/Wishlist.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Model/ResourceModel/Wishlist/Collection.php b/app/code/Magento/Wishlist/Model/ResourceModel/Wishlist/Collection.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Model/Rss/Wishlist.php b/app/code/Magento/Wishlist/Model/Rss/Wishlist.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Model/Wishlist.php b/app/code/Magento/Wishlist/Model/Wishlist.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Observer/AddToCart.php b/app/code/Magento/Wishlist/Observer/AddToCart.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Observer/CartUpdateBefore.php b/app/code/Magento/Wishlist/Observer/CartUpdateBefore.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Observer/CustomerLogin.php b/app/code/Magento/Wishlist/Observer/CustomerLogin.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Observer/CustomerLogout.php b/app/code/Magento/Wishlist/Observer/CustomerLogout.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Plugin/Ui/DataProvider/WishlistSettings.php b/app/code/Magento/Wishlist/Plugin/Ui/DataProvider/WishlistSettings.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Pricing/ConfiguredPrice/ConfigurableProduct.php b/app/code/Magento/Wishlist/Pricing/ConfiguredPrice/ConfigurableProduct.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Pricing/ConfiguredPrice/Downloadable.php b/app/code/Magento/Wishlist/Pricing/ConfiguredPrice/Downloadable.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Pricing/Render/ConfiguredPriceBox.php b/app/code/Magento/Wishlist/Pricing/Render/ConfiguredPriceBox.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/README.md b/app/code/Magento/Wishlist/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Setup/InstallSchema.php b/app/code/Magento/Wishlist/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Setup/Recurring.php b/app/code/Magento/Wishlist/Setup/Recurring.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Setup/UpgradeData.php b/app/code/Magento/Wishlist/Setup/UpgradeData.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Test/Unit/Block/Adminhtml/Widget/Grid/Column/Filter/TextTest.php b/app/code/Magento/Wishlist/Test/Unit/Block/Adminhtml/Widget/Grid/Column/Filter/TextTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Test/Unit/Block/Cart/Item/Renderer/Actions/MoveToWishlistTest.php b/app/code/Magento/Wishlist/Test/Unit/Block/Cart/Item/Renderer/Actions/MoveToWishlistTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Test/Unit/Block/Customer/SidebarTest.php b/app/code/Magento/Wishlist/Test/Unit/Block/Customer/SidebarTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Test/Unit/Block/Customer/Wishlist/Item/OptionsTest.php b/app/code/Magento/Wishlist/Test/Unit/Block/Customer/Wishlist/Item/OptionsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Test/Unit/Block/Item/ConfigureTest.php b/app/code/Magento/Wishlist/Test/Unit/Block/Item/ConfigureTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Test/Unit/Block/Rss/EmailLinkTest.php b/app/code/Magento/Wishlist/Test/Unit/Block/Rss/EmailLinkTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Test/Unit/Block/Rss/LinkTest.php b/app/code/Magento/Wishlist/Test/Unit/Block/Rss/LinkTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Test/Unit/Controller/Index/AllcartTest.php b/app/code/Magento/Wishlist/Test/Unit/Controller/Index/AllcartTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Test/Unit/Controller/Index/CartTest.php b/app/code/Magento/Wishlist/Test/Unit/Controller/Index/CartTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Test/Unit/Controller/Index/DownloadCustomOptionTest.php b/app/code/Magento/Wishlist/Test/Unit/Controller/Index/DownloadCustomOptionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Test/Unit/Controller/Index/FromcartTest.php b/app/code/Magento/Wishlist/Test/Unit/Controller/Index/FromcartTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Test/Unit/Controller/Index/IndexTest.php b/app/code/Magento/Wishlist/Test/Unit/Controller/Index/IndexTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Test/Unit/Controller/Index/PluginTest.php b/app/code/Magento/Wishlist/Test/Unit/Controller/Index/PluginTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Test/Unit/Controller/Index/RemoveTest.php b/app/code/Magento/Wishlist/Test/Unit/Controller/Index/RemoveTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Test/Unit/Controller/Index/SendTest.php b/app/code/Magento/Wishlist/Test/Unit/Controller/Index/SendTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Test/Unit/Controller/Index/ShareTest.php b/app/code/Magento/Wishlist/Test/Unit/Controller/Index/ShareTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Test/Unit/Controller/Index/UpdateItemOptionsTest.php b/app/code/Magento/Wishlist/Test/Unit/Controller/Index/UpdateItemOptionsTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Test/Unit/Controller/Shared/AllcartTest.php b/app/code/Magento/Wishlist/Test/Unit/Controller/Shared/AllcartTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Test/Unit/Controller/Shared/CartTest.php b/app/code/Magento/Wishlist/Test/Unit/Controller/Shared/CartTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Test/Unit/Controller/WishlistProviderTest.php b/app/code/Magento/Wishlist/Test/Unit/Controller/WishlistProviderTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Test/Unit/CustomerData/WishlistTest.php b/app/code/Magento/Wishlist/Test/Unit/CustomerData/WishlistTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Test/Unit/DataProvider/Product/Collector/ButtonTest.php b/app/code/Magento/Wishlist/Test/Unit/DataProvider/Product/Collector/ButtonTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Test/Unit/Helper/DataTest.php b/app/code/Magento/Wishlist/Test/Unit/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Test/Unit/Helper/RssTest.php b/app/code/Magento/Wishlist/Test/Unit/Helper/RssTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Test/Unit/Model/AuthenticationStateTest.php b/app/code/Magento/Wishlist/Test/Unit/Model/AuthenticationStateTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Test/Unit/Model/ConfigTest.php b/app/code/Magento/Wishlist/Test/Unit/Model/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Test/Unit/Model/ItemCarrierTest.php b/app/code/Magento/Wishlist/Test/Unit/Model/ItemCarrierTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Test/Unit/Model/ItemTest.php b/app/code/Magento/Wishlist/Test/Unit/Model/ItemTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Test/Unit/Model/LocaleQuantityProcessorTest.php b/app/code/Magento/Wishlist/Test/Unit/Model/LocaleQuantityProcessorTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Test/Unit/Model/ResourceModel/Item/CollectionTest.php b/app/code/Magento/Wishlist/Test/Unit/Model/ResourceModel/Item/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Test/Unit/Model/Rss/WishlistTest.php b/app/code/Magento/Wishlist/Test/Unit/Model/Rss/WishlistTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Test/Unit/Model/WishlistTest.php b/app/code/Magento/Wishlist/Test/Unit/Model/WishlistTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Test/Unit/Observer/AddToCartTest.php b/app/code/Magento/Wishlist/Test/Unit/Observer/AddToCartTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Test/Unit/Observer/CartUpdateBeforeTest.php b/app/code/Magento/Wishlist/Test/Unit/Observer/CartUpdateBeforeTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Test/Unit/Observer/CustomerLoginTest.php b/app/code/Magento/Wishlist/Test/Unit/Observer/CustomerLoginTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Test/Unit/Observer/CustomerLogoutTest.php b/app/code/Magento/Wishlist/Test/Unit/Observer/CustomerLogoutTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Test/Unit/Pricing/ConfiguredPrice/ConfigurableProductTest.php b/app/code/Magento/Wishlist/Test/Unit/Pricing/ConfiguredPrice/ConfigurableProductTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Test/Unit/Pricing/ConfiguredPrice/DownloadableTest.php b/app/code/Magento/Wishlist/Test/Unit/Pricing/ConfiguredPrice/DownloadableTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Test/Unit/Pricing/Render/ConfiguredPriceBoxTest.php b/app/code/Magento/Wishlist/Test/Unit/Pricing/Render/ConfiguredPriceBoxTest.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/Ui/DataProvider/Product/Collector/Button.php b/app/code/Magento/Wishlist/Ui/DataProvider/Product/Collector/Button.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/composer.json b/app/code/Magento/Wishlist/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/etc/acl.xml b/app/code/Magento/Wishlist/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/etc/adminhtml/di.xml b/app/code/Magento/Wishlist/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/etc/adminhtml/system.xml b/app/code/Magento/Wishlist/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/etc/catalog_attributes.xml b/app/code/Magento/Wishlist/etc/catalog_attributes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/etc/config.xml b/app/code/Magento/Wishlist/etc/config.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/etc/di.xml b/app/code/Magento/Wishlist/etc/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/etc/email_templates.xml b/app/code/Magento/Wishlist/etc/email_templates.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/etc/events.xml b/app/code/Magento/Wishlist/etc/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/etc/extension_attributes.xml b/app/code/Magento/Wishlist/etc/extension_attributes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/etc/frontend/di.xml b/app/code/Magento/Wishlist/etc/frontend/di.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/etc/frontend/events.xml b/app/code/Magento/Wishlist/etc/frontend/events.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/etc/frontend/page_types.xml b/app/code/Magento/Wishlist/etc/frontend/page_types.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/etc/frontend/routes.xml b/app/code/Magento/Wishlist/etc/frontend/routes.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/etc/frontend/sections.xml b/app/code/Magento/Wishlist/etc/frontend/sections.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/etc/module.xml b/app/code/Magento/Wishlist/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/etc/view.xml b/app/code/Magento/Wishlist/etc/view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/i18n/en_US.csv b/app/code/Magento/Wishlist/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/registration.php b/app/code/Magento/Wishlist/registration.php
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/adminhtml/layout/customer_index_wishlist.xml b/app/code/Magento/Wishlist/view/adminhtml/layout/customer_index_wishlist.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/adminhtml/templates/customer/edit/tab/wishlist.phtml b/app/code/Magento/Wishlist/view/adminhtml/templates/customer/edit/tab/wishlist.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/base/layout/catalog_product_prices.xml b/app/code/Magento/Wishlist/view/base/layout/catalog_product_prices.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/base/ui_component/customer_form.xml b/app/code/Magento/Wishlist/view/base/ui_component/customer_form.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/email/share_notification.html b/app/code/Magento/Wishlist/view/frontend/email/share_notification.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/layout/catalog_category_view.xml b/app/code/Magento/Wishlist/view/frontend/layout/catalog_category_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/layout/catalog_product_view.xml b/app/code/Magento/Wishlist/view/frontend/layout/catalog_product_view.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/layout/catalogsearch_advanced_result.xml b/app/code/Magento/Wishlist/view/frontend/layout/catalogsearch_advanced_result.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/layout/catalogsearch_result_index.xml b/app/code/Magento/Wishlist/view/frontend/layout/catalogsearch_result_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/layout/checkout_cart_index.xml b/app/code/Magento/Wishlist/view/frontend/layout/checkout_cart_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/layout/checkout_cart_item_renderers.xml b/app/code/Magento/Wishlist/view/frontend/layout/checkout_cart_item_renderers.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/layout/customer_account.xml b/app/code/Magento/Wishlist/view/frontend/layout/customer_account.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/layout/default.xml b/app/code/Magento/Wishlist/view/frontend/layout/default.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/layout/wishlist_email_items.xml b/app/code/Magento/Wishlist/view/frontend/layout/wishlist_email_items.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/layout/wishlist_email_rss.xml b/app/code/Magento/Wishlist/view/frontend/layout/wishlist_email_rss.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/layout/wishlist_index_configure.xml b/app/code/Magento/Wishlist/view/frontend/layout/wishlist_index_configure.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/layout/wishlist_index_configure_type_bundle.xml b/app/code/Magento/Wishlist/view/frontend/layout/wishlist_index_configure_type_bundle.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/layout/wishlist_index_configure_type_configurable.xml b/app/code/Magento/Wishlist/view/frontend/layout/wishlist_index_configure_type_configurable.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/layout/wishlist_index_configure_type_downloadable.xml b/app/code/Magento/Wishlist/view/frontend/layout/wishlist_index_configure_type_downloadable.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/layout/wishlist_index_configure_type_grouped.xml b/app/code/Magento/Wishlist/view/frontend/layout/wishlist_index_configure_type_grouped.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/layout/wishlist_index_configure_type_simple.xml b/app/code/Magento/Wishlist/view/frontend/layout/wishlist_index_configure_type_simple.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/layout/wishlist_index_index.xml b/app/code/Magento/Wishlist/view/frontend/layout/wishlist_index_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/layout/wishlist_index_share.xml b/app/code/Magento/Wishlist/view/frontend/layout/wishlist_index_share.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/layout/wishlist_shared_index.xml b/app/code/Magento/Wishlist/view/frontend/layout/wishlist_shared_index.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/requirejs-config.js b/app/code/Magento/Wishlist/view/frontend/requirejs-config.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/templates/addto.phtml b/app/code/Magento/Wishlist/view/frontend/templates/addto.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/templates/button/share.phtml b/app/code/Magento/Wishlist/view/frontend/templates/button/share.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/templates/button/tocart.phtml b/app/code/Magento/Wishlist/view/frontend/templates/button/tocart.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/templates/button/update.phtml b/app/code/Magento/Wishlist/view/frontend/templates/button/update.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/templates/cart/item/renderer/actions/move_to_wishlist.phtml b/app/code/Magento/Wishlist/view/frontend/templates/cart/item/renderer/actions/move_to_wishlist.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/templates/catalog/product/list/addto/wishlist.phtml b/app/code/Magento/Wishlist/view/frontend/templates/catalog/product/list/addto/wishlist.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/templates/catalog/product/view/addto/wishlist.phtml b/app/code/Magento/Wishlist/view/frontend/templates/catalog/product/view/addto/wishlist.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/templates/email/items.phtml b/app/code/Magento/Wishlist/view/frontend/templates/email/items.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/templates/item/column/actions.phtml b/app/code/Magento/Wishlist/view/frontend/templates/item/column/actions.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/templates/item/column/cart.phtml b/app/code/Magento/Wishlist/view/frontend/templates/item/column/cart.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/templates/item/column/comment.phtml b/app/code/Magento/Wishlist/view/frontend/templates/item/column/comment.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/templates/item/column/edit.phtml b/app/code/Magento/Wishlist/view/frontend/templates/item/column/edit.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/templates/item/column/image.phtml b/app/code/Magento/Wishlist/view/frontend/templates/item/column/image.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/templates/item/column/name.phtml b/app/code/Magento/Wishlist/view/frontend/templates/item/column/name.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/templates/item/column/price.phtml b/app/code/Magento/Wishlist/view/frontend/templates/item/column/price.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/templates/item/column/remove.phtml b/app/code/Magento/Wishlist/view/frontend/templates/item/column/remove.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/templates/item/configure/addto.phtml b/app/code/Magento/Wishlist/view/frontend/templates/item/configure/addto.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/templates/item/configure/addto/wishlist.phtml b/app/code/Magento/Wishlist/view/frontend/templates/item/configure/addto/wishlist.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/templates/item/list.phtml b/app/code/Magento/Wishlist/view/frontend/templates/item/list.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/templates/js/components.phtml b/app/code/Magento/Wishlist/view/frontend/templates/js/components.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/templates/link.phtml b/app/code/Magento/Wishlist/view/frontend/templates/link.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/templates/messages/addProductSuccessMessage.phtml b/app/code/Magento/Wishlist/view/frontend/templates/messages/addProductSuccessMessage.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/templates/options_list.phtml b/app/code/Magento/Wishlist/view/frontend/templates/options_list.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/templates/rss/email.phtml b/app/code/Magento/Wishlist/view/frontend/templates/rss/email.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/templates/rss/wishlist.phtml b/app/code/Magento/Wishlist/view/frontend/templates/rss/wishlist.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/templates/shared.phtml b/app/code/Magento/Wishlist/view/frontend/templates/shared.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/templates/sharing.phtml b/app/code/Magento/Wishlist/view/frontend/templates/sharing.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/templates/sidebar.phtml b/app/code/Magento/Wishlist/view/frontend/templates/sidebar.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/templates/view.phtml b/app/code/Magento/Wishlist/view/frontend/templates/view.phtml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/ui_component/widget_recently_compared.xml b/app/code/Magento/Wishlist/view/frontend/ui_component/widget_recently_compared.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/ui_component/widget_recently_viewed.xml b/app/code/Magento/Wishlist/view/frontend/ui_component/widget_recently_viewed.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/web/js/add-to-wishlist.js b/app/code/Magento/Wishlist/view/frontend/web/js/add-to-wishlist.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/web/js/product/addtowishlist-button.js b/app/code/Magento/Wishlist/view/frontend/web/js/product/addtowishlist-button.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/web/js/search.js b/app/code/Magento/Wishlist/view/frontend/web/js/search.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/web/js/view/wishlist.js b/app/code/Magento/Wishlist/view/frontend/web/js/view/wishlist.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/web/js/wishlist.js b/app/code/Magento/Wishlist/view/frontend/web/js/wishlist.js
old mode 100644
new mode 100755
diff --git a/app/code/Magento/Wishlist/view/frontend/web/template/product/addtowishlist-button.html b/app/code/Magento/Wishlist/view/frontend/web/template/product/addtowishlist-button.html
old mode 100644
new mode 100755
diff --git a/app/code/Magento/WishlistAnalytics/LICENSE.txt b/app/code/Magento/WishlistAnalytics/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/WishlistAnalytics/LICENSE_AFL.txt b/app/code/Magento/WishlistAnalytics/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/code/Magento/WishlistAnalytics/README.md b/app/code/Magento/WishlistAnalytics/README.md
old mode 100644
new mode 100755
diff --git a/app/code/Magento/WishlistAnalytics/composer.json b/app/code/Magento/WishlistAnalytics/composer.json
old mode 100644
new mode 100755
diff --git a/app/code/Magento/WishlistAnalytics/etc/analytics.xml b/app/code/Magento/WishlistAnalytics/etc/analytics.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/WishlistAnalytics/etc/module.xml b/app/code/Magento/WishlistAnalytics/etc/module.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/WishlistAnalytics/etc/reports.xml b/app/code/Magento/WishlistAnalytics/etc/reports.xml
old mode 100644
new mode 100755
diff --git a/app/code/Magento/WishlistAnalytics/registration.php b/app/code/Magento/WishlistAnalytics/registration.php
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/LICENSE.txt b/app/design/adminhtml/Magento/backend/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/LICENSE_AFL.txt b/app/design/adminhtml/Magento/backend/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_AdminNotification/web/css/source/_module.less b/app/design/adminhtml/Magento/backend/Magento_AdminNotification/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_AdvancedCheckout/web/css/source/_module.less b/app/design/adminhtml/Magento/backend/Magento_AdvancedCheckout/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Analytics/web/css/source/_module.less b/app/design/adminhtml/Magento/backend/Magento_Analytics/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Analytics/web/images/analytics-icon.svg b/app/design/adminhtml/Magento/backend/Magento_Analytics/web/images/analytics-icon.svg
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Backend/layout/default.xml b/app/design/adminhtml/Magento/backend/Magento_Backend/layout/default.xml
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Backend/layout/styles.xml b/app/design/adminhtml/Magento/backend/Magento_Backend/layout/styles.xml
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/_module-old.less b/app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/_module-old.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/_module.less b/app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/_footer.less b/app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/_footer.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/_header.less b/app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/_header.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/_main.less b/app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/_main.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/_menu.less b/app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/_menu.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/header/_actions-group.less b/app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/header/_actions-group.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/header/_headings-group.less b/app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/header/_headings-group.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/header/actions-group/_notifications.less b/app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/header/actions-group/_notifications.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/header/actions-group/_search.less b/app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/header/actions-group/_search.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/header/actions-group/_user.less b/app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/header/actions-group/_user.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/header/headings-group/_breadcrumbs.less b/app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/header/headings-group/_breadcrumbs.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/main/_actions-bar.less b/app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/main/_actions-bar.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/main/_collapsible-blocks.less b/app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/main/_collapsible-blocks.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/main/_page-nav.less b/app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/main/_page-nav.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/main/_store-scope.less b/app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/main/_store-scope.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/main/actions-bar/_store-switcher.less b/app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/main/actions-bar/_store-switcher.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/pages/_access-denied.less b/app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/pages/_access-denied.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/pages/_cache-management.less b/app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/pages/_cache-management.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/pages/_dashboard.less b/app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/pages/_dashboard.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/pages/_login.less b/app/design/adminhtml/Magento/backend/Magento_Backend/web/css/source/module/pages/_login.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Backend/web/images/logo-magento.png b/app/design/adminhtml/Magento/backend/Magento_Backend/web/images/logo-magento.png
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Banner/web/css/source/_module.less b/app/design/adminhtml/Magento/backend/Magento_Banner/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Braintree/web/css/source/_module.less b/app/design/adminhtml/Magento/backend/Magento_Braintree/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Catalog/web/css/source/_module-old.less b/app/design/adminhtml/Magento/backend/Magento_Catalog/web/css/source/_module-old.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Catalog/web/css/source/_module.less b/app/design/adminhtml/Magento/backend/Magento_Catalog/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_CatalogPermissions/web/css/source/_module.less b/app/design/adminhtml/Magento/backend/Magento_CatalogPermissions/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Config/web/css/source/_module.less b/app/design/adminhtml/Magento/backend/Magento_Config/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_ConfigurableProduct/web/css/source/_module-old.less b/app/design/adminhtml/Magento/backend/Magento_ConfigurableProduct/web/css/source/_module-old.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_ConfigurableProduct/web/css/source/_module.less b/app/design/adminhtml/Magento/backend/Magento_ConfigurableProduct/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_ConfigurableProduct/web/css/source/module/components/_attributes_template_popup.less b/app/design/adminhtml/Magento/backend/Magento_ConfigurableProduct/web/css/source/module/components/_attributes_template_popup.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_ConfigurableProduct/web/css/source/module/components/_currency-addon.less b/app/design/adminhtml/Magento/backend/Magento_ConfigurableProduct/web/css/source/module/components/_currency-addon.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_ConfigurableProduct/web/css/source/module/components/_grid.less b/app/design/adminhtml/Magento/backend/Magento_ConfigurableProduct/web/css/source/module/components/_grid.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_ConfigurableProduct/web/css/source/module/components/_navigation-bar.less b/app/design/adminhtml/Magento/backend/Magento_ConfigurableProduct/web/css/source/module/components/_navigation-bar.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_ConfigurableProduct/web/css/source/module/components/_steps-wizard.less b/app/design/adminhtml/Magento/backend/Magento_ConfigurableProduct/web/css/source/module/components/_steps-wizard.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_ConfigurableProduct/web/css/source/module/components/navigation-bar/_buttons.less b/app/design/adminhtml/Magento/backend/Magento_ConfigurableProduct/web/css/source/module/components/navigation-bar/_buttons.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_ConfigurableProduct/web/css/source/module/components/navigation-bar/_navigation-bar.less b/app/design/adminhtml/Magento/backend/Magento_ConfigurableProduct/web/css/source/module/components/navigation-bar/_navigation-bar.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_ConfigurableProduct/web/css/source/module/steps/_attribute-values.less b/app/design/adminhtml/Magento/backend/Magento_ConfigurableProduct/web/css/source/module/steps/_attribute-values.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_ConfigurableProduct/web/css/source/module/steps/_bulk-images.less b/app/design/adminhtml/Magento/backend/Magento_ConfigurableProduct/web/css/source/module/steps/_bulk-images.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_ConfigurableProduct/web/css/source/module/steps/_select-attributes.less b/app/design/adminhtml/Magento/backend/Magento_ConfigurableProduct/web/css/source/module/steps/_select-attributes.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_ConfigurableProduct/web/css/source/module/steps/_summary.less b/app/design/adminhtml/Magento/backend/Magento_ConfigurableProduct/web/css/source/module/steps/_summary.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_CurrencySymbol/web/css/source/_module.less b/app/design/adminhtml/Magento/backend/Magento_CurrencySymbol/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Customer/web/css/source/_module.less b/app/design/adminhtml/Magento/backend/Magento_Customer/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_CustomerBalance/web/css/source/_module.less b/app/design/adminhtml/Magento/backend/Magento_CustomerBalance/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Developer/web/css/source/_module-old.less b/app/design/adminhtml/Magento/backend/Magento_Developer/web/css/source/_module-old.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Downloadable/web/css/source/_module.less b/app/design/adminhtml/Magento/backend/Magento_Downloadable/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Enterprise/layout/default.xml b/app/design/adminhtml/Magento/backend/Magento_Enterprise/layout/default.xml
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Enterprise/web/css/source/_module-old.less b/app/design/adminhtml/Magento/backend/Magento_Enterprise/web/css/source/_module-old.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_GiftCard/web/css/source/_module.less b/app/design/adminhtml/Magento/backend/Magento_GiftCard/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_GiftRegistry/web/css/source/_module-old.less b/app/design/adminhtml/Magento/backend/Magento_GiftRegistry/web/css/source/_module-old.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_GiftRegistry/web/css/source/_module.less b/app/design/adminhtml/Magento/backend/Magento_GiftRegistry/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_GiftWrapping/web/css/source/_module.less b/app/design/adminhtml/Magento/backend/Magento_GiftWrapping/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Integration/web/css/source/_module.less b/app/design/adminhtml/Magento/backend/Magento_Integration/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Marketplace/web/css/source/_module.less b/app/design/adminhtml/Magento/backend/Magento_Marketplace/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Msrp/web/css/source/_module-old.less b/app/design/adminhtml/Magento/backend/Magento_Msrp/web/css/source/_module-old.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_ProductVideo/web/css/source/_module.less b/app/design/adminhtml/Magento/backend/Magento_ProductVideo/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_ReleaseNotification/web/css/source/_module.less b/app/design/adminhtml/Magento/backend/Magento_ReleaseNotification/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_ReleaseNotification/web/images/analytics-icon.svg b/app/design/adminhtml/Magento/backend/Magento_ReleaseNotification/web/images/analytics-icon.svg
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_ReleaseNotification/web/images/email-marketing-icon.svg b/app/design/adminhtml/Magento/backend/Magento_ReleaseNotification/web/images/email-marketing-icon.svg
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_ReleaseNotification/web/images/instant-purchase-icon.svg b/app/design/adminhtml/Magento/backend/Magento_ReleaseNotification/web/images/instant-purchase-icon.svg
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Review/web/css/source/_module.less b/app/design/adminhtml/Magento/backend/Magento_Review/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Reward/web/css/source/_module.less b/app/design/adminhtml/Magento/backend/Magento_Reward/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Rma/web/css/source/_module.less b/app/design/adminhtml/Magento/backend/Magento_Rma/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Sales/web/css/source/_module.less b/app/design/adminhtml/Magento/backend/Magento_Sales/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Sales/web/css/source/module/_edit-order.less b/app/design/adminhtml/Magento/backend/Magento_Sales/web/css/source/module/_edit-order.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Sales/web/css/source/module/_order.less b/app/design/adminhtml/Magento/backend/Magento_Sales/web/css/source/module/_order.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Sales/web/css/source/module/order/_address.less b/app/design/adminhtml/Magento/backend/Magento_Sales/web/css/source/module/order/_address.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Sales/web/css/source/module/order/_discounts.less b/app/design/adminhtml/Magento/backend/Magento_Sales/web/css/source/module/order/_discounts.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Sales/web/css/source/module/order/_gift-options.less b/app/design/adminhtml/Magento/backend/Magento_Sales/web/css/source/module/order/_gift-options.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Sales/web/css/source/module/order/_items.less b/app/design/adminhtml/Magento/backend/Magento_Sales/web/css/source/module/order/_items.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Sales/web/css/source/module/order/_order-account.less b/app/design/adminhtml/Magento/backend/Magento_Sales/web/css/source/module/order/_order-account.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Sales/web/css/source/module/order/_order-comments.less b/app/design/adminhtml/Magento/backend/Magento_Sales/web/css/source/module/order/_order-comments.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Sales/web/css/source/module/order/_payment-shipping.less b/app/design/adminhtml/Magento/backend/Magento_Sales/web/css/source/module/order/_payment-shipping.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Sales/web/css/source/module/order/_sidebar.less b/app/design/adminhtml/Magento/backend/Magento_Sales/web/css/source/module/order/_sidebar.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Sales/web/css/source/module/order/_sku.less b/app/design/adminhtml/Magento/backend/Magento_Sales/web/css/source/module/order/_sku.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Sales/web/css/source/module/order/_total.less b/app/design/adminhtml/Magento/backend/Magento_Sales/web/css/source/module/order/_total.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Shipping/web/css/source/_module.less b/app/design/adminhtml/Magento/backend/Magento_Shipping/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Signifyd/web/css/source/_module.less b/app/design/adminhtml/Magento/backend/Magento_Signifyd/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Signifyd/web/css/source/module/_config.less b/app/design/adminhtml/Magento/backend/Magento_Signifyd/web/css/source/module/_config.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Signifyd/web/css/source/module/_order.less b/app/design/adminhtml/Magento/backend/Magento_Signifyd/web/css/source/module/_order.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Staging/web/css/source/_module.less b/app/design/adminhtml/Magento/backend/Magento_Staging/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Staging/web/css/source/module/_scheduled-changes-modal.less b/app/design/adminhtml/Magento/backend/Magento_Staging/web/css/source/module/_scheduled-changes-modal.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Staging/web/css/source/module/_scheduled-changes.less b/app/design/adminhtml/Magento/backend/Magento_Staging/web/css/source/module/_scheduled-changes.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Staging/web/css/source/module/_staging-data-tooltip.less b/app/design/adminhtml/Magento/backend/Magento_Staging/web/css/source/module/_staging-data-tooltip.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Staging/web/css/source/module/_staging-preview.less b/app/design/adminhtml/Magento/backend/Magento_Staging/web/css/source/module/_staging-preview.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Tax/web/css/source/_module-old.less b/app/design/adminhtml/Magento/backend/Magento_Tax/web/css/source/_module-old.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Tax/web/css/source/_module.less b/app/design/adminhtml/Magento/backend/Magento_Tax/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Theme/web/css/source/_module-old.less b/app/design/adminhtml/Magento/backend/Magento_Theme/web/css/source/_module-old.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Translation/web/css/source/_module.less b/app/design/adminhtml/Magento/backend/Magento_Translation/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Ui/web/css/source/_module-old.less b/app/design/adminhtml/Magento/backend/Magento_Ui/web/css/source/_module-old.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Ui/web/css/source/_module.less b/app/design/adminhtml/Magento/backend/Magento_Ui/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Ui/web/css/source/module/_data-grid.less b/app/design/adminhtml/Magento/backend/Magento_Ui/web/css/source/module/_data-grid.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Ui/web/css/source/module/data-grid/_data-grid-header.less b/app/design/adminhtml/Magento/backend/Magento_Ui/web/css/source/module/data-grid/_data-grid-header.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Ui/web/css/source/module/data-grid/_data-grid-static.less b/app/design/adminhtml/Magento/backend/Magento_Ui/web/css/source/module/data-grid/_data-grid-static.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Ui/web/css/source/module/data-grid/data-grid-header/_data-grid-action-bookmarks.less b/app/design/adminhtml/Magento/backend/Magento_Ui/web/css/source/module/data-grid/data-grid-header/_data-grid-action-bookmarks.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Ui/web/css/source/module/data-grid/data-grid-header/_data-grid-action-columns.less b/app/design/adminhtml/Magento/backend/Magento_Ui/web/css/source/module/data-grid/data-grid-header/_data-grid-action-columns.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Ui/web/css/source/module/data-grid/data-grid-header/_data-grid-action-export.less b/app/design/adminhtml/Magento/backend/Magento_Ui/web/css/source/module/data-grid/data-grid-header/_data-grid-action-export.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Ui/web/css/source/module/data-grid/data-grid-header/_data-grid-filters.less b/app/design/adminhtml/Magento/backend/Magento_Ui/web/css/source/module/data-grid/data-grid-header/_data-grid-filters.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Ui/web/css/source/module/data-grid/data-grid-header/_data-grid-pager.less b/app/design/adminhtml/Magento/backend/Magento_Ui/web/css/source/module/data-grid/data-grid-header/_data-grid-pager.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Ui/web/css/source/module/data-grid/data-grid-header/_data-grid-sticky-header.less b/app/design/adminhtml/Magento/backend/Magento_Ui/web/css/source/module/data-grid/data-grid-header/_data-grid-sticky-header.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Ui/web/images/choice_bkg.png b/app/design/adminhtml/Magento/backend/Magento_Ui/web/images/choice_bkg.png
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_Vault/web/css/source/_module.less b/app/design/adminhtml/Magento/backend/Magento_Vault/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_VersionsCms/web/css/source/_module.less b/app/design/adminhtml/Magento/backend/Magento_VersionsCms/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/Magento_VisualMerchandiser/web/css/source/_module.less b/app/design/adminhtml/Magento/backend/Magento_VisualMerchandiser/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/composer.json b/app/design/adminhtml/Magento/backend/composer.json
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/etc/view.xml b/app/design/adminhtml/Magento/backend/etc/view.xml
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/registration.php b/app/design/adminhtml/Magento/backend/registration.php
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/theme.xml b/app/design/adminhtml/Magento/backend/theme.xml
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/_setup.less b/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/_setup.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/components/_messages.less b/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/components/_messages.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/components/_navigation-bar.less b/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/components/_navigation-bar.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/components/_progress-bars.less b/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/components/_progress-bars.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/components/_tooltips.less b/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/components/_tooltips.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/components/tooltips/_password-strength.less b/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/components/tooltips/_password-strength.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/components/tooltips/_tooltips.less b/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/components/tooltips/_tooltips.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/_buttons.less b/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/_buttons.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/_classes.less b/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/_classes.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/_collector.less b/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/_collector.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/_extends.less b/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/_extends.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/_forms.less b/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/_forms.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/_icons.less b/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/_icons.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/_lists.less b/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/_lists.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/_structures.less b/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/_structures.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/_utilities.less b/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/_utilities.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/_variables.less b/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/_variables.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/forms/_checkbox-radio.less b/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/forms/_checkbox-radio.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/forms/_forms.less b/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/forms/_forms.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/forms/_legends.less b/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/forms/_legends.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/forms/_multiselects.less b/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/forms/_multiselects.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/forms/_selects.less b/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/forms/_selects.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/forms/_validation.less b/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/forms/_validation.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/utilities/_animations.less b/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/utilities/_animations.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/utilities/_grid-framework.less b/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/utilities/_grid-framework.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/utilities/_grid.less b/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/utilities/_grid.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/utilities/_vendor-prefixes.less b/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/lib/utilities/_vendor-prefixes.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/pages/_common.less b/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/pages/_common.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/pages/_customize-your-store.less b/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/pages/_customize-your-store.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/pages/_install.less b/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/pages/_install.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/pages/_landing.less b/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/pages/_landing.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/pages/_license.less b/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/pages/_license.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/pages/_readiness-check.less b/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/pages/_readiness-check.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/pages/_web-configuration.less b/app/design/adminhtml/Magento/backend/web/app/setup/styles/less/pages/_web-configuration.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/updater/styles/less/components/_data-grid.less b/app/design/adminhtml/Magento/backend/web/app/updater/styles/less/components/_data-grid.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/updater/styles/less/components/_header.less b/app/design/adminhtml/Magento/backend/web/app/updater/styles/less/components/_header.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/updater/styles/less/components/_menu.less b/app/design/adminhtml/Magento/backend/web/app/updater/styles/less/components/_menu.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/updater/styles/less/components/_modals.less b/app/design/adminhtml/Magento/backend/web/app/updater/styles/less/components/_modals.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/updater/styles/less/components/_navigation-bar_extend.less b/app/design/adminhtml/Magento/backend/web/app/updater/styles/less/components/_navigation-bar_extend.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/updater/styles/less/components/_page-inner.less b/app/design/adminhtml/Magento/backend/web/app/updater/styles/less/components/_page-inner.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/updater/styles/less/pages/_common.less b/app/design/adminhtml/Magento/backend/web/app/updater/styles/less/pages/_common.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/updater/styles/less/pages/_extension-manager.less b/app/design/adminhtml/Magento/backend/web/app/updater/styles/less/pages/_extension-manager.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/updater/styles/less/pages/_home.less b/app/design/adminhtml/Magento/backend/web/app/updater/styles/less/pages/_home.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/updater/styles/less/pages/_login.less b/app/design/adminhtml/Magento/backend/web/app/updater/styles/less/pages/_login.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/updater/styles/less/source/_extends.less b/app/design/adminhtml/Magento/backend/web/app/updater/styles/less/source/_extends.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/updater/styles/less/source/_forms.less b/app/design/adminhtml/Magento/backend/web/app/updater/styles/less/source/_forms.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/updater/styles/less/source/_lists.less b/app/design/adminhtml/Magento/backend/web/app/updater/styles/less/source/_lists.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/updater/styles/less/source/_structure.less b/app/design/adminhtml/Magento/backend/web/app/updater/styles/less/source/_structure.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/updater/styles/less/source/_typography.less b/app/design/adminhtml/Magento/backend/web/app/updater/styles/less/source/_typography.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/app/updater/styles/less/source/_variables.less b/app/design/adminhtml/Magento/backend/web/app/updater/styles/less/source/_variables.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/_actions.less b/app/design/adminhtml/Magento/backend/web/css/source/_actions.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/_classes.less b/app/design/adminhtml/Magento/backend/web/css/source/_classes.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/_components.less b/app/design/adminhtml/Magento/backend/web/css/source/_components.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/_extends.less b/app/design/adminhtml/Magento/backend/web/css/source/_extends.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/_forms.less b/app/design/adminhtml/Magento/backend/web/css/source/_forms.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/_grid.less b/app/design/adminhtml/Magento/backend/web/css/source/_grid.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/_icons.less b/app/design/adminhtml/Magento/backend/web/css/source/_icons.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/_lists.less b/app/design/adminhtml/Magento/backend/web/css/source/_lists.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/_reset.less b/app/design/adminhtml/Magento/backend/web/css/source/_reset.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/_responsive.less b/app/design/adminhtml/Magento/backend/web/css/source/_responsive.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/_sources.less b/app/design/adminhtml/Magento/backend/web/css/source/_sources.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/_structure.less b/app/design/adminhtml/Magento/backend/web/css/source/_structure.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/_tables.less b/app/design/adminhtml/Magento/backend/web/css/source/_tables.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/_tabs.less b/app/design/adminhtml/Magento/backend/web/css/source/_tabs.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/_theme.less b/app/design/adminhtml/Magento/backend/web/css/source/_theme.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/_typography.less b/app/design/adminhtml/Magento/backend/web/css/source/_typography.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/_utilities.less b/app/design/adminhtml/Magento/backend/web/css/source/_utilities.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/_variables.less b/app/design/adminhtml/Magento/backend/web/css/source/_variables.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/actions/_actions-dropdown.less b/app/design/adminhtml/Magento/backend/web/css/source/actions/_actions-dropdown.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/actions/_actions-multicheck.less b/app/design/adminhtml/Magento/backend/web/css/source/actions/_actions-multicheck.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/actions/_actions-multiselect.less b/app/design/adminhtml/Magento/backend/web/css/source/actions/_actions-multiselect.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/actions/_actions-select.less b/app/design/adminhtml/Magento/backend/web/css/source/actions/_actions-select.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/actions/_actions-split.less b/app/design/adminhtml/Magento/backend/web/css/source/actions/_actions-split.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/actions/_actions-switcher.less b/app/design/adminhtml/Magento/backend/web/css/source/actions/_actions-switcher.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/components/_calendar-temp.less b/app/design/adminhtml/Magento/backend/web/css/source/components/_calendar-temp.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/components/_data-tooltip.less b/app/design/adminhtml/Magento/backend/web/css/source/components/_data-tooltip.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/components/_file-insertion.less b/app/design/adminhtml/Magento/backend/web/css/source/components/_file-insertion.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/components/_file-uploader.less b/app/design/adminhtml/Magento/backend/web/css/source/components/_file-uploader.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/components/_media-gallery.less b/app/design/adminhtml/Magento/backend/web/css/source/components/_media-gallery.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/components/_messages.less b/app/design/adminhtml/Magento/backend/web/css/source/components/_messages.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/components/_modals_extend.less b/app/design/adminhtml/Magento/backend/web/css/source/components/_modals_extend.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/components/_popups-old.less b/app/design/adminhtml/Magento/backend/web/css/source/components/_popups-old.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/components/_popups.less b/app/design/adminhtml/Magento/backend/web/css/source/components/_popups.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/components/_resizable-block.less b/app/design/adminhtml/Magento/backend/web/css/source/components/_resizable-block.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/components/_rules-temp.less b/app/design/adminhtml/Magento/backend/web/css/source/components/_rules-temp.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/components/_slider.less b/app/design/adminhtml/Magento/backend/web/css/source/components/_slider.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/components/_spinner.less b/app/design/adminhtml/Magento/backend/web/css/source/components/_spinner.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/components/_timeline.less b/app/design/adminhtml/Magento/backend/web/css/source/components/_timeline.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/forms/_controls.less b/app/design/adminhtml/Magento/backend/web/css/source/forms/_controls.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/forms/_extends.less b/app/design/adminhtml/Magento/backend/web/css/source/forms/_extends.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/forms/_fields.less b/app/design/adminhtml/Magento/backend/web/css/source/forms/_fields.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/forms/_form-wysiwyg.less b/app/design/adminhtml/Magento/backend/web/css/source/forms/_form-wysiwyg.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/forms/_temp.less b/app/design/adminhtml/Magento/backend/web/css/source/forms/_temp.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/forms/controls/_checkbox-radio.less b/app/design/adminhtml/Magento/backend/web/css/source/forms/controls/_checkbox-radio.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/forms/fields/_control-collapsible.less b/app/design/adminhtml/Magento/backend/web/css/source/forms/fields/_control-collapsible.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/forms/fields/_control-table.less b/app/design/adminhtml/Magento/backend/web/css/source/forms/fields/_control-table.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/forms/fields/_field-reset.less b/app/design/adminhtml/Magento/backend/web/css/source/forms/fields/_field-reset.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/forms/fields/_field-tooltips.less b/app/design/adminhtml/Magento/backend/web/css/source/forms/fields/_field-tooltips.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/utilities/_actions.less b/app/design/adminhtml/Magento/backend/web/css/source/utilities/_actions.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/utilities/_animations.less b/app/design/adminhtml/Magento/backend/web/css/source/utilities/_animations.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/utilities/_grid-framework.less b/app/design/adminhtml/Magento/backend/web/css/source/utilities/_grid-framework.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/utilities/_grid.less b/app/design/adminhtml/Magento/backend/web/css/source/utilities/_grid.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/utilities/_spinner.less b/app/design/adminhtml/Magento/backend/web/css/source/utilities/_spinner.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/variables/_actions.less b/app/design/adminhtml/Magento/backend/web/css/source/variables/_actions.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/variables/_animations.less b/app/design/adminhtml/Magento/backend/web/css/source/variables/_animations.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/variables/_colors.less b/app/design/adminhtml/Magento/backend/web/css/source/variables/_colors.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/variables/_components.less b/app/design/adminhtml/Magento/backend/web/css/source/variables/_components.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/variables/_data-grid.less b/app/design/adminhtml/Magento/backend/web/css/source/variables/_data-grid.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/variables/_forms.less b/app/design/adminhtml/Magento/backend/web/css/source/variables/_forms.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/variables/_icons.less b/app/design/adminhtml/Magento/backend/web/css/source/variables/_icons.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/variables/_spinner.less b/app/design/adminhtml/Magento/backend/web/css/source/variables/_spinner.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/variables/_structure.less b/app/design/adminhtml/Magento/backend/web/css/source/variables/_structure.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/source/variables/_typography.less b/app/design/adminhtml/Magento/backend/web/css/source/variables/_typography.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/styles-old.less b/app/design/adminhtml/Magento/backend/web/css/styles-old.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/css/styles.less b/app/design/adminhtml/Magento/backend/web/css/styles.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/images/ajax-loader-small.gif b/app/design/adminhtml/Magento/backend/web/images/ajax-loader-small.gif
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/images/ajax-loader-tr.gif b/app/design/adminhtml/Magento/backend/web/images/ajax-loader-tr.gif
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/images/ajax-loader.gif b/app/design/adminhtml/Magento/backend/web/images/ajax-loader.gif
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/images/arrows-bg-light.svg b/app/design/adminhtml/Magento/backend/web/images/arrows-bg-light.svg
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/images/arrows-bg.svg b/app/design/adminhtml/Magento/backend/web/images/arrows-bg.svg
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/images/fam_application_form_delete.png b/app/design/adminhtml/Magento/backend/web/images/fam_application_form_delete.png
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/images/fam_bullet_disk.gif b/app/design/adminhtml/Magento/backend/web/images/fam_bullet_disk.gif
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/images/fam_leaf.png b/app/design/adminhtml/Magento/backend/web/images/fam_leaf.png
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/images/fam_link.gif b/app/design/adminhtml/Magento/backend/web/images/fam_link.gif
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/images/grouped_to_order_icon.png b/app/design/adminhtml/Magento/backend/web/images/grouped_to_order_icon.png
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/images/magento-icon.svg b/app/design/adminhtml/Magento/backend/web/images/magento-icon.svg
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/images/process_spinner.gif b/app/design/adminhtml/Magento/backend/web/images/process_spinner.gif
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/images/rating-bg.png b/app/design/adminhtml/Magento/backend/web/images/rating-bg.png
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/images/rule_chooser_trigger.gif b/app/design/adminhtml/Magento/backend/web/images/rule_chooser_trigger.gif
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/images/rule_component_add.gif b/app/design/adminhtml/Magento/backend/web/images/rule_component_add.gif
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/images/rule_component_apply.gif b/app/design/adminhtml/Magento/backend/web/images/rule_component_apply.gif
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/images/rule_component_remove.gif b/app/design/adminhtml/Magento/backend/web/images/rule_component_remove.gif
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/images/select-bg.svg b/app/design/adminhtml/Magento/backend/web/images/select-bg.svg
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/images/subconfig-bg.png b/app/design/adminhtml/Magento/backend/web/images/subconfig-bg.png
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/images/switcher.png b/app/design/adminhtml/Magento/backend/web/images/switcher.png
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/js/theme.js b/app/design/adminhtml/Magento/backend/web/js/theme.js
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/mui/clearless/_all.less b/app/design/adminhtml/Magento/backend/web/mui/clearless/_all.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/mui/clearless/_arrows.less b/app/design/adminhtml/Magento/backend/web/mui/clearless/_arrows.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/mui/clearless/_helpers.less b/app/design/adminhtml/Magento/backend/web/mui/clearless/_helpers.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/mui/clearless/_icons.less b/app/design/adminhtml/Magento/backend/web/mui/clearless/_icons.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/mui/clearless/_settings.less b/app/design/adminhtml/Magento/backend/web/mui/clearless/_settings.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/mui/clearless/_sprites.less b/app/design/adminhtml/Magento/backend/web/mui/clearless/_sprites.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/mui/images/ajax-loader-big.gif b/app/design/adminhtml/Magento/backend/web/mui/images/ajax-loader-big.gif
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/mui/images/ajax-loader-small.gif b/app/design/adminhtml/Magento/backend/web/mui/images/ajax-loader-small.gif
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/mui/images/ajax-loader-white.gif b/app/design/adminhtml/Magento/backend/web/mui/images/ajax-loader-white.gif
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/mui/images/ajax-loader.gif b/app/design/adminhtml/Magento/backend/web/mui/images/ajax-loader.gif
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/mui/images/ajax-loader.svg b/app/design/adminhtml/Magento/backend/web/mui/images/ajax-loader.svg
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/mui/images/pagination-arrows-bg.png b/app/design/adminhtml/Magento/backend/web/mui/images/pagination-arrows-bg.png
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/mui/images/sorter-bg.png b/app/design/adminhtml/Magento/backend/web/mui/images/sorter-bg.png
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/mui/images/view-mode-bg.png b/app/design/adminhtml/Magento/backend/web/mui/images/view-mode-bg.png
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/mui/styles/_abstract.less b/app/design/adminhtml/Magento/backend/web/mui/styles/_abstract.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/mui/styles/_base.less b/app/design/adminhtml/Magento/backend/web/mui/styles/_base.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/mui/styles/_table.less b/app/design/adminhtml/Magento/backend/web/mui/styles/_table.less
old mode 100644
new mode 100755
diff --git a/app/design/adminhtml/Magento/backend/web/mui/styles/_vars.less b/app/design/adminhtml/Magento/backend/web/mui/styles/_vars.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/LICENSE.txt b/app/design/frontend/Magento/blank/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/LICENSE_AFL.txt b/app/design/frontend/Magento/blank/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_AdvancedCheckout/web/css/source/_module.less b/app/design/frontend/Magento/blank/Magento_AdvancedCheckout/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_AdvancedCheckout/web/css/source/_widgets.less b/app/design/frontend/Magento/blank/Magento_AdvancedCheckout/web/css/source/_widgets.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Banner/web/css/source/_widgets.less b/app/design/frontend/Magento/blank/Magento_Banner/web/css/source/_widgets.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Braintree/web/css/source/_module.less b/app/design/frontend/Magento/blank/Magento_Braintree/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Bundle/web/css/source/_email.less b/app/design/frontend/Magento/blank/Magento_Bundle/web/css/source/_email.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Bundle/web/css/source/_module.less b/app/design/frontend/Magento/blank/Magento_Bundle/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Catalog/web/css/source/_module.less b/app/design/frontend/Magento/blank/Magento_Catalog/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Catalog/web/css/source/_widgets.less b/app/design/frontend/Magento/blank/Magento_Catalog/web/css/source/_widgets.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Catalog/web/css/source/module/_listings.less b/app/design/frontend/Magento/blank/Magento_Catalog/web/css/source/module/_listings.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Catalog/web/css/source/module/_toolbar.less b/app/design/frontend/Magento/blank/Magento_Catalog/web/css/source/module/_toolbar.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_CatalogEvent/web/css/source/_module.less b/app/design/frontend/Magento/blank/Magento_CatalogEvent/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_CatalogEvent/web/css/source/_widgets.less b/app/design/frontend/Magento/blank/Magento_CatalogEvent/web/css/source/_widgets.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_CatalogSearch/web/css/source/_module.less b/app/design/frontend/Magento/blank/Magento_CatalogSearch/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/_module.less b/app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/_cart.less b/app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/_cart.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/_checkout.less b/app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/_checkout.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/_minicart.less b/app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/_minicart.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/checkout/_authentication.less b/app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/checkout/_authentication.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/checkout/_checkout-agreements.less b/app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/checkout/_checkout-agreements.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/checkout/_checkout.less b/app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/checkout/_checkout.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/checkout/_estimated-total.less b/app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/checkout/_estimated-total.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/checkout/_fields.less b/app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/checkout/_fields.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/checkout/_modals.less b/app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/checkout/_modals.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/checkout/_order-summary.less b/app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/checkout/_order-summary.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/checkout/_payment-options.less b/app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/checkout/_payment-options.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/checkout/_payments.less b/app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/checkout/_payments.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/checkout/_progress-bar.less b/app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/checkout/_progress-bar.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/checkout/_shipping-policy.less b/app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/checkout/_shipping-policy.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/checkout/_shipping.less b/app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/checkout/_shipping.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/checkout/_sidebar-shipping-information.less b/app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/checkout/_sidebar-shipping-information.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/checkout/_sidebar.less b/app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/checkout/_sidebar.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/checkout/_tooltip.less b/app/design/frontend/Magento/blank/Magento_Checkout/web/css/source/module/checkout/_tooltip.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Cms/web/css/source/_widgets.less b/app/design/frontend/Magento/blank/Magento_Cms/web/css/source/_widgets.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Customer/web/css/source/_module.less b/app/design/frontend/Magento/blank/Magento_Customer/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Downloadable/web/css/source/_module.less b/app/design/frontend/Magento/blank/Magento_Downloadable/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_GiftCard/web/css/source/_module.less b/app/design/frontend/Magento/blank/Magento_GiftCard/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_GiftCardAccount/web/css/source/_module.less b/app/design/frontend/Magento/blank/Magento_GiftCardAccount/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_GiftMessage/web/css/source/_module.less b/app/design/frontend/Magento/blank/Magento_GiftMessage/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_GiftRegistry/web/css/source/_module.less b/app/design/frontend/Magento/blank/Magento_GiftRegistry/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_GiftRegistry/web/css/source/_widgets.less b/app/design/frontend/Magento/blank/Magento_GiftRegistry/web/css/source/_widgets.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_GiftWrapping/web/css/source/_module.less b/app/design/frontend/Magento/blank/Magento_GiftWrapping/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_GroupedProduct/web/css/source/_module.less b/app/design/frontend/Magento/blank/Magento_GroupedProduct/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Invitation/web/css/source/_module.less b/app/design/frontend/Magento/blank/Magento_Invitation/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_LayeredNavigation/web/css/source/_module.less b/app/design/frontend/Magento/blank/Magento_LayeredNavigation/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Msrp/web/css/source/_module.less b/app/design/frontend/Magento/blank/Magento_Msrp/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_MultipleWishlist/web/css/source/_module.less b/app/design/frontend/Magento/blank/Magento_MultipleWishlist/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_MultipleWishlist/web/css/source/_widgets.less b/app/design/frontend/Magento/blank/Magento_MultipleWishlist/web/css/source/_widgets.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Multishipping/web/css/source/_module.less b/app/design/frontend/Magento/blank/Magento_Multishipping/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Newsletter/web/css/source/_module.less b/app/design/frontend/Magento/blank/Magento_Newsletter/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Paypal/web/css/source/_module.less b/app/design/frontend/Magento/blank/Magento_Paypal/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Paypal/web/css/source/module/_billing.less b/app/design/frontend/Magento/blank/Magento_Paypal/web/css/source/module/_billing.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Paypal/web/css/source/module/_paypal-button.less b/app/design/frontend/Magento/blank/Magento_Paypal/web/css/source/module/_paypal-button.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Paypal/web/css/source/module/_review.less b/app/design/frontend/Magento/blank/Magento_Paypal/web/css/source/module/_review.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_ProductVideo/web/css/source/_module.less b/app/design/frontend/Magento/blank/Magento_ProductVideo/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Reports/web/css/source/_widgets.less b/app/design/frontend/Magento/blank/Magento_Reports/web/css/source/_widgets.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Review/web/css/source/_module.less b/app/design/frontend/Magento/blank/Magento_Review/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Reward/web/css/source/_module.less b/app/design/frontend/Magento/blank/Magento_Reward/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Rma/web/css/source/_email.less b/app/design/frontend/Magento/blank/Magento_Rma/web/css/source/_email.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Rma/web/css/source/_module.less b/app/design/frontend/Magento/blank/Magento_Rma/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Sales/web/css/source/_email.less b/app/design/frontend/Magento/blank/Magento_Sales/web/css/source/_email.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Sales/web/css/source/_module.less b/app/design/frontend/Magento/blank/Magento_Sales/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Sales/web/css/source/_widgets.less b/app/design/frontend/Magento/blank/Magento_Sales/web/css/source/_widgets.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_SalesRule/web/css/source/_module.less b/app/design/frontend/Magento/blank/Magento_SalesRule/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_SendFriend/web/css/source/_module.less b/app/design/frontend/Magento/blank/Magento_SendFriend/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Theme/layout/default_head_blocks.xml b/app/design/frontend/Magento/blank/Magento_Theme/layout/default_head_blocks.xml
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Theme/requirejs-config.js b/app/design/frontend/Magento/blank/Magento_Theme/requirejs-config.js
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Theme/web/css/source/_module.less b/app/design/frontend/Magento/blank/Magento_Theme/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Theme/web/js/responsive.js b/app/design/frontend/Magento/blank/Magento_Theme/web/js/responsive.js
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Theme/web/js/theme.js b/app/design/frontend/Magento/blank/Magento_Theme/web/js/theme.js
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Vault/web/css/source/_module.less b/app/design/frontend/Magento/blank/Magento_Vault/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_VersionsCms/web/css/source/_widgets.less b/app/design/frontend/Magento/blank/Magento_VersionsCms/web/css/source/_widgets.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Weee/web/css/source/_module.less b/app/design/frontend/Magento/blank/Magento_Weee/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/Magento_Wishlist/web/css/source/_module.less b/app/design/frontend/Magento/blank/Magento_Wishlist/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/composer.json b/app/design/frontend/Magento/blank/composer.json
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/etc/view.xml b/app/design/frontend/Magento/blank/etc/view.xml
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/i18n/en_US.csv b/app/design/frontend/Magento/blank/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/media/preview.jpg b/app/design/frontend/Magento/blank/media/preview.jpg
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/registration.php b/app/design/frontend/Magento/blank/registration.php
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/theme.xml b/app/design/frontend/Magento/blank/theme.xml
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/web/css/_styles.less b/app/design/frontend/Magento/blank/web/css/_styles.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/web/css/email-fonts.less b/app/design/frontend/Magento/blank/web/css/email-fonts.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/web/css/email-inline.less b/app/design/frontend/Magento/blank/web/css/email-inline.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/web/css/email.less b/app/design/frontend/Magento/blank/web/css/email.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/web/css/print.less b/app/design/frontend/Magento/blank/web/css/print.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/web/css/source/_actions-toolbar.less b/app/design/frontend/Magento/blank/web/css/source/_actions-toolbar.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/web/css/source/_breadcrumbs.less b/app/design/frontend/Magento/blank/web/css/source/_breadcrumbs.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/web/css/source/_buttons.less b/app/design/frontend/Magento/blank/web/css/source/_buttons.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/web/css/source/_components.less b/app/design/frontend/Magento/blank/web/css/source/_components.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/web/css/source/_email-base.less b/app/design/frontend/Magento/blank/web/css/source/_email-base.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/web/css/source/_email-extend.less b/app/design/frontend/Magento/blank/web/css/source/_email-extend.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/web/css/source/_email-variables.less b/app/design/frontend/Magento/blank/web/css/source/_email-variables.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/web/css/source/_extends.less b/app/design/frontend/Magento/blank/web/css/source/_extends.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/web/css/source/_forms.less b/app/design/frontend/Magento/blank/web/css/source/_forms.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/web/css/source/_icons.less b/app/design/frontend/Magento/blank/web/css/source/_icons.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/web/css/source/_layout.less b/app/design/frontend/Magento/blank/web/css/source/_layout.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/web/css/source/_loaders.less b/app/design/frontend/Magento/blank/web/css/source/_loaders.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/web/css/source/_messages.less b/app/design/frontend/Magento/blank/web/css/source/_messages.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/web/css/source/_navigation.less b/app/design/frontend/Magento/blank/web/css/source/_navigation.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/web/css/source/_pages.less b/app/design/frontend/Magento/blank/web/css/source/_pages.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/web/css/source/_popups.less b/app/design/frontend/Magento/blank/web/css/source/_popups.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/web/css/source/_price.less b/app/design/frontend/Magento/blank/web/css/source/_price.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/web/css/source/_reset.less b/app/design/frontend/Magento/blank/web/css/source/_reset.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/web/css/source/_sections.less b/app/design/frontend/Magento/blank/web/css/source/_sections.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/web/css/source/_sources.less b/app/design/frontend/Magento/blank/web/css/source/_sources.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/web/css/source/_tables.less b/app/design/frontend/Magento/blank/web/css/source/_tables.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/web/css/source/_theme.less b/app/design/frontend/Magento/blank/web/css/source/_theme.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/web/css/source/_tooltips.less b/app/design/frontend/Magento/blank/web/css/source/_tooltips.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/web/css/source/_typography.less b/app/design/frontend/Magento/blank/web/css/source/_typography.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/web/css/source/_variables.less b/app/design/frontend/Magento/blank/web/css/source/_variables.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/web/css/source/components/_modals_extend.less b/app/design/frontend/Magento/blank/web/css/source/components/_modals_extend.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/web/css/styles-l.less b/app/design/frontend/Magento/blank/web/css/styles-l.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/web/css/styles-m.less b/app/design/frontend/Magento/blank/web/css/styles-m.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/web/images/logo.svg b/app/design/frontend/Magento/blank/web/images/logo.svg
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/blank/web/js/navigation-menu.js b/app/design/frontend/Magento/blank/web/js/navigation-menu.js
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/LICENSE.txt b/app/design/frontend/Magento/luma/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/LICENSE_AFL.txt b/app/design/frontend/Magento/luma/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_AdvancedCheckout/web/css/source/_module.less b/app/design/frontend/Magento/luma/Magento_AdvancedCheckout/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_AdvancedCheckout/web/css/source/_widgets.less b/app/design/frontend/Magento/luma/Magento_AdvancedCheckout/web/css/source/_widgets.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_AdvancedSearch/web/css/source/_module.less b/app/design/frontend/Magento/luma/Magento_AdvancedSearch/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Bundle/web/css/source/_module.less b/app/design/frontend/Magento/luma/Magento_Bundle/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Catalog/layout/catalog_product_view.xml b/app/design/frontend/Magento/luma/Magento_Catalog/layout/catalog_product_view.xml
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Catalog/layout/default.xml b/app/design/frontend/Magento/luma/Magento_Catalog/layout/default.xml
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Catalog/web/css/source/_module.less b/app/design/frontend/Magento/luma/Magento_Catalog/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Catalog/web/css/source/module/_listings.less b/app/design/frontend/Magento/luma/Magento_Catalog/web/css/source/module/_listings.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Catalog/web/css/source/module/_toolbar.less b/app/design/frontend/Magento/luma/Magento_Catalog/web/css/source/module/_toolbar.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_CatalogSearch/web/css/source/_module.less b/app/design/frontend/Magento/luma/Magento_CatalogSearch/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Checkout/layout/checkout_cart_index.xml b/app/design/frontend/Magento/luma/Magento_Checkout/layout/checkout_cart_index.xml
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Checkout/web/css/source/_module.less b/app/design/frontend/Magento/luma/Magento_Checkout/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Checkout/web/css/source/module/_cart.less b/app/design/frontend/Magento/luma/Magento_Checkout/web/css/source/module/_cart.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Checkout/web/css/source/module/_minicart.less b/app/design/frontend/Magento/luma/Magento_Checkout/web/css/source/module/_minicart.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Checkout/web/css/source/module/checkout/_checkout.less b/app/design/frontend/Magento/luma/Magento_Checkout/web/css/source/module/checkout/_checkout.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Checkout/web/css/source/module/checkout/_estimated-total.less b/app/design/frontend/Magento/luma/Magento_Checkout/web/css/source/module/checkout/_estimated-total.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Checkout/web/css/source/module/checkout/_fields.less b/app/design/frontend/Magento/luma/Magento_Checkout/web/css/source/module/checkout/_fields.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Checkout/web/css/source/module/checkout/_modals.less b/app/design/frontend/Magento/luma/Magento_Checkout/web/css/source/module/checkout/_modals.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Checkout/web/css/source/module/checkout/_order-summary.less b/app/design/frontend/Magento/luma/Magento_Checkout/web/css/source/module/checkout/_order-summary.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Checkout/web/css/source/module/checkout/_payment-options.less b/app/design/frontend/Magento/luma/Magento_Checkout/web/css/source/module/checkout/_payment-options.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Checkout/web/css/source/module/checkout/_payments.less b/app/design/frontend/Magento/luma/Magento_Checkout/web/css/source/module/checkout/_payments.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Checkout/web/css/source/module/checkout/_progress-bar.less b/app/design/frontend/Magento/luma/Magento_Checkout/web/css/source/module/checkout/_progress-bar.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Checkout/web/css/source/module/checkout/_shipping.less b/app/design/frontend/Magento/luma/Magento_Checkout/web/css/source/module/checkout/_shipping.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Customer/email/account_new.html b/app/design/frontend/Magento/luma/Magento_Customer/email/account_new.html
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Customer/layout/customer_account.xml b/app/design/frontend/Magento/luma/Magento_Customer/layout/customer_account.xml
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Customer/layout/default.xml b/app/design/frontend/Magento/luma/Magento_Customer/layout/default.xml
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Customer/web/css/source/_email.less b/app/design/frontend/Magento/luma/Magento_Customer/web/css/source/_email.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Customer/web/css/source/_module.less b/app/design/frontend/Magento/luma/Magento_Customer/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Customer/web/images/icn_address.png b/app/design/frontend/Magento/luma/Magento_Customer/web/images/icn_address.png
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Customer/web/images/icn_checkout.png b/app/design/frontend/Magento/luma/Magento_Customer/web/images/icn_checkout.png
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Customer/web/images/icn_history.png b/app/design/frontend/Magento/luma/Magento_Customer/web/images/icn_history.png
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Customer/web/images/icn_status.png b/app/design/frontend/Magento/luma/Magento_Customer/web/images/icn_status.png
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_CustomerBalance/web/css/source/_module.less b/app/design/frontend/Magento/luma/Magento_CustomerBalance/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Downloadable/web/css/source/_module.less b/app/design/frontend/Magento/luma/Magento_Downloadable/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Email/email/footer.html b/app/design/frontend/Magento/luma/Magento_Email/email/footer.html
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Email/web/logo_email.png b/app/design/frontend/Magento/luma/Magento_Email/web/logo_email.png
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_GiftCard/web/css/source/_module.less b/app/design/frontend/Magento/luma/Magento_GiftCard/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_GiftCardAccount/layout/checkout_cart_index.xml b/app/design/frontend/Magento/luma/Magento_GiftCardAccount/layout/checkout_cart_index.xml
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_GiftCardAccount/web/css/source/_module.less b/app/design/frontend/Magento/luma/Magento_GiftCardAccount/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_GiftMessage/web/css/source/_module.less b/app/design/frontend/Magento/luma/Magento_GiftMessage/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_GiftRegistry/web/css/source/_module.less b/app/design/frontend/Magento/luma/Magento_GiftRegistry/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_GiftWrapping/web/css/source/_module.less b/app/design/frontend/Magento/luma/Magento_GiftWrapping/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_GroupedProduct/web/css/source/_module.less b/app/design/frontend/Magento/luma/Magento_GroupedProduct/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_InstantPurchase/web/css/source/_module.less b/app/design/frontend/Magento/luma/Magento_InstantPurchase/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Invitation/web/css/source/_module.less b/app/design/frontend/Magento/luma/Magento_Invitation/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_LayeredNavigation/templates/layer/state.phtml b/app/design/frontend/Magento/luma/Magento_LayeredNavigation/templates/layer/state.phtml
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_LayeredNavigation/templates/layer/view.phtml b/app/design/frontend/Magento/luma/Magento_LayeredNavigation/templates/layer/view.phtml
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_LayeredNavigation/web/css/source/_module.less b/app/design/frontend/Magento/luma/Magento_LayeredNavigation/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Msrp/web/css/source/_module.less b/app/design/frontend/Magento/luma/Magento_Msrp/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_MultipleWishlist/web/css/source/_module.less b/app/design/frontend/Magento/luma/Magento_MultipleWishlist/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Newsletter/web/css/source/_module.less b/app/design/frontend/Magento/luma/Magento_Newsletter/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Paypal/web/css/source/module/_billing.less b/app/design/frontend/Magento/luma/Magento_Paypal/web/css/source/module/_billing.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Paypal/web/css/source/module/_paypal-button.less b/app/design/frontend/Magento/luma/Magento_Paypal/web/css/source/module/_paypal-button.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Paypal/web/css/source/module/_review.less b/app/design/frontend/Magento/luma/Magento_Paypal/web/css/source/module/_review.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Review/web/css/source/_module.less b/app/design/frontend/Magento/luma/Magento_Review/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Reward/web/css/source/_module.less b/app/design/frontend/Magento/luma/Magento_Reward/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Rma/web/css/source/_module.less b/app/design/frontend/Magento/luma/Magento_Rma/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Sales/email/creditmemo_new.html b/app/design/frontend/Magento/luma/Magento_Sales/email/creditmemo_new.html
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Sales/email/creditmemo_new_guest.html b/app/design/frontend/Magento/luma/Magento_Sales/email/creditmemo_new_guest.html
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Sales/email/creditmemo_update.html b/app/design/frontend/Magento/luma/Magento_Sales/email/creditmemo_update.html
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Sales/email/creditmemo_update_guest.html b/app/design/frontend/Magento/luma/Magento_Sales/email/creditmemo_update_guest.html
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Sales/email/invoice_new.html b/app/design/frontend/Magento/luma/Magento_Sales/email/invoice_new.html
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Sales/email/invoice_new_guest.html b/app/design/frontend/Magento/luma/Magento_Sales/email/invoice_new_guest.html
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Sales/email/invoice_update.html b/app/design/frontend/Magento/luma/Magento_Sales/email/invoice_update.html
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Sales/email/invoice_update_guest.html b/app/design/frontend/Magento/luma/Magento_Sales/email/invoice_update_guest.html
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Sales/email/order_new.html b/app/design/frontend/Magento/luma/Magento_Sales/email/order_new.html
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Sales/email/order_new_guest.html b/app/design/frontend/Magento/luma/Magento_Sales/email/order_new_guest.html
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Sales/email/order_update.html b/app/design/frontend/Magento/luma/Magento_Sales/email/order_update.html
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Sales/email/order_update_guest.html b/app/design/frontend/Magento/luma/Magento_Sales/email/order_update_guest.html
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Sales/email/shipment_new.html b/app/design/frontend/Magento/luma/Magento_Sales/email/shipment_new.html
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Sales/email/shipment_new_guest.html b/app/design/frontend/Magento/luma/Magento_Sales/email/shipment_new_guest.html
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Sales/email/shipment_update.html b/app/design/frontend/Magento/luma/Magento_Sales/email/shipment_update.html
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Sales/email/shipment_update_guest.html b/app/design/frontend/Magento/luma/Magento_Sales/email/shipment_update_guest.html
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Sales/web/css/source/_email.less b/app/design/frontend/Magento/luma/Magento_Sales/web/css/source/_email.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Sales/web/css/source/_module.less b/app/design/frontend/Magento/luma/Magento_Sales/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_SendFriend/web/css/source/_module.less b/app/design/frontend/Magento/luma/Magento_SendFriend/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Theme/layout/default.xml b/app/design/frontend/Magento/luma/Magento_Theme/layout/default.xml
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Theme/layout/default_head_blocks.xml b/app/design/frontend/Magento/luma/Magento_Theme/layout/default_head_blocks.xml
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Theme/web/css/source/_module.less b/app/design/frontend/Magento/luma/Magento_Theme/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Theme/web/css/source/module/_collapsible_navigation.less b/app/design/frontend/Magento/luma/Magento_Theme/web/css/source/module/_collapsible_navigation.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Vault/web/css/source/_module.less b/app/design/frontend/Magento/luma/Magento_Vault/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/Magento_Wishlist/web/css/source/_module.less b/app/design/frontend/Magento/luma/Magento_Wishlist/web/css/source/_module.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/composer.json b/app/design/frontend/Magento/luma/composer.json
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/etc/view.xml b/app/design/frontend/Magento/luma/etc/view.xml
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/i18n/en_US.csv b/app/design/frontend/Magento/luma/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/media/preview.jpg b/app/design/frontend/Magento/luma/media/preview.jpg
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/registration.php b/app/design/frontend/Magento/luma/registration.php
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/theme.xml b/app/design/frontend/Magento/luma/theme.xml
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/web/css/source/_actions-toolbar.less b/app/design/frontend/Magento/luma/web/css/source/_actions-toolbar.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/web/css/source/_breadcrumbs.less b/app/design/frontend/Magento/luma/web/css/source/_breadcrumbs.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/web/css/source/_buttons.less b/app/design/frontend/Magento/luma/web/css/source/_buttons.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/web/css/source/_email-extend.less b/app/design/frontend/Magento/luma/web/css/source/_email-extend.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/web/css/source/_email-variables.less b/app/design/frontend/Magento/luma/web/css/source/_email-variables.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/web/css/source/_extends.less b/app/design/frontend/Magento/luma/web/css/source/_extends.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/web/css/source/_forms.less b/app/design/frontend/Magento/luma/web/css/source/_forms.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/web/css/source/_pages.less b/app/design/frontend/Magento/luma/web/css/source/_pages.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/web/css/source/_popups.less b/app/design/frontend/Magento/luma/web/css/source/_popups.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/web/css/source/_sections.less b/app/design/frontend/Magento/luma/web/css/source/_sections.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/web/css/source/_tables.less b/app/design/frontend/Magento/luma/web/css/source/_tables.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/web/css/source/_theme.less b/app/design/frontend/Magento/luma/web/css/source/_theme.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/web/css/source/_variables.less b/app/design/frontend/Magento/luma/web/css/source/_variables.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/web/css/source/components/_modals_extend.less b/app/design/frontend/Magento/luma/web/css/source/components/_modals_extend.less
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/web/fonts/Luma-Icons.eot b/app/design/frontend/Magento/luma/web/fonts/Luma-Icons.eot
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/web/fonts/Luma-Icons.svg b/app/design/frontend/Magento/luma/web/fonts/Luma-Icons.svg
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/web/fonts/Luma-Icons.ttf b/app/design/frontend/Magento/luma/web/fonts/Luma-Icons.ttf
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/web/fonts/Luma-Icons.woff b/app/design/frontend/Magento/luma/web/fonts/Luma-Icons.woff
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/web/fonts/Luma-Icons.woff2 b/app/design/frontend/Magento/luma/web/fonts/Luma-Icons.woff2
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/web/fonts/selection.json b/app/design/frontend/Magento/luma/web/fonts/selection.json
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/web/images/logo.svg b/app/design/frontend/Magento/luma/web/images/logo.svg
old mode 100644
new mode 100755
diff --git a/app/design/frontend/Magento/luma/web/images/select-bg.svg b/app/design/frontend/Magento/luma/web/images/select-bg.svg
old mode 100644
new mode 100755
diff --git a/app/etc/vendor_path.php b/app/etc/vendor_path.php
old mode 100644
new mode 100755
diff --git a/app/functions.php b/app/functions.php
old mode 100644
new mode 100755
diff --git a/app/i18n/Magento/de_DE/LICENSE.txt b/app/i18n/Magento/de_DE/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/i18n/Magento/de_DE/LICENSE_AFL.txt b/app/i18n/Magento/de_DE/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/i18n/Magento/de_DE/composer.json b/app/i18n/Magento/de_DE/composer.json
old mode 100644
new mode 100755
diff --git a/app/i18n/Magento/de_DE/language.xml b/app/i18n/Magento/de_DE/language.xml
old mode 100644
new mode 100755
diff --git a/app/i18n/Magento/de_DE/registration.php b/app/i18n/Magento/de_DE/registration.php
old mode 100644
new mode 100755
diff --git a/app/i18n/Magento/en_US/LICENSE.txt b/app/i18n/Magento/en_US/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/i18n/Magento/en_US/LICENSE_AFL.txt b/app/i18n/Magento/en_US/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/i18n/Magento/en_US/composer.json b/app/i18n/Magento/en_US/composer.json
old mode 100644
new mode 100755
diff --git a/app/i18n/Magento/en_US/language.xml b/app/i18n/Magento/en_US/language.xml
old mode 100644
new mode 100755
diff --git a/app/i18n/Magento/en_US/registration.php b/app/i18n/Magento/en_US/registration.php
old mode 100644
new mode 100755
diff --git a/app/i18n/Magento/es_ES/LICENSE.txt b/app/i18n/Magento/es_ES/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/i18n/Magento/es_ES/LICENSE_AFL.txt b/app/i18n/Magento/es_ES/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/i18n/Magento/es_ES/composer.json b/app/i18n/Magento/es_ES/composer.json
old mode 100644
new mode 100755
diff --git a/app/i18n/Magento/es_ES/language.xml b/app/i18n/Magento/es_ES/language.xml
old mode 100644
new mode 100755
diff --git a/app/i18n/Magento/es_ES/registration.php b/app/i18n/Magento/es_ES/registration.php
old mode 100644
new mode 100755
diff --git a/app/i18n/Magento/fr_FR/LICENSE.txt b/app/i18n/Magento/fr_FR/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/i18n/Magento/fr_FR/LICENSE_AFL.txt b/app/i18n/Magento/fr_FR/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/i18n/Magento/fr_FR/composer.json b/app/i18n/Magento/fr_FR/composer.json
old mode 100644
new mode 100755
diff --git a/app/i18n/Magento/fr_FR/language.xml b/app/i18n/Magento/fr_FR/language.xml
old mode 100644
new mode 100755
diff --git a/app/i18n/Magento/fr_FR/registration.php b/app/i18n/Magento/fr_FR/registration.php
old mode 100644
new mode 100755
diff --git a/app/i18n/Magento/nl_NL/LICENSE.txt b/app/i18n/Magento/nl_NL/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/i18n/Magento/nl_NL/LICENSE_AFL.txt b/app/i18n/Magento/nl_NL/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/i18n/Magento/nl_NL/composer.json b/app/i18n/Magento/nl_NL/composer.json
old mode 100644
new mode 100755
diff --git a/app/i18n/Magento/nl_NL/language.xml b/app/i18n/Magento/nl_NL/language.xml
old mode 100644
new mode 100755
diff --git a/app/i18n/Magento/nl_NL/registration.php b/app/i18n/Magento/nl_NL/registration.php
old mode 100644
new mode 100755
diff --git a/app/i18n/Magento/pt_BR/LICENSE.txt b/app/i18n/Magento/pt_BR/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/i18n/Magento/pt_BR/LICENSE_AFL.txt b/app/i18n/Magento/pt_BR/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/i18n/Magento/pt_BR/composer.json b/app/i18n/Magento/pt_BR/composer.json
old mode 100644
new mode 100755
diff --git a/app/i18n/Magento/pt_BR/language.xml b/app/i18n/Magento/pt_BR/language.xml
old mode 100644
new mode 100755
diff --git a/app/i18n/Magento/pt_BR/registration.php b/app/i18n/Magento/pt_BR/registration.php
old mode 100644
new mode 100755
diff --git a/app/i18n/Magento/zh_Hans_CN/LICENSE.txt b/app/i18n/Magento/zh_Hans_CN/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/app/i18n/Magento/zh_Hans_CN/LICENSE_AFL.txt b/app/i18n/Magento/zh_Hans_CN/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/app/i18n/Magento/zh_Hans_CN/composer.json b/app/i18n/Magento/zh_Hans_CN/composer.json
old mode 100644
new mode 100755
diff --git a/app/i18n/Magento/zh_Hans_CN/language.xml b/app/i18n/Magento/zh_Hans_CN/language.xml
old mode 100644
new mode 100755
diff --git a/app/i18n/Magento/zh_Hans_CN/registration.php b/app/i18n/Magento/zh_Hans_CN/registration.php
old mode 100644
new mode 100755
diff --git a/auth.json.sample b/auth.json.sample
old mode 100644
new mode 100755
diff --git a/bin/.htaccess b/bin/.htaccess
old mode 100644
new mode 100755
diff --git a/composer.json b/composer.json
old mode 100644
new mode 100755
diff --git a/composer.lock b/composer.lock
old mode 100644
new mode 100755
diff --git a/composer.phar b/composer.phar
new file mode 100755
index 0000000000000000000000000000000000000000..c8152aded231addb003810c90db4694aed117490
GIT binary patch
literal 1857534
zcmdpf34EMab#GV#L_i3Hoj}Hp>>1gX<ZJ|FM~))Pw!n)b$w`Rih_N)1CLYZwGb1mF
z9nt`0EAVKb1sVuphnBJxS}3HH6ewE@lqH2WY)#ud2>VWe_y3=J&i(GU%t*FF-}}9k
z`e?rI-gD16_uO;OJ@?%EowcHOu~F~cSFZM!st0lla|<0CH}T)zH66J%x$(JjBR5m7
zlyZOz#d<SWo5>B<<`-&>QoRQySg0`7mD^daG;#yerTToaTFq^&7Tup0*&jXArGA#>
ze^0B`r^~sEYqPWEVzrjrcva6n{rjRusWRQOPl~eimRdd6oGayK7Auw9RBhpKy*xYD
z%oVHCxk`DeRBeE+>P!udHp{i@y4*sgRK&9b<<db`XH_fLoGUiTM5Q)WY?h{T_{G=z
zYRzVCo?JDJRkGFF(b3zR8#quaPv-_k26I!z#YVY0o2#Q~6rU+Ji<MldUa!?5mQp=8
z*K95{`g(h3%gwpPeLYjP`Ck0LNGbZG+-NM88olQ{`Mi$uOs-Hm)C32hd$Ll4xTXvF
z;=)wEE4O+zm?}@smYVXUr&KNOtCS|ED&>rqQ^l#d(&WCwlhdV{;$o$l@9N53+d(O_
zi36p&G(cL4^-=*HtB<s?b-DbxJ?neUJ|~aA`Y()X3kFcpFe*|Ft;?<N+8`|*&6O&U
zx@(pdXAaiO%~D}(eDl!gC=g#(tXCnuJ`v@{3v;f?+<ft{2p0Vt%Jbk{shX=VR#^p|
z?xe^+pjy+7o_x>9wvox9UE8(wtOj>4Orw+8+`1f82u$Q4+dz_h$|p&#a?M(9J;a|o
zTwAPjH1wb=QcWK1INH%MGFPnk_01O-_(vgcg!U}pXCAcGOII(J>!n<t51<;c0y5z2
zNq$2|$K>R;f$igygS&Q&3~wJAEp%<jZR&q$$1h)Y(n;UB&q*ge{G^jky3a`u#lKcb
z+QILW*5dyg^{L)L)3<@eW{n!vYkzDlRZI0^vsOo)h2IuWI_cFf+I0nCbL(qf{(fNR
zf349BR*H?rj^aWL&7XrJq9Hu(JD+;Bp?Ne=#i$vig0kV}>8=LhNe^Frmep95s^NON
zcVJ&_u?eo&?L_eD`#J=KAH3zZIYW?diJ(3;S3Xb*P;7ssLqYi5hi<skP;|CJaWTwE
zQ2&#sxcY>DI<n#oR==lR{mrF?QgymiojM$1daPms+<fhOK4+NDZiQ)Zt~9lOq*83s
z+>Ms5ZUo3~c!)zr_`v6H{zF5yrX@1i$-4ARfMxH=4h!L#H+=oC49n`4SZdXo@@#<N
zdD|QY!hiV6$zL`M-7PWHOBkmk_1aaXsj#ba=Q~7%kG$cEM;oG+UF~EX%H*$ATL^3K
z{=lycMWGcfo6E)7DyFr7pD%57WDx$~r}sSAaI9;IV{v}LMqPmC5giT>VgBiV@mj;v
zQtgHgm8OFF<p;X@g!do%?e$i_WzTG_)b<rC0fu`N1L41Kd+CH>Xi34g+I%R9+fH>9
z5We#phc8~T{&2M%cIe`;t5105neX=Mo^K_|;c5d@Y{<fI)P4}I|5@J)jD(gQy4`sQ
zp;D|?HVFUaz_XvUB#vE+P0l3Kfhgalok@7XH?G-lIJ#P~0`;CN?<+S$LPA^i_}Q2K
zz>u`;(b3X;EoRF8>`_jlg#BZ`eWhV&DN)!A&PM?!U(Pucgctw(r$dIKB`2ec)v>91
zc_HlCo7MIZ{`&S^rx=pde4-8aIt&AqaxoN0O^pxXL(jjXVrW_lWDFK;YA)dB+YfTw
z5dQGNA3A6l*0k!Eu~KEmISK)m(_nx(uMyt!wXQD1(sH1T&D9PD^%rMdeZr4?>8{hQ
zerrCO#pYrtiC*nk!k-L1V$v|Q)bp{$+1XMfre1G_r$8<UKlJ&Nrwm6+DpGQI=UEN|
z;h+BM#p8ydB^8$zD`gIqKo)1|Y)klplU{S3;dop|kGKT|X8B*9;u<Dg`?d!?+$udL
zU5T>~9fOapbX5qqeC##1Se1-vhgIMy5sbmZn<@=go2B|paY|g2Q+3WDeD6c{^ctcJ
zrUlW{8ntSOjKr)^Gevmo*h6<3jtm8=Hfohp@4&(W)+n-oVg0w9>zE;Y!R8HDTm6hV
z$JO7~oUg!4Ei5*%TEapI{1DH%4{&%0zxoG5i-sp9l*m09ErB4c4|+G3rpjD5G>GVu
zhdD%qn_l@BorWmosbnIOMaf7F93CdJ`=T4En1nz5_XE!|WWCAW%|IspXL)LLu_B%I
z*Y|U%2tRY(JKt-l`j>%f7uIYd@m`&0`~wm>sA@p?R}(*7W0;4J3G<F(eZN>aZK5<C
zYvkwJ2;ukt=^H<{MxK6rjqJv1NoLGMGr!Sh2p@OuS>83g=$M-El*fk4zW@h2lki`^
zwfaAdg$s`f_n7FMZ-E`~0jx=gm~i#$OC5&zqGLkrMH0h3tO6n2^6QU&(r_Oe(av7R
z5YMST68>!LOM4A5#&LW_l%d*gfW(CR4wV7nV{d-ZsG&>QqD*wP3g!5&l}?U?Pdw!%
zs|-hKZqC9{uOaF%Pc*N>qK@4`c)!1T-ai}*8hRa=oQUSx_jhOr@4R&6IfiCA9ND0M
zzb=~yzk2P9Uu-y*V~mL7ob3oq)Qc6dY;RG52(SBG{zryvIpQI*v6Arhc6A5|C;#b&
zCm5RZmeKKwCbqQR{sbo{!du?^%##h@auiAN4U<V-@IPE90>VEVyvN(`bCyZoWyL1^
zthr*j%1$h+S`yBE|JCb^xMRY$wO(A9BeriUZG<nV|KxySTW)s>Z98kzG9lch1CVg;
z_RstEYsvx4&~|5pNYc$uandJz(!$U78A(rGhPWJ-ix+2y4o#I77?LE$SE|SepSAL8
z?-6WRHb$%<I2Ic*v_E;EBb4wfM?UsuBXl`a={Vw;jpCG1_^+osRD|b$dD}+}RoYjm
z9jr>Qvfex3f-9T-6SDeVb>0ZS{DV7gHbm+E^woNyTGiRoXlbEVZ^kU(XCNP%9m02h
z<E?*Z$kM|zLT2RbC{~NJ&Jo(G{xsnW3wQsmp-IarjiywOQS>S8Ny6F23cpB6kIVqo
zfvJX3l|c7-Wsq?7-{0gJOe<`JZVO`Z5jx8J#cC1>&%WW?k6aFa#L_t2XqM(<D%GL<
z5%zRH=|zSr<$FdH^lqs&8s$p#fFwQh!LH{Be>eO#?|XKE(O7UWs@A);+>Cw^$tKuO
zc0Xb1#gEAwG3}(Y^_ucR9LtZ@!Vn()YVD(jB|YgxGTt^D$MF=^YQpav{zlbsw4-FC
z*qn=FdHTa0KZH+x#cIDMTi-?~BUt2)6sPt>mxm5D>lm>vh`Xp$1mQK$dDQcaqMo+6
z>IfZ9CA8-)YDEaY_3YE$YM9#chJbdQw>!};`-<?6PoDW-hNWGHk0z14R!Jdz@+s%;
zUJjD61JyVsUsov;zOiuQ>z0FLJW0v7l^w#*{_*9T3`sljib<sni;buY)!QVz;-CKU
z4#V_RU~V-ME}d!&78khZ6R{RELtj+#2%q_upZv^_wv#rHM%XyKR;p7+c+=x=UN9u>
z2FB&r#BqcU)McF;zG*nx5pqRxguYTIAHqMo=)U(DlGRBO4IL;|o14px1v(^HrOI!z
z@;VhV;k#dT)%OiUYGh?%h%ge@*HMX@On7wWu@5v{sSeA;HMY2~fdJXQgrR?%b{OH@
zU*Bi_vXQ!28Kc3AoU3E1bwH649=zfyV}>*(d|#_~XKk!e@juD#j3OcY^xZpNV@NQU
z#PxHF*dAHK@5WMzA|hP%zkheP)p>lf&hV~Y?w<_rVoQH?nyW=vxS{egt93?Jt;Lxc
zh*0XSQ74`7^?y0%15r=RsE1e#A{g4>T{`a*?*D`JcUpsIW>g&B6&qmR)nFvyNnd)+
zsa7?M!=2cgc9ecZDJ9(U%*Ll$*V2``#Az<S$;pNAt~=M9VYN~Q*un_)-iyoCV*RlH
zP3eA3%^u;#L;X3!l5)#^EyXfYFEy|=6_0~`8f>$N2|sfFtNo;qvVRda{Y!!>f%Da^
z@gBlkkN(jGMpsHnQ<zG1KfX`J+)Z)_D_^{(Y)IOO$fFY^vf8^tnIin|%@=JoEGZ|~
z*R|kKVl;nS%?;s|&%V+3^I9N|+4Km}_VT`ZvdgYiyGMB1<3C$BdQyIAgl0#niHSkn
z0soM_f0Jq+;m05Gu@#0YWy^gnn1b4Z|3w^YRp$vm^4B|#8jgHxuFNx`T_%c>F2D#k
zyes#3L(zte5QX&8->3^pIKA)ohT&+VdUTR9hQzlX;<Scv!!OF-ooGi5FvW!OdUZ(%
z|M7<Rf8MBRqj@8h#o2N-hUI3}U&4*eU->n28->v=(HNR1DjLEy>n|EHV&EUQ(mUN6
zC{3%J8*Z897DlHjbA)T(z1N3zo|MGLFn2Hi;j)1p{e4wk!pXv8{l4f~t!sv%=?5qy
zgire1)qZ)fs%3Rpl=8wNHou+w`!1L@8U(_Z{P+F;$s~~)%ARuFok-516RK^5J(vIZ
z-waWT5|v-C1a$QWC2_LaH^LA6>2*F0;({bA9)Vjn+xnSao-D@jj|T2fQS(B0_!(>c
zy8bv&BI`irm^*ZA6F%fU@A-hS2_Gk}IW4Fx1s45XI;;q1fBOZ$L3ZwPamAO^57ZtY
z{NZ2qdsSK*9bF6fGL^+?N>GLOC#qV6hu?qU$Bomag@=7B*@H@<JX0woe9_ny-g!$+
zttsJQNt?oUwc1F+^KUJ$HUiIHQheJORf==_VC`4JhrZ&?-UUn<%M@wMS<(oOXh^@x
zjqr8nzrg!+sS%aJ1b;q6^dX&!2w!&jzkkR0>ukjzyHSyHK&^hL8`^|V$e;P|RzGF6
zjS%)*rGz9BH!l*$J<1H>Z+Cq9{f48Zj1xFwzTi)_`w8FtsXu5PBsPLJBL@VllYx4@
zc-Z|-n!fX3#~0zhJmoUK*Pe1?4bAp)bw4XUU;CKw&i6m#&yAUu8qJDygb^+%SDU><
z^9xNR9@%fAyg^waJoT>YUSudYwd$h;%J|Qiw5Am`;TwOl-G@q+OYIJ%FqT_W`{RAj
z{EboDw@hls7O<N+Q${{bD1$JLeaFjR?YBl!>%6c(A{4!sy3ESx2?cw(a!+{Qqt85S
zq^2f%kCcg@sw>;&Z=yL9Gccz&!s>N5{h6U@EkuWAxO#w_@QNJPB8ou|>7+t<Xy56#
z8p@O-lc0<fXhhgAl|RB2*FFDQ!;*4Y6IdLEn4-J~y+<Ai-+c5}ehP0nMjejc(ORvk
z*dw|+ALEb_ezbniyNs^$TdIf?n0W=&SsASn!UsSNNFCwlPk!3N3}I^R7%@7v-_5me
zTj8n_4!rQE-T>xW(V{5W@t?#3lg$!N-S$$S;h0)2S+fdbl6{@Jb%ekE#Fc&uY>9*-
zP5L!wp5iDWJZ19wUzh+|n(?4t$jQUiY7yS|CI2*O^;^y-LH!svAJF-daOHgQQbW{I
z<#b@$0Nsk+N2aQSrad~W2*25VzaJZ_ma}C7)kv|fm})x75zas9`VEGur9YLxgv=x4
zJ33$X>FQ4rzGvgZ{?TxyB_#`sUI`7BE9K_l;7_u585E4lL-?PQZ#~-(rTvsNB9~-~
zMaO}%x{QCS*a&~U>s$SXEj<DPY;JY%EUilT@v9%T)~cp;N2|Kl{c`_XYO4s}`|(d)
zwp4w$;))jfAJz5=ul($9A7J(K_#IoHyNbQGVuK55i9kP56og&*HMbjzRc%oOUh<h>
zmYqTPotLcin@;OmA*jnTz{0Cu7SB{!5T5kZZf_=2Yradk%Z}wu?^v^5W-cufl=N7H
zy`qvlNyjB&zURIFZH%R6C@vHmW$5T(=gCCBiRScE9ead#eWrPmp-By;s2b2T%aCs~
zdPGcrtLjhq{D1%XM#Gevn4)SDRE&NS%U<;w3IAjDxvlp@qG~>0K6*q<d&V7Sgl}BD
z)Q_T+y@{$RCL|U_&xmTngB&WtH@<W1Ok*vz?;BOq)U?Gq*M-sJm_>XpG=Zu``0kr0
zeZVkfe4_fjvc#1AzUU!I>{N9iy!EzkKG#T0saI6Z2gRmk&Wv6V-y4)R!rq@<=dDJ{
ztBR^c_*xMeBE7WZ6@D(k27P=yXCaNA#f11gC6w^7Z+Pm0G5+MXIK{n+FvdKrs$wMk
z#*N?c`M4=N9@X#F={tHt8D52%j{Qscrl0)iGe%mw5y9QYIF^GQ4h!K)*ZuUph9xx{
zMAdp3NRz?EE%|DxGFqZ{N}7gMPY9<T^kk1MWzLe=6w@#cX%Wvqr~^sZH@?OvU$wIv
zLRE^QyLF96xal9C;kO0aX>J@-qj~oFh{L~BhllW0U;dguE^tiv&W`Y{R(ym%+P&{V
zCjXR6nv__SoDyGKT&*(!;Zsk2%!P)qonaD&BZSrqS8Fd2&U|p(FKOEiC_$zA8exoF
zqUT~8QLGZ+&pWsK82yqO;$2v$A@5S{C%pNgfAbJyb4fg-@Ts`jq?-1}$|GUz#uwgZ
zc-oF4=zr85)YrEwSA<<RKidbz+v=-7qhm8DG2KUZ><RBTx#PP=PdoDv(Gu*wy#hNt
z6g1)W&wk4j4N*Hih!Dk$;MY_}gn#_-Z~eWYS{_Y-x3f--4dJcNop^;Ix}c3Ujc6Lf
z?k3I)9*&vQnwnF>g)ja2+YMzqHnGQzU9IN6MXbe|o9j6GCC2L~>h}}g|Ii!nF;wkT
zil{WR#p8L+Bb?+3PyNW=_ZgmcCY5*)2F#%9f2&C)yzM1_>(h3++Q>|?MXY^Dm4Wbu
zZ~NT;Hj<WN4J2(_+!x__4*WkV72z#6KF&uRmVsw`F~IZLvm746ukZY>-x@o638uEq
zW=QBiR6>O1KfC7}##|~C7^zY(C4}@H-)AN5Gs0afcAaiG+6`dh7{OXVl4U%myc%@E
zfBo^clMT~S{lyFwkK|Em1qh$`rE7eq!cs^;QiS9`b+i$dzVgm)qhu*P^hjbxAk0Jm
z#N~TlVAz%*DUvy@+h6GrBfQVszwGx`Q&Ie=TJL2T^K^4F+{lONBtUrU*2k<dn%dbD
zLl?CWWAg=S>j+=g+whW4ElOR=1%3K?oICXkvCGsR5x(KlE1E`9Dt@c=eZ}|byiHhX
zzIlgLY}K&NhrT}20%T|szU6nHeCSg3HD!c*va+E%a(`E!@Odx2zYm7zfG@Thj*dh1
zKD~5U>b^#WM)=_GeQIaxw*65mi@QkuFpuK1?|a#^t$wQQ-OX}^$Cc-{l`06HQ>8ww
zIzZTe&7nWBx~Tw!)b-|rRaa@|2VwQX*?+OBDUnN6+xXd0=5c=3f47Q^@EsriMeEhS
z*5_Fu4JA4RZ#vb<obV|>e62UjE0Z!81Ve0h8<ef$IDeitPq?jg#!4eUTWZm&iKL%_
z`H_a4@RM)(-QQW=$7QyRX@Hehtag<MD~;cL#VVcAsuJc7*868QM1+5T`^23~*27%E
zdartjYme|T7jNHU^|HGbCrKl%*sEGW_?Q22*MC^m&P-Bw))3M<bQr56#C9YX`&L~x
z5MHtNUGr8Sb}K#_q-SgvAkjBq4x?lV*WI-5&=NJ(31rQCv_A<O@0j^7tGOz>&3bJL
zAxoF@<<#k`4|YuxzTpf1>ZcxbR|e5MDcW?K%Ch1o3BTFrFc9we<yD_E60+GI!!|!s
zf@Cb*1+zuA32(ggsu`=fBD3wWh3P|j?3T^mPwfZctrv9s&?>LVuH3|F@Oi9ynz$Jw
z@OU4Kj4_fx_~~tH4j7hfoyL62rf-Eu#7cyp-G8Is+0WLo@k%4ou?1CY!Z()g_|Nw3
z?XJsFn_CfWm-Ya^c>68?Y?V?HzI?j0Z*evl?l(Tn)g=7VWncC&6A&)FyAR=cZsskJ
zt?*>jqlS;(WX+^>$xfm7%Iyu&&PD|bTGC1Q$G_O)kDZ-`){qM3Z>i|6`v72f1L>CY
z#h$CM7xV)qmhca@e$M-3%omJR59%C#g=>=Vy`OpiGmYjaqYkF2=~~^l+S`Bvb>pxg
zuXbtl5~DmR*<Myds5q*^CcIzoGhS;LxmaH&Mr%XxedCWDg@kW-*5h{>KI*CB<Ha<+
zxPqm7p^gpbrjRyQp2oEf<tmO|_LL5lPJ$7lXbE5O;x~Cc<uElYhv#Q%)x+R7^X%tY
z@Ggjf@CpC@gKM(rNMKMu#rzfO$d6V!EQFsL{k*p~^m$v*VOTf_^lxIiUFA&J`HVCC
z-t#grZ7(;%Q{q=>ER^t*Z+P9KjWhc4Eol-Ni6bQ5#9b&$=@5>7?TaPDv9UFd&83E%
zSBHuP$87DXp3nK5(nk2Imz?i+4;fHxL7QO!-sn$C>?JBO!n=O(l$(u420)JmSIl?4
z2bIY<;kz$+pkH_f>fT7GMMRY(Zbd&y<Tnu|CqBaGo$`&38<C9vEKMZOwNB%(L>%V_
z)a4=Ee{)aKa4wI=aajB~zW2azl19RpzT=nQGJIT7EKTF(^OZQd`@)wYI>L^<&yDS)
zv_L0{$ACOjigi$Uul!v)vk^XU#YwSUyXD~Xh(4zCE8!OoeQm<{42)y4Z)1e{poz!$
z2z8MNzxn8M?mAYC<G8~M3C7Km$9Rp>Nci4$-`j2&k^kMQFFaXhn0D51Jbe)hDzoHN
z#4oB83IFluIgj{)<skN$Vq;|nRoT&mw+vkT_G6+|6DS7ivy1asKlv6&>zfrZ;g>)2
z;VTUB2K;W-<HjrYIArT!mz)V~iT3nQe`TAYZKLPDe((0$Y<bH6B$a=xR1$u6*Mzr`
z=P!p!T<_5=&oikmN*wtUMM(IscdvW0(br~N`)de#Gp;2#N9_dR=x3fWXZYIaQcHZX
zj{hUoCBh&5@P{8U#BD5ZOT=T%!)`14Y3h0s{`2NBKg=&~Ezb5xV<bOENhbXHhfniS
zlm6qyKGsAM9Mzy-LuZ70{_yYq#DvktsyP1_(;2)|&qL%CAJR#ZaOc}@|Bzv1(5Z#`
zdyF;*N7xQ3eS{y|_Jbb7*0VIWa<NjIjWGR6=Ly0OJ!ID(7$&UJmY^$x$thi_5#IQl
zKlkyD!ji}$g5Ihg0O3uwU!S{tf*g*RhTMsUY0U`FeBtXJYse6$U4lD@Oi!qPQfVT*
zY35Pq8=9p%Z<x;Qz(L#{7;!kIYD@UTU;M8lhOKu=qOcn0+BQP<`BNN!gcrU0+rIa>
z1JPcqfNB=YgT}>0S*Gq^<q#2m_i^9z?nfIR&QZ~8h$5mUG)PPMvfG~F!$)mQast<I
zb(%N2XoAlp9cfPoy!(vLF2}u8be6agk#>r@F@)P6^Q-er^lc_g#Wm&}#5Br^u67BZ
z^z%FX9GqXW3&t6}rL}o0)=AV-!qT<Tok>e;sh}7vRb&Z$y*e(0pZVUJuNiYoD}$hk
zq;#srmk2Kz{os=f(bCEwh{j5|E7N-KQxF4rBP?EX<{5@--SWiaXOc5J93H}vJKpzZ
z!?UI}9vOQ`o0&Zze^JsGJlbI)y#10Ret)HnqzwzQkv*D6B9KI;2tW0KAOF^fS-li7
z9>ePu1L4b`cd?IAwlUz25c$^}EV6Xk0~{@ct2e&+okmL=2P4Ep(-bqAuLcj~jqrI_
zjr$c?o6ZmLZ7$8=!cV&w;e`k>5f|ZI^WPjX+S*vU09TBx*Qjz6{^eP3IL%PC(W3yB
za~vtI$Et1<{_;0Fy#-hj5A(vRvx1X&!h;f1-<>EJJ(xyYS>El#gF`#VhPrf;B>d~H
zAs^0ZBNX_lxQxNpQtlUt=uz`e_{KkqR%LDa%DI%i7t0Az+;t=uUlG@&&Ps$YdR_l=
z`bu%>5-&paE}bq3_wK*0X0mCsKF&fF>;G@4S`t3*4?pflZkv8noIGF}(e}@(M}&X*
z$`|=%NE;VL@kBUYsbVKQb797>IotS5F&r_*9-{;ip7h-ZtTth_u>^_?8i{ysMAk=7
zcB75({%_hiY?#`3DK?$q5|J8$hW3;C5GFvK^Qh(n3|pH{wCYsU%<Rek(uFYLL*MbE
z8N=D86FpA*gS35GJAm*DSHEx6@Z=!E7H-ejoX(PWBJxU`MEHtV9~!f|ZD^25NEc&%
zLYh!%6CV7^8}Dy;+6-fdNB)heK&X?es~_{HB->2fipn`9o~HLBI#1pR-~N@;e3DEX
z&ubiMuRK8!U83inP|W|VED|<e`&6Hk)P_Yxr{SIm)!TKJB79%ZxBOw<jA1A7eKk<9
zxRJGMs)ZuF@T9qaGl^%IT!%x}Vq_%Tg!#y!;wG!vmDZP_W+L)`3%05$T*4n;f8cqB
zWK}C9$$iP|2OR>!H~r^NZ#4uND{M!F4<xuvh|CaBxCXBNuUnpLNHd0M3aQ&E5;A>L
z6xS<N(1hI`)8`n@4EvVEi33~n@kFHiDl)?EmA{@gWEo58B(g2M)jUn!_f?k&|MMX;
zKFYsbjN^0l+Clo>f|?9(R=Y%a%R@eTx6zm}Zc;R2qY~H9$K>}O^)d;!{pj-#GjtiN
zj3hc(^IbDLumf3-OYu4=8I_OlJ8!M|aBfD}Cy8=5PO-u%D@|`%tjdj5F<PIm-9z~L
ztv6JS){L-ROT;)<KUa%KCjU^;625i&SNjZY%Ms^^3U>A$2l<m}!t#H=(EDn`twvm=
zFp4EUa8j??_ZK|EHA49Lt9pH2=+N>TN#TuI_iz*UA3kvLr6!6U%Wojng{c<F$s$5a
z6c^!LSKaS%*3i?BqaoL&na%9fS%L5qwQj#Xh9z}!@^u=sgx}kjt~cYa*Xs3p5&adD
zZW*=7G+}4%cRuqjV_;-rW%@^^Vf~P5FyX@86Yn=^X4r&G#KXHh>Fk{6DLTUI?>WoQ
z@f(-PeSj{;|C^P6!mIxEpihs=m{<cc$+f$`jI{j>9wKE(_??mHi0+EEv@OxC86!O)
zV0&$9e=yQtuR2Az`DGitr;#z^z?8|6&*|cVI4=9Rw?EY!aKFjUgs!a#KYrsUueYAd
zh~c+Dwgqhj2w$YjSi-#r_WLs}5LZ&;lL#GEu^#&~b@&N)Jn*+qF!C}MZ3%1_H>MMm
zouex)!b^HTF}QqOTdRu+T#r&*goTIP?VY3y$2dXP$lO98t?*vOM?bO8<H_(E6%V{c
zjTmvaD+nI_k&24&(FcD!ZtP`_K~amSe(z>?nRbBgEJa87=y#pzH!)i)Mu2YT;ykXU
ziXKqYjwnLH;qgy=*67Rd=#*7&6M6@x7|Pv@{D)F}>U@rlXu=QQ+PKM(X3WTGq)y+q
z6w8&xdVC}5FVx2&y!_6W`J9gouPKGrQyo*}kkB)>Uej%a4zwH=9#5~o`4_eqSz_}z
z{1ul%m)c9h?@nFir{#;5fn3&l=qV<kW{Kj1Dhk5Ke(D!KCfQm;hYl?;SkCi-(Vx_S
z2dXbh_`cc~{VF-r`iX`{^?Ui12_l(6B#8Exu=4$X^P!iF*rx9qPtRy+wseSC?*A}{
zh47O4jkj2Lv>q%0DM-IujK={#s~tf2p6h<G&(P&scEA>~%p~OlSh<oR!b=|iJHLR)
zSg9#PCW@!)L_m1eH{b2u(G1sFYuZ)4y@QJle2EG(8>R(&NMiPAZxg=b{&)K0u$g{`
zbdl8-6Ee!%Rnu4xDOSRV{p5bW&svYt2rG7n=USlso=TnYp3lDKYLogvOR0Ob7+k#F
zWHY`|!L!ka(=^|$!X>Pp{8PVIo)Ice3Kz(5Lr8P3Va-vpIaPkbnM(%!W_fG#XSL-(
z<@n)+48dNZf+Z|Ge)TU*0-26dyt_ywGQ+SOYo?h$U-1gO`^-lg-enS7EzV~UTi5O)
zY(D7mi-xqd-x5k7p{Tbhg#y>U?+!zj>B`1Amuo+8jmyZCoP$mv?$&-M{NO)*VbTz{
zp7%VJ?DMoN|5@24{NNdH|AZl22Bo7stkl5KBCn^`7B%YhQ=H)-%st|^zca+k7^`FD
zYf3E!RY?U)c=I2B(`WRwwv0wo?-(v5WvIX&kjOQv_Jr5}^slZoBA?iDj4t6S=UY~k
znaomv*!Cv%Z3T`Te1WySY6%oR{JEfW4dG+|<>>4(5G+(Uu<T%9_(6ozpLx6A-OX5V
zEYvE8XUdgI_dK0+#PWJG1o6E!+x=L~2zaJ(>`-JB$3MV(;Y35YyXP_gZrogy7DpP<
zC_dN0Pna}%7pwgAO0l<6I|vsKryz;@oB@ZM@WT(k@U16^dvO5=GYt1FiktA%ub$!^
z$BdwVn(kOa^SgD{Cp_}Pw|&8=%$P8dc}tfwT1ZEK#r(P%2v6J*z`Z}~_g;6#=uV?-
zmjd=yMNIg)kF51}C}SL^5hD(q$klqeq9e?`_uD@-)-$HyG`bNd47!I2&-0Kv^@MNz
z%r*WJqGhqKXvdKT#=SM~@KT}9)S*ZCtnZ)dvw<_raGKt%+_G1y00>|Igxh_PZ7qH$
zwm~9<yb6~VE%Mf0rF0P<+4XncJZ5-nh9+Yihg+FhYOKmPGPmH4X2fZjRT>Ci{9o_$
zesqRiGa7(t#37|{f2F-f_|6-@<TGK~ky2j3*dNdU!U%s6(_UQ%6V5*N(e3tUJt=}o
zFvLdE=KHvjM0nu#?|GLz!?BN}!lzdbd4j&B1Q9;#>!*Fp^gPR2nv{j0%ixgL4mLcZ
z7wF_c_@Ixhe7zxB*;-!$3BO^~F+=#G=d2#G+8Ik7&x|AI;>B`BFGBb_(l=;Z2(Nth
zW1eD2@=KDy14Yt5PuJ;}@O>Y??nj0qj6d?Q0gqc$%DBNzm35`67-8|*4L`0g3Yw19
z<LN#e>YJ7faNOC}?A^TRJ~dUs0l(PLUZWjN__$XrcvBP(?Im#YrmzuzLsBndOOzAg
zJHGzPpBa;3kZ1{n+i|2qa=RX&Qv~6v-<|8T@<Kbg1TGSW`8&q*layz|7rf^*&vUq%
zSOTq&YjfQ7qaVmJ;qR`#`DSA|G(*G}93si++2{XolV69dPV{V0lP6<Jhl;%VkZtFc
z7sBB)PJV;69Xd6Mw&m<+rHlcB<1EB6sCr5GxuY*$$iQ(GmZ;?_?-krvJ17dOXM;>f
zbE>0+AN;Qeyv=X~R;)FSX>1$y@*h(3L*<BY<_VARk-?pjOj=_iZ`8*zIk+TwC+;>x
z+z$ZnhzTF=H(R<zeRje>JouT4(L8>FEe+NxyyXiqmw0<!4|RG%c-Gq<>7B=?op5_0
zR}VSWwL<uXyPkQvaW!_YwGx{t!rg}7<u36-zZ31Qq3R+}1P0v|o&de{CA&8oV_Q#<
zvEabr2JIoj6}??P>vrTsn~+P8<Lo^5k*=QzZydkrtH#cWwq@boP;{@>$&2t&Pr7FH
zz17yPeeUzUVOzI7-0?;DwvT=2(7n}`8`5zZ?$i-Xc*(!a`yI*?mEo8y`r>UpOD!DX
zn-0F(XHi^!g1W(Al6>MBhdS^PV*isCs;F%eKKPWYZ!=jw<6di%oK7`kjV@@=f$$Oa
zGyOf56Zcx9zPXqs2`_56@qKHrGG<TIl1OVYOR`%13c~YV`8K~!JW&(ry@I&r)K|C>
zLHL3%zwANA*p}lE=nxL--~veTxoYt2oTK#LI)f8F;M$#kVl5ocIPk7gi$(S@sHV3=
zxa!E`-eqlFdOY0Nfg?L7W%<FL2#$hRXp4j|`o`9it;OS+r#)h85nY8#9Q<RpSJCze
z2UcwNw<6pt?Kv~nvc3O4=jXpQ{`R7MT@5eW<MD`%KiA%l(sa4Vf#Bbh(M4sH@WQ$O
zdZ0CY*}c-Rgs67c%dsX8YLkRJyMMIDnmnGN=Mn2k*Qwfc($&91Z5iRj-#oO#nmaKL
zE&i67eo<2n2^a4E+Apoi<1u3qhgngS=W0uY4_fuyKed*w#P8$Ro846`G4N$phB*Q=
z<4K|7T(2z?E_R=FwzZ4}_KCDyFH^Go5OJ)vtF$%3J0IWwQfuv!6KYNGZGo2_Yivdv
zBm9duKF1HnryoaS7JKh?ev<v91b=(7v!aAMUizG$8c)H}cG+WobY|+@bI*M$(eguB
zG|q%G=l%S>hIZgMsCSlQ3_Ei82py5%q~0;%eeayvWyqg)qR3-zz<sdpBMXGJ7p^^O
ztsIZ_h4twjEy2YpL8qdKnSVsCz6t8t9^szf4*2-n@hmG6?F}xvD?;9+ZXDqk-?H8B
zNFUE|Ni@L?j;$r$`peBj2{Wxy)gnB9<!P@o0p1I(;hRyKk|}q0QGDxE;|R}w#rb}`
z9FJR^;0-^0PsLQ^FSW}EfA^xlztcDz#P4G@d~8!1a)yU2ovhJD!Z+O9^$kP6`9#pG
z5)%LF)1Af<e&~BQ_-N*~<HK(@GbW;E0~fWL@DWeD{!HV6UfXeqD7zn?tBnxe{hv?p
z;j3W7VcAA3c8%62RD}tD`P|waM*XUY`YA-Ouw1GqE{@T_+8H|H2p@3q+}(x%K}lo3
z1p<kkMwc1Mh?;+d6DHyL=ls2oX$Aql2wQ0$w#LF@t?1~=qQljc@LVjJ?7qqj;lawY
zzi-S0i3Q2#9THoX`>lfby5uW5bP0d@z5bUN-t(3s&f|^ad;3G2m<T_y>w@<fzCaz8
zpfkc3Q|7OOASyHA`oVR6=^bQ1EP*)VTPSzwJVUsm`}S8EwaZ7E@yU|2RdEULe%+zn
zhBQ-gqy8R~KWQ5d=t_?8MPK<xpB22WeV<(FK1vdW;s0)p6B*&@UGpC|LRMtpnJRYg
zTjV8lSz5bh#g%>|3Aj?DC#ozuSG-s-k(Eb1(UCy-sRv)@zcTjd2+KmFj;(9IyMCc6
zI^n{*U*a8%V6<3`5!A%Ss@Lr3u+0WVLioe}bNveA+;p>sq}|r<Gf|DYN0@v5<=)jj
z3%}KnCTRjK+u?A?(dJ)kb;7HD@I$|C)Z4Z?&P>YD``9QrqNoTvPk+PntxMM~3)MJ+
z_Y&=Yi=rVM|M0IaHZ(!!W-tVbV#Iu0Z3p4sKBD2XF;*`{jHjcl{X}@~`ESXx@ku&(
zATsLc*D51~pSbUBeu`_;(LB~gwF$Z5Gpg%7YP|@{SFgX_<bp}sI=Z;ntX1#<85X}m
zTPM8u!7F@FCm$8}Hp%KuG8YS9u|+ZiQA{fe!Ygih^EPWSYm9mnkjZ(h{7Mxc;cL&h
z);kedmd00}suUZId3T{)tJYVxV*p7pj`rJ>cET@w^q%^%Xve8f85F}0bYqHeap6uM
z$q&X<T6T>lJ~28)*8k!ZSDo-3SKs0Hns9c|ddgQ%9EJOX$GWP7Hw=8+pXmy=%Y4<y
zvSC5oJB41WLs3fePki<L#3B$r{%g0s#aM^loV2f8^;g=3Nrs<$)@ywtFql3`-IN~f
zM8e#c9&|rLwQ&>J><Iqzijx~uzh`1Vm2pEy$6})tJ;xl1fYyfiL%Go@`rh$G;&-C7
z|M=vD{uO@QHCcAoMDPvW#7n)>b|U=9P>Uk|Hh6?I@v)FnqF8jfuhCSRj-Gkbl&Hn6
z_X#eM+>w#QTX$jZM0js5gvtM8oa9WxTT9iFTno{0EnhC+QfFl7=Q?5I!_QK?y8dms
zmUu8-I<TWQUCLdUn<-WrU@(SEn%q%bK%;XtUXa{Gs$q+=#f7QG7O(1y*!!%P7n+Tr
zz{27_+<KUs(PMPE$;l~+hc8Yw3kgj~akVZNbZ@S+Tm#-J>~I%^(b=3UH@f>1azKH!
zXtbzQ2a*jPM<K`rSq<FX?qpQxjD*#!FP4JFq8A0ElU2HMR#Z@mOtTP+9Y~6|(3vUq
zpta2RV9?smd>>Jg!QlY<uF%OI44TmnHLU#E773z(+RKH`SdS-!6?<pcqlcNjFpaMm
z7Mu~ubwW>IOrQgB`HR@q&Kh&M&Pr{nh;N20)Yj#a!#LMDkE8*8>hXm31UluAhY#1~
zI-AA%EEJ+#$KQ>qVs)fZU$1z)Zu1rHgD4+Dm*n#lXn7`AP+iOHo30$ja3(^EjsgiV
zM3Q2)Y;EuEpVkl4yB;Zo=A^H0WOQh9VE6d0?YjmxPj245V}zW^s8K~;mn-snk%cb%
zqa$C#WpVRJ3eM*)?Dv|M6v4WVt}f}nPMMSC!e0)}(!pG0@CqmryvI<jHgLSgXD|;P
z!eyNe3<K%r?tTcokau2f_jI|QXA>Pc{$J-l`C4alj-xwjvAe&@t?de^Wx{oVGyFpA
z51^bnI9=$%f1t(TX3=BC(}qUDj5&};F^ZMps+=a!HcaVb9HMM@*%j+1wRw_;b14hB
zlh%xWsZI)G)wD!+QD@!~1eCk*Lbd0)O}V@n_I$1{m!~%6fz@j<u|?eX<a_fy(aYua
zlE=kf36KrCStZsjJO(j_iKGedmZD&psCS~4p>_eLbvZF0v5sQR^UneKNX3|hj4GI%
z3;D^(&BLRUllgVIJQRiQNnvtw%kcK0$;mD}3~;i3yz9qn<2JUJO?rTEUCwJ+j1MKf
z1IBfM$v)8X<3sOtJrYL>Wh-GQooJg<h*y(t^PXIT!xUoOxN+mqt}Pwv^7Z!SOuZ7T
zh1^B6&JQU~=k^`;{$5ANMAT+n$z0EEKmiV3ki^$<lAuWSQgg9hRV&od0a~bCTxKju
zpshvzM@fS%T5w<d#dJ=NoH^acR85^9@S@OSR*B6<(ZnUDZ?IUcRdIb=#ikipEer+g
z56(K;7>;H(N@giwKO=(B=|L0h@s8X~4GKFohl$Cf+LMRuy4UCT=8BD6r`HJ@d?3SV
zC7EzahZZ=3!4{sNb)6|TbVL}Xupr@I=~{dCMpVNT6BE^<5Eu)PY{oq{aPdQMa+c}z
zq||XG1E<>q#rmXsScvG428?IPsd>+Zxs^Hmm%`JZTL}?oly<zX>?tGDkp$DyfFe(a
z2&rdf*Sd)+Fo41g99<jaWxFmo@BiN}@I!bB;m67yv)E&`P2kS2o-ZyeX+p$FLqV?V
z|EJA}pHJN-`A}*uY@m)D!8W=%e1Z`zhQi*_y%KjZS-{V4g|6J{)wvZVeu}#g!|N?T
zmkinp7Eu+B@x~(4`msR6mAv67O?p}>qJlOtsl&hM%B{_v4Q}AJV91t;JU*DDuO}h=
zf?pZJlu2pQq!U9p(A`Tv%8#ngI=LU8jcLgqZKzH_Taa_?>0JKg>^mxEs{DNKU;BR4
zIkkf(N7rC3d=#yL%@h|VoU(RF;cMkzR-5RAU&GFCNqP^3ydkI%2-*!JFM5c8IQgG9
z-4p&T&A0uc;9WuYFV$;(ZUvl7XazRBjNElmjbs&8gx`vMZ7yg+WJhDa&?Jl~SahuR
zMB32{OY4-Q!LKD0V04`gp1^;2XCgy)IKA!a>dA8i2jXD6Bz}c&1`OcVH@J|p(>kdR
z_#}w{S2ERPv7&0IF_YHp)Js<{;si0}0*sh=!=j3WDievsi35QM@p%9{_rbZ{U%{FP
zQgOCGSkU2XD%04LFS#Sj-7`?=ZnI(ey>2XrSn}5v^0`2?M>vTs0}<-vyN*JhAPXLk
ztz|)%Q!TSR$z>rW7)*uZwJ|K6!&>2F=uoLE0-Hgf<UH67`Xu<9`C`Q9RW=~p-nVyP
zqB+?SvL_;KuXrX#0cUer?n>u1KuZ&i>l3AfvVb)9*Bfw(0;i+la6=*irOB2v{H)n}
zZE-;yt%yPQObW}NarWgA47X70IERrCk*l$2y)q6QuI~PF1BbV2mBnUhgxXJ2(}ne;
zn4G@I9doNhzI5}<igIHTzg&4X8x3=6ujd)FE~2RD_2`kTQ}cN=LcPWcHF^c}9H^Ii
zxW(z|L2eenl|BZ45ya6%+bF`{37YW4+5%7PPwCUB1A?I;1u;9RhbA(Da$9|}=Uo4L
ziB<|GNngi)r)<_Jh>mErhoUa>L;UwCE_gW%<q;SVCkReho)#(J6Hcg7MCa2UQFnv|
zh(KK0B!ZRZUx`)H&=;F>zhl7)6J)90?LuT2*KkFkL9oKpOztZLYiekkRS-Mw3>no6
zA#O;TdOeBt0|UpBXw<f{(^gD}v+ypOQ*(v<wYF_B;A1EFx>vKX=gPi`#@@AEeSJr1
z7!^DIl6sB`AK`Nk_nf^~EkRNWQ7kYXw=vE_QEckV%}<|S!1?K`%hQEC8W(p$m9j(l
z#RcdAzuwCTWR+N=lLfEvvhbn4P;|>cMMqj>4<zPPA47H16+>aaseC|#<**Nn@e%Eg
zj3A4|fU9sumJLcwKa_E@?x5;GGy<U+!x4VrJh3RI6x=2Z*lV@ijN)UoIp?2)qVaHr
zC`5)pGnhl&#8V@ieVl`{T_SIStfXPkL<P!7T3qCD%>5}j$a@*6T9JYk=Ch=0S~w}9
zP;V&|udi){X35tViUkt{WqvPsmcJwz{CkwMCxU!Ng7%M%fh8sFYqSz|yZ~iA0~s%8
zI7QpV9F=aOfSQiUE;7*;)Lihb4Fdcf=^%atit6x<%q?iD4MRg2v_#bdGht)WQ(;!n
z(Gk^2L`Fe@Gkz@^^K=Jo(Y(thdyH*sa1<}4QChooesdwA_||`+Xx!Q=RfWhz<%2pA
zKODwD5+B5#EBuiawZ~&j9r0K^>qyVVJHYm28pWB?U~S<rV$c$nhCBx8y*Q%1_^q2W
zUeiRn?#aN_)6?tzr`z@-+5nk729kSw`)JqL`0scB2#%v|S^Fr!z2Z>8dZ|a{r$i`=
z^Gn?easDHR5EXQ7!;QSi&9YG=oA4#+S9qo31Vb&_IGb)EBNL$ytcqi{0JBBaj2T#(
zAU+I(F2t|<UidT8Yy2RNuAY@H{3xDCxq%JrXiIsI^Z#^BC{%!Kd&;JbjBq|uCB!~C
zoHg(3`dSPG_<9mrig{VR1@8A8LAVDo{n8OVCw`>ST-?{y*wlNp49&$dyon`5k|21W
za6L&97GJW;X9&r8V6F$sweJ3d$V_mz4;MP}8}SK-Do)(=U*=$6ZeV_2d3Le3*vL7l
z%UXYtC!yEnR?@TOpzO)x&yIZVAeNak{4!XsT+QvP!5_hM#=dNmNf(E~_C`-`g09-i
zJjL#JOk*8`ZD90Hk~_pFR_1W2o=`z1@f$ARTnV0S9n1ZLxa=pluatv5n(o=yYmDVP
zIECT=EEwhy^Kp9M*bdF0E}c?Jy7ZvvY|PaTdO50OQBB-aj0=rqSPMQkrLPY+Xdx}7
z#n8yaiWR4IEmnltqg4cu%BV>0wq)c9wb<9!y%nFa6N|2D*oi7WwI8QW8ngt-4Iif#
z?%yy93cYn3){*HjG%ljyaN2sw+JN?9YQa};YcshpPl@HGd>9QI3{F(?IXB2z`S5No
zZNH)9IOo2LqtQQJM=u<0RdDk*hQy9y6)e^zqO9^8fo4V+vBfWHrd=Ljm&cOpf(uKU
zxN87=g5G*3DNIXT#UcqP=9W5xBvQ|eaa#=A%DebAwohbPN!^hsr4cDO#%+$oMj98y
zoCuQb?Bv!l_-s{iLr0Uho=ai_Qon?`f#hfU3M)s(M!V1RTc<EeSm~l?nal@aW3`JR
z4hzE(@4P1FH{>8a+-=o7%q`{l8uG0Y?_ro!R=K=TpT~|9g)as_5f+RjLS`c+Oi3&w
z76oD?5+&;aKVOPO5wyWnK$Gmkz_LFOgumA1y3ZEzE=x`l;>-CK8o7Dg?2$v>gOg7&
zdX;O~*N`x<qGfG9H(kSCLbcXhM{60r0*NXf4ePjUtd#Lc?4HUf@k1VCXNfE#QQKh0
z1vPA}O*ZDrGnj+5)9{9x#SjiRQAN33Y4i2)CVIY9J-3${Z+Sz9kUzOtO*M^aC|(w{
zK+TcH#4+HkNn8{RxQ0YP@a(Vk^fv=kGFlKVI7T$*WuTFHaz5Ng&!EV0SjP?(cD=D|
zN{ExYO@=3<i5adC+LM~Z2!v8A1Dgikj~QQfz&<5cA6;fQLCzLz#?SNEeQJu;uxsx)
z=Mojxb!Z6Po}7m#UNkN^NY4NQ#|y`zJe5E3D4R+tqOWXDa6>DZU+7!_x9TbAxH9u2
zb15<&in!1U;$xziI1yT!+|l}|7wc=q_bJm>4VxiOM_cU#h~;<9cK2gt5i?yFsc@rd
zQQ=OtZl2Rjwo%pQTW{khn;$_>9xDmH3o|x&IP+<AJ~1EsPj3@t_Dw{(%sLuGZ`KcU
zJ`Q?CQ~|cpk|&q+WY?*`DEo4ZPaMtR!-vdrnHWucO%_=j(hKHm#+DJ$Dgx_+lDG{!
zaMvR|qXL}vz!g_534C!!zW72JZctWCQint|J**3oC66n31`868ZpiEu#8YB<JAqda
z(I6dzWz{@|#LY)P1pv7^jC2f<Ylz<{rz3SqpNoD2)>D;I)niP%W&OGJ(m6pxXvbwC
z_#`Sezb>~Pu7={1^hISMg;RPe&8n0e4#LDpj^IvXAS|WCN2);y&dtupBCnVnurS56
z9@J~d)U4w#;6ygnf^yvV3SJ`)1f>h!2Zm@x_*{H5XZuCnV(&DPkVmvU8iE1RhHxo{
zj)N|IBULRuXC?N0)h&STQsl=PjsOA;NJOI~m0qar%f7or`HwH{=Gf8-Q(U71{kD7C
z!Mnu*j5eRSx$^fjZUuK{f65!_Nd7fEjcu{=Oqnw&GWKlgwFR$4g(EzE+YfycZv4fu
z=<X9Y{fRK&aRQnUCnnSgS+uwv0`f>o)t}MiiZ)tf{y?;Q@js$AUXV-ciytuT1-I3-
zOp7i<6M=?6KC*+7-lvz6(!>0V_SnLM?7CiNdWc6uBO!mVi145Y<Jt1&{rLPS6sH*>
zAuzN|_mLvBQ<w{)_#+><)N^ONl^V0!{3(GxG5t|BNoOU+n<cd=A4S&CsI=;cW|Yy*
z>oizaLF^RtNsOdypz*B<q79eft7Kk!!AlSfI=XEm_E@^ZXoUPCdUN2)=u32tdYfVJ
zw08pg1o)=(+D;KRX>n1D2=~f7OZ4?hM~k`EcQPqhn8wQY<O;6)WZkav+!V6{0mGP@
zR=U^%!iuSw4km;F-8rXvhr91B_l%&?omg!&2SGFSFw%oWl|AMpv@Fq;>&|i8on5jL
zkyIXfh;Sb{l0!&0{!j)<OMD>5bhTv}=Wm=1C(x%RM0;C3zIBM+>tah>In~`PRHDyj
z2r*mQX`PIWd~PJQG<%wVHd#X`v5l}X&{R>fQzCT7udfeX9xTm_D$%s|3gY+pxVvV4
zJw_LP4M*M=9{BA;*G{YmwG3%kfzoiwz=OEAiwACp(p65Kz`^6??BzipE?AHM#CfK<
zzyox}wxNN|L!%iT;T54}Z^*jGACj=K!$a)lrjm^D!Gs*!{c`(@NFTIig?sDHDC$d_
zTXQTUqSY?4j7X^yWpHx5<gK44{E^*>iJ-0<IEDZwl|<Qpmei>Gnlj4-b!BHWBcYMi
zTjae4YL!8(UsE(nm6^Ui69z}KkwmB(94{2o;Y&9bDwE!KKtd3fH>J9B<s!*sb`NH}
zd_v6J+Ho7#X{~~TU=+s5f+`ss_>*A|h~ExTXLkwX(H>dIz#{HOJ5d(s$#gi)wn;ZW
zGR1VtAb{1vD98`*9NfNp^U&nT!1%VjCoJYtgR?AEN%{Ji5sk4}eOW(2HR4&hp%{|y
zER~!@O^ywX42%wp?;6E;57#$zI668)`o(^UOGKLt?#9Lk#)k(dhj$K-d(tLotHxx%
z-;FP@H?nPH^3tKvvEf}iCx<uZ`Y{2yK^bKPaJ{=i@24u{w{5$0ht+VoZ-o^$esOX|
z4nF3uLF9XqT2`uyXFFNKmcevs8Wk|Bt!VXH4hESZImlBKr$>xrC%f4p9L;`kIBs-A
zdr`0voJgunLLwj$C%6ld_S(4dPn^sG8z<8Uf0yNqW*vk&ZrL-&fS*7+g3eIgT%jvc
zv8RX+p~>iYdP-BV3$y;bNJZHI0@n=BXKANrJ=%^)7&Ib?*3`trfPpVAi!X81681?N
zc8qrS%dWhy!x@RLUBo^M!yhED|CU2EL&Co&a$CkIjXpw<+#&LoAw?w&=lfLG3~nD7
z8{083lIR`l*QL5h%Ao@?IF_ajPg3tmX?C2^*GTn*ks7xZa(+x0pQyTHUDB`%DjKr(
z>S>7KOl{jWI!w!R=};sPPbV~HP<QZS2n(__!N|x&6!n9nNzV8~G2t>zEsof^IrV$F
zNO<yjYHkWysi>Bb>ipnyp|GLZ92gng?N!zWwdneQZ>^9Inr6tXgS8?uVNy~KTS{-#
zcqitbU~KJ<xs_f-LA|KOgvXg|Y;<Vr@Ywj!=;Zjo=+>ce$>lP~*E4%!9);PQ$d#}@
z?P%9}Too~G`NBNd4<D6^$^W9R@SZ}ZuhJ1U=P;<f4ZL)5!IL7gxs*q($9${Hnt~>5
zY8J#8@ZJl8lFPkD?dFjQ7srSOtDiL-<L=*78*S}Aog7OvHZ0K@C2#l>NHGOCV&YLa
z_bh3Drqt6Lb*F>W^~W^Gwj%^Q)5Isiv_ShBlXgl6b_~IcY@Xb*YZr9Z_l5e#rU*`8
zKo%>F-j??01SQvDZ8X6`3?vn60qCJN4*cfZ;Ov*X8F9HR>pF-!<Ra)3om;o>x_Dsw
z*d847H*Ap?FTIxEyC*3_w>f70XdUlLfhT)$yx5_z9I7TyaO`-OZfPf&pjh_8*?CP{
zAk$;Z30|G@KxO@!a!W7FoxlFc>(~1}Ut(<=If5-$x89pck72YTlc9f;@(I!3(fUK@
zJP0>yLpb3FMVcxLQM0AVQxM@kNPC|xoN-%h%JMXB=s>ojA#lgM;gG7WJ;t#0mM$0c
z%qRT?PEso}MD~%Nl=6*yn?a6kl#B`U!}er^wZ73M<L(c)ZNTtzRJXf78Ej<;XStVv
zL|YOJbmn_k!vBcJejtq#Z<c=0h=i-%!d_-$H0T>et9n%KQmoZ#brvQcVe9Hs1^X*V
zapkt53kV|Gjab6O1Y_nBrdQr9!br}vje+FVA)dpQZD_c6i59r;=T~8*U1HPb6t0|D
zpD`KJ1>G)d(~0#IKO$+!?A>1Cc}@%2x@XWEY8w0AmbR@FRP;l<co*G<u0~tbK~9R<
z?`7bD()ti=44qSFKO9}y2RC*(@6m0GA_GsBaY*dLJzsE_Wyr`cuIG^}6`g&C1Zv0*
zQ$a-Z@3CNV>^%h4CAVJ)GL9_HlKw6Zp_ImfmC_{W0emH^KX>jq7d-g_(kHheW!QKL
zV6v4?M|}K>40)z{hpx0D=tiIJ?3FOC=-@YsYikhJQMDAFxH1DzeEbrz2tB}4k#Pg1
zn)PJmd#}u`>78ddj#GH&`cBD5b5+s9kt5SUD7D(0DacAK9)9dxMI~F+z=a%GyGa*H
zPZ|O2bW=W;<Bm=d-!~jK62&(^0?>S{?tbmW){`D%nNrAI2@=cc=8%A4fH%b`)bPOe
z;Vaaii!<RpECkBJn2M|w-9YsuC9e}OuW+zZ;|*MWeYh!dI=FYCOOh$0@C+0!v>4ud
z!j%h*(XI<~w~+cxQ-QvqY=pId5t&jl9G_N+evFS;rX)Iw=dhQPkZI09WK5_V(Qu29
z%D6wqd>4Q699m@bNj`}!T^O<z%i-4Ec1s{Eh!uDHQ(+n<Wo%>vuS;{BFX7rbD8GK}
zIXY%XrFDXlhBucEL~WyS*p?1=;XxvUZjXo%Y0?ZR;`pu09rO*`Ybtw~Zcb)=G(OgH
zkX20!Y42S6b&|gz+l8}+CJzTsk3X%)M5i3I2+hS0*!wAfF}QeQ3>ilD8PrXB%B%sT
z7CbcfDo<$!&$AOJB{kjTlT1^RXmRW~bRZR%86<&1XY)n3wEwd;$;UP*=fJGP@z}`p
z?$W}<L_e+Q9^RtSyBB|ooxOSyyS?1*_ZHV_i0t_@?VI_vih=c8@#8MoBgr5j%Z^`r
zC6b*yl|6Z$xaMgZR~BgX=ns$m;Eni8&}*C8<rs!bdI-lssEw%{2n-50D1EQC>L|{u
zLIQ}7Pe0f8t`$nTD<23<CMrmcXPG?d<Ot-uf8FMT#~Ml)%&o!ySiEQLCICT!QEVh6
z3$x^&D|`3G3X|l;1@tXw=1`5Qha5~Ye7_Ht11F}gy|Pf))QA631tunXx~@HY-8o0s
z_I9nsT_5YBB|PuaK`tfEzqn~(wQGl}NO`J-(K0v?FRoBPO@jO$VU%nJRm5cJv_x<8
zD2}I4kUVt4Ml!PLbV7#nQ^6f+q6@AEFd@n%kC2i-Iwtr#^|lwe!VF^K;Z!yf%Pe$G
zIsR2HAxE<<F0n7@cGq4EZP=(f_{7C#HpEP72deSt&4H2<pTQz7$S}@{fC+?o9F0TX
zp!=DXK<HXZYPvYuSaAfCOarD;?*4?lw!rC#;!i$7(^OF$*O1&8D>5b%Bg>n{M3e0?
z!F`Kl9qp{R+gW1rVt>ZmCSOl_I>W<Ab2;KB(BSZwni69hu?ba4hQuNB=s?m=IVeP3
z>GOG3I`3lY<$oC@@MM8Dx&z70sr+9F*k~&;&qcaB{$!C!$=luKK+Z&?`D6ERoF2iA
zajCo_bBv4(Ud5h>0H8Pw`AAnPwQ6kQZ{*%1?{f)}lj6|CMX8a&1}~kBwF{>vdgrop
zdGmp2l$$w7DIW#1DP1pwtyMTsaXIy+8bq?4<{*rMz$6ZX;%t^3jblys6bINc9u6at
zS(n3kc<bG77b)_lQ4vIC*X346ZACvy)8N+ANuHd;X6JT=y3(|YT1={i6^%xHCkmfY
z8LVa0M&OS@9nXE#moA>!d9YNTo#QPl3=szQ-P0N(^}QRhVhFjI<u<W&mm=-HFn2bR
zw@k{BkYu-z7YoUl#_=UNyKFsVEe8E#tv~@BZV+qou?I)-Oy4d&P@MZm1<`$6QT32`
zG?nUH?R*gC8f7~fq*3CSr*QCZk~ScwKC3%rWUwW-j)x~%FIF26?L1TjQx?8?2Cc;k
zEa(*Mgj*q@(f>-|J^&OLG3ba~VRdI&${s)&XEHkRdhOcIG7I7V53mE+k~W%+>ska1
z@TT*?o^yHkjp&mb+y{#l+)E;V1DhuaSc_y^U-2g|nVyUn*EWrWKwO1DxOkm;gwFB9
zw_YV(BknT5sCS$lVLyv3l83#5ld@)u%&37ST1)#$LL;3^;*poFCjz@60>{@D>r>2R
zb9Tyw?ByASkMp27En#KyxZxR^=1rfzcE90w99%2gs&Gnpv)vSKpqOmdCf&~ni?xKf
z_!O4^a)gdF0JS|(TFApu%Xf3UME_EP^6?NK<?z`{=mhH9*x~t^TJ^Bo#;YPl9p65v
zBDF<9;`0Z??Y`WQ`f`HOAzp?HK43!ir_Z^kApf<9n8>B_yxxpCh4hR>?8#tZq)Ad#
zR+OkCY7>^VIgQVl=M0~2DtZ2$-aoX3Z6&UY;Um=2U{zi&Ubc)jM5y2<2Z3a6A)pNj
zODjs{l%NH-!AX4TFIe`sR6xgE{3iRW3Md+NvnxtTxk-VFg(=3ZcVvFj=j14ODuV_M
zxe+QEZ(|E`?aOd=re*~p9`8oly>jB4h`9L|P&oZD*%rFEr+__M`2%0MuN~YDUqF76
z>_Q$%)CDBT9zhb=k-51pq*9|wS<W9x&W&G928WfC$HlNt8mui=rg_FV$NLSL0^}}~
zz(G<h(#wec^EL_6h>Ijv<_^x4aq!H}CFc<4EFtB&S>ufkMY+2Sxa$0~R>5$HZgr3i
zA`=uxx^UNe=cN;?97x5lVr<=ms)6o`>^K<{n@E#?j5vwPL-C&YK%|D+?8p`6ss@LM
zpe$Ww6%m0$p55@yExRU%E*~G-$uu}PZ?1=tmA=3g9)wOXhx_bBJHl|1Ya!q-eYnBe
zlDbmTNG8{QZEwX?T2_XS-KmSzO|@2oBhsP?A^vc+jH}`_K633j>yG+`zb{T47<dwC
z3q}><V1h-~w>VP}-9YFTjK0SrM6qQfdnqO^x92AZmt8t3_tFL#W`*`gNMijiwh>j>
z_3}5dI#Q!ZUNpRAcO$sj)zt|tK#N}V%YT2HjO#L(Dt}Q7yaf}xNu4^z@3$~!7#5Xy
zyA|f!6@e)8*B-;2G67b1os3~k$r^OTPJ#Y@E|Uq_3@?B&vX1c*n85h}r%n;wWRS=q
z_bZi{(r{GEv{yO=M~!FwxxP%~wQfYNz<KM}GwdMWkvM{)<tD;2?7cR*tvs8LJ4Ga2
zqgXE$!t7T_|J<H)X&U-3glT|M;u>{N0yb6hM@rSjdB%V^v=B$)P=NbD`YwWTk%?zv
z5@r_H3t|0fla1OfU!17Ll2O2ZBU1R5R^h*JnFy@;Ehv#IHghXiHC9HJThemZ<q-Lr
z+MhcNr_7msNINIIV+R!<E+V0R>S9P8qg!vZT)Hh>3&MHDs#s%XFpH}|<}tQXO`s>Z
z2`Ldr;S6R!xERv4>BhP)h`etc*}GP}W1mr{I!sowCo@e00<~C|D>rlV#lxJ%uv=8b
znQhL4wR(MV0ry!*cXgKPbv(Q<Cs1zagpF$2Zire6dATRAB-k~@MiCT%N;tG@JB|D}
z??jTRoeOm<qh!pLDho4<6$!vZbsP}^ekxMC3Eq6KPDKx!=Y*&lC^{4~LKFKCG!>f)
z*FwJ##`EG{jeGK46AiiFD$+)FNvcDr;l2n2mzaF82{_SMQ<%ta>MBeeT-!A<aW=!X
z^@-{c{;%GJUp;H^GWKv{;+(>!3!_p;Hgp|raKO>-1NsK(C`7-~&9B^Z<w{0|_pVu6
zkO*<~yKBwbl}9EJg`Pl+HCDnuK#_@jn}#V@+XAv7F8e>{bh)c$Hg0kOOM96n@JhtX
zH%@GFji7kI+q&G@_@$S3&C`6SV-tHOLrG38rn?5_r=4&nHud+c^^I@pk2mi`i!+lT
z8k4>|J!y=fD>n6Wtws^ZQ9QR@#^RXq+>;>FAT6a%6y?SOMI^?|P_sGRR<lPUQ>h>d
z9cl6;0_X5>{BADyYoST8-+Y#%zHeNC6uZ9uz0kFhjocUOUt$2{CK_wk0^i6+IvM?Y
zirv=?bYC$!ap;1X?ukP)GktsY(faPE22Urtp>1xzTH1F197)qqZS;HZrOUO`ke1kP
zs<q6<sMi=d4Ja!A16+1JD0kN;u()PzZqLNE8}`P87Lk9nd?>Dza01*`3Wi?b)p-*g
zTX1nBgq}P-C3GxqJirb2%(u~W5Zga-*OTw<+JG=_Zle_9pKI4rHN<@B-h!`yX>0GE
z&a&Ph;^pX+HM#Z2Po1osXd+Q!<wRZnmFw=fTW9R-$yY`Aij}4tTQ4><a*k&kKp#}V
z16Q0@h*WABOm4V(1~dLNE@9`!s;kP!Jmyo9!7P@68t%R;pdU(O$vx{4m}cQVDT6Vr
zP3I3`VbY_c17kADW;gg@CBKl7?@3Kg@`>O8JR5^Hn(ZTII3OG|u5IyP+$5}DEK?#h
z6^y@JYaElN2oikK4N#VF@fGYIX>o49vV7qBsh97bF5^R;kTqj7gPN6#uVuFRU}h@p
z600h2$KW~Ph-uwLbCwMGI0sdT&JE%#L?wh167FgzzHK^J8pNdUZj#f(-y3{6`Cy|}
z>a5pl&EQ?B$|x(B#V(xf%Za<l`%Hqubf4^7oQ^V!p?IG;{5WMINCK@8Qa8&r^BzB%
z&coKhs&S)}o@M&@Kgw_}7XRDr!9|~<)J-|^g<`5NQ9}r7KnvUg7>iz4J8Znu|M0IP
zK7mnIVoDP39cMr$B9g9}Sd3_vzzk8i@`x^j;f8dQ@*_KUZ$HwDyp~?!qoA*kbaLl7
zl8c+09F0-W$oz(O+>}ezl_on7bI>mexEd6J`(ll08A3lYXU*?NAdU@11u@HAaKQx@
z8|%>Y7Tyr*ZkLZrc6G>%=^i9je$o9u`1}?<a~C|rp*QGc4vj)5YjAyK&o4sB?pQ~E
zI4Yr@y%Erp8>!c(N~LM~vAq1Rwg}|J8oyLXIZ6pj2E7LOymFQsLr&cb)Fky_;uu7_
z$$D5Zj6${<wcKbzha{_Th2kO&qO{Z~=u*O6-6J_2vZw5ouqVG)9N|38tLUEkJ#jk4
z?*UT3PKycG)oasjqacrxWlo8-FT+O@kg@vbmr<O!K?N;C>_f7BeVd0a-o2H&uR<h$
zi7yPK@ro_>HQZNpGejr1)H>O5Xy{^=Vw6eG;nfZo7Ee&PW)zaDeHq3=I~idqQ(Kmd
z+<jf4q!J$#NcBL-H#8EhxVyQAxLzDOG*!YkMr+k&-psY7h|Za2Kvg7*7_8BaFI~33
zwX1F4vo~U9?@G~vkhh7#L|0#KSG96DSJ(p!k8effa8axOd*5M%B!n!uFJcK3cZfj{
z^I{Y`a(0b>re5Kkfsanu`ZSD6X;-c~yOS|!;~y&r5lwN17hA77r*o0itvVMlMj1>M
zSy*+Re}Q5%^->A@5QwMbiU)v)W;3u&$j3=jiih(^_z`dpz(x4_?EXn&n$*ZltPZRr
zJsGtlu)`Q|iZ!9E#(p>?{Qz@|`A*x(H%0XCF_kCH7dONBxi3Eq-JaU-ZxAY5)F6vP
zXMgS1%OoZ#HF!E1uMkDF??Nc)ZLHx&39<BJFu1ZXfPOo|f?C+f;QW>xLK}OvE{&TH
zYXzNDZfq{?Tb$K9bRE%&&dV>~(m2EH35{7)_F1@XnX)Re(&|*e{<i4;aqKlwju?W$
zUMrvcUzy095pC8M@j;rbktG{N^Z4{KhD(NOz>@KmYy!47r(Ay|{U>QQ?mxkWvDq0i
z3_4siL=1Hye{WB-u8Y&`MSUdxOKOBChxhE%aARj_iYBv;k5@;|P+^7JFG(&cxUVqZ
zoJ0!6bOFoi^VjQcY7()#h*=F5(29uuujq@)KszS1D{Utd^yQM$o2p=gQlysckhE^v
ziD$F9#i6FQ7@SD~&rYFIlV7@;FCH4hhr8RDWPJFKpVY(JiPxrV#<l0;G6t~Daj&}j
z=WEmDnZpG*n{Wi16&Suo2_6?B3806)#{>jmP%%nQARloHc^U`{dEORU5kEp&!xl3?
zDUJ`3KcjoTdpftRuiOV@z~=Kz3~OwU)#-FrH}P3w$JNQIvsptbD`gN77$RukO+v!1
zzkD@Z{%2BT$OZc&^&*xl5xN+^Oj)`3@W2#@O=;SRQV1K?dRz>`kB5Oovl)%hXZMYC
z_v7>oK3?UPe59K}bT(~dbob*FLmiP=3LBJ+1Ut?Fe&mQ{D7j<a(1NgxGByyxQc>eo
z#FWU9tfaE7f&~q1$hZ)~a)wZ2u6XwULso+1$PF@~zQis3l2!pY&N=_d{|_-WS8U8V
zrt*%qb`w~dz07OuTt-PaW4I?_jtLV+qA4m$I&rGBjF=lUpyn~tzyf9GMGaybu~sSJ
zg92D=xPOOjU#V4K&Fbu0Y_gIAK`pvLF3vWv53vR%A*X@W+{HNQs?RX3W#lTuYR=&6
zDcHQFMHT^c$c-L5>A~lVM4In%k2aSYQ}wc};R^XNd@-aUpDw^xK9K9k)Dc=xF7Tw5
z4?bd-%+=q9jl2T(x`uX*cWh+&er)sln*(q>6!|k!btAqChqt(^b-bgiLwth_(o2VM
zUJABc#OXx>Lqzee%OymW>jWow;n{RHa2KtV_&#yUEOLr8))AKvo^zkhU|3pmgRm88
zbZ(qN&*OQ&uZ6Hs5xd9yo)qGyhq0q7pWQ%A0?4>JuhbCYib|BRp2XrzcAvrORfs<U
z13r*YDetQn>v-MMF@}ZPT(h~*z+I5At7sFuL#298tv=f;6wM=nH0%d_Q^p8$qC8$z
zHnt|V6eTWpEIEBpU?^Ckh9OKm9xZ{RG9zz#DG1DZ^sIH^s7yA2W1_Yb4h-R7YqOC+
zHd0xfEmv&>OOfmnu3#pP%rJU7RBj_WumbjJ5!d9hs(5`rhB~`s=q^>kjhk#s<84iS
zY7Qq_(2X>B_nx(JXw6>4?9CuTlZ?7xL0fdiIACb7y#=w)rg($18AsQ70KQgrhcF5q
zbSXvfCh`J4tSc$tm}O!w`ucW_j3eP~U^_N&n4h5K7?3gocy<pFNk>R2r+yE@r80oA
zp_J90Ce5^MZy=|oz#G~?HV%vq8m40_HaAU7tToruINU5I8BOJ9tUdRtukX@<?YoC2
zM~5!iJv=(J86~zzS>pw1+KUy5BPz3f{Dci--`A8EGTTCg18s1hKqc9-CB_ZhS8q&^
zU`=`wI9%jCvjsYQ$K8bg63;9Y7ulWkcNwMX!M)e{+)f;a1PRCu;>UQL*!=gonA!<D
zJ`KGJdemfGo<*8xsT&C4Pc#2QLKK-Y*tu)x5F|Y;HAn($AdwXGG>Qi}EtoQ*p{|Ts
zlX~c8PL-U_KpX-x65T#VdXzBaSDNDG;rM2gbhKn1La*4W@C<>tDaSfN=On%~du^&s
zJ>YYXw8In<A1{i%@QO@3A@eLEnWD?_V%F&4o{rYOfsXq<-QA9d3!#g9bNGqc7xvE7
zYWQJ<?9malcdyOTzdv`vIZ;>y>GWf6rJMV>8o_>mo2_GuG!v^!4nZ+l=vh&T{NV>X
zRwf+OrTs!J|ELhoM}2*RyLRjt*vZkX`T=z`f5`lwfEaOs1oh@J0=djsa7$$Ug*#$`
zwxqPUh1@9*--HY<h0{&Kg>WwJ>l+yznj9D%+=iR+CI@$HmgSoWgXToG+8q~y+y<W0
z0Zoh%r%xQ$#A_jyE{N2HN9&YGHAt5DE~}tjQ_!!L?eJZzMqE8{V3Ci6&m&g#78zY>
zC@}?F=EAKThDVA(yHhFrp^V{8ddgzKtoJs>#NQ_bll@XCj-mC{XnnIQB}^a-K|RDf
zmEb?s+TE!VN`YYoD`vVbb&gMk<fElY9kQ5KB>YyZ3G0f~?!OzvvZDtrLQkuO;Yi?!
zlnD>FrAR7l^g!njWC>v2q=HQ2gcn}pU@v}f`iUcOGTfqbf@VYD#tpL@UR2tI51_?F
zs9fyO<pyFb_F9BG;FMoqOPD0ejd#91(KA=TJpIn;+QBOC&IxeNxR;3Zh*P#XUV{1F
zen8MPq=`x(NRS1ZIbbQXIOfPMgq<L|V`kq+l@R)YD>34nJ0&UTIUv_A15z<HD-0*`
zsotC|D<&_ZR3jLb)<HhnCElcqKw)&oGtTpF@)lp#CSH|}+u!2}6DkUl#IbslRWL)E
zMjB&j=%9o|@r5hbul~R-HB4rC$`I)ITQv@U##D{iXPCYyy-p`UPNLwctn01CnMV3%
zuL4)02N4SdP8AJ{YjOqyu}Suw6F-d&Ty>M!x-Z20D3E4^%^*e;h^h-|ZuT%}LB6o#
z3%PUhB6g{RhPC_LA=r%2L0mafL*BUI2nBEPu`K}vPqXfrxPBc&fE^1XcvO&n!VgmN
z!(NR~_v}{}e+soqoJkjKm5>3Kx-1zR*3tUck8Bz4+ZkktUWy}9cL>yxko9)3#&+u@
zJ?iGN6>)KvV$o?ove6Ohc)R{NTu4NU(aBLtI#TM3SXoFBFyf0I_P$eC!a{No2`9#w
zx~S-PBAdZNAy+jJee$38rH5&2GR$jkWr0I@zL&I5@I_$ejWF4VnTNcu4*H4zi2x?u
z(bAAAck4;Ly(BU4B2Fm+j0fK!dXUxKm>O|LO1`@yY8=-))D=z9Y*53|mFq{IA~yi^
z38aZt8&6dGBH`$YY3dgF1oAwWcu2KGcuKNWDH~14gB?;VqDdndQO(0+?kFI>juEPH
zG=Q~<0j_JRa_0qBHzfq6@;zCC#R-exGOA9wdP_%c=R!uakYQwL8eJqqjALprLLVd?
zH-a56WI-|-Tg*vxOcyLuiFNft8Am@5uq)5ZfLyG#mG>Zm#+HJeaxdZ&>Hq{Y@VV?M
zp15G9%rOW(8c-?jOU$-GDAJC2NYJ2YEV-s=qoUTRZ_=l(s%)ZZM@0MWzGs}aQlT?W
z4OfB6WtZ5*XhAh-aV)RY-Y4R0&fQ8sl*l<Qm#dVKRfLF6qD0#SSG?Q_H*I*=Qn4?I
z0NqQG`SyDN;C>$Kx<ELL<ac!7PDsXxku=C-e_{OIN7=M0!u9yiC%#Up4TPA($K{%P
zz-R8OB0jA!oMvE+<Wm8bQHybg93SQexdo;;2oRxpozY^+O<C5u*dxSCte0YwTF`r(
zie#}HmX)ip^qbfb3Zk_2ku^iKK~1q05R1%A1<y;0iTDsUmf1kNgG1rTVCV3{R9I^o
zsK#!yQNNB+eD{Upa+QI64784Xt%}fm6t868^JCG>&4Hr$4<QF=-Cj{3Gv7jVl-R~(
zyc1-u$>?z2FmFP#KO#>e*ch48QWUfO-3qBpIfgCTM8eu2LPBl9ROG#zfGN7o2^7|n
z=y5`4%Z-tG?a*PgM+t@-dXb^Z;9T7Y3>hk2QhCd@-?Q4ftnZ}4(xCybes$r*BW3BG
zIg8~M64BnY3X#Ja4>MRrCj)W9r49Nv%0Sop=?&B9_RHhgTcd!vp&pCcU{80XSjW@=
z$3Wu=&biEYcUNoOxCW)n_=+SNaQCjeA2lrSfC6ygXQ3s`$l!dN4)%m){Q3h7;%p<P
z^S-`-C084^LH7eqkRr{jEm9~C+#fgw_0se(qVY&gcce86$=HC*AAV~l3cc+wl@>0Y
zYS=YL4&9i)|AQ%w(nZKiMLY2q7&z`RVsvt)j7xy*Xdt4^FW>5FS!^J7GmO%1u}3%v
zC?cDpACz}#g84qf=o@kw5c{y2-;XQ5q%6#TGb*WVXO!cGTqvi`ZXeG0C>ls#EPNE8
zvJQ1Lb}Kb<N2PTsWSuA_bV!*(XFD-w>keylADDvTgvu4P5*2W&mFR)ibcNLaz9~zp
zKx?X;v_z$KZqP+s$QPYxQ4{tmP0)!sa-01&_h<=T8dl2_Befa~e$3q)ac<)T@9t>v
zN{jgMlPDG~6(<IGu~788bwM{VEpr=r1o!kYY_c50Q5hd8i?e(D8_KQsf44|X2R2l9
zXZ`Q7=HUwRq~jE*z%O-?$q9w9!$=x%Wm~tzR1GvUP7iRYvVqfVA?jnOlIZQ$Bn8bl
z6R}hy%h||geoUml>Q;D9JDxp*s3Z(9J`%Hg$I#Akd>C!;=>uDb;3N4hWVtReEHk)k
z=h*n@!0^s-783-rmy08l4x8I!#y0HWZhU3zQo-i00Zx`0A03hcxcI4rcfnkRIiOOj
zBdI|=g7l1z#t=}AW%<Zn$>wEjkh>hZB-^Ro@?a-f$1yjoF$rPc5gA0m#;GYuA%Qs(
zRtkBr74P~Uxic1(3#5vm&6-$KI+wVHlCnl=2IfVtTtV9v*L~ViyN?-%DByk2v^8>z
z3*?KTB{_SfaeyUTW#6H}X4?iwc$K+JszQ4R&R|0p|3hdNc?Q_{XTL*|n#AlJmQW4+
z(r&sobX>_%m>J4d2$rqs76kngIUwI|{}Pi37Yg*rk9DUqS`{z~A+cof7(xflFG9r0
zxpy`!$<%@x{9RzVjtic+%8j=*C<8}h`|z%`0^A9lsdQ5-d9Ndu=MtBIp>1f@rJy9{
zFU?MgH?5<H@zY>GO(YOaK0Dk-j}n-Q_qtJ+p4YTN3EU@TpbCbY1ZvoN6>d14OYoS_
zu-h;_9Z|sLwlNP;K&(7{i$mTx1nEv;AQus0WLN{*jSom`Saks>4Lgv~?c%L{7#M+D
z)5=Du(WOYviS1Ihst_3!cMgfYuHja8wqxiZ5<jr6JU|sN%E1fWS3Oa0b;L;wf(64>
zNr$%9{Ta7{o#qN|6_YreB63&IAXy^J_@fA%*ldL3Ob3Zr5y&_eGB#pSu^AV$tdqhB
zbQ{HtI&)buc$JJh6;C0C%^VAPk>VtEibE)SjNmRqL{ePaZf8N(!6rD4U^gsHk{V|+
zvqrhV$1CATE|yN#t#W&o{t(HzZt&Rb?mvBOI|K0mHa%N+Pc2bcXeQ&{+8~N;!x>kH
z`K=Pi5c?gonY%G0(Yag$>-6W`Iqlp_ovY`b$$*U}M|M=KPIo^R$IK44p$XMbw1cIA
zk50rexquD>2;9fu$%=6vD?}4wyM?Q)xtFt`vzPj%16BzT@EVBr7`&(CYz->Ac~bD0
z9g_CVt!w%r&1)bdHpJdQBADy&r+2#I<6hCbwIN1Wy$FhfPb5U>xF_icJ^UW?Pa60D
ziA47qa$m*#uxN_KeOn9w%AH$$kq|#NHsy;wK5oW{QS1gY-=N!n97p~R!i)?nx?mwL
zSD5yJf0vF-GO$U;E3j5IY>OGD)Z1&}GTO6~HGI@XGCDL;h15z}ctF5DmLeB5uvcwp
z;hqjmkXbB5Hque=$$^+uQgpGTGe<C-nuooIka(_oFV2I1wK>REcN=z&2t>@QO{yzr
zE>RwId8FrIA$O&K<4ttL7f)<4J69}YquDhkc-(TtFLx~d6yTKve3pg$BHv=Vh8U>0
zCjQxUjTYeQ#S+78LD4!>@`DGFp|fGa!%OaOb|n9Ev$ggXh@rg#z&3Ve8r{zMT5F&i
z7prBoibve4hbHl}O0u4(mgv1-O79*m?CzeyIPq7wAge<-@+E-J1(wV}X#*I}-b4pl
z5cGB)o4;z*uyu)LhD054(Gx~iw_czxJE~dL!4CzNaTRb-+N+#4qY{!5F%1hYcZK>E
zRyDdfqEpsCeCCvT&>LX4RW1WA5`VIzZ7P!94?D`maZIP#ZBhhW%GDTnAo^qV$vUdb
zI~f3a1Z;(RJT^AGou!qRLv@^-B`^>h_A(2U>awg9t5CptcOH6$UZJG@dj#Lydzdox
z8F~{J=@u&&*Xn3sa1KWl^X+R4mMWFe+Cj*T*9E#5NFfiQ=MwdR9pyN!aZt%d1DS9k
z^_D}Hp<*>_Erx6mO?T^VlPxZhMVPu&#aA`*he2iSApe>=T$CsCxP`FVEb`Gle0B_w
zvW>>5vpkBC16BSMgWF(y2dz-_jwr`ALP1WJS{8zK)=Ko#m*K1dVT47|^@5aLFAhgb
zd8F+n>N0*<J_L&7cBo3}K#6OGvqdtJr+{CYuV9J<+RD?cf~=f~>DGqnm@E^QpNN0}
zyG}JujC*jA7D-!W#Dp^L;=}|-4h&{iEoj|tW?8gGP;P9;-G^wnz#G=dAZQTQsrG6$
z#xbd~2(0Fb8MS5DG&SYgq`O!s@)K4y`Z>??Mu~o%WJOf$Q@1W^WBiCya&TzYv;mJA
z18}2ZKPSTOEnvc0Mv_O<zR-9PAHu@<&G1=<nS^Ag%Jr$mO0j-fvCgZ~{DdVlfNTbG
z5-3=)=&03Uo-vaM2fd{(=X?R7Qw>Q`r+2WuT*YTA<@!xy5e^goPmDWc=e{V%aR6#n
z4bbGbUjFiLz5IIoPcVP$<u~cCNWzqyGN^wVm1IVImGmSK`X%DL*c3s$ZZ!5_MHA71
z8}*ce8)zBXpp1pJ?shXb>@m0x;8;!cnTt68>=?H*<+cqS5$GYecS$N&Ncs=2i@+tJ
zKxIdRSrh#NjZa>{1_5Degq&`2Kx8EkZXlV?%gH}e?rA$B|GGaN4<v{-E6f{oWI9WB
z><2a79s#1=BPYB?F;<$#h(}I<t*L@PmkL)OXUN?<luO}v^G5nyS8UTD3I$B0qehsm
z^h!5gl^eaky3syxp5Yh6AIuC$i@TM_IfSYG-4<-?Mxq8b@G{Pz4$76ia%{&6BTy@e
zEOL7wbO~ovkS^5V!54olEIfxQC>V0Z(I1J$;8>>|yu=vAO)f|@YM6)F&@3&+ezTjC
z18F>hDVxO6(hG+-TOMl3;5B|=MU*{5geP$Pm5v#Yj?!-WA#KBe?vX|`#ja{unHD1T
zSR(L96!N_;@xJ|{B%WAmWVji}4L<n5uv8Km3Li6#6gFBrm-sNpIwrzm8V8MiQ7G<h
zh;m3+-H^$5U^oGZr)4edvDf_kkuym$OF7#EXDM=FLO$uX={!nwQK4{h9d#-So+R$1
zO)f=;tW$&rXXy63Z><=?(rc!c>?hDocX1@OsTl=-bwNqVYM!i>R#PZ~4v~h!2K_B7
z?vT%CD}E?LOkl0r5}()I9g(0zx+c3CTEhMFnYDyiw}6w6SY?-TlZpAE*4ZLXT%v@~
zwS4xOUrCBFVRFyxLizqAXGhG;vy&43!AY&;?lR6jZ66rlvTJmQZ6;zPaO=?JG5|zT
zCGJE#y0*^dKt!PQ=vA)^OdiZwR=1E;41<Ub%Q6~2F$R$qbC|fnV*|#y0Q@D@qM46F
zQPYYG)WhIS{z6Rr<{HD@VK77GA1uaO>13K#=OF4z{aCAcMiB!e8(5v`y;|;;HGfl<
zEY~o&MX;J}#v5t8ir`L`g8!{|$kI`vh@{^CGmJ8POFrd%Nn=s2hKWLfP<<>3ec(5%
zXH?mMquR>_tw^qcP+ufHxzxTo8y8<Yd7b0h71u6wc3TGFe2Crppw&!yF9hKjE%6fp
z2#tn>8IDwBO#^E>>eZk|dXK+E-M9`fHWy(rFsC_Woao|#DXdcyc>K~*g&#(ru|#qI
zOGTkv!dHBGm0XwkvAoQ+m_(^Tg=0fT39dR`PRuFVJ^249u5@BK@w_S4Ir8R?#qZo$
zR(i|{F9|r)si)67!v;we=;8K$i`<wD|1`tJ4{w%{+sL}*YFzW}2P$Qx<22Mi$x8_>
zkm>!Cw&?bUiM-sA$&)7)zvm&<GaY~ImFQ9WfD$!=2o_Y3s*0Hor;i1N-$l{0Lgswt
z8%URgbfO!9d;YH;GtXS6V@f2AJRBDpF~lYLkjareK98@B;94=)XEKu`d>ea@9d~^~
z=e%tdUm&W((}(TbiAqGZ+R>#4mFcHN#yH@U_82F(99zb|^CRsSEG{;J_0zz<Dlj^y
zCVD~#C2`DVrJFnli7V>-#QmF?_dx=#l8rh*HEbp6hP0zi5orw+iLXSgc8u1jjnl<1
zY57~Bg{^i3>PZ8;ZhHA-wd9*)k6Ve3?6wFU^EeQ|IvRXWic@`&0UK`^)+~)hyZI$x
z{{-_?<$fOX!V^YzS(n_?g+1Q;yCloZoh-6sk);AQK^3=`zEp)}MR>pjA}<N{-NT8e
z;rOKc(>V%>QrVfVtRyvYc0D<FX*^7Q>@fAzPjBiNO)%F||8`3)n}LMh_OlPBt7rmJ
zBj%8#9y=mA!KGdq&xw~vaG!HR$*dc_&aUrs@}|-uuh@JjuWc#}owEE`35kHNdafpS
zI5qr~)+U2f6EO0#mD;`{KM0hc#Xq7|?o}e)k*9JFqa8QTYm%d@Y^~EsGXs%EDnL}o
z<HCDf+r>6`Lr?H3(Z(*^q?6OaS$HT-V!@)K4VD2M)5N(d77i)P7398a1T^K6n_PFd
zYpE-fWcm6qnvum&o5ptYE5(xV>240fFW!sP4a=U1mwrE4pu}4XVmnGH?TZMTW2wyz
zY$8UeGef{4d0<`o9;acsMlN@-=&p>KnyVqy7dzbgf7pB1?YNF3-}5`3qJ%@8D%u1{
z$#$>RutYTkf)Z?AFaRmHhfu>sph)5nKw(e-DcaVod5w9!d6N14BO-I>z7+}}<#w;r
zKBq<0-nsJ<85tS(NX*Nsg-c^KbKJ6@or4pUI6WrS-U86tu`DNWPVotxn79tharBCG
z0TvzqE3pr0=Ww9Agw>MLG;(RB3iP$PB&s<YmK%_^PiI8H8#H&N{h5uI_9nevTie<t
z1I^C*pMi1e%UiM=-Km&7^O!Nk@QD%-75K-w5!SJ~(6PqBO}lH#Wz%o!#1J6Ags;$q
zN)gCF(kxrFeg4|FNSmKhF4YcX^%@QH`XS?jNKEE~axB5Z`jl)wCsPm(nulBeg)%!u
zqNa}F=<3;2*a*_pC$H!p{+H7oejdbPmGW%I`=|Ktey*Z%w!8d$x5z)JE@8GPGk5bo
zi|#ZHzwTyh!NxOS@Cr76TeJY$1F%Kbva;eI7Xxb@_`kA@yoVna=_<Dd_N!#78o+nw
zY>qF-=c|CSF^p$ju8lMpsULZGjR&4~lVrSbx^TeNd>G;OB2!vfF%oDWYD$ga2_-UL
zq%%{@L#`I-Q`1|`UwA6Cvfn>*LR4ILtP}yYDJO*N*)A#@KuV~S$QgIk4U0;(N2bk+
z3(|2o<A5C?KC^gxMwW=Em(%k_7M1Riav`8WP*$@Vd1podv^*Ui;okD*gRN&zca{f}
z(|0QHd?bka+%TfDiMlM5a?j6Mx(PB#v`#en#ips=%1Ktxen0*|sY&TBEe!(Zu2Z}K
zAu7gBtPa+}D9c5l%3IWctluFCj!Qk8!-}q?3kita%B@3H<aw<zW|?;?!Z+<o%^Hqy
z7oD5!6*t$bV?g_26@9KAJ}6GX{c(>xNR>TIOqSixP4Dnlk!iwR4HczGNpP_9AU9Ad
zZbAegW0cu6X-C4Bw1U}0=T`UZ;UY$!_t|ONgVQ&Rk(Bf(88cN@rRhW6B6QcDd|Kqv
zH%P2Lnj>Ur0^Uri;pWAt{CThnOKb8t=z)bIB=XdN)J9y0nub~Pn41Lcr4+&H^HWJT
zz+m=CAI6Hq`M6b+Ri(Bq8r@zZ0JL5}qx!^NW>KHHSk@wU7R-<P7w(m$UNP@RQTJ*D
zYUcfI@AT(AD(1O8sf41>+9Z1kOZr)^Iq@*QW3_3xND*3rrgT={D)p)jzf}n&F>c2W
zU1P)5UA5itZMx>UhO*wo(9K4745>cQY#a`)IZ1%1U{QbF36HADLNKYCYi2njJWy^9
zL=-0cS#1y0!ODHBry?sfx}aJ$j|vCuut>?~w(2GZq%_mv-{Rky+D*Xlkk+R!l`ul4
z?q(^EgE!PXfNSlT8u;v^QXB1G?%gv4)WKSCm32_fS!uIj9+we2_qnm+mq!;bFAv^M
zE>@=Ms&naZ->>0?FJE5ShQdV)wYiwS#UWE_z$Ta(OX;*%UXEu+2c0bz*oa=B6q^zH
z#5O|Ikm?OKAD?6E+DHy)UclO_SHoq*oiRV%l~ATaQ7tIBdsh07e9hk6r6ekQw(kOG
zj3RGCa7kYeaLpf6iTn*dvIi%J$|DDZG#Wa$MB}7_^$&FBgwRQMM>>bupU8wP-(I&K
z=Z+OmK}8CyQ=KfBSv?#lFQ&xyzdJesKK!Hqo{mqa`j=c#_OEVXGwuWG!y{D<N%Ihx
zMnn9iJ!Mn%-t@3}F6ceu!{0CEoCt!xoY!7KRk|-@I~$hau8VdSL`He<+BlU@<?oj~
zlOHx|<8)QLkpCC;fB3f>p7NSBzd_QA{e_r|zu0ypTdQZ((`MlJ*Sh%AwPJ86r-m!Q
z1jo+yjiux-!~tr@Yimg#w25U8rAbGL>G!nofdE=~rTAIszY$E2<LKo}(Swap;+e*#
zz8qrMsIx5ZrTWUx$M5Z_J7%-cIxKI6V&IRmRg}zGQcctq9{Ffgp9$I#ZRXqKhcTAf
zWLVqXhMJ=%L58czuI6l$tRbotY^;RTP|MgDRuB`uH@Y-NsXkW~^eyme?p(VNu$U}P
zv02xVoO(FpFtVI+tK-YRhgFP_9*fUC!%JU(<Hson82x#I_;GT1vVw*C<<arc#Rol<
z&n@8&dS+S4hiIPO6T@H?*hznd^Pu&EAL04f0~5yYDQ2VqvKodsf8p54DS*(lngnV&
zRV-YJhIjwN^a|fl-a52NxAphl>S*=Xw{L%Qmx&hm#gFjFvF)@|9F9ftoFadoj-~o-
z{?tTd$Oh)S_%-?m_H|@aeK9OG8$&+l0BQ}*7uCUI-xFyrr_lA$i!@;-=AKQ9#NH}h
ze~yDA%U!h?GQH>Ne!$90NNy!;rPXy#zcv%QL~RXPKyvD@P9*4og5E#|(<7T}j&ru`
zzg5dP&bQPoSF{e45yTTVKtvt@)B<$*mBTIANkSTMzOV%|YIrH-3($tKJB{&ddLS+B
zVn6v|+sD63t+=Y@x@7nV#B6k`m6v!ROJ_KrrIr!YmDXSrwPx6rq*QmSp#d|c;I&UR
zvtplH>`;NyY-rdvV>5xfI;?Qj;FRFjoU~GMAQ`KqceN+6ii{3*a?brqf?6kQf1G^a
zOttU9r2OX8d^5NQ2>sevTie;h;ZI4<x7VM2zpI&MEIK;fcZyx_yrN<u#E47>+yg1*
z&AqEh8ucTf96)w(rg<B{9P1P8WMJ5*0FF|sI`xR%ahL+jBBZryQNPaoL!F`m)V){3
z?+0xDOY#&<#-~51R9Tcp%S^5fBNU4}vjRM`&fy2bU6FY^Li*zi{pTJg35!+KGB^`4
z&J*S3Ii_x#JgR#K(mL!mj!w0cBlSQOC9kYU*pY~vbd+HQGLEDRY>8`!^3t=}ipoO5
zQJB~gOcGVKPcPxK5N4R_(dh-9%7ik+AVxN@gX7D?$%@P|#YbrcjN_03pIeJkAAa3o
zkk5I=BvSdvOTA0(hAkYfao96UfTqc!YgUe!4B9*WT?VKy$}p=L8r;c>IObWgsQ!<;
z=hND2fP8Xx<%ER&+7C6gTT)Xi5G%c7V>8cpH4gZ~;G!sSxH3KM0C(D;EBA~#Cx_GX
z?5b0ti3jfj_}+~RC=146&?(?M1k<k7MWiSH*qNkmxX-vJK4wC?iavHW=K1nzI*~9~
zc}LxFpL{-IZ$8bWO2@E|ni2&%8++AFrhEYoi<^9d|Fz0T7Gw1jf;tnuH~W><_FkpX
zxBmWSZS>;p$?G3)i?9CX<?U~7f5YQjccmxrLw;XTtUoVGrgVg)uC5_%|Kz%<RHB-)
zwVF)6@bFOAgYo&{$^llN*OQN-lt?=>^Ur9J%=Y!z1so%p-bp9L^j9|_n1YU~R7fPd
zd__!Vfd-4yD;IWT=NZDenY{=87qZTj?7kszlq=MOnu-w?Cdsn5oq(jevtqtC>BgLM
zPsV3<_2ET;2RT)(Zqn2E?BMbvC&O7%eXNh{CCtq$7sn-nE(}=e|B~KrMGD=UfZ<>)
zx>J1Fe>&B0Kh#Z542&Zu%5{9`u?k`XuBHz2aLt(jbfk4|t$$M7$e3n=wf&{$6PkHs
zSv-nX-r!JT`jm<hTzI$MT#PN~M2USblppZ=eE{KGR==Q!QI5%KfGH8~B~mrOn1i)G
z1B!mrX<sQYPzec?jUwZy#CT?l%D_leC0DDt$<^9=z7n1LtecE8FLAt9$WwpJAgCS#
z74pcCK92A=PZP)8!C3dT0iWJ+pAnLc@R=r2v6e1vw=M-+U36{BGRzb)3kV%fPsTW3
z6<hGB;1i?XWMZ=J{L@Vgl<RX72*sm`bRnI4uACA(>w>z>+R?Oy$Mu#aBGy!gZVHtS
z{bZ_YoYH0Nx@w}-QHU7X#21`df%h>Sj04I1c5%Krp8Oz@wCo<9=!&&E*MuMozT-Sq
zo2aW2T$5lrp{syV9m?9|9;=o~*WBj!clFdNk$fACaw&^9sNdpj2K%7{Xj<rs@?HD;
zQhWUo-DIuzNA!`j<sZ>STgzT`)}TlQf;vhU&f{xqibOL#J&tfMYOd#NYn1AAP0eo7
z<@=ra;}sY7g56}=>gtkY9jF$v=na`~w<gY^Wpyh<)n@}ZH@?npO0JW!<DX_mbLe!k
zP__xR0lH3in-sdI$?Q@!Tj~_?-krg}xPQ^mwE1BUD74zWnM1AEFv|Bz$BdHu%#B&N
z=i{aqhJPAd;WW8Ac#iA$Uy`R(-4*sPa#dDM3OaScFeNs2AjyhXI#{Jkq)@^p=eOS5
zuLok~wb#*P!TU~M;>`S^gnai^*EL4ZHFDJ**Y2uugQQt?-)rs9I~MD=?feU^-O=26
zgqgdp_Apae&35R9!>i4P{WwsN<~gj&4q7VDmpm%0bGCWLsC;R{Q6vz9ABJ`4fYX69
zJf=l%W{@qqO*;MJ!WAP-pB}J&dG7kD^zaL!*uyzMY{?frbMfY=<~jV5<tcO)77X>v
zTJ*7aU;DmA_@k{YOD#QRl^MWW3iz^ZV&zM#RN@00iJ8rq#wuBmn*t5M+4!0lkR0*W
z)+{5ee%4o#OeLK=I%iNH!AD)1YtkFaec<F$AqsL*mhZH<BMX)o57?pA!RAk6IVZ0T
z&fc6=wCRk5f&4O8Si|SAgZKH^hvmxM4(i9j2=zbe1SB%iB3@U)y6eMy^d0e#3A@&p
zQV9H`mRMu+uf5LRuUm`N=_zhY*Q=z(4t3LiEV=5Pi&LyFV2?1Gm)?$l4{6(6AN3>q
zFQy;nsQCBFBk}g9*{3+OvXR9yf?jqCjTOmo4}kRhOA)lr<A42b0>i~mxHz2#`GPDx
za{q3C&U{a_$zPiFw0$cSTvf|gV7M77o596<*q!s&SV&c4VRS$+udJnt<GUjY;=j-%
zLSZpQzE)ypqH-=zvG=DdNOS%~Q0U#4rhr`Dkj+g=SDTd<NvknUPE1)hoEILkx4ybs
z13Z3&#T|YK)wbkeN+g!@s>I{sxBJ{Cdu~#QeQ}fRdq$`fA$BBfOj~y+YvG7sfq7LJ
zOAPqWw>{N1)PP)YCyw&fvHxYT9Txy|+`nV@t0c((awwjbP{UqBZ?OzoQteIPb+Wu0
zwJ8WizxWjjG?hoKiC~9Q95Ez%neJcVnBjReyF5GdgrdZ#i7gX%qOj25HO|`gcslfH
zMuuF=jN|a}@k^{s=*!}X6CkcWO6a|r9xBhS+)<4(Wyg)I+&H&nLb(@bMQ?Qcl2@ml
zG-J(l+-x?BaAYjK^i~=C<{ln2wiTH<{!A{Pbf{G*3cC6=t?|>MBE|l-2z~OAUmBW!
zyh0>T5s$5BpYU)sgG&S9=ZycxYB4rKx@Ut$IaeLrBnt%NEvW7b7x(2n5xHtQ?u2Tu
z_{%o;R<%FrMiIZ}@aRR7QVjgXam2)xMRvr*mc_Q?b7GA@ax>a)WHVy29B{wHwnW!T
z1fl<R>`mJjJRM!nN?x5@Jn-PVl&PF&9<p3SFS=8>Fa*Sxz1cEoW6^#6N1X&J<#opZ
zR;DL77wg>2Pauf2aE`p`-c{cmGP7pG3>S8(3ZIm$-8><=)JricOj8=<==75G9`J0p
zSke!;vSq)~Vu>%@4OC9Rt*7`wY7SvUsoB~tiLGF2*vzsI+la}<F#*}Im6*4v-<Gu*
z>O)(b$<A*hpWxfU>epz^$i7HpRaY4e|Mnlg#=X^_#jEgtnykVi%xN^vaC>JRnzZ(H
z^GCI7;Gk{YE!#4dR)ds?Tyve;74H!M8q$y-vQ`HjlBGt0*tPHFPue^Tx8<VCH|z~l
z;}3wzMDiHJ7tQMH(P(w}quViKno>Jd5HDs);4%hp-Er}{a@2DUo;kWd7$r3fH@w=W
z{|(odrlqClG)1G~i=0Tn!cy3>ydzZ<^N$hUZ%v{{MY4?Sfh|{Cc)QFKl-$cdZm`^U
z*)<11|L-HROmEmhTPU^8RwNRRa*Z3IkR^=}CJt)5kh1!Gs))h-pwVr9o<6ZV_OTZY
z>utMx`5HGN%-oTWhq|@K;IyXkbg!s0+~_X8t>^XO-mEHTrvg0(RPyYv8`{x|Br={d
zC9Nty=$S)UZ&C@&U9!6!;5pjUdR-|MV)~6H0)*==_o_d;(;`*xqeS>GP=qvX@8Lr^
z5Po3G`fHc&9-JSYUF`WkRzi<*k+uD}X%4L9itXKf+6;wTiZS!FS#E5&Y7oC+yR)3P
zr}mI2LQawY(*TFmpnZ9*{0v`}FUtU0ZB3*9bU+%&nUZ8V>%o5`5hLzJ7n3;d5CTg(
zgT@latJ$Dlr?keg+?w?t<}Sv@ugF@Z&{~!%n}*zWM0Pr}Rc%-kL?xn{qut;YUeZK^
zow?^6Y&oVU&!&XelAT2&PI8V%qH-*eO)%G0wyA_^xLtcs+~I~H>BZVwQ7JS4Jdl}Q
zrY-U-9Hq?cJ*kEAZ02_SAkA56jR-W7wpw0cGv#EtJU+Bc4h988z#^AZn&qenF6*Cu
z;Kd!H=14mcHTJX)GQmQfYdt4JT(W#ygqkAJtb2c(GI14!S|2w9+m!GUL&o7?ba~2p
zVB1sjd-3op<$9z{`nTDvVqIzUWb{sM{o=|xrx5j3A5PDa4%4Q%_-B}s@WcZIB6}2+
zcXmXq9ob3DAxfEGe%RRMm-~Yw)6Jch#TcaA0v&K!bW-YPKqZY+%er$oA+d{x3MwgE
z2UO1Uoxy(ef~44$?W2RY0RHfZEN9AGQiiOJNcMv@MA`@OfnoW$ZD=u_zO^X{9Rq?_
z&1glouf=BdU~`+=d+X0OAFP>Gd4;kJ=`yq}#Qm{*I6yRSjDWi*vut1knQ<c3^ojr-
zt3rF5GFhT=iIZ{1wSnN^OfUl{2H$S<AnGYD@(WGsf#*P4Y*yW?XRHJ4TGNvh$pNw~
z0FEZO>E_Hziu+u8fla%a-SmqL@~1awlazOCDp3iPmU0V6T2sUTd#FJQk{m>@Y_-w5
zviNcD!Xf|E!<sEJl?PMPt+`}H8rAow^5)hBVm<T@QTqMPLF7QP*iTzQ@ntd~PAwbK
z05%GKmuyXFm%S=l+#4b}I$gEJ+i6JELzwsA{Al)8o)_L4y7}sOOwuY5)0ZrXBD3S}
z<-DCt&XkXL0rcqDIm=lr#g;OQy_z1w*mMsAio|-ZH_+_u(V3le(87sz)H_M!+6zn)
z?x!4QowV@iH99bY&?1?+S9ZC2+qUepo}w!w*@OQlh<mY;351{f?zDY5?Q@Nl2^lY`
zZU>%ANqg48#~ACfl$LGWjJM1D!|Gt`Rh%Vm)Ayt_0kfIj`S?V-FtC7RWL4haCAHu|
z&E>{;3MKN3-Ey;drh%exLdK{Gk$5d~aV4d#xcgEcZA=gqHIdaR&rz&vruzhCH?_@~
zgCZxF;!Y!M<@DlwYIQ_o8gWna1vGSWEFT=cw}fHm#UwmGa)+(H26paF#i-p)jN-*u
z^}iIr<Xqw4MNH(!oZBz04wq}P6dFq+wL4mAzlJ@_fF7g`G6wL{&g0iwDJdXeW{C7h
zikzMUup7;FEsfWlbDrt5T!nRjhm<7>NOM9L7&#xiR`3C52<7kOPCFm?E>4zKs{8|A
z>oOcU^Qk}O6b5%|3Ef@|b~f(t>tc-Y;28G^^+BWCo^~$na^AZEmXo)Z=r65DqX#4F
zr@)|_cF5r<@H%&98n3_*#rY~xA6{i_YoeA8T~eRb`NMSLL>+x@fneZZ+BugSFuLfL
zD)<e{U#B@FwpdGN-Xvo`<>T-m$pcqker<mDYj^LSe5f9-PS0Nt8`CLL(y?;IC@85c
z8h^VRZ=NV8lJTJX%em1U$SzV^NuAEDZ>b!jrJZnxAJlygQm!>CtR5;%rGT+!gzIj(
z#N#YFr7&H-<I5vS)>)C~hIo5s8D<ho51K?GgRHmPJU_=WGyLj3wd&a7`#O)RvsEDm
z_W;LNwcsMZ;9!}4mRAQ4N*+$%#E#RjV&vch-jnq^bzk|>b$D@fGFN7ss8oM9nr~Of
zEZ{j5b(wd;iY?m$#EaGEn`X*kOMt9C;?k9wrDnZ|jSFyWyL3I0vJ^{HY#G07%i>?#
zrb?oW6Qf%<jSd=A?=wa1Z4t-6@jlJJk}NfXqg`NO`Y9~Dv(%NAg~b~p)#jFZuFj#-
zC7{c0V`0_A1eW?5Q$GcSdmALyxVu5-zq(&*fW*-Dwumk4fnq2BLti~WD_B&tBaSg=
z)J{G+s7O%*X9|TZkeuF$)DtNQScv0=1uEzO1&S=H@d?Tjs6$2<2$jpMslg9%%jV}9
zGiXXcex$>xp$Koxy|G5HiifcV$iueJLQxj!i)!<E7;`yvxokTmqN?%f)D@g%2in#j
z;EBst95ItCY7e)ZRu<2EzqW&2-JuR)@zQtadm;{bXh&KFykWdI-XHRW<7a6mvBi+o
zLF7{sjg$FE^qR=A*=yXPvsYb5kK)*Rb@M6Vr;Isiue6!wbR)2t;VB?JIedsl&Vf>=
zJv;D+u?gyt9m_XH4~A${eb)jtc#v@-?|8?J#k=;#^RU`*e$;oG2YHA2J9gHdrXA%+
zd)Iha?Uv3_Wg$u$!3rRTcy8%T{5ZgGT-OeqPIRPyfabpQMx`HwG#hr8sK)G?>NIWg
zshv*K55tF7!ZmGqr9rl8Y_`D}3T6<s8Ebz*wA#p~=Z7v6M@mHzif^pk2cY)L&&kOD
zv34`+(LLRLw!icA>9bsrZtKbJv-L-h1XYJraYzM7LvBYArduD~ab1&kUzOUe@zK1C
zfaIQ+KrSC$4BZ(TY08$CC0b0**Vdfj%INJoMR!$uE0^s&lp`)js$jfAQ|%1^FLqIX
zt-rGx``u$pd(#0o*Qn#d62!_jKmLx-UF0n&&m|&}xh^tq6Nig;ctd!B?>=3B%2d}&
zU7`csr3z19&(Z0LL>VHFhSQGtb$LrT{|Ii0{0CXC5gZD`*Wac>FpvtWp9yyYP^uw+
zerc5lh3fZ=faM}-*)ASWgo5%(cr%^_IZNFn66fAepCw`u{=f_?p*Bvvk_V4;3qz%k
zW_CMLxSo*u(d{K%5A6AP_SO(uxkpg5zyVvraTHfcT$6n5?yx2?nV*=1AZe*btN2RZ
z8LZCUovyCl9^fU0==tHBBz07#@IT)njXj50dwu^$oRorHT=Fc$B#xBHDwBp(&_136
z<;fWtXz$rccOe>Wj1K<Msq$=k=3{;t4ly$iJkWc4@?d&l^d=q`mF~<}0f#A8z?_Er
z@$beDyY};t>@3n;4Of+>g(L}5b=dEdDFPe<n*DhBSE~{tXxQ&Js!1|jeKk8ic#Dce
zKlUF!-QC@Kv=2LooPG;+mhLgbCSUx@eM$8ABE%abLl@^C<X!;dB4onYYQp{g#WaO<
z`?ug~<Q~hvQKU>Lvc$D%A8Snh(0IbX&u+b%r3l*xNiAVbuk?W$ZkRPlK7)Z4xSOeK
zN7|o}+ab$?(cb1y2ke@3cei|<En#aSq3ixSDcbeNV0vI$A2dsEuseD0N!%8;;U!2i
zf{XE*yco$|%*H=P4@+vp5vs9VlhGzpoSo|CbHe&r94mu;T=Fd{pST4&3tquVW}v9d
zsD2RyCDoOthe9*C9o2%&=p=7PBd9ZZSw5mj=QCnM(4(<a79}E=CoNg?%%3N&Waa+f
zhO8ezsL6|=dr%I4{5i_+s@`GRY%9rV;DWZ3{FI4HS%!v>#^#$on;gGd&7zVp?w}ck
zqzOWBnIgAlS2e|eWHC-~PL>DN9ZZsM{4aUYZ|rPh&)MJJdHRRVjc5BCj~~pr<`3S0
zxualjwb!n>+lc++XgFrbi!3e+Z(-Spz`C5U9j7B5ES!d{$5ub?Jfu@cRr#ayP4a8W
z6U-Ea#c+1~nrX7nPv{dO($PFm`KqaQO^<KpO-rwZLsv{k&Emoe?=DZ+de+u3#VuB{
z<5!Ay3FH6wmEqc)5lCrN4V0)P03IfJ%}IRq%1E6b>HZwVaTWSkRn8e_Ji~cZ9ZNhg
zvQfx1Ho(kG<U1HpgGxGH*Ia}~dhO0eS@sBZr@hJit4^E^nuVHL_Z{6xt-5=m`hB%d
zfYEs#v(!?7Sm$0YUc@_y)wVq|g=N@iJ+cN)&YQ2?w||9=`4evE<T4#p(C&886W!@R
z1A3dIDa(Fwm44y*dsA%XX9?e<cX4(RS={>Yoog+~PiydxvD1f4x&I5}F6z6P#anfz
zS8)HS%r|bPFaG1s-t5O;ee-W{OGm^kN(>nO9jfH+o;aP(Mvcp@%2;q)wyRq|TdJ}8
zG}#^t$?+xRIRG<%PMjxmt&kvPIG{m>zqT>LJa^OktS*RFi9}UWe7lG2%3k!6XG90i
zI$f2Vp&G&WrEn<kkI#rVAWCFomeJ`QR#m)Kxa9L=Ss*>6G@C}m4&@Dj(_C~%3?isG
zagYTRIs@D0E1Sm>{_1Tj3b{Io0?IASVHM7aI_Nv&G`8DsoHVsbnqzS2q@KQmBV_R=
zK_$8cyMv2Vv~aDelPpbw;~8(#TC#d8(VIA;z%RGW<JeN)oNc?xhc0rHmHT3;;|1ft
zITJVkD=F~n3)in`W}HHR#7Id8G@8wwH7h=HB?N#_!tUhU8H<Z%=_$C*Hrb4-1vI|&
zb$pAD)kaF-KQihha5Obt)sFJE#D@?b;se_=<K2S~XL`$(cp$)KqnA@cvj{IMO@Cuh
zT)>xO#?ARGW7=HKlPKn+sx(5Uavz|Ua7i_oU1#N?`pTmjRa)c#->QK@37lmLPb&((
z#|)BgQ9`;tA8dcWottpTn^>Z_NR|j9+++sn+d7dyOu}B=80WP_-phBF*>K%icLu6l
zFS#yE)|Kj)-FvWw*Aykd{=C1txxK!#&YwK>i{NZ}rp={epSufP$;g;;%ni>DPA`u4
zXAlDA^VMt)Cpd+kPevDbip{?M!fL*htwy_B-)%j4R_1rTZFXdnTYZ|gsvaF<ugDvp
z{(cGF#>ME1-&nC3pS<Zv-jj-OvKa<KQ;%%9)=<K!Iqb)Iuye1gAGxaX<}Y79ggVww
zdg%2U&i;<qb={J!ttCU-e3HrF&G;Rr>Iq(a@oA&da2%H)5{8wh2NT>JO7HN%3^SY<
zCG_UDIBWOxRj9dyTK9|<guj8z=0k05>+6K<QkdY~3WQr6P0kBmLdRukiNUHZ5&UTA
zR8Xlz5KR68L!^JPqoM_P=uAc_YfWy$rO}$lZ-be=b$FunMa~KH;AkqfOJjkZhm%jB
zM7>H!&dpy7e+Z(F9=-OsKzk1D;fdyV)LK!Xs%iJKs@_`KwH~jP<)b;Q_a_w_<d7mD
z;t*2vPTzcMQ7J*VMC6h{7PoV1%CezF2RXJOqm1^1>7xa+B+)StD3vO{#Xj{adu=&k
zNaDtvNeQ~`s9Oypb|u!6)ue!T=o}59wu;*<ktgP1;B#aX?$Zf6)izz&FeEYuKW&vR
z0izEU8ReXZc2uN2)DQW!bq!73`C)VC#c<>4V@wyDJ8rw+(eBpMCqvQ+)Th|M@82)s
z0%3)RI=}y#i{`2kG>s7DThOxm2vli0kGT1vd48^t?kz6x6-sGPB(OZBLW6ReL$sjS
z`XYyv`?7a_<#y)NfPphcDloKpU~U#4)eg>(^6jSO)}3&)!$2?@ML>ne70nR5TcH&G
z3Mz^I&)%|Z{?`R6)BUAr39fRK_Sl!Ir#b+lnq>?H8hS--q<9CrC{WP{5r6+iB*5F(
ztAM{ziD9og73Ypf^KrO`ML0#gFi*e2y#@})d;ETKd^Y;(tFPqV^Z-lXvFd^zq8CLO
zE2l)Xr*7V$fHUg&2ymzzvhZRxJD9GJ!#SRFvBvDsn3aEVq?eWo2P*-W|8>Ck=6+Uz
zrfEwKr<>;3jMX4HJg_|TfO57%hxH@F`dpFSi1LX;+IR|TqqJ!}Oca5Dq-W>j)0txK
zvSpyr*4Y?EmI-^!eB0f^8@heB(Za%$d?r7Pqx?fxldaPuq0OWjFK6FxdxXD3w-r)n
zO?J4~E+&-~yK4-zQIqirlexf;w;N`NaIc=9Vbz%I{SggHqnG0C4=&U+TWmeudje0n
z_0+%ohtr#*F$T8Tq>JDbWTrX<x6WU&gz{L3?@&60##8a)8}hvTT1n}<j!{97<f76d
zNHMiUBx+>mLA-SDV-GSEc|qquO!zC32ZDoGu1u<v+jpDLJi}4bjiratSu%U-TX{p{
zoPZ=#?@EJEAn*+G^b)(aBnZ}zdHG}}cTxHGIyjV&Lp8^MfQ3q-?)gIe#K9PEJvjF8
zBy_*)FD)`8CflS!74VY~mVCHJTk^eYyG{8$Q#^O7Vz)JmgVQ%#ZE$3;*le{u%=T6I
zBe5yYTGPO5{JQv&dN4U7U}Z-+H~>1!$De9`mjEewa=_6%UVnl?huSKRc(RJrX&=l>
z-C@H%*0s=f7m*)8HCQ3O(QEm}__ECMjfNZAS?wK-Y~fZ*7DZf@k}lTnkRueBM83&i
z!SI4r+LychIvIzJtP?;Yssd&j%ckiR&g8JH8}$Q0(;zj;C!}c0#qF&=!VHjm0I}X2
zk=E+@`SG_hDl*TJr2vQR_bVHJ0CPij-rot8!O{@}TF{<tld#s5`Py9nHXW1DT-FJ8
zk{T*Dz1Xv?C`5iF|HJFqwf1d0^oq7)g&a@}fW(?g1YWQ2?@&KT4(je!PTnBg=_!)M
z(K`zEiI!wIUuzL^@AIwF`EiVxKd{KyryW^t6t$u8!Vx;4O5oDmXE@!O`w)+P`RBkk
zkGk&DwKbzZ);MF|#Iq_I?rB}7bSC~uCRYvf!qAigX{u)Q(}!e0={n)xKYO+<n*7s;
zYeRTjU)hFs;$hYEAd)Q^6_?EhEiH+7j*l<Tk8U=q^i0psk9NGTZMm(?pUAGS@srME
zW&r4$O7aD;+<{KtL_v(YjZzwauc>V6!O8`~zc7y$%kpo@VJul%T}4(LNrYZcypLu!
zKDSa0*Mcs`lN!!Xm2?o@iwzA5`@kR>tac{FU6=$};B%7ioec2enGB9`O1r2{AiRC-
zZFzh8z&m{ONZ%yrs4KHWI7O^oHQ|ge#Q)+RMQ=%Aaxqc$N|i-`=&7b9Oj9w>9QyF5
z^_?eMPrhq9|0jjVsLDx|GoAPZ2e_-D^sW|1?2dfKaH3e>-a_-S#Q!O<B7(aJL^Orv
zS8=|-eu<m${m(DIx?6kT-?2KeJy*4j(=!_!PhMTH*{f2r?{7YRq_KA=6R$ME1%)os
z!@T6Q75j4c-EZ#x4^4l?_C^=H_&CL6HF_HGzZ7%>{Yh7|2+rNZ>A_vp-$#U;&F&Ir
zhHE=Tq47Ybztxk&|1my0TB!zEVFWMvy<(U&tNi4KL>9EREkCm<4u6b{QT=XLLV;T$
zHM_F6Er*%=pnFt_=MJ}^-`@MekfZ~>hI#A7viga#=^F{FAj&-mXA9p-+L@!nI|E!G
z2g?asx>Cg3tgJ+C?kJ+Gk|4QQda*sry70p1?C7F^lMY`#dL6UH|I8&}XikapnT<nR
zPL%mM=mD2_KsMfMFmiB~Z+G=oaw@fpR8YrQI6hx<rD7<i_xB%eJ=)ygr;hra!SCGW
zU7W!@A>tuqP`}nhwl7~wgse@YbF~@%VV=6yC?SWIqtv0A$OC?YAt~fxGSYlr!}6Rw
zhhz?}<ZSXHxzEC4wl?VNPA9(XNPB^giK^m`hI;w!)|2&}KfBebfKY7|s+)~bN~%`T
z{E@sf%@{Z&jin=Dl40%D+4<2sk^L-$b&3I!WbLd(flp~9H|&^XZAKC!Labt7cSLvb
z@6LcbDG7&`F)??yazFl@jIxAa%#-hvxh`hpb%W+iIm(LenB9rHT#8k5<=)cJM)o|F
zF^Q#NOu?U~`H+HK+^yeKbTGtguDaKA&$`-Y7avqhUOtes*H-<ZXvh=uljN0AsOXU7
zXv42e;qG5U^6%SE+Q}gI)!mMlaX&bLNE>*LAJGZCqG{7=TdRw8&VF(e;$01x90On+
zEmh?Gr1KMFljt4=oCwstG^dz6l8_Y^IC%@z<`LeS<Ky=zI5DJUy>&&7xn9pjKN-V2
zPm+kGI-#}#B-Fph6$%xu9=|0vk&Aj7;o)*Of&-1Xz+%3cPUpS_45P}3Qi|z5n4ZgC
zeEfmXL8y#*dwVvvI2czz&*Ty*gf3b!UItX?v~1|ls7n<daKGn@G~qg<BfDi+p7rAH
zt#(s;&TPMOg2{~TtU8;+*4QR7MzxWA)-liv8DOeF(M;t4q<4<u{7}%0E(W{1kM2Hu
zWDK^9CP*@?gJ%N0>2-)p$7ZWr4cZ`)V3!{z0n7&PE{{*~_-4iG@A3F_W$Sc>3wP!5
z(IJ(K2IC7Vj=i0gahgKS{^fsWxs~KlvTtPtp@&4epU!5O;Kc)cR;=3&mcurdY-js^
z|AM8oZ!dQ663z`Skf>Q3NjVMpgE<KI<VHSzhoWAqWFbC=<4mx_ev;4?B*lkihD_O#
zDiwp{jm~*f{}9>;a9ZhQin~2?O&u(eJFN?rrc1Yg4Gtzs8`vqEN_IX+9~Gtc{6_D9
z+6z%0i0!^5zM=>75ctu}gN^Q-RAori@y;JVKTTM1JXK7xd`-k*4K~&X2b2#Xp^-g)
zg#~1FAfDUG5a^humU}VhJtQKNuS@86jcJ@ak?7-N!VpfekHJ8bsK$?^6BC;pmir4u
zkKoWBc|(ZYr^=kBES6fhu&3h4T7u4A=L|AK=Uyd*H@rD|g$m7K3&gJjQKR4?a7OZT
z@8>q6(Y=C@M)yYG7bjUJ=Q`Opssnw5Mr1tiIBP_}1W|(d(qCYFpu13%ul3J9E-_-q
z<1$(F2x$1lPeFExRanFuMg}sf2CoU2eneh~=OkCLdVMnlM`&&|wSQj>XK%(|{_bCf
zIBH@$C*_AJajF!hpR4ufQupYOI|De|dEKjjz-YtL)hAlK{HvH-rJyx3sR@nJ{Fz`H
z_qNAp>2-k}!!0THB+!tmA#j{8e)=Fvb}}Wm)dwNC_7hj^F$G%>LIfsT&IcoEnc}p<
zV-oA=+(i@l%$6uKNEZ|NJp*oQ9-X=taU;sE#jT~8T|pc(9xhCF>AQkzUSBUoy)IR+
zy3Z~_c3`T)Txd0FDl_9b3%B(Yk<>e-0QRt=swCTh%{5Ymv-+hu1K@W%{(u=Kt6U}R
zYv&I|=j5f^pyQa0YRpfGKFYAir`Vv~`s4XsjA}YYVPZjU(&7A&SvXP7W$_4#Zu$2=
z?<>99Cb6v#pFeu^d}nLfv=!E1x32|`AxG!aQ*mb880SZ#!K`ySST=wy*Cw2~wJWi2
zj;asz(<M5O^(c>+Zkf}GIH+!x!JUzKk2pXZU}$ob&%4C)8HkRmrO+STwK#yg7*!9)
zlec$8;JA=3?*8@Y>?ICPcfVM@w|b9`uE0<@;?Ng~q*dstOXf;cyJ6q|B&hF8|Ifks
zYoYX&7~M@szq76F*6>zBT?pRh2}n%w8<~vZw%}-+YGK%vpF+9!ay&aakhV53z$tR5
zkzGtF5KDRdMdcC_7y4^t*x(uTvU~xyOM?jpCo#6~?yR)e75XL=TY{W2M=Qd;@(Ruz
zd8VSMDk8?@L>V-V=clQ7u$#(t4AU8C-EbzCe2gYC(dn%Cc_tbmeLVa9HgZ=M5cve!
z$D+4h^<&8`-m>c(R@492LNjp3k!%O9-L?7EX80noXkxvQylVinhbD~qjr?)gCtcmm
zQBT_FeOElsL&BmNyj(D}H^IfZs3=v{EyV-F+0?jY{m5KxJ_>3n1BknN!pFWKOc&Hv
zcu^l?^`NEO6%{x+IyHswLn(~E9(-}{%ij)uW&gP9VFVd?#fyJK#(BFhwer5HmCa$7
z=h=YHR${W8o=nWOSrsZ=)Km}yJ$!}ks~F0H_OI7>8LP^<y?TW5CjQDrO`S0<WT4XM
zVsCXMj>y8OYd}WIy3pQaTw5o=uIr|*T3{6*dZ5Eb+hi)GqxQbv$3$XpiZrl(3DlK7
zef47edbWyk-PIkv%`gsmD?4|Ef<EFgOe=8p7|pMrG5Ua|E7cLIdUBwgzMh-|A^a;%
z6CnNl+8Ubb^mx=Wd*d}G$0%F?oP(yOq<M@EPkY5uS-0~_8XT6=RRdgB^?jSWq+WPD
zAotlvEU4;N_r~?s!?#x~Cjeu+&;cVdm7uW;8^sJiyp>CH#KRutf2fF>@y1e{aLu0#
zF3;*f3uI5oNuICFGI!&B(|RJj5A(=OZiV2#H2%>n+j8JDvp6Qq#|H%$0Ueg|V^c~!
zvRCFltu0O3x@=l;!PYx?kyCd6DD7W&+u^^tz%$v8vHq=B^Nc}YVj4Znd@?c{4<B=d
zYP9CMLB*)k$+5CGq&O%y5&orXU#zrmY!T8{YqoTPxqxw6i$f5*N*~R2-P$qN$?t^k
zRw#_LW1WOY&^ETnVhEyj)5dPmI#2&tgaE|-WS0>7k;6?(g^{(}>NS*7SWyYYa1(CD
zTN!ryXyC&zh&I(xxLlI5F(yN46oJQo)isz!`V5<ihW#vBY6Rjdi@61orvqz^tBNi$
zT76<}DoQ<SjLMu7vzOH;OhEcpy|y*4(E!FeRvK2k_UsrUG=6#NHl>1^M;8y*w;ttl
zt>fiqEm`jX>z5^YDmw_n*8OguiB>;fWZ))9u+XajQCKK5eAJJvuZ6UJy>bNT7M~xX
zYgos?4%l=3Vnx{sNg>ABYv_wv%p#ude<s71&^Nwz+nOSgvCFMuS0nSt?6vTQzp96o
zH4P~Qtm(M6lQEE4I93Sca2Rsi$16Lu>Y5{t7qHWuxAJL>u$unOj@;%6mUZ&<S$xLq
zQ~TkTW%Wf$@tWhVw=+`32bP}rjwL@*153v%r-i=|%`{j^sXxC)*?u`Of)t<YQ+r6(
zV9zCv#?LkH>PMy#zCOVV^oVl50}@gxn>35F!;^L+@hroFpA7_$3(VeF3{bvltcSL;
zc^l`0#<%iESm;|ABXs<Yuj8T2UssJSy=miXd$h>6M_AEF&uZqV_Nq=)m7c4m(Yt-L
zpI^4eVSnUGI2xkpnZDmg1loTkgH)rR=G#_B?HR#IZCs)jd_*2Z!Auk9*#Xa7@qfOL
zrNknV@vHf2@Y{R$?)|G#qO_&a+IFV#W&SV|4xw>4H|%dcpugYU`^~*CYyE+$)>qLq
ze@-nj)9$CSt*y<uXkB&uTkANTSj++Qx^BZJ8y9QyOHUU7Zfa^Xe7e2)1p8uM{*&jA
zzunvc1owU-TKFFS_o^}7_&jkg9k`$ULcah0hsUYsUhEs69bCo^XM8$4SoOLM+_p!7
zP8GoT!k)L*+My5q>+unSNn;82u=e%zC3VSgFcXi*eu$+QZ9RGTbpN}}C!0I#k3>%6
zIY*V&&IyqJTwjP<oRx_^+`9xNkN7`1-j85ofA!Vfi^Kb0T@b`@j4u4^<#)^X|33H?
z{MD~+k5+&6&21W4lfU1({qu?RpfMtU73n;(L7a&c={$Pw_S~A=ePzXgx<Z8b0qMY~
zInw}4eo+ICme=MQ>OCt70p%;skKdCqUWwjYeb-)={Rc;psmV_k#<7aZUa}+w<;*VI
zo~*aqk9H*<8WW{iw@;6M)S6uM<p%t+tGG<U&)HA7L9OC2{Gs{I*q`QL6YiLT?+n;j
z(l~poCl+twx6T@z5wm13(_OkO<$&pT^6aG*IC1H7bva$qV5EJ?HM|@lm~t0EgO9ri
zA{ek6fIwyh5r48mdM!5(tMldGFTKPkoU)NI8@tDPW}|nN>Gc!OMxD226Zc}zeEjV%
zHY4x8H7C1mduF6}zu0`#d22R}+qq|6)@nc|iFA$ECn+Nz*(h+w#U=M8$@5LxTnN>o
zC;{%nCdDs+b~cyRIxbInemEKSEP#kp{CoDJRkqrh=LHNxp!8w)u~<KJlNU8kU{FkW
zo*Gk1RBbLqAue<k;`5ia&Z8x-<i;ev9z1>ZiiLDC*v`h)&(`b`J>Su3-x}lfs{6Cy
zz7~D~tAy}gOyr1|*9{@yrF(>ZiZzQ|q~XPGk2XEZ!+bOcFCcQH;(vKGKK*fRa2KEK
zy8!EVce#{tMLT`9dU&_^_;x=4Q>!^Eqz0>~%<}53Af4BMFO%wmEoM*82Q&Ix>h$N^
zqFxu2ipMS9MG`}$%d^+#u$nS)L5BywTm8-Imx9fkqt|3ZUTtA*lc(*$-bS-uY#aL_
z-<$!sE84#>>LxzAV}S-<-WQyDL0xcWzQl3ylyVb+v?utAs4SbC<+ruly5MKsc>KKD
zku=6{u_ga&wJUzrolJ4{lTv`#4@!HC%vlDf0+l(*h0$(%T|sjN$md;~9rS~Xvmb<i
zg<2p)CI`E(2X`-L=Xc>N{V;rq=yC5~zWkS8AHSO2ZHO97X<xWBn_dUzi9zpxxp;$k
zUBH^f2hFAi;F}|ujT1Oixmw^+<GBaJ4H6HU(;10f@RE?TgcP+_DzAGFwq6ZV1C!pP
z){8S_z03xjhH-;2&+6>_Y>E#&uK*_OsIfz#{4X>j!3R~+Rq$Sk|8H<#>9O%&@uQam
zi}w`|mPCmP)W&}CxDY`8;m5Wy{I%~JlW(de4TUv&R!14Ri8{j@Zp%`t%(y7s`6lUt
z@uxYS686)<cS`M(5QH*C?myYbgC?}F$rYV-X{kCd(Im7~3tJYgevghb_+77`#Xt=?
zCk}<y=V>t98(UhXnG9qpdbNiX?PPwMwF$MwP8-SbdTk{TaAh+ES06b^4hRIQV>E;F
zIGtSF<%j<M=IHS2FTecPfBo0$$OLm<lbse=e@hw*2$*+t4Fqawv|%8Vf8}*y93fWq
z?}@JK=8G1GN^3dw`+B+eo`yNa4cBgJzo3JKOIP%7i^~8SXmZa9)S84N-E+=3tx{HU
z7H9Ex*Z<ngc_&z72WOKh+C<!I-NhO*c>)t~q5EWV_?jweN*3S<)aDDC%8@ncYvbV$
zuCPMXL*2&z$Fe~@MEu><!#vykce1h#DOau}UpcosH+QSI<`Yy6UA;-^8=|JsxTk39
z(EM<1zNCWThXG7dy=!<SRIFBTNdP~b;?yRZkpgS+zkm0Ivq}Ev7u`@Vh(vjdB$g}9
zgWEVXa|1bzeWAT2wamLo8_IQQy*LjdbpEnV>J}t(M;909;k!}ifeFt-KoJ2>N|dq6
zDAh#3rhpxjPU?!zS+|rP<<%2<kVS}f=Mt_b4K2nU`J&p>Cc(%;98ZHKfR1y1saWi`
z7}IIBSyfY7L4%c{Cz&=lB(;x|i^^v?(8^;mLRpi&t%C9J@xJ;7$`oEk_K&hQnwv?s
z<EBJ9oF>^H((dnlM4FvXn_tG#k9>+c=mLOO6n}7ea)wVH!B476<at<(A8r*C2f150
z%q-9@CB8B<U@gTJeakJ*I!`HK8i}qBX;U@n%6O$2irwYz&Gkrff|&;jQ|vAi{?vjr
zMnejA%@(eOyGwObAI!yBcz!7pkhF5?+t7epZkh0gurL`Dc$ip6@n^-0sGtgZ-{F-1
z*gpFFQa$b{O{<4$iQCKW&ON)R`Qx|YL+zf&Tvkr={EoAIJQ-`+Q=-6LPp9td%YGeR
zdiYf5q|$fhxHu(cr$wk}isQLcOxWU@Zl<I>;<i7jM|dyU^0r8NeROa{bX%~Gv%z0h
zRuU}!(hVxu<4cB@N8da+J?DI`Z*N?Rk{wXCgD}zQ<>}#F?ywd6E6uKZlqf}a^*DYr
zu*igaR)PBbQlhP(nsT(28Pz<=5!5Do%fJ945DV4waYz}^iUepK2P{QFe)7CS5Mj&u
zlM@HQxp?SomENa6mr%J7HtQdjP{@7R&2yOGKI)i6wF&o0G7pW;goSWc3i~=%5`0-!
zxJ?jkRALBIPn8)z`c#=5o<B-oc=mnSf>Nf-Rv+7uH&bogcG7CHVYJfxjNrxml&g^?
zW3mCAAXL?rFq|ov*!!~<)w_&GvY;|3==mm};qGqJ>1>?$jzRibY8;MdclUO1J37<z
z#%%rSuT9ymeRux=^vZtKl`izViNZV0sWO2O^>*9}u5cQR>irg;L+&sq(^1}lPd038
zn8DwYTg+nXsjs5!j)VHz*A3I$MBepSd_abhtip!e-dyhSIee_BxSsNo_yr<}w7%Mq
z9rN*6%t3`&qdKCszglOvX~ciq@9-b2DxI~_zPP8G(-GxN2^1hV`7Fzf>L<^Lkfq%%
zse?0)cGN|t63#F+`2t;^Bm5`j=ESTnG__O+7UG{7z)dn@erm=~*H+^9YH0*D7|C`O
z$K|fp5<x9-#9imnxKvZp(<>P}8Bf^O;W7W|;iyVxEG>RC^byln>G|5))9q&@3|^<q
zp=s43qXirW4o#@QR$s5m=!&@tA*SH+QU{}@;rRSDX}XqdHtF%&+Scy=`p(Y!p9g>U
zc~)=oh)cutP;4CRo`UJzp5@c<>;leOtgHlmP?M-&4g(}MEZuCVfL~uq+?oxSoJ}#E
z>pz&qxW(Kbq>@m@m7DIuxYTIn<)Pf$qT@=mt+vahBw`6<c}Lylf$rq@t{gd|Gy}qW
z?|Kc2c<WKpCld<ITO&%b$D{GtD7lv@5s<Eka9ds`Ezrn_&us+YpP?uT+_sR+1lX@{
zh1OPdFQ*9kOtZ1n97TNssG^+Pa*Ef{@{_5b2|jkNwk>LK6Oh`H-UK&h$zQ<vwhBBb
zV5RFKP5FLvEYNz&B9KSJLxlwiYwmkuUg$*S3Zc21BA!146t7bd?ooKiygQm+&c4+<
zg=5etl7m-o&@;arb9VR`riN=gGJ_CBoWIr$$G2QZ*291>FmxlT^T%)9DRb9m?!qh9
zLmZK`5Wo_<=*70woit-L4y=t(Vw0uB_Eeay>$jCElL=PMEyMaFsFben(QqF_(**A(
zm$G#s`5ai4GbNTh#gGSe;!9P1A{(AT@u|Ja2}aF1{oALzThIQy|K#b;V|<u^X{bBw
z&aXO{^XdQbd~5TWqfBzlFDIY=_Dj2C{?g>z#Y<9Dn|1|1$d9~)ZhFyf1cSa;O9H&m
z9hZT0jRe1G-iv**YYvr0<FER_fj=(+`FBvM@iFU_B<70EPoR16{9x5x>X$3ZjL~pi
z?h@$JBjO;iQLYCj!$)Q@9vj<)5modhXU6~j>Elh6rn>TyP9U|~j#}G_PI3FrRY*3)
zQIw*#`%;ZNwRv+caHo2YT@t#q2WI1m)r+i+2jShOOBLu0@R&iqWM>=@2~bNiEHr^-
z*)*jnssV}w#h5?Laat^zjY#LvQPqbSY&_Z;ToS{A`U*<#fIt4gJ;Xb#*%sBkgyxw~
z#^LNz>;A5@P<KTrwN11$Bl!0Ev+vQk5bZNQX9~4%WUoJ1+XDdSv%RmF)%pFs^|P}F
z#QN>+Ovi-Jy_Oc#myGV~Pn0AAU6zELcNK7U*FU<eT#C6BEYVK`PYSK9%oqi1B9SJV
zQKTdyMtw4Sdoew;Gysaspjhl7_bzZIwT-NAEc_L<;mC`me8Efq{@}a)ji*l@Zhf~e
zypz!Y<=YsaaILjD9i_(8{bjRST6%)Ea?SGwWw!wULIM^`yf0-x>pQrl0xt?TlNt=v
zK+`VOqf;&^@66SEj4mZ)kq}^foKpf+8&7((eaig+hElcTF>INy0KaaKOB!>N1-FX3
zF_%<A0F>SGZ+o*}|E&8YgsOe&-8zx-9Ht`1e3F9)syjWpQzS_ao3*>he%VECe^GYN
z;-H2qN5f5{9xZ;(Kl2ML62<5pX<`ThQPXgiis%dH8EOr`@^*0nrA++-P+P6UB@PT+
zA;N-kQZ_Ghk+{lSCd3=s&6LANdpL;AvRaYCtX?CTgp-R77k+9gxdGY{z0uLH;yR4^
zkTyn>w5?!{QmPdfhPx7zSK(L*5ZSqxukj2%=KrSr-%I{)tlzi4N&j!}rFM4Mv%7Z&
zUzn_%nIg_II#<JHsZfX%Dw2(BYU!fy{h}A}1bj8H_{g(ZKrck#Ep{flPw@^n5whvd
zj__Xa(?*YuaTSc;jSD_Euk?6()t?JAUOzt{f2h9jD}8>iHLfH#^-2g4Nz~}Z-_?_D
zU&TBahvC+qbemq|6W1nQ<AVmM`kAe(nVRppC;-bGmWDIZA&dIK>a{1mJm)GR_S>0{
zh9N1!!V_asa6B?XL)xL;XRa*T8_J&mBs;Q0{e0(<`5G|kGjz)0gzWnA;RxKm4!09S
zC|S4dU)s4!3&3d(Oddfep(s8Mf0;!=1jD{e>R>HQ^AZ{OK6UFaTgD?UQmr$6Vywnw
zZ2qu%USD+gaQK0}*HC!{-9usF8K`M}JnqPjF}hf=XE9A_EDTS~KSBGTUd4_DB)j%%
zsaT-zRpJZMo>3YCH&8adK0nf`Maw%LV)ng8Tv<u|t?DydmYB4FT<)e=8egSv2H;Qh
zMl73pQwOVs;MtAr5(d$Q-GC1u782y;atUGBETCkw`|D&!FH8m88FI^q7nkSCmZlOR
zNq1^J*?rXz;xaCCafmC(rFKn+QH5E?<%!-Rz91{`<bb&O32wN8o|vr+F8LiBGLqpr
zePA|>G#t}&R;7~l6O9ei%yu%j*o3`+pvjtrx+3=`<|clqrSUIZ@Z^I$WTc3hOf5El
zLR=R>;(5g?In33W{!%aXceT2w1fti5EaqV2$ICpL-<QUD#VeN*Ja}2F@45h;Kf^tC
z<-RXyJK&NAuUJBi5G{Iw^HJg$i`PP4B=-iG3a32_?)6~W8dCUT?7NI+#P7DyB<D?!
z*@~lzMQeYEN|z&&8FA|=)gzYZGs2T?_pUM2a5cC|Lzp%sls+g`6b3!R;Wp!}Wf1Ck
zZ#a=Jk)gu!h26~sHJ4H8qT)b?ZnlxCuD++eNRWWXZfftokLx0SK7~+QP;>I^f@%b`
z4HmnXXR0t|G{f`UghnsgldKR=`vcOxD2>sr)>G2j)cdp6&(BFxkcfu5l_9g7o$Z~E
zSNlB8USH?^jt)Na*qwc(xRIw3BRBXn%KiPY{%GsL`m@b_D6t`K;9s2K=*Px4a7cp5
z{BL1v%$fR!u4h-)ZD;BMCX+CIRtn;e9z@>0HNM0r<@0W^!CU}#2Q)Ug^{s->9Vpv%
zR&i}@GCLSk=F_HOwA&j%sl+fenx_PqVS0?6NR?RD){bT&*CQVSjF_#GIX03nTioPe
z`TgYOGP)^hn4hB(S+=CmnkQQIWq5^9Jo?ga;TM1T6Z7im&i&VaI(&^62%*H~m$#;~
zxgWJYup7yXsrrzHQtc(A(L8f3vo1%iOv2F<v*_tZ6PVLSA5K+w;|zyaWe*H~k8H1T
zGbRqmNS<Gq#?&aqil@1WUAF`Vj!W(28!aY4$VAsBOKCeY#*323`@!Qr*)>-`r?v$~
zghj-RBujoL3)>nJ(<pB1)Pd2JbQN)vaL+8I8@<-XxD_LxkKLQ2&-221$cwT5`@YT3
z&Gf>+wF8;oe#p9m;0NtZ``p~jPMjdTSJjZ*A&=HEKCpYL8Q%~NyT!>r5Xrfx|2!m+
zrtw8Uckf%QBk^}n3k(5D9laO-QrU)`U#u;8A5HDiXkEcDG==zaSI_zzC-SpM+p0}B
zY(7$)URcyEL~v&se0kTGjivu>e-&h#<TMfmL>wNXZ%zBt-#)(M<m!Lsu7k{|`hRm}
zZir)ea2gLA6$JfKx<xWYSD>lalqKcX8Q5y=ZX&OXBvrz5A(4C8UkQ1Z<uO~WD?dsJ
z;Vt#sB9eIG?ZVp7>ql7F9mI7?cQ2tNSfiRLB6W%S+Wbg4PF!7!^j!EpXn=X0yVuf!
z{kl)iKx=IDyJYM@O@DAfdGLAtW*-E+9%x#0NQ}LF9wLa~j#BTcN;7$VDHR)wxsx|<
z<;+SC-tL55lK$pRq}Y<g1{Ra)>^5SY=k?k&6!~r@%}Ft4&{1h*qFeW`m8*);P*#dk
z;Cy^^3J44`ucp(xFDY4LiEt(R$Aho)gXMT)VGs9~=Pg2>rN7idB$d#;3OLEU{|{Oi
z+~Z4`w?43}K7CTL0gs^<CzmHg(8OoppGwdPuv5Z6r{acIiEBKTH=FuQJ{!tAH!AMJ
zwKXy<c_**|w`H*GggmNpRD-5j>v19~ruWDjUyYJ5SH{%L+sxE&atW$qWx`pOsK5?4
zQdOEY)&v4#hJ+bMqZRtgOG{w*hux=7oY}(u-tC_()td`ABGAc|2+qv(aBfSPN1K<z
z`q`$>OG|ye&&5bJ!<gMQ=~l|-v5!!Vb?UvAZdK9tNx3wP8)8@|>%&Zlhe0?k;b>C8
zRs_eAsACw4V>?U;XULuq3+B_j4j~+{;Lc9F6zfd$KC}elqAUpDa9c-#E-&HutK%bl
zAoDt4tAlY5d3}mcF~ht_3;5AhIE}}oajj$lr~<iX{4zmf)o5yk3n(L@+6G;(5UZVy
z5VFgHjf_!g5ue(0MnEYa2PSM9uKY-6Q*x85{rNsK<u!vI8YDigYuoIEY0y$3S531V
zg2c62bBm=+71|%-Hy74YMnXFD>F|eoVPq4#H1j5;t1WK=8#}s4*-Ftu;K^Vtp2JZ#
zU|hVk(K8Au8?WW`uuW{vCciU9jZ1sJ!#n<!xdRq^S$wc&Y{TB{;?UfFeWP5ga|fhq
z>cv-VU0zXs%sM3_7JY^OrDwi&ewy%$-u#^)xA=0RzXg^MEro&2W#oZdOA*#9vq3B~
z$!GHmgyodZ`f}y|ge)JbQWB%G$$l{6^c>AhJ{hZOEu{tRh~ylKu21l-F{`i={%}v2
zvz6;()pk64YuvmJxVim2Fy|1lFnCy;P+7-4>2ZO0kv#%GOo}pdKcW(iq|jY6Na-Y#
z$U!vc`Nib0ObeOxN|wYi!7beS7hSwm++@nc0#620L=={({W_wE`neU8XCFv)bSxJS
zZ{e@Z3@>n)4$wUjtB>aPfro><MKxOVRj48z4@uhd1EI*%^DUbPbUV+-=V#?LfIG7r
z{%Lx7d?<wujPzT10j1m5-FMRcTR9ov?1O0nHq@+;exp{iN$uxsTgImjM7WivR_?8@
zig9~a<y0^!pejK!U)gq%fwDI-X94NzjH9#sE{URZELl$3xIAlLDhz9KzRQ*6F+8JT
zZkHT0%Bw-&{(@JQUylsp$JG?I;T}-kMhjkTHtoKPOs?NoTwy+!z7G7p)uh1X@(%Qw
zFF7w{>4M=CO?!x&`w(ra=MYYr4_qk3geD&^S{RcO#M@Q?Fa!puhOq^c3J%KJ%QL_c
z_o4l4UdQR)kBhOBEG|J8A=1X&fFKy=?9XrU+<rS6{%LZ|5;%wMUGFmije-fup)-;%
zUcUbNC3#DK|LXPE#&{)y$kNl|<m!_u{g$-ZS`bDcf4ktU&A;vSCDoyf8psFy^7R`p
zA}9-~9d{ZVcwH6ZlUfz5(}1@Q-pg*8iQe+6yuR%M`RtZy1Uix0xLqes(WvsQrboI+
zADd?xzz+{4+>u5v#w&mQ@%HG&`pW<L<L$r4zy6QEx@}HMdwXB(?fqtDZ|}>!z25>W
z>#^t=;W?FQOt0+5iX<@myPG>?>U=TG9*Yk)AFe-t^o%r<PaZtofgv@*ofdg@dn4p#
zt<X2nu$(+Fm=P$?izuDFDrd;%5bgK<U4GVF#&g#5Wc~4Gv(r59s=+mTo!cYKq3*BF
zWkX!|Lu}jEdV{+Nh_>H$_rwhh+NW)>f14v_Z0gwaoVeaL-_XrcVB!w<A3~>lEC0H`
zy7J?%@0LGqnS-OoG9)MhD8eqA9BryViY1HU2|bl7%dpI<3+%L<%Uooc>j&GUZfOgx
zem^<4JRn$^z20^TR<b^j$7JLs+t48ib;#bw0~%(3m1txu;#98<%2m{sL}X3~7a5kp
zx~-oc{-ElFq^2jRC@H24(4()MZMc8;EB(HIyWrpQ>Z&*nQoBJo@-015t=vm|Af%5T
z`5|OCwGq;1I-e9xD!ZTts(7GlZJ76^V|()*vp)W*wk&bB4oyHqG?)U`9qYBNiLF3-
zej1XnpjZ$^0!1o)ayKJVG=M23^-FSADPGu@&gX$D4~i};1`)g{zL2Y`t|W!|IC_+C
zdnR9euQe1uS!@G;T!YfRq|mO|8D5O`uRnkGeMS5I`+YkK+;f?fwyuoySs&3C^;@+q
ziCd-7vr+z{QHB3aGT$0{^D+7H6N!#)Cnpq!5=i=I9G}gduyxbdbv5N^mggL|U9m*Z
zy6vg0%PIN|>ra?&uJHZ&Z1C0Rv-{fnqL=EIjhM-qEZ17B<O<G0?#@^xMAJHbTek?~
zIvw**N>s(-BA#tVf{yt_O@rr&iSh`~{G=Lv8=el$9mU8>JeitXyZb>1YN<K(LPRfh
z_F@&a<!Gpt`}nNSCccQogge>eWQ1!)KOA4U9`eUL;}^rU$xI~E6^BR9;q;f)-sniG
z5|UI<yIGmu$re_+CL=JSVyv+9TPHI0txGEVYLpt)Y4%g@=R%v<>>zFDoXe{DNj?OT
z$-UQ1@WS`n$-!c`RdNZ7F$>GZGBh{tt>x9hW1>tf$5`8(v2+uAhBFQcxqP4!TbeNF
z!JBIH!M^4<hD1_<cN20`j@K@w+&14viE(+RUT$PdtP=%|&_<zKdfc-@z0$eRzwL`E
zwDjEz%qskZb1nY9Mfe|WZIEz3^ZP~j{Zv1HBRrLotoSOpLGJZOVSB2bu4vf-k$BSs
zlz1z+#Gkg;onkCv=K!vPSbP&&Wktkm=@1Pj%6H__P&_VWwGzN=X}n0q+S9{e6q;TV
z$;uMqI!|27tA)0dlF+C4sC(m*CYnX1hNk(Zb!fC*H=JJDWe}jQ=}hyQN>y3(o_Y-3
zhLT91bAl#2HC4OmmH_kA!gu*2zGiCNF`;=XSj05-s-=x%+mrNmivajtZJRQXrPaO>
zpdU~=tn>Pa37fiH@MeG#0(~G?fAR=j80zhQZw7b<z5@2P6yV<&(Y}(iO*;yz<NEgt
zIaQ=A1*W_IG5TiPCASwVgVj5GXMcP2Gyi#_|2#hZd2jgt{XhTj^62)Dzoztwni?~3
zfA!bj+`fP7t}<f<AHp9dVrEV{0CF_@L6YO9_)SU`DQ>;uC`8JFBT0%qV}YgEvxJrD
zgJ6tNJ2^9ANq6g=q1+3Sb-laNVWTveNXM&#d^d(s*>!a?^e+wnFnx16*ga7q&#(R$
zfB)OW6PPRZ^nOUsU13B}tHZc^Fl%Zp+KS}m>dJ0(9j1GfqIfnLpC7!5mReL-r_~4a
zWui+!+|`yqw)_p|_vtwe^8227qHwBgyT@U^w<(%4K{k!f^H(%|E7Pwp)h5`ttZvG+
zbxKITS)pDLrx;4|JA+0pfi_{wR&Lp?RpKPv4h0Sg$Z`svkfNHh1QpB3jUi6tSdm@9
ztp{Ck^Kkkh66BkQ@#iGsUCbV8R8k6L`z0MRf6o*rT+n=|P1OUtDaUUZWe{#c0y#v4
z^m*8nbI+Lp2r(+!Y0#n|pdG{|Y&<jU<-$1@8;(PmP}9tXn%`22FyI0={e-3ur{{sM
z;R3+7wNd;$)<D_`OJ8}Oc`-drA*REkQQvj+uQnP<;zNTQNCM2#@VU8}L|5TQk{#tO
z{GsJMU%Q8kIiWA<n1v&8a<l)>hG=sqV&OvsHathjoV5Tn#nw4KddzgkqNQkc@ABHq
zJenQfbgaEEdzALn{d(CzQJo*$U(KKO+t4s+V8?dFpDNv^Kn$Tl+{~lluF*!@*R0}%
zI=i00ZUp!I@Pk>Wyk{PcBoK*UM%Z_J<UK&q4=x_-meSl^`aF0uh21SkN$LENhO~$(
zIa-;O_5J{R5BVSC6zRm?8owN4qCK@JFBS6B6ygMzZE=`M4MVZw4XGKW8){VRxZRkI
zHA{)80ZT~dgkv%ppfrgvLfzZ_gR+we-5cEviK#0GP(Jk8<?Gi_kjbHHhu4>xN6#@<
z>uGJP%x1L+L^8b2GiQs0qyc%u(%e@%<G)MMFk08=3J+a=fq$@X!H>(W6=s^1;mat3
zZ37bC&Q;F|W3+!Y)F|T5G*u?+sRTYNn%S;5=vHELP=e<LJrt&-Rpmv+&{SIxHp(8?
zqGMR{NY)fw6~0R>IZe1U&^4xzpvvl-R28oc(OMJ*()Hu!SgSLMb_vHY@H?sN1NRv=
z=z^c{bUzKT#p)Or-({|+9twp=#VOgr&W{d8Woz@bFn_NY>BR`C>~_&(=t^VNA{4zX
zSy-Z1(LAZT4A+DRC1d=z|Ja-Ts^X3JcJIOhV|ygEg`UQO@9*vY`u6Q_XzKQ$ywqwd
z9$Ts=oIb&!;>gDw;%#vW`Ms?hu?Eyo>md+A2jucwg>-iG(OztB<miq00*z4bBn%`=
z9CZuNZME}0tWm*iSC%fw#03^8!y^*H1=<L?einWe+ZA-ZuEpDw=$*XN2meEAR(wH-
zMDjpgnWPndnp<c(17M5Y3^SUdHO2Kz4$an7Ve_4(-(Y%DO;Q&X;>fy3PVK@0@%*Xq
z7kEQeasVy&Y`SiG&WXv<e)z?<f|V}I`14|G>_K5iG2mcgj~x~|&w-B|cLGJ^ERa3|
zSaD?!MgZ)1GNxwD%j5CsTftFwHht(NmecpQ=R(TRwt|QJ5o0hdvc_PRub6#x34gl~
zj~R%e!;@Kc{b=#%My48cEz#2(vV_&tVFP0#Nq$Mc2P&eggHtum#G{Qyh61q{k)0;`
z)kk(|qyv^(S#KTQOfH44n_&V}tmOIVz^|2ncfSHa2e4C^^!|5BWs!ARW6Nh2x0|L4
zcKWDvTC&aNce{vKlvGJAfyZ8S2|a0;*^Bg-%REkw%#k=|=g;GG41cs`FA8f!vF|E}
zuaE#u!EZFemxgU?!xAWKlT*))S2ilnnTntSTH=J8fmOx~)7Q6X8#piC)+6^v@&obv
z_~1kyHu`?sBVwz-U|1h;kxWyA6-5lhdmm<cUWMuU80MsXi|)w8LtY)7B4dE;$<b{0
z@<8#nuPzCeHsozAsNC}EuG}X-m|P`BFaG0e?#QnxFM9iy*A%sWfv3yqCWD{&b;wkA
zHorp+{cQi~&V$Vzrc&WSv@sO0zq=;$B6LGv{Ae3*?OuFY-|EKvYiQ7TSFTOmT;qQo
zXL63yrEx^^$E4Sx`$uG5f}+MJsZMm$Q8O^fXo;f_j-*_M!j44W0QKE(KA(;5?or0|
z8{<1{Gybnj;ubJ0nj@$?x~WQ;&ZCAbokH&nh*aO)-};VZjhp*VHvhE$XzR)5Zfz6%
zTZuLLOFPhDksyjTH5O|vijz>KTS{l6T2TiiyVWOs1jxu+I#53}MawiGvr}YguuV_k
z5OPy8x@F}`B0}9{agGOSZHrUpJKJPk4rJK0tR2hCE@I5v^Rm6Q<G_%V)B7lQEgje8
zz0+mOem1*QF>OmkZ3EsJ+`BVaAp;kiRrRWxt$ZPLVwE-mTuJ8$EGi9*0w7Rn)jntN
zZWz@Syr!PjJrUwi^7KgvKV*FHSveD2W)F-{7!%*AE?cWe_HQ~cENypn`&I*xELU1*
zL-tx)2J>u43u@#*0QicC?sFS%nI$=0x*P0jBxHu4?Iu|3(al(*z+5ptB!8zu7S;OV
z7T<?J(|W9a)k?$Z9?%p!2MQj5Wjt;e+(VTo%3xhtHrPs`Tf~~%L#}`hdRfdg5TXsg
z*1(<G+pJqPE?603X2~<DvI83`r|UHu>OKh<rlO(P=%lu_nWd<Rtf=O@jc{gtD0;~9
zTpruknLrD`f5Q!B9~JDOG{E(z!DUJQP`(28LctFEhm>q1d_v!QsqTDst;=MsOC&Ve
zZBsWdhGFV1qjPEtpW9N4<zxnsY9OfJVJU_>9Z7D5D|Ek|`v#2=zr{aS@aTXi&4$Lo
znBmdyv8#S;coB;))$i#*RWk5yg#HKmM<?lNfx3P$3{yJ#cHDO@AYCO1JN4s?mqe8f
zRCVs|m=@cZ|JBO}y@Hq}!)k%y9-l#k^7ulm_X@oe9;x7x)VRR%?#4#st1S>@TwPg6
z*Y6zIzts9bJDs4MhD%d&x?kXiE$U+?qGbu(Z6Q$O75ax>$J@j?Rj#YB%~UImSxJA$
z-k`8h>A6CJKwGM#N5qoSq*wtz^NClp^zG>L*==c4<4nv$lO#<_RgoExd?2*<i-Rcv
z<q9$R`ViVMzhldI1$oFS7C?lEQiYxyyDg=pDPDV4Ute&6tJhhpQNru(^87WNe#o1b
zS8>(0R&!5lx;3LN)-hF-AR~TTi=6KI!)&^>osO2*-izhlb*%24?vY^MqqtOlcd!h<
zmJAwsy!(SMlt|2D)ur|!w4D4{L(SKs%9g*`J5|l`&u7cwD|{#Wf59{AmGtPT!?gB~
z+Kq9g&`xKlN=3m;RtFnOwp?bvQ2M@OWQ^BVMEg8%AG~VPdO@%Gf-^1UR-%9?1IM|j
zfT3?@7*gqCmqtC*rF9Jtbhs7l;`p5m>T`Ij1fjT%ongr8Bu_-dyNeGJNRWrowRe$d
zD|d=$LfqYs>tufLW?2h)J5-pRmwLv+0EAer3$g_x6}YLc(9vMcnUb$Bxg4Y~;3~)y
zE;HDOY%m8CW4H!heIo0Hv;GIOPvFS5U#>M{Ss~e{;U!l3-#Qh|kEPy`wLB^4CEy>E
zE#h?c=3;V0BIcMSs9A4l9P4<d{Bg}bbsd+xqWJb%1ijDXcGmjBq^aLI7yMCqgSWs^
zbR;Q_&PK40|Aosq8e@39Ou+M!^uj2moIwUDAT%dcZ-)W_LVyaaH&1UQxbIB;6PpwH
zcs-#^-CM0HCm0*Is=z(dspuw$FQFm`8CcNvAcY>!$RWgQVr@l=66<c^bJxii<m}E$
zBs-jw-X{t*KAe&i(e1lT!h)>50#BS3icc$TB6WzB-JUaVrP%L?#W}t_)J^`w#xB3a
zj@sAV*?41Gl;TjSBj-X48(btyX>1mql=>OyWSc=B|Aj=`y_%s!-J<u=@bLV@3YyCW
zhIV}OZ6&dts<d%iSfOQ$dlZKgX+4OS`oNV42u5;#Zj^{zS%E}T{A8l6Ek%{3B!kN7
z;%Z22TD|hd{&4RFzbG%ibZyOWO}5rn4LS4%pqDZn2eKKozTN1V(e;Z-#sP7x>6umc
z>KV(k!K_3d+*1pH<H08C-wje^K3E&bGl6bATa!Zw>AQD0Y#&y?mEg#$!S3Z#t51qN
z1D%^$)O=gCbDeTWBzb-SJdWST)MgbZ&Zn=TDhmN}YWB{lIrLIC`~9g(u_`l`_0S8&
zaN1Y^gd}RvSy8gogrUjhLno?xgg7#EKYaK1cl!T2B*jr~5Q<%T$I}7VH)!t#N;}~}
zB21zJ&{6y@XM;0@K|E++=DaNS8GZ^nxk2T6rZa_oQ5D;=?juuMtn_Uz=!nMW@KQcF
z^(QB1ov36t8f9=B<t-WZA5zY?Sn8b0wneK2P(dg4BZ}O1>M^c9W?PoaVvuwtiDa7Q
z9-j@$+Wt=t;KfSDfd*Mjfw-e#LXw1v=}najKc&B_-W1vBKvKoz>NF6S%Mp7==sa!-
zvZ<$gKFtmc^?dE_yMW~Un&c^5yrF#Jarz{&23IG?GUh1d+t7)S)FV};Uvs&`ia!zW
zf{KLsUE<@4M_A74VcGL!?Gw`g_oA*6`9N&qR}gf5K+xy|OaIGrD<S8Ni@=Kk^hY)z
zJD4VhN%Kj?Wlv(LA9T)0z;0=xl;*j<&hc~#F9q+EXD^*<OvhNL8KM%^Yx*;Jm0+nQ
z^XlLf<I3+-?>pB}I2t=)HSK<<yRHfNW3OjZsO}Q}6gcNrnTF3o%36~Gx9G{LB$j#Q
zl=j97+<@0!b#XbtDq~xbhOTVB+(g540^|zPPVay}9<I>S^ZRCY4r$4<<+z#nNbW2q
z#3tsa^ZM^uDG};Qynp}CWS$vA=siE2kdqi53fd4{PGJZaG?%+NCU8v@NbiDK$m=UT
z36b>DP86Xm)klC+)+Un``_^Tiv?iLiHtbr<pdV)apk(f}^u#Nb93E%mePbEuSFy)s
zV?$-y*@%ZDEd=c7+?aroC1T3m*zP?DHlfIJEJzs-u^pU4Uv=KZSy;C=JyD@eXqz0J
zbX7CC{HV8NcR)a>ZIkEUIBM)(TC+{ox_*#L9x6T}6#|syvl`1<hhD`hVdhy#_GcKQ
z6HIa|$>U^PgL=wn9yw+l)YjZZN@@3Mv)M37Q??`bdvbYb*JLZ!;6IryUW!>Uh`wk$
zDX(K}KR=kEeV7CV8#ys6>Y%-`>1}y)cT~CVYzAoEbBM&>%H`EPLJ#B8F-TuajWf3{
z_Z5@xD$$+xFY4)>f7r=|p=uN<Nr<V&3yL!dZ(;nbHBC%vYU-Qhdx?(8w#<J;!5wd)
z-A%7;r&Eca1*%#{Q_4rLXECPlq*YQ2XU#uk&AXQJch>ijX9QNMOaDRw(5^dZcYy$^
zm?VMpg-}zxaxp<m45w$&>Bb_ZxP5%p-!6NyO5Fa+`MT|#fGS6ca4gz*-^n~OXO6br
z!R;>!iXS(UpL?SpGVX3$eqbw4QyEYbo@EaySy!)LnHwT#HeySd-kUYuCZMe4nN&5>
zmHQM!Q)rZs`~~7SbN}1UP^RK!nRRJ2tL*&!#mL(Ey`gqwiJ$Cw8neA;f|_^S-*!t(
zg6jqwlUe8+q2H8pyIN%b2Yy%0t7H1eBa~+WTuBJ%(`N&P+s8As;vF2KQ{-M<Vnir&
z!W@f>3?~Gqm>63q(FUX;!~-~eB=tZ&U^(}K^~hpJqIkhlOZDZ7IWElMEB<3pc334*
zI;HTX1<F8_cp6RYm0zrDg9~6FEu|Q2^`qaNqAMpy4A9l08RSnWK@5mT<sg=KDYQ&S
zkm!qWDb;>{#_R$%CgGb9!c~7f{xAzgfXNhDDH-t8stTBzgcJ8W?Q0PJ1qFhGxvW`m
z5!KP=wq2M#N{eF;oEHA_{L#6}Up3jCpf2X7DoatTK}A;{&o7xVmrhsgb{0@F_k{3>
z!&sQXQb3hC@SQ0!pr#F|tAM3;592eX2#BS`m&OR>M=7as@_BmeCZyCA{lg(@?QZFX
zp^IS68BPHftLYf3ChdzTPOe=-mdMLb-dYiUGa8C<T^r=or}&s_Wj@WqVpt|ukd#(M
z@QjAAIx4Nv)5}9NXD~3>9;4j|d9up9)a>k0(9c?LrXR18omW$g)^Zz`AJ!=*XH}o-
z@BTrdJy>gwZQ|!G3&91VIy83kkfYT^6fN6cT4nLwix2o|4Rsg^-LtOZCEMgLEu>l@
zt{0RdJ^prjjzcyzRY~DGr}+jZ=bh<$u0Z)#Iz=4~Kc5YV{-{mhdlWE0J_xsMq^N5^
zS$_s}Ok@HXBD^<Ym$^B|4-+|K`Z%95e!35m&9j9ORkVV=>e%MWrmx9xW@0dF-?ej|
zCljM?%mmF5D-;ok>bXmf#&(f_#wEdJ!?Ia;fwh*O620flOlyrY0EaCdcWT3O%kx?L
zpmXKJW5?rm^Stm#98eymKX5}nL}`Wpyr)J^gUiduyXrihMBUY<mm4iGx7@av7+#}Q
zb`u}Be4>3SHYH3&Yo$*V5(Dh~B%AQ7$bsjlQ9F$r(<#(o89xv*AnZ=4*vTzzYPn`3
zOR_@5q!^538_#}*9o`6?#JjpRGK(lvz6koZqd@UIkOI7Yd3o@5qDv|;%+zwhaAc1I
zH|*CiBQ6g(eV~=SF&-huiRw1L^ig!iW8|uV-$f(2QJj%gNP@jjS9$TvtcLMr3Y1K9
ztj=B@Tqiy>ZAYj3zOXc~jgU1OsS|S({OpRxF@b6rxry59GZ5o4Yu=7&(HY+QYJrp7
z?DvX$JBBGoDTFZZOmj~EYu0*hOxpmLDI4V|;z4XCtp37FsFNWFzlE5@lx<eAWr31<
zbQ3ADU%>fDDJtoouacvDm~~a0wm%nZZ%sdypoS=?yrPFqK~1vM#|Uch3fAu&L2Ybt
zq7suT;US?vk`oft8wF2Z%E$<r$i8Hy*94--5mA<EkR3{qcam_}E7qkQ$`%4HW`k>b
zv9?y2p0=ILNNvwlDQ0`II(T}HRY?~TkCLf$jF;;1;em3&j(%muoc$QuLa7FvYd&3J
zXV1WcVVG|v)i#B1LXbj-oYdT@m%&JUvtn~4xMh!qmq^BF+2lRLeM5VWsF{HPygA$c
zWk%<J=@e11Nr{=6Z%Vbf$$HhXy*5DC<{{a4d3jJ-1@4j|AEb?{OW)z~q9K8^`D(P_
z;l?-IID(X$`d=W?-JeW@ox|hicx1z0<#Ds)5!)cf^mOH~lk+Kx55l4qpx_pBh6B>I
z-AO3lIWkU>)AJQANQ*zYa`9bjw^L*t!CRcb7_S(&?rzm_y4<#tc7>wV8F{9r5$g6c
za6Uvc`_xL2K6OQ&7E6%UPFVfFlunUsB<ItgJ{S`JMeDN=5n(W)nSY`FH~V~m=ZaAL
z(439<bB0>eO1!_a6zm45^(VVq-Vz;%D_9P1Teq3_%O1>js4NG^!JD<ErIpALf$zuU
zG#QFVUlZQ_ATg33JkzwD#5&b-qwfrICo&_Fx2g`cPEP3k56DB)_mxC982#V%e%*y$
z(pvDq6~T0p;A9FyDhD~`tDY?lSg1SLTU{<nkxs^Mp|l4F2x$TmGnq|J=<p5>Y)tL-
zIl`7>GWJVcR8P&N>*#{6PR1<m^qtCD4&G1C-`e!w9KC*X%>P~7C&$xQcdMVoEnGE!
zy8_r>pFxSV+IWr6_R1w7&Fkm_L$w!LM==fa(xG4c2n#gU;mnJYgi*MKbMkOy#W&If
z1hWW=)00;Gvkq;9D5vYg)!hrePAF|vd{Q7@k5b)9Sfhh@C?=`r^K_|Iw_Q1fAV6LU
z>L?qTJ3bOnduA3Svg~(-h$^F-b7tmLe54qxMCa;V6feqd%px!71qm_^v6_48Hr^WN
zZEt~*j!4CF5zWs&s6pZ>vyy53Ox}p*l_#?&j*np(foo>d(6jTIv&c>M_-M8*YP8`*
zY9vW1x=%awpU<y8wI$3`;<JV~M=$aFignbq_!UWux2%!>bsV|6N}s@B=vk_^Wr}`D
zg@U?sZN~Bs>Bq-T%-s6%5w?S@=Xw9;!wT*!+0xcw2q2*q%E5HKiq|nSxo-TrH;}m)
zzr?lub;YV=CbCqRqj0}cInKm%83o4(g$#$K%mmGGrpb#ox~v;asoCu+i|eFD-a<I*
z0Qt?ST%c*%rNil_6{AfS+>H8#7spLd8Juwg9SS~t$IV3Nf4a%nC86AEEBOpGo`-=h
zFwiV?-7UOfrwLEmralv4M6X^$F3XyeYkcF>>KY#;(tOn?^Nx7<{O?RortgwTu6Do!
zs5dgxom;Qz=+@4r4+xWy&q((0558PRviMVmuzV69C~I)Hl`a7!UvP5XZOC(}ie}r%
zurS?i*QAEvFK{>X1@*W^FJ`T~dg11VuIi7N5xN;}8P$Jz?_`$=fZ$c)PBuV_rpjSL
zu?q(wu_yayW}7WVbeD7|HwgEuSYS-|Dc68b<bah%lAIZxNW@LvkOx6$s#4P3fb}JF
zqbz88MX?*wbZCe_q*WI(l=l`+b#uqnM~qx(o394`x&#6#5)dh=xn4KCigO2TeOZSt
z&rg2x=!&|9b}-^5N4h3NL*BIT+jznyEdhNX6dg^^y9?&BzyRD$7VsckQnhys`LPS>
zl%G5OR<4GvJICDI={fPA)9~ggJ+6?J=j(LzvD|&?e(wM6`Mz-}tUe$+uXI%;ZM+L>
zg#e)Rjphrd6!g%SKHY)4Fgqnr(mC|O)Cm5x^HvJqZSy$nR#x_VN7n|c@ot}#X-gIh
ziKm6k*>Ni(v6PKXO}|f=#E4uGsTvzZIJYs$2_>eS73Zb$ShAX?551uztYpKB6dnwl
zNU`Q9)1?|CRbjq0|AzGXTW(-<Af7d;k<g?1%xpi@_;iz!p7TW-w`3$oc`RFsDnDof
zZBfyjAQZ1%upSn!9luE(b8CEj@yt8u673i1q1%t4N2czjtu7*eoNshr=a?X$g}S)o
zBDg%)>j?_NIkZ2yk(+u*p5|OmoLoN)1>>hn13{W#1i2ekmtWftdr1m7H{2V_s*tof
zEP|`)PrJEqn>n9gh_~7(S@#6n$o7*^?1eIBSp(1all#s%TC}hZP0vqO{1h*4jshLs
zy{Jx6Bq1=xgg$p873zX&v@Dt`9y@;YPFa}yV>XUOq9P%_&X9QcN34ldEHvZ%R&#59
z$2^*4539z3;H`0bQO%Mux+wP|9gpH`@|=<+w~E?vVvU~~-)UmJml?t{hbCi$zmBQM
zizWH|%k#sJ3fA9_vdH;eU%BJ=V{9E2CNiwa9!w^WHm}r3N+qP2`8MREiyH7d;2C(3
zGd#}&ZQuk@GPdj@iA5IZ(+(gp6|(feu5uvW$uR@PYY9S2Skyyu@~L(mV`u~Jxt=RI
zV998dlR4Fhw@7Q&pKS#1{a-gs!ojEe(C!QV&3eCl!puv+6bsT0SwahZb^b9?5>CS(
zOw9Ei*mvDZLFZi-G2f}gly={P>21lfrr-lV=(b|NW3^DO;?c14E8UouGxcKv9{R`p
zr11~^!(1H>fk|!AAcxqi(XHCng}pj4{-wu$0&Fz-G`|1O&7^MUGWzu=e|m!;8Id)i
z2#NRk&9n3IsdBu(n;<sIG0jRpb(%UdEm>(xhlxjbLF;3q5X=+tTG1I&ITMg{aTzSL
z1t;a810#;{T3KiB*?r%j)XM6}?c^bQJGz3$$E2Wut3`~Kt{HzvG|F5q;-8`6Ts-1*
zrsqemk4|ZO;J%G;J5|`9n(o*0Lv}E|#U119G8ZG9MY3S{%>AOde(c0QiC2ti?{p$=
z9*$6p)TpU))73<vgzbDQIm{pCD24Moe6Ej(h*zq9*Tm*-LyfoxWspyB`ghxsqBh%p
zf-scIqfg;1Xx2H$)w9Nc)e9n9JOf_!h=Za38EqZxIFn76CM2gIjxDsX@$81$Vdve0
zw$#+a>xV>%1aqJBpW(UE6)@{2bKgO8ZaG2zzrO3wwRFXWSCAto2RYa@_Xd*CLy~)W
z3dt=9ElxJbbKsE=#z#t5Gg*DTicmAX`;sJPD7@p(wJ%oht==mhe4QUGr`Gmlxl`RG
z5%g;97BEgAmT!S`#I_}pp}G~7Fy|C%`tO7|ZdLHDAK_{LkI=`b7{RM|_D0!4@;$u(
z>ioCHKPxK!sWtu(7)u+6kpeTaI{?Y+%v{}qyjlv6?$aJZgYj)>=Wl45kWFS0t$y91
z^Ct8CPge6M;%EUI3!I{DBc@g#7|kl2qL>8p56#%sYb=Ygu$bWTy7*Y${+eSc4r?WD
zw?)z+?b4nkLCJ<{If96zfepTE7$trf-$>NMd7U3R@3AEHltSo#+f4}Ot^?#M`|NX$
z{^A*fl1x^5yhzs@<U&3v#s;#ZAH$+8Ep55G<zb|@!k_x+RpB&qCwsrhof`IvEIMZw
z=I{p_7_qKsQ7cWd=g)Dc9+Xq$t|SD3&y*pER+4CCxmm(Ijq%91$ygN5IDNB;V<|B$
zb8UdY9ZPLu)JGGs8k3L<4Tq8xE7$8w+?2?q;`ZU}w4P2yK7p-~lX5Z~h0MHMJ1UTb
z!4ck|hew!dabr#%m;}{9XTxc`P|W{=_9ls`sE_7ZgnB|YZ?UA~4;v`+WwJ(PWfHF?
zB_cLdKa!HS){vCN-m)$mt38G1{<cS{+|%VAvq(tSSq`shq&)@6VND26g0$t{kuHE*
z@y(p{T^fO;45&o@thV)h_E(Sc9#g(BDL`?pQPQ{lqnP$wFq>gsPRaFEWXlvBwi9#V
zYgz_VeY11IO^Lz}=`ZhGR*PO`#xuR)_BfmH^2z!*4e~jWVW!ea{n<E`c#Fu6!?!7D
z(Oc%{94+awv5kg6{FKvw4)tjF)lht<4@l@t=&c*4)Kk)frwIvK8*S0t<4YGQ{~M90
zR%Ng`$=g`HEhuhg8IavbQiDJ!Btl>7{Ku|inx7hHD|!m?vhUem(b+I>du;2$Tc8|+
zJ#H4laAj4QqdxDsLCfm^q!|xMF$bG7{MFEP&CI<FqDIGDva`}@y8)uRl5s<kpEUb6
z?JjdU4XWhh`jIjT33%o-Z)g)!_@h@KxtVd<jSUNTQQD@>^w|puu1YSxowB-E4Q5(F
zRqMfZRB^sTf920~LMr2B4eByrR`;Y)t++n@)2{M~MSG_!;x=Q~8;%S~+^+MZS6d|-
z?OCT$^S}@nazws1DAPxXjr$6)%jMdtpKOi&kg?VOE@$k=C>^@WS5X)#6>jC~Fb9Ug
zI$M490H6W0-EFSH#!L!>t450t(fXZQ_0H~(V->}>b}nPCx=Wzy?N6;y5v;wbjCG@-
z`_@z!pRABCiGo4>jUl|e^6{{UJJ&GSH{sCJ6)1I!XTQ@vbvS8MstN;lX`ZZGRDi>O
z8^hj_1wuBsYbOJ{o-wSr>;AW~3n%B3#(g4ir!!-B%72n!IAjRdg+s&_HBWN6qUB9F
z*xL7)Uw=spoCHSy3e_Nq*?PY@<aH6P;n~{ihc<Ng*D~aJ5|V%3G;7bVG_|@9-doi}
zs9ih>x>uQAJ3#J4b&lCJ_ql$2T(jd|(OF9um?rrN?YM!1AqMs06Lve~q>NGi)g#l2
z&B4M@n=x&1`}A=g3$R^E<z?0-p4H64VP3QtvTPeZq?%UUG+dL|E>Gp1=DbL-(;+2Q
zO!z!gbmy3#*dATX3zjHRyuudUX^kd0tWmD6mj$y!L0PBC`-S;0Op)S2Q|(8SW|8rV
zN{h~h)m=x?XeAqN@Vt^~5fjtXs=gz{z2JW(&=r1r#<CSGZFnAjMw!&ym6iN+H@!+=
zV12>$86+!R)2$YF8SG9j=IP9AZ2%V{b}wH(QJyI1NyV(jC?(^Rdy-osd~k>7L4Bud
zV*$vGRBO-taASTc#IY+D5ZfokAPz2WkOA6zzo}QlMriK#JcH++UCi1*|7|}TcJgRh
zG-zgje136sytnN|fjv$xc>?@mP82Q*`AioYBuTYbeKIdrEW80y`cq&DA{_Qaiy=%_
z&h58m7T9Cpl~CsjlBE)+Yiksv*x!1x`)vKuqy3G?5AHNyKiz#c_dTCK-+n+ji{7v2
zyyjy@e)fE~_v0&G?>v3_Y=3)w<B#j#<z;j(VPj`gbKKr}`iISpXPv__nf0BG@3(&F
zU&_4q`uzE`r;nblKiGfp{PA|@G#V{L)vEo<)hQum^J@AK3>`6BmB)o|HI}T=5Ejm}
zjrcRUcXx+mUC&{|dqW$vr6~1;*|k(Hj#=)CAy41SMkHPOXfzxX_ucNQKT5Fh{OGh<
zDbW}1q4P{~MWEsC1WTE(XAoavE5*72;1980VBWYVr+3t>$n)J++Qqy*Y$V0Y(VQ9|
zhq$8k1mP{#U(E$zexEYDNOz}XF}7t+y;925NZO(-St)kU=9ZYsrXeZ<crxm>f_Q{=
zS797^I{IoER7kA~O&2M)jWX&f`g-%}vn8>P+?O3^=H^k?J?ajFUwL7N=1R{U(LH@~
zcIYp49u=lLNZg~lC?3cmttY1&J|<8?Hrn7$4k6c35MkN-!0RY<bw<{uZK@db_JENF
zqe_<My};<Wj@Ezr<zUMc9D-DghRrK`x425y)`qKC<*>@2fTw!ga7B2w&wnfe<C2`C
zROa^n$<ilAy;%8`rAmiBmZjuVmXnC#2SGfPQqxcNP{zyyId@X&00f}6KfJUA9Gu6>
z3RHt&(sSw{ns&3?&-4-<n7yYHNJGy1UqB}<+!#vN<z$e<v?+NizhefP4B9#!!pSL~
z2%1r1==)R{w6{&mA5rUDQ=u>CNy`pD3ie?@E3OX%eekkP(4*_}94(z#sdvI(o1;wU
zR>l2RqQ0Fwk%)T6&d&}Mx3YhT4=>t|c-_RW_Q`tYm%{)b;mgV3L>Y?+&poBu2pLk$
zkI|eqRTTgT#&U~WKssaYfjEAH2G6;+hT<)T7>(euZ-aI|BI_+=v8y%~C5?qJI5HJ@
z6vzVF2#Vfm2L-GVCJAJI0u8A;&OrzlrM1XMc59sB64u&N)syr9af5WJ_LVBScFH_8
zaFv+1rl5{q)`Ff3oRu~{%~eue4*2qibwPhLBnvGSU#(RQz!oTTlYAHpvGV_Aa!a_p
zuxndpd0Xa73`s2zoBVt3R@W0iqa6O`1isYFva>JQ9(sR?JQ?2_UCZBChEm5ne<n=v
zzo2^lq8Ng=6Fg0@0~HUk>kcY@77K@ek3WBO3Az;IDV?w=D@DEEvNQ48k^iQgeD8Uh
z&xO}+(d_u_(-IrrUSV$3n@J<xG8}lQ>s1a${|UTh#bp>hZ^;4+Gw}cWahdsEuMten
zruj6v1B8I8*KM}WX>!os+*Kco(7Z{?Q^+B$x-Sv#N}ea~pBFB?{b=XrCge7)d9M}~
z@{1ASgtJ%aU`$5x;vEi_t3K#c+SDRnvX{$;j}H#%>$n=DaY<!J-!N5E6^ycLMK0)X
zj_#>qNzl8Rub(cH=><7;@HV@J_WyCX047xwC{#4Kn7*aVb?uQyeAXY~E1)c8H`1KA
z|6-@s#8-&Vk>vhhah1~I%8-_HhLk6CMXU>?d-#O^7()5mhS2R}dAd;a4)#%(T0q>c
zdXpUA(OXTUF+L~Xn&ys2q&aoM+Qu>l)=xP=IuoOz13mShp3kcaS&Zr*D}==XtMR4Z
z=%en@>LAd_e>Olqcu6Kp)H4D~ud*OInteEVH9h^1T~?E(;1^3niM2iXoaxX(t7VDU
z?g-@S=8TQ0t~@)suL3g+xY(R2JuS1pXDZy5d3u*A!~M<3GKUSv)R<!K#IB2qSUj$|
z<2_1W5WY4&|6q~jVac8x7K?S7QVVel@3?AEZi*62vQJ<Qapyn*thbNw#q*_bPhlfe
z&07sGsTstv+j8zg@&e7T&~uao#+lq4o5mbO%j{8asXoUuPKV!_{Oc4+3#v`Vx<NVj
zu`%c(BBE}>jP^BMkr+)tr@FhHpLh90iid<!-g<RBcGe;f@C^ZmCib$~`Px`p+udA8
z2fqJg{qZL3^SmYxpFeu^Z1dlr+1{Glw<dG0PUROMdQ{a+vDzEef)bs{^am%(flrcu
zHGLLXNQdE9ZZ<#vyCD=ZuBPx}XteZ4<inJAB)ur4is6qYSKuC{`TBRY*Q}iKC`>`w
z8a|4}0m}?yotH?z>YPu0x?yVnMpH9$$xm+f0VUB%<L&O`_?3G(?BR>nG?5i=@k6mV
zm&W&7PxrQ-=Iw91Otms6=X=!zayboe{EM+|i}7G~D>~DbaO$dg&12izt9f{&`Y)_s
z|A3SBzYwuA?AgINe38k?gYTa{-rUAY#UUA@2RsPGSe>4~CcBZhdHU!<wzYAx)O2Nf
ze7Jh{W_(Vgf>~PBR5W9bp-NAzOe2@8TDT`bcIS9d3I3y@W0xsh4U=s$y7Fb!;NrVx
z?*GIsollRCUlOY%_D0q0JJ_4BQ0z$eW^u9v_W}({k;ld0o*l%NBw%*hRu1G}x}vcz
z&lZWJdLR!GqDe@c6CdT$=ckd=Z`HFjos8eYya*1d#56P2DO0>lnv=a3)s5bY%;4i!
z*yHVe+JGYaenRI_F00d$whN<}LWR=c?2Y%wE_FiW9}qa}6IhXB6`OmNCS%)!jF4{>
zi!BzG4`UIXD+vFit9yPpJwG5wC~aKATmOD=@CNI`gq+|7+!KQ0ZTIeILXz<-XWuhM
zbTD_2+3EO<Jg0N*mT?SvMoB%)A7*l~5^GK646fRer^477oS@=YL2!qZE@1sc=QifL
zwU8@0Bk=4LkAx$uso2N;yXCK-NKF$W;b8}4z;94T!w9&>$@x-XxCLwG^QH0Ot1Y{g
zf?17c^l3VInv?UnJ(*uHZp-zF5cLKp@7KO*fFvKlSjzfuJnm?SDo3t%D;LL@PX-DX
zl829RKZ<pGetxW5;?2dy+1lN^(u-?JYisGYfrZJzBaQa6z7Jp*yVd$~Xu6nGtU!Ay
zJB=1N1FBG=uShIi@{ga1t>Jq~13v_7l2*<K&5`tJI}Kf?0wgR?hjo|^1kjQ#ArMyp
zGvHP{XdLw1!eE*(Ow%*()(uB|=H`C{Q`pnl5K~b7q;=R#EQ#g=D(Ap1*Y?_8tWZ%v
zrV$DZ`VHCDk_r{$-0;oR<%L>bdT8C4B&a<TXUvfQKYMSw)mE~si~i>+WHz-Vmo31!
zEmkepp|edH8w?oR1>S6d1jvAd)qrtTopHx~hW+zA-FcGxebMC1*$KItd-p!$y4JEa
z=gcNDGBPr{jKtx;GiWI%wW<BBmCc=%O|j=)RzL2}QY?naJpUfpFGgN9=JWAT&H8-=
zLFa^mX_gS+7Gvc4`Gt-SNBsN%T@B+Ws5Mn59db1O6Rrd){6ssyBUK26!1CB&Xw!NU
z2oqOyLdij>O&s68hiXzG+#n0KHwh1f!aQA_Bs4H>L468I7MpgtycCA8j%(zAc!&Z~
z7CyoRXRkREOVH|buVDjj_Em-7zxkDrTrLTz;3+lZLa!53Ca8hp(i9F}yCyQ6==)mA
z)+5PNU+e}E<Rj=(r#vc@EUCQAq7;>C*N6#A_87@eK_9j1um8R~TmPX^Kl=FVgW2Dw
ze#fSp?ndr?OTSY8ajNCCPUyZzoF(k`o_??!Qy5GTq@&nYw)JA6eoyx|o-3xvjf}L|
z{#YY9Nlfv?r#a3Yl{&U6t7XX~eAxb0Hn&#SUkmq6526U-J{)kJ!I2;9A>ag~amH+|
zq%{VKgx$}kv+`ZPQp5k9OChLP&+}w4iRT;zIFFMX6|pW$h%zlm%UZH!E?+bNnQ`<f
zY7ADYwMKuSWsG)GB~{yYENaffDJ~&r03=7_7t@uhY<1kw3Rnd+3e}i!3u~QCxc)Sy
z@;qBaYmVm$Tx>e?UBCWa|2xR4DZYDmf&nePS~8WJD{CtYTPynvctk&yd5~&#zfK8K
z2pZ-O4T<^n-)n)UAOC(k{Jwu*>AO004^@+fjYiOpZr~YJQ134k!o~D&cefkI7{aY@
zTSQoSiEBRGhB^6`rzA*JP#m0`R95@0?;=`?wkE%ssG<$swjs=gN-wa~=$Z)Q`l&KG
z<4bJj*Ytw<J>1D5lR8ODP5PB=dUCha0QZ}aYO=zFNLEW8Je`)8FtVgLL7hgZQ~MZG
zrB+$+zfAZ)!VzfP3ZIkeYOtw4J?vgw*KX(r{l>(8x9|X6thb3xH46&IF1#mwus?3u
zynF#cMI6YF(r;7J_bm-7Ew?}lY&qtmd!(vvP_;TpcCSt!uq*`hm-9*GHMb<U85QUK
zvo7wqYBHrITtR(kW)&nKNJ~j6iMSYiPq@nK3NA?5<mP(em=Fc1ynST13z6kBnS<Ov
zW^Fes>*#-LYprtGZeX~S$ETxyGbvqN!WOY(#8?PyB7N)?1S$c+Hgb*c7Gna!utH2A
zx1aQ2py|kM13D%++LD~UshtZ<a{~Wg)$|`sl*Z5CpG=*>nay>4Hzc{Rp`#dJk^K}&
zKO`v#(x+V^(`~zddY6tHh`-87(B59GyX;jxFEuSk&|u(Mli;W+P@*y9DupE~CDT)s
zUZ<7G=ea|bR)y&S4BFEON|A%C@&-{8@&XOZOt86qPi|q|$gU+H(zzC_!&EzWD?k4D
z<MPVR#@of0D<3B6{Ij_7eD!q&Z`M|qDtId|Ctj_tF0FoAc)fUh`uXIv{rrck*~Nu7
zE6)}d)|VEJpDghE((z0DURmfYF2DHn%hsdT>@TmnFYkZZUVeNu@$B`|*R%JZ-p?$w
zTXW6!;K`f!3$ynxwtDN^2aQ*qFYB-GpS)dr@ObU({o{LEOOHPMyz*-2MQ`@&htCgM
zXYbk*?fb36XDi2F*A743x%lPP!}pIqzZ=f2fBpL4^4*vFKY!@nn`z9v_|RM*zWbqd
z|Lkh($<APFc46n|g*$Jbyq{f|IQgZsc>et2Z1Cb_{mIG3%NNI|KMzi~-+oy-X>A`K
zeC|BBdj8_<$uDzTNP)6^xUs!<^||%+-OIN}y$@f9_l_pIGoS9idv^7#|LFPP<%6r{
zhe7*&@6L7qV)2(3>-Vqk4Vy<#TF;(6KRlS*xxdm_Tkj2yhP_Ac-|V!%ep(-%PCPlg
zdieEgzjg1;#mwp1i_ZtkoBdB)Uw?koUVHTHLF2l!c=%{#_<1n%<nZwI!s^%A-rA?N
zll5Msb^Yl<>vd=1NxOS`_3CB&{l#JL&D!?M7k4&a-1~WHxW4n{&4c@o4t~Bm*y>;0
z+qr6gJ{oMiX}4bA8GQYGeP^Zp;^&{wpC3(ZFD@LsJ48;^!==+7KF^&u?<}03ygs;m
zvHoD=-NC`vAGW_PJ$~`?!GlM$pRV7vhObsGukIheUcFf9&VBmO_+jGW)y|{CozI=E
z#+|G6!`bD>7fU}h9vyUAvj>-Jhv)aV?p!@ueb`=Jynpsf|KR?@4{ryX?X8W+jptk4
z$IFlBCY}tIp4>THJ^tlz_3`Nsm!B@zKfk!seB5uYzn#0@Sn6zkcy#sb<k8&B@soq)
z&fAOL!$+N8Uf+BE<cH^1uO2iXO!Q{9-#%V^^JevH|Ci&1_UHBI?=N>w&sL8YUbS~-
z+rz`-qx-$ri))`gwO+4W;n>Ia^B<ngE)Cw?dHnO*Rbyr1YHMY<Fx))9bFulk{bX^o
z^JeDx%eRM13s)-(3vd4QFI@&Jua|R+AXzC`fHy3$uy|#SZ7)3E`fC^2>`r@T?&YJ#
z#nR5F$B#Noou#w6iC1slZZu!sS@@y#`Sb%M(f8fCt2c`u&aZdQ-k;CSbY_0(zkhVG
zwDw`+&Gw7y-osDt4^H2FUA%g-_44yZ^Xz2ea^dmoi-T7!EY`<Y8#4>tgUh$?Up@Kq
zX88W)!K>x%4|Bs`9;`p^zq+$=^!(sr@N#4E`C9AAFHf3t{kNU%^@)S`gZGctdY|sy
zzdGF<bRYKzGgmVoF7Dsoe9`)0>+JJsyS??`RsY4kPm8CAtEVe3`kT0f_m{7&=G(@X
z53{c(&JP;1!;O>YZ(%Oq_`34qs`ugZ;^NBS-Q~s)j|X#?gQG7`Rv&)8oO^P5GW+4t
z;LfMcr?q=;kxXT-J$&=a(L|@a^y=B_`tZT!Y5(QJ7hit<@}>8B_WAnx^Yg2nH=owm
z2VYLF+NZDE-N7%<H#Q%<?C*Sf^18FwTYLYw`+WFnqVwkR`C+>~yz{cVG}pWTVtKK5
zvD{kRX|BKfvix=X;pT((>g>zz+Sg|%a~Cf^Umbk7(>-{-u{C$_>CRm9_~(h<&i$Q-
zKY!|7KbU*7zO?xI{^64+S8wlaygVALuYH<ZS-NOleRy=)S$XjI$!hzey)t~fve10_
z<d>^Yb8F|@y@}12Z{BV-emH%6e7t!2;g@#{t@W9?h2z=Q_5I_ygX71T-8=mkE1w@;
zcUIpwAD*3DJ{l}N+*oYB0HeHEemOBXn_K<TUg@+xb=J=pzCPb+U#{Hy@Vq(vu=wfq
zo%2s$mUph7ynMdc`_%b*@8^x<h0EjS)z5Ry4_6O1`-d~F39x}@@1CE|ym<Af@!)87
z_3PrhgP$LE2eTWi?FWtX)7i(X-NEAf<#$(~m)mc)udavBm#)tru6%y?W^Qr$hldlJ
z&o7_+u(+{&XKs0|^YeATbKJk&X}ld{kwr_z_D^hq*tObB=VUwh{smsh<sBNciSSI_
zV^IUS_Kz91U_q0$>iWjYYX~~~3v18U_n`ydfARoA*H4v#_ms7*MD}cfzemut3U1Q<
zc@zG8<Unj9dM#smDG+|NX-~G_$0-7&B%wSb$+jS9Xv>LU#8hQ&SP|*xTI3iJkH~*u
z3m&wNVQxX1JIWeFLkDM$MJwQO)cqz7{P3h^_z*7EOI`t4R8<~5$d}&5HKYw9jInT3
zt07cMUafng>N_eFwwka+*ju7Au_?hEDnJCsl+P<(bI#C%w|9gaZuc?8wNM5hMdArC
zj3sHN<w%&bnj#X4O-3*&NTh7+N&u5<iwt-Umzs#pkVc0GxTup38#R|8K!W$@A_*H^
zTaXedTSjw2Phzh(yco=cG$l9}C79D`64M}uQxE|02TTw$^@5%$NUqce)gl2=RYG1i
zpc-UsjX7m3G8_mU{|`SVo|?b{-Ov)0Q;|}N45J5vY7le*lBlDvTK&FcZGv2!I*^`I
zH?7GHcr{_B>b2@T7egFV!!%bfH8gQZi?EICe#eb=C)KPQS|rPwU`NQ)rRBs>qGq0q
zqM4XZnB-7x1wko{;i%W$803ZoKxF1j{KCo*4JTZ*OoIbq$8naYu*EE8O=yx~EAeP#
zz^eY}ir<1eTTN@t`ezfyfrB7sk)<Am8A*md4Yj@laLt^>V`=?1w55#p2hLLDm`_aK
zQGf-4df*R%?Ewm<tF?@i*VW766x^&bQf1tTmY*wi7?bo48e?=J(jSo%^5i#<xbPGr
z5;Pk9fOs6s!Y{29t~}R;lh7ab3UFYXZ91IjK=N6i#)+Jh;lXsfJEM%NKYcPdKZ|A^
zLGR)x^q2uM4E6!W**I&1Wq@Dc-l<_nZeYafm(x0AWP+TurAySVLS0OZ$GG|U+#ASl
zJa2<_Vu#0pBFn!WOamIA8`|)lR-*=|nPdX{2|<U-`BKu3RS}+Xb;3=jmNv@O%0ZpJ
z^OJlm5T<YcPPe%=j~~L5bt#4}WoB^M&O)b&kr0D8iMPUu#*OEfm6^(xIhQL&BZL&^
zlb9HtHW4JcK=cB$4C6v6{K1Xj>@&;;=Eg?E8=J(EMgm2TH3mmvVtn}1bV?HAEO*=R
z!&!^o%8rODqw%L;ybw8losbLAxl!{!VMl2l9TdZyg=FCct}d7hNK(^o1#qm<trc_T
zT6K$F?WTkn$ml_t$Vw<ycc1_+R3NH9KOeoWO<CU>O-StpWdO+EGws&Ck3eyqbUI?<
zw;AR4w@tT$@Ly`a36z+999@6Igok~mR*m_sghvRE#lBHMlFC7o2=~C;d`qcmELw=a
z^YBs(#f!i{il?+ok7xV*`;Kj)L9P*x-bhc23yYa1GBRU1pA7qjH(<$i5N*nf7bN~d
zL$kQqWA~KJnA<CMBf3z%9>xYgs&6z1xOzqgN{fBsLBeuWJ79R}Blb{-jHkpc;Bfzv
zhrmm!?Pm4?cBKaTXa^`C8Ns%O==x2`4-$EzqmZpCm9O@1@10&jM`3Z;MxfpmNf+qC
z+vFy&%#DB&&j{boG~GQuBZhqPL5}rXMCuq5iBzF5#U2M0z*Jtof^pu|g>ePuv}9}h
zx80$p(VGPea<no4p9jf>?jWE-;oENXu+l)R45Xq6H$WV~uM_{{@C5ReWL-?EkPdMq
z{v5v1^g=c)-a?XAD$KY*8_LKuXOsbhy2<j$0lgO*E3>ESN(2$wn1IU#BY-}Lg35Hv
ziJO8Io)kh7OyU_>1bVuv(m-ZLtj+h#?;638<5Gaju&+VrzvC=Fy#1BhURZIJsc=i=
zttsm3;2oXA7KHY_GWJ7%P_`^_6534I*pyuR=s@UGv8+DIf8Eln9FmDfo@~YflTWE8
ziJ4nJYpzC&@0pZH`?o~~Nma7L(nmb<N4FXY#)G`0*mvuW!AzV!j!&1K0!IHB--{Z#
z2%S(o;_7b9uttp^o6-@n9qd_f*9-+u(g+}_!Q~CEfJ5wTHI|%wsY+nMCX-vC93&>s
z?d>54Ad#sfoB^OG^b!nMpjNrANKv|Z!{UDThmo!o5z7T@(xRNLkWd!_Ma1JE3ohU8
z_Vx$eeLHrdHMp*bXRvx6ftT{KhZs?Z-~-&l=AV%OL!$4pc<11q4nx|n5?qWyN-2Ci
z6Iz>}w^KnpuZH^_5Z^V+p8|G`zl1E1$T@@vW`RVRHjXVjr^n_@6xe7D|2m7`eyy2r
ztab)6cjH$`gLu8!>UYmz7uZ|Y5Yvq=tV`F~g9(27T~d6b+r>eb)Co!ElH227&xDXu
z-!}A`j6E(G`<<!nB?vkL!tFW8Y9+<TEN1)Y=)1`b#!T5Q#HTatEDOM2dz0Bhuh#%}
zVe^pVV42R64`D`=S2vYSogFJLTy&}~HHS%$d&$q#nc_fp$@i#e*;H<|&Pjl<(ts7h
za5jj3-cU!YX2!I2(fqQ<zt-A^h-zqMPwB`BA0MsO&7VUdG~Kh-9>Tz33;@&GQ{5pv
zZw;==u8E=Y+He~U2j6yFCaRJd{8-(LcZ}!T&g3{QwjopTGDol}{bT2HPP$i^`4J~_
zBG&8CaGEMTb<+5-d)Dn?vS{A3lo%JnWuodqrNdS_DrFmj{I5z5;BY%FK6<l-O1O0d
z-#O<zSJF6udEJloj&(XY3CX-rb^;rZOsRiJC2%wDrMeoA5f7#->pYLa-2;%g?Wn=a
zVVZ}H9<12k-)3=aG_*W12aSa1TW<s($JQE6*tMfW7T)=Ihg*yR(xZTdDHda(+ZJa8
zYpM%B$AJT+wBtfbA9cux$&?Uc8LktAX)*%W+cM?0)kKTcwqsJiW{!AEgQ0wwGClKM
z)36)yZP`%@c+Pm@0%lG~aJU*9V_jTA0AmptezulS@OlQB&vGcdcp8YpmP4E?n{M3P
zbSOVY+Z2u1EG?Vm5R>M`ogtT{85PBApb&17r=M)O;q1LkjJL~rAXibg3g(+}@&tL~
zW{|x_Rw*W)0o-<MtmH6%oR5$0oN!4OZytj1-++x34HVIX20^p!(YgKtZnc6hrouMC
zXT*)iR=YP3pAe^8l{hq^Y0`3F2jUWBJag!vXhdM^-Cmf`^PBtE#iJaKXMf;#lz={I
zsDf=7JfwaIQ4V~R0dE=t-k+|##eOMPV2+?(cc?5{t$6)u;6E|5d?RE^T?OOUMzG{V
zY#$um1R^H<!l|Kxb~w(FvCS5o-Pkn51@yJm>&g)=7*vq@POgVTcZ@8LW+MPv*t2d#
z95`2U!6J@wLp+mBizgvDDBu;62ToBSJd%8z?svAsXLeO~W{mr0@Ma<m5xfk3W?U~L
zS3Spk!S=?6kAV5xCUiTB`Faw{k7HqfS4K%Q4A^F+qJ=5>wwJlMA)0)fQkm%QzR~DX
zr;2V(!9p|;2@f_T#ibfzV0P96=4d`KN4VTu3sK31mO-^6<a-a>mbrN{2E@e8>Sq)5
zOakW_TnmR{)c-HnM^`38Ym<;AxW|PTK2;hxz^U#q+QSbQcDh&7m2Fv;oWZWPM<*v7
zoRD+jPDJ7n5=cD3aC5sC*vz6OIQFIPgVafY9nB{puvIy6CpvsdQ^pV^Sh*-{0r0`Y
z_1kYnIUT|lT3W*QZvZM3k(~}jk-|`^)t7HOsw{uwP)-m6?OaF)5ST@jG{+x6y9>VO
zeW3mY>i6&}0ETys+r*_C1CpSDf)EWQU7G3s1SUoelpO#hq**kI7;~88jcQ7H9G6pm
zVHp1dDo6;olGLjD0YTB!nvv9kTn*e!xLon9xfQ<pwv&W9S>Kc2^|4mAFwB$I8P1Sl
zI<jRT`@`U><;5v!b{d_UC{0a#mzqLn&<D;TH0ARj7Y`-;zyuT=yH*UAYOD@+52}r?
zUPF|Xf1%E8OmD*qCu(@jV8I}~eCQegM)!VkCcFsikG`PH*lTi_Hb03Xhbn=&&{oJh
z?Zz{eDa2;jqd7z=L!4Zxyf_(yi4D-N7vLOe+)4=x@gW*FD(xzTiyPVuD>$&YG}xK8
z1Tx=Ggen{gTBmhSN!f0aL`Fg(oE^0my-H;k3hy-`j|0uk%~-vZ0AfSQ>u^LmF2O^j
zB#xfVLn&BsC059C%-3DALO_e;-dv-4c$^%Pdzc3cDM!WmPMCGE%g|L8Fq&*#N61|u
zQ3Gw*2^meug>RgIQF_?0Q{V_CjHU(ME@;?yC}lRpUqcj;1pUiM%&+~Qo6~9JViE)j
z&SKP$PhkJm=mlHR$d!BJiV$vlLvpPcRSCP|D)sf22O~JZlsn|__PkEBf+B*XzO!-4
z<BSCYY>o-b#+wF2mcWMTel-)qtW{eca$^{xkVOWIKOs_TQ}1T<808$Z2tkG58Y!hb
zObVn_IDZj`*&&bcmFaRW<qlOhbD}A{LV2c(`ZQgBd#*C@C<+C#<Kf?+CZu`AUz4fK
zA<u8GCN;}6(CVhAo*gN&DF5{G((`CU_M~<<X|f=tR7HR!Z^%jVt`7lx-<jbYqTv$M
zmy9JbPnv`v(y#i|;bm7+vx;ET(yELTsyTL*OcCq{xIa}7URsJ{YeJ+DQh-W|iYgQ8
zxbU)wdZs${B=@XIM#_uXBPAR9#w3<lU<kKa0K8P3hjvhzq?BsWH-w=8G^)>GFd!*Y
zX!~#^M~l^#9>x8LOQE>%4W~$1i3Nx)`EFeSZ_qnRz?)J9Ad@mzCtVWevL5n4NNj|a
z-K}1Ad#6B*q|ZRc3utAj)3Q}3Rgnx-a*85wOK&fz8X7b?d74HL!vq@)t-8Zb6s%K!
z%FyGM`PIj*PccOjpcjuw0;V!!$f#~f0JTpj=2Hc7CvN4bP$~x3L8O*jwrpVXJ$%6&
zaYZo!&=QSHxYOF=gOW9+(*oT{teC<FboVf;jtzespJS3Mq$&32hi)xLg=0_SG)jAS
z?xX^hWWGph+WtfT|62ShhQ~1rvQ6$LmhqF=A|B%7P0S3`i3<vtIZsbID|`+TE2Q2C
z+Mj`|Ze*tB77_!c=B}s^n!A;4uialbz;4s+;MBD$MbRvZHfdOq_}Eu4yv5jX`jJJP
zUi>MzJryMo6*sqryY>=p2|j7IPzeklSrAdazHd|B_IkX)<Wg)EG8-4lsRe6W!{cM*
zs^d1FVy!iVb6aLAD`9aglK>X1vejVBQVO?8Q<7q+uk~P$`qxu3Jsx?_^f8r`AukB$
z9b_GA4X)eh@Pm*Pv}s)<g8Uq|5Xg4PYtm)c8&#0bNrX`hZY~Ly&HNQo5KG#u3Sni-
zIxkHSk}Pdv|NrYf4UsHezj#}=h#;(PMju46H#*7d_R0o>Xi4`v!iWMjU~{cv`5vBM
za0+t7B7PgE98v_)k{FF*>U<4Hlw1rG18t|#gqHpkuZ+TvG!jx)hl=&WU^VD&Np#|r
ziZ6W!`ConrPBvZF7oFbOF`H%HCEH7+xGpzuBK5_n$uUIq>vtfNO^Nszb2b&Z1SUgX
zklv6(2$?$KONsXOz9(y#{{AQYBgaQR50SnsOrA9cAM4cbZ5-c-WJ3A~L(3_U3i!7h
ze`Byx4cHn+oLiRg&?UzyVGACXSuGE%@OTF^=Rj<g@CTrcmJt6c6n)ih>PZPNB(wI8
zZ}~m!o)aP`)~2L<TC7{RxB$-(W3gHNyoY7nZquO~UWBaQleuDgI&bP%gr&j`>40p!
z*g$I2?fq8^?}=&-djnepWzqThcK;prTm(B9bCyc=dIV=^=e+Ty_GA|OjY2Hb#>NUJ
zM!dKGZ|NcI>;^4F;7KyYVDb}=q3eS&p8Q2pl0or7wF0*fZrW$h{+t+M9b2rZI=j|P
zNl+6IcQb;z>Zzq1fKp4svj|XjvoBx>&bcOJQCOntYJh~REy!>FHQ3f<EhfXyF{oCL
zNKi|o$W#QX{uIYakw=spV$bL(jb7#DR)YK%rDXqR5P)O+mNO$;{y>+o4mp68VI9DO
zRE-yYe^(~v<F0)Ah@~k%NT&GD$6N$h*klAIV{ZX0Q(}Ch3ccj_kdL=H$K=A@gHH(H
z2|y>Hl~pon4hNLsC+{Vka%4?GYtRIMleqQhef3AgKZWslsqxSpH>o>i(451BMJyNN
zPbfBDH-Ry!;{;35&}xhvH7C}}+1%<3Lkps<c;W198%fLyHB(%ENp~P5VU}DIMT5=d
zRV5XnL(x|ZiVzQKVd*Glf{imQSnj7w1BCmOcz+hcwz168%0O!W4I&>vgUm3+T)4}~
zI*G@yA<9dt1lbRPzO`t=qbMQMn~HroS?+u(CKS9)ScDhVHL6Sk;x%z*ROQ4}yf%bF
zPSfI=EgPU`LYC!Pt8=W|q>+B|LUA9Sfr2n7pLi#bq6M2@ekuo%VT4Axmql>M^@(RK
z#9+rXtD2ruy(zXCEVyAN-EwM7#f=wei8Qzf^G&Ez7@Q(xL)jGRRVC7ISC+B-*mR&~
z?=RB<L<zOlVM#)N3Fj2DM7vvxE#bbYRs+SS5f#sMf~QnX;c_L|O0o86K7pj0X4srT
zAV;wTZ9s@Xt-^~ZK{y%^rG|n$w@`5hLzJd$jf~e?QHR=`?5`2EdGl+5ZKZmn!6Km>
zFC68Q|FiIL<zk~>x9Bt@M{+J97Jhb4Ws4o3iWye+`-I#bp_EY-RX$m)cPBgrYWzLD
zz$U6O9cc^k8w5Fh0~2wo-YMX_T%KhNCPlRvyPmzuENGGG)GV4R4~|yGdOj-uN)<=*
znH^+AeQuKiMxJsrCbD!N<J-VQ`-tH$Sg#!U%{H)z--yU|Gu#k43N~;z?Fj=dCR^@?
zL`@Joe8R(3CO~pLsCYjxP8}~n>B`C{O&O(Dg(b$V6`&|glr+1h3q3ar#r^2iX*a29
zEaRVG5jkMBVjbqh!LYAw1=Ee>Ds64aCmd81;5KwmO2j&>Gov*bLd1TGp@s=fZp(y5
zo5xU8TQp}SVriJ{y0}GQo<ue%0GDLdVB)i++ipJ=gsiH=M0D)5qtw2zhae8{j-1K8
z9<oo!02PoF3WQsy-Y}s^*1!vOi8ekaSpkIPB&5^MaR#3PAv7&7YiMRFrwK@r44f77
zWu`xxISMM#yeXO{k1J0={De0(281VlgOQY?sgcFIMo+w|alT%IggKAl18cbbTJu$6
z`(aY3#$^}zj5IK@jZ+NYF=8sTDr1XR67&8hP?J+T0Ldb<u)-9H7<eSOpxxzbawADq
zWBKexwHq%^?=?_zo@+XDkx4ILE<%}UV}2^bhS1MVM%voXFlIwZYt7HMI+`r&(sra&
zj6fnB`)84ggV=7f3D4oLInf*Kxf0=eZM+pT=Xh$T<+j6Ka+Ol0s;sB98Kk}9YH=af
z%1KbMOm`=EL9Nw0mHU++0g>3F&}Gau@j8(qDg{;302VeC@gENS+uECZ5W^O+uC>6{
zA^S<%p=IPk!%5iS28yv#x%02e97$1IpoHfdE+>@RV@jW+8IV&ivmKn+$Y>7kr@5WL
z4%C8`@_Niu*G<+@TvM}|r>n_3twY!n8gy#QYG#Q;oi;GhkC8<JM&pYH&hT0--*~Z~
zB*=zpT0xw;sU*7ZruEJ!Nxn+xLI^v0UMY(R;hg!7!#0h+Q^cI@UbnX_06Jy7-Hh9H
zM2OP8el>tdN@2WS57euHD!RWGlnI+MiuQTnkY#jpj%#jrts4nhw+z0vYh#8<FQdsW
zfs#lv&TJu-xO1XD=+=2Uh4%fvoYt)O8%Hg_=n8KYnmWvclCq0aXSRrcvC=L6^*{MG
zHR9W{OGUey!6EEAqQ=UPQbsWV3VzDRFr6txqX&Ifc7bj|N9^WDNnvkTlr|FTDxThy
zm=eu##35v&qjH!YfJF%;neFIv^<yMaU;{jF;G6-XYA~s4x39-*pn|7MrDx-P^~!@-
z1YHxRA}}Ov)zMgt0pHO8*BNac5jeLi;y*PgipDZLK($nzyA?VEqV6j91-;YL(_%-C
zmOL;|{t<O}6UJ4HQ_UxyerYExA1xKP6?aOOMuN{S)*wyfnhybI>25*=r5<~HDlD^<
zHD@6aTSbXqw;(S{&S#~mhY+xrwF9A~x(`DPpcSFe?0#ffg1GeKqBcRl=>P|8ajg^N
zGW{UYvR0;r^eRk75V|sP)Fb&g>6wq2SUw7I*cFOLmEunZX*k~O1Z(f_R`LZdbo@;G
z;y&`5+2A*7F$%w*Z7v&$!B&INZ9b7`9KoE*uXm&P>ZlC3YZs1e+3fI-t#I%FnhrQX
z`Qn^JW=yS?fDfUCP+{bdJPJgbgtfv<vbI0i8$I|`e+mafzqJ%<BMKx`!EHYFo3hx2
zB!D0|@Nq83Ng>41$rIW3ktrZ>VOHx>Eav=xY;{e!Jl5{C73W%?1Zg)^Hw}Ai0i(r$
ztmm{XT)aPO&DUnHaKO-<O@N$Y0x*~00zD+ch*zd_k3z>6u`M|PL42}!3VS1T{u(X9
zJ0-qvwoYDXIex6UU2TiG?ILRhh(&I15zo2ULu@=E5u~U=9cD_#VRukoq+LX~@y$aP
zR6tRYv1dp3huZB}nUNudFF<l;48XqkAVpUZiX>g>U~Xk6i_(o_mA~PkJ8Jcq(~k`a
zy)gWfX)>VW=_i|LMjL@JTpFMNU@esnUFhfxQ4zhy*>>03K{MX6=9>ejF-D+rMh50&
zVUhe$*!~o7rzFsd47DirNWhj2BdixJ<8j!4jUnOzx<T7}TMV-F3(pP4n~H``kw!h&
zC+<U`dx=}^g_4&{YOHMo1^G5?Uq+C$$n`~SEGLE<m?4T9!4`t}&Sto`Mgd75%}9ZT
zJdRQUt1UUlByB6Vmf0}cjYHMKD!|O9))l}Kb72alBFkh1X6%^Ou1U$M8fezAS2#{B
z>!>2ae?%T8>0w&MQ4_jsPNOLZ3(=&|s2aLTw67F6(Gn&3=4X%UUII=b1#F{;PFsXp
z&xw+-prUE*cZaygGihI^HJqW_{jUEp395^e2*d6JQQuK1SlE)b6qv$KxKmL=v101g
zN}FURu!C?Ih0}sq)<FWLW8sg%xs0|7q2z}m82SE22)R<j>If@!!~)?~#CQsfw}7z6
zurC%6BA8UpswkVCiX8M&^H6JJh~)7+`>2tdX3gUfE#WRH0+p#PY8R?ih>7Pym0Tn+
zK<a)UQL=_%PlU+|V)z2@>*JZ(c|Zk&qtQjm_J}KHnLWL7)@3eP`2E@)98pJ5?KG(|
z$m*ash+95(#6!qlAp9alZJPWZSf{xx(LAD1RmqNTq&6y2RmxeQ3)iR!AIR}*cZeo!
z-)Nj6L!P#*%mf>oSPt-oA!T|PQ%WJnoJxrsK~I`WTN1qiH6?xn{FDk6V#NcDRMm@q
zuRaTX{MSfc3mr(mTrVcDnXy0VQYAm`8$94acFK~ZO&Zlr4xn~OF*vux_<CL<i{bQT
z8%Q?6RpyptL2epUUd`~|091)*gqA1JM&z48K|r*PI!{ikl5nU+FNlW*CfH91R`U|I
z>O^%qgu1-*c)4Y|(K#S}-yoy~vEc6!)F^-r5lqg2<4cvR8E|YrJxWWI9si7NI;TqG
zYFt!?GVO(gm4_hiC~AL%N)SYx9R(zk2Z}@s?BS5a0yO<rqlbGw6G6#Z0Xqypsn{f5
zeARo<fUrL=vCAf@R#a8y{9bo~9Asi!Q**Jgsn7{3XK2tHCvPxC6>=FfbK2n?zlPHb
z`tGh0NN8DT<|ca40RAzEg^AQpx%UG>gZ4nothzN~JMb6w1Dqoi7tx7R6D$pyV^jrF
z9=71eK>EK{G1ltz@bIYJ<3TU)_4e=O{Ckpey@D`ZnT)u2#6j7P#=i4cW)G8Igl05_
zF7_re&a`WQ^&+}T>;zgmy~xd`CD<?1r-GPyBlbn@=||c6fHImM;skzT)51VBonH#4
zz^L^l=7~c6DTOL)gVq6SaJ4BYvnRG5gCl6ME*7s>>BQjWDZIl(;X(C(R&=LBq=UYb
z1`%e##zHZy4i88*ZeX8w?_rr?dz8E<lt8p*kc{AW#eJZ+E4B5l)k@<6IKONGW)-!)
zjak^1lfIJQyK}Tzgr3XV{-(yrt0Pu#48kDs73&Hm24fsv*J}aEMA>%MC2>)tDx*5G
z^$3;dD$_K9z^rcg6V+oJVMB7GiRyLh4CXTaI=pVkn{(Xp0>O~44j_WzUoxJ=R+MUy
zBq5E<?78+xT2!E($!Sp7B}{+Rvfu#<q7X_bLxzTPka1DWi8PwRMxmJzY7K-|+`e#l
ziUG(GJ^LLY#@NbuCWt~a1-e20XNC`S`(s%j0!8YMKv7#6KZX{#99Cq?_K+CrW0KL$
zBwuOA4O%0ri77jAu?XT*ri$QY;cSx`mql-db8Io2#sK`R8+nSww0cpznc~5#MadCf
z{onujzZgC73G~RY-9dNIpncS`7)O;7qVty`@7e>kJ`sEESxE5HojYdSK=Wu{UMk6o
zvyp_c2BoLw010Ku<|7pp8m$#W{GaNnIfI}=SaIr5=^nprC(|{yJ0(Tv*yl9kb0C24
z`v3bs|1bRS$M5=2Ne1}G_>tiT6d{e^-)M;Ww<WudU>VAvNd?JB2?##Ma{zJ(E=$bE
zf6~_|SF0E(Y|99(zuI9_7)j6;WQhqBoC7@*rWp$OtX&BpwkTO2j*_HEGD7?c(h(OG
zp5rBk$21stVIbm{&c>a}J#-oGu%%2h1rODxr2W5$Cj@h64r~}>FWcQ=pU8+7LKp^!
zN*GGMTxPQV7boj~|L6ZLMx%72z{43BR4`PbaTf~H2d6gNsD1<T(>N+2JlTlh<UTu^
zw%)4rsTc;NQc604G#GzV&KH-!F#c8!M8kM$E-2kqj4ic6>3=y}vV1+ZkbL;Iw8$$0
z+d}tbDddS6E>s4!u_j?1B5RQ+>C*VlnQFXg1G{CsD``Vwj1Jqq!{J$@_YMJWXf!#n
zl3vQu;Almt*1TSliv;((9q3hwOy_tz9PTh4i3{v;H`5KA@-JnUSQ!o_M@N0r_;_ZU
z_+!kI<QwH)E6112afCpPu#3tExKg|;Du9vL6Mo&WoTH9VcoZXrv<kPvC88yg`_9G=
zpMg<;2P-H18oii-=_c|g17tWU<bo&d<C8P|UozPpYT#BrVuqVTel!qS-d-?5$0Bu&
zB}UR>%6NN&hg~FyR0ZLC1+mM*Eu90D6(U)fuP#QFj0B4}a%iVo3X-5Q&{?rk0Q(SD
znF!6R0dsIc*X@jM@*ZoviX+NVNp@H=w9ps*wwhFae!h=5;XYJ7beBg)sKLb-fDton
zAeEw6DH(NAA{#eVJiVD^3~jwtF0adS6;Zq0&jlHxCJ<9V!zMRz-;f=d!kzEUNif%c
z)cNi=`CESqg$h7ApNYK?$|%6p@w%lZPr3Q?OnKV14VD)<TJlw(Tz>)kNm>v*$e}zt
zv!}<IWc_+bMT)>w-UCmvjeg56dH{l`^w|viTL{@A22#CY;6ngG*ew*PgEpMjw84ch
zDq@&)qM5aD3afoSJjXKC;$pNoI^#8Rqbr6Q&sdn%IL{X3Bn{XRSoH+N@Ti5-ZGv&x
zyOroZj`?}0rwSHm-VSK$q#huVM*x6;dO=(iA}h+LqhQ34h~UIyZCnnfz~!2YC8*F3
z$4EQFpuwA;Y&JMI5;($cXNCPZONbkZR%gr|vQ4GPA=Hs>WmuW=5N6o9#C8NiQ^6(!
zBRCK3c7-5G^B%->sp_s1nI_v@1iF{t;L<xLJ=`S)OqT9bC{@JewmhfY{3;?d;ec-$
zjWc9J$0a1sM<O1JB2D@Q)14=9VUW673(AM-Ho6Av5fIscB7&gcr?O@wi&1(=j2-Di
z9^t(v##A)<Oz7(7P&q-rPkj5OJLQQaR+DQ$!j}9ESBGe7qnj$Ik;<+q$#mmWzPF5=
z&vY2#K9i-B27IT)NpCPl@#V|Ieo}jk3Ok4WrN#x9{ms=jlu7O_56^LN+uj1x`s!~T
zb%5Us+G6$le4Y<+pL6b(qmsg&3!GQCBn|%s*ZFM8sir;sNAms^Up>?7BI8eg<xA@j
z&RN_mB!BEK6**}IsF;#auU>EVg-hEztW*&<Dl6|-xA&LUmsj>zHaFKdx3EBA$jN?t
z`+DQ;){B+p{iPQRub;256b=?-OYN*|Zmq7rjtU{pxG0hn6-VB>qDRPh{S|DVu}QAF
zg)<EBQAqj|CaIU?sz^@mcagi7f2>PZJl7Yv=K+$+QYN|l?UMhy#BW(`S|oEx2!Tj?
zJd!KPV3(^%&Z&@oR<AR_P#IBx`w(TF5Uvqv^JU;nMJe-U>P<Y}R3^)CU&6!zOxFoS
zhLpcCQ$8}p07!_?nG5wmUGkEfE;Z^um=aUx9~@tfPvKv)-h-)ox5A<SnxvRCOF|Mk
zI}3@S)4c?Ke{)t;q((l++DO-Tz7=*645OVdwyHp+PZe@iXPO%^Xk{6-m~+g}Z)~pY
zZ*4DZzunqjdbJz`GUWZ^y`mHtRsZCcS?Kqg8e-q+pR}6F>eDsA&W(u{e5Jt@K5V}Q
z(+WD{oH|x^3kV`X*?4efFJ2OkL9?oe4{6p14|SIzq1qY8(Uc9q8cuBkKxbk?PtChf
z6y&9D2kDc}jOlx_nG4-nM4D-a&5u*vJeP_-$*mrIH#U_mkHrnfN5ZB8*m7HwmuhXR
zz=(;stV+dEe*&=O{3+UZ2_GdeI4Ynv!M71QQ;}Jx9LM!U&;$$;?;D=PrOUIKmHzel
z0V8t3XgjBRB*R2>Wn(h(fCs^VBndVm2!p_^gw{uaVBAq<rcuKlDGvDXr_88>u(|?3
z(L@q&=fZUk&^~Tj$fXdpd6G4%v4yIO9O6DgoN1B}#p*oB-i)aRfKiX2DHoFXPrpH3
z8=<NHh9;KN5rd%tO9h?lUsW9{L53Gwh{TPpL4d}^XdiG?M-~w7q{P2rGP%Z**#v76
z?Is>8!@4tl<X`PFSL=CufTOjVB`!ghtgjqP$<V8^tBI<2Ea6-J@=`S+&EpW`9SUTe
z6&0>rXp~kg0RVe5{k}tlrFRD94X4MrOHk1GzIXmHZarJp2QOWLA()p&a9O<6OJwFi
z?arSIX#H)Pb%&`;&7@%68?hCf!FkvN0=ypNZ@UPl`Bo_8TY<dHO{a7h3_KdYX}*7)
zE*Ig&r6qR^15IxGgC7EvEZEYni<^^gPkGagTqtGy1@?NmE8qxsXzSGgu|PHd<BV35
zn8Re7(0=SxDpS4Syqh%`<{*F28^j<|rLsLew;J!E9@2#9P+Zk5^ebnq!rg=t*&}C2
zOu2+ZhDo5ND`(;x2$r$Cknr^q18pk+CpM*kX^)A5HIpHC(>TjWqw!NYiW@oAAr3J-
zCBRA=^@x+W7#qpZZ-$79r^dr-!{m4^pLOKNPTlBm(8Kl8CpXTWx0{(gZ{3NK@figD
z|DQ%?u_i~zP2-qL))5{i()eHHve9eH9?5$oM=v;UBQt3^2>#USqX?}meJ6>7v=xlq
z$hiH-=qxxRdwm(DN^sL)B!h20MGgA5YI%!s5o=O;8dqzZ`!ExDlYgjyksrZy6h<L&
zT~JxeA;vn*fjqi}9E7sesUl=TEN@~b!G%fg^^Di9grGr&d~iDiw?TrrZt(|>%YiX$
zbEK*HB%>RXN7Y>KVeX$SZ{WKe>B*VxqFh^-X%6p*S)pE4lT0i1x|PArSC?|(Y9C=E
ziTOfo2PA!LX@6SJTi@C)RP=232m}Agt~<|}e&!h)bO*8RS+wM9<P1WgZVr8Le=`nZ
zem?0hYbau6;^2>%OP9>#5Zw^Hw*f~Rw(s*qbHB;z8JSiWddEXj<Tq5wm@&t);Ql#l
z?1b6*?2HYNFv8MT5Gr|-1<u;_yN?TOa3)*(F(0NChHcADcJRlwdG^MVKTJ?-j|^(H
z>cKVQ{v~J%>zfM7D1+PcUUztbYcnK<lXnf;*&-%A@K%cMBSj}(Qtqw%qy6BB>Zooy
zNNa)P%Quf><qL0OZUyjxvx;0qWzh<3#(P38_vmU{CraGlrdSKt@%oqf`PHrch0V={
z50&2()ybFjjcwRv7uI0l+_36uoxFy8e1+IeGG9hX<sd6HS5EMxm&I?Ag~QG~&B&<l
zJZ{%s${k!{QP5Zy=>>+{kTfccm*&b2?EIWmZMc5vjZs#Hx5eMr6Y9Z@hpAb%8p+*X
z2VIDI?6v<l+C!(HwVYD@3eH_;OO}Hh#*x#IVu26Ly((5xYBF|*3mXw_A-cF^bBI9k
z^A;$lB^PPds;td@16;Lrj!Sd9yjN3N_{nw>w`tH)Cy+rwb*f<y6T2+h&y0>$VeuMF
zB9v)Fs2vT_q5wz`%FK=u4af;EB37_>Zg671qM;QPRAa}7M9~U;s*En|L3Ic>(5A9&
zdCDIjQu-<!YUPqw8ku#{jd<sFvsMC?t6?~?k{lXNwIhQT{AD}q=>fq%-C5L*Zi$6>
z+sDNaFw6ve0*w}69KT{!M1ad)h(U|#G`BTIcRH3)uUlWmfK_sdq|LCe>x^O9Uw`Yw
z8$~e2f;482$;5LiYPW1IlonN7O9JzvCLlLj8M#0xJB0?MO(8uu?T)5-%#rABH53-j
z#GbI@S@^ZzCPD!9bQF(fSdc+=hC*#pM?jXC05yo&9HsBfjLL(L%hgok#0x+QSz0JZ
zpn~0~nymxt7n)E=1ws5G`FR47*oF0m6KD=zqnRp_uFdK33To0ag7nHgrclVd!<iT1
z3vl0Yei>t0=z`$TA_n7*yJQ={nMKLv>Dp7GIZa91zlmGZ0=E)Q6*ZKM-D1GJo@P+9
zqc#etN6`neQ0tAd4IeL#){u=Q?WV0ENoZ%mDTt^NFa$oUGQ9kZA^8Uaq*F&ry>l$T
zsB<!CCgE18j-pyAEZnxKj-^yHtJt59$hOs^(iJi9sP(w-{E~=N$V4}+yD;I0LFOxZ
zmMCc!OUCZpv7@_!ny9s^?th|73B|~4{i8C+(H5XBs%oKZt;V2MWklNJC!$j3hli~z
zLaYzYfW(seHpIf$;#HfFYh(PP>0$(<lNbb>Tg6OS@5lj`p|T8mTfOnI`zQ4@my9wY
z8LPI%Bak5#QL(zdx4NEDu)GN<dc)&(XAjR5K*ckfsct3opE#JJTuFO@+nW(Rvdx&2
z{}M{zA5cz5Me&r6{0)3S)Y|s^2e~u;sIsY{!G`OSpptJ_H8phAHOGasHe6}_Bxm4p
z4^c+o$gWuSJ>@S9EEn>zUx60WOXBLOCqO7>z6tE37*GW^7+!l*X&fR~W|R5_z8{+1
zK<*2K;D<OF1qHQHHGHN}UZK1_j&@rh`I=tqU;dDqX323O=PQWKyG$3ws|iiS1ye#m
zVIn^F2yLW3`aTCc8louc=BT_`VSUy`{uUZ>B|bt-x~i~RR~2okU%5I#0184sByA(0
zlMDdF^v=>2p0H6OUlZnFBv|75{0o3$JC)WYAVR+&j7z5gjlRj*BAUJHI<A2oLxI<2
zr4-TylQ1Lq0gmWiwJ`&nl9mKy!OGXUhCB@v)I@td#DVbZN{bpUFd7VlxW}q!qQ<l*
zSZk^IfpT4BPJosvrMb@lCr6Fp+2F3;L<*|tW6u|CEiRQnG`5ig-f11<I8YUjo@;KL
z+2{bH@uCfD6;8kY30FBUS;go;pq7vtXKpZA!W?{ILx1Kp@jY<I;}6A90RxA_{-Aqa
zw~>LZi~;5H3L<cp7PeQG=PS&<jb<)n+tPI<iEWBV0OdT@29qt`Xe8S@ZNo;ERH@+1
zvQcOuiJ^UErsE7k8z<V7yva_1EOH%dgfxXn{U$v=fqCjJ?aDk0*b!0D>*C;be;gQ=
zyRyD8PdLe4aaTE6ptMjrX(nNffkNwniISa}x_pKKmv9fniJZV9a?zsK^botx7#%G%
z$+7#Ho2h}&s}uO-Xst?2j$t<o-{|k9IS6D72T_c8=GJt`i}4}QV%q*N#GLYYv?PN7
z*=VSfUEvP^?#`BP3DWE%CbCBaAq4Y`%Z=t&u61q!AW{UOATJb*&q}tki3vYp8Q)Ed
z@z{km?!5iAm0qJ&9>I$2+?l{pZo{k;uhQm_N&M4q&M%5P^$b1i6e+gah?8tzO57@P
z6O8D0!Lm11qycO{VssWU=d981Bj=B71k;sO+F8>()qm9M1!Mh>VgMT#hr={RZZf%(
zBQ9(#4Milwovk=q$J>@?u#?v1m&07#Vfz@DYaxY@TTHO?jkEq%rCP<S`G!f&7fCX3
z6sYnK3b^$^1SOlI%TsbJWsG&dA@Uc@K-?jNR3h6>#6XINYJD-2D<Z^h-VdxVE&q*u
zwGsZ&YaBXtwMSByC}&z2OAHl{a7_i|A=ury8*wv0I!x{u+>qsTlx)Dh!1!8s@#2A#
zsny4v*iGQ3$18KC2W^$@i;5uma=;Ck=_AF%q+i!DsQ%S{{PD+?_3g;Xp-s6zg1mzo
z1GH|$)u;4@u;qnCHetT%N(c?-#ikOxPuUt$SfqU1MVseH%mQy$57-pB8@oD~E_#`W
z886%!s?(EP!;X7#f`k$&U?(QF>D&RYi*XX9S7N78IRZoU`OphF4jUbH32}7xsfPR>
zvCGKt3xi01cz7~@6F?wBTo>A#vDWTksds12ukEq2i{#%Q4Z{-?AK;ogZ{UzLw@F$A
z08az^Vz1plt<=814VaMN4~MV;|LD<0zzg3)bn8Xy5ZQMQ4WK^;`1curfn_6Z>#$#;
zLyX%_SWJ*t!@8(P3xne`pI6&3@OOHvzQx8087(jMnnNWM@eooka_(>wWt905gxhQ3
zR$6Sd+)cm>CW{)LoE8z8-%LiHltn-xIm*Wf!=GD&aX^H-Dm=~Aq!QSbBtZ(^8ZV8r
zYhIcf)?YCUv;(M@Bgd@_-BpBG-Gcafl^F(IXufu7LC<?&^xnmS0Yt+UL!moI#Os%s
zxZUuOamJNc)FWCo>;z(tq1!NbV#NB-t{H|8E24Cbe^pM$4<8?XdShzTE`cH8_c}kO
z%>q5KncZ6zpOnF4&el!Ms>0lZda(3HXQy?+Ssc3;6i#*IDF;Fe=avj#p~2{rUXt;<
z?<!zMOt}6O+LC$cr|yMK8f0rBKr^c99da4OgeEBS0}HPj9VCb9S)!?RQLZ*jr7H6h
zyUGO;frXG09L%qPn8Ni^^a?jd(@Lwx*ZKLS^;fSJUgIE&-S&aSnxPpq8i+<<m8!5S
zfaOC%6j)*7ktaDP5_*@?bY@8co)|6x)D|URTy<;n{QMy{amGOk@j6x6xOhwrrPI*3
zH#8)c5ur}w`bp#R2xteH{4(+$>CUZhWki~U0Npqiq-XL-Q54X3vXq^5`PW#|R{xiV
z^#~Sf)xu&xZAy9I=<+?3C>jNwl$B&ZPzH*d&#DOp?dFP*&}{z97Tmi=a72+?(Cv9H
z(d}3yWx+sQtMsBOH0xX<G&Y)9vp{PB&aQu!nRfH^<tunH%a#qcio}wQgB7lpfuc(|
z6y;|<XB#SF%zD17UslPjIzA@aZno6*SA;F>BW@w_8YDE5Uj*QkQ<LFgiHhT^2FH+S
zqO~+_S<wa1LEI9j);_(JY$G+<tQCd&=AD~CiU1btAhYUd1WDDNlN3sjQsv}mXk{A#
z<hV-$y7F?QW)-!aH|97_LSqYOXJfUJGqQL~s(dCfigGuKsGda-6>7NNl##1uMJOO|
zC176v1bs7*kk(ogMY5<%t7V!d`oh{P*{f4R2)wMmL~(LR&A`h0CDTN3W0T{EVpD$#
zv%4i|D9kfZC}u?NK(qvrW0mLPMHCUuQ}J-u(k({sT_VBeq(@f+U$?-YNI(gx42(Ip
zk(ero@fwpIMQN>ekej>RbXhBk)~dr;9O_k|RMAC1M^0aDPB?CuDuJ@+?GBV4=%gaP
z`X(NZU0T#qW{WJ7fN(>i?`g6vq|2pb7`Z-?9ETNnfkkhJ3CBanoTw1-kbp&ZxJfo5
zyXXlqGJbn2{cbmyeuGVrM`XL$h1PD@3i+8uy^2H|Q$!figj1Cw=%xmj#QR244Z2<H
z;zVci(ZobUh0ta)u6!>Xph;CSz#{m)KqP=j2#wWK)XO0;l}>a-C*o-)s)F3F&gWY7
zv$<kP1ylZjk`%7oI~(21w?ZOwHC^;hTrCk|>mg#%4u_@~Ut{t67N)LhCs+cUBrt!W
z74kqV6`bP0>{Gpl)(!>#;2g0<P_#@xC14ZHF4uekLI9}>>&^Djk!%auDW{}l%R3&T
zFz$ssg%q~IinuB$Py{ilI7P;fK90Z2;zdus@&hIbJXzYU=<=huC6P!hJ}mW~6cFy?
z%=I3VajKf>AxTtP{53{JO8nPo$GE77^0c?Ze5l(d=hP7yu&z;V;j|wkuVl2LB)b`l
ze~B3eUN55!@Fpf6g1I;tg#x2eqo$JRHaDDFbZ%ch%H+O)G7rz0yZAL{P2@Nbr6O66
zVQkrDXe|Oeo82pG&BsT*1lOHd5uD{jk0IJtmH@~@<aqN-hiI&c>N~lJmS(QA_Nman
zM*>E6Ix(femv|Y_@Lj*M8xFQyx1y6RACdp>?!-OGGGqx|eNd7cP%{7Zt2lY8RtwIJ
zo!Rj5AOQ$=&uGFR1wurN!-7|1AH8K3w5j=1$10w|vfJ$;LlbROzH{zv=+fO=(<Ct1
zD41mkj*JE7T+z4LDt|myCv^LE&^|-757jd3l8H|US$R;4NC$iJx9`v2P$h^D-%y9*
zbGLI-1y!~4iFP#P#$s-4lr3O@N-mueAm(f;7gT{tK7e@u>nNNbRb_D4gE9<hMz$E0
zi)9O{g1t*-C=b0!o$>H~VR}w%%VOFl6u#+BQ}hOrx%PA8sSk*YP~Z<w>ky7@QyS&B
zGJouO1M5)Xpjg6<NvI8HI!YYp+KDIzH#<tK7pcRz8dj5tA6^wRyx<PVpn%bRT?}z@
zp?@;|ptL&%s94pC9y2cNCa;#je6oPfgshd`GQP$I+Rc5A3tSZDy$|9}${|t+gnCxS
z7~y7XFoa>g0efes{<YPE1n~vl2i`+1F(wv^Az_SHNVd*!#)857YOPfne&vJpxAXJS
zsTQ7L<vaz#3|<(H#I>cYXD46>)ns+~3sU_tw8d;BLyq=wWW`5DJ3r)mup(eqM?*vK
zJQ#mMuO5a1M~cPXh|jqW4UJwa5}foqF&9^o*64e=uVgvw(C;KJM39e&Wu0Sy0*96C
zd&WTuSc1hS)r4#UYcmT_sm3JigL6Rns!e4}<XN8yn;-0D^A+1I=I0@GgJ+4F^$ayd
z@Go>bs9?g@_dz8%rc+~#eyhYZFQ|}vd!>{lETKjvu435M?K{Og+d}Vi>vU1i@%GJq
zU}D&f*Dvo0X&{w5VP@PEn%b@)lrr-;j_QIB!j_Q6sV-&lWhf6LqokBDi+d1uigsBT
zR9~ztz1&||Tk}>oloz4p60?#v?JO%m12u_<m_}9-p2`~S{+7~giY6R>;}s~#U=}}m
zN<mj)TanyDcy?YOw$gyQ`cwM}8Ish1f{rgVi3{QZsWt(4)eIz~aK-*#2_dG;yFyt2
zp7j|xow4i^0V*hxV5}6+W6K9zkHwsgxSd0a@%=NXO($v%h+q=2y}Av*DNBZ}ganjq
zC+Y~KbJe0$qZAb>Hil?QVGQt}flX1AZGxRQ2J~rHU_Yt+hZi@$FJd!9Tr{Opbssp!
z5%5Ri11=4vvRHVBtWScY*$4=a+3Av5AU5!ggY$VbcN>yQfgdjEX^!ZiH8hcU-X-;=
zG-W-Bx}^xWX_d4wTq5j@3t&!e-3nC4?+!M;-osa(A(oXM@hGRq{06EF24hgmK#mp?
zbHNR^gxDw&np1_}^jpwPR(X*PD@%T{2%qlMzHDHd3rZaco)byPr8#75r^YWlSE8Ch
z2Bc%CxQIMpJ>Fdg#IaVM+5Qa+wVVP?0m|7$Kvv&MmBJ9<U;ZOhH!fMlWPRTF!mG@s
zKZ0un4>0uDlNj76PKehEvop3o%y}L}os8vzbIpL}u(W)h1%ZE!dn}9uAj=p-hv`xJ
z#u~~Cv&orn3)l|BA?{ZG5oY)wVFjaym>mEDIWvdXX}%Gdy;mT2h)QGq<@N<Of)KmG
z7J4{u;08`FpQNi*l2hiM?ojx>^BJ+t1p8S?r^6Jz9GYiOlWB~sWa^t05yV-dG@I%v
z-L^2n(H-2aXw*5QtR#HLp^SQ#T`WEL;(n~|(=7x>oeTyS{rQ<0NN`SN)7{?jOtX79
zGy4EB!$jlsITTHZI38Nb;4W-s`Y|1;fmI>S=@<dUP)If+$#|SYr*zh5AU#dza9Hd1
z=>Q5Y5c3_4y~NOIg0{`L?4zPyVvik4d_2_%*yn9>u-AfhH{7y{3{eUs7UX{^<kAcq
zDATD&2C2ewjL^0^D`0KHj3t?{6eWJ?DI(@^D}~C{sk~UQL)lTfc*V+u8dBZ#Yw-{I
zHoKI`E<?<MlP*@KT8*u$zb~qs27`QH92gP?@vQ))YeEJ^Xcq}FagR(?WvH4{&PF{^
zwK3@1Frdr@VxcX{33g=|4s4$HkL5sNVh!aR5hn1XcoE6^(Iy}e=<K5~nbVIm*^fkm
z{WnIUYKT{bM!-!3XqrJV=#*;xS~77YvKLaq&U{Qnttg3$2|$^mCJ5npUV*TbDXXqW
zJ0n=!oCm?6J^xu;Ftf$(Wu7xV(|<v?{ht4Lu17K4SeZl10`A#_y@4sK<wpQQRe1@r
z2*%ftyV=s{VAWLbO+T8RgS-cuA8hrDn+va(UO**WUD(=>N`(TOD{CtYTPyp^IF`cd
zbF=rJ)MxM2XCGGXJ)EC=GXLNn%JPrz>u!n8yydFke5Q)_coSTkR^!w-LQ{Tpqxfq(
zGGrH*(9po*Z))_+03?zO;xr%ugK1^KrTdDr6-`oVIJ^WElauOiLiUHl#Mp{BL|X#2
zqUAslUDH{(DYpL9-T?ppQ6woMoyt<wIJRPMoI;B`2h?e3&6L#zU}`Y0=|5C?X^;pu
z;rdg3K{)hRSyN)uVO=pOr=b{K6F`tdL$}s{RC&Y^@&p@7Nd&@aiaSjqF083MDn{1?
z5DBNT*{tQ>fa_{RTm)N=pb4fG8-c7`+XZ;bHC@&opwF<VTIM-`6hWR@YU9D3X}19C
zOtT|kPBXMx`mqS&^lBRq;B>16@TMCb0dB#r0%NHJtH@bTBby??3;5P}&=<5{Foc5U
zM~p-FJ}2_jQxWVbjyfLHsWuDXO*J_J(#%d;%REEDrrw({?})fFUkG>RRaw8_WSM>n
zMlfbuSeUtOzLtAaktm7OHWQ5`w*_%5xtAkGlk2ZwJcaFz<r~I!niBk$WCt-vtOiS#
z34YE?m{5UHc)TVgghyq>rje;0#P#bzbGpB~Si~(U2t^QW7PeP+R`xd*wqI-kkGRgl
zH&m?S0rpi`Z{+y14g*Ehg3OH4aw?}z*E;MMBD3G0okcch3?E@ylD$pttCvq|qmV?@
zI8~3xUK9~lAz!P+H?Ita-M4*oU6(+w<g>)}<JMsW+YAqQ43<GrXML%v@Ki+;hcT$y
z7sn#Y(w&8?<avyy4x^rSq|b6Yal4be{uMV;dBNXj4%%{+@gdLH#br*q=dIso<TYD>
zr?Zj!%nw?Tro(>xJ+$}xjC@Oqa%U?k$xlf^WQ;5+hc8L7!Qf1Wd+*`HhjX)-6<ns5
zg31f%k;BYKShV_xXjOz^PG7Yb*)*^s=WrT2*<sEQy?EH@HQ}x1?KV0qKHa{Km`GuG
zbkzPLjY_W*$N}FQcxJ<NwXOx##!=f$%j3<KL{i5^vO&@DHw10+2y(XdG?_KK=MB)P
z0Bl621UL;#iqO_UdvGv>q&BD{r!-C%*Kx#nK<k0jvDSbcdLQcpqgNjS4k#eppia7t
ziyt;f8Znj*aih=RBz|M-U__@Van?Af7Y_kn!VqvoA3$K1PIRDL*5?;EGKrOH=R~Dv
zMF1C+i3d1v%5Wh0SViO^Yxt+I*rxgRWPn^E(EnxKBJ4t{D01|cNBtY>bqVX)bQOu&
zN+Jd%N&-A)w75k;PE-fi7e>5p^CBF>o~{XH6+gjhr`mwGzyUDR`F_8Dwojo=)2Wbd
z6k2-638dX?85Dr<;s74)<u+8N@P><5v^#*Fud2I2{GJn`oYudErodHKI+yKUx5Mz~
zs1MpnTFn<Ay#zaivq&M>--qr2v)=F!?yYo-z^n|jGG)WS3kih8Zh_Qzsz0GN_78l~
z-2wO4rM3rH-nCpj?t;?sjD|WnaB2r~Ct3#1P(A_EA(lNqs}Dlth%suKU1lSOAxZ9|
zh{OyXs+PkLtUzHGLD$pL1>!{9SYZ<?7^UWZY)G?2b2GFH88Rz?INPYpQ(=*Y&?&P&
z>JW)QHF^4BEq%{>EJ!-Y7f9Cu+-%BGY!OADX{k$Wc-h)w&qMAwu1ZD^ur!U!Nw6qB
zT7)_h=LQDd<#;F_81Iaq$tknXgYIdINp6H$)In<PL&RDt=$I?NnbN?ULZ_B6FkUCS
z@*dM6WAzN0`4TYMawtG?F#hwFjGUaro1Hm!LEtDT1S0{(f+l4AOOT!iK|H)xjb{JO
zaZO+nyD1v*LDY~;G2oswk*QPCa*BPV(GprLsLBpTR2>7ON{g20G2g>3hGP?loJ38E
zF<d<*1tEfWO3<zi1>O|Xg?wVG-UCOK*z@y!u`E#jEyd8H%tUt4#eBGQ>17JZlq*#6
z7pH)ITmXZRWCWY!%Y>uEQ}E*olh4=k6&<%-{TON{OFuM0JHPm3xaLE(Yr?71D<YNN
zi=6&!Aesn9fEKS`^TeaHhXn^<LP}6;ELkOSTUc_bpybTA1Om%nP>TVLFq#Ji3p!o6
z3@W%~4eqGD00#sNzx&$_${-;38gZ2x4#7k$!!ZOOgiHMj)u3Q1^=eysLPWf>9H#|M
zm)6Z!A>I3WjsedT$q3S78%3fGHsQ@k+A7%6;x4(k!k?_jfTn6>wBXBfbuZwX<;E7S
zxxzQjfnGwDD2}*_N?%b^q7dxQSzX!R2L;k!1Pw7%&8m{=k{nX1CoS$;Vp3R?isVr=
z3V+NA=*aN^>rjX1yQ?^Xys^Huvbj%p7<PsMvdbfxTa7;vCnH#rETGkWIgB7NeW++;
zA)=9n*+6<lY+L6N%Z}^~Wza(VyvC-m-`w^phAhhjEJ=P@{3l_G2wk$4V;1WZg+S5j
z%-)`y1JW+s2r@qpZ3%HE8xj?SZ<LU^DsWZ@{o6q54{pmfTUEg+r`Qems39a{&ozYF
z$qmx~u=^U)mJ|f&K}42|9I_v>!$6ee8D~ScTL7gLr1MBEecoY!jDu6s1*6YYQnQ2W
z@bkJaK%6+njY)9n)T%T8zSsZ0wmVz@Vfy2p+x-30d~Nsi{P^Q-{A&MnaQmm*KjHP%
z40G8ObcmPIRI4vy!>FSc6O&7FM1=8ta^;{n(t%B!mO|`r$|ey&uKZfi>F<*ouscQ5
z1PRPQ*u97B>MDiE-t4dEbYJ&1E2PU)nwaZM5ykj1Fs*HW4?EcG9Is>580G4D`KQzT
zr*Ps49LC9qFc(gf&Ts^NUK|h{JKdGjK+;<gp%|js9kbf&kZH~${JK<xM8HtakddfX
z{kMOw?M=N{f3@=4|GZtB`EBa<zkwEX!D3Bg8P}@(%6Qv(WY5z#Z^0-wHrJo6uHl2P
zMeZSz!@FQ;0L4b8P20RX3m{|#YdhkyRPbSi&_RHv${0_=#}-#{=`NVs!nVR*Kx%-B
zGjc0YDuiHzS^-^xxy!0YI420EM?Nun4cL)a#;F5Fh&Ywlm^Kf3moL9hS603t-40Kt
zu#dZNnVy{)-8-VRXqdyS@lDseac>)2h6yLQSYF*)TG$LX6;s1ebt)P<raBB9TEALX
zX(<p4;P9>dxW}hiPC7sRA(VujCIc1G10Z7L+`C(WNmI=gDtZB>0-Pa>(^pk!RW9Vd
zldyC9q(T4!)#V6=;EdZ%Rhq0)&2ke2s!QPvS>!3&Q5C@k#3&?x207K-JQp*`h=L*z
zm>(-fPoSmz00Lo|qKu_z#&)?X6A!d9r5BAW)k#@n$(drY$@3%8t8+)3^Z04A^#x6<
zuH0|Ym{=1tJ~)81jNOKFXgZj_+SPg=sXWV~MUXkAH>)6%FFHIW-I1$QV$f-gWxg>P
zvMf|Z0}q>U3u{~=IiegULB?9<OT24w<eD^1Ws<!rPo|_@6^xXFfvYkpehS=SIEfOI
zoR>*BEGF&zx>KS;AEv^T1~DNAaUhLbwKSAa?}%BBr{phd+H8U*dXy^PGMhGJS{h>k
z%SH!8&~)s&W}(c-YS{d;LOg7_E~J_GK806KU^QN8n%HL5rlEKOx7>_AAv+EQkD!+-
zeM0WdK&5f(rWvrS#HJMt9yTiUkkT)Nc*B}RRl!7dK)uFQtkkIe?3;$+HaIch#6%$@
z3<^=UW5kLIxKx2`x&jhHXuK!_DVo$#nUdvZ>|iwvGizI`%F|+h)me5f6E@@izA6eL
zDcc_73q~4==_eLu_Hk_C>;T>ZNHu%E?oHLEA@%-Fc_u((GU07mqfC=TTV;?ul8wW@
zNF=${f&3W?0s{ONU{a$G4uQ~NBKA}G=dii8#8UdN{|;e%=C|EO{p-hh`9}qI_$_Y#
zE`qt#jCM6Sv=Ae~ro#>8B8Nd5OUfl0u=z9sd>N4eW0LqI0%@(L&Giu&sEX~9v(!rw
zwlI68>}+p&tB4wC3@s@R5-(ddQmCMxGR+kgLf65(I>HuG-cDjRQIm*_u5{Iaz)#vR
zKqH8L@p?%J3NDu(?`})3Xkbnj5PITgA%b;R<P|tj<&b1zADFbNkgT_%i|-&>k>QB@
zZ#UN>E-J`{>MoJxl!Zm(+DE5WedEOjtL$&#7~HEBz|ZayDOc;c2&3C3q!;W|BJ06X
zNm=F+CyAxgh#1Jxs_|YT1rnh+AI?ylM7D$;4xw_T4K+DD@>IjaC;KcNas1eUG>r4%
z$Q#<l4V1mJ>B@~^_mAMDW}^tZ|F;Mv+088ke|nO0mrw&v8Dfo3(S17tYcFtVq~Q#y
zFd{>6<bm6jM$Dv~2{NAyIUnC?g7x{zf_O%m(^xx4j)Y#AKV+`pO}>a>?l7^V_=|&Z
z66Hpe!MI&54+};_QIN!;|BVs7Y~d>4z4`}gr=_Y@O3t{?uuk<)cI#lm3ExX$=A;!D
z3{vL@s4T9eNnNw`Lh<}g-)tIGxL8~~7uJt6;!)ic)EwE<MvvKG2gzW@=_Fk#X}@SF
zYwZq_vCxGLOcf3!S4$C=s~Gyp&I(qmSiw<XtdORJ8Ysesfb5_9xc!8GJwwDoCOj#8
zLs(rKS;HHMGsqN?Af+u-?HqcTF(yjmlvq8cw2GW&(UjBi`&Fk)r9hW5<gA~PS9p~;
zG@b5pc#OT{J}#Jm0V1X%sgDIEELwyW6{A=NudQF(AyYM?`pTyB5^I<i48{eUq<K3f
z2}_|&8)-T_uOn9*8a22OjH^@9;vj3)R5h@8r@BLvf`U*``$r-fafd}w{-YB@4$4Rl
z*;14{Y6H7zNn3ei5T~uhY$5UUno5}V^tz&m?NNGXzvw8qakT&a4(_EzngG))#d9ly
zqiBRGJ16_Oi2pjLay1&(bYZy=X`*FilQVgtc&w3nS~5_-ZqlPr=rxhn|Cyvt68)yE
zz91p^T68WzVWmV;!d=VBBU>S%kW#|noZNsH5{_u?rGSDgbu?RrY@Gn7SD3Dq<Q@DB
z`l^87Q!OVWQrSIL3?h<O6$iB8YC_T#2Ta1t2=JNsgWt?5Ai)NF2$2W=AYli;(MF&#
z2fuj`*6qFN-w7u5OLnFQkQE||Elddj562lZYE}_;B_;3THaC^=B22Ni(~?*XOk^SZ
z!q`AM?lkmLt~TP*Lv)D0*`ZLJmcOw^()5jVnVJ`Kcm9c)R@zN9noM>f`4YjV1^&04
z-t^LoCyk5Er#D@yc#>stj#opA%HJh>Q(6iFiGqBf$Cq;+Z~(89%-Xn1R2O8*y$74|
zBf92b;ze$#UIW>fxEQcXY17OtAB<%RnOmt6sJ-K&i)&<AnqTk=ADlhxYKwHPBwL#_
z%;*LDa1P;`1FG-xy{QV}(L2*!KJ*g4Q+VLpT>&jxg+8smYGvBdnl0)ZSDs_~uUd58
zUNUp#>+QeQT&Za0^B^>knjKqL$sBP_`0S(?oy?IenezP_iy$Z2kGFPMjo2^HB}#U<
zf|9B2g5Saasg*e8iDD^3C|dPpno0SZ*BV>HgV)%~a?lr&Py{uh&7e4jnQ$ts7x@%$
z87Tp0mXX>Mw+CXi9W(I@q%yH03d7<%Og-V*hun^6#$(BiI^q6{llBpeynKxgLtS6p
z`@%}>t4Izes!)-rKegme!OFtSn^(NTND@UB>I4~s%U&+&VYoh)xpqWfnf$Jg8za=<
z;;oD5P|^WOUSK6Sp54jKfeJWKvB6-5o1LPg!SU8_1c%%X=0;)Q1VJXl-<84U>oGE5
zrT6-{)yZG?I=}CACcTo0Pu?j%SMX<V61~Fev^NQVrM^NftH=}Zu5`iWqiIg4e7#EE
ziq%<K1;I=(fbN+pmA48>gG#LETJ|*=03B;ayt>zA1!>*&l)M28^*>*4o`Q-eAGiQP
z_FU|F>5`<oI}6J<B}^f6CvBR=Q<ZH6!A{PlCycNV@j1AQgg0SF3Fv8V@pnK^m>t#h
zBkaQj(%YAH4-VhB_GGHj{9?cgAsoKS0SL8FC(^+&0$--NggRL}p$gIZm%N6gYW1xI
zhF&E(U_M16Ts)FP&J-eo`L@$1N7`&L!7%0yy=Y~OuW(p_W%(E|%`smf!$2HmXvA29
z(=A8rwjEp>0mRj+hbOpWT3Gr?yU+XD$?5{ffJ^_;EYnhnw#&@~f82T#_`cvg8q7a1
z8Vrw_auR9Mj3+L(VMB0kEJfw&Ypn+o2KKBjmXw=al0ANG16jXIBUt+EU*;TM%6gVD
zfAL#+Ue<*R-ZdwuYH1l+#6gqjl^WK{YfA=0&FUHqX5Uap^Mc(}p)5sfYS6G9g1DR7
zRxl*`kId`hY`P;4KH?)53#VdrJ<}T5tyn8}LPpfGvz0P6E6lq00>GZ-a&Tmh!|v%F
z6Dx9;Eu0l)&4%}Tue)3Qv+zh(u7A|{8O>}ehi&v8@)Q0fLJZcS23cxb(T8>yuY4IH
z21L$uo^_AucB*3E+Lu2QmCB6#oWY~M<fHwPFJ9E&?oXh~3|e5t%AWlFAK{li%isI>
zq~G^vCQt?K@^4m-{?ljtU1JBg*&Du2>=C>f{hKfB|I^W1|A}uHM*a`qGeL(VVG90i
zJ&<kGD1saVnW95g=8@EL{l)8LJp~J-nQ<;>e2tCA6cHWQ{gdH<r^z;3$FT7sPY_QS
zcq7~howvCwy^6Hq`|vJdo5oHqNsO6FexK)|Tg_VaOS5$_JhoUZE$T0)c^fO*;f1HH
z0v-2|LbP-T)@m&$#hLK&JSt#ZJO>hU`tDm;$39Q|ennFA1jsSVgV!tArOnl{dq#0d
zZAf-zV(`{f9?2po<X;2#>I?&`*ZJ7@Lb9pL?Pxxn3X&22sx|=O2B<8libTkyWq`Y^
zO7DEqGL*i;({9zW6;&DUG{I131f3vxqZf|~z_+?Uw<ieX9M>B5u0a3{=#j~*z%C7v
z8d;n3-eShfg6g6kv<^?Yl}X65hy++-zQ~dJ%NjlK3Y=h`8T7iyv4Z5CNL>W?8vUx;
zLtX9?tP4(XPbwr^xk8p%zmW94!kdBNw#BJn@KC=pT5DR;UroO0Dj6~WcLwwG@j|Nl
z)&LsypUB<3vbnXo{#s-O;e(kJFuW+GFl#R+P>vp#U3X&NxqL}iEGr_k=jJChXs$k#
z4C#9{YpU*l=A1D(0{(Xy5&_C*DWqHpwv++B*@fy>4F2e(!z!JXGcE<7{*>&m(SuYE
zX5=Y9>-G3@8W6R{C78sgF$!{1neDCF(LhMl?y)lURt^~L<w`kO6t<1d&-<c7eJ1vG
z6$Z-AyKe6kXJ>)eq@~yT8Z?J5)};{gRQIgO3i<_g(Cy)s2)&0VICudYR%j93<g&dj
z$w~EQW$E2ADU?SWyaf*{je<1h=a*L&-##~Tqu?w;3|*+`x{AF;^cgBjDe!H3VYwLi
zLGPM$lx`)+)}5vq;6yZ*y6hN{=!o5~)F8z{&Mmk-2M0FDtW<bb#gO3#nX7oXquh#+
zBhN_yNCZ=e0>R3w(%Zm)v46<Faxpw#@B$J3+iW**OR$Cl^V~ySZ#(6u<FoETg9+@b
zx=wfu{1cCXdpNAXAli|cJ;K7moB)Sln5`alVY4bsVS<5Y{7sD4eBwCI3~0wEY-)O@
z0^b;lbW@}{L)a0bjut?Wc3+4$&)$>|OTXmq?4OKTx+BtM7pL*T2EY>2XmI+5kqFsv
zma-RYRP~~n*V!cP%$hz#@{A6ybZ;ZaG1G?KMbwO>H@<4%wS}27TOqF<LFVJ?w1V@K
zrDKe4-uQ4A7u0ah(cn|Lc_WG5zIlleG2DW~c?UsEGBJFV0wz?r9ixmx327=9$xCSX
z=#-?mk4TkMpo=Ooy$5cTmh>#UuvPZCv&AQIj`k^9eadk%u{_lf%cC7In?5xgqC4Nj
zbQR&~)1bzEk?_MkjJzqkawP|382Qs{Bk6x5Y;>VbwhQ2pY7<%Z`?#U*qSegg4Rxb{
z4Fx8hq!UgO{&N<RRz8exOjIyS2_Di|!;<m{A}o-pc7LPS{eqY_9dVFm{{$CI_$IE!
za1MwCZKxz0WRW~($=tKxgptd2xDAAt;G~g3yGPa8A?IQaO{SZXy(^$>EUwGpBOQDS
z8d6wx_i@YTL=_u-2U}PL*WuK@L-I-{-sS^jr|+1|1#k-U3ldNKDo#sy7nfZFanuf8
zyx4i=X$(PJxK4*}K$h_boT95D77%Y45oqGn-3ga_osU&<TlPLOz2cM*TMADI^}`DY
zkx<~ccSaw2_<+XWc204BZ>O@p6|U+@#XTllsxZ$8iv88)%8!+Yv-fA`ijbGAJ4X(%
zg`1+g$Srf&hMDOaw{KlAaZ<m+5k8#0KRqXR5y=HadR;dTVxK`&g=deq7NH74kh-`e
zh_{0Ex)62Gk<pcNfvoX8X(ojz8l{I9%nriIg8?0KdAD<ncA~WNQGA{S_me)#wK>@Z
zeZPv2!YnMVt?a)S31t7>!sct$pt3}j;00lo@Ikbg?Ouor1TI9RBU0rN1EwpXIbGR?
zDNcAx19_}JL4rr16)rI%38DdNdKHAbfv<wO9k!-NMqg^%8OEggQ6SG`WGg!|oYmLQ
z_qSK&AX&5=Wx>m7hFF>)j(owUOPIL90)!cC{%NJOt0KDcMVa6+#AphNnmF`+*1h0P
ziTue(6~NPr0ky!PL~cHs#qBrOcsK)USMxU!;0%ad;>lYI4nQt8MR3H(X;G7!Cb^4)
z6y&I+U3kDF_t5BLs)EeDkMnj|y}Mk@_`UXw$qdNuWmV;<>Gk^l>TARgFDz|CeR4w5
zJ4#@15ZfRoANe~q203Z!R&tKE-G2ub-Mxali|Eer3|^Z8CV)@3asc4ojrDi?TW>d3
zHhEOgY#3M<xmG~3?Jv}`hwY}e7QaE)^y1Hk4IDGU-8W4XE`;7lHbn%H5Q1HKgvm;F
zW^Bg1d3y%D226u4fm<V&1`Edl$k|0ATPKE!O-@g5I_kFGF0b#uU0qgGF}^NqArXAz
zJW+oLIj}yg?Ct&AuTyC1cQ8V}d5NVk1M-~_ZFcVIKkjL~Fo>kAt!i0K<7BytK7BNp
z(B3QR9k;##t_7rMk8$;{`(iiYE4gDqc90o9*13tCHy_r{+lTPW$^r)M$%a}J%^>49
zu~zTGNXWCM`}-Q-Cq;p|*u`Q+NigZs!_JvT+J+J&S!u$>c!yrSnOT;bunaMPJmq%7
z8i{DGyLt#}mu7k7E8}zJa`)Yg9CjeMay;>>B-w|s%T7Z93-|WiEkLQRei~FLs2S$V
zwGhQIytyoC_xy0Rr2M=5Ciul$b$O8o>z?wj$|soBVHxCoRXSB^{7Yp&6za>>g6F-J
z-KyWhoKFs<{lq2MNFwJKv>~CR+M*nEY7WoOC0&EiQ?e7;7|eR_Mto#*81(1otJB!j
z;pDc{&~@ss`}hlQJp%%cS@hZ$0}zLgE0LdT;bVaSn6Q=wTmry0<PuWR9rPLc!e6Tu
zG+Wv*wh$~uasp5Y@liGv^{7U_ikJ_rZ_!H8M-$719Ktk})t0R(Qc+-~34-~SU}E8{
z-RNU6kefRavC%~x8i}h;!>vwLKjENu-xhSG0t**JJ5r-<doa)U2HTWxaDzu+J5+P9
zcnn19d@3m|)8u{(aSt$gMco|{e#^^((25)T)PR>a_r>^5*{_6t%x;zb5VmrgrljxU
zElciOcqPVT@L?p}hbTS`>n(7pc30uR@&%lFM$#PEKlJ2JS6?k6hPBl=Ev&~6aDSuO
zvdT2+0HsmwG-fMx9By&^X^+q(WRyT7QxWb9FWpz0v0g)(_+*J_6m~^cDJJiBGnLls
zsgs#E-iUG5YwrdBo0a#~i?c2yK=|?G-Yw)T0feRC=^3XfJ6;2}i$CsZ3fm%hV%nBj
zXq}e8qN~`f=_Xs$&l0q9;%dEa6(nN`m{c9&65!=>P{)B-s-jl8%Yl=_I8&QSUJDH-
z=e6?TLsidVV0EHhu8))j?W1-Ju~M*pByEC=rT0EqJ8Z7?z<p9wUKe5RBtIMO-4b*a
zUz3-}NK^(fcM_YG7+!tzvMC38G2`-5k!Bl~qA~1tvgVSI3*UM?L<7M;;t!g_y}w&f
zqFT7{jNFB}L@M7~N)gTrlE*ZU@BxOf)BPh9+DEc|<lHd(8Tw-&ku+PYN{$Y0F^MY(
zGsp&hM4(92)9neQc>AWNqr^pjRR?(?Z!E}*xtWSp3|Awj;7;n({X`lA@q)M@MlnAI
zCW}h!dE=UQ(a`dF*q{&!1&t5Ur7cc5kqAYGpRr85dAqv8bABnKS&m!$9)-6Ua|qtR
za%G8LW|>KM<pp1@O!q6jCIv^%E0T@?=!6)E@pO17lBO{k5)b}X!m6_kEoY!i&{u#0
zN0*?gNoBOb3=xpjA^*TZ;X>!(d2<>XMr8r%NH&Ks7i+7KghpU4D=Alh)LMVe=UB&V
z))gal#YmkPk=MjXJz%7Mr5b8It#XY6x~a|y>%4iQAdKSPLga;j=e1s0(z${q3b*Cq
z{$1U7|JWRXs^j@VVxCh{wYgBCNc6877q}a>Cue3)8kbxie8-csU?Ipa3_I~S!~T0_
z3=-F29mgd*Ocs1vR~*IeVmppI9*pYR(hWA_GmRNI1hUUVI7g^UD~*C(ND5{P=D>Rj
zz<DQcx|r~!^efb~9V7idgonsBMi!rVj@1$2dj%V{Z7BT#O$Rm2Z{gGuyo8d?Q3_6t
zgDfftGdH*eMLKrG$jH3$`csMITcNB2Q76rY&;^v%LG7NhL+_2DR0UB~E=LK$F{q}B
z^+460hc_vH(Mq+lz9yDqe8GscKj|D>G<regq}&umRA+!;wRtv|G-Fr9{WD7JQUV*I
zQng_nNfPOoo`xWYWC#o#K9Uhc@<>+%ysA}!fl!Xg)CYmCuE*Isf`%bI78IBJm)Vht
zv6@W|_q`x;3l?_^EI_+jFaVy9Ye$)7&*3k66)=r<-H^(O5@FJ^sYXrbs<~5mB39fM
z4iFMSiJ2-JlBLAo5R3;tRPu3IlCTGDFH;phCdr>r_I(w;=#qw4^=5&RuS;+b4_auR
zUg(lCZ^cYo@^MRY6P0|lb<ryMyoI2cvQN-3p#+tUcT?F~N#*6?`33iA28opv*+TH&
zu&nh3y|<~P>aw}_OFly|P+hF#`&#?3h5Q9&eLt57fs(pQXTbInFJdSuunBedvh3pv
z1O$}SquyBZ386fUJ1aw^h%qkXVOrvGk%x)$1>aet2X;j}wH-opW2Gc7dng*$)S<2$
z&D|QWoGnCAWT;TqxNEguF)aK%$613@YDfJBvf{Z3V8o*5%+D9yd&Zr?`3;oV&fo}n
zk~9|KJHIcoVy=kFj|72{1LnR=LJ8D+nJ8B@%ab#V?)<KsUBIvc*m0%U<EgnI9oUFx
zr3NiK4Y!P>=eUu8yHQM2RCRDd#=gLOro2<Ei1G~X8TD=)Ggk*2TT%t_9?hmjUUAB$
zbP|c>b}HZYqt9>zFRZ;?*?+zMdIc)NGHz)*gW3a|3nf2>37BlC*M8C*#7i0gwipG*
zharjvyBUmkCpakuHwetwCZSX=&W5m-^`Y={Pak{eW)O&M8PLt>pHl4j@HbbWqiwD%
z0|l!`i6R8AEVL`?e8+HMbs`G|+%-9~g~H|(6u~G|QDnkN2SpTbqG|!a%DCCYAUX!n
zla?2~st9TR03ypshsrbk2nl6GZ_YFrkwC@v<Bdp*7w2e;Tu0y&X-|jsN-uIF{E2n_
z;yfy`gnLL1+Gn8pR=*YkGwsUAz3}xK5%?ktV28a#KnrdLQTYM~K&)HMw&qWm#dbGN
zz=qI3O{T`1PozgN-!p8@nx@P$m3$Q-{S!w(l+ws$?uw|QaNWqx^|pg!zmNl3O>Er5
zR<H@ys)`nfybc2l58zB8f+xI(+0@lPtN>%5NZBKuSB`L>3Z1zQo|?cC6i2X$;{sTr
zAjQd&QTPsVLo5r+|MkPt!9bOg3`7!ms5wmU;>KGZm=?_Os}5G<Y=pF&3Q_?#-2=*8
zX7a^3W*cl)1P$+@Aw>AW#EK4Bv<3c=V>;yrW}XS#L_ElzM)ihg`qex~&5ObLS>|&%
zu90~UaoZURj4W~lBV>|9+pS}<(Jw)I>jhlYChpJDe^ou8-j8UY`$#~KM`*Tun3IQN
zSPwgVyf2T}Ee4SD`GHksn%0T?59R3`mix}2!55F@#o={BDnFJd1U?Q}8fY#Bb`hWy
z1N$Hi?1LEC2Wem*WPp8;0`@@`*as<KAB+#IZW<9n6{Z9DSTIcO6s{3SNQamMyh<)2
zDp29#uymz%y?i)n|2EYs7Y5?uW`>Z9hIt$qEIO<4fgxa{PP9}iX!?%HfD;)bTMh&{
zg&_S#Zv}U7U9{-sAV5{*4!r-vZx4R>ZT7dhx!>j<{5JRSx4Fl^%{{rzqcFCDijySb
zMC<JR`+K{RA^e}n5Pn{p{{E-i_VTCsNklkidYqp8=k4!*D*SN%dmq_OjS*942D{fm
zaQ!d{I2os*CYv2FDQ+njk$0T<=?>|3tNsY<Il>|b*JrJNO=5H?-h#fsU@Oaq@=ux?
zJn1)%p&FxYO2jm|th(1s#V%c$yWmUBmbpOL`80aRJ#<~j`O{-o#)$`jn4E$w?m4^6
z3VUWoOI?ddcvlQWNju{KVaq4(J0w$=)b>*WQ<<XJi!{NwEH&f}c4QslAZz`q)jmEM
z%<~&@Vd2A8BU+D9y#eCp;8Vsj6=8N>N+Eos6*VB{`as(3a=JSC6wU&l__>eMxYe7)
z@|076|Hes#r$!0{2wrctaIO%_kM04!3oOI;#mKCFoT6-R6?+F$p53irA4D7-qwPSl
zFv}w7aCv2EmFHLX*H#&fwFV-d#VOqMw@utRz5W`X<Vwb%piEuhPAoF$?m+im2(Aji
ztHwp)`!~au<VDvdh$WWeJu$12_GNXceT&@z2<z6ZpGlYa78)*KYXlC4zbQzKKnQJ^
zXAGpnzgH*MQ8!SC9Fe)g06EjI3`uS~(Y_~i@#XP~%wgVhwv6K!MF5H?z|FGdKIpA~
zgk*o#jDW1y#<f<-mm3E>&84FwZjH0naB56nBKm4pLuz0_ba_3Rvt7T>dbO$1FPX7o
zTH_+p9FBs8=70Qan@4k|T4zx~mjccpV+=lA^5C&>;ZY_^Qh##r^nN;S0qt!bjQh(v
zFl>enFnPC2@S&uQAQb~<y|)2|3=wO!Nh&cy@C%vpLysvZt}9s*@{5!#k8A0s4iSLH
z<dlE9KkLm*sb!-qo&R`5$+EC8mOOAtJL4{bLMh5gYmH3iPr{tY1qH~A;ic+jvn_Kv
zdUOJ}6$jTZ;hEe~HiwMKE2gfb{|pbx;62DfnK9_50JF$co3ek{L|pBR+lK*D#^uP}
zE#|f=7um={gW1B$c9A73*5rccB+GLegY}~$;hUeii|IqOx{5}%I~A3cj&d8GD6%)S
z95qsTiVd1PJZ>4`7jkAGyVL};Cdg(?vOM&=*=oRfCblC-RhnL;{_cpT;ZwW!aRgd(
zqh+^ix*7fD{h9<*jAn6~Ntbq}E>ML_4Vnh200C+oPk-P}I36J~r-!Vqg4HEJZFhb4
zyFy<iDT8qo=CM$;eC1B%9+%2D3@9hW{8ht&L^@c*6stY51ZDa<MG3bJOCmy*PedV$
zQY1wSaRk;18|bwdq9GvT9_DXYLw>zp+_#>H{Dwx5<1t<dd@SN5#j6+wL&deNUntQ?
zcAv)k2qqxBC+<B7HSw{H-&ni9BHMk84XPW(@aUNdosXbDgc!w<BKS?B9`0LdUADW!
z{<5hCSb^hh_P7r%jk~PCJ8zD4?#KCVZrLdi-zT@^E;;mWtx|ufKebJCyQ`nWu1eLy
zB-qj_Ce_7t5<}~jXoQQy<HT@0F}dBlraOl25E0peylTK923xeCpbSA;>A-K%9Uh<X
zat4tiD_7W^9jiE6rcJ>T+pkPc+YMj-*^xdyIqjE43ASw5)ER_ZjYc$ZCSZX;GN(z|
zHzktn)cmVb4^{r0LQTgFEaYlAHjMAtzj7?;2mz9rgg#zOLdNZ(qzDgv7MIv+or8f&
z(jX*DfyXoYX^Ork<uT9RMi)8|!s8Ip(xUSdrwrvy01_+3t*4|`+~EtqJG6i5=Iu*H
zgxTvgWcuhMoH@5&r`7SO36Q8T3uw>UvNqwb$poD0)3q{yqzZ*LQf(G8Z6JzNz<EOW
zNi91)$aQwNl7D#saG5fn<`9A?l&O>$<A?H<1lJ!da49y#r$f}y;{<lC0kB$PktGgt
zB_csQnsD4v4x76>u5ge64+|e5zTHq}QH2`V{9v;Y(m=29Mu1NJMJ)^rV^nx{+}}>t
zVhGFEtN!a>G)d|p<0`I5M7`FZiUDg&gRGIz+*%DW$^}9W<03V9z~-Z0+n^yw%s6I^
zh3JoQAWpH>#JVn;xeMh)0Q7v=AG~4$3OQhBWGM7zWg;UuC_2$Pl>J_vGzR7kgtf$~
z$n;rcfCspx`f(p%r`cvSMo>)<`>Ag<5r8!(49=m^n{Y!xQZumR0=JhcByzawHhS$Y
zvfEv!aJFH}y<a#G7<IJw3VLN+p^4OJH<PO{=oc@TIH*=I>ut#Lg`>wh9b@)HiVGVJ
z)BAa}pS3|Ew5UgiiIZl$fOg~yQxcHviqoP%nEp?*1LqR$rm4pFUAi^mc~@-V>XLrt
zA4wUC%ooZ*t!pxD9M%rID<BUN2{IL;zXLx~s1@<17?8|(BW7S-)}O-NNY1r*?b9>n
z7?p~H5MdYvc=TSBeLUdD3{c6M)#;BGN;$%;-)Ocja2B<--F*Q&I<^oW%zE#eCM(QJ
zLIu|DA{uq3<j8g)IL&1>8HqJ$$##qgfr6SK_$j4u@o5$2ovf-pg3B9@nYk>`Dm$J)
zfQJx^H}Zcpv5-VKYG+$MXk{FE0e*}%ym8Ye5T>@2xhEv+Bq823dx*KP?G>d9#H&Ob
z0Y*#l0HGUV^trG_5e(pL()@45-$2Xi5+L$YCmdt8rDg>0UmH}i3#mejn+H95Ewmq`
z<l@4*30Zl9Q?>;aIGb<eR5#A#MsB|<mCiCu%61BjwT+xky%u&YL?G}alZF_%45!jd
zyr+qRX@XGvo>XDUinWq%`*Cr7BjnRi4nptBR3i?1NelW@2T{3$@^T_?hBhH(-U>CN
zJ)(Z^pEz5uSBT!4ii;POw!%hXNcs{ZDjKbdxjjW7SfcJ{QMXaAwi73XDL6O85M~^}
zVU#!p8CG`YFuKH?Kn~1J1JWyg)be`~Q(mc|&D+_5F$SkeLd0sm4z5sOv*b%tjn)1Z
z7G$ncJjW92Dm8Sr(>*~(J}7BK#c3srn;KD_BHfaNzNH|H(4GPPr%L@Evev-U%0-G<
zO^B5#8DIb>QMV;1%jQB&_x6B^<!7GAvvP5Z0-bTR6c^H3DZ4qQnEi8d3u{R8sTx`#
z0HPEZ3$em~g_K|iaB(jZa{c=ONFfC_&|rTOZ*!2%0-5IdOdm;e4sob1{{<(10U5WJ
zWEauWvIl@=kkK%)$p6FMyZ6U+9B0D+<5P^d&<+?8ASv6~1eT~!Bxu2*NGw2FNkAGq
z1O~)}zzi}oAO$;qKl}SUb?L6|bIxEuf{MKxCO->vPM^M1RoA_%8JS>t2I5R8oj;_}
z3+V$*1TETQkRX^bipQpa3^Q*^)+_r%fZVdG76m9WT4(;2equ%~`Bb!L&7wx-rEmJI
zg~V)w)i=<oo~jc*+e)cFl%d9sl12tKcG{&`nn+>&b$pdU>CXjv8rQK$4o2i?k(fvP
z4ZAkonN@hft{9eEUr?fJHfz+K0<N!t;J9R44SppT0LPB+WTh&su7VSW&Y3d?^Cicp
z#jU(9Vq%eqj_rhAKw8}-vp^S*6l7*vWCO_@cl3$s<;otQlN1_Y$t+Vm)tFfq_5<D>
zBTG<}qqddxoGXsV=u8FkIaW|C2#b^=smMZjK7XMB|G|lMvn?Bzs4wWQjm3FeI0mqL
z3|1T~l_<>iM>T15Zag$uD30`Qw3h}?3!V#<qAJBxoC!S@wFQedPV{+Dn6NISrX}#A
z{v_edjMCXI3KZ=qhNT%DZrG>woRyy@a2iU!DBJN%2c|<nfSEvx)hDX%;9s9c!8f%0
z4hk<+d2hoNenLvwr+C1hLO6me<DdGfe>WWS?n5RJq>N<#fZ)v>ED0a|lH9F|S4T&*
zF)l|Z7&?+H5y?(}JRZ!c-TwRJ4Up@ernY3*?hna+R(hp7h|i2W_}JtZ{<n}-J#Vmv
zrzUD+psnhr>(d_wGu&STP_4r2IKW^RWA2l+{s^1l1TF~{s`3-9{X6tgDEIO?!SBOu
zA}7Io8?dYWzI32&Wg?6J>bc{PA8G`w3F=m-z!_)ay_DmaLX9?}|KugNu52`W2%{P$
zz02$aq(nm_D8jdC9nw$hEDsLm9!e8PA*il3a6Irhn&E7clo%u<fhuGNgHWK7D$yEL
zqQLj6by4|iRbTKl#rteXrr`dkq;rC<WD<Dd<RJ?P&-*d?*`Bk_$8OtK&qW0UNU@wH
zH?Y9d_UX1d;8QPYvuao|JummIacyoE`B#%r+_uKjQ*<i%)6%|OZnuVQXv1?CrkOwv
zv`&RWT7^o>MqK9W-%sAWz@209YZRfDu!SI<qc+!H5T|XPz5&}Rh$zX~6lDLv7d)Sf
z=X;GOdQh*|_B8|)A~4AzT71a@zA}-|M?z6*cZ4?$#tF+#8Y&Hb98BLyCkBBb&K@!x
z2eQ3+f{U|F1oAgbY-bJNU6<|%{+lN{+IY4RSa)f_vT3XhlBhP4wjkyC@!IW=Cv^ET
z_47AH_AgNe*8-jYP54cA2_D_XWfS2C@cs3W{zb;=-#GD$+(h09iY(K~o+vaia|nO=
zSBtrbH)r@QZ9L($t4UPls0)4EnV65)gpkq6TZ-mA6;_qz6BBJ(K@;p5HAuSGsfipH
zJi(w%gX&|VK0UV<-5M~U?~rXM=spo>MR|J3b6TnswdhVVGwS`3mp?%eUsV;?NW?Yr
z%Og(lmAFH~&duu-oiO?v)+-VNyDm>n0Ka*i;xj9<H5z@V8X-x=ooiB&)Z`ePTF=Gt
zH;oLWH_Ahs(r>Y`Wc_!?GCrOH%c;|vvL|qYtBFypfDQD)LY}nEA|(kR(QL9#%V8Jx
z^+F;o2EmrDiuo<<sZGDoLipFFeo{$6`Q?H>LcuLNpk~X=-Tp=^8k+s1z}Xe1VgaX5
z)||0xuHk9OibYGBYUS>$A}RHDMKHQ;9~9}Gm|U%b+-NEy-4OKv>VMTtuFsP)N80{4
zwWteOA@#Jwq>pxVM-!9(uk61&gDL!bRog}B%}K+&#y3|smGcNWL$+#<2ruq+;H_1!
z@}FJv$Sqh)L_QqmXWcz(<Kc9fw#g-u8!s`PT>HzHQ_aTqPD=*6$sv__5-|#?<Sl2#
ze|-4j(GLgD9{#um3Bc?C(PDe{7-gXF7`X`HDIQeKc6OitVf!&#eqFRY*xlNB`tT87
z{HlC`OBHZ3ed{sa{F+-XC7VGnwk4wo5Z<OJPH2KZrS6Y_w5yGJ1v|UY*P4jBxQp*E
zw|<8Cz(kRbhJ!<1he~JkUd{tAbOm?^G|l|U>EP|Gcx6n{H&@Ftr8Zs1(5N>L!){kA
z_mv$>wH4m0hfg(@8~T=uK!C*tvy18qt3Qv<F3x;am*}a_rJ%-r3M!XN%hOB^$|>ds
z;@4M2q<{gZizN7p>6muW3hLZvNLC0OuuRaG<b^bAIh=|kQwXOZs3>U%@~ijFw~O-k
zYslbGG2%J8n$|h$u>d)0z+-WGmpJ)8iWKQ*X-YyPY*Ri-YFh)KyoRHof*kQI-^kL(
zLdeL}QFE0?Qhe#>C=_%chXK}_9B6YBd-=ta=es{1>^yw*&kujMh3);jt$%@r$}T0G
zi|oc+gP<IHUs~zea|v%Y#q9hi76>BAqHw(b8OS6(BXH7>1Q%xujs4=mg9fqVL|SIc
zYx&Q_p&5icN9nUwUaun(GcqMkO(=$qVt!zYG!gn>J8~rHRW!XcCQF{t&Q2+x-c}i)
zd?9vth-zsQ2DA8Apg?&+DTrP*4S`Rv+gDL(8|V3a3USU&grn|(_8glnmS>B=5#^;M
z2XIb$S*-DM7U<2}$kDk=pv6@f^gwCMDKM<S<&u8@P}WEe<GP}GRDw9~5}iqoC3%9_
zxk?F{6lq*=XAcE^6bjO5-m8RdY_jL9-^<214hUV{`MA+f2YQ$UiC)plQx=H{C~Q*K
zSpIf8*E%}->MJf<`?EF%H2YP*4Pq^2Kc_XV-NuD1X(;65gjIozGUOC0Btb)$q%fBA
zP$7%{6wODk6`5&X+@8uq!YE-XzZI&ol%arS<0xUGz@Ui@EI{Ekkhlf6TqchzKGgAi
z`H}de&MZV>YpCZf?HCRrgI|>?>?nrOlEN)^l+G&w+0t~sFaJ3}YV;ZY`V-2ry{_Kj
z7B=8hnpwx|4{Sf!?}uFXnxqM|wQP`1O3*9W63)d*F;VLkd8q8yesxh?Y_pK;V#9!N
z&|dk*2rxb@s4%`r{rDyp;S|_P)cl+hguY`hDw!##^#2;7gUrHDaS4YKqoWcWBD*|I
z45$}gj!W$asD(@)v4|Gkv-}~33s`nK#3O{S`PPl>wtPgmd6mkoM{?sUuXI2G{NWVZ
z3a)GP5iW7+SI?jEcE;ibj|B58zeO9TXmC#h3!XA(b3^ZS^K6mzlmSO**}qz<pF6lo
zaY%4(__D3RY#(o>@`QI*_q4bqfOjKX&L_kF*4>mx1xXyd_#N>(Ie{4vnAIb0TCI;?
z93RAE!43B2o6GaTZ1zOdFbWBIp45ZlE%`>7ZgU9R^I|^ysW`)^6AL;TMkz*5L;}#S
zqQC$~U9(f$MZ4R)F4&h>uu>BiCVWL}^8LULizIO8=$(xPYvsCJfH!-_T&=^8U3&@f
zgme(LoPbWTkdN!%F}Mh`s19qVL<<`;$i@=B!X!ii=SCzIWGTugxF(?>0Dg_}jSeaj
zqQFh#izG_FOzNlKCe6}sJ4c|^MZ(i%^a(?nY}BuXXQmFEVX6jLQXrXcYM7wKD*?fq
zaF=odWO3RqJ@(_7&d8n0QiH_uC23z_hWUUhsGXbQVAybWlx%t<dDRwDmwA?QPOzM$
zZ-&mk1Q?>pcTeCMIL{4?9lMb|=+y|h$7~16!RlzZKqwQK^4w{?5U2qTO;Qs%`TY2i
zqYXW%e*tQoooh+oFVvn|I?BW#NPS3c!xbqdEyZK9{^W=@ho?z_gI5J3=86B6wJ!qp
zy63~s3sOl#pgyH9)pOHX5iURN>QtuG)n~nU>v}~95ga=mo$!*FMs;eQ=fN|N$ZWpm
zTiPc|RLCX3o159Wx9OSdS{)Ov?&I_tE<setjD%7oXE(lRZS3TzI)4IWRh2W2YtBUU
zR+8`XJ($-KJqWPe23}@x_e*BDptSq|si&LE6~E5azH$E*${F<LNG{Zh++ya4yC8uy
z>H;=Z*~7-+R9!R%Wbc965-ckFYAwf7Y+p=FRZqv?RV7u<wY{LeWX<EKzL}1N@`EzV
z?lCd{`Q@Gz%1Hxb;weiC<sjlb$f|T(cTXGaDe%(RQ?UQi!4WvJjz>SE-!#0GwM3fm
zyW#L$GK8mctB0T_`CPg`vjOGHqsjPHA6IW%mZ$>5g_3rG^iJf-8N7s(?L?Tg!>`i~
z0MKPG02Jt?IIIbU+&1HxoO(=>QYKt-v($lj7a@4G3}V5Zu5?@qAF-7xFGxgPbks3e
zr%SeQj>7S3)X>&VQl5Q$%)n-3$6Yuj|JTq5Wfuk34bXBoUc&?^B#cmT;w#V46KOd;
z2#N_rZhCA!ie}T~yg+LtxDVeqo9tzGk|fsmaq%`{+-NScviP7&F4<mck(M}UEW?T{
z^)B(Fz;3%=SF}(&e5-~K=c3!X^$YNjwDIci=p$(a`hZwrp9zi%Z=N?K4rK!8?{F8C
zTRWIQRZhps;-nr7;MkAWb@&$jie5oKT^6lYEJw;u#IfSmfMqWi#3>j$zrd-5Aop-;
zA^hU4;}Rf?@*uuvz)s$|IH1OwNz8bT#L3h_2^&MszBZe|GO<&!0E6-l!?%CKbD;DF
z+hY?zay*n!Py8s)g}i8)<F!N_)g)}m>wrET*3HO<?|3O3w0~OS;=lu%-8ca;=4Csa
z#Ju|(Ubcs87cSelZ9$9(6ALj05uJ!cHm6FPYht<TLTLK>2*0wIYvVp@B93}D<vxO#
zt1dornOF8wE%RzzyIgI<^e5!2h-|j>gy{sa<TI!={0BsN$$3q1-NV%*WJzuBl7UVq
zd;D~U@>V=}B3TRZ1wEK-S|ugLfOkG%D}voz1}td<-m2fbc2Rf3P$CY>Rp;tV{z;rs
z%JSkmtpmNI1~-u77@(fOvsgK<LgRrvy{U+Q-C615xMTh;q=8&FUUg>my%ajtno{mC
zSbxLes<1__fG?#167g*Z6<)N=Qhf(N<SDo=27tih>WGtNN-n8ggL<AQWrqUP3TEp<
z4mFaE*oi@ZEXs~Jtt6!98P=>5Vxx0#FVyN^0p9{);!mILD~NGM(oT}5=Y%vK$IXpL
z`?!C@^$A2>RLM~DNhEHjk=lVLADan4O+|t@%^rb=qy|~*g0@}j!I$JMoHgcjhM17*
ze{P2GC1bm&H0#~SY)zu;cg1w{`|}gnL)3Aa^Gyxb|Nhr+M)SqZPEOvRA+r(0kS^^Y
z)UN{{;*vC>+t&yn^~O`4xo@Z>rsI%Mlj0053JbDMgf*<5&E8@nw_c5V__vOT2QED}
zI3Ug;iW)1PwyfXJ=Vc0bF?qq_yoQ8G7_j)>;KCND;zB@jAsuSk^?&%`4?iCKVQZJy
zacF%Alb<p#TsV7)VkSMdO4lByEA8!W2*h6o49Un;SrQbtt8nv*GTeo=gpTHL*trP$
zT#RwT1vO*|jt?VT_l-+$<$^!Pe>fi-rTP6-nmVG8n~H1}!y0p2mz}<9np!Xf(U%e8
zUk2EMN^zSH?`E;u8u$~)wCgTgP<E&HYf_P15R8Usj(b5tPY1lVlr;wNM2-uC`$}Bv
z!xVQ|CeULsYk_{OHO>>?>r38l@;itlfOo<}B_<f<5;j4l-XBgnFvtbUW2_Bj-*M&o
zk-#ub??&hk9tT<X1~9U%&I#V!JsdM(i{riO&*+xGsG!y~w&8hsbexXf7&=ISKpiiI
z{XkEClNhy%PM@EQ4lk5HbRq`_Z|AtM3HzJ}*;~+)z|Y{<W$)tr?R0RYR6K;SJ3o!9
z;xX_A7{W38!8<raafP{zRDKRqr>7)C@LYjPYW%<`7C9YYS~tN<9G9}u7ZcKF82t+9
zld6`5>_osQ5Ka___%jVtB5o9!*%xr0dHz}d&wt#1xc+a0^*`NP|Hp%kyX&vNTKx-4
zA+*q#NSzVt%)T9*KEkEAl%LX->BMXOKi7S+tA0m!SK`~HM?0eXEOu~uBysdN!`?B<
zrQ`hUXbwP3-hrw{pt=#tI*aKGFpkDjvHec(7LXoSf!n1BX7Xbc(ZvpvV7w2`&vE@}
zmIP+!$m*{pb{(i$%u!XLf6ZddgzsV+^hvct#AcKGUnoYgWEFfP;ahJm^O0jJrmA~A
zl_bHmWH4tDzsOWTkOKqBMM5gqgewQ>iBrr|@NLO#T~98?8-k?f3H+DAZum3cA~kVA
zOR9P;2{X|NhP*rzWCoZE)H22lJfA`ZZTkYm51r%E<uB+B*ZdB_nJ;_TIs-;em{=+7
z!)c6!uhW4Jw2DnI!<9&d%3OG6)G(nxN(}&E7BsHFB$DngX4e%q0XdI+>_cimN}-H*
zfvBN^s8TN~8awBQ=?7K>y3>+LyY@0IM0@2oLBI7_iVj9g6q`0lLxxkx2l#)Dje2Xt
zOUWcf<Q6{mMaYL@L`Ew*<xgbG73n$n%wPzckE<y|4El~nJ9Bx=R?-<)uK;>=-y4nU
zYoq{aYct_3Pf%a#`WmJx@5<Oyi(gFLvWKs}685Oe%kG7=x(aJpRSLF>m=QCJsME^^
z4d8u-CU4dR6kw)KIil^f{<BFkRz#BU=$P9DHXm0iA!?@Nl`?gkpc<ae3-W#r#9CRn
z0x=(bTh&M{<zc$(%?tyEz5ZZ%MsMH-pXb(Bbl3sE%>*kgNPn~7hyz;4Fb~M`Y!Kcz
zJz^H>=5SYHjOL~=q8lc{EBz2o6~BiE3R~k_r#0Co8_=foAYyu6(jeaZgumVI7Ec+|
zueI<^@ZqJ6+YoC06`fH~{a6-Eg4@&S04c2DSV-Dr;;Xj_DKzb~5KqQ1+(68R?o;g0
z=K@Ed4i?z6HiF&hLwEFHX7a2bv#T-4AN)>-j{ehoZq6Kb@X^X+9qnu4^keV7pp8Co
z;Sz#MF_^sdu;0(~#m0NBWNAcDe`3J9LYy=iP<|3Tl`&2r<{;TxZW$nNg7G$uJ(=Gp
zIHrqJuS=e5q-arJ_O4p?AiykW$co`;ZAh)?a}J(nwg!QjV^tV&?PfNXpL~3zyk&#e
zVI+ukZequ@_LAyefdn$J6{Gb$l=oI0JW3pDQ5x-)(=fii#4MB{f1X(wvu~M&X-f^P
zBID%qOvUw%VlHNzDV3ziN#c;L7+wXZUY1%g7#1X4G-WeKdI6zE*N^cGQW7Y}Poj{b
zMWI!iUJ=K&9J%96R{G&9jdFwsc%7+G-{#+VDYMh(@@Ll#yGl+EPfw$QSWPU=tFNus
zVQ_2KRs+jm*VsC3ffe>iblemR+EF<pXOmBn#&5qnP69ub5}gGP^A7C4X;T6}{8tsm
zp(O(DwL<e5hemf_KHWOleugB3XAhqqJbe1}`A-KgcOE}{!PC6y{I9h7{qyh9a_<Ei
z;axfcoZjtj{rLP3{OnhL2v}bEDZ)q3pFMfH{pbZ6{C#VK-L3!qa(j1c4-NiTYlG+C
z?>&FI^+H<wL(#&fwe>iiS&VJ}v1se_*+XiDABeu6jy@Mt-u`h1Gv0o25PQ2{Lgne!
z!`)|c!ufs)5+CQ`)9r^`(|v#?f&KgK7f-ggo<2T!@vl1sSsFjR@O!0uX{G7a<L$kN
z-#^tc0m>+e5WhJd4RIlQe5j@s3#%GQG^jmFDl`7T81i@c0kX$D>G%koJ-5KS&>rK6
z8H|ra=}Oi!o8h6bGc)3R%6PSQulLP2mLJntEmBjEjjJQJG*fs<qpyGSo0bNIv`V?O
zBWiJnO&_bD=B?Ax@CPaHO6WJEvcG5S7MskKD7}Rw0YO4s=@)bwLRCQ0IWuS-RXNx8
zk#`%{!g}B}ff-pi?Eo?e-tIks#U>fT2?zR0g-~<3Iw<KYuDUS#mH6PdXn_`0s!^`E
zA$<t-D2RX*UzJ2Eb!v(0*wzombo;=|_2`?{dC{V7ML*TzHhKiGWqCMmA$3PrnIIfC
zPQnIrS9P7~(f{oIe;pVS5(bIm2oO<-FtK#Ikl0%QE;9=B*)oI06KE0$XVyv{R<Ab-
z<+RXit=*X(qTN{k{gySS7OfM}_*ln0mPf(jL1MY$y#LqUz>{|yNNWz$0p~PI+h$BJ
zTi1!JTqP2ym*N@+`r`A9-N~+sBGK)fY6nwG+2c7QC)JZMZCEZ9glLFqC|+2a!X)vC
zf^kbW2xItYLW40I)9G8fimxsX4P{BXiRGcgv&PjLaZz498p1O!MrBa)K&AyalOxL!
z&sSh{tqNLlP^HxZ()E`?X-n;IZCltF$L7v(<^@>-@RMtj5?6csR!2vw;pKkBF~&g5
z^4&Otb!{*^Sy4e;v#-K6yQb2n^nSal#0`|Mm-^&BPf@!p_D}D(co*QTgi<UqB}<k_
z{woj=a>{KwGt|yQd>>Yzc<7Zhz2mQMoA<JT3SYX*7A##atufNYVx+5s*~#cQ++>K^
zTSFUv(W;9cxo&7omi&@7QRjZJ%|QxGpJ||iD_wvWrRmkV?l{|&Q_)2z`J1pV7lhA6
zJo{8-0@4}xU7H8FhinwxIg2op7I7Qx#ig8`pX$V<Axm&-U)7AWY}e_<Pmng=PdQaB
zFJdlL{W>M>XfnnUNkj?@1;r<35_L|-M1>*|;3C*D*7eeed>7EcWz4ZU?<&Or&41vn
z(b&?!&fUX{?2we^mmfCLzDPDW_-8F*#O)D|TL*KxNE&Z|lSxtL1!Wb!kQ;=}ynL<`
zb8e=*>cJ-@gulgylB6cHwd_4<DnXg!(c2BA=FdsVo_kmjzhL}|DNZo`>FDSP7l0$I
zdy9N5bjuapiYqK8sG>M|pO;^8%4ocDx;Hak=HeVs)E|O0C6`HVStjrzrwp}6@C|U|
zS!J=^UtKm?u?tz4fvmADqYM%X%Yx+MAJge%s*x<1B3D2rr*{D|_^|*oNp{A4Q%<VN
zPQql+C1!P_DMlxQ_nO3o6>Gj<SBjCJP|++I6<%F@2<llY_kWb!+{nZ3$df71RHw5n
zDWh_BOAi2JcIhXlx3sbH@kEcRG9Am=rG%QxoDW%1i~8rvOY(#zEih=Gweq>ZEw{|)
zK4$XNrH}fL2IJmje0r%IAIHKcD19<HMtEpRsJk7IG=qBXK6ujym}aqH<>nPkP5Ypx
z!_y1qsA7&A3%>Mm#ci0r4<DqH%7$fJf|L6L@3#1u_<o~rFvScOX-uMkCh?{B6Q=lM
zs{-l5xem07tQ*bj7(^1$MQXiB$_~xa`W4Ocs(|YlTHJpJZIg6d6tunRsKt&dY$52-
z8k^9t1!>a4sIWM{HoIq*D!p55B1Bego5JPZd<b{D|Erx`g+JT-0He1*zs8@c>!&|x
zrr<~E<-Y#4W2AZ?1wN`gqM9_w!cSI|*t<SAn0P9Le1_Z_{x=kztZ8+10cdo00r*MQ
zSPiGb;hh~;X3-Wix)10S5588Tucb?Mjib9oH=mWA-A7&t*jPD$#Xd1k(m;-YrjNh>
z%poe)Ny@!@n(la0GxTd-4rca<p<ouxhkO8CuwBggz7#4+<H(8H6bD%JAqUMUpY6kG
z0V~{CeE!fL_^J4n8v2FfEh98{AUmf1D&E~ewAl@4**_conv$tuZrykdn}5Z7(<+$2
zn*7fon4PX^l;7}8YRVEakJ%fdf&&df9;li1UTvck(Et@QAHIEyB=o@?SrtXGWDkqd
zpY5?kY{e9wljrcM;aLg;%Cj5>WTE2-Wf9%qUv48N7nm3_L+7JIKnigIlA~_96}t7m
zebDQ_eD=@Jp8xc$e`iI#faQG9z|@4YflLf9@!#@AnjK!+-)O*%71$~_1R~qv3DYjg
zldHMQie}$ma-Xw{Dk2n_ZwPth&J>`*DXZiHX2i&Z7xdH62B=Zr%IuIjiWW?8Qg|r~
ziY;_jRfBql$eIWzILX*7I%7%;qBd&^cg2qlD@-61<a>TGe}4Qu6aQyhKeIM8w7a$b
z%kjJM<il8<s_fX6QjQ@uD{nbH!4w6K;v!IvNy6!I3YHHT7Ou<MmoNQzB976be9++Z
z@x}S+=n%9lY_01f<!w;NjJcmTKbQ4EI~)#B(T3j5<^c4XH=mPL2`^NhYQf63hMB3U
zL`s5fsm~)Dw(r%>tumBJ$Ps6eK&~bsYmqawlVs)cxRcRB#Be5Q$+_cev{fLKkw2ie
z@eR|K1#B&|Z^3sLVx5ox5YZBpfE>+TU#TA6^){|Op=cF_hTo3HgVSBClcRQhUBJuu
zgpqFAm_=vQ!qBJej+P**%Hj~PY=Ba>RlUpEC9&0Bkka2u5_{|S3_PQYwj3aSEJ;8O
z=7*15#>8Ma3zV=k$fNYyR*{EM?ocly^!Q|g(|2SkVwe%pAf1G1d9HdU|IDD)FJz6V
zxGLxitRjzZw41-ggd&%gUdaK3T}qIEaL79<^=^-3NK;u_As}$Pa@jxO-0I{45s^<@
zx(t@-Hm-Z&Dy`bNd~OTVDS!ORUJ#TPi#A+Ed4t?9tFX?O`%nsE2um3F0ZMn`AZ<Wx
z3*B_YSOJ5S$AjcPdW7WU^sN{e3Y%L@dyXV2eTp+;-@b*yhrbTa2S;r}^G@#{;D?2x
z2W{`xX0I4SF(QX{KuAKmxlawR@iaJ_wS<u9)?-Gn@{SFhdqL+Y#GJdpBYWtYw7qQI
z@0Av8*v-4NfTjSD-TW6B)KUh@jPEK{a5q%|e$}k@P8}l};b2H|%Qux`sQy9uJD)(S
zxGeNRLcDk&2rQn!fG%~&82T<+roxL7;xAr7KeLAo{u-6b>M9~?CY&;E7s5RG3-m#A
zMoC#;a{v3v(u=mr9|9--PX<ZypdCU*nhz~+X&2PFR=Ytkh&o16J_EXu+e}#PwZ-=k
z_oN%0c&5r4N-%40tR7i1<<zbE-)s<WB~>MpCtPx;yq~OwrQEY@v+DT)>xm=QY&={G
zpPU^X%Th*}V7UmKmXz>(JbZpEFqO3@Ko$dl$^^3wNMXF7z*;b|c1_kx&9J@pN->fB
zBE6X<+&MexDXe<|72$Bv@G2t8Bx6etvL~XWjb0+bEj`~wnBruU^R9*TVZK}pr)`&f
zIkm<q>1Lq+E$jg!UhT<9H_*1P-t#8?w`o~<a_gvc$H|b4@AO#8Tz8@V&QQ&hs4&+k
zEePHu$P&?eN0d4grW=0X!>|BR&ir}aZbBBucc%CP?m!x&-Vku1oYgtBkWAv4Po|SI
z<2fw|Fm54R<ilk8?tfnlFJy9n&#S%jQ~3>TFTGoTFdQSkC^;><8!&|xjK;j6FJe2S
zmr3;*wI6ICtUI<jVyqH<p$|1iXiwXs(+Y&ahXYi8loXNcR1?=(_o9z5wtB;w8((w=
z<I?U`V4zYI4aACPBUH@r_gsSu3g)_$;X-~U-Mx_f1x5tHMeJEKQb_0pK2#4S8jq&s
z$Xwd+z<@8ZVuci76Rkq7P9&efC^%^F6m<23lfZzQ%WMnIm^w>3PZH+W>{`tHu-}Nr
zw09bkq(B*)rf5%0$cP%tZK-h-=O}Mk0=l``BWYza_1SSp>HoD!YTK<dSWY`i*xlO&
zC>_1UZ5+d_HT{Q1z!HAA!T;;`kgG>a?w<DMAGvRY5}IHlJ`pGMvK|?NcHPD0f@`JH
zKJvXKyrm#2sBE8Qw{oA_t~W{%zaW(2&CTd?rMy!9ZmpXdpsQABT2EG`#O7vkw#2gl
zjgd$}w3}rap*PoXzzo2wG{X^FjoZAz5L1I2;)w0MFpt7X0NFAr;fBhEufm76GCULt
zNx+2n+lm2CK@Av?AQ|#uMl;h!<zQUtkBtURy#q_OAD|AK%!;p;KyR|%n-N1L(3_)t
zB7^_Jwt;uN&1*G9oPyB`D^DVT`@wm&pjTBb5EuM%8O)3-QH8QyvLJH=7Jq2y=@Ka~
z1!~O=5|B?Ft4Kzh>=={FHz=7uGs+S|Zbl|A2jk_LrW!7pR9bhe<iwDmOh+XWlF$2w
zXfi4#syIO-$uulVpgyli)+sS%E4349GoNT_ifx5v7wc=I+z7V?O4BuWHC-&$^L8#z
zZcn<X4U6^}#*d6sbbo~s=!w^mhu}zHH8!hf+9N?$r)DX)d(@MVuWc5spBw3+mS)G$
z_OY*O$qvi0ZcA*|J&<|DVm@NZRzNp7q>_O|yYTnGpZJ!u0-(DU#=jJe5(fo5MClBQ
zcm<@q2RXE4!lfz!`GCe17DtzBp)5R;?2kM-LzYg>egs9JSlf<*KOtS%@Efq^cWwt<
zVFd_qI`sTJrB8wvRpc)S<9$24{#vY^n^l^d&=##Zfg)|m8^IdDtR|p>e@66VXmue_
z08zxU7wJyuvXtD>X!9Kn=HG;)5CJ7|8-r}P6}>As6oVcS&PibmKo^~s)2S>2d_biD
z>^IV&?j0*Cu?Zh6l*t61g{oZ>p*oLp`(UiA;ob@dJ*&kPr_Iv<fS&LAl=ZtMUZsS1
ztnCQ{m{=*Dxsew5vtfFJy-VIw@Zs}QnkD>i!Vhu4ry;_a-o-)qVf>wKzr<py(}oe)
z$`a!D4Y#s3Nu5O>ofCo3iqTck@b_4eoDs2?>eGSa>?gk=x!r??4g;Ou#Qe?hy58;!
zb0CTFV_8uPS~+8vYzi?!pz`l;zQakC;5J`jYVQm?Xo%YzDfoxeSC5D1!!ZuJ9A54Y
z;S<Bb7xajKMb?)`*;})}%0QP5pT(+1Rncj9WQUQSA0GoJMX<`=Fr?e{+`n2F&9ZQZ
z%qEb${3hwzG>twa@QcUtl?8+K)8DSlCe!3^m3Dzhro#`TG0q07CQ)ruKXJw3TTtX_
zFJZ-~aHTjb;DZv2EomHxSjUuz@<Rn*%U8^?u}Hb(+!O;XN};J{#sT78moh~WYAp-s
zJxCd#fkZodESI9#25yiwxN<bfaxK73+jLA{aMm)IepFOk3|(Ttb>t)l4WL*U*H1Fi
zhgS>%;Pk+r=>0F`_Z6RsTlWh~oxKup#6SzeokDZuwm`YTwFEgAm%vUaG+!Hd{u?1=
z&n?6SvTEJ6Qnfhl+kzm3<+S#;0>fvyrq$<8<w_o(A`mL6@Dp$9L*Zx?nw0}&N5}_8
zFzoRJT=4QKf;qz@)*CK`!$cUq5uJ2c=h@7L!*^?|+Ai|##Au<g(bpw?Km*~a0B!wS
z{QBxE=svntl+!5|WF-7gJ(y~i$`8}j?0ey_iS+gDOU)y)*`=4ooNoxwQ2-05e>WYR
zpOn!2kWfH{O?^HTPVry8WT;$2$g^G0t#tcrax_H575__U3kT;9F`(IqSD6=S@HAFb
znhAj?{n=bj`mxN6XB@)MuiZn=q;aGg>1buPW?0d_=M@wjy0rlo@7k)YNvKk0XSi(r
zYW)Gy!n8JkEME~9VHf|d;Rt2se880Vrz2U<+Un8paD+q~`;E1q;;t5!9OeriRg>r!
zZ5TNsDqmsd>(z(AU(?cSU4WRVrdXt!N2`ajC6j1s{SsqnyY&YyAAalcX@6myN?Zqo
z52os`OoCADS)H)>v_PE=6y2~-o~Oqtr-hU$E6c4ifju70ShyUj6s`L&GR)Q=Sm9nU
zh192p%gHSb+G56}!M$6|!{4hhFyP(EV;mKDA3s#3Pp{k4vK{_aakX+7&M#L!Ronx|
zd2R*5(_Tr(kMv+l=nLyDpeP4ds`mvvJPK1xm3+<tjJ(mtGIiHV=0Mxq#LAdGBiKx6
zyOS#iw0()?+U~);a;kwal0^9H5Avilq$2&+G@-jUbfCK{5&=f`9adqUz{nJ?f<PYC
zn<Z`VY?>q|V1NYgDKV13pz}%oTb6Eoa{(typLFxG+++ba({)}wGXS8C^M!Tb9v~Nf
z?QQdX+WF+CY7*JJ6mok84nyIlCe*5MEhwJFZ=O)hh!P79Pvl?Conv03dX><*frNXD
zyo&!NBeYE{EQHTQ^cji^CxT82pVp_@?3&!v6V9n2S^;|{B7xO)T0Xqblw6+z&Z+5#
zAYcDiFHL6g_4Dx$qqn%XVZQd*rAsAfQm0&NwjP?R)8w$m)V}HcsuJ~zm8X<y=#%DH
z68?EG4T6hs6VV}ClvAkoG6kY^l^9K8U;4=dBtcQXkw(&$E<)GO9t~;$b8aZlIYaJu
zjXx8RH4x2%78UUTBjFVa|CSHiM4PKlVTw4An&+4y>A28kM6MKx1*D%ypq@gt{e>eX
z-K{YJ?)e&ea#nUe!5Gy+*bG~FD**iHjb5Bw-hTdS`+3)~=8$5Y|6HPRGcQK@f%29;
zab^KCkUc2P`u*<1XODh3c)E?^tPh{=DFv6Ww*IiiTC4zm!Du|eIWiwQ6wxfOqvXph
zACsfNxf)yY5prTuqImgMow3CST3#0yR$y{j%MW7<-o!vC`$~JRe4M6=F7YPL4V|i5
zyA7Y<&*f*hsA+r%p3^l8e9Ma|JKvuU2h;KJXa}I{>cX1*baGj=h%+34ZtY*aGa}dD
zk>vG6M2H(Svf1IVPr3b}VS>(`ULaW*my=+RjwYBO9wi>H-SeT7i|uDpiasXA*uyl2
z^rH3ShR6&LOej(aTDgG}A0zZ&i^3ns&UdC!!^OBAKHVGr2^JmpglR%e=aP5Q$kgS<
zUk_1wb;@&@yCC5tc+`G&TEku2Qx*m)y7rd{b*;<(Qvd5Coc3(Al^ug=sG-kaLW}6~
z9!&iF8-~9$l}_TDuf7t7$Cm_emVHPM=0iPmm^$+7E5DHLDr;9Rd1O;Q&qfLdDD+(y
zM%`M3x8RhLyuX(R*J&m|tv}$OynPR4A+wBB%crAlYIdhb+ndt{9E*91Uf%dTnOHV4
z8KwA6m4sdN2r9B{zH|(lf=*!sN~7}-7n}k>_UuSaJ6d2xmnlsxBdJ<Fbp#HX)`c$A
zMS+g=vMLyh<)kccMDt#~nJ7JBV#cX3Ft^o?@-2@D*;bN_3i30_Dc5Omk(dK>Evh#@
z65kqlb=j$N|5o2x4_fEl`>O!NV5bhWaH8Jmy7QE9YS!R%UYsSi3GnD4pC<@1a`hSS
zh}EhqXCUl=FNtm;t^BCmFx*F9td?&RH&Jpai6b|Csz$c#to*d0$A-@B3({5oz`KER
zZd6okEV0YwN#m2|ZfF5{{;Hb<iZ(b}w~!S4b=VVfiSLWab8(`o!--o&I4(ye@|;)F
zZLa}=W`4_TIKMdGcBum;KsmThCyAy?->4}iwG&KOCW)U5upqr~fo8X5o+r^{?QP11
zN|Fq6s2+#!K#jYT2})Q?I=^i$@W*Dnn^LZxGj%J8Gvg1=ZDGoe-KcTH89TsJo|P@T
zk*mY4RCxOnuz{2kdQl)GJ+W*80DFa#zj#2)(vrf(4Vz(JO_X&+=dT{o0%(miDB%`O
ztbI!6JCItP9uwf?5FW?$yhd{Q`jkhr14vPM2;PKqu!wccy`<#Fab}8}<^i*Gm_(11
zNWM(wA|0Y4p>mO(D*^pA?iRQTAf)vVtf~d_-T5K*nQZjmSD6(pyd;T05hmQ;N>BU=
zDU$3S>5tNb`3)|80dA(VG%2uk(iuwE<qm0*iN9i^M9*XQr}&IaAFwH9Q_I?O0YA}E
z;r3VF-g()&!wG=E5_4COl^T|DEnhmMPfVS>er>(YVUa2h+2+8TfWD^?o?9$rxz^Y8
z4jxZG@|2Gej5$_dxp;fh+k5x|*I1EJ6n4+%=HspJU;d7Oelz6Ku<WzZA%w~Z$Dr6e
z;{exV?+xbF!%;bn84Qc@{CKUO^G;BW6Lfk(y8>2&)|r)CTff}+)iLf)z~(!eVQ$s1
zuq13ssi0)A*ETnCfB5&$_qH%SXgW1gB14V5Z5tP$!SnQff|J3n(<mAfozNf3A96Fc
zaq#V<$cIByZMc?>9B<>?By{s|-d*)39mBUeht8F8)REz`F4x8}Jo`tjy9TSLD;&IQ
zJR2Meh?UG=<R_WX^}M(D3l7=ZXL^{{Nf?_&8HbV${`{OZqJUfRr6#XdyNt(L)cpXJ
zpI$r)am$>rS*0=8A4r7Cm7xT{;J#3t_!pTG`4b)&Ma?1RASD?11VoSGx?0SXxN*~r
zO}|`2nKt7f`;VQKa1%Y+=56-we|mifj%SGv`gZlNW|FMzI4Gu*5?s=pNGJ|?H$hB^
zYK?U?tokYD!1SgX+Ab#3tf<b%v#O`6mA3-*bTIS4o5bBj)-T#c)>$R46ClL}+&Yp^
zPg*q1#Nu`D8%QEuC!m(Kf+k@pP@ZBH65?zlEzG9F!66&YX!Z-MPOUw-|4ff-me2N!
z-f~NLOJ475F%x%S(o6Z8DOGtf8o@lDoI4q(4zfmVKC|?n1}R_{fX7%+o31*e3T$`7
z5B@S^UZl1ryqcc@8&&5cMB0QYQ9*H*yAo8OOOcA$Xa+M8DL{}s&qz=E%xM*0s6OXX
zHDgrhO}eKK{(jsf3iScXE?xd<h;$D4h#7ZQF<Y%qdFKi)9|s{|aRA9vrFt}kq!yyn
zKM4=~_2J|aCvIJPu~9M@eWfx#?|@`^PuxuDNrBs14t#&{Hj99jTQ8=U6zRC&R;iYM
z+2!ax1;MS2HAvjsdCD8NdW;Ixuch_It&Lk`K=B|D=Ee2338iW>xObOp?0rBK$XvNP
zl!Ag2RkRLpu{*h+(XfrlV4OS!2pt&Yz>2hzRfXpmv2pO96Nau?da8t-YiHTfygxfX
zwX(VgtR$DJ2i%s*9Y86E;<BiZ0lS!)_?&`{<`9CC<PD*FQ7H_8x_VDwHufmW6H^3J
zKVi<!&9K<Cn@XY-=w*r|9<yMUm-57TKnn*r#jVf}$4A@h8%UHZ{3VC*q~HODS;P!-
zj*B>M6zb}(MoPz!1EB)YF^a4sB4FnroO@B@M)&$n)YLep$yA>M;jM;*x&*v4_>_n@
z9Vuny0Da0Uo0o!Eg%{()#-_AHp3TIWYPg%x*%?h1fo}<NUBLpzT1~G3Qy~NGQ;-HO
zSRYoZxeO^k@ML=}RW`_)2rnbkr?%JNDOw$0oZ&4))~EOL-$-m5JIF*7+O{z^m?J%=
z&t~0+dUUshbi%jpc7X2yR3fex2F0$G_JzO<9Z7`2Z$X#E2FFIC7GFU+ww)r@Rx3pZ
zbZWzvyV^%iwr*Y<0&c(XFKXsT^l^eV8;t-ob=3e5_`7Bqy79Y1=ZrbyD@m?XL{b`O
zUheEQHv+D66G&ZdTMg4WgtT~}?FV2+g)34Xgp`DaC>ioE&O3+SF%4*<Q^xajWv<TK
zbNM#6vC_IG+DVB_2U}m))v)nOPXs-0%mj0*=tL&xNCOR0wk{#Jc3GnnhtpkfdJnzP
zQRX=4PDeYPOx}siHOpC+E*HEHpeqO=v3kP{^+eGl?;q&-E>!Wj>OZ+xv+VOxw~yA>
z0qDf)S_vT=F8MQT9A`-U#$PP7Lky!=&~4JK0CFp)*FwGAxT@PI-t;CBAP;y{JXfTJ
zJQ*ZF7W>4y_#z`bqC1=M6_tt&Zx@gigK%7#(?~r0LJiFol%KFXp!m)~$mE9HAq_f~
z1_{R3!V$U9l?c*HBK7PC6-#`ukmY5-6^oHOz5s(O)X2x6^zmfgJ09TzGmtU+pkkZ|
z8iedryO4-Y6~b((Cq-Xp%~*=_au!R30Hh9$wV3&;=??X$h~c0m!6^I(f7`I>d-F3i
zR2*AF*8I5z*I@TBo|ocnZrQj=%|;UZS3EQ{#-g2Xg7{E06b(SqBw>F|?UY>9$oeP2
zx3T~HY@g5pNqGE;{RH*O8j5%fJu%*uHx5(?u2ny^!WI5NHmOR!c0l>SfOF_awu@m*
zxUy`xrPpsETMoVgD`tK%9ZN4h#QFoKaPC24gcnKF5F0y0JmX+G9n+Ua?~$Y3OF^W@
zvLv>dOQsMkSX|U>1@Shbk@b$kFzTxqG|$(ott3AUyCqc{MjNx>dt`HHw-~=#j(=wj
z>Zmc*+*(mnIV8jpI}<{5(Js!JOc^G-)K_gk6e)tw>uW>{H5}~FJapB!aB~-5LX<97
zuOZe{k@KwFHgUzC0i2w*Y<xCx^;XH57;_uKm3u9VW^J8>wqOg-{+f^kGzs>L9Rax2
zxJ#s22q}N6O1Yp_3%>|b4eNEHgj{sE-=AVnAljy^K$}VcT;1V9yCx(wThe~OhEe9<
z;Qh9Q9oxLzb1H7=yF%QFBH5vjFqe$LwM+E@nXtUIZo&j~#72yP3n&9W3Q8G@DmWVm
zu4ObCK_7)7EV|cNOaTfmpxQ#r?}p(iv$S_WMsSW}wKVtiGdFGVP$h0)R(jR%W5v=_
zRW1lS@#ow3iz8AdjKPr`%UIAk7F83OKvW>MO*I=ucAqq|Q%sZ43>ALhm?L_1wLzdZ
zM7eyiq=*GMP`0kh#a{*>+P!AP<k{Oc5U6RiDGOmvPj*;nROZge0_ri;n2LJ2bW%2h
z?PNp-=e^%!+(Bod@=tdszQ`iMOL0g_%c1B7qAfO9NLGMKyuF!x+ep;BRs2t4%;Not
z#G2mhU7XwfB#k!Gfs(Oeq9As0-=Ir+LuQw=`S8sBBT%L2s{Be`C3n=$gzOqysLcj-
zL!2K9yrT@pXZ4QEPHke5-V{A26hBLZqD0)#A=V15p;lt}bs_7rqQ&hg7iHK&kysf3
zAk!CZ0^2Q5o%;k{kt-9$V!BJ}g=(j4G^c(3kO)&jq^<!pFp1Mb;~_%LquKFDYRZ|@
zB=0!w5VOm=j%>W3*2sQoaLraXPh&jW;c5FxU#_D(fIpu*uhDmi8~Z#2y2Uyxe~Xxz
z(tWvR3}BMB_*z0}JYmRB3Q?R0_cln&ztt(GEFKM*o@1{Lj~YPFz%52>18aBgQeo@c
zX{az>wRkR~=qt^%&AA5sIZiyW1X)Qq%1@A%FG<$nV`XH@m6wP5>ZD{C;3Ljcj1<({
z+u~m@XH#um{FJ={PD6O8Q$@Qb_2hjlRH8#N)Tz^9lSHP*pX2uC(gS~^1JJjr+Fj)9
z(sO<sj)q2-;;N!ep~*!8S4qQ)?j#GGJzA6vPF=vyeFGwNOEVpO%=6y_kA9ubfR8l^
zTqjPGJ2X;`CLK^!lsBA@ZU*TrCW?=!4cLAa4ZVf87;dDirtpqHYEoWSxb$qW{%_uG
zY3S-`m7-g)a+(~SeAp7Z=Z;0bipO<|T_~I0rwF$ym<Q;@PX@^-4Ni9L{@T0A46!+*
za!*u@!3eova|Ktr4Z6UA^GfFZ!W)vCDbprMtYFCU2AfN0S<`iOqjl{c$B~&E1ZmNs
zEAh(3LlOo?rb<CFW@d(keZr&f<z$bi4oegW4fUz!$LMYeo3MRkIo$yc!t?}g&(Zoi
zkzf&YrB#WQg)q5K8&?OFo~nZICssKEaR-;3=vc_gev8cYzdL2HQ;9$UYM0LGHscwh
z;t6voVdsquekHJ0N5$g=EiXz@!aM{<bm}=%h69^pTDMz<3#SuCtrJ4*L>r0+<%T*B
zx#uPmeZoGbY|IX{kkfx?%fP0|ywHIKMUUSiOfpjsT#IPyP9Di?Y)Uo^hb<849=uwd
z^jWSIdMg-qA<jPfcp{YEcup{8GUS3LyEvbOJjax90ZXMmTon(Ut)jZtZ17fm#cj8p
zu6P4puk+$$#JgJUraQ@*IGZ3#_jL4bh^v?n2RJ}^#Ovn=xW@V|BS~JfYXjHtY^>bc
zfgL;JUFPSgP$gj|WKW(A;K0Wf_dRTBq;n$nH2fKfe?7U)Twe?ihbVx6L_}*k1z*x)
zU>pAq{NnQG-pPD^KHI!|_bu*<x_GmJ_jkQb{sWpB(u%R==O=^lJNEqrCI)npJAX7@
ziesZM=cChC+vCv>!&9UYf>0`~?Wi4{FAQ9ax)eQkSL>q7brxb;gm!X*gQeMnq-7&f
zUmVA}&&;+L^}+v6n=pREy%&FD$!&yW+gIy#|ENUAI|=+2*|gB)_^z6Y$qlbM#?zag
zco*W9Uj*-9#oLB2qgoJ^5{<jrx`cu1)%NJS=clWBNJBzH7}2*k9QtBD7WY8ex*`N_
z+f`J;Bfe;#X12E4R*@X*GM+LqIImPpwtawQt3gRZmT{5%k7{}F_XA|Oe+$CzRO4lD
z5L@7tmAH@#C!DHgotMP-b?gMCSK}SO9a8uGZ1dF^8|z_jetFJ(F4@SIYusZIKY9HE
zyW1avmoR=ect04OO5lzGJ4}dwuMfwP;tgKU+=1TU@NhCcva~U5+bL43$D^~0vvsx~
zK_*@z?RpNs_*;zA!{5W+H;E+-=gtZ?Ceycfk0ytA@BMmxh5-86VB_rQe>D1fAhGc?
z=8hi?=a}CN3=FH=p7-G%MW|e3G`<pNV9<cyVnxVjLpTNP4libNWUZ0i%|`G=T=JE~
zD@SwQOa{av;J;{^IG8#*gsE_Mj+A%6Wp;w2L|7zdt#drSn6kzU`QaJh<U4iamZ)4J
zvD@gSAo*fzrXBSIQt;G6=8;XICF!@8DDYbN28?HQtz(~*erm9*ws|!yH~aZuenR$>
znCa#w#(8*pDjwpXOG-niXOP49sZv=At32if%v`Lw+WUQ(gsemvNw4=}(o=t+a$?dO
zxFaZUbPR-@An^|nhD-x7XgkUD7b4sM5dxvW3#lLf)_K33_KsWec=0e#M1Wt}OQ;h%
z+t5nh{ww6);Q)kwI%7uSxc7fh2eY@njsgA;cGC>DP!A4dQ0m~6R73(tZU^pZmEmP}
zE`4`?*b&+Lbh~$k;Yka={(!<74{c<!W->w}Ac+4;L8xr#<>w(#f@XwxORLa`Er>$%
zm1sx%w`gJ9!p+yfqIwOSKa~xPEy{_yoIVFO2WGdftjZ9cxgz+YJu?Aub28tu0bj)%
zZldH5Cl{!WB~h0S-WQLmEB2yfL3x?{aZ+`Qr{UZLC2>{YvrzqtqxhiAI1=?<KMN4G
z0y({pos*{SdmIUI`nauTfF8^&21vR@8it>zAL(^i4;m!T1F%`I4a^~)+#n0F75zBG
zS(2CMxI2DmGf|a*tXLmQWN2kIIqTw3sh6^v#p=b_yDwh^%GY7iqJ;ic_3&rHh}{GX
z0BDWlS|t#AcXU5QkhOjhBfpxm%1=xo0?J?|sX6&#Vnmz`Oj58oWz!>84I-aS+g3Y@
zbW@(=RE?$Z0;mybJ|O9@U<3}*0%Nu7l<eUPKY>f`I7gX};pDg%H=sav22}y2gR$mi
zI>w4K36v{I1hL|`{q^P8m8k%CR{A=WKGnbRP|>6h^>4j(eWhoH^D@(-$3;&+Y7OuG
zRqY>cyCbHf8IN=SS6XU)@b>C8bWGQLSDB;#_0V;qg6oiVL4$Ib0Tt~Euf3tA?T$JS
z--@SblvpuZ5VWYe99hJ5>1hEj+!qpf;}aZ@0B_^Da?OOt5Ag8B(D--YSM*?*G&F7y
z`Z7JOk+&V1Tz5D!<NvTr2!)3qoZ$@rN>Tz*CC?Atao_sX(!+F0x)0{}7o0>>3M2#P
z;d<j;ovYXDG*;iEsO4OuZ%K}LDAdnA$s`qdhECr#2Xa_R-(y4CTcp^6@&e`oSdy1h
zhz*&LzkOsOB<V<f#P+p)>76a)Yt64kB}!MF07%Xb@~%y@gru}`1dw|c4g0*eB9h+1
zMC!}jB)Y1nA%ty*<?$ppu0bSCif!viOc3qhf<d{=J0g9Q&`?M)oP=y|8^{l|*VV>$
z>}#Gzs@QvA#T=Te2@_1av}=Ca0Ml!2x$m-vM>IQH81DNEnzT&6wKJK$;38u*@)jYe
z^g!^bP)^U*GB1jd4J-<|RN}d{Y$|GdN%2igWBJ_=?qdKDe^y2yygM0U*ws@o6Lopn
z0iTj??V+sDIwS*tCq8j1S+Bh#Ye+A`N-G{AgEmlKXiXW?)^)Ui{yI0Y2wB^`ni^tL
zCxmQ!*vhSy3QphY*<Mqu@Oc*%ycFFYa9E`DXP%#-`S}!?Kms}lkBD8NZVSl#Lm|?3
zwYDG)PlPd*+SHk{^tuszn>r)(s{33B-zUq1_3IC^g|u^x6K{@a(78vV*ta6UcOtP}
ziUpqqrGfq}lQRp&Qi$~hKNf<>sPtyaeuN;NDoogmfL6b?r%IFdl?>!;p~dznzSLuu
zw#XK8ZSALve64Y~lgDg3((<wd;rfyy?`$xACz`;vs)DG<=0JxUsEk#ZxT{e?u@jAi
z=OCWDK89ch?5oq$^q{M=77ndoTU+JfT?{>+<ng&vb-Ig3e<_#@gSYh61=}ES3|qzc
zp9tNTu1|j=d{aMRk&WqgEpaJaFAM7*8-(*oQ%VbK1<<u86}r1>T1y7=CLhM9lfjXM
z>53rUjxxJf_TTL>T(8Htg9v&Z!k2rOXUCKA<*P@GL5^`|?$s06A-I@G|D%oMC2uRL
z>&Qw(5dVYx5l}wjoEp=8I6XW;jPr4tQ;G{dfqywa2H5bg_I(}MXA3X4rso+OU~(}(
zzhD@RegpOG!DBv|4yKonM<HJlQs#K{Ruql3{(IcGG?}g+ji&wE8~q$n?QhI3xRAB8
zqu;Duj7R@5I$G;nRi4`j@7=r8`v>qEaGm*-wR^tp{VLb(w}+Z>u}ViaFV;jG4<M#x
z1^!j6f&#?YNL96`-$O`&@MX|wpuokv#P?g33kqd-c<eJVCh@FGUhVpW;dpj29RfZ$
z(}O_H*3YQ0Akno9In1T_9KL9d5AJ6RBL@tSCJTnoA4l$cYp+tgzPBpr-zy0Q2>%SG
zPmz)Eh$lXOVtJ&*fjK0Obbi1`!XT1ajEICy{9?@OYV#xnVpJeNw*|Uk6h4`pf{Y*O
zONI`M#hEuy6NN3ACU+!0`_b$G6tbpy{7mk(Q7m$q9{|TT*T%4GpeEq#Ho|5+4N&wV
zi;Sg_LXXrM2x$@J`~zd8zT^$aP$f=8>=ZE_l!cN8KoF^`x6$k0?c;ynAXy>5wUSn?
zeXzoHB8~>+M9?&cW_i}>*4g>|(vM|fIZJFg3&kQCg9=(kwU)<^(~u@hc1qZO`b2MP
zZrmITx5qMQATrU>GELiQJ+Uo@>xa=J^Xer|_??3p43GXWIK9aEHuOykM?V-UkLdr~
z=-ik)LhjO$@YF|)3~JQ!Rc^AmxwU)n?D@ZK?+6_$(bTN1k3|Jk@ik~^h@2Zc<<R~a
zW02cpNrmnGX>=};!`@ndV^xpzq@;|EJ{UK7GwZZ$Y~Ux5;qD{@W<900zMGvue4Y-6
z=WD;Y$A9RS`*$?HQ0`T*vXC+*0<UTQlXDnny;AH^%$brr1$#Lo2c4flko6Hs|Bd}>
zoUAb|>^3AG{*Pab#>bO2NT=EG;9`23_^==pCr#!r@esg61oq(N?$d*vhcABMPyA>5
z*^}o7TmSN6>luq`;UT&tT)8;?mlT2)MY@nB#-{MK{quZ;<QZu&RUBfOim0bShjf8&
zd#bB!ZfcedEN9S=+`##VM|*1`CG(@l6M^(BKS$yQMKy@$@!r86B;v5o<|xxQKUupc
zU!oWj2gM`}@M4Ui>A`$*V5XqXM!@j-R5k??vKdr|>*21Y@!KH_sZZxgvs1N-O>5N(
zuzWf>9GvQBv#UvsNL?zIEU9{c(KXc1PR+9DL-NqLKU5KLT2W=w)yW@mB<JmLip4t#
zNrCwE12rK~?}mg8im|YH^>WW6Y>n5dLu<(#T-GVdU-H4EUa|mV7+dpdR$cEy_74V5
z9~rqfP!yxup`apyel$3B5#>DZfc_mcsx~N?Fq#yG0Ynm`!?U7nzQ81PS9ISZYxs3u
zWAD37sWOm9w-g&)T1|UUfE0c@9QaKbTvc}w@$oSSjKA{+lobV*(>WRu?ql)q#z;mH
zHV%J%#3(`&o?)UhmPc{4HX5=~rET}H4I%+7pNr+QGo8GJZVByOEg}ESakD!~MQ9{M
zDwz4Vi0Ay16{4={UqElnu*OB(bRQ=M0sRm)>hJXOlf<}+ISJY7J)h8`=abXPhav0K
z;t`mvQFNX(uYtrXsT!7_UIV7!jd@Bo&f+;xZSmMx1H?8R(IIp74>+JiXL&e%dvOM<
zC7DWVsWR)!@w+jA)ys=u8sc!X_vLJ(_b??G^4Uxt!V)x)dX5&J;Qxiy*loIv>A{K-
zQRM=y6P{s@wF{ICv?r5k^3s{Np<BYp&M=3e6etZ`NOy`TBGzGOkuv7`XGmu>wFX%U
zJY{6R<jWTTkgAYMrm_&Ctbc?(ZXYx!Q0)bBAO&7UA8{x$4I2)lh;}Ih%|xEu=uir!
zYA~4j%aGVg->?FG%|W%%XZjs(jbZxg8`iNfkRY@S-3^Y@)62e;B(!4!O^B)UIg@KA
z-U!+-&!>~Oqr>I~Sm|eq>fQQsb_?!*<ez?tTFJm@+!jn#WuBo<y$6-yi0Onr6MWLY
zvjVgoh@t=$F7Y6!tl?MZgwd+G+?8tM<X+3I(%^#LuzOE%BM+t|w9yoQN67~|Ov1e7
zxdo+yMCHY1MZ--e<oFbfREd-nCDJzRy+~_l$ZgZsEK@(Yt#wzZI%3}CVPuEtPmP0k
z$d~Ywwmwp`CEsY;D;vV6Lw|$ywKS`3-v(z$aPFN9-lJStPkZd)%p(Wv&0rjlc-Gmh
z9FC2gtq5({!tVIc=Y$HA(j&J~Mgn=wyRmF9ZfithM>?Y(kPI<%G}-Ea9A)TIh;xQ!
zzHA{oV^Uc=>vr=wh0&bJI)V>F%|O%o^a*jm^;$~NFgiur4Cik?pmr5(?FY}`%2Ttu
z*pv);^yrYX`O`u5&0YUU0qo346cGbZlmPZA7GO?F-&$e~w(;vW(d46`8>PC;9_TmC
zeZm&BR|z+9r-~eP6F)gY>$6Md3zd-oUq~x+J31PXZ!NWQ3(tYAr2_OypDv07=_g3)
zuUKDyBV`E)cLRCN=a*vU-rm6HZCKcZSXgQLPXcmO4oJF$n=cJ6XJN8L-EOIZlaA)2
z0V<0&Un$coU`ox)p?*EA+Bk+)+}&EBHRu8@yqz4-zV8$Y*fm6A+}BMZA)L#4a-JDG
zCU@X-Dl^9Oy_o_-hL5eX(`rGtd!le$-ErBDejBYo;bYSS_g*gpUSgdY!s%L5hhl+K
zE>%oC{{S3Qm{HZrbW-7Kx?hxZ6hhSV^fUezK>M^|wzP4J7WA}m4qPlC;aO%K8l_$}
zy=6AL9|u>*rkFYm<h(cCH178H&EEe;4i7%yme&9>yce?J+ufbt+|~AErG#Fbz+m?7
z5#93BGhwG|!bg6R<5V~UB4;1TtjSfULjxOQPCUqXu9|`9hdk@E{|(RSz=nBnIh=jN
zD4P6u{T*!&3C9sPaebQe=ExsTZ-820=qUf}R<eUuRyzso4&Ek1vb7d;`SBdddNX`f
z3@QA~@Ms&K>&PC~7QgCMdPV0l+nfb9gRGWlDJ}So!O&6u0cm2Y=TK#lO_*Nw`hWf-
zLaFoV0S=3uBGSCpfA#9`Xp?U6fAQJdga5cdMlPkPbVsN3>R(1s>`1WE00er7V&K*Q
zh_DF>UsO3Jnn=xx^Q5SJQA=}$HuAK=#eCu>V^X}NKXYj)*Avq5Cq`$627B7<9^~&7
z34u!WQS{Z%=SDS2oPENNlfX-k70|Byt2Y2ljTVLpLbZQ&d*8bYO&H*ekt+XJ_wh*z
zLfLoS^%DDeaR<x!y*`&iTp<<^`TlUW0GX}s{g>nOiy4Y3|AHQVktlDgOc4q2SI?e6
z@FCxzdRpg{6rO+MSslqMDSEJTdhvENex?7}LVm{_N6X8Oti^OlceO)RnpQ3488k0Y
z3UU;tud3fw>qcmz7**c#pvzo__3%Zr4PtG~^}~PoN!~nGBq7cj+A#fmLrU9On->+E
zJxd3Rf%y3cDN;59vO<gLad{3u+mJ=GL#AvLPfC|FbZ0%hlOi81T9Fey3YS1?GbFMy
zw8P4q<h?L7qEx80TSss2^eVK${3=Jnbm>sJ(~}wEJ1#FhtZ{}^!(%Q$KOs6S#uDQp
z!9}BbZsVF_gou$7fqoJmOy_G(uAXmFo^>KJ9|T}*PkHRKp11oXBzUBwgEiZr8PS|k
z_|+QNv5y>13NYYHG<03BzGGTI_zj7DxIKG@vKJ`MF}*CJ`tkuAX!X35p{37dM(gwW
zDP#BsF_Hgk{n+4a@be58E90naR*`DS&>`rsRb0F$Nlh+Xf4;Qb!#o=)X{v-LJw)7l
z7G2L8GSgJMg9Clm8h8t%0jJ_!4WFTGz-&hC9MOAd<#6SwRv(;HHW@XN#Pq5>38)Z(
zN&xDDVprd=p9i<-o{1Ayg$qw_eREe@^wyI0-)Q^<+iC}3onQVzD;~g*lrP;xxV_oC
zW!Y<jG92`no^p2;V}dC#1wl@;`mF_Asr$j~4iSE;o<B`@BhhfW?9Q!CXZO*4Lq!1C
z!snPn!+Vq5($Q_>n|iqn6{5jrPyxNK4x7#1et!eh;O^-mwBXlt&1(va=G1KT>6WRz
zG6Y)+GngMK0it8j1@i$Hp+QNrO|LTowXx`T4|yLUsb<lPkN^VRUUMx(Z5FDpr`E6r
zg?Z?X=_b;?QMBvaj$#=n3$m0kax_T@H~k?g!imJhqDT}#+fK2YxgZ><bT5Y#G}j%4
zRhBdcG(IuHtBDM_f-i15A^#g5y%Y+z!R#rX#gCLES5HulXq-|=Q<6^TDCg$<@O<xu
zjU$SNuU~{9b^^Hzwj`%myjqJI)8^*R?$*JR?WbD@kDvea?CJA|j{zkG3xp0K76!*~
zf%8}LE8wzv17E7CR#<Y&jDme912*SO+D8tqh~w@q8iJ7EF>f&h{o%WrT)ETWID039
z`;Y9sIOjyt{4;81Bz^*1KccdLhY@WRaLlFV-WTacOw!dfJOyR?@rC%cgh#7zdoaUP
zAQx>Y@Hn}|Tk&B{4kzcAFDAJWK<1kxS;szuQd<ics=1R>2;@PzrCCq!%G76rG4Qkg
zfYVz`gj^9&m@EF&WtDT}2X4Is=r4F@CKH{WpWB6&z-i67Q=^)L+wuQ<8Yzn`wg)_X
zF&cXwSA1nbbmsWo>HX&3*ZiMf@qd2J;EdqIAVPRX?q&<BVY`S4!@uXCHxFN#bf{jn
z&V27W9Z|eRs(Z8ncL4ze;eP+#y)UzGuZ6|iI)xrXmzC<D4g`knEtwil-APmi!hV8C
zQ9Egq17v@=uC9jkQyhk%MkA39>9r(gfebf`=eCwRM{y}ySyy%}PJT{L5kH5J%jKwM
z2p~!n8baH*;s!=$iS{1T?&(YIui!Hz6l(rG<J-I`Sn5W3`6UTNiYs6|#IcIWc+3kp
z-lH~@2}5DNiF<&AQS;{HfJ3hJ$vH4)ngDAKgME4HOsk96Ct9a}q(y{A$nj?lE7Yf;
zPng3cZ}gG-osKNLw4ngHtutP9KESAm-KkyWuF$6Rb%MLbNrG0rp+(ET+WV9BgpyNH
zIFwHyZG2eLXP2tdb|9itXQ7`q$Xp?6GOwcA!!kQhWP<~e^2NdJ=HgPFz!QRNvyoh<
z8*s^Q+=*SASfB0|Byvn)vcOH?HefKq34o{=hpX%qvZ0AcdWlQP_l+j5DpnjvOeqP_
zRECtysoQjtX%+Snz3ZiUg-I1HN(;&-G=-xHaV1}%h)=4xu9X|2e4mEsn;Jvj&iktt
z=xTV&&asg@DK|}}-8x>*Or=WqzJhJk52%s5sd)oNs+Q7>0`zM3RB_fi2VkxLD9H*K
z!*JrwS!?tN_i^HuBuUC*B0sc_H&Ao1R7<O081{*#$5jX*2XVGUoXepB{y}(s!dZat
zAMR~Ed-x-7d(U$XKE`C41&e3VTxkLsv-<*eC=RSa=p4xTMjXjQR@!(rgI9>muPm*G
z4-se5Duh})EeP@^I#{Vr@_wvn9%Y*Ko(t%e=_?dbz4xPm7HN&bIMO1W7rV?imy90e
zx0oAP%S(0fZf+{WD;qjb7B?X_jVz~7g3I<*DjJ%bpsDWNiYCh<xED4I5a1=zlNEvm
zs993948kq~K{uq(Sn5DdpEOqF84DB+*N(2xVHf=5sz7A*U+Cv(*2~8dv9MbDMAx!c
z3C3D^`V)>vxp){BK<<LJ@bLX;a^X&4lB=KejGf(jl5`qSlvNwv?6HKfk7GlSM_Qk<
zjXnYrMO?w~d{yW~LKHh{*l+zjJVa!)sPy}U^=(ewFhTIa;rWLcoFc8XxlR4MD+7i~
z?1Un$OjRh<UA_JQq;@iTGomx_`^!hNHAMBsC)#i{p>fa60+dxt+1wn?4hKlI;cGO5
z1$(@xRit0dl8M_`zCWK3r|1M^tOqPNjs-{v^rji%0&1Ra-I`8uMbfQDrxWJHp$cz7
z`mF=dOG+yMI}K5i@%(tLuifJ)9!_X85tfOq#vD4A%R;T3Cs_oAm>IqbF@TirD7d%;
z<A9Ehif;Af)X{S}Um%=oAq&mPXV#Y{_xUQIwy-*^IEkyV!IT6%Iuhan<Xt|ImgSQ%
z>(W2-qG@&yPKjLlcM#0}Yl4D`4I=>%^CzMAzka2vF4XM!Xd;R<t_D^APw?NS<gDha
zluSmX{k1R@&rJihw{CZ5VI{-ROfRwwsQ%y@SM(w~+#P*z1pJ7T5vUM4;K4wx*6fs=
z+*D%vH#H&#nl_GSr-$!g&#HY7_k>59#8wG<Dl7MPm3$@#7|qvljB=JMP*cw=!&D14
z{5db;f{JJC@8bOba;gW3T<>%yq-C^Eu0p(N{)}OZnrOnRAq<kdk;A1TYt*^XWEWZU
z)04>B?zS8a^kJwNw4Qi=Bou;UAUM88%1V-!l6?|?2^Yp{7Z3|Cia>RUVQ(GovQcmS
zCs+pSWBkvXA(PyVbV9daoYxbKT`;)P=(}MNi8@ph<`A&{_p0Q{@yFd)N3V`H)Bn7h
zef4Tz((J>M;Y8@adVLq)g~b0#D&yez2-miaalvFV%Xub%u;ofgaL`lVqUfb$=*fS8
zFnP}g?vdANqH?&r5`uHn6Z4nf?Ub>Ij6nm|3CeTO9#_7`h22eTOK$^cHaK|ld~a|2
z>4EtpuWxA-`n77JRXWg3Br`3MQuMnK?i!f&@E=VVDki2H{pny%R$I;QDs3M<y2{?A
z>KEBZof&E=!3Wsfo5MAoQqn-I_3>)7fn9qznBtNwOI&Mdh1*bcwF|Ac#+hlwljn~h
zW?I@hw7NtY#)vK1Jy+RxdMsN_73>1*3x6HYz+jBS+RQluZ)MkYxZhM#b957?Zi+og
zZYXg<(z{x>qAK5*#bpyh4iTK{<E=3=|1ov)T+G<U9#d?eBF$zetHo#}K4?D5Ep-v%
zI`upqP)Vw`gxVA29w{~W&-;HItpDlW`af>GMg}mPH|u8Gurw1n9CTcEzR)m3v*XhN
znc|Mo{pRLq_7mzuOg^xpB$9IPK89g}TnaKjn3zC`WvAqs8=7S5DRl*1pUv2FG~yH=
zROwFOsQUrry~cS`qy!PwM~7y#t*?(K>k>+#TJ<Gt(Jy;n62f0n!8tsl^N%ao=;x>W
znvPYt26+Vs^eHHF*p>P<K4XJp+y`=!-eGa%&vA8VhwC52f5skg^Fw?Mcz?a|tBrf>
z)5CiN{)2D*a+J1gAuoni#ULMVegE=znc6G2ak650fWZx6Xtf%?z>O4Q%~rcIo9&6h
zSb>WPh8=@j+}SXrTMQ+I2p(t>&!>Br<HH|EVvd_zE%l5IrpP1gtn5>!Y<1pIn-!~k
zr5mfM!-U&)ko{~nIUJ!{KQ6$)DC!aHeHq#!8rbW%Q-Qw<q=1OaIz1he=?E#WB{6hT
z3-{6TRE*%HDEcx-e9B;}*Y>I{2Fs74<IXrmg?^43_r)WWUzA8E#K6TEF-=4h)j7ih
zy!ey50vIuX^DjoI$YZEonDmdQ3s$tIMql;?iCDLg{FT1_5;=s{aHW&h=pwq){hBjd
z^ga!SM)-eUf}ENoXQ*g%dNF>aRF&K>4jil+bHV>AFyu6iZEfOSqPb0m_>u*C2qYUx
zT?NmDQ25S4+w~<dT~$T`vF#w8JbsMvfliq1!e}7Ru)8t~)gfO@xUdoHZYVNA__CP8
zcPP=)7FDa>?jj<BdS#EXZLlI&JJDP2pmKya&;K{AZ9*n>fu)sQtm;~1aYeJbquB5l
za9{jRd08o)3H+P0_sL$0bcD}o?^jd_+A(#IYg)1Ub#<$lHkI9!!h4O&t-q(D;6|BH
z+U*sv(O{h5Ad<34SVL>y?R*2;eei1UtJ{A$D?ZgWKhmCQ=>d#L<nH1=yp{EmNH+An
z-^cjK@RUjwMSFjP*^_C=aMF>#(B!ZjlU9=Cw$%OJgsG<DOR(KFs6{>`$Oi>^#l3I!
z9x)k?jwmWF^hAkb&{TaW|1o!ST}MQ@#PXFv;8W>Qnf88NDv&`qqBK4-UDns3t?;rc
zG~xj+wkmZT|5l%_ug?c>XGsCNP4&*_;oOuY)+%ajz91vY{~%q=@$MZpjE1b9kR2{~
zjea-!fBZ8C8qNQrDe9jf3IOEmv)zFA9f;46mW_pnmmN$uv?v*-*87V+)SS|Uk<sm9
zj_bpqRozWwxVrv|-j|Sh-hFbz>gEyUhK5wbru-OZ+$XbY)ow(*I_-gYWiz2}^&HX0
z^>t)G9u7|j(EZleaX%``vc4N0t&45=?Ra7qz|zs4l7AAAzhtz>)wyoxVI3I&TCRP>
z4Njw0%!tg$x=Xu>dmTx;2z@7$57hsGv=g45UO)O9!xUL0ogoFPlpTFhirlsR!TK=_
z`qy9G?)|X!@bT(j&S=<62l$UT423hSz`UJbOvg&^1k0}KlG0@VKCZ_R=;!VaU_7kJ
z@#0l$4qJs2yUU-myK5U?-EJFhs7FMK0pSGDJDy1aGU9NCF>%QvB-urIj1o=MYYx`|
zylSvgP{Kp6*yi2u_x0j??w(lCH+L#^{86gtXvBNl*p3U!>*AUc)O10r<zPu`-)*|&
z{7=;;Zr?R0ik+g)9V1_;ZTZTF^J>!vSgDSq_gg1O2<($1mr5?KrPmB<FL)NeGbN+}
zv%YmJerOvWwl1V~$e5K2TzTuUB;Tl2YbqWM?!oyvYDS~@(*&M;+%%@gTWOUhTgAjU
zW}kcwR2z;)$J}mAzvIoS<en&@wy^=tVqKg}aS0$youG->zZC}BLaD_LEh908!^THc
zJhdo|T>foJUc36eNE=i7ER<_8nq`L@{nUeVH$+lXo&W>5Bq!~nHIyW7%ViHd1JSBI
zFxTYc#X@Eg+%!oku4R)Ok{HzhA^MxIjk;|11M^&&M7q5|2sL2qyYQ;QsYGWv9Ez;|
zIzzmJ27-7Au9V=aTm^GaHYX>?APTd{(<bX#|Gqg7FQ&+6Lzy@n#5g?Rxins0jVy1&
zl$g%SvXN^pQ!9W|1UGBQaN<E6M6pYoq=F1vvmhD4V3^NCEryi}6#`2wv9gyu4TpUB
zUR@fpQckfC#xgtUclD&JFnUW1EXv`JZTjq3yc<R;nNEfBeOD-@$*AE&_@!biPedy=
z#^U}1!nDj7@3ae66C5&U0X9-N20m*(#>iIHLt=-JWv^y`_iFkb@_uH2_ZKn)BL-&p
z7&%vFrq;94x;4x|Fi;3J;@V%Sy{4A~Z^rUA?VaiTXSno-c}+@(a(To3d!7ts=MsHh
zxC<2TNK&mvu+C0Win&?V>aS6_3tw~h$SvEViu1N&nf4v*q6z%=y<6{ZQHZ@CAp}HG
zcg*aDQ{;)-ky=Y7wWF@GnK7f;hY=n8kx8J4j~4FH!@7@k7o^R)e|cwo=lz|dJAGXF
zuB6BK$Lx-VKM+>=?)7(mj2GDHf2S`0Lpa=e{mcHQL!pE4g;)2!h83${%<x4`=eRk1
z(mNTRo(okPR9lI*?rn_T7Fr-LrAU)zNNYhpo5%Y+^NPBh2ta-&XzY`t{0Y(W7z#t$
z-(}11(DG<_Jh(WWZ?14*2};#i>WkI_ZI?J(Z9q)eF_i{c-=u*OMT#sz6K)^TL)mm&
z3;prRc1a6g`a`J391XeUJr;L@XXXOx^Ccoui1MKqICa45&ru^&26&GFggBjYb;J2<
zm@NAGlm*0%y!ABDthYv83#Y@RHYSO|W$fZT1x2hUR8fG3ksOc@a`4X26;5Zp!7<7X
z$;u5#!tWMr*YD7^cyWXbxwj0VbcvbQwwaV-W0stic_$(tlc4Xm6m3S0pm$&{jdu`S
z<^f%>9^LD^!*u}){c!>~oHa8h7PtrzuvmX}kHYMvhnql~`WmOZXcykfDJ_bmYBIP%
zUNi$`r%8{5@!rh%1Tr$zjG48h0VvMIRnw{jDqXZi9yH_zF{FA6{tzRKXoW4OH!ABy
zfttnyvI^Ej9N6mmaSSV`e0g5Mfk-s7gay_q^vgIe2SuQlW{5j8<$f6Y2B6RMzP!IG
zCJLmb8BMrFs0^CJDE#Bm@csIK;*VDwKi~cid3NttZ)*gd_)Nx(_c8QL2GxI-@Uz?4
z>(h4nupy*hbHfX_*WkKY^03Vn{0&n+n!JDh^}WBWil&g-iz7Y_(e&%X8}C+eWew*p
zSX4|r{kjr30aj!mcG!z8I9mUne&_|5`dTryzyoZE=x)&u>!6QB;pLjjVm!H%5D0HN
z^0GE920Xb!yT_po`~;L4Y~@GYfVY)4p-v+2?&N*x%;@YzP^WLXtKJ8vf@&F8p;gcb
zTJ8-0+R)Te!H`eiKp%gUA{vEjVKJ#JF-G?+3UbIZQl2iMql&4vr0|!tumTo#1sPS#
zZIIK#eN*x-bFOp(`EyY?#YmF^<lZkb;%<O5S!NgEAE5mcfK2Ml8_u?lh;^~ek*|QL
zo@?=)0ug`@@L8-prSiWJDd{8Vd`Q=R%X1=Y2-LCMTJHl)`st9zQE-s%yW63juP9Lq
z1$}am%myrq`llhoCRV?OO4=u%`Oql<Aal8YDhKLRo<DCSFEHRn(cQ5Nifw9cL=Ql!
zcM9x$(FSGzEH_o|A+Q7;5PfxKM6|4;qd69!%(Y~T5ayCi|J{FrCU0-vg=9+zfbN99
zf4F$_cyfl|&un-2cKEXslzKdvF}Jq=$GdR6+kd~iE&2g_`%VQcmWRb<A3QS_=aa*U
z)?d;!7XA}_dvft+JvE~$y-Fu6D8aOwe*y)%%O3TL(yy;y>)Ahj_bdF`KyMcJ$Q3vG
zGk8!isWe0=9~(#Vg9gI*eLTthy?R6*EIKRBRADCA6_Q=&^nutK)|E1=7LtiUAh<Lz
z{rXJR8A>XZ=c%|%W)V?hsYc6HSELVAQ|=%Q`#P!d%a|xF98%O%CX~}RE+P^%i6HT}
z%pM-hH*bCU<q2%5FTWg&aoY&4V<4&)Wb0#T#z!@2LDB_UV55Q+eU%%Hd~}iJag)49
z)CPB~=`>V>WjMHrmR5hrb&SI$Y_cdz3Fzwq=T<&mt{s_eNNa2}<!&Tow3=hi=-O-{
zukdKLSPP6=d^|S{A@vumuaCxurx!=V90LC&aA~if2Clt2&E0cw#As~+R^@ZLVL;I(
zBk|Wy0*rWs*wx3-P~{slYVH*IZEh6+g<4sAS~u(pC|0LKT+b(56@FZG<MOi89fmX{
zaeRIPkwsq5(me4BHuJS2q$yXuuKH(swWa?O1r8;w5oY<brjQ<>@X5*O82OFX>z#1D
zs(&V;!GB;_B-k+&xt2!}X2aE`M-oTyp`0^uY0}iaP<rcQKBMY`h!0vWdrcQX-6isE
zlF(|9QLoT%^xe+#zyvyv5-v-wp5x&_=5nAHh$_%Y3SdoTYQ0&-Mh>3(NCF$pkgNX&
z9(LsUHw?{v<RKs%;dPgZYjCi8pR*qA@q$7`BrTgyKlOP2BRR-k9nX2hROjlM)bN8_
z3UI^AtLhQ&Xb@?+Q~%dFBh)-%v@6=vlXNJhns<E^N?mt)XXEd1WoyehqsG1AKzHVw
zez*n-Mx7NDD=u7l0H^}!H7f(}Ty=b?1`GCIDjnRkT!cf}0VFHCTaAER6V^BIm|k3J
zb@-?%wTPWB8R_HzavBL@J3}+Y_E66uU+s;y+@Cs6$=f4-`N&x*6z<2{yIYT5Jm3A-
zgT1Ythr18)C!UfE34`;^#5kDjqxD~r7rHyCm6eNgC!6p6x4hGLo#$fEa|Mu`e8~|s
z@b+MFL(Ts4rEoIWGWDA!5tMHv2Hvbu^QY6%8;z@_dKL!gm#o>l^)rNr0>~05<K#l`
zPW0k82M%sf|NZSkMY|YS`SkTyvdF~Yf~7)?v8-^$zl?;F7^A!rqmm?fqeYASz+$~G
zu0j{Z;9z=qg5u0v5m5B@Ppnko=<QEI2Xr5#-GnB`+9E&Wav+{RNL#OV4Bdu-9`*=f
zf3z0Ixzqdgy?^|BNxV9iN+WOuq!F--^;>wo(s?-7l=KaE<X=|a{s}cjc$ZjM0bU&2
z)7+!9{#227E!kAES+Wl=^7F&n7SZwlXf+yj*i?FUJgI0~NzUBVdDWt!W~Q55XD4s3
zS87Hi1}H>%>XK%Elc)ZYW`CO_1k3)vzQn|T7gl-6{1LKMc&~r)!YUxKU+kP!`^J`<
zDsc0`Qi}AhZebWWpR|pe^+A4Vcb+L67jKaLm17C8CX3v|Wi$>lv*Z{chojAU@>X>^
zQ%A0@qyiY@0w~C1cjRTO-MOagHVe{rTlMyj^AfjH1^vJ4I9Wd16c6xhehEzmO(8vG
z_MgMwTSMZPCKZRfp+<Ch=ol>)(iL71BZlbTkf?-E%T2fnTyHY-c=}5J;3;aVoU<pW
zb1+2FzQRQJj~-u~;Sy(jG96s%-yIF>P0`WJ3M0I-|NicR*BW#UUNzo9B7dXp^~;qM
z>y*z043{%x-SDKvBRfKwpXyrnF3*l9<I7j_evC}!SGh$l?f7c@c`6>c#CN$1)lrk0
zx&xlkqNuWccpR>Bf(rWx_n8B$`F%2qU}hjJhbx8mUclhq`W<ZVfBo_4_OpM6d2s*U
zZ|j#oZtw2GD*v|kHQw=G?J+s>8*OW}(*aQBAuI1fXOfgkg9qXQKfR?Wm+(-rLZg%p
z;nvphVBX~T#AJ&`#U+)&8zMvDi(>#L)nd07T4UdLmOs3TQ@A3#(zj%Hvf6Z&IByHr
zGbcRBV~f?Ga5{9KkC}^wio78)fJDQE{lrjyUYRiRcDD#!F9wTNw}~F16rZ)HjxExH
z^TG^km^LaijJYJs7ZtTeE=@<xT+}Tc;f}DG+zQ)6sSRGIjx5arak|2W=+0C3#nb$+
zu3)H%Al<%@u4w3erPo#?Q~vS{HKN`jSN?$<rUFFa5?ZxG1$*dvK77k-HfF=q<IT;Q
z&S63$Cuj0ucw|jSLuRyTzHR#_cj~TmS8(9fGbshaJt{Tw&=ch85T$SWkDmXy^L%e>
z_dr`8>^yw&!@=$rp3#mMcYXD-I<NF_ME5$hyW}#;2M}tY?k7;aUan{31Rnt*QnehT
z;<CcN{NyS5VwcBR!VOe7@r>;$Ki8T`nac`;QL~pE<ErZd6k*E21e&cDbKY33_hEgB
z`)wutKirJLXH=#jMjoIXd&jOSw_3~1SSS>d>a%m@quCQnJp)M!MwI5-DID>l#tsth
zD0g8IsoDP%>LIa7a^_Xe0|!O__jY8Swvv>CNmXaVlr1YJV&dQJI|j!@41kjei*#CJ
zTGQaoY;t-rA94d?q0&GX>Y<(3<!JUWw1>AU{L-_B@rmx`!w*MN48Gl2Z37}LWX1|k
z!`a+t(j={8s8<q<vR38znNMOfNw*kZBXsiXPVd%TmXbF}bwL}t3Ay89U=t>~E!H0x
zJ6$Ul5I~)4_5^(<+-8<8ys0Ql_aQoJa9f3R>;93e0oqp>kM`IiLDyIaa$`W>l4VJu
zMWs&pDq!$MamwdP5s|n}v3o51?#D!z5v=_*LzJUbje%|g%2S>57aC73=$cGa{?8&D
ztpM%Xsi+eNdSO|(rq){NQfRvVpo)>ZN<@*?ikY;Xznp3HtBS$`#E{L-5?y*s2n0Zl
zEi<Q8RI`SNhRUSVZM8wdo>##vF2+c<isI1DHc9GUpxLpQ&vOHX=*OMBlAe+lE;pJv
zf3(~K@>Ed{u97u!PY8pAa+ig3OF35l%iO-W%*7Thi)*JZtftqKRMZDC`G~m|y|gxJ
zo=}jLJE9^u^2v~;I)K`WfHqRYwf-Uw7770w&2c>K!(cjoz?m-Ew&6OBDT=?sbmG1B
z<=9clm&`%a_{C^Z-B&lT^9c{MYDX={G7Z7H>)UKAXp*qyc0HB9rHFNDVo9_W!?L)a
zZZ5N%-CkaOt5$aT)=cj*2lS5J^(P?RvU>jB1c79c5F81MUOf`uK-$p3Ly+_qO;bP<
zYmEE*@KJ&adJ&?x1=+mW+@=gLbME#ceW%^JxZ>W)5k4`#?1O!#!y^;2kD?69WUqZa
z#3FA2O%VU5nF%{6HekjTVzdm5Po}VVJvxXyu{k`8tJ4Wo&!3PQ3u3V5q@^8rP)9#w
z`O5wJ=O;W|)t?<sN9S~;^*?<0Kr15kCz`J6un6%__1X@3$VQbLvk3i@sgiIAe)=i-
zTVswQr^B}CyuYl!v-NN{S-|Xo+cMk7*tW>5m4OI-XUcq_Q#Q(Zk{(pbIq86{<!gs?
zV_6m#=RJlRaI{<Z49X=mX+0u~DFam>ycvz<lHm6&72)8&EgQ?aN1ef>;z^(s{#*?A
z1}X?LlKpB(i-X$2UhUvK7K+dfd;=LQJY34cWI`jHdpQpFA<p+&CNugk(WIgpq>Xt4
zYxSr7ySAS;em=uBH#I`*8jNfG?eTjQXFcjggl_b<=X$vf97l833ksde*-pD%NX@NB
zxU2D@lw%|SjoH7s7@Z!4H_fT)PQXSc<jGTfY3G+h7D|$#3pA~lo6z3T8KK^3=arpd
z2Dw&ca^rDGyLv^eqm$|6gYd~$oqHqcP5GpwjZ^@c4j5>N$er%(qGI8MInq)vUBSSa
zW5G_=c^V>pegtDgJw()SlQfz9maE`~OaGiRq~rwNtQp|T%URXS6Gsy!g$IHfunLI6
zArj1xZzvFzqBQ)AFiE$gIsS|^Q?G2e-=`tie=T^{d(tGmI}vhPs0_U?<LvkOqyKur
zR})N9`=3v&cN}sTI<&|9Nf}U)7gmA^an0-k`M2)~2_r=TVJGAkeA?uy802F&Vcc{$
zLC(VJdac6z1pL+bEzeZXk(>%A9-Vf^m(u>s#N^um7hvHo$#gs7*3a<1&TtCbQcUL)
zD&E3$c=C${cgDP^j{s6L4g@rkY*<oKfQ4+J;VFzU&;%I=3x2>80qh?@uQ{+sR<WOi
zV3nNd2nnngNhFEdWLTj#{w34~hXBlpv2YqZbHYM*KprJ&enXN_EyM0PBzpI~-D_En
z=pgA!ESQq_fI@-ldv<J@?^ejAzwu@;*Kl632HsUFlj8-Yay}>5s(!_9<RFdQ3{}m9
zyvIQop;GiH)S0KRJ6-O*aad!L^C?Th$^+1I?2Bl{D?^^3<@_R|MRtOHOJph)WDwZL
z6(4MflotL+N=f{Vc5vEz>K%^^E9o+cV>LyIvlh{nOxXMG#THB|D9|vIFbRaA+yQq0
z2*He9Yaz-G?$r;wkn&XNDFDUZUj>!^j>blCWgm7j4#c5s6=&i5Sfp^;w$|w$(ss`V
zK{dAL`~CM?nA_>Qe}Cg1OUb0bO7W%a8|0at9-#;iw}*AZyE~;?E~;H)Dy%4io0qMf
zC}h^qw$++K?{?^5j17maXYKM#Tbib^Z0`6>@d#cNCM9E`BFcI+xvXR188cMUV0%TF
z5XYW`DV}2f_wTWAi>{RPPh}hbO#?yu1O2Ij<+J99r1#{`Mq%>>&}3;Pw7CB<@OB>f
z8NqDOO}PCmVE+2!!K^o}A}1Y3-U8Z_QLS$x^>Hb0f!pEqU#N!@UD9Z+KNf|FG^k(g
z_f-clQhSE$_sTJT27^A~cbnky)=G0MMH`Wd6uY`7=x8FTk&5(*bmwfw=>@_r7)%Xj
z*nbIed(NxJAu?yOoxP|&Z$h?xQ!@qU18&*sOoSyjw31@Z|8tcEz!2^2n02Ab#bt?%
z4G)B6OoynfI~^W97a)eWI69#<W<bwJ!pkHrC<3ab$@+uIvd!SF1X59aDD#oU!?SPu
zNN;KoxgHikUz`Zt{sihE4(1T8zC5m$TXQtNP>a*P7UoE_X9mfpSwATz)y6{wu8I?W
z$$t9=JLMnxE>XW#WtP={8&<E)_WOJx+ANY4+TIUD*X1y#@)$kr%l*cx@;Hsyv;98x
zByPolTs9r}pk`Wr(nRf|=V}^Z_pJ2PI}?iRbf^HGTwZO5-GbL+0~96&eg|PD=DqGJ
zEZiK<(2rsbP8TDBLis@q3JO)k1f)^)_Mt<|K`&I7o9bK%)DFEO6Sj2in1vkT=P$(1
zz|ZY1k4PBZaG2LD&S(qNFSz>9UJWN{#Xq&p69{?P%8Ny36ix|@4&Agiyh#()zuBY$
zGsZ2Ud~i0L!fv&v`khRx5Wwy5<^ECt^DmBu1vlWx<r;kWXQBTGLQxBoo!F*epU=p2
zLZ7BfIC2D>ijaG-Nl_A0Y|krkEv?u$vCDBXdQ0kPEM@`P0Xv^Ey5)|~=i=oJ*XDT)
zst9#?9o4QYCl)q~q@;;9mYYx(84~v!vsNZWmSWCKvHj_8lZh$3poxL+q=yO;JQVz;
z$GV8V*n!g6_A1Fm{x5ld7s<#<NvyP&KotP$Oms>7p^xzgXN3O*h<qaZ5Kf_CJ*ujK
zkC4MG#Xg)bD5yzSX)^{cuz-B@3xYSa7uYLr;h);(2?(~EYb03y*K>_N$y0@uY|<L8
zd~FMEkZfb+L4*eSXyqDL?*GPU8Ebh*5e*&OAhDqZ_=F?y%3;(omZV))V+>sKADD=1
zat%6)h_HV01~lc3@o;|kXnq8@H~Ltov3WarWvCw|-NqaaiUqb-?Fs%L@;}pVbkXQ(
zzl}%aW#sSSR+*08AnOBHazPgp&z-Z6tJ}k;rR?JW87^s3hCaJ%G0NnQJslp4<uiJF
zGAFk)OT@BM^evBsC)seSN$4oLbAk{3wD>P{?rS$)R{KiAr^vD#v4ByPh^+a-!zl>=
z5X_DLJanhea`tTZUFA8;dllKyp{qLPb~N$st_<Tsx-ew|aE44>>drb`gf)~zT4fp7
zUr+hu33i6EqZ~tKm!JZ7fLCcmeZN;t1iUsiK14Uwjx8~TUquk6JCY$GbOH_vWEbK5
z{T$JPGb(u;xY6SL*Qic28i$Bq{#p(s?)>`E=?G5Yz4PH=Yb)4lV^qG;R;?{&xU=mM
z7}NLAo7YwaT5VI2f~FVe<#6yuHmvL`0ZiP1?7+q0B$I+&SUonvKY8k>x(wxr8(x!P
z+Me=5&(dD{_^Nkbwyn2Fhec`<D=@U94#t%CoivsbWtgb2L6n)C!+l?(Pc^~v87+C(
z_{}REZF*!d;>)*9M?q$~l1SjZIR#UY5V+%Od^~!KhPpD&2gKsLRuhuPheJ3>itQ}g
zQSrS^AK2k2+HLGgz*wyj!#Y*tW-L%DZVHpp^>f{e8D<6y%{0Md{VfOUI|wCArI<cF
z4!*{~Q^V5)FI$OH0oYWH_!~WpXG;qFD(k-VmnlR#=fbVQ!oFVm_9{9QHs??*?k?{;
zUV2B!XFy8J(FB?&vkKriJA5aJPK<Y*dgWTbp&2Pd)9L64o_#oX<){Jpoo+9oPC~F*
zl?fAnbnRkU?vktb$nu>jAZv`W+*{_g_E!Lvvq;%pN$zOiq-AZ(9Xzr;M{MA0=f+TY
zy7XkKgB=P1(h%$(j*n(NJ9CuZfb-yA%VaG)uEAy7d0aZ|>z1qvZ3Za%%OaOT3AW6j
z;IOn7uf5130Z8{`rBZx)*%eVrw#TC%P#XNRoN%hEic~A8i>+|YyMw7=5BtdesiuTC
z8KDbNo$>7TAkbG$^)WB$zpJl+c3GzfJK&S5uK@BaC+KxQRK{9{@fV$0{fO?SEBG$P
z)4{a&^Ww@VwBodc3RTCQvg$&vw89N(l~(Se()3+Urw4ER;R&k6_ttlN7hio?JdpGN
z;-Q*wMKxMm10dKe5)kBpQ>26FMoXiBCyRn58^({N_4Ag}!~yU&s8yE71E!uhz~&}I
zNy_iRvR5J7BzHR0=sOx>r3hfnkVAya0E|oC>7k4c4gt!uoga33#G<fcUgC`El<BCK
zAb10X)^UMwoCh*&@lX<O0}&bQ7tqcPO_4L=;2AO^z83}96gnzXSFv8>TYzYW_~vFV
ztAdt-o)E#$Us1sfgLS5Oh3sMW+}lMmq~QS3C$2y?hib+!WTtxJEX+?dy)Au1wYZ*>
zeN;`T8D5N;(;No5(_u282N|0-2*@%!e0)xbBCYc8OAbV;4PcSyNw(4e#74fxggog@
z`q3F+4h0OfSd2{WQ>C+Mol8|O+j~Ez_X_`^@U7$_wRiO%)V>4}genH{X^R+ywx6Fu
ze+eQ`82Tf`QUMK^QnV9Q`C_NFR1BK<Rm!yK<`~RYQ(pE9+hQ4af|_rlTB;G53=xF{
zDKr^r*D=p%@T9)7QNzB(4SDcxc$rw_?EQFM;Is~_%mKx0A@-slNBgt|q-$>`lT)Op
z<PUHnvb9%B3U}v3<rHb&T^kMB+QA|xRn#6x71iO+!SOAOjRd+|h{C|3FrFW;;XKe?
z90^ja$;yu5xK(XcH(0V)stoQMwfGj&in_Z6YmJq<Brub4k(F^Jr+5LuwLu6Wasg)!
z>y0C)@pIlEeSFFbf4}YBx~1g2SeYQ@;9d>Ory(8M@eSvdlHn)Sq;Vs~+N&d66pb4-
z@Za0GCpx#shtf!DOj>V9hD3#oDI5=8jT)|^`y2lYj&=O;;9E;B)Cq4Owv36WMzf9!
z)Nq<`ddYhX$<&iWqA;av3Z_gd+;J_GsuxCy0G5HTBHP6T`!Q|-(VLc}Ei=SbyUlPg
z<u_dXO*HcGg<OGaK%`QHgx6EaA5ydeO|EEK*9Ct6*!#QvKmJSab?>Wq1^8{Gs2ExF
zHqD!bxx{~22&9C@1bfDFUP@W@thfs2Sj8Ds5Ncoy_Dehh7m!-~jiZ0IleG@4cIB=W
zEJ*)66mJ_?_$ogX5A7pX3k~AP{eU%3#YenTDfud`hqQo}X&W5V=wz*-&?<#J3J=K5
zWUp#{#txYV6|8QtwvrMlk(qpYB;Fz1?s???2b>MX$rB{(L@j!SqjIz0Ukg5p%kGwu
zxN?ygQK1BD#h-x^gLqB*psZLJL!?+RM<UrPxWtLeoSF9)Gh-7f42T-1Q53JT(lvyX
ztBW1UrHqhmR@TJ*bWZL7ixWIJ(s*tfL}(W04!r993Ib9j6sOx7RiJ;a%l{+~-R1;9
zTUxq}j=9(xD?#pZHy$OX+%bGKZwW*lqjZ26OD#tQ=<oAFJUQozyE8k7RZuLvN3iTV
z-6DvigE(*VHZQbn$NK`i*1F=0UD4I*t%JPbBX)^vKGIc#Uqako`>sLM04aMEl8kU!
zLD3UYV{Ym~!kfKy@E5%&u(<uNokletuSom9>fXQVB0at0FQoZ(@?)^iN7r`DlS38~
zd*ko^iAou+wWcn{oPk|GSKBQ2T{fOia#QkACVI*D??>WEX`JpTKJTyIZ;r@ai(aqO
zL7W8?@8F>Goh~Y>R$%i2Y`EM2+Y@YjaGEEfqf#WNDPV_+^jdtggpY|&OD*Xt?SAD3
zU1}!1(*YTs34}m!h(Us>_rvAUo8kP!5U!aL@p7%DK*26c>m5O+;uxNr9aF~;xhHQi
zf#VF;LY9%S=39#@(JEt2QCJLW!6k+tPUrNBZV-FdgLwfC#FIQqcAfhdI``xvQxEGi
z4Z`bfQIlrXL+IY_`MGxRMYJ__x4c+7>d>y>T`$0-$9Bzww``E<qvA`Ltu4^2W95UV
z;<rT@t)V0X+L`cHPf*?&XMuPG+;0Pde4d@-3;<GG!b3HIm=l4WUwfQDEk9^SYu;ms
zJ=z%5Z_{ufl)4kJZSRC1m&)g&4>9_#O_`B+oqQPIA8`Wyx9rK58KjPyQ&{*Z=CCJ5
zA|Zs*IO*>&kNl7`$-lbh5;|<oru_W#xj$tat-$+)pfS$eFr#8&tw3$xhFnQzFur+Z
zN|R`S*WUA22VBiOd-XR`oU)9HRj%f?&?^)l_@7aBQ{uu;n0qVL%&=+k55=maY5=Ni
z5B`7l-o2sC<j5EPpHHD-@exi8p2?ft?2@?z1D;`H0}J*{a*V^uNCw4#h$L*2WcIVa
zzh7PY_VgnO+mmGXtk2mDdiqvfU0t`XuEyC<=5X#L2_d5!I)no~=%`Ua|MqyAe4a}X
z2@@HP$UGvaQ4=)(hGHH+<{!yT!$it$d#6+2gB+#s+UN&tNp+V*oI&{0-N(<#E*{GD
zbI!!{ah(LWv`@zhV$WfanGbDPvp84w2@tGN1kBwnHh@}7Sl$vb;HbNL(Ml8%b;qtI
zyreskXm#-gl0M1~+$}PHyPA&jnY$|L{@+6Fv*Zz*<Fgy8oI!Z41}6=CF=lH^hX)V}
z(_0M%)(0n};^i7yqIuc5Ro!lqY)FP4rl$Jaq(Iu}z<V#JWLUMvg2U~|u)1ycXxph7
z_5uSuNsJjfbV1>^Ls;{#m;CVt)I>$|A?RaKY^-N*Aw6HDrj3o^L?W;bpmpK>bUs5V
zMhncAtHGczA^s8^&vzjKH8OW$J7Ocr^Nkow=9BuwJ%$l|K@HVT^z21}^O!{`M`d|P
z%d6E!@JJ&IL(pSJ218~eb?=$uTSpo9-r*0PbyFncPu(c|3qT`s?}B=!m*@#qJ~!gQ
zsyiy+2uFL0Y}{Z`2WfKN=F5Xwvv2%Ihjp_xxGn>&o6k}o<y^siZf;l&UOdJb{By)k
zo;)5S`2F2z{N^Myi#urr3fYeeyt{7cG2I@#x;e9e`S@MpV<l|C-%{P^yujm_%&$O^
zfHW(3%kyQ$2TI(98_woF!`v*XLwy8h=+Z1E46D24E@QaC6?D_i^TQ{)J;i%jcBn2~
zof<K1c13ZhrJlqJb3y<Bk4f<eNh7E=T+8A5kQJKuRBp_DI<A$Rf_)&<;w2Am_@pOg
ze7eyX<iI&5eDQm|)Q{wo;^d7pQV2pZX@|2;yH-~6?Dm?EnbAp1d(v*p!F54E(gC%4
z@N!6GF3jK@+)AaGrh*O;)OSuWvvWyO^DAMP9K+irm}v|ZnqZd-Cgl_i;v^lYz>8Bj
zH@$(ERj(vb1+QvMyIKtdJVOkHry&v{q)>O3n+ag`h>iF|yiLpn%S&%x@<auq^lPaD
z(6SoH7Mn;P2Piwf@CgS7M$SvjbFWv|_qmB51R8m&Bh=G#wNEUPj1`xhJ7L6vNHBX_
zWy~Vm?|~oJfSt*seQGKhW%tDCegMz*{yr`5_Fe-I_YcA)LR8pK#><6K8=Yg7uCFg{
z?I<E@GE6tFJU1dRX1Xkn`#P~?mIq1X^ra@X0`YYZpt4iiAoZ9z^fsutz}2ZVEZG_g
zH*v}sD(s}mEEDc$y9IbvaRO%|?yqn-)p`=paDz}ldj-j~IB>IBos)ZAd_~~EgoybP
zIzx*;-N_I>ON4h)9LE82xvOWs8969o-c~3@ECMkjhVcFM1r;vs#*jeFK%KOaptPMJ
z#^wV4gw^hs@Kkn>`M+A1%5J+l0S<1+BvY!^^KOI~mC}THk(2_-rTUX^67I#iq5+pU
z?g&&A4Kq$0#ZV{eFy*ON6E2@xH!9whWtU06g`cOD3)xjL`Xujj&far?qbZ_zQhY`O
zl&MoV^U@%R*kceu!^MbH_Tg|H0_pk!3GR^~wU0a~(*bo$>R$9v_g=x5fQ@PiOBDGH
zD-^!9{hKM0O~K?igBK23s(QBlcVf{B`nixba~3=PZcZq!=O;^#YLsC{yO7L(-*l*g
zUqy0o=Y#;2jN}d)DtJkQ9uWX+t7xF|Aa5TV%CK(P6`{h)Qp+}`R%`@)_-h<7QcPGD
zsSx|7E64cA9WQ5wOtfP%Bd5yLaTR7-6>^w|Q8Ew|Ty9wRDdN=7eQ2E+j*DPP4A_A9
z*&UlA)a*8BM$MuYRmn%3HDDo2v(r*gdU6!$tdasj|IO-mmeA)e{|P+A65CXGT8oE!
zkBi?$ZNuzBvBY3ua@oT2B^N!36Za4-cshvwnxanW1vadzhxd1Xj;`GQy>26@c6Vxl
zd3)^m@9^3&`A+YO@p{NpGVZLs|M%CTQWXHkD>0PMdL?FUYj#cXabTxWy3dYQO-}0n
zepg@8%M%SI?ml$!UeSUPLa%UD@FH#&(WaVA?m7>p1F!ajMpa54cGvj_^{-VC{U=Z!
z!}WF1u(y#+4p#3fLa*VWJAo%lp6cOGyx6n5_jv#0(dN<4-saOCf%AU=o7(-yx?qUM
zGK%-qY_s4owZZAlR3E5|Z`1wX;dOQ)QJEvY-kCe{*p+G6A()QjVD0%89t`J6xn@vL
z%F{v1;_xI6HfJPZC-K<b3OYB)_h0=H>I3T+UeG%oe-)Ao7SUU{i$KvJdR`th*9}hl
z7~*R;3B$*NB{dJvN?C;i_u3g6rc9}aetpWbxiVwj8CjZ6_3ls5gJG1oTljzrYD<V4
z5|<bl2f3=Ks`QuY+bacKh+l%Q_=NWrn)F$12+a6p6m8B7f>-_3?hVP!&b3;`k95c3
zWB2hpdY2s#uFk}w8C?gOO}Y)=&}H>%sPJhqE~|jRCjTrJBs+>@EPTf?UU6h_E)bO5
zTBKwZr14czk+Yzs&MQ0s;z3)ur|@QYeN8j8a({5POp=R>DvV5wIH?B8DvXstNI`_P
z$uWyMV%D_;G1)D5bcVCL-egKI+i852A)+*{tYb8(k3|ayYsDHRBhm-=Sw4;|&JvE$
zrZ-5XZB|+WZydD%*SyJ)-M;ZfoC6Sb7-Pwqj6sg6@G%>eq0?(f`KAdv(|AVR6`i#|
z{fW+n&;d?}yXytZDzqq6S?kZL<r<V;V<3_~T91l2Z{VQrOi3RCpmc)^g&sGjXSsB1
zl&cOLW3QsD2!7Rlg3~~3$JQgr5*j^y6E2sn0}08_=WHMuLw356LJ>x<uRFo*W5y0I
zBsV<LGn#T&+x^(iW$zX{S)Y|a#(G?bWI_+B#2ucPOgitdUvMYvwZsD;h_QD)L@?{{
z&k_RBS;dhA9wOkIT9XbgHJ{=N4bNPW)*i=cxc<tXCL-A<_sI-rfF+_|$ICekd-qqy
z=!O<wFAihkwov}d{)76dOLw<TWVT+SLImH!A|2(+Y7%WWKVFP`Bon<m^GI0F9l1xM
zEs=RBM*m!BP_Ai2807+W+~DL<as<j?!YLA~v#;0-QU&AAwq+4f_rBp8v4fUdJgseo
ze5l2l3E4;(1wLts$<o%`T-jjZj<XX=;Mm!AA_uK<4^6qYj4cGQ_YT*VdsiKiT9lD|
zWrzgIQ~Ce9dmzOB057-lCglM82x`meXgt2TrrQel|8FL&jUI;f?286DQ*J76@ka>K
zo$jEuUWd1=aJpQu-h`bz)zchb14ueCd)Ila087i3Mucd>(#TnM+@Eiu6^r4i`}blp
z5NC}GXZ9+~e^Yjy@Wr^vEab3_HD(NSHeXzXKPY1?wSA-bjH~eMK)ueUGzFDbw&LPk
z*@L=bh(n`oJLI8p;yK11DjmjiHV3AnmvAK?8d(?TAR;a<#Ks0*7~c8a?$NWO4d*F-
zA!M13lTH^833YlG@NM^R!6o4Bn5^^8xoki@_)U>n^tZdWwZB*C57mO?mTtjVaK!}C
z<xI$bHJ#t@_nS|eVEU_52yv0f!OrTv$^AJXKHYh`fB5@mUr+hm=&5J~c-Ur<p7!>4
z_MSC6+8ZG<1-iwbF=wI*8ykq61J&L>_-?Z=#}$*8^`uABf94@<|6pgY+1*y}syppS
zu8|0xCK8yjsE0e7+s(eXq$CZKA`4*tXlLiQ^?oLU!JB$Nc;=)BVcKk#V@4kz<D3jX
z4?1T+nF=_@{qa>SUxGqvEO>lScub(N$v<@=Ng+8%=Ek8Ss`cU?#zl}b1~un3<)XZQ
zwKw?C=DK&L5xdjT^)*Cq2(gs*>|%xwNaCHsOLiO<?e&%*1gHFgy==J*>^r%j=}QD2
z4WyT#{#q|K39IRSXlL$`Z2||bCC=FLm{uQLnAvXAHaG%Y0by=$Dnk9Ft;7huz?@^H
zp&`Ak<#2M)Sb<6}&1LeLl%Pzoib<E!m!YuP2~h7E-eP{^CVghNAhrk4R$(Wd-a^3~
zUBI|LJ{VmLPj5pAe{r5vZ7?d++*E2E;ynzcmMFTj2x|-*{t}4GYWv4Y0=J@Y%Put(
zpDQrzBL|-Boa69U+dO%Z!4mao|9ECNek+DLl6N$Vk6}W7(pR0B2H<1<kA_#hG0+Yd
z@x?_;s=k@0feM5kK1u>20V)}^-7S7_e%<suIy2G#CJb#mxP!6jK%%CG(BmMNOR|e$
zya|!ixft<6S@sE~dZQz)Ci35Io*CmC&=q|&#Q}|SM8Z|>rPKrLWFf8)0qj91AtHE>
z@HXE;j?(CGZd~l}*^&AA-+=)(ZhhFKSlRzv<Z?%xBU&2sb-p3%P)@jSYk|mYqKAz1
zK}XiyeD~;wzBBSi+Lgf}t@TBTm6ogr3sIUTorwiia8|@6<fCdOrIXsKIFL%AN$(K3
zNZR)lf*8Y#l8Z0BzCQZXy8wI7gi}o{<xD>TP4bt>7SJt`539<zuOmj)4<rc(sR0T;
zh-?sBHqO@mYFimQV=NJyj#F@4kc_ZkP$v>j@z)5k>PpTT7h=%0vWq@h(}RxjSen1W
zY=b<9Zl{b7Pd7DLAH1qw-jt&SO53Ni7)pI=Hmh<55%LHVpPPyRmc%xT-~u=ON5OvF
z)pHR&3-+H5)dg)wmK;2X2|Wl_jn8mC;=wwa@|3X4vu*^{%DI6(7Ikv8bNKzvp}abI
zj%qI@Q9@COyIs?Byt5{pi5@ZUkDrwlc2@9!CSndTjBQ)r$Ko~Kl7vKj$pK2<Y8Q3a
z5ZOhi0fF&5<l2P}6S{-pVwZlb*xMk+aCM~)|7X{DKMs+wI3H!Au0Q-0hYFZGDj#ef
zZa&*TM4T9c23YA&H;|P`rX<iK2zzy<R#_5CG{+KzG(Hmt+Fv;;CO^1(t6oLm5YtD9
zWcp>j`xRVEjUHux@dSnsHV&>JgCm~NC!ax-uf|VN-A#k*o5^{)(WJ=u^H&{YmWdf6
zW8cgX2^T$b=<9pGMlk-AW>N-MF&5A3;?)vwl?gGY2&VLQSa;qd)jxcc2AnqpTNzMj
z0#5o1c~)goNc_93b^>L2d_vlf<Ar88ary$sO_*4``s8wCqU?GwcA4jcD#f|9$+D`s
zo2C0TtWtlkSs)ZrRwD_chpsdmd8XBDY+#2y+CO4w$;w2;AKPJKel5mZKaght#AM?F
z$8i#)3Vj4CE><wZN%uyx+t1PS=XOizH@-7FdRd66y)tq#%@f$-;VUi|G2oKtSA}90
z4(5!kyIcED4=~NclSjLIn}@&W&A#=@9RCe?AW3O<4AAWRA+o=SzF|vc>RC+bhB|{&
zecRku6G_IBt8rnSz7$8o*Sf@fffmQCeF@*E#~i-}XLb$>J6+D6qVqvKy9UpCH%km<
zr0t}ZtUqjY8i2*3|Ht#)ooC!{F}aySrD{FWj0Cs$YF8ZS9X<3D_p(xBKm<@MRs2|x
zP#BmP0zvSeD@FFI;V5Gbi6$9oa50p=>y58)itzRCM>jak!$S3dKfk<-L$V%nvR$o-
z+YwtAk6w<4*Hhs7%ZJ{QR|TBNXJd<8E^K_8hwG|H(hznJa%e&|R)o4TnU*G-$G1JB
zzmm_p`{@T>zZ9)kKGIQv%86=OVJFxpI)3Cs%1Oj7Yu)15ixYb=#8HCl6dN0wUF>o&
zJs<U38@IIV{JirElA5f37AUe3fSJMNx?lQ2ZAq2^$e_?nFKvrg^JY4ttw^!(0LQRb
z`cMP*h3p!#?POD+ovuel1vB;ukBI#_PM0{2pc2DXUL9xgRFFuhyn{Fk|MC;hz_KVt
zTGk8DNisjOG)Vs);w>d5t^n5`^cRW2DVOOdgMjm-ih+-SyhZTF%S+2jq3w(iNkT5+
z<=|<dutJ_S`f1!UWK9dEmCJV5o$vY;AHW$AoNP8u2*C^)OPxUr*=1s9Z7vu6))R!1
z8B=oUNlkOyV@cC#6e0@^x&x$5yvDPVj#8o7M8Hzr7I{OV=#zmUTeb0d)3zIu0+Ptc
zEzpQWo8T)=fypD{DkdF&^Yjaqf3DRm)*YE{XvgrK(PT2j-j$0PkLcR6B;^X3s|A7&
zGbv4D_sStFbhRszUQ{QmRpbddoZa*;C<NJnNXxYK<5#(6?kfP=(Y$W4xzIYxC00*>
zjLy1^jXtz(68At$wxlBO`1$a0odtq$zwIx7XazwG0UOfQqS&J&{MSo<GnJxQ*|IBT
zToE}e{%6<6uFtRUtcvBm{j=x*|Ep9ncUxeFpFpY7m2);$KV={hCadlH{CadPoLwSS
z+##m_6^j{~UFE2_RK01yXThjeA&r-ooBW_58tG(NS@fx~B_w&#3WPT5qm^rbF>;Oj
z1c7UORpOQS!I?FW)GOg^>xnL=)VG5DHF}3A`^WHRUC|%`G!m>Q1q{kRc@3Y@)mO7@
z30!tMf!?~>EgGqI1Wix^#bNx(qvz=;RwkCA6fQPSqnYbrNSb>4WOzB0Ln)uiC2sbN
zZ%;1xeX;)27SgqQZVS;Atf{zEh!||*6d$Wtz;_)gz$|nop3n-h*+MR=eMmjip2e*+
zpxQ!mGvU#0+pAoT3MH6i)N6ti1`T~00lKk)Bm7LZtL}kML8r|@Ao&IzV*x2`1I*|x
zh6sjA8ym^2qn{?6Xg1jag85tBC4TR(Toy{x;nj(uT-GR2$xT~AMr~dx>^@lPLgv%P
z=bsRPYm6*d^Dt<9G*eA12j^kZsgRb&-$BEDeWAA`J)liLfEOS1m<9(@*b|pP@Cmlt
zG}q=JD^nym!QCFAwJ?-SYD?1JIN^L2Yl;Wn67t~6KcNFKQl0#-G6-(K`xHVq3F1JT
zAp?TYeKG=6ENcsASo|RgS%NOATKF-36Wy|E;(Woq{<AZ9vqYU<m4G%X7ZQC6#Zrk8
z?k;_cks1t(9Gg&ya6=m;hQ~8Hy(v}E97Eeu2-E$sF-+6v9%G$#SD=U9>FMBliYP;|
z;%qYbj>mW9OVh3s5||*gke+}%6%i{FEJqNWMi&D{ANBfwyqQcpx5!@B;gWV_O)>Up
z+y{Ucx3G!__&S|lPmr_<BEa?0_0jn3VSjY`u!oE1xTidMsCMOK{j&d0O5(E12Hf^L
zC(r4C+TJ-h+}YZEwzCcLQ27mBMUMg3Kn@;{D{Hc9b(5vfIElAS9S4APmM1|0q}w|&
zF*Lue7`X<V;|mX9MjDz=Q0d9f{}L3K#6JK*rEBuZ2`VK}J)$gVk;jw8r`_~GvM96D
zNqkLvh5~0tlSTDVfQT3}auL~|eH;z{FE{)L;)b#qKPlBFY%t@kc7kCK2{dK2-^UDx
zo)xip`ii=#C_xifg7B>aMr!Hm_=}?X7gPkS;z+J(!o~RN#pia&DStv@fNgu0JuP*b
z$Eg=wu@GF|jAP^<zX*Myqu{fGpO>2GE7?7|f3jwou66oK6fHx>+a45!_sr$WLBq4R
zu0l2=ZxFTN$8C9}g&*|+5}<W79!_ro<L9E-tIpvyCNFezQ(Jh6Q(~+A^2JLu2*;5E
zWlPKjfH=B&MUnjqdZ5r({2d~_kX$)bA{fz+6u*m94sBJ7La?Ctltj!DNTyW7nK$%K
zd2!p8*w@MmxcH`Awc*HA=r}rYrQLGrLSDsW@w7P5kRtN#{j&qy=$Od)w)F{Gg2&MS
zc=5$c9&rXRFqw!hZJ>TOI~M-H**Xbi@Pv;BQS#ei5|>vX%8KcUP4y(4SPMa<hNUWZ
zp#sTFF^OiXvW2o}MyVV!oYg5f(dk|mYvhw~VlS!!1f>Sqvv0-|*@5#%LG|j1eHad^
zY53drS<BETmxJ*c!W8CI2aOi!BMinqXjsIvb7PNPnVEJ^#x!dHnSRSI$K`ri$tUd#
z8@kSxG&WF1lL9=txdN*T?e2HJmV<o*Aqim&GND2v4FbE?bP^E?H#7wI!SRj7QC#Ys
zcWoq9lnNz*uh5+&0QR%V8V#j9J)tCNY{acGn8{An4{KlJ-PXYwkvgWI58G<xjG-Pq
zyq?!GgH1c8`_}6Pue~tIV4A_y(3uE^Wa!YfJQ=oa2co(#nxWQ?NDUN2WfF~&;WEbN
zKJ8ugVCS0o`Gg+$SZH5y<6(5gtD&|8f?%*bd5h|4@0!z10DN^byy#n1l={g_27qb4
z5?&lY5Jny!xRSqke1nJi$}zx9Cj-YPa+pP6Vkc~Ayg=e;3o!9E3%saLq=;|-U6=Kl
zuq`gIZ&s(h3R_5oZH2kQNnJUXhD0?k5RV}%N69>ffF7fD(p=5t9eV652i5aHa64J)
zD>=N4aCCpu6-A5!b_)Mc9D%Va0!H^Ya9YEIEP&Li*|CSSq^1ikMn5&Ufb0cT7)<&k
ztXI$S3P&0%W7&1BrMUz?%jTZtQuiai<*niP^ajov9G&CH9L{v*FB+kOBP_Wm!$T{^
zMeznqfYBlVZ3&fSb8b%b5t^)3T&4=4!~=@BDAw~R?55bU?D!A8-ryXY|Ai~h-lf=~
zvnc3u<Dd%yp5{Lb<wa;MleuIJ-xbH85pv#(q!|+cwnOARy?p*Wi*ZId?MM%mcm)@i
zGwP4DEI6tkuczbfjgBTb6Qw5(!+rcH=sUYpq5+u4|2}~qRAMnTUutnZg2hsY4#J|W
zOj?$8Z+!UJ65rr5LABWOSs&Yfzs2PfSaC(=C>W08pT@lxsrnc<q;W>mUiAmqJ7i|D
z_dt3@qsEII*{r10Q>fHh9^@ApYE{bYJGDATSPXcxOFSK1+?)-sj`cr6%DAkS0a(zt
zhDm9iqrpXAR{9C{Bc4{d#{DA5soxH60})!qM&2gS4{jw5jvvcwS=h|S8k81(e{jR2
z>8+Dp^InV(tAoLfD^TdKMdqFE^9)Na-;e!|pg0xXI*}Jtd_X0kT%4Gt>iAjXr6)sB
zwglXI-c#Uy;@3t#ej#XMi;<OAc;R=WOJ;u6`)cR-0c`|2F++@Fbmn*aPj@`@dWDs!
z`<ZN!-y%0?IXiLly@?-?%xLruN*Qaj@H6jt^Wb26^Vud2H&HT663Y38)n;yj5HCuI
z@N)gz;dpe#T<9IRI)>b$ol71X;I&s6!yOp8aO0@=p5k+S!?(7_d`kM_mJ@<@Y}3&E
z1W+uXS~S39^5SC{JKcv20^<KN!u6pmEgI3j0vZ`>K)c>DM>o&)lk3wk{Sm~D$0)2O
zJ6U%C6&sG#dX<1@9RZbo*S7~CkX7e>|4dnRvWCCg{`Lgdwjb|)d!nnz)EFfISFeX>
zn1tgZ>4*>p08@OGT_}<*wjbm;ljtPx7^zN)33Li=4yTujJx707?5)kM?{-eMcMk&%
zdhL`B{hL539q(MdO)wF<Yfv-lr5%yL*;M9Euyj^)$-6d(C;MBQPcm|kwfI^=MnmC9
z*{4FwK=xz-N`+=aw@q4Agg8NY7PBUG>QEAI=#_H<HIJo`Z~<0ouvS4P_L@X1lqN~&
zBG(a$l@)I#SX-2gUZt0IaxLH$oRDkIq*K1~my@Z}Mg;e+WF;fdq$OKj<wb(bbWQKJ
znzV#kwklV%z9O7<vT?W|WY?_>MB?KfPR?<vTyPQTY4)PTmC)<%rHoQ@Sozv&aq|;E
z@+u@unD`dDxTN)`d<DA$spA8gFcXTA*|8yxcCA+pD`jm~0V5S+NjA!NE+k>OYX@sz
ztA9<MGl+^17D`vLep%|W4;ZZQE%Pr%PLM+75);1$5wXS3k;qW75A-+d<+R9$a%Dc}
zxJt{5x6mAE24Z5KQ_um$>{q*9ZO!OCa8fU@_T+<nya7nSHjno<!?d+G&W(XM*%)zx
zjiN9m0v%n?G6e4q;SY{1N&-VlJZT{dgb%MfoGK-yqDxaYW^31a@i;lm<<;)x8<fyR
ziT@ys<X6A?RdNDSR+dq5x9S8_g7!0&h@j@^*ooVNtJ{t|9fMI+iO?qnI+8raNQ>GT
zZ6f$7gf_%ifOQbe;n`FDy8cI03u{3bc!LGbyF_ck4QFmu{HJ{Ksm#DepAin2pyCLP
zvpczkBXF6o5^rItZy>;Bj$$30Nk7U8(4@AcN3{S~xpO$Z?4yh!Bni@yk#&pB!$a=|
zuLS(VV4=C44R?kYP%j>$QT&R>6BfXEhKF|K81X5KApxTw)tcBzi>|Wy92YQ!x>txP
z;iq49h_4fW^Q`D4(75cTcvIY)bEhOKcWc6~sQnX$x~`2xKbO4=?B`2n!ke7SgAmZY
zdr-$OhW*aJAMNjT^srPniaN0GOwfcqP&MB~3PM-$ldVb{V-5&Z`VY#3uBM2gc9+qX
zE!AUgX^I#V((=p-c;X<nm$+aMJKgo5IxB_G8bih0X5Vkki)9Ng5QhqaWq5Xef&ZI|
zbRoSJ*0eNT?IOerJbI~X7j@>;eualx-q6Ik9WW@DErr;rBZYI~x@^|r)q<SRAg9<+
z`PMco$Wc;FZwhCCG0b8TtDZ<ed*rS$l$+qDN5MwM28_S_?&R*X-=FO5A3oiDf{S0O
zB!nTu%vu&)!QR&NM8WBUyAQ1ji1Gjzh@6rP8QR{OI|`Tj`63!ilckN-%yQ>d1j&sg
zB}`i%gf0FUUxo?j^28MiZcbO5l*5#8qZ3iu3~UD%l2W3j)kDN(^i_!Z6`H;V^prIy
zr|L9Y<4Rup5Yr+Vm#nCOLn&-y16wNJa<X^GHIw7>v@7Y$Ss`~RfJ^(P?pGB{Nhg6&
zh9lCOC>h588$vm0CZ`gO&EEOzUo!x-mP2SFj|hlYufk0v@Vc9ezFd}LY(DsD)=o2_
z;@vBRZ(?D9nqWCD&>3&FD$nx_X6rekAmJEXIKI({c_6a;Y=lEVd5UoOXR>!_kxW$n
zpo3?B7^|t&R)-V%T^~277|qc~FOr9{Eoif|{4E}Tr4Dn1fMp(PfRP9oFf0<O)%vKc
zV{@HJ`*-%A@GZbN72P(rq#~l=!90Tgec4-eMP*~-$>#4)j^J^4x{3NLl(p(+10r0y
zyWh<Mnq!@{udnIcTP3OSRzgrG?G}-4IOxY5PJ7wd*xq@zv-Rxcw>!TVSIv{%t!GCB
z6~{ivN6=ZVI$LqrBQ%fWAIWnIa)<JWA-DAd%^lGhlRMAxz9ZbWq#kShqWflW+kMF>
zTt@Zw-MP!<Lal_>8T~u$@Ex$MIX|#{a&yygowVhSBwl!aNi9>hG_*w{M#u~~s)710
zC!mTd=Y3+E1<lKY8+a^iD76zf4TACQLPnt4)55xP+EjI^;+FRI&ZFnw61fVusDTQ@
zEdAIihY+n|ewLvk9Su}rf(racRB6RL)k8K*=udiqb#jFh#<t$nM@iL5nN8ZeA}jAc
zw>%o8(`sDE3OkI6m9ZG|TD7&J+o*u2c;~S5ai7mK>fvIxt>8?tKQhN{=o|ZJwW}qb
zcZ7}sUoKmUEz=5RuX$NQ5N`Z|T2%9O$;q9I?nsmu5TrVV8;zh%8Zmf7-&RP~sqzHK
zw}{wi911-{kR$C1IGd|i#mP=IJ|NFU+=aOb{Eh0dLmNT#n2O?ZX@MK)6<zBd!5^_b
zeqc_zfmAz@5o1>#ccFR?XQL<R42&z{Ky;AtCHf4@sPOsi3&%K3=+7+NE8$5mu*l;H
z4p2Q=O}z~3-Th+y^Yzco!7YJxaN-*s*!hl2g_Scsrp!z2?9!JP+Yzce+%D<UQ1U<#
zCL=<G*<L`pOtoe``FRreB2Li`N295I(l1D)OjHD<Yd82}0I|dC7|f)7D+y-u31)zk
zwx_*I2cu6#on<-E7%U;`MOR{FC@%}^8Y*kAM%f5QO$ee^34O6sv7UWpZ7=m3qxgwh
zpr<=hWTSmw1_wQcpdworup!BF5Y7Qtb9%3Auu7BAtKqHJn2{ZphY5v+7Rd6&DC_pz
zXz=Z%OJPQiAsc%EB&al`OM#`1+HlbPMe{hj7`>wS)rv#~>;jc6seq#|D)WBb*JuAo
zLDYX6-Pm?l_`b~s$ygmg%k355jU4m3fj6~h0@{oY!US^&YTf3jExNlFvcRyqlN^<O
zv!a5clTj`Ck+CBe98p;T6MAD3f0?@FvKSA{qa{yP1!!0&d5~)7ch7eAj&}F=?k{~4
zv*;wA3%NzU_Dfv1;t1U(oCKzW)6=>xCD>yWnr|wchaYtrGL=TED?Cw&0V;(dk)mD$
z)<Ppr$ELm$fDwW4M8+4sgdufpGZYH-&@2&QWm{4H#xXP_9pvxH#>Vd6F4O8H-9x;W
z5)PThTt;Df-m4HU<GAEnOZbf5AeU6eV2V-;@a8d!0-v(I>l*~)8hgYJYiq&HrrR_g
zOb4h{U8cc5(`%s{reg5tdj;qc+g^<K*BUQiC{#6^Wa}=M6|1oJb^E4lQ{H(NkPjU^
zl$fMUrx}J<5%tB<57Q*#R^E_-JGQZn*rFo9b7i6$4(xJqNV~CvkhZo@3f7lFVrg)A
zvv4&k8sf!QCh~CTH>R4pwz(TyW?DsPW3H+oCX&6xXyDA*y7~s=!U}ITdo}r<G21QI
zXH(@Z<K22FZq<CQjr9f1Hn={>AV}=Qw#8#^9>Qh@ZE2~+`~ry!LRofji`3s&sHBT=
z<89{t@(orv(@K3{?kW{5#=<kVGu0f+LQ>9O{}c_`7EQfta=PuSC|oc@u^zpV#ZK0y
zQ=CdM@Ll+il-S0WqsB~x+S;bgd1i(^+wHCW`SZ1ZJ6T7ti;7iIu()p=570pU&qTDM
zc6grvH^h<ji+7D-`ey)#k~P~oddMNq4s=1>)9%L7N?-Txf%F2jP31uq3}D$awDtrS
zgii;J`euxagR*GRgSv+LA^rSPC#2&L)e<g7b++U7l1)IJ2pK?(uw#UGsG?}nGzk)G
z-=^S06zPL`KxSk(xSJxuqa(_?FnPx?gl_kYSMbGbh+mJt9Zut~Y;m#Uyhm<6JX4Q>
zZ3;<~?&R%Nv)iM$S4o|eA1vDKYbFo6X!iVAzJFxr=V#51zdQTLPH~47M+Bgy29gh~
zq-B6M%;L?0W?y()p`{yQ7SbzusS#gfZ{|3s`P{OW;~r1Ei(Puy8~=18!cW^A@!5xs
zIAdaGRa}0HuRq<?-v7Bdv-Gj$#%}w_#k)oXO>@KpeEpC)&OjywMROpsqE9>!O_t_B
z%sccE0|l+Lf7#H93z1zI!KE4%fhZ*zbXHoC)S4)ODRKF?*kLGA(_>_E6@l)1C}dIx
zaM*cHJ?%NuyBv;0jB@9@LytzSI0Lw^Jz(A==R+Iy0rVg<p*?#o(Ovz=F<6iPO-N_f
zCD|pF1JZj5($ny{0`s|zTv3(GYY@yE&y5a~v*{8b?tzh9>jn0M36q=+>&O=69<XzF
zn_sOHi<g25Q%umz{QRa^Jgw(axhEhzi;-7Oh_`70wRvY|_DS<G#iQ%_*$IX?bZ8n4
zl~h8HLM!3d@sr^zNRyZzFK|2eo5<!6il5!l!Jvn$I<OC!cCXP(_Zr1(7djZUK<=P9
z{fTkk*5e{QAlqlp{GeGkY};;>=0^OCJ0VctC6RyV+wIGA{l(PBGC<=PK)aXMysmK`
z0M|rt6zENLgOognd<f690zbI5r;c17q|aCM_<VqScvWTPHy*fM;>A>Jk@{zO1Y$FW
zfjZN%P;n_JhcZ4nbAP%A!8qo87emz)Z443DYYy<Gh1Hx)E*s*UMsmL@Mnc}FJW%*M
zD~zoX>qZz6NY^;jGdw(M+{upG3{?!|(?8AhvIc9@iwUeYMo5Uo64qKrFnMDMtXJbX
zE)y&x?3Onhm~h$NmjDly)T~EGPaZyda>V0$28Z&Vn2pz8FOO>DTnIop75x^I7<?wT
z+IVnsBBuy=wVH|gCKK461U8=42mAgwzp<vdtE`b;Ut@PXf#$mxLt2g48=cA=m}d&r
zB*XAq9DeiO2V9p+_`luPOc)hX4G*s5P6$ID8Y4XjH4P_-OhB)aSPOa2Ec4Xp-Bo8i
zoV<C^d3B3e1PxALf5$Xa**ll+xQqS;zqn;WT;aI@vJz~`+_K*<smaL0`VzVU4X9i*
zA~1rX$2g~*)1D}DzR{~Az36gHUcNy1u~e2U92o_AFN8PoEYyY*b#Bq&q;hRI?PU@4
zoPc{FE^UDSp5EY??k(JJEf@uBu$?N151Hn2q!{~YaD&3WZ67196Nm8tjpl_dSaQy<
zWi9nevL*4>I1PXNl+G4kgT_ABtjW)fj7J?f<(XpB11z^TJGkaI9ln;kc;aJU??}>h
z-h$#4D6e^JV+2YC1JKS%siL$>pa^)2e%`bg&dLxA?9r@uQWfKI@TdV#Cr);^J70GG
z`SXAITwPSb;TOi<mHmxHNA^2DY}S{pdUJg?W-fVbF{T*(=k<U2c}HJ*W@d4{2CeDh
z)Pvgr=%o1${XK{^WTt?N+YB;>Izc?<GbjF}N8R6_lr5x4|IxUly}@lNY=gkLQPg>?
zPiUF!3F@d{0!wuXabKMvs0R)zdmBV`34C(8^n3L9B<DiEwCuvX?g3Ghgt$^1h?-y^
zny?F+QXMWRGSB_`8`VvQzGMI4vjoegx3E5wLXH{bMkUkiGq7DY``g_F)Vmvv+kc9V
zMJ|l*?!%Xd6$*lx*HCdFT3i&>i@|v;fL1w}jE|p;&iH>whf!QRP70sEbA-d!r5=+b
z;5f&g;(dhZyxo0CCN<za$w~Tn+JjEfE0!tRI}$IACS)xT%!vksVerqC#XyHxSR87f
zCoR(GWsl*=YXsUZp1MSGn7l7lZuPi_$8l7`j2g2XKG^Ch1TRD<j?G?*a99ZX+K6Oi
zcN;F*M|BJ|AQY6?)a*I}Z{so2OGCKD6z*Ol=l?ro!VKS9X9g)S8<!BBJ_7#qj!grW
z;|D#&oQGSqr~#aGo<kjm3ZTovRBU19wcWhxAAR&pM8DD5%qKCfoooV3%oeXf;|(e?
zeU7+#(RH+Tp$7RyJT9c@R$9f;?N$7DBpe|K8$XHVT=Fa-OUvOcjvw^dl?_n=>^es8
z?Fct9VEv8Rm^OmH`i%1rgl!_a7_ho(I}x4x-Xt*(mXYX@R%F~oOP0#ffciiJ3#(o-
z5*ifBB|Rcef4TN6B>8GMeRYFagz3J3U!E_8;<XXWA<u9jL#Y$vuHYo){N`1?sg||2
zgSFAx4rR02JsZ6l@O7$Oi^q6uH)UZ7C*!2S!jZqEY{inbS1c;pU=Kx?LO_FpELZKI
z3L&hQ7Zc%Q(hwZo5r`IS+h%=f1n$5luq7Z4@Fw?oO~QtopAoYS4u+6Aq1^~hiuM8)
znLdf0TQq--?GG>3^)T|~&-FbAt;@=Zy3l@+3Hsc)qeFLu8lXXPA!uDP23qEZz-G(}
zq0|s`!z;bMbP5+JL@9!zHag3wDb3cq%Vygxjx}irHUGU*hp$@`JAt^`uwz?pk)`rM
zWy-&>Q`~GVFxoT0#3vlhl5RRV%M_Q0YIAZ$iY^BIU}B6+HV~pSQK!JAGR|^i15E4L
z@NzJ^nXV%L`SgCVDWL{2E^}?Fb;K{(@RJ4A2dWj~d+_`+@^zsV5|@QHJ4saVl?2%+
z?jsZLwwM>AvsEZ!qQPx!>^$8${B~z=>-U&V=!_hL-2|RVNr`_Y>+He9iUfF}op3yv
z+TDQIe6n-+Yykku@o~#T%&boU!q(yLvt1-lm=8q>gxIg20D_&v!~Mhg!#7vKZrptW
z5PsM^+}qvzb}kSl3g8+Wp2Au3(S)$Kk44y-JAM-f8mRcu<L~Z0-k&>qIs5+L)eX|@
ze)QlHEHroY#wO%`Ub&z>mbRU>6~(Ryk1$wM)mEyEA%3)t8b8Es6Tb-|XAk!!dZhb%
zAm0pOl_$6K`hi}jBo7M7Y;~TZ-Nx~ZYDIrmA(@S5+vDqe#PHScjofWaCDgVdNsYyL
z`Y9hQzPdSQh9t|6AM5w@h}kor@d{r9W4<mqtTB>}u9-XeBIc&bI+{XUU+V2zOFeb>
zq+W%uqJ7ZaE96}`#+Wcp<nMVyemA&4sLrwe2S%a#BQ*8Zqnp<VIfKi?)9!8Q<>1|Y
zcnqpCGkt9yfxmzS!n%v71w?v|U(xJgs_PUbwJXNO_2n>m1YV^VongF-`Qqd7m^hg^
zPDcp<O%(Y<VppXv=%I9f>%jmfyaLTdLA5Tzg00GvNvmC?!o;%}`oa%p(;f3tcQPsb
z9YI5?=<q|+OdwAdJk5N}btBvY4pji)5-yj(*R!$F#2<QA=rj^3tkbF)V0O$}vTYdG
zibe4oy~g7ne76K=GHYLJcXDK=3&C(~=Ce-lFcG3HLd;v6=WP+hcNPvC=q8p&Q<nd-
z`puVL{o$|2SARWz|M|b(UtRzCH}_Zh=g;r|h;*Al|AVZN%T|&=oDqQ_7=SapKAHB;
z;DWVMq~YeU<n|~<iav=RRJW^t@T$MiT=1qTcKzOw{nl({X}{~s$5+eX%mMct$@NS{
zA9e9Natc3%J^l~eXrdQTw&|(n1L6IBeDb2Z?^<Z?oq23wm-`{?rg>v1{p6|s?%G)U
zSh$r>|9I<s1f9!&&V$tJ1<Yc(^q=yvz_tP-Q&%pzSmL7<E`g@WCtvLJ+qrN|WtB-)
zJcl%Wss>BmM^dmeMy5gzpkDqJ96yZ3bdnbKF>p%cRc3AdS8ni>Q{?N4U<j`B150HQ
zkRKUIU?Rw;<daE!lhPc!PWu7-OgBEiJ65b9^ue<5BeYBBgBr@WmQ*A8kLSBP&*(oX
z2ql#YQs;p+P_=1J3rkgDO-wJC)5dD~IQSVfiuo-=Rc|f|#hiAk5y#9R<qGS0`!@A&
z+`oYu9H=E(tMHAu4?omX075H{0)`Wz29tm6#<`j<v8+5rR#vUOH@tA=lC9B~5=kNd
z+PnH*^n)xPOh$Jiue1`B2uRYeznVofwwyD^yZ!WI20~~bSQfN$n&bF_<X(K5LPKq1
ziJ=foH@>J1^+wVSXkZLJyiK&S%tpX+8v6UAAK-|H_HWV;q;~IO!nE9>A4p0&VJ%26
zv07XQPkI9NGSVaM37<X$qOzL+5ZI{m-JomCoEx?iE(RmpSu#7KW%4?#4>z6eoPYo@
z?H94ZOFP0y+rU|zGSrf=X$tACR8&d=IjTAHSfm(^8U>IJSJ@`}&z~JUe`XndWEA$#
z5JbIAs^A4~BF35OzR&58!>sLDP0%Xdw7@6q$A_ISKL5op?LTDx@b(=cjENS&<?s|I
zQTU*jPC9Fjf-nXen8h5<M&()QuvCGL@5{?~{K>aK1t2U@7%if&<A*xk7x&h`c>VOz
z!+Yz$cs+TE*SKkrw6vEJaXXT79&}XChD+1IQ-UJGNNRc(rIaEkQR&jc`HczcQ;4R6
z6pNVHy~+NEnlKt`O}@_1x{m>CveE#|2rJh(fPa7gC@_F;I#h9CjnFo$O)(|Gf?Pia
zoDYJf&QSamuF9D(jxmA>lk8~lInWihDL%DwmwnWlIZ1SR7uFXbm30k-TxEYh8Mw3f
zVvR8_hJ+R#iEI77T|Q{VaUYl)%yUc-DH17%ehoop;-!Y6Z9-Vzx(AD0fcx2v?`AxE
ziHigDN&^;8hpaBsLgi}^0z+K&ifo{+UiK8wFu$eb2}Ot%?nT%v*J$_BvQ1~{cqQn>
z5wieY_zlIz_{mJV9dbR^hPm%@yFQI_7D+DwAB%K^jVmCU+L16j$28fGZ`7u=4Wh}&
zEa{+FT%gPmgGM2PS7X76+oWQPuF{*pS@I{d(t$L)+=#{!rVk|m5m;h4u|FLo*gY1D
z?9C-2(0{N8IH}xTtqp=@4NAH8i90BSM~5-f&VE7uX0igX`cNvSsPq(y7&?P2dOb9c
zLk$Li$wi@k@NpA8g5Rd@;HVAzx0pI2U%qELO}OJS5G;Y&i0U3QDPHnT-XJ#q#sm-+
zQCyY=?+DjD0+c{iUg>G?{icDv8Yb{JLg;tH{$TTJ@{Si$0{KM)BGvr8*f>xE;PKG_
zZ(?j+3=fc#^m-cq+SoWB_WOe?{qDDx>pB5MIzsa!6j;nt@gz~!+9Ku)?2HhK{%HJE
z-8WeGE|3o8Zu#D1nE|>M#2{+p&Bb)6<Dj0pkUx5#<nFH7@GrLX4ABv0^=qb|cC-sU
z3CFOh;+}Le@n+X?vQS&%k7V795q>O_GLKkL_e;(O6pJWPE~vWlV(NA7;b_ycMby-)
zvfx7<y~1Y^o~r+b;pwI11|Q~iibIuY$2?)3FMe$w+|$+hg?|Z-tj;f!Pr>B?a{O2S
zZvLmv7ysg;mtvsd<53`+)zsL9h1cE_szhH(do}ZX%&HLFNnWWbzgjhO%)eA}@hQ{t
z=kzK&W43<YYCy!U8xl9@|FgSZQ1xGApamv!_t6^jnxiHqfHqh04q8aok5Fkzr0DFE
z$n`i<eT1r@i;e0#=<g(x9ISFCV62;YTzA~r&1IS&*z4mo+crk3#P=%7nr%NY3>N!c
zg`V|WPJV7QEV=!{$Nw^jo-pmfcb1%!$K$2u)C$H60bpWBbP16|=(vP@I0=0CE-fNk
zUbt1mKRpMo>KVYyHXp;mF^#(Fmui`A;X&2AlgGQ>^WE6@zv2PSnQo>zgDlRvKX9Zu
zTszW<E6i;qc?TALr%vz4%7xUTdhaaYu0vLNd+da4r412(Ck`KhOIK<k{spGZc!3a+
z0Er+uH|IXWw+*it?hqn6_i%t`0-y~YZ)<Y>gAv{^ET4U>RNqImk%T%NKfk6G9)9Z~
ze*kG_Q@f}CL2aMoZa2L07Z)GYIy4H$>hs}N)ZD4T2*j4HPz4=_xY><Bk_9T>_`8m?
zuzMuSIlnip2WuSHwJ#^(Mta#0cfB<wZkY|Hs95B6(^oRLLt3|@wk<r!&i)covcx3w
z>JG*-Souz8>~n84x(>fudpp8;Jn%m7=dUM+xX^?A`sE{(i#^$TG3<HviDE>{Fo6J^
zOS}v)^^6lOweXVYo3<j&aJ)Gl_imra-z^olZ!Q@NC>8bZqT<oul3Si<S-2PpgEslI
zsOr#b=FyhIkah#uLt4!8(Od5$$<5rhi?{}QsY>w0zX$PKF?=j=G8!Ps53myp+FSUm
zoQu?rbryg-R<6@?EI<BX;Wu>kCFNs#P?<TkK>qemRo6i9kSA0;!<9kY=GLmoC-^Gl
z!fjFWTGOXAs`rfxgb5Yx#$nakYT%AO64o|49x4mZcYo12g2vPIZ;d{1mn}~;jT*^R
zH5Z{~K7>+X8f~KjSQSsWo5jqaaEXH}m#vciw^>aV0YL*a%0^sPhNf0K>|LMU%;~H@
zc>8pOTm3b7`s3R}JlR?+Qm00}*^Nl)YO_ArMFtSvFTYN4h)gO<dGw_>N{44xxXKjw
z)1O$Yi6L7Ec{F-Pg(stT;L6nslQ+X_<J#47u^q^$P}+b}(>_K$B~FF(mXVC&>W6di
zo(m-lRT~qcL5>A23<4c5AqAk|tF6`Dytt@VFUOy>OQr%+WHrO(qS00F!nc1vvKQSc
z(z%XMoFHYPhx>uEF&7pSW|2eq4KSo*jd}Hxn#M35g#4$r|KX+2Sw=lIamhA#`Cbxi
zTcT~`=xQ<u#xsiImvW5<ok9Vrq>XeM4;krkL{##QBqR?nvf)&a%+pTklxgy#vrj89
zEU+YSP%A3Xz$(S3(0zl6vU1~NsIDB9b)2`_kQMB(R^@Z(t6;ILUVI8w8yI8d#z!}?
zKzF4F1iVC|=JZ9)rOw$Y-UC7wv{SqbbbE?qz4T+@qh*y*ua<@p*aVH0@$m}#q8MO|
zqR<atYee)_Ufo#&?DpgYLb+*DJMvKFAl6C70gbm=QH`<WHB!Emmo!*!UR+r-$z-^z
z8vqA&JciEHU7r2u;mRep63~(4U*}_OKA&>yp<RxdIAg(16iIe9R0pxokQO(R!elwT
zLb$#2{mIk)?VYb+)rvG*mXimgEas~q<!CRqqTh5<{bpn1;Be>UIbTKJIoW!;jVPyP
z@$TNyv&|<@SRN)`kZ#Ojug!5*Mva0Hz}=8dLy_R$at<bEZU>Us*wQFly;Q-7*e`Z@
z(wdrvFN3z_7efvxSr;rKr@;awG9h1C1kzd<Ns3TeI3$aj@{S4vfyOxDrIa$rm5o`T
zgV!sr&c`4OuTbd-P(!<uj$920wFntf3VCaaCqO{D^{V`&I=^3r!Mb?;&<{~-`(YqL
zE|~{zW=#jaDWuSzZeiC+XZ%S-uOM^)NnjFGz{yPsx2fL=v*Ac;I;01xA2Y+XVbun(
z{@6E}i}R&cL7p(2);fkIQ+S$Ys?(4>MS{Jn>Ak41&_S;!<!>EgT&VF??~e>qIgT>i
z7C6JtI78u{7(il7B~I1PTk(-=9a4Zb^4KSgx4|_Nlo%+fd|&&T*LPog=FPyz!sO4#
zqj%sf9RH^q#U8iFcm|_I!+J*rHJMK93i}-{-f$C*MhP2KMCWpnARurB-C|CKEvYbF
z9g$8wYBlpc@Eyj_Tvwsk+<eu;gI`E|qLLGg0a;Nr#g!yFVZu44N&*$7k4@T00u^?G
z*D|6*Uwm|>`y4LHE*?pU19G=js`DWQ2?oGZczlSZyEj7K!_aN#9nvENWa9Rh@6nL1
zOr7qvEHDNVVul$9((~zRzQZgl%*}-PV20Cm)Gac;q|=2Ym`-mgL~!jc!;xo#vEWDJ
zBT;Fw4?!sqN=a6DJfOo(^qz#xh*4!tagCEXIGiidfr!+QlFG`NLJF#t^Z9JBHRoL0
zgSRM1Sl}Id)%F}%J6>ARDe^rs8ej&iiw2wovS1tUxUVkB-63druU{uTNT_J5cQv|V
zQaW2O^bO_%4Z?pD*~w4*@(FP^$xoXfz8LGmU%GKq+&snm8J9PgN3cqV7jhw`S}l}6
zzTo9W0%3irLZC)1UpH+IVLF3UX|z;pH*_~&BJ-Y+Ft`NU39l)(LibC#(oH`TshW!+
z>HogO<1D=WEvzQj`*M|(U1wac=?<AYy4hO<z*|d#CGpw_IFl5fBI>g~qohwaKAJrR
z2H{nL<tOSGD1=@X-!h;o{^TCfMXa~lLdfc*bo6*1RWH!I9yj3-@(yz6(7cw1!7t<O
z6RmyLJh;f-L}?DY4Ah~zC;raJIQ*^%W+v*ir*9Zmr|o>1H_g1xo~qI+Rr&uRGS7yr
zfQH9Ak&<aVcr?7~jbZy>BTo20NuKL@38%ctW0wkDwhy)3pS<Me!(%9T5+-@}$fDYp
zI=`8YZcfkB648h<n=@G>*<CBa9*JzT%_7=AdN$J}V);*D6ImcXVlSB<ZMFN|ci%tt
z+@+e`7$&>kbX0}kqai+5Wk$VF(J2-J1V2t2rLWr@Ac^A(XjF$?bf2hqPQRjwzf<Ol
zo1q&FeDyQN3?pfg5`q>4SK$5RZjej1#OXj*XjyipG>6H$^mb5!p3rVeD*3396-8Yd
zd!3h~!a*IB-3D_`B^$U~BKQedq9WIkwg7-GFsy2DgFYAca_Ze&wb$~J=`ol!;WEx=
zQ>Y`zK_;ff*`z26y^p$-;3*l!j&mq#lWJ;`9wZ&O^$xXD6FI<{ng}CO*R`C8$E}H^
zT(CCvFjx%5>(NLqdl>7m;?ae#X4uOlKX@_JVVB^AY@VHnZwHF8Tf@0o0Pb2CVJV4<
z6wam>RIu>XABA&$J)nZq!1R-x`(lq1Nz6zVJCISTpvF2GoD8~++pRfs&}Dt<<^Cyp
z<-&~h;JjQJk`PW19Q(GwXde|t^#UYzqAro{C-lpQ0s7Brli_guz|1X-BYJC&EWoKk
za{<$A2{xB3b9ks=^OO(0ag-pGq#xQ9s`{qXAGA<t@=MHot^`mOePM`QH!TxYo5;{v
zA!{X<pk>N0yjlQi^**zgn`_h-z@JiRPJzlhJw03Dpn0|X71e}vR^RJm!?YGnR{Fd=
z3$>bcrppSa;im3;3=7D#yY9<vtg{2V6LR|M^x{T106~SRvWDXOUAZrb2S3w|?$osQ
zwbBC4YPir~VmOeem83R{J+iKdPiH}@Q(FkrYZhmWi~Yv!rUP)F@h@8rAz@hNx_DSR
z6v-ms6)6Y~v5LaC1if|>&gGjyqEkww7?vE#<C&}GAX2wgM)zBJS<^qk?T2*WeYt=W
zuv6>|L0mSk*yKfXMk!&z73T<TsVVJAFA<UDj5xHDIf*<SJzY9A;^Xjz^CdPDW*B}l
zEyM~G=}XBTJ{t^xW{Bqc3gd~NlFg;pki!sO+0~TcM5uqD3?ud+YKh;nY~9PTelnt_
z)ZvMig@S<8t6R2c9e3@oX^>Bl<q!wuc&j3a9oKWBe#A|=s*D|PNys+D76q5Z@eeG*
zDO@_T4Y7~<oAfnVUg>d04gotak-(OhA#HD?hl%=`+Um=+)p3(<8DR$)I^w{+_3-fU
z>Kl`Gq*J7uN*r1RPPFTQ8M?e2HcSVt?#nGgeuIEYc6ZT_d6ndx(N;xRV|bB~Qk8zz
z0kSrbvP}+D`K9syPs1@guW_rZ>PE=?-f`(4!{#~%Yo7t7C%OB<6E!oXJ$ulH3hYsn
zn`^#tz(_;Y+mO<{10Os?1(1^V3Xxn;;ew(kudv#y553#Ys{vE&iwgu7huBF!6Cdjx
zXxAO(k{rhWIv-pnE<lhP1z+}X)W(Kf_>tvFSdkL>VNm6i@>>123^bO9Ua)ym&J;*V
zeLl7wObe_EXUSQ?u54c?9WU1GMOW&bAf)3GfBkvT?;`mH4shb`XyXtz7I2YNu56`r
zhQ*d)+vfI28?^0>1o^rfoCdM*vmB+SFQ_a1lL=rEA+82!+FWP=CIWDH0pNnGg(@Lc
zA~7@YN6@69*WhPhkfbL3E=dax7|5Q}0iFwkqCy5k;jB1lJqb0YV3Cxo`A@tK&Xd>e
zor9gdZDifu-8nir+JExBCSBE@4Q(mhHjffsTTZU5Mj9LWX#6R3MxS>}d*^NFz)b6r
zhaQXbS~~@qG47QoU&34gm^Ew!C!wQYRVxq&We}{{*4{<QS8<R!8h<S*v^gBal|CbJ
zI=Z>&%M(msIADB)s84=^r&tUvl-$fK-x<B`7+Ld_L3^CdVCvAU6c6WMb`85GJ)#Qq
z-YzzrA%iE%`&q^f#av!nyBbl6?(|3CxO{Eua)8+x8l;5xYz6842RKIQ{E@Hju+jvN
z#tg!w!Np+=vjgBN(9C*g_cb{4TklZu%E!E3k?twP*oi@Oi$`hBdkC`wiVfW;9ziC;
z(IjEbcj4Z4im5i<W$*p!7a$_V?iSs|_hHPK0Z0;(ZI+XwQXIx+n(XbLdcP|YBnM6e
z1CY5o@Zp=EPQ*{U`+><SjD_1~c@vRrw~#rV<#lYPD;V+Q3isESBi$rxomzm%?NJfV
zcGVVGsqdb2Kx0oLst*xrkIaBakbkQjeT?6r-$-V685;bUTk^9M1?~FK-UwtwIv@GA
z;L|?3*m_=r{GJ&HRI-!D4CNKb$+OYpF-~w-lX}EJTdQ!BqNO3=&yIi;7E$T2Rb8k>
z#orDRvkef(1}S9HuPu;5QKoalFmg0Qti_(<h)80B$n!Yhe!veE_W)u>g()1epQAdR
zG@-EaD?`Fp<M4t2<6I(%Y(o;P8^4^=VjIU^#HI{C-QbI}R3gw*{9Uz`!t62#UeJJz
z?NW`C$)~6WB}dll-3_Fg4&zp8KgP5R?TmtxCP$8l6vF5ET_6F_&{Bg>of$?!3qo0I
z^I@?18s+$mOIL%q9af422!%SI2_Xr~dLV1v@Bv1>MTOTi?)81c--F(VUy3;UAy$3w
z;+`Ls;sqMxkWPX)l>S2e2jzEK$zp6nR(K;@l(LO~t~POeO&YCYNzzar#1T>n5Vmr?
zWg~4qDzffb&Y%wA|GNT=QD<{_3;YRFXj5>Op9_)JhVr%xj+9Khb+AJ^laXDqGO<W$
z^QQ*NiXNs&HBIiJoVsf$$4gjzV<|L{eg5yGSI=&*snEpr2w^qO&S`D%GL)Q2SPUA>
z$_XUPrEh|wU;i9@kh1v7!4<PI;I*2;fwQt!SIZXwH?}TDFZe>rtL}h}*6zdPxX)!`
zUX_k``<tOukV1x82@T<avq%TUL#POTd^kW>b}6UhlzqCtD-=|1{B+$EZ?=1q4jm%w
zp9n_1H)UK4uYw#r<OEfqK44*ys=!0=a@2@*_X?paAsonLL}<YgQpHN>y8#Zy(2(7L
zAmq7Zu+E%mRNGZHR29a?h;n4J5U`8~zB{O8t3?4V+S!Sal53%#cRNV=d4wRxYig)U
zd$eS`@N~|{Wv+iv!KE!XVI+8<(KU5%bj+7jw}>SxPODBIbI~RFc{Vn@5!3R7;6@5;
zv6H}!y5Ux>Z71B2v|Yc$fN^t+9Bgj=cJtevlkPfPvxxS%h6qnI?SjMVzV@&Q9V-nY
z$YViFd1$rVQgBwqA=jgtFZCfqta)FxW&ED!TZzt+uzGYkg&(392lGWqq7k@5?}A)g
zknIbk;QYE3ArR@CjIq|3k-D-ZR3`rQ43MaLM%pC1<-0b5QU&5O2)v&Th^XMHE}q9I
z8*Xy{UOEZGrOg{ej<+=Q<->GNU~e(u2hlqW@8E>aayoO*M38jAvx!uD;|7QO6Fr^D
zyEv5ZE`T5`q?)J?YIM*Prre&u|8shdM3q`a#`nf7KSe-2+~^mBjg7<SPj*iJegBb1
zB5ky2#aQT0=Wu89Xn${`bEuxQKHn54U*I8*Tm1+HUQfqWPI6>NGvXqc!46PlCnqJ0
zzLyVo;Ke`OIa&zNPXme`;oOb;&@ba4|G&e2MA>TNJu&3AHJ(}uNZ?|h&FYP09DL{I
z#xs`te0;%MABC$vb!4P&dlF+P^Tf{rfrrJZBat~~z^!eJiPq3iIsR`W&w0hOA{`|x
z8~mH9yWXcsZfXW_9#rn#KvHCG80*wdjCd!KX!BF(YgOQd18kR3W|<e&CIrERpt>i1
z<^frIdV$LZi6bZtKMMRwgO9?`j0uIWIUfv+C@{heWlY`6-uR739vANY?uO4Q1#azY
z<jS%IDW#Zy_GiQLcDRe{6>NGrkY1?fk#Qu0E|`J<N|;oH_qkh{IEf>F$_LfMe(yR;
zZb6HG=7`03Vglc_zf#Xdw?-E^Q0*8jRCBXr^49b4SoXn<?X$Dopd0BUsCa{IcpAbc
zSG&)z-dy2oUuOy%SOiPHOwl?vj-laeaX-^=MNCtmqs=_ygx_HUa?qxSrw6Qo)YH5j
zlA~Xp46Mdz?7Z5xe97Z!ij{|PvempSAr67-H)q@k5o9sqof-_PwXfxxi4BfRk`fZm
zrb?hUS2(6ZR8_h-U{^XN@+|=o;4^@aIfF1w(`y!wkmT$|*I)z)`BvFUz%mPSy((o{
z?1#+x4iS{(^rruogHjb)B!bY}7cpbeQKM4pI^mb5<si0CR_c=-I7hkFYCJe9HG9ro
z&U{6&#*!~+PH-{wRMse8Pg(DD)C*4b!Kb@Mg&&TH_VcehVgfkBJY<g~Vjfr#0h@1c
zPM8sEqigP6QBy|OxpWf)s~cs7Z1SXIcUb4l-`JQ5=2YKcNmb97ah_tTK{9H1);I9c
zxjKksS-?$#9+G!uCnWB+!bud}40TK;V`uEn_L;SXv+K>7V4{rg6Wj)_vkm?0%^6uh
zP?6TY25do?7yZDp`k7g;J_Er!WkQhE`|j6ILML?~G{+4$Jt$Wb63!2}i0M!nPQ!()
z^d?NiYeFE7DFWU?Co1FNk@pIP<YXwiHFenlQYCiG57|Iy!pID%BEeIS$`YO?&~<fc
z6e@G-^Fk**p}#s2Rt_|c_##4tkgoOAb8oagD5*(He!$E2EoIJ+Q%Z}Tb{P*(NYERF
z*pfJ|$!=MXVgJ2^f@T{xJrpy>8)!ndt>HFVzGMxuW45%b=auudW>3XB1J@oYn5`59
zAfm(tMFhk8ku9U=1Ilmw^2D0rxhtO2xs`o?jd@Skj*r7=u-f#HN)bF{M(v4Yd{6r&
ziCGZ50O@O`>bHq+#$5a2ohaW@4eaF2;Fcy^LbKk1gmQ!%ND?!|HE|jp5B?-~+rz~+
zoB3Mrdf1g%nrl9dDX&tl#@I49x)43}Wb@hM{lllhSU=qPcIS5x2Iv_(>_-ZO5+(5R
zd}arCs3oD~vbUBj@Eq#c`S3LZB2sD>0mCkRfq@mR;ByVQvB>qjRAJK5094CZzJJ1K
zNIR+8VcZcfR<IBFl&4tPsTFvVjXcq9imq%TS?7KlD*ZTbXqds|41v{#poKbfP-$6+
znW&+~2`sjk!?5{o4x>b-_W>9Ry$GTkxM<)(^=#McM1NlWSmU1@)hr(0!hL4OIM96r
zax&vK(`_>~KGv4tPp8DxFsgMel_4Z6_2qv3DC~2+T4n*1OA8odiH#9~Lp&FZhScxD
z3uQ@FHAgfU{!(`LAYzwX1K-d>)CtAL%yeAB_T$9Sx?!y>(hGN3U{zUnQo>EsLMR6?
zkXq>@yN8HXX4H#2eoUcOhq6rLvbZ*n239HMx6RA-v<z_FNv_(<Rr-3vaM8)G+k-WU
zt(7tRPjwY1@XnR?SwS`Q1UGk@RMKvdIpr3CG)}GwrfR(#kcMtq6gd!*be>$l#jjmq
zQDV~%i`VADR8N<=zOi$Y4lDHSZ-pBtabIIMMb_+MP#80Qh>{ii;*_(nv`QL62-S}f
z)f@r?hSNgX=@EidF?$lOZsk*ZLAsU5tk_Q0aVtz;T+=SUOVrfb=Q5THEjznGzK|mM
zX2XX9^FhwGvJ855Bwrh!@J74>$rvHb9u{X`L()bKmLsCvTbyu>q6gy`$sRdKh9FwX
z-rHK}@PbGYUL0R8+sYYuI;?Dz^h3gclEFpC%_N*|zNCtdRvSs7Nk$6TaULn%=+~5;
zb1Abl+|c%t5vemJEyLQiGJHx>`mqxEoty}e6ilkmKNAo`i#w7RZj`%t?|>s^AXb{t
zw_f>7h7(-kkdyaRpo`DrKV{1UXqQtSkjC}~S#qVSY*fEDLTmMXOsz#?NHv0j<K9u$
zM{VG7ImiNnzA<(KR5hMV3}*8HrL+ugM8n6VaKQBz`QZATbcwA4ErXOvIdV3Ju;stM
z_;DGK>K%!ec3)q@O&4_u)~DZ<bR1M=*L|rO@KmiMtCY|>B5lPkWTwT)@xv`^**|nI
zz0WPvI(4R|l;}U$d_l=G>!`uF?c9>yCRN!130Ul>yKb~H#fuRYryn<drZl3OdJrJf
zaX(1~!9*<R$eg1AMuw?5D#!<s(OX{0+Z><W@D@mNfb$gYDZ0yIQ`oIqOZ{gerwL^`
zyj_pNAc-FbFv~77(V-2`hZFbc)7m$tt>AycJJeZ7XILR6sJ4S0T~T66Ri7-08<t!n
z4?%cAXF<iNQl%IZSF_oe?2vO`EDlqU61ozA%acK*-ucrFqFw`)BVhry9s2jv%-Nxy
zl_89p83EYrn-lO^^P#o!s6Q$pnaWtKsrYtmx$~>m&gT^K5uv!an_Z%(13zBob+jg*
zLTseWFjf^TDi;u<&HPsOowQiA2tu&gC=>-KX6%T-J#pqoxlVl^3@qGQ7w|%Xi0rfp
z7~pFtiqmGBSkh<|WK20uC}=bRV`q-R<}jgvO%m^EIc4WTj+4e58&R9Jb!t{(&{?)*
zjVen2<y4E<%i3UNmBvs-1(P*le@^1*MD9EedlTA1Txn4dz?$qtT{e>MER{WYdAEm1
zFpX-~L)UlbJ=`u4bs}#0grx791te}TABr0bXEFnIwaZuCi)34$#rQZWF=};(tR%}2
zZ_RLu)cm|v%d2AIUNtYB4Fe}8$DkXtn6pTR*tzY<##-oiLbh1Pj!GYxx>y`#SF%9z
zj7~0)d1avzgP0BUSeAx6vuHy*hM9&83dS(GAQHA@f)1-~Z8iD=!q#ePUpz!dCPYYv
zi)SM%!Gnjo<S#xaZp`IX6|e$a?31X78zbW`vC`t)rD(GdcPZKgI-S8?iY7UCX_>yW
zmI49%xw^Ev$`{NGn=;)7gDBdyRBBLMqaR~5#c&0as0~(DX$)0V0Haw_61p3&iI9<$
z(tQR>R}HM7EJv;Gcxb|YZ-Nxtw9*elIn_Gpa>0ugf|l5QRpU2<A~{xSE&+%h2G*U>
zVqW!Y)9_S<39iXhiEFwAlhf)d`?XjTNj7IRNK^{0wYNZ-c7H_>Q4}?AY8bFWs-HmJ
zXpXm##?frH5L;+ATZA(-Tjk6l2~wXy#KgQ<W$?NO)K_ntQ0Hro*`T;Zh*A{rN@vBk
zZdv-W)&ksttp84XAO{Y6SG12r6UhwX*tO~<)sqiK$>lnF5|M$W8x?09f@@rQi%E;P
zQ#A2}pARd?@tPRniR>))W@+q2y^w8Tt1FI_kagm?HJ9V!L)evGH}M@=-a&RS)PzKw
z2MyN&rg8|UpoGct<lW+aGXq!zx&;Q;*>7l$WeINWMvDY}X#=<tW9Atvz%ao`PtFIt
zOR9$Qw}94Y{Xz?0bd6heU%m{V-l`7~pTZbRn*RpoDYAP>x0Vs7`|^R6rMYn$)zU(=
zkaY>ibq(Mm<u(uPt~HN@QP3R&(2J05m7qkB5{Qf|UOxy+p1;f&qfsZv(j_SmTZ2$j
zUxn+B9O-{ehNuu@$NfKIGC&`ijBelu1R)C*G!!TlP+y~>tn$rjMtw2SiId7f-D9`a
z%ArQk2jdDP3Xdy^V1e8fRqapj?injd;7Nv1R}4MsGkSq&1gN1EL7&+|H>^q?-OQ0M
zq=tNoJXm^FbZBswmIer#l_~KB%~%xG6>Zw-xhL;TCXZSccEyaE!mI-xVHn0IC`zbJ
z!=e}1CXMK6rV>tPm%m}5=t{fiY@QC8xCtt9+7MeXEo)eXN{ekx^HT9Xsn*gEu8mc*
zxg;lY1}~N(Y?bgg7cKlqSFNwhBnNb(i@pMc3iVAET2{6KFrlqw)m5bofHc-is|qa{
zxcr+NI7NHxFwUu7Cqia5!w1wCABcKEa0KeHciq4I;e0y1o_w?M@Zst=8~Fe4-n~0s
zzyHmv;q=uFA~vSS>!b16Usn;h$IoYo1HE~5jMPGx_aFW^WO50|USoQs3F0Btz{Jw+
zx2wUs0mx{0HCIU|pr&ndxDd_~xNH2lyxs4-`0yzi$k;$%3q3ZcF^eq6Zdto(_*pc@
zOXZ?T1p!x#oiY<1;0bT}w5uA%w#}_<th&Z6KxIViv>-r^)d#)W{mbe%Uw-xQ{)^t)
z>(AHz?d4y7`T38l-+cA(uPgVJw89)g5G??Ku%p3P)`^hO%OWSXE;GR{2~(_*AyllS
zsx>6~?16>69k}h_AEE&RfYZ3Rn0Op&Wz+*x1>Arab=b7(3Gp3k`&T(PwjWV@PS-~C
z(G-9z9zWY?)(@yC4rHL{Z3_D#-Rtai*5Hm10-ep|+2&M?O4V8_Osr*E)}=dCzZg0-
z<S~X;$Ox-q5Rx?}Xw5HWNw3z2?b-Hq%$S5VYRZwgNmIrZxDIiWoVS+O<kB%Z_CnI=
z>OzvKLjPyR-goDNt4<I9@rP28`VV^qk8IdQhGbQ$AP6l;^Cuu@`a-5~JR^rNY_GSY
zVc)1iJ{}Iv2Jd+zBsW#4K0h02;p$4WFW{1lH{mbXj7f*Z<}_`b1Dh$$rK11>54A6H
z2}os9-HtY*n+qCt(+Xa^?BPWXS(O3_Ok;q{2cQ|eS<*c|{uvV@t@D3nHh;PqO>rrq
zGG)x!VO{>qAC{SixP6%Q&hpBS!{soahM<`FE|i?Ai|!FgTOO4P7JJ;7QdgFoe-XvS
z${ZxSLp>=oV(Hn3DBybA0Vm%|EuoJ;L4$8pl2E+x^#Ch6y@k6FnC3I+REpA-PWJ1c
z<Y_xu@9;kjRLNTK1-|EU)P_4Jcv=P-esJbwK^XgEI*Z6@Lj;BD{d(q_eN1AZ7ud>8
z!(O|@j*+$SF#LQtu{zR$Kspd6($rm(q~o?2O|f!pAUa~KsVqgU8;y^*l5F{e09W|L
zvoW-6NK%TcNCC^md&(R%Qd>GtA-WW_bQlS-<cW6%4hbdM`r@@Pp&`+h-TvS$qfN}6
zfpDuRJ{xPz4Y@KIfLo@nEVKC9acx&v(wVTQILCITny{dfo1VVuoelouW^f}>oD8)&
zy1tO#gt9+K@juI1L$Z*GUEz<XdOmoVQx2vZk7g5)z;tWG5pG0>=$7`bg~9?QnBZ7Q
zMkH_m{D{m1%{k=@T}MJs3kgNR#FQbE31mQV$}N4!RN7}62r+Yn%dmD~C|NVS^Z8Zh
zb2TVtbV-AwWo49c<B}qX>*|amhpt-w_fpMgTz(XYmH5gGQD1uYVB5u=<@D*tJ&+0$
z;V*ZHAgB;Pzvq#%MDM|Kja<M?BMczYEWTJWNaDC^$=qd^$KL{^Ew+$1-vdJc-VKCi
zQcL;+At9(4944<nob1SBP$pV}>R43kgX-BWU?VY@ABp=t_aX5-U-Po3r=H3gDmBBx
zXO`a&u5INlh}raU7J;O}F}D+mlv<r(BUM;x4y)~3)zRG^fth7HUk*Bw<q6eWgo9Cu
zb|)A3^H>sVpRr~#ok##yBXpDuWZ!&~+PYMkW)K3_Mg}yT%IarWNLM)#SaUnEg>2n3
zVR>$C+vJl=fYMEbErTFC<QLa$NmiSVvIm`4H&Z@!$_(4kn-QHgoI-gI3q9z!?yqdB
z1*wM}ltU)FlA4ofPo^L>)T8=~<WX)u?Oj1Mjln4|Ri!iwHI<sl!e0tLpik*(gq^*W
z2V=q&uC=F>B}`tdLhA!}xgX4P%KZEsp3EVRXuYUqiR+~zS(C0w7LKpf^(i)>5te`;
z#vTT1Kp-=c>ie(BPP{j$vKWu>wOXyHBHg|$ESm2<PQLiAx^F186$I+Vf-SK+`<7h*
z6A>Z8Pn`m8UV-pn#~@AGX(!yc)q9JpNqRm6cR?Zc1bi@8>`6(IfmvOgxORl=f2hqn
z2fUSM?~ZRF1aXK&aOHPHd$V9Wf8M=Wp+T3;D%9nX{jV{odDYV7aLr0POezRB4$M(R
z(^Y!$*E7Sbr8tp|=)G3l2Bgx3-tQw><_OpC4S?)z!8o79RS>TURGP>pRCYPD9>_Ae
zZ&2w74BJ*wIAB5|m04_$Z*e{j87==s-{L%>t*oGg@2jsMFtB^|L+cpj5IFJC5fb9c
zx}FUl_6@H=$ypY5d-AIZYEkL{r=MHFUMk_n0_)gx{rSlJyKP)6%SYwMJB_)IXPqvQ
z2j8htvt5?o0E4(i5|U{?0*guxOtVmRC)Ze-<z$?^m~2Z0Y}8-kRWM`?TWGF^*?M1a
zn^YeAt<1Hpo=>-0t~0jzRBPy*<BTh7VV=e4os!zKNth1~r^}f?I$W7vqk_*XFSrw3
zsf%RQUJb{f#WvUTvV>&x!=1)}V?$qfhOy2+nxn)5pOSrP9|vbCP1ehVT`5YL9V`B>
zj9Zq6;j@A}LIJ*cBoDE{-4rv+Hb>9OeB}7Cebma#P4Mb}D7h(z6E>h90D~3XsdK0&
z%#h0Wlr>dqgG^$9&%?g7j#JKIIPp=M0wMH;{iXlP*5E^8rVgU>QXD$+at&h5<RzS>
zjFwKxDXW!yI?ck?nN=xM_gSzSH48&fc_+zA=>`im0jN3-akb;xa;jYRu2;KIo2PiY
z{oP;;uRv7&pqf;rd<A1+j9~DHhg1Pbza^xbGILQ;LnqJ1cw7jI&)Y%T)HzG~Eox7)
zn6n_8-D$lvf!28TJ2%!-C{WE8S7%)Btp%N}WEk*K*zk^s;`0n(n>BNIi}H3rD+pE<
zMsJb35)<x}7b3v)B)@U)K%}2PU~Ij2?PG_#+10T_X+E}oZXdh45q}utn2Z(!&TRb8
z$|591K4_?Z#}Rkl4^D5UgMCj%2C2}@-reA+wJHutqpTgG%Gxufn>{75DxQA((ZmA%
z^RduJPrkN~i~Ug!-5*YvwBSH9CuueV^Iq1nc$d}N#wv$_C@`2qRQH5N7oX8sZ7o5t
z&&?U0uax6Y@y&-u32$z#1KhQDP=Wl%r7yp^KEGBjqW?=jF|5$jK`_8^`4*-&&UnY@
z;RboV-7-Jk-N*kA_T#VfLbJ6!Ykpg`=hNZE@nbk#C%2gOWzmV0y1=ZKX<V!l_XrSX
z07~;CbdK!hgx>y%dfj=1)O6$9Fge(i2(q2x(iA+=E3bxE+e0+TKXK+gSWL;+;VAow
zq+?+wHd;v;CnwN?AU1DKr%kVi4Gd8V2z0myors<e?*01!SZu#yZ30GtCJ{LJu|WH>
zGM|SP4<*woXJQ|+LDC@+Xh+ve1V|4_8=GvXB=d+UrZhKV2t*Jx1x(cH;(+8Fzj$J>
zf3*)?OBfvh4!jtXlHNE8-LY^rhap_|fLN#N?K9#)s?%;#eSwBhbl`cp_yqAooN@Rs
z0pSn{T<hJ3Nc4^}>znvF8N7$}3@&O-W}SmDwS71XA>+FSjamQV7vj4a=!co@@t^gs
z9ED&P@^p?L?a##Li#NOUNnHALU*mZ^cIYYczkKKiFFch5xurM2EuoizjhP~c{{_hU
zJWd5$#Ysb7T!G2|NOpwyA$epT7Xck%s|bo-A?-gIi1cI&k>QFh1ySlWKjCj2kos2z
z%{T1E2183$yQk-uqdv7u)_c(T{8zvFRp<Y7{_Exvmue(qh`qs6kdCaUarWZTPOitN
zTL#V;DGcq_v%W}-XE236n3{kX&|C!BN{EA4;R6bNf8xY$xpy-iEfaiJaqhRVF`WE>
z8>yprI95sLrdy4#o?(e}yE#n;obdyG7#UIX4VN)8*>`k%NhG&*#D-~<S{3@&fJC4V
zBqZYFt^h8502#nAE4i)aL=O{cWkiX1MLILSGL+H$5;6Fbb06Y<;f*z%q}zu{it1af
z!PAk?;))~L#^aij&>F4RyX&v;4tq*$tfPWD@5HMLeL(KX6=j@#p7e)!4=0cb_yl_6
zCD;m3aK#SCdc<0^Ahnm&Fup|BWC~g5Hog%7=q@{I=ntTLA+H;G8ASh<C^gEfApMC0
zov{S%Pi|g8NK5I1&e|{Kji~NAbY4wXQ5F+Mvr4;UTgY?@YFxo<<bBDI^%^(S;Kv3P
z;qZJc!6H}#I-y=eib0HMP3*AOICY|zBYYrWFmsYX=YRT)A<j3G@k8|YaB%gubN?HB
zc=3maFMs~<{?As|e|~@E$4g_Gj1-p}+p>@bBM!SR?IQP!FEmqU03RBmLLb$faIla{
z+?jjHE%a1!3EHU+2p>tbsL;L1#6@_;%+ZwqZ8dp2F<CBEG_aygCW?ff?{5#rqxZJ~
zRIZq*CfqZC{5K+xbo11tk%+0zI^K|y?V~C~V{>Jrf1r3`|9su}{q17<La&pwc!#s`
z-UVcT|JGFzJSw3aUNxvX%<}d6W=bt~ibE@qE)f%U;@RMeiDU*Qs|1_!WO9i~8)^m_
z%#%j8Y5kZWWlrM(LjT|dvMyxfrOWt%YcD6-m2F{ky8!(F=0!0WduzvE9ebtx!k`s~
zJGh$Mj0a%4uz5z~+a1$q3x=98*i2h2DpL3c11jw3ndAVXkxfPTY@bE(mo6tSwI7|+
zc$P>isH#SDXazc2A;*<RGm!S;^~S~wMjx%<<=^aVeYfA)fBg7(e0;UMzO)RR{el4m
zo$cMD%|}mmws)Rv{vQAPyMxWWquu>IuXnWbtn+Ah@8sF$;kP@_zPk5c{p-&kF0Ttu
z1-<jZZ#PIcHU^W^9^TjV`Qc@@?(%WBi-)AWyT2ItKX#6n@5O%a9WQt8{Y)x}ESZ7a
z3Z;B1)XKtuMzAhzQ-dH5N<a6Q+?v9|JchD>W|>hS<uoraoA(H|m1CGMzx?vxaQ}C|
zUxHjqh1%qNX$hTwb-c2AidVpoSN`((y%!IU@$co&eq8Q+-Fb-fnTIrjf89X^qL`3E
zzqo$azb|)5UUb&_orf6g^x^64S$_<c(0R!kFJ5%eEnKpA#tZ^aLgny*{E(#8S-UEl
z-GBJA&dZm-=5u6MORyjQsq@1CK5@QR-`P65eTV<tNG394eC+i>2k|(3zwDYe<>d{I
zXYs)OlrCzpr$L|n_yljyq|(|YCyI~DpzGJer6o=qKYx74=@F&Ntni!Vr6s{xr00lI
z)q+0CwPVt?;=NI?#*kUsU(-$WNOUQ9a$)+N4uXY`EiL~_eO#H2G=e7J&DtFVA|*a*
zDxbnj<>-)T9Q#rDnqox7ar`r&qrLL3dDoJV;kH)c+~D?bpl_-i2X}7#>w{Vw6rsBU
z-kBroq0)yn^$c(y)cR@T8LyA)25i(9qpc(LC{Dp9F1M)vyq`YqiS)!iw14VdG=!#6
zKiCo;1?SEsgkyn2hU*cb__T*8plS)+J;T>S@nBa1;wt7Zgj(w4p55M0Hp^X$h##lZ
zaeOQ&P+D-74aT&i^`sC<uk?`u)e{`GV?HVxeo%O8d1K0Lu&70U2XMr=MQG$eZn3U1
zc+OFKG8y#7r%)#XKtYcUUqXg3>Wn(I2}39$(<?JW=MOqx%$$}_tm&*M4;z5X=&vjX
z6Tjt9!VUwh1d-GIEKW$3dwsrB4?P0vSUYn`S)Q_TBqStL6EQ;GAT$_;p<f_|w|@b>
z`~hUgQ(`N_b|IWu6s}Of3u&T((QZQ~1Y*Ua5Y0o4?d7o}CE^4}#(1h1>LiR80hLwS
zN5ceSTNSS9Wx4j`r2e{GSfBXLoD3_|aK2IQIXsY}JKXWw4?C|WD|m~77l}e67tq1$
zhxH)N{dY<jsa#8O!7lSh5U)LW7CMyEe-luH#fQoxSw*B5=+4Q<29ajGNDhZ5v+zVj
z6#Z+DipUa;cUCxnCQb1Z*PH~PL^u~tENSPIL7bh{)~vOi6?sH=37+@q%@~IY+*g{_
zFH(y9rQ5be#o|Im7<r+A_FO}?@<k9Ng&o{LlO7MRR&*DqtRNE;zCZHgWZCVPgX#H5
za!7~ovWDRq#lY=Xw5mRw0iGM`&ss`D&MX*>L;|R3&*Vo&SzORCq=0DKM$R|lBHU%&
z)1`1on{;Y)#1}{(kH&i<%|S0re(u1{LV?DJ%)&sSjV1GxB{JuB69Hw`UM>|fDGwM?
zTHvbjq!h_ed=A{KtZzS)4IH}jD%yEgL)lZ-6;r8dO}5J^o&(i(WzqpqnJ$ZA&sW7N
zQsm1_Sz9}-E>Eab9-ib(AswDx@{$&;JPwvOPiC8DuovDQ;Y_Yplsh?&IAbpdRrl|`
zQzEp!DlTCX;aE<w`F`)L9Wld9NGMx&$0F>(6s&g9C{(J&(3_pH<abGAkGC@8Fu$-&
zgZ@G@OzMBs!s;7KYhSCb?NeBUK}BMwt7nE?Pj38Sj5eqap}BC8UDfww*c{T5e8dLw
z$d5@Ggh4_mRm+Oiq*u$XM@T1<Uj30o7edN<1!<3m!(YJxgg5O@ZkR)clz~Rj)V@17
zd4Blh<U2eu3VIOTjJLt?VltwI;by|&l}QG+iT&x>0ZxfEP617T^*K$z+SuS|N>3hL
za{uzn6F6+(fLoP<7hOcoh##-}lK06r<fbN@Fj?MY@@_QlTY?LG`wnh0@waw4Ebe9g
zSpePWJnBtwxd#yoHdvzDzy`o1lKFS<*>=09XN(c)_Pv?40|*58=qaW`h@F6sTSGwz
zd`q~`PyFM$jp{H!I}lARVBEWmmiJN@;U;`PL=*irJ3&maJ}-i-e^xb3?U$~<44u>`
zo5%fyI9Qiiia3zklB-KyRfS~i?g40_i&4%6!SYSL16^@9Tus-ekb@hY-Zf27LHfh@
zYshr82JBs~0YAE^ILSdTc0?oHaM+VqH^Ynm2`;FPZ>eq&3-Cwdps@RYqycVn3`RFo
zY4HCcVWH$KObj)ys;<4#AZPYMXY>;PRiIz$z5ZBNh=38_^p{}$K!gqd$;Jj~SmyX1
z_gOFxQ3|JgQ|&i$V1nZ0$Vn<l=rrnC&!`HH${)ikP1Avu9!;j(y=f1l8Xgfqam9D5
z@%98Vi|9vstQVj@@9af4cA}HjZkD?AgG;~dlo%+eSuZCW%;nQk4mGHpa{f30&6kA2
zkAXG#lvybyj(_<(5=UU5f}R!v36-iuVrm|p)|TfZxaPviRZRyxaEpANaV=~h)$YN1
zvap?|L@BOtCzgS<MWWJ_F)3e@3?}xO)X)F-QO<IPA@LgJeE;u(yz?GR!TAk>Lh?bb
zYUbIPKgJ<1-}6pe76w{et~{3CMV*<a1cyQV9xH+nydA%}>o;@!4)kSpM1kRuyg%v4
zn9wZnFM4?cva`<&#LPa#TS#eZ&GcVXWj@v7lWR%hG%Ct?aa-_}jTbCqq`Arem6}u<
z%epe)9ahq1?egw}P7*2%0}-AozCO;2SkQ!WT7n#x4=fm6@Ye|9po016mXpan=-B#G
z+RMa33Y|EmAPMja4IJ_~!MmDnY}6+L-r^SFsjU^7L*Do%F+S1=ptYH?a#%d8t5ai%
zFJLIZT;(&D(0ld+36dL2i`BGhHeFT-OKL^g%%dS6G8mOhDq>jYC+7x*TQp2vjh9O6
z-Tg{C(saFr<Xn}Dd0dZtw1B&MQ-G?JQyI{aJEJ8YKy41G8>qFF85w$)y3)K@p4NVh
zP%Axz^=oY#7^!CE&QTVZTjjxBrGf1C8Yi15^HP2QB@1WS2ZuW++dBt4d)qsETe~|)
zCrA5FzTe&Z7G&5(z#87Qk14O#cwosKGAT>3ZlLqF_X7p4t)q{WbtcR!XWW_eh>Skm
zgsA!7Ri3n+1%z1-!@;?e(m2S_fZ=ji#nTFt_2LW*eKrr0QeU}`Qv=#vyM~GYNwB2I
z0rg)AlTrFdo=Jr6F-SRrdFwt5{@~kdPA&NHT4okqQXe+7tx-Gbz_+aDIX)6@;k$0&
zjCNIKHq^OAm7Q7hFZ3rv^SsTpz;z#w^bMq;+~~>h)i}Mc(-|_^wA`%iIGk}SJ(v-f
z5(B9cNuGR!8q*(*5lNKY?0MC^5#&~&rK-uQ7x#i_wP)oqx-I*RQMhKsB_n)Iryej<
z*)*vl)6lq_9HI&XEsUU%V_ztO;S6Aukw$q}?i)E~1I{JxDg_Un6&I6SVWNKGe+Lz(
zz+zfQtf=iWH%n;QP`hj@G9@6%G@yuT_MQBy-e$5!fe6rMtkKdAxj?mLDQ4uyD!f9Z
znKcAz!Jh8mx)651^;9e#VJJTtAdm884)F!hl@|a3ou=c9U!;-~#{gz+PKW{iBmzlA
z9dQHj>-tAs6eXIQaX(5ZO@6Ok%hKSELVWBqes3G=(@C)ezA+T(_9JavSzrht<7*uK
z1-Eu9T+_Q#gp_h?s5<*cN=ATet74)I_ffug&Lqc_zHul-NL7l^HgL%_<ct~5-6nHP
zJJI(H+7ToN8#+os!G2O86fD>GqYwlgg^9>bAdO~@6|A(;rQxyBXCT+Mse*Xvvt&N<
zwza<F8BMvwKe1|pwQrk%pB{1oNy6qfy>qo|g4xr*8Bz!R4SMOlH`#$<l{|brBR5~f
z#xfN*tdc&hLq(RZdQi*aQRc$SuX<bS>YG|e#;faI9A3q_w&B)$U|fZE(LBEk%A=pa
zHb^5J__~DrFvWWY4fxjiG&JD7r8J<ZTXdtA6cBr?uS6_IidmEH4JLM=u2vi<4Oo^&
zM{xc8G|BoBspe-r6u+{;tuW9rxFjSro%F~kmJDnR!|$t=&6F=H<BK9vUhfSz)*5XH
zfUB~8lQmpgYt$z4+bF7Fa|g40(DU{%PyP(mF5gsjfx6rI#$`zO#9O@`aEk7I<_$Nf
z1=s268dV($pkOBuL}|TeUO<r*+&ck`bzTMZDgZz(TE`DEw5tbAN!t?fv<QY8Z0v)j
z%>zr}6TuXvpmr6;pR5T)JsVO3sj)STv6R~)LFCLu;P#1iNvGyQg3snG9<2W5;m^A3
z*-`659uz+OIsR8_TF&{fTKDgRT)tWPk+txD?y4l1SbL}e?x{-VCEug%6%Jplig2LW
zNJ{tdB3h8`5N~F-+uGOuAut-uz`w;QR6tF{TNBbC@0vx5H+mplWNs%cseLL@j`<=k
z)XavnI0IX>w52@aXq~5!kU)4bU%0Maimg<`RY+WSneqTSP*>7D81h#!m@Dm{Pf_~y
z%qCb_x0PYN-%8Pv$N**AsX();R1~x@B{supWL83<RxxG%I5!YEQW=;kit@A+0qm%a
z_)MR4LI@p%KT?G0W~xwPGRY>nU0dKT>8+o@l@XdX3;fAhdBl}B4f{q1z4NXywB<$(
zVQY$6<?@g%wR?&|R7DWOCrk~-oaMIAenXic@gu!!hw)g@SaO<UH8@ij_LNa>Ab^2s
zCOc0D)1EDv_dTBN@&fYkuT)3xY_BsM#Yfg_;FVtg#+JG4!5SE!%+hXC_kGv2LGVA*
z5S(K_En*ziXz^1y)<NlQCY-MqS^vkI$KIRDfGSq9DispFi}G&zQCGIzKO}E*?zA@=
zUH_zPiAkT@_T2w8=CcSbw{E$V{^}mv|0h{g8%|9N7R|7Y=UW|;UkgV6JG*%1xn$~7
zz6%?3<#$nMfRS*+tpJxpuq4Dg(dHcZNLINOVp_7Z)0u~)GcQDk0F5>ku+mxsS?<)}
z!vo?DqvEQQpApY?pmu}AuZ3u~!24@qZ6O4OM-JJ)QaMczD_8z|gpWPwG*`E{MKU|4
z3?`i)B;wCJ4lcyKS;(8aP}HnIbqfx{UjfOCkanvne56qqez+WM8VA_bVK$Xeq^yU#
zZ!%eWwPsQxN&<;u7}3Gz)^9hz-8tFaJ9@VH<O$%H2qI?<Lsj&X;GraRsMeNILvtG=
ze97BBKiJ-Uwo?wPqI34BNy~K5wx;Qrdo8mKdh(o+v-a8GE}%q{{HO?$nOxA8^%Der
z9OP+poO2lU;F7+a0{WdDTs`r)+TuG*gAiV8M8oKp@GaQ?J_3kz7FTM7P*{=~?7+|!
z{)RW1jI@WRmL6AwClJbtNd&eToTHjBp~^9YHK1cSKJpQg5QgaV2$SX34?lv7D*(&l
z@IyF5#gPQQAb6dbx>Y=vfKRd_(nHFwGl!bJ#$&T)mEb1gc|upR*MUSe9s+}*2fL7=
zZc6&w(mbnSC^_B<H#V4(HpwBpi{ShoGFnN_rO@O-t;)v6Z+CuwvUzm!c=yT9-saPt
z&R^@*ww@mz?(9ADs=IrS_wP#r27<_QC%FUkws&zOmsC~#l%IA?WWoQAFS#Pq#V;n7
z^*&VNOdRE2yKSAK6YY`EiSTeIre+}%3IU;c@-|&Dj08G^|K4TO8nXa`?zGsmc;S8_
z66Bp<W4mhhCQK`4#GBm}^R}Y$-9V5OdJQl<x7-H+VjUVVz;%`UXQZ$LFrOr68A)VD
zx=FE6LRzzsQZl4%{fA2|8FR2Tb4v!O<Ag|FLe|7XXp0kqE=xFj^M)+{W^j5wLW1Pi
zo-ghCW^&%|tou)7{*nxA{u@_%<Z7j)$NK8t*7m*Q<CLmN0bZAB#nubi6H>PI{iqn5
zLr#E_oNXK=rfRcMmeF;R09o3^G;i0V>%NbBk9R)>z<V>3zC~VeXEgksre;gIzC3eY
zK_G_%Kj$#jt<7@*EW)$V_YwdV1r3>r=c8@r2u%4=;2}Zy#Rq1U(v}JochZc2IP5`4
zSRYv>Z}GqHuldNx=t`E;>Ipe)?;dJ8z^vqZM9A+So=72y27iDimnGM?&&lY-J42PD
zuaw03>GA$y=izqe-o5WTyL+A0d$C7!^t1b&?R}&hVHQJHW_Ih);6NMP`@UX}bxF%I
z-e>&Z&whRH-haJ5$a=dUe#O7AO_>ds`SpfZrx!PU2o^~Aue6gQbK&qU(%r>3|9r74
z;^c3%)QwDongR0Ya7&iyKaoK2KlPI>*jN8)?4Yyqxs}94K!!rAhBT0x@NsfJxVXR}
zpeP}}$YdarX;RRAyo~=RKcUHVlrEV~@OUNm{P1VL?(|1mi)#gLDJc!n($qL)iL|VQ
zu@-BxPqTouQyrk}kX89F?bw>N^{fp#N;3rHFPzSg8~DRo{^%3)s{HTkVGdw_bTx=y
zyfl6Vfi;K=o91|hqXD*+-=MXsOh284L#@7cAJPs`2jgSv^=1d{yhmzBW`iqE{1SJI
zTL86~u%eZ9x{z_@N#ctx8qxOVjfrNJ!xIgvGR__w(*E7aPIAO$-VP5nzXs0MJl<UF
zh{(vn+?!8KsD+T2e_DyShvu6GpCgsq2Zl>85Mr%c=)<F|<19@a(Rbtedgcrh<IlAg
zRz^5A{*!e8iI~nDebs%pKm7rKSqZ^!5z;!D4Fb?|%P>?(eC;(&+zi?IVL*<=v_TTQ
zfDjvhJOT9OyCr*40U(0ooB*j&y}%DxMdF8!?HQ!zD?=+uED8q6WnXy#z)mScQ_<<;
zAl)q4t-g$|5Xefp6;CxXf>b!-lR2)uMUD|v^jriZ&2W&+9FQYTEh0Ej0(fD@+`MP9
z2?NOz5-14#jNNsDGW~9tB{bFq0<l&Eq%rM(qsT3Oj@U;^hW1J<Wi3m!VQ{G*IyoiC
z(<Ox5UYkhh$TYvf8_|X`d9s8$%kb*;D0n7hfNebOBDe10x7mF59nJldN1I3DA|Npn
zHG$h>Byub=qf!urUJa;5TV!ohq45k5xUHSt4ht)6cbQkkK%%<=$03Nco5&lFf+KOL
z@S7k|tH__c;X&#kP5MT}B?x(8XJ<TytE5W_y>&6@!E<=lxuNOLBiQWL_QuBdJBN?<
zk9If<g*Eb{_#TAm0CC1VM*AoU?XskhZZlnzpIYYTl2aZJTS#^W&!g=hN!b!EjD331
zno3n?inAmOa>Uprp=+5`a&f5wF*j9cz^p@tgLGC5^sNh`yT>Ahu?#rAa^f2z+%Sq$
zFo^LMWg7@q;}hJ?k$p>i7`+SM5S~B;(5o@Hyq+S>j#PZn6`czilqdv}$du<-uqNfv
zvG3_T+<AXGz#GfR2H2I2*+GVKWKlP;xi^c~pwc+(b?n*#V{QUWI+OF!%|*X+-UDmw
z;bnUUne_)Sn&l}fW+{iH(@8Nw?sUXd<u~$H-nu>u5i}J?q8ufIwHO94ZA+Y~%prh6
zLebQ-M)<2p=ZRQjFxi2#%)lvwSswFf2Bd_<nJr9A2XSl(Q6e}S2<+nq-RJ@W?+m%G
zPTz1ozB!soOER7F@#q}}B{kJa`fs3H1wvC@>2FA9$$)<kGBeydm6<L{Wmtl1v4%zl
zcO*1z9_j33#nXXmCi4t658;K)=zj(|kOdxmnCO~g>y1Z$1ee*>b5xw4&AdHbIYp!1
zmz<*&VZcdAR0(L?6pv%)l1PCOjj~gq1hMy*Vi+nbF^<EkV7Y3kA=aGlGbKgPe2$N)
z|KR?Q{x4O$Kqdvu<lTKdIN4BTP>@@oE=(Y;%L&aBX@BcDHpzD7@Rq<j-*zgfIU(j}
zgrJ8mK|0acSftAFUD8DEQ`KJWNuK~q>lZS!^|IqKT=^t(-ty95@o*L@q%)j!kaw#i
zf_a?}Z0O5pyb+5Q87+yNzI;=D)(4*w-eGeuXsdpmB%M;*8vXPFB~d=w5lJ)|Z4dg2
zDe9^vMMdGcYn<hSY3gIZsz4TXQ?C5%JfwavsY1pdZM)1gQWlgPi9m>d7NKHz=<4<8
z>Q?iUT_L9x{<=cWox$;AB!=uwp=llO-%N4#8-9a7%RkixTi+yB2VguVZN4xJ77&i@
z*<-YMn8~c9nN$W8;T0*z4{y@e6)&okDtBvHkQy%}`*zbAH-Snn`mRhyH{(-!+gwqA
z2GT=P#00uV|8k!1o)_&v-4@mvvL}ktq93i}rLK0YAN6m^xant~!dw#2OH=}CTQ*n>
zlgH!H|IgjKH^g-udBgwnDMm8c87vLD*vW2)Ed?WFlOTx~us0i!cn}O|Vs2qTwj%4h
zzrSBy`gZ!986<n3-DjMLnRB|UtE;Q4s;jH3PmLzs{BAv@<i2QlRrC;TB_F03p4J>_
zF3}I#5s7^;8ew%~A~7N9oYNHVgba6iz?w9j6CvEz-v;j>Hz_!{o(kEdtH#PvhvQx-
z8M4M;MU|Ct5ln#q!+9%ZZLaAgeTAKr(_67c;PFPOTdG%ZnR$7IcOI=08{uRYs(Nci
zRT~s>7q()wcRE6L_CW<_5H}rG4k+h{P#Tj78$%;pFN0n82BI>i_7ogN1lVaf^pv%|
z2Hx#BL%+mCX&@;*Mu=XLiPeN_?sl3$RGeKMAqnp9utHV3O?>^v)fyfTem7ZwH!y44
zX4p$SR=B$9rUEW>EJG6+OsAGrp2Q-3&a!)?njy?X7jI$jx@a8n4`;{ZJgZ%Z-4I{k
z`1rBCvn#AoSKc5iFYX|}M5bg|xB^M%NGe%F(^KmPEV9GBbNzceJ4**>@nq@cOZXAz
zaAJ2ZJ?zV!N!ZXmnA15Pv-$G=g1HUZ&vgyIZs9tk)BRnzIL2^D`Uct7=;Uyhuh+o@
z@@0c*vTge;f6F%@MsNibzCc<1Y>rNGf&0@C6Ht`tRK>pjfSTOq{cOA)CTYy{hN?=U
z%vLbO8iu;Q{I|WWmG4%cEkj;BkQ=v=9&c-Vb8TfizIX_NX!*Zvy?DO&{qxnWmF11q
zCwp7#%Uj>AZlUfUzVymc1PS)GxBm-)B5TjL3HjlFWUnKH@1L)&ym-R+)rY_T19dJg
zy5o*J1VOfJyF5bP$MDh<jY{WA-IA(l0dp7GHFNr6t#HI02MWc^Qw)hf^&KRz&Qaom
zr-qYA77?d%E|`#babI@NEpt{+9xvUy_hC#vB!JR?)@s5^R_Y$|L{D%C^q<#Q5Wwx#
z=z&Ns+_GZ+E@nFSTTo3}XcyVjuvCnBr#fsC7@dg>Fkm_yTB~V<*p2c@H7rcHp7yN)
zAwZBrO#qNzhtjJ0;V8RfFGQXE1FXw2&=EnWME}54w5wd>NYVb0q)==$$#LMZTnTW{
zBe@L-5}r9dUtb?*36GiCKHYHG1g@0uvhNjJ5?MEIXtM8n(9uca@1kUI5;iBTISZ3@
z#pX2>(rMyjogYc}pW(vJedtm+4RD4Xm-B$c;S!%91ZIGTB<=LEa`D8WpszOK%h(Ub
zJCu#8bT?h0S5_}A!8<t_QO*p67TI7#b%2RmPFo@IK-6^)S4dAVbWD>?`w-*)<(K~<
zCJ~mk_=SJ<40}WpusN_{MT{ac<M>cU!+4Z8RF+e*)s>9{=Zr0dcNrdEB=tW-$dInY
z_v1=^v9A`2H2-H?d81yo;w~HkQ(HVdM^LdW`PsCzd=Q2R{_O({6Yk;kwlOhbmqP1G
zDDoG7np5vPcdO;$a3}~|zJp;T)To8h>U{Bm^g9;vp;+M2CLfl6Lj)FYt!;|@$GGYf
zF<p`c1taqs*#6kXn=&U2S7LfSIT?*E2EV`04*+BqnNAFMZo5osaulMNskBF`!(o+(
zE(iN4)|r+Q=3*;YfTF~-`8&_uNtEMs-#Z)~$ZZr>9q1M+LJC9B^r<!aa+x1Cqogf%
zR?!LAzB{|x{~3{`TA(t4tRqh$V}QaQ<G%LxWRrSv@t*z<`QhWHzV>^OxWcDs$<)N(
zruW6$^%h!;P+>knby+H+_!y1#Nf^FEa|s$E+3oierOe>`H62=5ZCzgOzZ>+yiAT1u
zlwn{yPN^_5yzg8%D%vF^Py%`Q2&*%s`8q$_KY`B-mv~(%&#S*OD{0!3*Lo=uXpa-c
zD2*^P^_K?Yj{9Hn?eGy0J@^p`m(U{&gA#(>Bi<e(5r9#72qaS;BW_Q}um;o#>lc-B
z3*6c^vr?qF?3?)lRjNzp6_Bjcu_s5UxY$Iy{tj23Aoo$@Aw(9Yo=!iAZLNdF6qQB)
zC8-dV3uU!Y08|Z1W6-~yD}nxP#PgX@f?EdbFy0UBdw@O4fS!_w7LOvW1UC(ldXz~&
zQvfP&Vu+>79izI-nxFzGDj0-}Eqz{Xy|?zH_vq{1@9%#JK|x+2n`2;QX4YW=E71ya
zv!>W^EF5Q|&}LPxm|2w=1A&Eo$E!W*mK+_R*pbXK1ukC^m52Yq{oX2?5NWhIDz$$9
z;NgN)v(3#xU*zhF_Y|?^sA!=jFf4Ft=W;Yan2S9c^ogfzAUs(7V(|~$PxuOxIHgLq
zmg?Wz-PxVo+2t~-*WY=`aT7{l7Vs~qSeAd!@*kx9d!|eB@}P!|vOLjwW-$0CT+6{x
z{k7<id!u<#&IVWFz;*B%+4dJ^QBOc%{`yQ8zlh|e^qyM3v1CbsY=Jr6i0bV|A_B3M
z6M(4MlJy0{e5-+A_Rt#S&^G995B>tO2aoB}5`+(CZ7|A;?qekViG!9g<UGYpwMAJu
zRT~opO6yRrPo4ZUmYXE?0kAy4`2vv<d#jt93@KmT*#2&5ZvJ#~4AS?X?f*PJy*@=6
zCb;#myMKWN*9Z{>2w6Xb&NBO<1cDQn+pBxe*0!E4Z?7cKzCSy}9p5L|0f&sIlsW}k
zliulgB7&<O;L0{`wOaXZc{5@bEj2_ah@+!-;GPbIDqo*<;P?IZ)BlK&p6#D-5D>M1
z=fnSqU~rQWLUkwO*C+4bK{`0U<Q5RVtMp3XLon=LpIk+deod>0C3FkZFbekF#;QRC
zih|_=Mgt6>C>A*kU`5I_`?Lt>rgcw)03+xtW(wB0Hs;iiJjw>Dh7*g0ov9oG<psr_
zh(cwZ=P#bGiVY=#B@@eFw7M~+El3oq_S0t#;b$Eux5F0$N7f;^5jUAd)nw{=v}Gn*
z0yQB4R{Qh?@d<+K{(`=3$OEx1V3=V9@y<#OA0f8GrX?`TJFkUFKt9jag3^K<rg|YE
z5Fd(VS0zxwAd$CW0AwLN)cqXUMQD9n@d(p0Ove|B(oH&E*|Y`P7+Hg=kByNAsT)k~
z3vVM>7Mx@Ih-4K~D`Y)-0Q-@YE0?|L<0r`fG(Ld=B}058cb~I;;wJOWC*4Kz0&P~y
zjm0a#8tz~QCeFdhd0LD2@eS_G^%2!CzDQO&4kS7Scl9CGCtGqAo&-L!9=Hr{NKQho
zx$ppc4KI%VziV(Y0h(d_`ugZdFTRsHu;dQ*C4IWSr*R6^iCejW0lZ+nuf%%_H2CYz
z9Wvn@Lg*m+h?iy4vk5TPi^I(zg5jtc^Q185?);gxMj!=tx6<D-5y|S=Q>kU>FJj^l
zEV~`Mz~G6b$;Z&1;q8(UfQ)6gtBE6s&Gc<8roerkH8dfy4&+N+&1hFlA^u|}RJss&
z0OJ-0DB<33KN{RWeN7J$3^<sUG&nIsblC-3hbB`aY>x*K83{J%-y7`Wb7$dtuycR-
z$Nk~a%lBV?Shz=rqqhSrMB@nw?E*q!D0#Z`fS03-Y?(jl{jLY|Gnf<BO*k0_8k&L<
zLtGD!bzcSN0fN$q(s!Se5(@m`OJ2PuQiERl?^m{l55HM8UrDf9wCsJZNeUYJ?BI|q
zDHeU`17$dGl7ZE}@CHb+>d7eVlJhMfVOsz#1qK-OKO|*oeD_}_57czVyc`a}a2STS
zD|P-SX>1M%U%fZR3RN)n{hi{Wq6XwlC$OV7mu0Pp!TX0z$A54-0uRi^f9PCHD+Q^*
z`4g`AjetGw$m*DM4B{uwDNst+H2u2?6@)D4QJ|?jKyShWVXs;*gtz+B>!NFS?#S#{
zG4wJ0ruE`lU2zd|%oM;)C5@TT7R=_yE@BJ=3gZ*C1>)hx7uP4;A%b8p?B)3<t54Uk
zXM(}(4;~Nn*TNhF*YO!V{_5=d^!4cS5q=CG<M-FSod?4|zWn9>;PI{9!-d{LZ};#H
zj!7=!&jJeUj8<RvcJ2&cKIRKNNnvpjgkX3Aqhv=~0QL0P1qNwR%yGyYmh9aI)K|AD
zPhNh`Oal1ycI5Z#qqEDa-Fq+n>2)uWHob+<Q8k4rjurvg+udR3miW)Vi302GPCl0>
zck@R8(nBxg_3q0I+{OM_=mHeA^1mt4APHbC6>t)gs`p6{*?k}JAiM?rDM;Aw41*6D
z2E?3T9Cvg^hYM?UHgEK{Uyhx;5?a^`_l99K1<M7<p};5Z>r1z|APHa@%GE2jBc{`w
z)w*I6DGp&HOj3uYngQd};8f&!3eizsTIMp7Wkc1)XT3fa`J6>8>tS!yM$hQ~8T3DU
zwflas`1!)_hxyMYl>A<`bg;MYb!}sHMiPt1wRd_AUpKtl`)55RSa0zD!-CqDwjp73
z!CX?lW=I354ha%_cNdlr&lE4fIi}yhDrOw%j)5ZzFac?$0eZ}A-jG@FaB5+15{W<X
zaw*n;QqU5IBd!?M#5%*2vV#QWIAK3%#YU&H!xm5~+ZDN3!h#nRMjxD$cD~NyCUguy
z57^L1>4NB$%MfkkB-4Eq@mbR~O4&zeY_@fiQ;AkWxPpThkK%4XuJjLgq<K9W;Idb%
z0>5X#;jbf{BTy981&d|R!H@7lO5_c?Y^Yk)0yNa|=w~1W`Y-BA&V}b<|JC5}##dO9
zU0yxHWZZ=->T`$}OhKD;_`M|0RNCO{UHpIH^T!MQ#W@Jxjj!Bm`l!DsHkIZ9j|6ac
zArWRyaD%wOx>%50j~=-wlSeqx{|MawVe&I3NqvfFhcFO1LGeHgpV35Sijgjcz)GSH
z&RQ?F)0g(?yQMi}MBFrLfdDc4xmctW;E(w&>8IBstvd;QTWF=@1X6iDX$>bTZVw_|
zoc15aP6O*{loEji5NAKa)#2boh8O|RCD~%b+}UvcC=2p7Z($u0!GYY60!1T22|){_
z7D`=?E>89jMv0YOVMH#D(-FWTSy*#~6)`OUvL`taOp?+kH_I1rL}dgMuRsa(NoGZ~
z#~VzVjd{8bDFA}OAW%+s`V&V_uSv%u4bNj+_=SZVWDPJ7lF&@7Y?;S_rTDjbxVv>{
z@$<*zi`@_GxTymlap860bPRNj-Uy=tol{<wDqNr}_L-L-Ob>~2Fi}72fc9xACgTHD
zl$GBNBKk0*6}rKi?<0MbjMRI;3hwgV-Fdj$=d?Sr0qn#|`dC*Zt~Gu;JXP8Rz13(C
zdW>2H7Bj_`*ok7yr|QCtdI><$%j$~lP8(g;rbN*;QwZFBj@4Pl$KDFN)1)W{v<i8d
zNkUNp!o*QJx@6bK+6>vA<2AxX?-11@J4^o*t$2LgU=Qo&tQ(@adjICkLb<HUOfKT(
zy6|XBr4?#t9VZ=0W#Mi?XwY0wEG=!UFK;9F$+M8yZ*%qA)xTjfCd5gVg@7}0HJDR;
z5FGak`$3TV{PyO}+f)0BlUVi*r!4K;?h}3i3wz!B!}<HH`M~}@w7*~2-!JtqnLfcO
zkAv<1ehA^1yat;=WnKSBf`*fF&;kjqxVQS+#i0_DG_#?CoIArPo?f7~5PC4b&r`wv
z<F%L$6jn{c7$PGs*#`3r89`0V>7#KP=4i}@(p%TBpTn*hAiNm{<ruOYo69t8^QzUx
zG@!9;kH%JR8ELuBmRftWBB*a+*NaxBV<o0Rv!S#<+UKMvTBoBUm8P0a6n)8CY3;>^
zZC*D!z<J`nMI|}Hn*N{{aP;LkA?%OH8<l~RLg;4><qzbTq|5n;fKb6!wSi8`mX^2n
zIqw50^KrNr6l_CZX_=#~RWr<6N$%_hi8wwZi$|Ug+~Y<)Bw191;^gN~kH^Cp>-rMY
z8j;PfpGyis+5b@^IL2JZwp7I6xHD%SMn}hzo=!SNWgk9W$LS#SG1eUH69hm7R<Rbr
z5)3^!k;%%_!!{QlDg{~=D~^yZSU6yz2W(#Uu+U&+t3X_@>8T8)Ij&)}X8{bJ7@vt)
za+BaD5WT+4O&f9b(L=()wm3td-RzyROj3`^`_y+~Yo(g|1bHUmQ^9%(%O%k+ZObDk
zM!7^X*5D$^+#Stjk{z@r?VApT*f$JleZ`cjz_4D5F^}bzr-eSsP;1EK3Ry-a3WAis
zMRJUlziw~hpS|_9XKUNKJ)Ovy(1>njY1A2<BskrEh?{i4hiYZuoV?Bqu`?tx<kp}6
zfr%5t!>mfR3uL-|*%xHLb(JS=bPctvI%GkNB}p=5!kw^bZ(~4hA+qsRGCD+SA&kx4
z#|t0YS8ovsjEVOeU(K|V&V=WnhM-|~NnA#03F%9w`yGlchD`d}Bu6VEoP-(n5lW^)
zHcYl`&K_J}{;<z2j*RBP01ShZ?K3l4)Ml{Ox9&JBeJ3(yUJLAa>n}O-f*$Nz`O61d
zD4n`aC@jD@Qfi=btcQ=>{IyQX=1MGXCM(xtPIe+vh!m3hnS0}8rqhEQM_X5B^cv$K
z-9oU9k0)5Yj<`x)=+SeBR64N@d=;Xht+{zbkzx~(rO`QVw#dA-^bk@Er)g54mL?*v
zr~n%!g-R8GVW?y<Wa_$}$wu6X-YSBn0Z2?IANr7TCl;Nb!B~xbT<n7yuz+C?{Q4_R
zvbHTVO|(^qKVriLx!g$SD^2f4w%Gi2$x~mix-7oIdi5iF%Mq)t{?c(vq)O0*xlr-N
zgi|aL=i&*86VXf1SpXkNGUsyj!`V>k;<{nDWlIP!eP(IVM7+6$rG|`6xZrek(3#`)
z{~a44o&ouP*+eiKwQeJrmP!~m*dhOWt?nJMOI~V_tLss&0HB8RU4_8lRwZg(4QDN<
zqSDgjYN8U~ci2UGGRp;k=o$qhvPP8K9%3y9H5<DFEVQcbN~n<q%c`PW&Fww^dNjEb
z?QQB6D#1>;O8f9!-G3=ZTji%4K(OH@h$GZqKzM*Z)RHWkL028D@--+#Nt;$`#r}J4
zo8<OnYzaD&0VZ-ys?+XnZ;0pz_*HO934)R;>46_|;3MMVWm}qTZw|QJeT;va%?hX)
z+BRkh6NoA%no%WU0aLdgR1qXh_1UXm!_G47gRw=b<%U&m2Qf4Rwi^vG<8yle^V1Y_
zc%#2*z~x%380zVYRNbepP8BRh+FDMelXioi)@bFLG2wVa!v+I_`=}N7EN$H!W9nU-
z+*KQ}ZuR?^23!C7OyrB3@U%`|CNc#i)MgWxS*gFt;Ib@mDJJ|;3L?NsS8+veK9T-}
zP3o%~GcJ<6yTVc~B!Ya+Z00(>T-d}V><uWFwXWQmE^f3%oQ1<s!n8Aj)%YdMJe3hM
z^G7)brCpY~_mCit1F0+Zk21-;a-4^5$2(MES@^(z%bjfWW7;M*iX;x2?v3kG|DrC`
zG&Hj@aFl-9uf{yZ17o5@k>>sn>QOJW(?<*amry3^;wwe8&qpI^z7rlL%wIz2g74h3
z)4G=z#;L+b&V`A|EbFMIsNZ>oFoT!e*pwg_>hfGbdB@dpkiRRYyRA2cPS`_4c)>?6
zH(NT6V|&=e4E!B;K%)%Kmy|iaTv%2}Q}npft4c?#Qjqwa7^h>UD18FL<@7Jy<m8Z#
zT8fcFZi%m94=_A}cOKut1GY31E-2*@JP^OFFpwVZpM0c1a081DqDDl^Z#Mr8=Pnsg
zTH}Z}qh(4LO^`Oh-VkXOEq94clj)TdmDRmY)S&TPn0Sn=fH3zZ8<eRpP4?#>R2vQ=
zL3v%(TyxGu(dSK81QU6z=mf)@B&b6BozK`7sdM}N?%9XislE-8t|4j5>EhbVj$i6g
zEF22(Ew1P>m7{!W1M2F{PR6nmD1|7=(dGDHfC-{UXm#lpmpF2?2ggS^g(Msd4n0{b
z@Wl?FijP%$>}a8kOgA17yMuW2w3CRiUSxJi*%ZPWg$0SzB7(Z59M2j+eAT>MFabv=
zqtj$>KRK_fhn8xnN*y_xi}e>{uoy6($-V?z#Mdt-TWgulQqgTSXX&i;Wl^$WYJZ_!
zGuerT1v?2`$=(2q8L$<1G}J{(;ieQ90!tBuVA!##u(#g`i?nT0Lo`|y{r9g1JH6ej
zmv<I!e>j~@%bIGzqQ^BV&?vm)p^P7v5%*#R(})UWH7E!A+(pEPi3#wG?F5MGkcF<R
zK`Fw353l8ws7%GGu;SQYlqD!x+>b}fTrW?s$tg$Kn|l62x1*N2PxU>OM8Ql1gKKRL
zu8}=Q^vzN)0|KgMzky$D32Ay(H=i%B{|fEppuE-mY1Vdi2kw))T!rYER9|KYZLZ?d
zJULsQYzcl6LRE;4Q1xYo&^OCZ_IRl8R~Vffl%tS8t+)N+>C>%M+aLWTVuZ$0hz(5A
zmyXaMmh5~=aeDqy@82a)2xeA1a9BD1+C5SJg56)7C|>z%GU`C<4``h`@8R(6$2E~3
z)fJe@a#&;p+qu!HMMjW@gbiGFrbkkK(A*MfP6x;b#BLl;VkHRVC=D%X0|1pqL6%a>
z@<>p>6e%w5M!*uF^>%!IO^xb@gH7&-YN0_ync&RA(o(%0rZ$446lgjaC4PvkUlm*`
zarN5T?6lp`C}U6|I}WrpI>j+P$xW)!^~u*FU7JDJ{Q<e~Kz{$r6R=DX7l&#2WV}DI
z(qU}A!AW_4mgKr#LB59*95b+2Yly<RJi^9oK7y7Cf~nG68<TX%l3>VWZw^Oqv)`BJ
z=YCp1P{Yuf*E9hK^Yt}$k+0sdC&_cL+y3Om5xFO}ZIOTsXh@!--A#=QEnZ-~e{?cF
zxGEl_>f13+@aIs>O6ODilx&f*Q%SepydezcGO8(?MOsnWS2@#a%30*+@W#oBWA|AY
zFwoB72KQn%5-gBC2*nIM3k0It)Ct7LOB+#TD?7ch<%2Wu#xY^6E~rkBY6>QRV3_pr
z4u)RLP^0D!!XPDnmm!cW;)BMYVW{}S2Z-N&SP-a3i&@T6a0ej7{s!v3?_=K55qy1c
zG`?hzmlXaW2jvw_c@nWU*jvaEWW5g;(j!oFplx6n1&&U6vPQ`lXm(k-wIVM9$tm=!
zb*<@2T^oB<7}dIQfXH388Y{=7qy9!ZnJX9+998cFv)sL{RK^f@H0`5bspx#tQG3Ow
zcBOjYrH=X=CIc$fo%=d!Z|b=YW|J+c?)=(O8`SFPd@?Z{hHy@U?XXJTEF>(ZsocEW
z#HuLBIUq$t6D3oRCk^10&K6(;v{XKa_1l!`CPKmvbYRkPf^YNW6gne5fRKFG-+1)o
zEW#t%0k>1pKejB+Rj^Rj@Eey`>N&!Rmy@GKo04`~nI%MQ>pTKeVx`Bka+b6Ue#dnl
zQ<5b;e)RZD<%(3>k__9-w<wLtvu#NX&1bBTfb4$_d1!On(C~_+Q+SunS+fjPlws7>
z<ESZ<^&#pxnk?)~-so6iCy}fW1mXG@Cle5q%4Z}E2j*i4BQSRqAl)+mH))gD&4N~7
z;&Mtr&XdrUNgs4jC?Y^=0AzHZ;F5*rY|5a-a&4eid12ZVFjl4t0`g-`FDsA>f{Yhc
z*<sEZrv;?CidW%-78Us2-L6$=1Fi_qFd}KeZeViNT|;;V5}-#4OUg|JRZ|aDSSZ*H
zY;%NUD{$~l<2}VLDP0ANkt_?s;bbjzj8AvH?xvoNbwM?Ms$XVlrctNbL>Lq=-T}H<
zwhbgNKAeHIVzDkj)7dKAvp5CJG?p?r9Sp@134?Spdr`KE8<-+5HY+Q&)~Ysxkz<9e
zH~SA(m_~DQeL6+-HH%jP1OIK$bN)i}0}sp+v0RZI{8X##>1<o4bfdYB2GH$h@wR@j
z$36*Wn`hM;Rq#fC2j7iy3bvIDTXJ9LG=>hP+OS$5AB+%=GldyKsWvdn*H`B!=aw}*
zUq_`PI~HpL1mivy>YiO`$u@9ndZqjZa*t0VRbI3WAeJuSDB={N<we^8B0<b#^aPoa
zr@~80wt@SGmpOCw-OXaLSR0_fj^6!ret9?zP%PF4=m~P0U5@oK%5J2xl5OC=J3qzI
zd1hJf<c?UZ4bYZd6EX!*EY=1H{Q3sDg{Qy?rP{!3U0?9Bh$&z~sWvdr&#%Tu;{&lt
zrz_4z={B%-4KMuLC)e=(O~JBJx(aqYS$>Tq?&r8Vv<qHVtO^Ly6_bsrB6u|3e2ZNm
zTPjq6@9kZkZ%J;Z6k_y5#<$4xJP>KuJ3op!`&0QBd{sD1DO<U-Z7^7mc8#p`TGJbj
zJTY)Pui^jkE|d+VM1w3r7EQ~CrFHgSpXh}qS|_--a}bzOe)gWJ_Olg!&HJ{0z*}a8
zERvrxx&}euwX?H`9B*nx>>>9RXspXl>=Dx3$Q=({%}J<%dKuZW=GTTd0OzBSnVUt?
zBU3CPcGw?;c#3kxh+xB2-k!?^qf-WcUeE~3_KA28BsEi9tw$7O$<Bu5whZx^o+I5K
z<2}(&pcaz6I3)N^Z{Oo>H*_?Fn(+9tK}nS!keNSmSfb!(-DzrJ1nx$hV>e^Bae1e)
z$!PKpcjTVttkS&d?I}GJm%I8$w^3RPZC#u^1##AJ=Q&2kKbnKB!E*!~cn<JWz6I0a
z1FxaQD}Zt=9)XsFn(iYw>CKnL#5F3QFaqP_GX(H!V`OFB??-d<dfN=#L+pW)hFpoW
z9Lf^pV_s>3`lpz_|H3v8u3_=FEGZ0}H6RRpBt6UKP4EbjBX}PZfU7@$j$WJZcoh*v
zs^S?Nxht=~9rN~}_V+&W^+F(m(*t=TgwxzFp+p8QL_!B#NuXGgT-Rp@%<PX;cga{Q
zV|xs`(M#E#o#VHOd$!nPnc?en+eu6qrj6tV(>IV3d=*`Gfy8oPK{CiU<~$Zi$m}<M
zD}w?&;jcRmQxS&<U*)G40*W|Zh}a{ZDC8Ygwebx|ZH{oA0f!tZMT9SmilhpU$EU$a
zN-uTr>389TSi{C02TW!B8JrUFk0Yd`W4*oQ;|7gn+;%#Gm2nsX9Tga4&1=k-?Q;#>
zwWfe(XjETI66nhK&q4komq3t&5lQO`3&=G3VP#7)(=3E1PtLENa{3H(UIERh6S0MW
zk-k0%(O1fD;-GaQB-?aw9+uNPQ7Sm7qB?^;Qpr3;vB<={<<&CnVx$eaVjhQSMR5YS
zP6C$&0Yis#HxU&6a%pMnuWK87PhM<qkwwD5In?1JY!HlL*wCo>BsK4IJY4q-5$)HE
z)o*@wHDQ0l?sUt}c(PN`R<x>E0%8nAlY7_55FiFWsU{d1nqprBIbYm$O9qNcVE+;)
z8R(|R=%~0PmGMc+oa4RRQzU$df;zTRsv{|5K|6#cp8s^l#j9b-g@tij@rG<zJQ9<U
zXcY~@@^EWy;9ml9v6F1wOWN{BYWsu|-axHa@SnWMXn@Orvfl~#`~`cGKZ!gneeY@(
zbI>@8gr`9?<(^O$!Nxf5Z1Ta(gm(Y4omczAe<5x1aPQ@3a-eNU6Y4@^KSXNS#y**V
zx>xFJupgoocaUxwwUKf8{s-nK%d66zlDO>D)NG(+_h8C-9>LYO$1*euSe2I4>zU^p
z`N+mLAXGxAi0pEu6e&=V7R@k8i*1QXllGscY`{pPWi^5L1m3}r6)M?aODoIOW)_4c
zP%xw+%9o?2J7h<u>q0x(k?;$uNSBy)%<h7MlAZ7usfCT}*P-f!DF~58IUkZwWB%y`
zYiCRhod)*e3r?Ver?E)jL$LI7wecA!g(sPrhwcVDl8k8BD=1;DBp|Il(dtvlXCE@G
zPA*0VShf3=flMrOJ>i<oMF*NCHmTvE`Y=chS+4l6V1fCA;iGuNeCT$QO`LhjA`Ju*
zk>ods$uLNE6=J6;sPlTnB%w%|5oX{wxAvc(gLPEq>qQ=npf#j<eXC;4x$U$TCXn$`
z6P`3`*z_Euh?@_tm}u608|-LbY^c}?vdskmxz4wD{h3#Gz{;4)MT*t%5&Wyymm_c&
zlG2`EzFU>s>kwVzOb59313kcr;}b48)Ax&D|B&O7EiNJ%6K;eM9zta{-rX3M)Mu#Y
zKxLYdGJc{zR|P$$fdb56Y$~e4-8O3tVd*XbIX(2wUF@{M15z_9gz#!^(!fqT%mh;j
zg)s%Pa_FF3;fQ7I#UA=IfH5B~RYTesVV(XWZj%3}T3s`cC20XobJp4NKQ{=5k6h`8
zeu51nc3PKY$f$N;t8!XL*4d;|g1z1ar+Vohc8JcH*+cx9O<C9Y4vk#H!gThauzY`t
zK^r~-3yIk&18nliOYZcYQZJETLsyobB_@aim=()P&sAGZ>qSLuss#WUf&U2&(WWlx
zfY%L&?GrdVv?|=~!paGsOC>mCOg|(ef-xm?De6Ja;7cG3ltf7whLB_mg5#1-NVvRY
z=2?TphYiW(kBoE68<}YW<?v52dxLcG#T?rKcwF(*EDSLa`biX;bNZv#E25DRz@yQy
zJ)_oTuzc0oV|u$yXWN+2nV@vS7gt)gw`i;z4a&wifcL_})Y@wp=@p%*vzmHPsQ1-l
zWbpLr{L8`A6ii|DWBQ`>&bE2ZC}`&9_Fu!k!3EttT_-Wj*d`k$G03NcN)|g&+$ezL
zl@S9&j*4d%fm;%{;x!W<iHn`s0_92kMfD^%_!jM;R9Km1=2+P@I1q@nIzE5_M%OZJ
z)LUZo)P;7BLWo*K^AOrYFv!{H7+Yxg0=kYb*7a6kxjl{93Der3pQx-#!S_sMEouqp
z`SHHQSx&emHh>h(96CWGCMy(g9LN#63VI_ZaKrUDg1gGlFdMCa02G$NKXK55cMeXM
z$p~IFIAUyWAPQ^5xx>F$$-pn1Y?Wo^xh9+4JKet+%msiFUpI0OUjl?iA%6m8kQmn&
z@CW6GC>ni*J6rCH83^KuqmN}^y2JOzK{H9CrYv~Ie)ATcJ-Dhb_lSi8R?Mv%oQs;>
zc{E{?+yq(UfCRdeTYQM#l+5N1G9HhxTLA{zut|iGzlK#M3utR15jLqEF6G4f<~K2L
zyn-yQf?=68pzswdm%m;u9rDVE7pNK}&ST{xjE{LK1102?rHvFu28(v9MN?0D%G5SY
zI^Dme*G>db>Qj+2034<Tx~f;~U=%t2Q=sDdTC$Jzu*bW9UfshESO;90W=+tz+b3f%
z5*-ZY_v5B5v^Rh=EW<dL*@#f=CV<t}Nt!d#s4so@+mrLxOG{Vhn@l`m#J<~mh<4@N
zDK0?xdj6Mta_@)@zsk}`BF#4!<eDq9PjDs*`>Vcj<+Yk_E`%ML7H!nfpDjA2+>F`u
znFLwYJXjPJ4Q4~Drm4>&95OI5sconT{Ya&4(m@GSZoEvT&8)<sM43(pnNzgf!Wt}+
z2`h)iV_do{etC2J*VQKUp1weXt|a8b@zhEzz<CC8sfmdtRY8q4X>J|jyf2#~dJRoC
zijbw3<JUL>JDGx}Y9$S;Zs7rl|C#%ew%gX9<$#;_NrZ7UWJ)WhNeI(`7*LnsieW=Q
zo1&Z!J4Y(Qhg4ASsaO@03mo`DIt1MQE7=zeyzq=1UF0$q<(XHv_fSN<{6?A+mGQ{c
zj7XEAb5K;w^;u@%pdvDT<*N0g7Yp2+?zWPB8==@G?VOCV_tg9D+r71KpTF2#-IL7y
zP+bq?ayr~-6kmP2{^A?Fd8ih3VqLiueul&R_VQPr-+`IMW@kIpu5#OY#7|H+wcRn(
z-W>Z#ijw_ASrDOBr_OiBO-V3?vC}G%r>S)lBN-dF6S>G088+nNpkrvzU*zcg1#U2*
z<BxofKb8hS3`zp=2Z6m=Q|%3x7+pjr6F_eStA3U`HZbV7&3vB=G6!p8+Z<fBn_8_|
zyH79APiaCJxx^yOg^XDqENC`HQ_6(xv|ukMwG!~O9o>?FWrjSwoyLqbq{hqx*;0qz
zj@4lahVA(N&Z~Pbc?)HKQSPF&QV=6fxZLW&E&=z~L%y>v#*#5DyN{m0ix-h$Uxdl*
z@D%UqL_$bj$i&YAZUy4s#|xjy4#Vz)-G}&ZH?W&^Z&qwSS`;Rx8RL}PZz5YO64W-S
z`cmTR04GR!IkNdl;!<U<|F7`{j$1wI?Go_P(%;uM5CH+dO8Rhnc~c)Q9{;QU{Pn*c
zHePTTn;6hhi5nj$PsKf*VuD5s_}~8Bnk~S8^Y@1muR^kvde|IkZo>RZULsBbHL-|s
z^upUSc2&=@Wpdcuc$~)9XP6ee0nR;p;9X6fD;_xdjVR&Gt)Qi3GY#`am&*RkH#p>m
z*U+veh0|ePS`v3~LggK+q&bM`$QCrvVr(55tQYZEQ^-h68eVh9L^y+f6~`WD=Va?k
z{|#-b4{j3M!n`LrNHM}uu1!J>8ON25liBJVGSyg5#WTeF4;9dhGhDRZ0!)2K(jLoe
zOx^2iB>txm@UV<Q1cX-N=*7oHARgglB}IhajM~&f@ZbUxq8#_nxVYljU{TCTIc>CN
z+8$fMC5&h1a2FbE?vAzZip}*J>?m?kF`OMe;l4IrlBA)^6S;m8)}u;A6!O6v#E-Sz
zY>x0Wu~;mJ1xDVt18=W{i_H%(8IeTCrhTvfyGg%ygb|l-OCZ8+E)Aqje6bP7H@#ru
z8OA}Q#W{t$NIjoq(vZz>y_*8Op{`)nMWr<Ab|J^5LBUX!sq_g8dm7SzA77Z(D588C
zp*s|+y2y=nE`Lo;^Wgu2>~0C^bbbJ9)gu0)e3+Yuo;1-D$-?L@xOXYw_<s24{DQ7C
zm(;P~($dQ2>hks~%8N-Vb+G!P_e@y)*OHT99P^YbM0&>gjg6=fh4I6ERj3vEulY{6
zc>|BJXNmx2>>T^Ur}!e<Q`kPyi^b_kL!U!<vO)?5ozoLe16p;m9S<06)4Q&~k<=iB
zbqnRvQ0xdEm7?YC<%pGHPPmwW0UH*_e?np@eQ<)fXN?{Y=CO+(ZhrkHl0{m^Uf>qQ
z`}Jf?g47WN59DT%FVY9j!QV=h^kSx1*A@ulU4DzaWYo<XkqE<0FES2GgL>I0!9--Z
zJF5TpAa3+N;2T-Kki-;O)RPjn9!^TV+l^nto?#)+Vu{`6&3#l@{8YBrY@03>boMB;
zgwEQasOE+Np@(uta=kBi1yg(0@@$A*tm_!0WeJC!<Z+g>MMHRt=h)2%2^cyd!LOm&
zcsTJ=Q1Jy}!60XLo=#9!MiR-Skiv5UvK3P&AS=@V6rL*}Nn0~SW{xSqG`$U+@#mL4
zlpdX&U+_TBLfPXa#|Lly#EhC#uMZN2eY3W{w*6mB9rn%oDx}wacl*S5n=5$!`{wg+
zR=1b&=0T;(^7_Vi@~%?t$?6ZN^$@ih+++EFa2^jOltt#4lO5AgNTCj&h?!yy;%}~0
z-*2wq-RsfSe)TQ!$9n`2y{Q+FUZ8}JMA<xg5>&VMWqy3fjs;hO1pVbtVC*7J@i|sF
z`EziAo|R;BsssWyzRxD~K-z)fKpPIEd`i)nZ8T6}C4sH6b-*#~%md?#E~rABPW_3C
z5vdFXr{0z^uiPHOGgvq7AmiDq^xRhhxue!bph%@|M7RS2+tpKcf^xz?hC#rMYkQg*
zI&#rI&>o`LM#$A8yOdm}ib+CJU@^zvVj*mc;v6h6p@{DKfhrYvn<0D8N5C^Jtqy-A
zmBkK@;L)xXagywC04_|1T!u{;vvu51hZTZRAOQ?y<$4W-JfU00t%LYAs0L<@_V)xV
zCWw+az7Wlu{A99!8?N}2v`_4W_4DKL0k+|AkPcdU&|mIZxDi%QXT5VSh+kv%bBO!h
zx#q)RNq8q56V<(qCO8pdp|(DQH8umJ3bkf}&^%t>pn5so9iJdBg9%d02Oyk+V0Fzc
zkT5|BmYudz?JbNaZZlLmTo5D;#qwH_VC`)H%=d^wydJg44!qYli->6UG{JcIgC;0+
z`>Z%nfZT6zjkd=#3uP$KNe42ftwi`W?a6YI<xs>xT1Vu7lz4HZcnF_6M~<2AMuR&W
zV7v@kx35iLVLFDwoFGJ?otpLIw^0bDq!uWp?f_*~90x<a6bqq*4@*3}8(!su10_{y
z<|&+J+LV``ha5eF7er%buoN`O;c>T?`mKksnOpIu)*!jJBz9kevi&$h|IIPYA#4C+
zPn83hi?}v~B}hA>gCznMh!O`<w3Y_@%WmP9=`p-W_q?M_Yu(3x$Yt#wPLa4kM>~;#
z6|d*NtH7Uzd;l98Zoq3Bbu7;`HRi_U7*|JMy-TOOnmz~?(=xEoc9JH%CX`_nI_!}X
zNMZqK)uOb-1k~*ydy^O$H(e!(F%%;<l8mEa3v@%H)zf7S*HuZ;pu@m?i4_(QM&JLG
zzCg-PrUXGZ)MCX*CDov_B`-wwa9>j(WY3bNQ1<+dC2+_d>Z&PPIeD9Y44{tDz9$g?
z#uoTQx|I_Y%Ehyxm`<@q6P*&#n76Mkm`Z45?A8n{McpbcL6b09N7UB%mEe<(5#@UN
zy92WfHo@i7tOliuqo;i_dKqIR_(fKM87W-Tft5pRB2?6^;t~>#7&6X>2{!(Sl=AN#
z_ymYegv#1gj69=<A!KtP!N;BuoiIV_<|nwxp*4{y>Q-?{Q>Wni6J<cylL<D-Q(~0-
z?4VH!w~1K=Misk|jAh;@e}b1kB2xan1ET<|iB4I&ip!RzS#cSlKNEbSuyOBC2R06^
ziHw11tD7Y?i8FNY`urT%ZkXl>lC2F2PinaI8_b8|NpHe4;X*I#@R}3?CqjC3q*B3M
zBCs5gmIH2ZQSqULh2G-^;=Lu)g*V*Ya7Vy693^N|YNaAfwVkNXF3Ii9w9z3+_2fk>
z;DTW5C=-QEN1<%Cb(D*9zzbD75JZZXs^A_NxUEdasBMK>xQ1+YlVHpz*QXbf`6KfV
zn}xHRq+%~z!d}Au1{P>3*2YRL#cSu-j1X#?Eni;lzf;_4VigOwLv(7&vJL7cnm%yw
zSq?98^6?jQR$RgP%)hua;Buc|WHENaR1)WBY7=Yu^!aciD+m^c7Lg2X{0{#gctd~E
zeH31bj}`^6)0`%eQo!lM;q~Q-A|c61xVeOFS%MmC#<d~0ZcqY-94=bcGioAoxvZ22
zJAFESa05H!{zY=qTNf6(6bnUhs-4OE+e-U-E5f!4dm)9(VY6;hOZ_=18tM&;n^^1v
zE=?C7*%0Rso8XcfB45*`v#f=6lyo^KOK*i~V}t{FGR6&pq}2jJVkM45OC8DoRjG36
z*-G0gCaX1bBb;j9(Q>d9w~*Gb+AFK7ZP^bJ2&PbjL_E~qAkZNm_FKsltAw6<g(_)S
zJ|~P9?;r~+WkfL+_Nq8KkCd8Ca<X2YbhDeDEMKFhw{sI(S~!4(_`{i;jE+T9kg67x
z)5N_|U${CrgcEU$2p2PV(v321O_QT37U-Fad4cG1rofByUN0Y53|9}Z_>S*#y<EU0
z1VlcxElz9Axf9&kGMS`7Tqav}YR9K4V^)%U<Lujy6XxI3kySvDCk;N$5$8HEBoZW!
z2E;^(gf`hU*J2r+vGA_Vf=yf%7IH!+qjoi}3CyfCGWbZ`-QWqL5%xBpu6*&u7k`v)
z1Tk!O8}$-yrMc$v)3C)>J5>?>5M|WLCTQwKY*V3vY@yC<HB5D33q5|dRSmx;%Lx8-
zGoIf8O1usHo-SMY+gJ`?iK(DWo>HrH=HB^bt0LY*b9&!ue!HGrld9Ngm|emy5mAeg
z&m~)CL?r_nZ0C$CL|N3V@ZRI4urpKeO*%L=gGCxW9iNR)uTO(xESrMh<Y&cu>T2mo
zSuyE?y&AeF4HwB0Y*{0jNa2XW!H<Z{lFl}F5f*xnaLXa)lL^}3?H`(tze%ws5Sd->
z`yflpgGS^-!YdnUhy)8Vh^TO;NhgS{9%Y)q=8J+!c%PC__ti!A;Td~EN+vfkS_zfP
zURoxgU^$QRz^Pf#QtoAmqEU-tWb_7#Yz(au$4#1}A5!mrm)k11KXr>Zs3m5%UGS+M
z+O(08vg%wmVTc~csLC4~%95@(GWCI9X5)9==M)A5mE@yV_d1jaNRLnAom8_(3nq`%
zY->E0paHpXqVXz`NsV_G==#;Ws6DiR;#OM!+0M0M2l1--+)b{h2%VJsg0aHpH5eFM
z4Z%&lHRK3MA%~!Xt8+$RmH1e-#0#Je<2e9_t#ExvMpBWfNEL<jVJs9$hJw5)*ia2n
z62h@W@-q~v;M?ef%mI#Vv6{lHcoN-PsYl-he|*~kV@uXWmFh~Aj+)!HOCEhT8TmSD
zMuw@hn^IDJgte|W?G~Uxxgryt=XVX6lEjoh$)<B#KyFOO!`a0EW7xIWe;%FnPRA4A
zcr-q~zQj&6()QxjAwrUwe=(a4y<_BUJ6j}UlCLZ;l}ig{wX#kd)jBu-bf}PYH*BIN
z%$7b@9%gplP%@I+Gx5swt#F%?d`n$kP4%Ei*z?p2n7t4smqEh8lG*XDpk0Od5h;Z^
z&XF-8$)<?qRi@L86&L}cvb%TzNFdqqG0ybMm4Ac&_M4Gx5bo_gUw*c_wXwXiy0^#u
zz1^a!rNqFtHLg2G(j;u39^UQU5HET`kOP8jxVrcK*6QZolT}=}x&o{C3AH0Wsz%Dj
z{ZhtiuhLz%oN_^aV?y3Y6Yl14rjI}*erWS1#Lk-wAYebj+Taz2y_*rff{xgtQ-~j%
zYeUEfqSC-`PUC0SCs*UxaOCph#Z3rbRQ)I}FJa8g<z+=Du5x+#Ho54sWpsY?5m>hT
zIB^heLhCKfr*{x*_lk(%g2}Jm;DR7>J`@_(nZEzQtaH8bRhJYg;8t38S~t7&KTDk4
zguv!HP3WuAv>@vgp`BEpnUk9>JAG4V41i$h@TB*vF)$Luw(d=|>>Q*)QY}S@Udt;k
z<7a?STkW?%G}@I{;MPXTif%~$peX;c$6%PKM`aUaU5J#iwLA%G267`=mc3Q4zBZD@
zgD@TM3k~^0E2UYME~-?5Wq5JX&a_8Zf7tRV0f&d0N(HFUa%Sc=$&o}~L#&76j2TQ?
zsAgMdSaXe|wZifyZw!Z5lCHqCFFV8c1M?>wh=mQyS!WYgdUUkO83{8nanErU+=FBs
z)(>-JDG1+O5%0n*hJW90#J;e2A{zb>hTNlp9fthfu=-&?Gm+pPu2Mt70_G&-f&iv0
z|3?Z5K?_8TT$W{UCS0tqG?4S|z-TtS4637M?b{jMItJNZkh)zQiY{f*mz};n$_k@v
zAw57+Mb|R+U_-blxii4Y6F`Cj!bMJDJ?E-J9SiHG7+ApIk{N`|IUF#Zxz89h3okp|
zI`|gh=w1@{<kL03gYvgaJ@{l_U+!PN;{eL|m2i?BFC|*mvb^OkS-?_PTe?Li9j-xz
z%*HNe>1B27{H^%^(&kp>&c@J`mm^tgt#Ip9UA4hMr!x%^7T%VWkwA7hxx`(EC(>|M
zVuzk_`oK=GtU>NG6haiH9F~J%NOAneZ(yo7)k>1uzO5pkfnQ?`Zno_kNnZ!iMjc(D
z8i8sv*9-W@<buYj=6n_l$!^<}GRYR(%%aK91kc^xFxiA7z>}Uf+~cTC-pFZT#L0(5
z${f-6ySK^bySJBmi;IhQd%L%RV)82>W6wU^-93ZLL;V*#RqPyKb8@aC{C4_I02~0!
z<~LF<d+@8w&j8IU1hPVNqztqrzA0`|R;nnGt2N^OWTjr{t4JY^b}`Q*R$-5^Io%aC
z-=M5C6YG-e>a$Y!G6i^z>wK%zMAV$bM&~@|MU)sf^=%b=L||Q9bbE2`_Dwm7yrx^i
zpTt^5sTyNF0oFNNIZ=#m1&gqJ#!_Cq%1|sF*{R?ZubHwGL%)2sRNh+{80JUD>1-z3
z9dBvLch@DttZc?##x^S4?KnmLZ0Hsu)8Oo8J>%=3P)sJJ(MdPl4$nJn8_$AX*cHMZ
z(O1ZAeQ<=Uv7qCN-SL#F?`>P@!@$i|u}-<nnBY;6Gw`Ephz-PC`cR#eKlo7;yw%1M
z*J}S|6pf1QoMnWo&-aOMe9H|$aremwGQMZ017QO{h4-SR)w~czjg#=OMp=m?Ub#nG
zRkalpiZ<Fr)W4W8jR=~85IXFURFv($@886<Rmq1atcqs$kgO>7lhSQU+>1!$Rt4yj
z80yu8Yn9qyXQ5mb*x8Mlfe1yd0Q}a7uH%S=1~aIR;dj_p@b(@f8!eKCAWze)-NQR~
z=I=e>MuHEU)q%9>|2bJ4SX{(XSx`J0@3^qTMlBnVY&TEveH#rTfEEAhJ@LE#@b5g<
z(f@vX1*dD$d4=&#<17RqM>*s;2}k%WsY%d&WxpF?bQQ`z&*SeR(JGZ&30#ZuX{z)x
z$|umeT0J!8Ga-#Ta8Xz+QN!ZjXKF6+`W_$Bwi<}<TjYbD!$3d)Y`%FM8|TI;LXMar
znpu4%?kIFCK-<xxocO^~4^`ODiW-TPab{l^=4L-vHaq^07x_Out*47=xX6$lWOVr!
z3u<vM((!(_f5IJ(yFK`=5c$*Fe|wH&L$dBhs5M-WE&CY7+GER(q%?aQB~r<cnPhhn
zjWwf$c>Bc53yCNVS_4z#N!)aeyqebuoKv<R!hOQ{myIVS8ZC!V=+Nb)bZeVfG<YBn
zqaT_&DJjrs@~?g~ZfG(o-P)vwK2>JB$B#GBh?P<UD?EkCW04#_PT`epyNZEb2wtcR
z-d798t@k~?Z*+axuDT69k7Yy0%h|05ENq&%*wDq19mNRHJfbU!p(>yy0aF!G=EoZ%
z52odbp;;*N`#c5voRM<8-jP`V%((}<=o_RbICvwTR|gapD~^9E_G%8;lyatbN_TD=
zbyuJRF+fdd8xe#4`@!zwAK(A`hlM-5+^WC$Gj(E7M+Q82scdpu)6y4{&c8*ofvoBg
zOFW*+VUQ3`Ni2Fj`$LT6Y7S*1mMic`t-A1@M;KVw<(WFD8!p$xB({V`pr<Z?&GN<X
zM10}b2@Pn8sL^y#I`1G=qrECcN*fgu6XJ})JY)%(j+o|&g!8w2J(F{kraaQXIaqKa
z{iKS$1{EZj;{jswamZYZT>Ofzl6^V`A>{A&j*(ZczsPtq`VmQKM@o+04tT8h?LId0
zC2eq8z!G(`*h2IGS1j=iDC{vAfy0&1Qk;N=J5>tCa)?#U#z{=D5mJWI$omAKNuPyr
zaME(J11f}IDJ7uf#-I_&L2y*S9r_kuN)#G=R5s*Xi}n(ZE%yitsg&&&_y)j$$2x|6
z3HS3u*k~<vYGdWrL+bl4Mez4EArEs@bQB+ci91j$E*NvY?)2e2hO``tG=h+~vL0dR
z2(%U_+ba#E`*Ai+sVVbJSwZEsn0z`8`hbu%WoM<QX+h-VM<-DlO<s-9u93wCY63Yl
z5$!nU!r^dRW{<bys-oc3aMDD}4V<WXQ@nWqt^G-ttj!^)w%LXu#YxJfPBX)d8eWDs
z;p3EKwN4YHGd7mMN8_Knr{?o(WNjZGsD_d9UfV`tVGahCr_B3Uh$#)hkAz6!g`Ke+
zGNzk$P#e<j--mai99^GwRdRFu`QJ^BuC2>HCl;Le=;obW{%2}8E)OvkMrVhU-fnm#
zo1&VHZC-+<<UGDT_-X(03{pCM1fJym?xm1OcSTJ?D6|l}?6ATELK3B>id&0wz#R><
zio7CU`FE_2wHAT!g`x!shy~cvQi{!OqeVz<Gsdmqu)TP6ZK=0=c6-sUki3l_hMix?
z>3s+dBQjZLXxV=V$tOUi5?ra6VNzGBtX^Ki7_L-u64a~xrwvP`VkFQ<Gf}o9{}(v9
ziraOS!}vn^F6AIvUlOQLb~YUmtrk}1OtHvX2`}gaj;jNtP{gMM%h!58oNFSvi!Qa0
zi71mgavGW;N5I@piPzQX7AxfsGe~-(K`Es6p-MMYbZ|>cqHg(9>wp9HD8w1~VJJZ&
zu$f>d5Po8S$-5k_8uS1o<SjSeSK168DG?My;m(hj9@xnYp?K>uDq)x~%=W1cf=zle
zfYI|CL=kXCeU!Y*Sk;7G>I`oQMNx&J`*}r?6){?hhYq>6*eZ(R<cuZqO0r2l#a(N-
ze6uL(P|fQ1z?g4wC<-2$*$QvS#(z<^ibMUfZpqKPae01#HdlWh9pGRtTK10)VbW`5
ziE!$DnP-pnnR17pZo#bxXE<JCpu$sSQH38Kn!OOZ-I(L4=!jjj{_sWyX-dvBz}|E>
z?A<(s#sg(AgEcJ2sBX=MhzI|z#VAy2Iz>(GOH4M`Lxu$<OX#~zQ|&e1c>nE1-g6cx
zp5Vk4?fo28U(BlSxEMRRsJRjvqDo80wQKq+hMluFVF!8w4t}BogEVyse5-Jq=mvHw
zMm<0X75jU8mk2f6+mrBdrYbqN?uui?QtD7}mSBxm?%RRC^K|ToR>)$KbP7UwboO@8
zUwQFt;{^k;H($Ki-uq#7b8GFzbGsKv`<z6$0IezYAh3eB!|<T?=MZMZH*P|_JSVkv
zEDoR$4}*->Kt>!hRm<GjfFKj~kYkt@+Ckz~E}-`UO<*4t-O6H$h-iX$0$C~=CG#Rm
z;J)Off;OIMNQwm@$NRzJ{l)vde61YnkoA#}fjyDPdauT{9K91|GqAh_TznxJ^jx32
z$>B%bAeP0M!jsdQfik+k3Zy;>ocQ&yWZyqAfllIHSg;7TmCPhfm9)<<AMdoXgweF5
zxl7B%M&vYxs5H-;Cxep{SSXp)r|Bb+#(^obm*7Z$!R*|)AKTak*92YR>Kv*a9K@OQ
zWH`<JBFz?)zj8uTB|+94fIcgae_H#h;g*)d3O5`e^?8J&+FCa~25M%yIx3S4xFC7R
zyY}ws$^LQ7eZg0OYqH0|F`$g%d6nr7wKUAKmR=CQ06lRGjv&R=;7dJ_;>+V}bH%gt
z8WtpAnrUa+^<cTw1*UO(9%Gek&pW{606R+aX}wD+=MEnk*g@=yFpgB8da!*Zc+>_9
zl_Ns5@{;i|Nh!{m1C2H2X>e%@69n!L>_y2D_Heq_$1ATI7(!l02zfPt%vcUoYp@)d
zCTD@XrA<#=k>D9Q29-q?B!g~rb5X3CP)9y-x7q@A`SKY4jI*n-G>-@3sB^>mbr-i#
z?Dm<V6&teH&XdH|*rk(PnsCVCo7~jF$X&hN8!pm~?>6>UU##~Q=lV~ux%ck;y0?FD
zfLz^Y4Cs5OyMuUo*`qoRZS5cN7%+0d(s3Xgg(le^i|#iMpKEv$fCLPpP<C2GG;wH?
zAuY?4W0;Sf4oeO-9gA!XDwB@t@o01@@&U=OZR(Xc&}}oiBqqpH@42vi=t>CE)nuf-
zoc?WVVnqlR1y?BTl*8fyk|0{SwsKfn!fxz7&IQREIdBPnR#QV^gr8=8f@DEzVMGX*
z8`S(JGg|9fVY!tiHmVr`g`FFN8A?g!z!U?S@!4xmr;z>6_(nSFwtvXITL=LWvqV;N
zvImcmGZ3uuv~!lZUHkV>Miz<6M|IO7E{ZXTA;jbTtHI8zyStOmUfx;2rCguwyz1fG
z<K7*BxudV}d!Bn<M8qKBhlGfz4l{h@rd_uote;|tr0!9`AZE--Z>m&^*dW>?Rd!h%
zw={>_<uWt~MH*KaTIL}_qx5NN>j^0`qqMaV07(0)$?Zj?xyRBv+&PHFRBju~e1?;*
zg#jS$ATI@OYih`tK9%~gs7@;^slC%E07Lf1OhnTWgUTJXOq<eSe}1{et1;28u$kSH
z`5re4?*6j-%VYc{FTrt)0Pe_8oFfqphe1|8zl5}~#$?Lk*mJdo!Q-!Pz4~Q;^2^TG
zkG|^Nh2Q;iJ{m6U-0i&_JjNG3xOJCB<`;yaGuSBtp$%ey9|a0Y_w{<|tO(hHema{Y
zpoA^oVh0ldB9G$l`W)SP_2-wLKmIe$ez=pi{|l%nOtpu|2WXXKkQaCqWd6h0bdwP;
zpR?3ez^pbk!9@;?7lDNzV7?uj|6SIo&s3)EO_fl9DfY>Zq@36AhtPsrqV@`#rtt;I
z0wRU2q4*|+mSPJxlgcPO^fi^O*GzU5AQS$J!=dUT{w5xCJq&GRUBDMkhfd*<MMMgi
zNc}SeCr5Yjj)>3x{DXWz!1C0bxil7GjGCpy)$Kykkk?jlM=1`uT>Ahtiov<y>SQaV
zQBF{{ydodT1CjQW<QQf4!b90Vag?#kiMvEg8J2OvN3jBDBu3u_c#dVK98V0aHW{AS
zT_2;8lYzM*FGVKo<fX@-4R-d2NB4(+>{8_n6R}%K{u{U}(#)qjB#ny>lb}9Yv8=xM
z)qLcI!+1lz6&;>)J?Mz@f3A^|uPwlAQo37PC1+7Kn2YbK*C}Q0{jH0`pLh9>MXX^{
zk{|U^{{YJb8*SLDT#i2J?xUb0+j=YCt*-oaZ+U$k9QcLb%A*gzfBwyj@1H-}TY2$(
zYkPBf?fLc=3Wb}TwGiH{t!x)%c&D@5xM2q?JjiT49z4Cl?kkXnk2|RZJvKg&X!_*g
z5&as(p~zp8deV#C9p7n#vWy_nU22eNuJn0n4~4PW{oWno^moZA*g$}qsf$YHOJ{nq
z#M!OvBKbPic+Id%aD=wg0*-`YqoS?ozxd!xm?<UE-5cyv#op=uEU*`737WqDT6v`{
zvd2D(qCgD&*gwj7r<JnxNH1B|oTYF&?JN)fzCZjI<y!o@w>W(H`MvnNd?m&wZh-)0
zg74ba1=h-zgk%l884f*5o3GabIkk%RAn_Z^g2=9%HK^(N>TF5V27;LRt)0OMViD~|
z5T(1=p1zDi9P0Q?LMad@hKz!FqMbYf3FaXVoi3Kwb3!WN&H;o8c3{>`2c-uyTEZ5(
zg1w7$oI;Xd`i3y?yp38#v5aBd%F@l@kt=4TZ>VxZf+{YHUL65@i;@zK5q4E7$C52%
zHS43!%?$VhQzqOze0hg~d_{3*OO3;kv%SqiBK8NCpct=H13ag=oVk^;QTI)Vhiog>
zf)3$udbCU?nCDl9l$Rt66~L^7hxRZ0i6*up;?Y6g{UormLL?rqi^(gS^hwYO0pq0o
z?#27(AMnrmhu-3z(Z8K`NrX4pv6Fsz(V|Z#&%8{=1a}sDa33ot%s|}fFq{`WEHEEu
zua6ZOZ15yHqpg^TXRAdgK+D7qaA~IStcBg28ftQd?UURd5;Td*dlX?7;Ho_wjhB0H
z;1-t~E?B~3l>^el;p9Z&FMDhT5i-c=!K2i0^30l+anS)SNJ|fB4&U<j0+`_==SMo&
z1s5D`K~euzE2+*7FTQghB2lQPq;*v((mb5A?yuVoFgOf-dX3YubaF#7UBT%>FZ3ls
zhv8!zAyMq<{*O3xjg)Y_n~ZH~ww(N=blWg8Z>zEwDQ;?9(^WdcH=x9gx+R%@u6p~_
zSMbGeZ9Mr~&)V#XM;__VN4OV!G8*;XTwPsEmhRn~!0=r>zdXL@$lc@qHr@C%l6hGh
zE(dlfBDoWf|JqRxIfig({pbormsCS?ckQ92Xum6fPWRslu-ggu-KH+GCXtBfrlbY8
zws5||6uPl*>o)4Jj_g&!P}r-n_usr*<CcXGC@>;Ml4CfZ!XalSzjwaC{MN};xE+?)
zUq1eJV|}>u;Ncf9anxbw{)3kbk9Y4pHb0UhI{OIU#;xGY=Cq%rkZT`g4&QB<B-ReD
zW#hGbw|khm#pBB%RLbZQu(1e3hBFL@*NV)HPMWNpGQDnwWj8C9n20E<>wec}a%$2B
z&JShfQ&rDZrgkM3c(rqsZ^jecd~aJ(TC4M1<&BI?!mHXoHDqsQURnoDa0>@3P?xl3
z9QZLO5w~?(d6B~AG){2Zgi@J-sZV`&Aj-z|q`gQOKefIM*dkaLS_~3rDLvkCrVAq|
z_IR|z;Gw7_xj+m^)#^6Du%#vI33!Ck-$UbrI8limO&&BgI>jy1v?%G{<KN43_zZO`
zTcLVH4T)`m3i@KlE=ghm_05tH6I~G5yS&VdWFdWG+d`&nwE`_hCC6Jf?MTdwbjh(%
zCTeyo(#LvbEP*Ijh!V-kU<61@CVk7Ki04fYgTCnJ9jjBM2^kY4>F}9ow|k=Edf#uZ
z&)V}8Rd&46ZDj@Pvvzh5r--lzEr$qk@qq9OHoTs$t#2bP?1$y`HOX4P`fPb^z12)<
zQa}K8cHf%H`);~lYvY1d9Ko5)+<${e3r0F$U7Bl8anjP}5eId~2}jXQqISa-B6UL)
z41M#VD%||kWruL{B86}>0f1?Y*gDR3hz8t(fiFLef8-XBC&$4zB^bVpFAw<U@cclk
zT!QE-A0Wd>poEoj0UwYsYKm=`h=}ge$%IN}r~wVrsbr&Mu1paQC3=ZcF*(<Upw9#y
zfOM)%t8wGG<K0!JpYFDaopK~UehxKZ32)9a;KDSm;<J@XWHrbaXH)!YU;X%X5{sx*
zGC{?km2^g0Dae9nSTTGh$NVoJ-TUg`4MK%RCy%;hYzb1SQ)=6pCYwyIPncCr71c&#
zH4u`?m1`^OQ|t8Vq^!Ws2|KI4inMeKrc<DX;_U)87O{yve|`4){5svAw{`wX*r6Hp
zzlNwYVrF{|sWVp2ZJzF9L2;=`M|7t(f@y(kalBxYxWW@w*IoH(v5d+d43A4gB^_Dw
zM=x_LN8|al6c%+gX@*sh!YMR_fiv?rmJ;*V;&d!H*tfM@2iz)GiSBUUTf7I~lx|WR
zh*o1Ev<MD_8EC~b8xU#-=j|<6m}aXvJ(x{Sj8BI0iSGkjTY4dT^zaKVFd9@@rv@wP
zpt>CVPG(1<dS*Zks}OGel;&xQ4?Gy^<mW?cu*HZ84Z<9;{z{?+@t#ua7U#C*_WB5w
zy)f@L2YV$n2ljNX$@d#12q2b2phyA@G`qo0L%_X#9Gi3y;i4DJJcDhA(=Y=@r`(J@
zKsl^@;6)^z=6shz_q%YFHf}IqT58?0lmn|CrW~A!I$wB}RXP{xG<+m`(G1sYh!_Et
z&WsJ)>xkR9OG_K;%iB+1Y(CpVj{Uzbe~W9NR=-{S8w8Qh7C8@VW0uM54l)}m6?U5l
zo#W7g#OXSenQTUfoFjqJK*uf;HaB#qQP9s?=Zq<b-5;n=6_Qv;UCLHCRh4O1kk1E>
zIgM;N8O7lM-Ab_iuf9g!-DFzNO2pC6IEMDIBqZ<Ahv>5E==|j5{3j&BgfRymJ#e@X
zQzDVn`!mJ##|;g*T(8sg*CL&Q9mbQDY6$jZ&m>6p#Ar`nCj?F8q{D8L-)%xtA!Fm`
zxcAeWcNyj288n22F{=xx(4$;fLekeMx}}ba%0Y+@;##y(erm$jKz7)wP~$P+((kLs
z#FHJ?3M?Hno9HP?8)av(cpG*4FEiT=iPL)LNANa<FhQ*HvN*xkt}p_#ItZ0E#VW23
zff_5}GSe=u#>!l;KXnpeBQ%DS_Ae%v!~0yN^2?X}A|VQ=`xpGq^U1Py9sMk~pAL^M
z&rgS;1TYLndv5<k)HGKaw_i0l7+)Z9FphDKoVgQ_rD#PG#njMA2h{shA4k-jWvHx)
zma*_A=*=K5nxu*PP=3nJmC=ixNJxOf+Bp#pVq!stY0q(!YP=URzM}2X?{kIU-^D=-
z$zpNMD<K9FyD8gG$cph`8a)<e0IO69jR|SOFSGuTqM`TG`05ROg5eb;EmXul&gWud
zD5M;QSs6+!0$bp#D+HClvb=3|85<KKW<eOumbg`?PqO#!Oe=2plnr7TbeT&w9#N6)
zJ6N;W<~YPQ9d>eX*@bqF>cq#@NQEE_#&F%msg~38x7gQ{+$Y@f=N8}f#qlMAiuhGA
z#^M9}<<-gSfF&fux<|^ehWy{HMq6tn`{P*-NzA9Bq)l{~*JqOp+}Rm2NuekplP7D7
z6bns2gvjeWX-%AT!SkN4cV*L){isx|h*v4Tn3lzG1S{Sg^Awh5dqDC$>VXP8Z50fq
zd=AM_yQptLN2XVr;6-IilDvi;y;)8i>s@BxC>^u@Q8}kA%L<F!rR>vFTIgy&!H1@z
z(1p_to6B;BuSNc}bb2RimqIDqtU!1F2j=nlZ=$MfX~-&!q1!kie)<|S|746k`-hA7
ze-mPJ?!ktZ6y_TUp8bC(f6#9~W<^i}hKs3{R4_=YP?6{+Gax6bQg`NQQd=IVE}@i&
zXCv)s<c4}kLQtSD;IvBca=D<u1C>^okP!L4^o+g&4NmpUDXF++)sy{+oI6dQ(+!3k
z2bka<oNX&1X`u|Xg_`@%*>dzWVsue;b(X9^7Bw7>(D|mZhF0N9O9X^mUctMBDEs5l
z&-jal8g|f;hXj2oZlTehItW`$q%cBVv3ZOHcDl#x;nXpJqacvU((qz`{=+p4SL0yQ
zA_2Bp6L5UdMZyts%rifktg}>tr^+Z4PF4frzhIE3G;g6H5r43kp_14xIQA^<V=#+w
zK4&RC?i7nv`9GpVP0*l{J@7+0A@aL1hFt?t4qnaHNbu;~r%K9k+EwV14MsFOeXknp
zk+{E~P8Y0OjR9Z6>(#m8pOmZ-jWXR<qpd8&$UVk?xmaj2nJy5Z@O6tX&V^a}?Zy*)
z!V?4^iG^Jge^Yug^YEMB+bP&Jb!Qy?ef6ZbjnFJaNCv+a+|dU5zi04oStw&07Qf24
z%e}K;Er~?jzv?kr_7!~cBZv&S@9j5djJQY%tmg9F^ivnF+_L%OV!ngT>QWwhbV5Ic
z3b162T^Gr+BJc=T5#T-y=~jikz+#(E&FmQ1?ch@xlcv9iANe$O;lvO+9MsKZl(sfA
zQ-%;E@4BhH+{za>glHR)w)xhPE25wW6@{c{xr*^wuX_#Nw=8Bz^q_!=j+IjDb<3x=
zeu;n4<dk$-t(!JmL*j=V;hV5tmx8PFo~Qw1;3RmdYr<RUHu6^eGA-~Tow=%+aUVF$
zQCSz>+!{!_DT5u-AWRP4K;9%CLq<^1Hz<)**v7><CE-b_mZ-i`1K}buIma%mv^}Ix
z@_DCLlX-$z2scehqd3(<Wt+Wua}FoI+Hs9es`d`v#2gej#=2suoH;2PAPS^!lqnDf
zMRtae=@pY~mf1VI+iY~XYu_Y8=rd1bmz9khUP+d}deM4@y*6kflOuF2vk)H4-J$Fn
z#wXXOFz$DyuzqhTsE7Qtpnfk33U=QjYXQQ%@rOT)5^FDZ*ItAqkot0KbaE(UT!(z!
z-N12cIPJpX3`EzDo~&CxKlpKU36=~89Z&G&Dcsn}iN(v1HZf2!6qk%xcIjO6Ev{sI
zlK`TAhK=@J{#4g{NwGtrVDbP`j5!dKC&ZHBpey^}{Lm-#tX%A+rz#Ut_2$RtcSE{R
z?BiLl?<VP8tUFwzdD=*ObhlUGLV(0JyI;T;N@B6A3__x=C;>EGyoxh#nX4=R9^9IZ
zmRYLtFchyKzzUVep$bO`Wlj%&FKOL`l`~93$z<?QK{vLs9=0xVOs7H6fktH>C6)Q1
zY;P%Z>`0?&24#Y@uui7rIH$3NmD$J>WezaH>R~X3H_pHiaYr;P>t^Z#&z4&M(Hc|3
z?j4T&rqkx|n#2TOVz5p|Z?OscSER#0)qSz`=PU?1W}88B7#y3w9$z9fI(!v39DbtZ
zBb-3MO)q?fbA1O=3f+H;4Rk(j?uOwZOr0dJlGfGqr^uPXTIvvzw0jXz8_$3%7t6t#
z6!iBXSFkfaI>4FCw0qf(o|6j(gPo-kqsq%$D{AVXEibMQXxLCW*#gQazaxYgAIq*m
zevmWZ;c%-(({`!_#Gv|df_;P7GlQ7;3^-SW1^lwxqEp<n<X#3pr8pW-)+uq3PSVT(
zxBGqS4<C(w#_dE%J6+Ycl1iKXP~idQB|J((&I{MiMmIQ=_OXAY?m6D-(uLPkte@Wq
zS|WyG8xb>{k^|ysMhpitGx%CYhLU|qabo7i9QKK>t}o9VR~tnN3bA^mnX;y0DEl<N
zGo}qBfOD{Xk;2o02B%@K=%_S?#ppOX+zg_AFwadsT#~jq`X^^@aLNhZq<ADzF%0g~
zWVImb638T>Kp7pH@02A2+;qsyLzbXIwn*j%sY7I9C6OBDx#Qcc5uL#B9wXwZKmi6{
zD=?7LU2oC-ySsUf;F8l(uq_7tZS3n1NDt;QE{8sc9h{yJG!aJ(vG{{j!NLfM-m#;2
zjm&teJ>&M{aCmkuMRCs{N^!-=a@QB&YuRV?8o0CwhM4m?mIEApb9^RT8VQlktuR=^
zG6iL06`YUs#JEyBh{S@5BJJ2W5qFN0<Z!dGc0ZVELw9pa6`i2Y-(Fb|>m>VsF*Tsu
z8H+LiKSAmqV8Y^#3Y=ddw!Me<A3Pl1|Ksq%?;)wVtEPiv;j7FTdiL%V1s8i5*xqf2
zX9T~^o!w*Jnnvnl?;AQC?iHhU`@D)_XrkVjLlNO?2}9p-ZW#{=98^_>S`$h(D;kO-
zqQOb$Mi}#93?Io_3wASa#6<FA$w$0LRjG+_MTcraJ3KTgn@pP67BA(hy}-KGFqTt+
zDoQhI(ASbMZQhG?ZetQbG|^;mTKp!Ru_o&s(wBLsXi8*gWilsy2Z>X3BA)<hS(yZ-
zHig`MR%B(08jO^SBV35+LQ}?}YFbiQRA+-(DFFiXHGELKj5YPL<r%NwCOp<lB?5!o
z97{GfMn1cDLkTqH!au{Y@jebw8zH$RJMsjZk}AfD(vBVjJWN_OCqrg^mI&sy=}Vxe
z8+ee~l|feA*3W-JMB=OiJOgfskz|Nt3vT{)8g4e}Utst366W|PkFDqJ7$U|-AvQ6z
zHq#>0M|fGoNM<Eq+rWA>N=dfxd^#rUX0!+@RJj~{J>Ku~I9c8&hH#K@$?KrEyG`jt
zfv%q)j}H>71qrmt>teGU@!-Z{@B1@}i-5|b(JQZ^AYCJ?h2b)!hE$w0gv<qXa-E4O
z%j8eV^9Z#HG!pR{BD9fNfkM-43H<Wc#u88oEaFV`MD5p5%mxW1OpFD&6p94dA(D!)
z63GyL>SPR+yuC0Bf&>92RO3ORl9o99D=|&75Qf1BD?|uSI!z=N_i%)42}mSxz`UXe
zg_6X_SnU1-D^40A`@J8}&VM??84Oq=RL+|mB3drJeVn_wLZXQtc7QxN10=tjGLoYK
zC!p@#e=vN#KN%kkueq_kczXDm7a0<dA>xzt3sGYe5l`UzXEB3tY(%Up2D8zQJz%P4
zIC`1>)z&(?9MV`T--dAq7)k|pVhK)x<e6yJ<hjqTNISOE)J4)*V{GR{J*65$$`wOh
zx(uXDHu|B23CE;_F$B$;=r8cB(qa``ccqSpw{dPqQ`(<Oar+^~rT1b{b9i<%kuIDV
zFJ<T7`AbS^(p~v#<#;Q3OX}UUSeloYHLQJwXFuWq>0|4XxKL!tAv!&-#pFJOL_YYm
z4OeY4lqDB{$>dHt?5tu2S7Nvx{1}0zbww;XI>9idT=Ka}Q33CsQq&*D2K<SM5L=1*
z(>T#Ff+dVZbEOT2IzeP7hHgqUiHonkQ}inDLl4{ESzS_<Bu|D#<#XzIxjy5`j%FDM
zla2i=_(?KLHOAW5F(`NQL^a?~=syX^n@Z=rr&II7s2)HQ<y-UN4fc72>Z#VuY+PZU
zs7<wtKV6QmY~c?)5(>~*7GFA=%tNU{Kup7z;(GwWl}b(u%;<W_yiY+NK#jUa01C<E
zcNR}&MHnl4sZN6W1ss&Qo`_;j0<TGZtC-w)@EiyE#EBdPOs&)pdiE!}yA&eGe#>uO
zA#&|jMa-FGB<V>~7r3Y367ld}`ZO3KuF(rIAe)rL0TgOmrQe(}9Ma~D4%japS#^>R
zAMtOHDIlwDFtcz-1DMG-lAg)Tm_X%gKewsHE%ON%6zPLt24}ECniQE)f!N~-qz3M(
z;1Ra)5bU{@?2v3pBq$1f&4_-D3zZn4h?n(JCf&i0(A3+&H};cRDWwaPC%F_QUNQr+
zE|6|`A>t?NM!G{{X_sJhM>m}Ym=TuNRTr_2(%rb1fD9HGve(iu4T}BCF}4aoU>r|4
z;0VD@$KmGD^ZD2Qo$V0&`#P6nMZ$4sP<$#FgmqT}*%g)n4?h9_1KV&=inf9g8?-Tz
z3xXR1hkeE{rooBrBEawFV~(_gJ!ZYqYn-g<u*L&Z-~h$fG_Fth)dg)j4z`0PGuQY=
zM6WXxXM}|lZ{r*ZCq>F?%3gdUll>638pj^ROuiY%0uONMIP8KeBeI?uw}bxi7+Wvc
zz(4jR0a|8rbX0E?FGjfP5?QygEC-9GXgz^*KY9PBxd~ih2XB}lOXdR`=C~gq;=d;?
zFU{HB@6yr%qMFWDab;Fy8BQLXCZsubNx6f-yW)`Z8;E1+a@-r9J?IUGu;g$J)z`m+
z72RLl$al+@mPV6<ectgL`i5jM^RT8bt`Vdo<0aD>K$2S;m_PsU4*u0M*IHcsqui(n
z1c$3|7aB&VZ~xEzMU4lv;@$b6=3awIegyj}MKB0UHd{Ko{^nSFKD>e*0pkF9yxtR~
zU)~(^&xhN+;pMMMh5_iXVAlvlvPt024D<*&re~u?76}vx4T0_7hmX{`K9H<An@?B1
z_~MH{E(8(I`Zq{d4dPcL9ZW}dCXtpHh85cae>P_DG{DJ6BM?luglh|vqks~YaDIhl
zAB+Y$O2!C)_&|<}JQ)LE@-!78TQa4x*Kw9r9wTI`@-$4>$~*0mL?#5hcyk%2aaNoU
zOYnSF2hKNJZ}uOoycuCte0|ygRcqG-epXiJybV<LhMSg<F;6fVvgfiX47sL@DhQf{
zwm32im6ilI<*%{)$cl&MW%d*sLdXz^RKnQP5sJX&7YEgRzHzUdqAqz4D^K>qTMM8p
zcg0)Z+Xi~;dvpQ|Bf8bIA_)q1{<rP5A8u=*A>c3D5!03ucEpX!uC<NJgE!;1+<7~>
zF8gY;t8^))fiPmrLaH0bP`-<9Fg~GLhwXx$n*6e6smAdzg=5vJ1np~BQ)KX1AbSu&
z1QtOVYn_Xt(WTwsyXB5<1iz_8j`rR7#V%q{ehDC&lc2J?;z5m)5@wvDlWq~2F-`W>
zjr+0+{BdGQh!B#cj8?hAG#4CXy4UN%n3B4zmNzK1VIcHR#yACsY_e_514JZ56He%R
zTYaMM!V;#Ie@#2$&!jj0qYWOr<YjUnZlaT8Gr^1%ct(R0u>rsq$8ZZmL(3f{JzVzm
z>X#iJmA%J%N_H1_7a#MXKf)b3{8@dz@cD<IX{X)ey2-}JvE)68_snfuVF?gumDy`G
z)hw3b{E?8yg`&RbAd5n24v_$8tB2OVG0Ex(xTH;R@JAdW|K0`>0~8=Ok(pK-_?W>h
zLRz&b_=ct_nAm9BRJ1e9gbLgyeoe@2{RF0poy@Qj!>H?Lz$}5&#3(|ViV0L2va?*u
zg}X*6t&JB%1Fza(aGHz7LKtmG;9Xn&K#gEjFpSC8BFV@pKA{k?3dP!B2i!unRt!Ul
zHdp~qvtoF+j-0A%;AjPip%rO^8SrzMZS=GEQ{jNlx|Ns9Y_ub9%ApM+M~Q2#6i)+X
zis$5B2q>-EDW#s6ZP}QOv=|9y22Kw!nj~^4ZPdZYu{Qa$;BnT(<LMmk_3MoT#FVxJ
z4ePv3JVKFKIh#0zN)^7&fKI_LHQTY8h7pelWijFt?k2#rAQ4TAwzUE7Bd%%H7If1h
zZP08qea83{EAX_}MDbLoX&XGl&f(QZ*xpWoA#<z=pqPCmBT9zZ#NP%#dltqvdup?e
zmD=YVS~R<~Lg--iwpxB0kRDg>+94EXvBGJZtQe`yxLz9sX9@*(SjHvemORxt5DInB
zJ#C>$`UIrIXu(q#Pj1Qhf-b`@tgk#)2rKAT8v1gqG5`+TYgaK^@g<|96xNUlPT?8p
z6@EC}ay<a9h)|ofYSgddwP7n&N6S~P30D4yNcr~;oC3rqN@eXTMu<_RAwF@8e65^d
z<d2lCw0H+b0b&y)hvc=Z7(I!raYrgypeJ}GPl;Oc)8SXfFooVkumYos<CbPP3siIe
zK!Tk=B5MA<1FrzFiBws;ijg}QoMi5jNHFq8#K^yQU=$!WF)C|UF#@Fn2-_J1dHqp>
zSMt=x(F=88mqKqMn1FN`RUFsO#G4|17pGk6i%GCd9}~^=x3^K@x2%OGqBSU0OrPg2
zG-STYA0(I-Z-{L1r~}`!ohHgHu&P)u=T0jp@yMK53DWy{Nh0l~I<PI_H?b|?IxKq3
z%F#0E<eJ;PPcR@dm7O4M#sHBGc7d%DvMMZ)J@{|*hCvIMJKcBe5YlZ6nrktn%)~=K
zFGoi-mt<)|W1r>{yUTsETVnkOzfN=(f0*N&=(dz{7CK^}xw{oZe(a%a`s;VTm%TY_
zQ}>6}O2aENLcf=_M!vBCpP}w*;ia!BclrP$`>pB`;`VE>0&SeK&ceSK(~)|=vps6r
z)h1o^DR&2n^DKyQCvPflK-dU>V_djJIU_3H9p4la9r?IZs>1~+z!o@L20}6xSzO;D
zst0_8I95b6yhKPrUxfc2Hs9ZjkFIzxi9NZv#=#-Dc3EB4mW*NyEszlMU+|!^L4EiM
z8(FYU^g!IZ<fL%e=El5~j~sV9Vp_s-BOJ3qKBe%$obo7>)&d){GRTXea0@87A{?Ev
z1l9&?hdAwc*jfVUphW9y^M|*=M{Q31_WCT~e%8)X<{WKnh#hIhhp1Dptq!}^tkc?6
z6ju-1)E;RuPLb)rP^x2mLYrX~Is?dOy3+0}`2-8ssr_J~X}z#A-F;x8*?Pc|srzAS
zCuZraE8?!v&?(g@S)Wx;5pSDUm`AAF8TKXVL$kBUt+O{<D|awwvTfs~YEwKeal1+-
zOU|xhaTVBADz41BO2M+84Y#;t3E)V)QdnU!xIG`)La1CRnVIzgY^7jsS9{5_pg2)n
z;18ng4+1|uTHnQIv1;r?*%&$+cVOBuLZR=^#{aw?<!Yb;t6_<^f!y1>I=2KaU0qPl
zpP^vGsBUW*ecAS`t1slhrpS|<2AY5uG%jTG{QPQ}CsxV;k?bKeO56E2R;VcGl9=f}
zc&!SS!))~hjo)Y=UZj3JTEW%*@#!^v$x&j(d668?$@d%#tVF_vQXP<<)y~AVgKQS>
zfE@%{Jjd1!xh&iPH>ehH4anOLGcDKw4-B3kXKRO;7wv#a`8z(If}a;^gCkO?>LN|n
zlJ3`}A+76{OLfg5xyz9$xF^Xm8SaG$Oza|gUHY_ruQqT{+Pc?4xw`Kag;V(-{Whi&
z5`^Jnv4>py&4_cX1hnH1-1=3=JVhq)@O9xIRi<Ho;LhL#`S5IZ)I$|u9=;QA>v~G?
z6>m~*Inn5)E}Vn@Hk7fbm58PUV}CR|!d?UT`qvh8H{2~9JkDLn1~bBtH9k!<-1wu}
zk@XtF&FW)rK{hlGX4ZmJkPQh?IAzQjKtx+Y+jQsvzO6#XqzM*|(PZD^y;>Rx#e*ZZ
zs}Gn2p@PB3)bU3xO{A4Lb3*ZsUKGOH+M0MkmdO8>=8CHGMWwDrr~A^=@d;LE@Tzx_
zPS>B-5sAoY!Cwnn6p&zB>T6gLC&+#vx*#zH^jRqd!1z+y<)Za~fIq@KN)4paHljc5
zWOOz1=QEf`!6OK7%h~w!`ZNq4(2l3tAv8P?7q(DPttewBl#&AZaHEKjoVIdOh*EQW
z-11UdU<7^iB<8h+g!x-pMKl&1&|wYxrqR=c4Jt%v6mR2S7;%lZ2s$@C$`%}2bFl>6
z!(gbnHEj|$C|^uHZ>wZyU|zJ;#5;%Wkg8Z`78RY{fnO3zr;ot~SuuxR!83#1#4?5I
zP^vgmE5n#GiYhlI*ah~K&EWB|!>V9pkeawC46j+mVw0p1Mt4ji>nGU6hon^e<*+MQ
zC6Jq#H6c{7Tec;M5y>W9f>)e|e$uxCBZt;R$H1`eM+wB}p{=gyAnI|Td?KkD6X_V%
z{T*)HfOE&Pw>js%aFeK&iPl*-9Yrr#8SH#gbQE-6Z7Y(l4{X$ZJplpSDq>+@xcTpV
z3@gJQb=4$7%xxET&pB!2L07F{qZ*FTD{3Nl;22EB(63-Hw)U&j{%ft})|HcD-|fE+
z>{1KO5X|kg*47HaZIyFr-9^h_LwQXz!K_ZnZQziK9mT18gN+zJG6aHTCySIlizKIE
z5Z>+na4^~Z?)V8(9*=P9C##B7sL$cjU3*bH-x{5wus5iO3%J{;&uuNOkBgeq)2~Vi
z@FI`ht;(T0o^Hy}k|JAgk(C`yzCGhl=K^zd84BOxqHLUdP+8<BGK2Er=!b{kcDAT+
z!c+8ef+IEFl{&wq-Y+G#-^OvbS9C-oj@ZuK8m)qJOxsIz0w=H-b^-aY3odA@uD2f8
zs|<G*$R4;(Aq}oyLpa0}x5uQKQP8K`g&vvK?!k-41E$1}o65fJ-F8sb8^*DyG<g(T
z!QQPm<R?1wCUl#dr%Ux9uk}Gd;fQJVML3<!96zO{h_&aHjdeKwLTH$oaM*O9`rYyW
z7EGU>PbTA&|1H>J0{>4!mDW;_3eMTRlxs|+C!FXLp)c7mB!a=ONKHy5Y>B({zSI+}
z*?ZX82yET6XOiaxkJ7U|gWbhHzW?_R3wJ*7P|hNc=A<l}G@<<LtE8kE;d2*op@TB#
zli6sUY@7Csxq#HoPftTOou1-!w4Vld%;E#>;14QP<6~}?Uoq)4(^%Nj*Dg-GFVxJ1
zU2z!OE<2OVmIt`u?-Iwdk>qm!H4Zty?G4|OM){d*3Fpvi`EqxDJb8-rj@Or?Z{*6l
z44oKXquyhaBEv_M3uKK$f<s;*Y{#!9^hR4?V-k8}ctUE)pvp1k0qzar(W}pU3%$<=
zy8~pg&|<p_zw8bUohrQXvbVc+N1lGSy8NUUULh%yz1YIpuFnTM`@^IA!$0z%*P@*u
zSBRiOJUJ~0$<Lh!FE!*Qw!P42#(U>rFQwP}-nY~e5x0)Q|L%oLlr^Bnm=Z*mJK6ia
zMMH7t;Y+xCN@j6(!mH*mX+{;iNI1!|tay@DuaEX>8Zx;f{u>#5L_6&xivS3Oxzxa>
zMEL<xZsMi<i-Z!8AVJ??>cS2k(*4ST=>JhaQF=J4!l;o<ITD=6kX6Z0J`{Zyr=fL#
z)Qm+V8y5Fh^*-Nug#&{3WUwe-=C!B@Dz;K(+sEYFo3Nfi9Zl?lDWkEX==~`ONje~d
z362k6pHRNo_=(W632Q<nBr*wRgpn_FX9U|zk~ly*3{MbN(fb{4?K~VGB1qwPi;KV0
zPXCVm7b6G5nv8&=kjU8zYZ#sqrj^O_WEeui8&0)^ZDqvEep>raAq60Kx0&nGag)*4
z@+GtUdZ?;g7x?_jJhzy$$DRnolVIHb-FL_UfwUOpAjF*!w{H0@tO{_Tbwxr4b&_Sa
zVD=BqHX=N28cy`ppq^ihyGc|`nqEx5g9lW;1a0eS*W%F<RiO=4**Y3rW=NLp?oJEg
z?7Hj`bd}svJ``DlUso92y2i3JSP3(#9<m3zW=N#iAR`+(<37`FT2;tW0t&gdc0<BP
z%d(XYi4RiKnv!`N?dd7D#!NItY7(8eb=sNG0o!JM$>(-AIlnQbU_$Yur2WmreN-{p
zCdG$9V9K)0PT|zN=|tf0w9EqIDCK|1-9zyWfOyPL?XCh{84e^ASmzFxgqmyRxi}35
z%yy$h)%9!mX{Hkz2-*P9g%9>{0TjfWHYw2=N_gggB@h3qYQPiPT=s4w=pG5fur$Yg
zk(0r0KT!(1Fjpw^ve!B!zr#Doyfh)s+4<q<!|v|c?No!fEH*&|lMDB4#~EoF!}LQ#
z;?(q9%cQZP3pqp;P3k<{JaoEpdWaN!jMet_du~zyEmw9zYMpw1Wkj|Z*lE4qS*`@L
z)Wx$^+3`k^VSkRMr<zOIeGnNWW*)fB+fo*-zqk7fbE2QLzvzb;E0-Y&!YdkFvS{M4
zL<XNf8J!(V+N_Q5Hulz@Z|^-@{u}y^1084C6qAJl$BbIdlZj_YA@$h#+3-l$4?`zB
zd=P?I6&|+|!7hXTFUl;Ek4-I?R%jvx;#$PpkrhWUWZ0w*-h6nbD=8yTa}^@ycLmGE
zUVlL|Q3XiSBTFF#k<{4`llv8hV@FHBoZ^PT(d93U8vXH?!_m<`3_kpQJ32YP_=Rb)
z78mc7=wLuadkR{RG)cz7gVRGU%)k%esgM)H6ksyNLH>TQ{J>pWBGL{`DB&p5;zWW#
zQX}V9N5-&uLjpCMMoxw<VF6FDWL!vog_M-SqQXUiTZ>{JqsZcLqPA-NAHvE!>K<PN
z{R(T9)H<*+u$h=Ag#CEiOeJOJ|7sDGK>!*CU=cM~8l=$2vzc~B(zM^d&ea7cc5~Q&
z6MLk643&2w*2rO>w%nY_8Z$D$mc{kwZ8Z2~d$uuBg>5&RncB^W$;zQmA)z$B`JzD>
zGjVlJ;Y!=p$o*@xvET&zBE0wnR>{w&CoSwJ@^u3S8`!?Cs-?t`vqUrHiwytgH3C+O
zCH77~EeaBS26G8VkmM=!Ww7u%n{zcbTZ={M*r>l?yIe_iw#fpswU?BPZSf&(IG)o&
zJ5XE9O4|SIEBt=6`1!qo=($K~DAHf_nPVx~@v)Y4e5rBo4HiFNSorE5VSUC{ICEtT
zL>|j&E^9OuF!B<ScT^UvVPk8L;a8J<lY?SRsJvnk@km7C<u3&?Z15;GZ{kaX)8~s>
zylGPIlNHX5mqa(2;Vr_)$*4}lnW=<1CBFY3LO!<N5_#(3UuA1K*+t$6cO_VK=euIl
z_C|Zg`8KY)HbOSb$}TfpFTQHRCOz*W<VGosq<w_3Wbtm?!YwyEFPI$<X1AA@m}39o
zn>%(TyWY{5Lf=V$sI@<>5aa~flw5$_ZHuvQEBk3cr7XLrpK2$0CdPPdV}Fc=ZqP&c
zA^Xi2d<^{L#h%=!E8a%Fhfoc!NmZL%kz*}_OuJ*$xerk!_mbng-A^vy7XAbmXAhRF
zJmil%*q(R~s}qfp7WpREtHI8zua|n*!r0*-N<vwH^yeS+<{v_%sh$_mJM&|ZTt$WK
z9O>?x`P*3p0vqyF@)08z0GAMYz22Q3W+`9PD^37g$^Zh=+{v;wk-$xcUs~E&U*3ND
zV)NPF#`4Nvm%m-z+g$y2^>3g`-e&CkA`}Mp@$&Z|GYBNZX)6NRJcylPecDyXQJ^QU
zP0nDu1(U><ls&3`t@ALBTynRAX3ZAYje@CqPf;~oQ|FFtx-WG66BulYh3TX+j?LT}
zzd|HSIGyosb2K?WL9cf=&d(A1kwu4WXsE(&lJvHvgp~|2Yc0j}Le-8tg}p_+Ots^d
zVv~VU)a=Hum`VE4qgpmgw~&hH04}LSz|CJspM$`|ATzlq>X%bK4NM`Szz_IWrnzll
z@*$MJLgZ3Dd`ehH<FmtW;2m4>y^>%CQl@~_G&QA>!mtNybu;?gHy4dJm{JJW#98(b
zbA?(SBQ3Z_Nlsj=?I2CF_6V_n8$yo3g55k9DGWJQs~l4}$Mt@4;D)prKKkj+{uN?*
zBp{A!^eb#M|1`SHh(O;!#5LYm%Sr4l2Lh-JcykfaBeCFLjSmL>ufOIbuJr7T*F2t#
z{{>^*x)cF(vWK;O6y>;e2PP_1n-3s-f?@j~{rK^Cp~rcIuPIi7C&CqlA}Ay-Sr0;#
zqnb9^O+RAJ{}Y#|0|wU(+}uhYNadu17$Y;7%2pvrM3{&bdn-Yj_*jb;DIgvwOagJ9
zfrwC16!Wp4BnSe;H!jELxT@nFiX@_8X(@zr<H*Vm?XZF!v3nZbZ4qkI;TD@rnu-sl
z^MT2|2uV19aE%FY1_lcldVkt0VKr!ux3q6mvOd5898_GRiCRI@77QHyXE$u3(J&jy
zyQXX(#wsHFrx{v)gy~=JT}gtEZIn|LYK1X>dszC@NDEV3hQh>`Y;6Qo$~XP5^o9l>
zM2f9YxKNSCw|rWDY9e?OH)NmUZpuSmt1G7y9V3&xL77qc%ajlqYMmk`_BcmcEvQ@Z
zr6sUPrklwj*wkkeOo&r&*w=!PR4M2U%+e%FU-34~1HbhL7w_=8P#_p?_qB`6oAQrS
zMsI0Ji>vmP`6TC%*jK*~7HZ)e*}s$6b8Ii+ZWrE7%D-WN-Hx;~N;FU%kl206ZUS#6
zK)z)AXMtf^`dMHQhg++Q_bI*w1|q&5;JX;WKwngX{z#jFVhK*_zJmmeegX-#T>!R@
zh&Aa=)0xX)lgu{j7%O4M3vBu^Z$r=#odcf^Hu{N0nBJvH=A#supNtSUfQ6ZH4V1L3
z%YwPONKzS>vWqI)Y!y+f%-Evdm$b@da72$Voa+AWlgARhQmaJw16kT6XSK+E3y8W8
zoBw^d^{0Zq`Z9ub?3drvN<QTMG1b<@AA$@|ae{_TAt6bv5{J^GnoJkw{sWaJ5{nRr
z0s*wqt|HfYlU#)S8H<oGXja`o_g{&7%1YOHBQd)$;A-&5<$P+J%A$;xpoo97J;hA3
z3H*b~TsPgM5${=AoG)hdT%24VkI!~j_AiVR$y4%yM__a*sfXfAApNOe2|EF;aWZBy
zUIyPq)})|QN_miSMJwMV*MsynbTLJQ1UMOS8a6()rk!3ehA2vJLKQThEyPye!lrpL
zo?I}*3u`s`t!u2Ucc(|^XYa85IlaJ<&$BC82%VpdcGu2uIgb7tRN1sTFXTp@UHy~P
z(hlo-%4jM$gwc>+N*Wh;5YZCh#8r*bGrSoSwc?p>?dU_JZ%Ng373K@}q!9=P0gS)C
zPh?IR<bMk0I}Hwde8kI+F>lNRLkUYerFyXhfD#J+NG%Mg>5K#c>dEA1C?Z(#rS;ot
zDw2HeeRs>H>^L}ijU=licQBA0HDAb>R;td>>Pj5K3V^JyHxnm5&UVX=OgiDANix4+
zK_jSe?fKd^h}6gV-z)m>{iAPJUOaoY{QL<E7&^@|8=I?pPuJF0_ny4?&*$qe5cG@E
z&~-!JpE^9mZLPF!Q14UbC`bk8QtjZ++Ka|aisEfUx*iI6@3nIq>)(I7_Iz)7V{Pw;
z)y=K77te|LgGJo;9(!3b%l^TY*c$`KNSIP^yW2}}0Xv?5qFnM83U`kTWGSw;u3t|M
zF2}D&m!Y#oHJp)3&?{bUm@mryw!Ag%m!GF9$|kP%__YluZ&s|`?zZjiG)Rb|z<ptv
zc;C`PU@O6Io;kC!qBA<~N|jyH-s#k{+w3R+<4JnVC*$bk;rKi|Cx3i${(Ao;@<CG4
z%pA2uvPy^J2{oy*J_WF!R7h%HNEZ_6oI!w_8(v$SO+Ji3Oo~H7xSoL-rW+V1`;*BE
zuFggcw01ucBIV>sRZPN+oGW+bgf6FeI-$Jlz4@FJXvZ9O_1?-_QVp{4ISQkJpf8;8
zeC*%D%SJOr!=YeCf1(4ISi?FrRn)+7K7T^d$WKWw%1z5~7=}U=MPj(-km52}V8W+$
zA>CI}cyDD%9cQPpCq0o+h3n_I%sRf5b*fT@4@ooyR!}N>HZz{RSyTT%dvDto*O8<N
zf9F?})p)CrRUpY;U(aA0HIk5}87%RD<aRe$OaTSd7z(zkkc?&TZ{PclmwY?t6a_+_
zo@>Ul+oI0NlNlKqZy6C887`@l2@?3k5GOVgxMXf3VWn{dampu2BjRU@S~tS4QOm|U
zzGl@`0}j8>a8T1pj=b2HYTuF$oF7dFc1l?o92&HrdV`Z!!ygb(9}JJ4kToSEP-FnP
zVph_TcIT=VWD&L6r0kGr3yAFMDl%jPO8=?coc6?Ck}0s2O1+Y4f94i~^)4Pt<a_>t
zm1_xr<pAB@`2eX`4Dqv_!Xsrz;g;bRv1aVpGD?0DbI1q8>T{BxRX%2q$=$x2kZia-
zG^CJs?kI7z?l2xEt}6kEmUw4j@eUGITBnMCTvu<9>4o)hh)r6IL-yh&z=v}0eSuL<
z7@=3`eDRJ@dGx-D>|Q+|n7Bz;5<!LHrLeF2HvL^hhzYLvAot~GLM~0&5AIU$(qNI)
zXCa+(MFd6aYuiFxbcj-FN=vY|U~kbs;)11a7HQjr!3SpudGKEAHQpiAX@C2^HyWbz
zmDk6(^i%u+)g{9Dt@fRklCH1M7=hr7rey^LHUvoEB52+H+l%$}yGWVCjig9il2tpr
z;2Atgy2c@s@$uQk$w6xmzNo>kI3u{awYt&jI03vxXR`J<N5Mip3ya?_Ike*R5>H7z
zMJC~g=CxE#aHaRLczKUA>*HSr=jWKnUVpzwI|+02Wd#Kr7r=ZD#N1Jodn1<wb!*Qx
zSO5}nF7V(CB8qwK;u~vS;u@@I45asgwXFXV2hIr6=VI&cXBX(|5-J(6PtID%(G9EH
zx;W<nsunKZJ(eZBBZn}R7{+&6XHvbgSQ_(Vn#!0zI|*8OWJvgq;iyCw)Cx<RN`J)V
z7TFW)X{R5nAb~8`wRGtpOaNJE^*V{>2;Scegf+R-4kMAIa1ZX}vZD>R+hUtq!gnI*
z-VEX8lnYmX?44XB0<SIH)p~!74V~V?egZLkqzM6004jHz7=)X&;3$`8petpR<K8>)
z4$5OeN#UR<BDYvC<t(IIs7o8CEVzW=sSB}c7u7#JFCU3!8;p0=HZ5nzOU$K{FkzS%
z^-ZxHaKW416Xj``0PUh^di)dGOGr`C5IN1z4gA@0U%I^LuJjHv+bK-e=)<gB&QYYR
z29t}A3hQYul&srO%8%QLj1ZL|?C6a~dSFF+U6kZoqj#K*W-dY4i_ya;v!Ij6s;T%_
zcx0SImYP565BsAY(hwTf(2KKt@9jiAdZ!V7bQVLY{@TYBbESAFNOM<*q)SFSIaDd<
zb6f+TPvIUUM?|cs!T7VgavW;lR=!-IvJKtoF;ye)${6!0Z1@be4>BpwiKc)v%R^W-
z_<(fp27WoAD_v%g*2U@RCBr?UA0_6ae<GX+kc2naJxrDkun*-q>FX;VTRtzEcUN54
zabc1*aCV1M((Z|H3O0G+1wHf?(gk`a<G!jxd5>voDwg~L+&ef91wi5OWnys(FfPwV
z0?9K7Iz;9vm;^$ceL*|=vvwf~5OKv`7x{XW`8Z34p2mH+Hc5CJXQU#;$Mhg|F`)b;
zKZH?LJZIkvEu}5}gu8W?HD=-$06<`7UxAb$6LwB^sp{Jfj_qSgy_22s7YmPghJTEN
zUFix>I_*XIz!Ijzs0)y@f1D1u#`6#4DKgq5(##$D?&S2mz36#<$@U-YNHFdROb$^N
zEZkLB;Vyc9*BfEs&d)}Y>oz&IL=@{I!F$oc(-)h&#rFq;(U8`+uE(q$Jy~Df+A6zp
z8bUsFUlU~x`UxyKdY9e;o8Rs{>L86|;n9-d3o}cQ&_`w>(=@FUQFV-CU5(3c=4ud}
zq}$b)AwoI9$^ea#Yjr}%zmYf>9W6o5s=>?I>B~&tnd3ojflV|Xbb`HMl1><mG#Ct6
zA()&gl^f0G&H#(UqiZ#%u#U2?h_75M1RF>X<(uqJwqGe2wR>UWXeOJ-EIUbhj5dy2
zH_RJ_txu~Jwh5i*1Ics35piV~zBz<b>;Oj$7K13E&mnjnf-f+Ht|44>*tok(od^0Z
zxImf5S$eQVw5u1P#-S83TyzCBsu+idAW%xag`m`?(WebDDUpOE=&)SMc$ph~dHLzu
z<2T>OmDJCzsDl2WB$m-(rnq;#pvXY9;#3#OZ{MgriUYA{hb{4p*LcE(FKS4<@TAiL
z1`Ndx!o-MGUp8~mlvxLbcPd(oVY&2%0s3H~Z2>`z9W0mKOeph)xKZN{5w~*E*``i&
z&X8JZFuXuC@DD*y=|nLHO3E|3O-az>d}iQKpt{92*NO}tyAA^2BYRI7gBW%vb6|}+
ztB{5+C>Q@5f{xa#4?eUxB>4BqkjQ<H3MnZ@)9z`1bky(AD2Uv?X)Y~9HS-rwV}V03
zD5yJIQ}u(1ooK@_EFoyN-v<U9?Eodrle4p5F3w%F`g<&Z%+A4;e#~YlyMhPBa~lH|
zw*5ozFcFn@;CHsR1hg0sY#Y9f^RP#?)_Z6Ub}l*t3WdcynIbgJ1zMFZ8t|5q29c(Y
zLkSDm0@F^j%~6&#8~ui_&BF+2vE5a#W8x_jUzfpKp0wu4CTu@_sBPrx#A+ZaLF$Mc
zg1{(1_6kNMRSE_~x=FwsGSBX3_MEilsH_ouHb|-4i{Tx7S(~Ce9X@mL+@w=QMGQ;@
zb_Xai1?2_(W%Qj2z)z@iL=SI>)=1GK4}hJ0PY=0tpZ8}j%u^96L%<c6pi5oW+#iKL
zumJ_0^$5y>Yf53H0HS4~h}`u<_v!aIdlMkivm9_+z^<hqG`>PF)rPin@y{!564<Y5
zD!jy9)0~PtI9H;T<^x=&=)-6Wa}X@<Knk;{fWZ`Mh@V*|#g<ors$~+cXQ+W@P?<e7
zNEX{jx|3vhI+kFH4-Q&k3YTuFapy3Gt$zfQt-Y9TOG4Xny4>No$Z~crqc#9X3G_)o
zZD$sW4fGwA8a9@zS(1%Yb)=n3`7FxenHb1ysC31(AF`Klh4`ZdsWp@$LrSw`p{n7M
zC%qx9;Q`W3m|98qYeWeq3E#Wyiz<_ma&l@KBG^*1ymzASxc@6c)-hCK7(;@;hy<xo
zXtSl>3M=wz?>~Su-6w^IGB5C@bwc&7iI`0A_dGp*sZ$c$GtNjjp}Ar5M#d3T=bMrW
z3g_C=6lbtddM<*X58?H0on9c7Clvf|?VZ7~;lg=Gi7rV}NdA=AMZ4N7p<<k5u}$j+
z;?T88932QSrEMH=H3NW+5^)zv?FvedQ$`0^F7<K&u4qWBk_#;7QAJ&SibxW2?1zUd
z%<u}|#1(W^QO_5A>XgBrW3QAFJaZPG;BaYf);Rf~slJ-&xS7x}s4z=bDRwVu+G1FG
zsX)BhKgDr)`n1NENb5KyIrG1L;W~Kj`Rb|VX-ThB6Awp+W%XgmSk?;eAK<b<@4Olp
zPm@0^zp#W1X5k@|0MiaB>KgL~K?Amo_>h<v;OtS_3*V)`g{B1yHB?)ImF~ggaLrvv
zA@v;RxN<IkAfSpps-&C3?_13p&^8iO*ML<{akiAZ{~sleCpb!C6xN*d8e-r`d=+g9
zt#m=dEWFU%tL7ejs2%?!(u<Pg7A%8(WEP{2G>(oDDsLHx(jSm8Y#Yw&8~dxnF^;-z
z_K*6%GM!0}1;7aeXK?mPmYx4o;y0tv|6@o2Ia+-m&=7~ggJLwiXfM6JgmV?<(xZ9t
z16Ib>M#D3C-$>MP)XpAuelRy}a4I3Az3S*CK!GdD$&(GrXQ463_NAZKgKsa0)TdhB
zD0wGtetnOR5G`a?O2pqQ-^5pHE-C7LZBlE$W)N=EBkC)COYDZYkQL|56rut>n4ZkI
zXjR36tGECa0w6+Be%{bvvGte!@OSLo)eNj)u3h*%vCyqYiVi9y3(NX2+`-!;8!O$J
zI4(r)@N4l!>v<9(0EfuBONJ#%YCns>V<y$_<h6Wg>fd%p@<`Tl%2Fn4kCn6zYLKhC
znR|x{)}mS2ByT$Hjgx*4xd{q<>yjnpu!R}I&y6tP(Bj2De8fMeFq?FYt~`^ELA%=i
zd?)q970IXGq}<9kG-KCwx0EzAx5S633AxkKU&Ge9=zrQbF0fTxuZ~7NoN`At*Z>0H
zGRSD2T#b*h{t(FV5-D?bqN`~lSj@cWL;;7J;YaBiO}}&NP5f>4L+mmY2lRPsi`1Jb
zR#}Y-VDv9EAHoO*U%;`7tvV}oh`#1iz=B8Na5W!MK+A3^X`gKnLN5X90%ewCg?_mg
zv31qtUXgPV1`4|Do4WJku{pqkIT5iHq`J*ASjvhcf+VK0&XO5-hSJ1yC~)J9HMF!L
z#^8<*JdZ5>*k&asDP@cZWs=~O^_$5*>q|K|Zb^d2X8Lks=TTWtg3Z%jq|cVT#*><b
zbsS`y55W^Z*Bc+=WEjN9PB9`U-6n>o|3d}p#}*7qYG;Bmp2v?rr&32)n=B+)5=m$!
z>`+4~<9=_nkMs-}U?aM~PBom)QZbXub27YB3S8H)F!7-M0Ty3-F`R>BaZJ(4QfMD%
zJP}}*6Q0uNg2dDZJXzvJtkB2Qt*i;QN=yh<KUD_#tP<W-q!#tGq`mt4fz>QZlo}B-
zF-%y*84H{uM?=s6F`&Wdt+mz7C(n1Ey;)y>z4p^<Nmntp%w=7@8e{vK0RskE3nuzm
zb^0>5f9qeqKN}rDSmC+=mZG5}B$X{s`#k<4$$My{-b2cm$e*%`7(e^W^7OPUCYG6!
zEyYk+s%=GKSh2aRqD+h!ZNSc%T)xEeFlK}#tN@mlj=T=CVgNyKkWJCT3HQ`H6NRDB
zQz(Zd#v%43O+=q$7i}oEgH#H55}jvYzhFW241vWJ=2z<(Mm%k-plg!esc@1eGVyc_
zeq*Mj8?|xr(OgyAw74%Qu>_{hHqeboB~_RP;#gFlK8itqYG`EOSQ}ilk!B0(rU)%;
zd*VG6;!3ryy-ay2H7;dz?6zQBxs_5bh%|q7NRaY*<ev#*qk(2=^i_)~|4Qa5rc<=$
zf<>>%T{8ZL64TU!3eq!#4dekhMm{5{+2Ya)%DQswHlZd7x5?b(W8wjv;@@Jlx>21w
zs@CWTPMdfAD`#`dEW(`E?^ZHCxGAfsIG{e-X9*rV>Mr7nem0Dxxmt#HVxq}1rk^w@
zBrH@;U3u42xWpH@0H%2jw6sD(8dhte7|}bZA<UFf0eCTT5a~wTvp8fU<3O8dPT8ra
zEdO<UHr(O=(BWEaxeT{EnjASp5ie_~{{*oOc<`U^%_alX4@feX!}e^o*tUhx0WZqr
z6>b+Jo*|6$3<J<qjySf$B^Wh(##DylMB(|FcAR+TcqVU_4IuS_ew?Ki$q8G4Q|BBu
z>Gv7(zxzX}lEeI*{z0ex+u&S_-bCNRP9@&b=J63!{t)!x%tP4TTGqn2g(~bj?Qsje
zDNZ?trlvc6$$)irVgQ?wpyn=6g2yRt%S8peq(=$7a(pp1%|8?dD7VvK+RcEy8h>%@
zOg|5M^dQv>=5b`FkFkmd>=@O9o(@J*2@b~%bOt(0;jZA74c!-CNIorjRHyAI;0Va^
z)P6B-YKI+^7`i|Oq<8%=;tQNWRX-&Axi_uJ^76A+>+7%nw!8KBAJ$*I{I@Nx3eFLE
z_IN&mckKV7FpopS?|egGA7OV88+xC}q+NQuh+;e)(9G}W$Gy=49mV)O+DzIHbDWuK
zOd%>#_A~j}UBP7<c&w^AH&V}4Fq0q@WmtFjQoTTpW%HzWv|qIhLJcJm*2O`pI~=L?
z?LG<=z`MWl!5~1lbnI|{&{_E7+a-T5Vc20CN1*!sQ=Zp2#u*tL?J&6R)FuYv%>Cn6
zTWi2TJ{d%)kiCo`F?Lwbm_g~?w7zA%=#|gM-!91?txf=t&m5Qqm<W=qUAD*83v`ub
zHICuG98L~Fsx~MM5=Ew15oXBe57ovG-VA)g<&yRhJIE)XftpFI<>feMXPLw(^^t)Q
zSHcwL6&EWHZ)iNPv-6L^`6~9U;DXjX2+Ls64IJ4B1-O2Fb+~nmENjGgeqe<Y;MELe
ztJq(C-+cg%1KD5$DD_gkE-FUADZq<UQpY%{kIJLqBtCi1A1^pAKE_mNC%~n$j{;VE
zPCG2&Gr`Rfpd%bZN`aPhez?31um=|7BA|Et<_DepV;!Ju4AOz;mkflOPG(Zh4@AZp
zJP_##7jp<Z7a-moK@bA@bAY_IB@3-`*C-8jpqz>;Hy~tFHmK{D$GerPgw_u#)ahTv
zV(HNImB@*Nun6E(Uc*(aLu{A9-b5zESpBdZN8wRg6?zSLt|2;8FGZ=Y1~Ij>b$&t;
zqv$eONSy%c!nh)2{}ISuyrV*QXXm_+BCsMe=!9Mvc@iq*byr5CPQyf>fgLxG^OCo%
z0Dz1+SJz~L@s!y@9_%9TfT1uabt&=4<}vT7el)C|8e9x^a#W*t<tCtrzilCl{xC5t
zsiyJsOMrR@xL96VN+fnf#2<el0aOROgJtFf@Hx>}oN-A9ASzu<p|#tx%ge9}#(n<m
zNKatt;xqqhyN!wk6UoO>-`8B5o*D6uh;at535v<fZ+c=8R3uCyUE@rYSE*CmbhC`%
z$hbJwZ;pEpcKJo}-DbbX%J;`mo#HT=vnw4cYEx~t?h60Sq6NqrqvY)DG@X&Od&Lr?
zvZ-aK{R~I+ang~4NJ70SZ)h!?6d>q}Z8<ccll}pj6+L7oLrl^c$v8vwcsN#-3qNk_
zvY~M7Y@VI@PA^#f#b#w%eCQ_M6x}-{Oxy**$$z~)Py;qImMfOWmtyMExJ7$cgHZtz
z?pf0RYOG|>SLUHEo*O>N13#d3dJ=(uq!IQ<RCdDUcmS&uW++)t^}R32SZ$ZYZ>;@h
zxup6C?5Fk0^Z0`1oJIe*k*ju0SyCCwK$p}aMl?ooDQyO+xfx7F!*^3C$i_`QFLg8`
z5alB}fO*x0IUa-W;~rg@7c;;h$=8zHV}OV(*bJ%pq!3nabo9I!z8>|t9^r|sgfydg
z#;tU+h5|1WyT`3BVq@!E&d&iM!faNB@j7^@?>9R(U|mOC=r=U~`4_>9@0@n{R{!RE
zPABH3d%n8ZP-QC!elifOU3o23B_4i`C6j&<TJRu@xsH)D7anWDhJZc-pqPor*h6Pq
zIK&T^6K%VET_mFC<h~t&_YY#tcK;Avuv<UYnQs@o(O6eqovIZmz+eY`m<I<uwMoiw
zrj1o=`r*JaML?woWE2Sh8`l@Cu7lIns5%W~bF(QXU<&EEJ5Ebvn(RRkBVs(|2^tE5
za-$Z(b)=!RDHi(>PC?8yE5DLZoN{Io4^PqJq^2JuWGl>MVQGpQY|s;WYD;}^G!sG#
zJ10yrr{Lt1lmx9`rN5MWO=`-jE9RXZDnz50gyuA6j<`%Hobjm{QOl;umyu!Wr=IL7
z<MgMjPZV#G)<Al6hED=$*Sgyw&~#Wl@6n`ivepR)cx%IGMO4TnAS6Om5o*cqSlRgH
zh|E@@q}txwcWFO^0Ybz~M0nEGqgH$Gf+_mx00K|3BS+dl3bshp9i;>g+Tct167@@B
zZ6109rqK`AaUEz6cA$(DSge9gmk@3D5%M5#Xr&OQ^bH^}lVrM(l_Fh$h1??&Ik-_<
zDg%mki}V`?PnOVmkn><Pl_Zca-VK@fvpCmumXR+!X+?$%1=|yQfuMw`3OC!Cywr@5
zMTpD+6em5%%S^|rd}0%P<K!MOWH02qDM%u(qfC_cB8?lS7%-l`mkCcLwL-tuwM}Me
zbH;=s!T1ukzSNyST^A<)jVj}}b#1fZA}1t|1r0NBLn!WJYyqxNE|v(sX@r7*CB&a`
zaKam*qBQMWxoABrebF>a@lXUbJybNw!(YZyg24JB_qij(9%<X#*<7tN3^AG^ytAPi
zBkW-swn%A=w4sUVo2f~HzWv#sdSeau_f7GuC$Q(sm=?GI&V~Z4XV}CcQ?PhCHEz~$
ziXjWU*&!GGM-DMy7gXD#=Db7Evi4-f(@-F~XzeE_u&l3n=Kw2O6#4K^%ty0x`x|HO
zYc<^GgTxK+?S%W1$R7Ad7BqR3Mv#)nT1N{@kUWE1C;Lrzu$&l4+7ty)<v2(3dS9t5
zd4iK=gTu?R8_nh_pEBJ=j|0lpVWMp_h|n)@&KZr%FHd^EU4~D~m;Ti{99wYc)b|Ku
zChQIH!9?n8VRPgoKE8Z|!-@5c)Gd|uOGzxe&vQgcf4vjj_p>!VAyFQUAZyTNb)Nma
z;(6A?Saxnd3|LSv@0*Uh<hh-%IOxkb2R~@STo}w=6VRu<NsnXLBgr~KaFtFuO+`pv
z!jYK1c`Uh9kjbUbCOxYmh^01Yj1#lEEJ;^PcKmx!Yeht!hGQ+q3Gk*nzS@I3_Lf-*
z9uZ9evW-n~q4f67`^BHX*m?8_{#nTji~w8I*KDI?CiVj3wT~wgdUjznR=%T#sy@X>
z@ShG&JJna}IR#p2GD^?mM{u9QKkmhbDr1QI@oP6`9MciLPBqp}kNkLif=~%ecY;3_
zQ=EU{+2XXZz6J`hS>v6hj|Z}67Z39;e%DOL@Eu#HArw1NVLffP$52!fccMKwlf(9f
z9UVp&ts{im5MD%V%;jy8A0Teq3g&bwYMkrUerXevlva)}TdMF1D;b1`o*c0R&$J_9
z{axUDm&Lw>DS5ROY*%_K)G0JW`wt;9StCl=lP-*IMN}aGJZ^<WHP~*?K<Aru%rGNt
zzO)D8v}lA!?U(>zS^|xfm}UEmKCQqNQgD~H-!ARoKk$~sVWiB}_M^Z2j0+hb=^Z!R
zi-qxEOfqf|K&Yfxh?c>CvX!UCK_ruPlXQ+^`F7gUsLRQ95t(cwyBDlk0Jr_N*Zu8&
z_g@x&{zGa*bt`b#`}qVMmG(CLDid|oX!Mjmo^cfKgHFg$N@A8bxYF_jS5*M-Jg3S3
zm4w7sk{b&jPX3ih4t>OKxf1y2(Q?boG~DbgHQP!l=>25%q(}h)(GFKYb5+2WGB-4h
zBqI<7xh|wvY63*aHbaXUa$Jh6P$p|eW$G7=Ci+#f`wT^~p#T<t3S=<FO5ie|%21-r
ziPwl-i(If(NevXu^RTUmE14_0Q`Y1#0FTi#zx|JoOi2EhIhkOV5%-wxrF3hF&wMv8
ziP<XM%Gd4;6uQ<G%u2nGzgZ~8ie-XyvmVk|iES&#<sl=kUJ60t=Od81h`h8A_DAr)
zSKXuPA5A`vPD1mMLiX7AiAyExS5&iaT@79m1phB7dQBJTR61n@44|vLOJKHxGB>5y
zx^7i7PCI!c>><Gl$<dEkP@hcl`=8~IO-gh@X-CJFaXN(7#w`$dxUKINNIdC_Q6{6H
zIyOt_^j3*n*7=hi1xk1zczB$xn-t52ZBRt52(POcsS4`EkX%1I8texTK&M?b6j{bX
zN?%I}WEVQ9gVGyHNkN(bQk{C=&V#mijdBYm?i}EIatCTjMdI`B_YR6vudY4VJWQxb
zV_oAQl;VQGQiE>wNAMj#W9kL?S|dB!BJ9S+Y?*$fNbDFj3L$&KErZHQ?a$>X)#osy
z+MhFR<a4Bdm}wkNZt*#u8l#1=3Df-X*?2<X2KAWiComk!#XaBHeY3f~`~20`Yiw9>
zY5<R6kyv7kbtmQ&@Cb2kC1AZvj41uM4<B~#_~JyiF4NLv@C_kzx$PcJL=og`8p4p+
zQ%NrwDF_@q`^ZCT!4*GUViB7zBgFc(1L@gWGFeogT8!`}XQ-qb)m9}g1ObH|R7a$$
zOiBZ+WD((Ho6;1@jiN|N*m=}^JTjq3{w~VxZLqTI22e1Q1ucC`>^meah6T-uz`>!T
zitP<O(s~!CIsydV(BV#znf8r#=8_7j+0d=9=PyQmlNrIe>01eV9$eH>XTYqD<YOXB
zwoP!jOaQXmb0mI1Ph^1ECD9U(0`J<^PvgFt6dF2%*<Jz2mNo7?3@=Joz+g!nxflo3
z(+R_wR2M$|SkPMb4uTH?_XW=`W@yRjYOMahI>l>K)_A5CI!(R)LW%(`Aa{AmlTWhm
zdvVa|T7~G)2w=s>Y7f?!gqf+F)>CxzaPRUQ#nvG3kv32JLnWVWY0N=U%+iigidW*Z
z`K*J4jBOR1c2N|M;-OX&=H5c;mkQ_RP1K<%NK@G2NrsKQr6vE6I6pIpxa4^wD|-iw
z`i>ZSrRu=+d2?J%KuBcewW9bcZ;`pv-reOU74@ri^TQW}Cgh}cwfGe;GD(^wXioW`
zv#emw3{;mLfIZ=ljr?tpIL$I|9^shv9(>4W2ZO^w|KQ1SfBzS!8{6jSnv^0@jQv`Q
zGT2i5&SRCB<j(0pe?y?)M`}y7KQ~UG9pS`WKQM$fih02UgagRv1=kvCfS`-==bD^K
zw2MCp{{t`1Vp~&zIdJ`K&4m_<WtYSb@ffMZ3%cfPR5R&R0T|&r9*P0-kKqnI?mhh9
zUyH-7iYg_M3}NlhiQm-lQWVH=(e83giH5p47DKeRZi2Rqls&rGqE&sph(%@I+Ld7b
zj!+8!Q2eS(Z$&Y}YH_;omUqO)?9+Ef9G1r6?g8#PKM2PwtrK|7kU|`~u$uJH6LI0|
zz;dAJBnlb*8FWR*0#VX9gUFwU(TNY^BY(HuMj5zC7go72W%NTMkU5mRR>RI=A1Tl@
z?_V6IT-;H!H%t{Q)!emmdFqeWQA)gqE;58cp$bfu*8aj3y~Oo(?VU#WO`i6hY?;H<
zY9_;Fr)^)u%{1jaGdvh0VdG~h;g)Zv$=q8w_i};D5<xCXRbSngtHBM$rQ9ngYV7E9
zf>>Yiz<|KgN2xQ;^LTWI!vEr_7gWeGO@t<M<puh+XkFm4l(w4(Yg>*G!Z|#rY{F@(
z-h%|7VyJ_mj41@kVL}~X22EA5D#xhsX<J&HDWLh}un~8$xj#*tu!RyyJ!nxdfCh5Z
zi32`YNcGdVas8}QwFZZ$&}v{Pm-A{AZu^uFYa1N2e@<_Puh$Q5Firc?SIrb!!%$O=
z&H`9luF9ZTzu5+p9YU~PK{2xpu-NYQSQ0^NycXYxSzQ6ir3wgO#zCa4=d68Se@!t5
z8gnjui-8(28$Oy9!{GyylcI_O6J*x7x>s3zp65<Cl*Lx}_xtA)9t`JpEd&<|8ix(=
zBQ^v$%mkjnZ83H@2%>Lqa5CUEWZ?t*gVQE6Qg8ST2Ed^Uqc}Z{MHw`qA6Q=QV%xEI
za$$Q?NKL|PCMcTfbEuQW8cij9Avc`h0bz$e(~TEM*P1krbse&^zHZ161|fV*z-U2O
z_1uxn>xPUH#=OaZ1oQ%y2X<5;3dal*XgFD-OzeghES;V%#!J}corRzChenrpZg~tI
zz+?ZB%x>DLV~a|~foUQnGT2AVWR((6H~FBvPcpBjAt*f3g$US^MG})mC^q7=rZSA9
z2bNX#{dQZv-5q)%QYgHJHjo<5XdlaFK`;_#0ieokwY*aIp+?+*BlF8fJd~D=@TA#?
zne@$Vmx5{CETXXkgFr9VGd0c+jdzN#419b*wEfZ0%KDZT?o_mC$g<N-RP_`_7mE0}
z-~quoo8{&7F{X-s&d+j2qus?PJgThW0|^~Ovn_m5IL1t_q=)BqzJ-P`i7=CfkV(5Y
ztn}q2BW<WMtap3*+>`cB>ZDc!@+!}2@(BQ{!FZjM#T;+q#nFOhQtpTBC7cP;$Q_ve
zCNOkOxs;f~1$pH;Txp(|&PcqrIG*~yMXn~Xuxe=)xt*2e>QP1lmV|`4Y?N3^1yWP*
zfyKpYi=ZRcl;E849K?YT1FVadTn~VBxB!BZtwe0#MWMycJsy^1+}Fghv}G#7xM}t;
zxS^OFL%2{v%l=3X`n!L+t|`dN4uFgFvnG-6fgRx3tu2Qyd(V{jC8O4{yO1bD4l>P@
zY*cL&jGcc5B*@f4C1G@c?T4hvcK3LUIkz%H0&Ro`VaT)L0N0@oe(M7*sFP6Fhfhhi
zP+qn;Y4~x&h;#=6s=aIMC+|H(`L3Kq_&T9_y&P93d8&!8)_s&j#ar1&YFn;(3Z*{X
zZXXRMU95ZoXqsIsZQ4I4$JfHq_xVaMT<B5%us<5{L=*PizQEoxzJ+ze+0_Acd~_vD
z$46Iy<bB)@M9eC#!j$A1C+LZ#0bG)nl<LSxdPRMJh?=Vq7YZuYl3q~YU3zM&P?!Fj
zE2*)z!=NYVcJTc<x>84pE0G$X#CL%vlv-UdfCSat^qZ0^uLCo<Vl8t&MX&|&31BjZ
zy5#mUHyI@1Y09wLLi?!tVm9aO9e5Zp0O^!(({L13*CU`8QtTRQp<FwC8K%<*F^*VF
z6QG0P{>cT7{^hcvcDXT5C1BM4@K!L+L~>nY@X+Gf=x7P)u1qvdFfSW<lg_#xF}ZTP
z4f(d;S7Hvh%7FqdfH~Ft<#0SgseQ&}y{hHxEK=Xo()m&d-<Z-3P=qPya%)T=I^2CV
zZi0qufPH-kWBP}IW+od+mNYJekI7Xc^riH}VtGm_vXM0|h-bKdj{IxZpF|!(1fD=0
zNC|1wKYy{Xcvo|k=O0LsU3{L=lfdG3BwjYbR%hBXz|Q$ZR;;sQVZV6)iVik<VH~5j
zh#Gn|7-7>5lLr>)LST|(I$mtgU5E~&dC{1-h(P_#M%zwR)}ML~6tdzK<`q2EIFK>5
zjh}6;Z3K*00Sw}==$H|<#G8<R*eykk|90Afxoh}Jnx>hr;R9~L?1$_*Py3UeU>2lh
zQPx5l(5593Wuo4~hnS*w5Mz*dXd_T#c<>CMraf3(!uw&=6>5i4FMi8~G+-<q*AUdJ
z!XTQ?dXmj4hNrE4lQ17KQ*>oeC5F6mm`}DAFG}zBX+4dn!$@-p{9tWMp;5z4<V&{|
zQW`eR<3R?atPpO|ERKw!3<_6lx%sTQ(|S}rzCjN2b_^(K498bR*1{pv+8+Lj+yLF^
zlENDWCdt6^x5nmi@N!BDqRvo=+&t7$_c?y%Pt#~pl_z}EI>60*$e^5xyzO>;EyLQ+
z%CNPh|A1F@i_KxdY)7N;-UHyJhE%Vjdhanrm*W=KUOE3%iQd2EdR1u8WuqeyJW;0!
z(m`~`(?k$8Y>+#OM5d_F#bA1#7FN&IVFj>`MwLx<h}&AJN;cNmMblT2nx;)}DUo%W
zVM{L5?C6Q_$-@1Smnma^4m3EQfEZb6Z`py)+#jw*ceDt;xx@|U;!)MtKj@Cw<>}1b
zrAsT_G5N3PEZOE!;w!)i15Hmnbd2DWQUG93kI3(ok@%@@sVCt+cVgG`tl`*kWZJSJ
ztUzu-;h^*ZDvSuX^oN=X!gsvzfqtyiL&eH&+u7CWeYE<SZKhOv16kKlaH2w3G|sYc
zT#tZSX#avRRP!ajar{2Z!+JfCgy<}NPrQhliXXCIpe2&trBWRS#k%?Ukwk4nAcx|@
zYawUd%^*H<M&}$9yQF=3576Y$=b~A}PStGUbi-rzY3Nk#G5?-jUa(Z0mj6?vz%j|;
z<m!meAATh!Nu`kh^abv9Ri=Yt8R>14Uw$+9{ul^`MPU!SU5ZQ3CaI|>KxFf5QOzs6
z0#-^4jF*=;HrIBay;xt{efsKeFV|nKJ_V@C1;{kV-##y6Y<pK6r4!+;Ulnh<E8sBr
zGkLQK@c9hW@NxwLL0-k9u7#n)v)nPW#GmTW)n(87JCKK+EUfEZ0H_=;Bx8rf`>84S
zK1wWSBKps0o*5kWCq3fWU>|op;SI<o%L@5e3`S8{IYOVH7q*%bZ8(^a_&dUeHQ#{;
zxfVCcsX05ngXsGRq%b1@ju~A*!HSVD=W{VW>G#h&5AO3nqPvK_M_IXvsEyWB++w9e
z1n`4g?MR(;&-UW+6v#0j7sBu0Oir^154U)VdptNAA^~dDUu?ZbaH54${-_g;D!5dW
zsJPxb?G3RF=}wOO-P6GVsxY>ClL^c*w8!OQql@8?6*GA%<_wtyt=<s|+Q}8RbZVe1
zBUg~M(k{;~_&4r-*P2i08Oo>k3rcGmK~q8llm7}5cm}Sht6=Ig!52iIyAM?EzweC*
zi&>P$mqm5y_P5q*<!{=$8nUobpGBXG?QfU-Qw6vR03#t+j4oBOrHF1NRFaLWU2#zP
z!cZh6;{u;FBM-)P+Cw;mX@s8I`&8?9>*-@2T78am$o>dd0$w0d(m9%Gg!%%>@sRv^
zBBG&vzU)^9Q-tLoNRCd~8r(-V$5K}nG$no5r^`&OICxClbSWW9!B3DiS{Q<%J_s7L
zrkVORX@L|<&DnsQU7EkASf9eV8RJ#~n8LpGL-~r+r6AQGXG=q6XB^#A<<qhtvSKP+
z8#$zE0hLT}6_4e1mdO^F(yhII>ky{Ur9=?>2e_omHh83V4<^2cdqeE%17%W(ApAxQ
z42z94U=cE>y-Rj>h9Y#3bs)ih$)*NlI(bl@I_}-|RV#8_hz9j<<cQ>sO?U%43yZ<_
zqO^8OoXcn>+5V6}gl4B1j%6aR3p@bfRDeHIj-shZPnugonB4!EN3d1?bn|H54mn`~
z%pXQKZjun(J{F0aK6!E2b@|-g!sfXz<w`2c%dND_%pj_t)SY*X^dfr)&`LadC6Y)b
zFD$Qio8ly@gCq|+46&YS19ek;dH*ZQ4oJU?(a_ikL_U?1I3^%**#4U;?~H5z>u6(>
zpC<g?!`g(okjNq~F6Ez5gb)J6+&{NM{vVZy5;V0c(bv(B0EkN$0Z;lnimM`GG8yxF
zlG<T<px1MmAP<d(sLZK4i(~2b7Ms|#6Fn6egegcYI(xnA%1Hw^BX|bFJ;Gw@gco#g
zgfwY;n)U6UrH<spTB?OIxbQS_#D~r|Db{g_?$Boi2^?cvH4Qj$oOZQ=I>$9yl%*XW
z{HXcfS3;hl!#YBat{Cn%p4#MMNm|r80AexA=BdO64O0mX{=}&$O*>UOF@e+~(ceyK
z(G9g~LtY}pr2LmwhlD(h8-h?C@-YfA#>X)4_@8qiOg(b|z#V3Nmf4YM?K^X&r(cQ1
zsP=#QxPjf0;bfWkNkUo3tlab_I7=XJm1qR)${BB3(B2+15OLw^qY9JQ%$$8uB}%ew
zq*!6|rIws#<ezHaVK(Yc;hcPT=Ps7+N-|JzbF*b(14UEck8sKCOR%q~7j*-G9ViM~
z;$G*{UAbZ;l}<4?)rDc4nRje!Y4f!lj;khzAiw*+L!Bf*$ghR?Y&d$H)m+Y`@N7%v
z0BX76rpebqg2Cc?g>Dc-!1nTF7bgoxyR5okX$NhAP-9^9Bs%Qb^#bS*|CP&KR~7?P
zrvIB&QBsVEQx0WlJ_aGyhsy7i80z3K7;;=V6f>g2n$Lg<aJ|Vx<@kWbkD9PAMRms6
zcz@P%U*me(>&m5!yz_A!m9mocbQte!ou8ad;6niorY6;l45#1na+Z|1tn&=X(o&w(
zu|=*jf;PAesxlpb@<KMRam>`A$9vFo>ms(ZU`AAzcDV*y%%Z_UhIkb}CB<>B{J(3P
z4k9-OI9oo#)v)~;ZhI|djOkN21Q4XvQUlip0wOPzPnCk=O;yE>hiAVP_vyvyxz|_M
zzugS7D%sEA>>po_ao=O4gJ1~#4I54#N?6UW#|1?MYlwaY@3KTqY6iKNFC{IGP4a?S
zF9&4O_TVPlns5X#OhWVg&WXFmpBJ}A(~jSy&RGu8UFrXdm<YsUG%sWjk87$qNez(z
z)?JbM1Atb&y>Ua~vQfH=;iJYI(^wac(I0wffe=uH^`N!RBw|4)Y-BHuOEhox<Dgcs
zH?D9JvhrfSv0r*}ds(Dj@gp*wx5h0(4g2(Rzp{FaXN~Er?z20Sfmg<eh1Aw1p+gF=
zgk+j1vBS{GAt<<XdLmLBX;>uzCZvVf3uzc=tNvJ$Y*9*L9`)Iu?yglH1vu2O3Z16(
z7s#}*pVgHkwwPc$F+1iDglAKHDCZVu!4wEA$`em}-7pe0F>CM%S~!TxOzj;G2#gX=
zW$H>?=*<soi}*1tFgaG#nP)o9UgQey;(2}PJkQZc{s-Ut-|UL)kTHpQuGq5-byGp@
zwf$c(qQtvw3dwYp<Vr8b3w=bk2nrBF>82p+_A+!%S=A_CYhNaJkB44v7evUapzx**
zQNiZzg5j8Yhl5qg9yZ9PFnr8hy4kv9>eZNJb``3^Xa}*{0q7So?nFen=F_QI*AYu$
z1_ha>3KWqp7!KZ1DRokn*rOKqs@qrVP3@TKO8*M}I@UIdsjR!W`?WtB>~~Nm&vV-J
z11&;ed>nccD2j%Za%TBf6Kqp)m?-=7F~x;SYm<7l$nH$h4>8{*>IoH)26&<?D9LiA
zP9)W83ks`7XZmdVbv4o043o;n^Nz{pJ5Zm)36eHYNO=gAE3DwUwRO;k7hymlTzCKJ
z;+>u0&d}Ajb(ns$GrS`wLUuh1&)R5is0-+36?g*)m~q+@qwMVA)QfFsB;K0oYff0d
z=jZziTpZgU6_?c*%X%aKcS9<56m8|&9WPE-`)+i$k3rUcMPd-rLY${%i_!Q$E;=U1
zSIdo5eJOS?Mzqi4m#GHBkikq>>Q;!tL-QmD%n-)#QqHnuPe$0b`I=@gV1sksMei2-
zj98dKw#6Z`i{f#V0rw5)*e=d|U+UTT@zeD3kjSGuQ;uGb&-?qhHAl`~|2roB?_^8K
zxwVtkxZZ-cH%~$*?CiNyDrhnRmgtDwj5TqpiE~a&%gg;=&wIlIxs+KpIyzUMNiZ!9
z(<UW1a(d&f3=mj0LcX{zS2ZwUD=z6Qm?m9ONEGX?SogTP50<#`kFo-GMWN@2Y0Ay`
zD>R6)cuTyFZMNI?l2HpJ4cER&?+tC*975fc^i=G`p=+vsZKq$=RwVbzfsj-&HS4QV
z&0z31qmv()S{lmpW07r70<yt<9k_Oz6eLB}n0)*6#pc?R*RMAJzPq)yvAVg6KY>Hf
z=A&^)f*_Ll*<z?<>F42f%gN2zuI*hbAIt6&#2o7gc`Ac^2B>%WmiNGt8sgRI9GOe*
zdS!ZQ;FK??UU1HNwUZmprFPyNiaq08H?)>sgN}?<oY!Een`ftBtH?ooH$gnbLa#D+
zc(>aVzk943D2|v^LbpehO>&j23lW=bIDliZHLbj341r#Nw*K%PcI>Zy*m$+Iwz<3c
z>ecJrAJ;awUc7pVbZxFW{R?yV^~_<$U34^1LG(L35)Z0)*VX<0^R?BdbZ}$#5AY9h
zvoMDs<xM+zC|^r=3I;lUIA;_ov72O`#0`USHc7MS#7SaIT!S0w%LL6+?Cm0g?V$-8
zI0C7Ct?#hw^hriCD*#HmPT!yydHVopJ4J>}e}q%F;O2Q`p`9ZUjkz@%T!AYF7twGq
z@K7zY;VI4@3?{gIX*M*UoE^2g!w0Qy7rEP$$>n#SKj(t!&_0_S!93A{`T+?^GrFtS
zQ0aHHF;hM>5^b_a?RB%+M%5hkc-Y1l0t%8XFRHzJ+B@%r)+i>{6X9hdRPP!}^R#P(
z7gAPv<Xt|Mzd5ygt)r8(J?B=4#Cxsp*Izx}{b6<U-&()x->+V-{~i7Lp{48jPj@!@
zJ=$8Cnb~kfqT*(5uE!%0xOfqF1EFMdiviy!$GzdOf3hiQV#JQ*fTJ$Uljo~1U#_k1
zzT6^l*>V1JjJe2SEW`d}X<t9>K3KdD+JijBSF7vmyH8eMuYLb&^TpcMl#dT42TQ2e
zIa!21gIV84XFO*S`msL#zPqvd<lk1mM^`UiK6^Dwf7Tg_QVXw3QgaGj=&*TWDQwnF
zgp4!XTw7mT-I{rR@S*jA>ez?DF!P)Y2w*2tI1}dZyGE0zo9FUO1*F~KSp07)obij&
zOZsx-KnAJU2fVly>jg`KYO^zs^*S0b#ZCqG2S5C4cg^{0u!bDCkrTitDggL}GYWU<
z?2u3dkR*a)BSArXUs_^T4=AaylUt1VIi*ix^u8IwvXr|Ov8BG~2j7YwRoGZt-E0~4
z;$%U~Pq<SswhmBBi_T~*CR^U2k&1#^rXWp+0vKbKN=RA8-}<aY2$JXIznZl)tp9Y1
z@;d<yj&W4-`}I^#qKNYhfA3O!?gB{oYh3nBU$}d%J6rPgPd}`$o!~~i;pEP}*7}Rb
z_`Un`)!OFft4%;DdR;KDIu&Ehit;h`R>R5R6x8d)1p7F*u{S#Vr9WJ3b$pKxNVrP0
z+*<$s`S{-#C~O4>ias}Y0h8+Qn+Z}`0u_uV6ki}QoTjkfSgFU{!cW*^J+NT-?V^HQ
z%Ku73J>^T!Q;<IF?h;N)FTzY1lw*=NbZpmx9GOoI1bghC^Ns&4RzfW}(2Ot9c}*sa
zj^*N@oCdyI<@hxp8aPwF+z7sUAl4Vo>_mI@F>81oWtc6s>c8N)tksNRp&9$?kACQ#
zQ~nkaj&zY5g)a<W@Y(Wm+E@fLI)vdmo;<j(V_+q@Ck;xPZxmEHJ_GvK<_{X1KggT=
zHd)(a3K&6Mn{(~WwXN3=7Qd8S@vK|yRP^1$Deq7xgc*<my@3<HyPv$XnOTJ;q0Aay
zA$+=F1f7_abN!%-=qHLqv8(R5C9((!aEHQb-h?~p8xv%iS_s4i5trQ+V<l@Nv|Md8
zzBoF<Li7)ersw9z7w0@&*7r0=GN7O?yJ;mLmTQA70Z~Gm=*e~g_{ip=FOydt&J&`o
zG7!4bux(9$*OtPf{OEtsl&#k1V;s;!1`u_gjZClXC7rf-N1b%Ge|9ov^i%Oob-~i*
zc)({>aNX0YxQH_jxY@45OtRJCwVx)yo(5;I8Y;qi7Jjbp#m-7%4+}~#5tA?xg*x{9
zYP*s^Fol#9@UuEJx^kfwEwHd_s98zt5ky*xArf_L!s#4g!_*)Bv;otIK;g9RJ}^8S
z1H<V4aCte}<D6IY!&J~O`GvNHlua3YY?I^HAVI9eo#A*Hz68Er!k>5fKV(_{OT>Yp
zw*N|B{desTo>Kfr`{z4YkO`WBT5*{bS2TrQ1_1T?I5~jHcZ^10G;~40V7}-N^cPuF
zA1TFSyLp5S8qY2J*>6}>THDI{VMn&eD#yHth>9G;11QzW!le{}P*r2j5KSmbrn%5s
zX~}g%*X}>gCQhE!mux&IO1YWj`sq8hJ3l|q-EjT9%US+gD88surmDZ7{SNxL&-nmu
zs>@AbMo{B4CFmQDsX9+BfU;-M1sT_DhNod%_swQZS?FQPn$El}I_)V#dQc*$5aqT=
zXqI(Y9z9@>)lbODfr^y^N&Xb&<Yi0&1wCU)Pdvshu34cOzz`bN0XpNKGl>XpO_S{{
zK8<2R`cOuNR9WWD+vLU}1i1(a$eUk!NBxS%WCMU;uPHpq{kBt!7zwD3;*(twdc}@r
zVI<uMu6<FQ>7$ShW_6IV3I3Z#Gg~1+yw#m5PhSXZ+;GTIXW9*)ZdHoSzEFor&kD9>
zmG&dP>l+Nw;AF6mTh(i<8(wxaK8B(4v_IY-4dlM(Ou)(**tg81@?dj=0}!#xsmOz(
zJcH^YboT;n*e?SN&r2xqC>avJDpa&-j*`ap1@aOSnMxy9_VvL@6WEE2YY}oFDNxbK
ztCuxX5u8}=<oUG3RCu4Ju{bUx&sp3cjD~1bQ{?jQ$~zE+HNweEy`~`}9c@OplcC9Y
z+rP4|>FTB6wk0s4DSMtm072CAq=rl9T(aO-KA(j-5{G9k)Eu~<@BhksE09(|fk%Tn
zJ~4-r+{g3TcP(7U!#3(rimga|@_&EAD9(H)KCeypv!T$;Bk?y}U;C1u&nL&%VHA9T
zodhJW8<!Nqi<4g`l)qJ1VBvF&+A$1_MJE(yk*rFt(06iiL<pE!w`duV8oy8*rn|Ct
zF*rGR8amQlLTn}-lfdwQAK_lAH@|F;{@={}dZJsfs!5g7x?7!@70~$Q6k`k`Dd-z<
zWdB6}K_Dpj5SC&X!W{|Mvb?ge2S}yS_S!E6vxh7y+TM&WfA6SD=h8cPqS2E}f1At-
zXQm~xa><^_DY>QU1@`nQB&s*}u7uzN)68n5%?wb}az!xAfZktfFJfov30?kPW`){f
z=Vr(cV4Yq={dzZ)Uqp@=Mzie1HNI7iO-);L+`d_;V}qKKCN8Li#0~v8%tq@xEZa3r
z=nCuPeJ8_<_)mV%wApBk&=KG!`!*Zoyt^{Z)GgaKS-oYuD-GcCgK4&K*_LK;)Hg6s
zuynzAj2xeR7I$6HC*zU~qK=tvn8kK=O0G2J4zLOdpg7}{Qd#Wln(8m<5_8{<n7B+#
zzvL;06>;vyT86Li(4lKUTTi@HOgj^+&FsE0zoMBI(Vo8fWVUaBdfWd>=01zr>(yS}
z*bq$S#;lc=oYn%_VjS$Lw~;087%f^v3F&KM6~kz8DV{h~h`&z8t1!uJ39i4HbKLuY
zA7Le_gDTDpkznR6Ac_c$;bKjWvL?|tSb5eceHh)m$<t(x;1d0Bstbz_QL4u<1b@V?
z@hj;v3EtUhTLabXkJt;ve*6WosT<;?XK4`!3QdyX*d+NW+*VEoAv?2~xUMyUyJX15
z4#MQ?z7H>(KHrG`rJC<&n80hSLCu#$F~|HUv%DlYaz;vO451HT{v<S{sdT*)Zie|^
ziSj(OXWxTR!gmRoc=udN|2r&o_<(Q24?%OyuvqC$8>|Ldv2*pJltAO_SF%IKylOtr
zM!yAw8%;z;SH~_eum6?cHSN)KbB50>Z_f+&L(S<cYKg>|6$ca%Sdp1Tt_IwcAqV5<
zEE!6@HcNlT#s#zw?#p1YlPIHQG2IoaLlz%DEI;=3H%!$8rHURZ!vkG7Og0(pql9t)
z{K5Un*()5G?ID3bjS9C>h(aPM?eD&0ys!U%(qBiKsoGwVcSjR_x59=e_Uc=Cbz-l+
z<ts!Qwc%&qQKy%?lH$CdBVF`4e!Re$U3cL4byND3*@nDlNv>RxMP+0*<Otih)(Wgx
zowj7K&dK4FZ~-ZsQTBlSLg`N*&l$q<W!sm?@j`x#bWJ!t?YjrC<{q^y2^_!XkjiPy
zctFob9K*1a_93(4=g<|0aIa3r{NBGI0`Yk?9xG73)9iNwiPUqYFWC#&H$vD7ZqgJG
z-UVok(#7td1UV0Mbc{GEuyO&K<{>$!=-JU^FmQTzeOd)EikYeK2`YZ3`zXQ$7{~7i
zh!Mh}ho{<*YJn5RZL)}J;?At&^Y*eJDp7=(gS^lMNHi2*VD464(R%phsJ4d+x=oiF
zx&uVvF$}kMniOX1pAR2rGK9wF(X|YiJ{)GX)8UJ{>0Hs@*%;mFJjXq3RcrgM?Kr^`
z&TaJ&RlU)-&_|TGC=dwuD}haxiK_^`$gr_&fpfDrk|b<dd`MoENQ1LPY@m;mp7lY3
zc{g5NTiCFPv~}|{IHU?WTana|v(^i!%2W+j$VErKAu<#OC7gZ|w>g-l=ph%0DxQ#h
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%0Dww8ra)A-v{LlPtHVU(a;G3At536C
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%0DxP5MQ@psjyyQhX9kKDMv>`zaedqRfQ%
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
Bj*$QW

literal 0
HcmV?d00001

diff --git a/dev/.htaccess b/dev/.htaccess
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/.env.example b/dev/tests/acceptance/.env.example
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/LICENSE.txt b/dev/tests/acceptance/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/LICENSE_AFL.txt b/dev/tests/acceptance/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/RoboFile.php b/dev/tests/acceptance/RoboFile.php
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/codeception.dist.yml b/dev/tests/acceptance/codeception.dist.yml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/pre-install.php b/dev/tests/acceptance/pre-install.php
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/_bootstrap.php b/dev/tests/acceptance/tests/_bootstrap.php
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/_data/dump.sql b/dev/tests/acceptance/tests/_data/dump.sql
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/_suite/sampleSuite.xml b/dev/tests/acceptance/tests/_suite/sampleSuite.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional.suite.dist.yml b/dev/tests/acceptance/tests/functional.suite.dist.yml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/AdminNotification/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/AdminNotification/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/AdminNotification/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/AdminNotification/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/AdminNotification/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/AdminNotification/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/AdminNotification/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/AdminNotification/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/AdvancedPricingImportExport/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/AdvancedPricingImportExport/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/AdvancedPricingImportExport/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/AdvancedPricingImportExport/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/AdvancedPricingImportExport/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/AdvancedPricingImportExport/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/AdvancedPricingImportExport/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/AdvancedPricingImportExport/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Analytics/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Analytics/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Analytics/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Analytics/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Analytics/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Analytics/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Analytics/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Analytics/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Authorization/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Authorization/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Authorization/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Authorization/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Authorization/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Authorization/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Authorization/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Authorization/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Authorizenet/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Authorizenet/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Authorizenet/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Authorizenet/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Authorizenet/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Authorizenet/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Authorizenet/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Authorizenet/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Backend/Cest/AdminLoginCest.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Backend/Cest/AdminLoginCest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Backend/Data/BackenedData.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Backend/Data/BackenedData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Backend/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Backend/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Backend/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Backend/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Backend/Page/AdminLoginPage.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Backend/Page/AdminLoginPage.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Backend/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Backend/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Backend/Section/AdminLoginFormSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Backend/Section/AdminLoginFormSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Backend/Section/AdminMessagesSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Backend/Section/AdminMessagesSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Backend/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Backend/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Backup/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Backup/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Backup/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Backup/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Backup/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Backup/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Backup/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Backup/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Braintree/Data/BraintreeData.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Braintree/Data/BraintreeData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Braintree/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Braintree/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Braintree/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Braintree/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Braintree/Metadata/braintree_config-meta.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Braintree/Metadata/braintree_config-meta.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Braintree/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Braintree/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Braintree/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Braintree/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Bundle/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Bundle/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Bundle/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Bundle/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Bundle/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Bundle/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Bundle/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Bundle/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/BundleImportExport/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/BundleImportExport/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/BundleImportExport/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/BundleImportExport/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/BundleImportExport/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/BundleImportExport/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/BundleImportExport/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/BundleImportExport/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CacheInvalidate/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CacheInvalidate/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CacheInvalidate/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CacheInvalidate/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CacheInvalidate/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CacheInvalidate/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CacheInvalidate/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CacheInvalidate/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Captcha/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Captcha/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Captcha/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Captcha/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Captcha/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Captcha/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Captcha/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Captcha/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Cest/AdminCreateCategoryCest.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Cest/AdminCreateCategoryCest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Cest/AdminCreateSimpleProductCest.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Cest/AdminCreateSimpleProductCest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Data/CategoryData.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Data/CategoryData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Data/CustomAttributeData.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Data/CustomAttributeData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Data/FrontendLabelData.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Data/FrontendLabelData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Data/ProductAttributeData.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Data/ProductAttributeData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Data/ProductAttributeOptionData.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Data/ProductAttributeOptionData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Data/ProductAttributeSetData.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Data/ProductAttributeSetData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Data/ProductConfigurableAttributeData.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Data/ProductConfigurableAttributeData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Data/ProductData.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Data/ProductData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Data/ProductExtensionAttributeData.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Data/ProductExtensionAttributeData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Data/StockItemData.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Data/StockItemData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Data/StoreLabelData.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Data/StoreLabelData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Metadata/category-meta.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Metadata/category-meta.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Metadata/custom_attribute-meta.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Metadata/custom_attribute-meta.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Metadata/empty_extension_attribute-meta.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Metadata/empty_extension_attribute-meta.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Metadata/frontend_label-meta.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Metadata/frontend_label-meta.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Metadata/product-meta.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Metadata/product-meta.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Metadata/product_attribute-meta.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Metadata/product_attribute-meta.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Metadata/product_attribute_option-meta.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Metadata/product_attribute_option-meta.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Metadata/product_attribute_set-meta.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Metadata/product_attribute_set-meta.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Metadata/product_extension_attribute-meta.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Metadata/product_extension_attribute-meta.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Metadata/product_link-meta.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Metadata/product_link-meta.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Metadata/product_link_extension_attribute-meta.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Metadata/product_link_extension_attribute-meta.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Metadata/product_option-meta.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Metadata/product_option-meta.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Metadata/product_option_value-meta.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Metadata/product_option_value-meta.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Metadata/stock_item-meta.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Metadata/stock_item-meta.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Metadata/store_label-meta.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Metadata/store_label-meta.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Metadata/validation_rule-meta.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Metadata/validation_rule-meta.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Page/AdminCategoryPage.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Page/AdminCategoryPage.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Page/AdminProductEditPage.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Page/AdminProductEditPage.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Page/AdminProductIndexPage.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Page/AdminProductIndexPage.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Page/AdminProductPage.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Page/AdminProductPage.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Page/StorefrontCategoryPage.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Page/StorefrontCategoryPage.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/AdminCategoryBasicFieldSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/AdminCategoryBasicFieldSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/AdminCategoryMainActionsSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/AdminCategoryMainActionsSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/AdminCategoryMessagesSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/AdminCategoryMessagesSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/AdminCategorySEOSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/AdminCategorySEOSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/AdminCategorySidebarActionSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/AdminCategorySidebarActionSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/AdminCategorySidebarTreeSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/AdminCategorySidebarTreeSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/AdminProductFormActionSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/AdminProductFormActionSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/AdminProductFormSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/AdminProductFormSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/AdminProductGridActionSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/AdminProductGridActionSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/AdminProductGridSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/AdminProductGridSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/AdminProductMessagesSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/AdminProductMessagesSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/AdminProductSEOSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/AdminProductSEOSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/StorefrontCategoryMainSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/StorefrontCategoryMainSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/StorefrontMessagesSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/StorefrontMessagesSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/StorefrontMiniCartSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/StorefrontMiniCartSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/StorefrontProductInfoDetailsSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/StorefrontProductInfoDetailsSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/StorefrontProductInfoMainSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Section/StorefrontProductInfoMainSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogAnalytics/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogAnalytics/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogAnalytics/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogAnalytics/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogAnalytics/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogAnalytics/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogAnalytics/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogAnalytics/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogImportExport/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogImportExport/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogImportExport/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogImportExport/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogImportExport/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogImportExport/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogImportExport/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogImportExport/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogInventory/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogInventory/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogInventory/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogInventory/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogInventory/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogInventory/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogInventory/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogInventory/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogRule/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogRule/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogRule/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogRule/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogRule/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogRule/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogRule/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogRule/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogRuleConfigurable/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogRuleConfigurable/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogRuleConfigurable/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogRuleConfigurable/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogRuleConfigurable/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogRuleConfigurable/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogRuleConfigurable/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogRuleConfigurable/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogSearch/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogSearch/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogSearch/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogSearch/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogSearch/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogSearch/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogSearch/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogSearch/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogUrlRewrite/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogUrlRewrite/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogUrlRewrite/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogUrlRewrite/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogUrlRewrite/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogUrlRewrite/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogUrlRewrite/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogUrlRewrite/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogWidget/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogWidget/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogWidget/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogWidget/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogWidget/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogWidget/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogWidget/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CatalogWidget/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/Cest/StorefrontCustomerCheckoutCest.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/Cest/StorefrontCustomerCheckoutCest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/Cest/StorefrontGuestCheckoutCest.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/Cest/StorefrontGuestCheckoutCest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/Data/CouponData.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/Data/CouponData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/Metadata/coupon-meta.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/Metadata/coupon-meta.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/Page/CheckoutPage.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/Page/CheckoutPage.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/Page/CheckoutSuccessPage.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/Page/CheckoutSuccessPage.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/Page/GuestCheckoutPage.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/Page/GuestCheckoutPage.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/Section/CheckoutOrderSummarySection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/Section/CheckoutOrderSummarySection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/Section/CheckoutPaymentSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/Section/CheckoutPaymentSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/Section/CheckoutShippingGuestInfoSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/Section/CheckoutShippingGuestInfoSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/Section/CheckoutShippingMethodsSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/Section/CheckoutShippingMethodsSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/Section/CheckoutShippingSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/Section/CheckoutShippingSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/Section/CheckoutSuccessMainSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/Section/CheckoutSuccessMainSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/Section/GuestCheckoutPaymentSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/Section/GuestCheckoutPaymentSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/Section/GuestCheckoutShippingSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/Section/GuestCheckoutShippingSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CheckoutAgreements/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CheckoutAgreements/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CheckoutAgreements/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CheckoutAgreements/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CheckoutAgreements/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CheckoutAgreements/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CheckoutAgreements/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CheckoutAgreements/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cms/Cest/AdminCreateCmsPageCest.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cms/Cest/AdminCreateCmsPageCest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cms/Data/CmsPageData.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cms/Data/CmsPageData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cms/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cms/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cms/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cms/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cms/Page/CmsNewPagePage.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cms/Page/CmsNewPagePage.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cms/Page/CmsPagesPage.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cms/Page/CmsPagesPage.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cms/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cms/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cms/Section/CmsNewPagePageActionsSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cms/Section/CmsNewPagePageActionsSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cms/Section/CmsNewPagePageBasicFieldsSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cms/Section/CmsNewPagePageBasicFieldsSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cms/Section/CmsNewPagePageContentSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cms/Section/CmsNewPagePageContentSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cms/Section/CmsNewPagePageSeoSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cms/Section/CmsNewPagePageSeoSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cms/Section/CmsPagesPageActionsSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cms/Section/CmsPagesPageActionsSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cms/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cms/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CmsUrlRewrite/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CmsUrlRewrite/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CmsUrlRewrite/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CmsUrlRewrite/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CmsUrlRewrite/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CmsUrlRewrite/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CmsUrlRewrite/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CmsUrlRewrite/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Config/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Config/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Config/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Config/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Config/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Config/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Config/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Config/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableImportExport/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableImportExport/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableImportExport/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableImportExport/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableImportExport/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableImportExport/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableImportExport/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableImportExport/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableProduct/Cest/AdminCreateConfigurableProductCest.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableProduct/Cest/AdminCreateConfigurableProductCest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableProduct/Data/ConfigurableProductData.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableProduct/Data/ConfigurableProductData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableProduct/Data/ConfigurableProductOptionData.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableProduct/Data/ConfigurableProductOptionData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableProduct/Data/ValueIndexData.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableProduct/Data/ValueIndexData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableProduct/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableProduct/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableProduct/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableProduct/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableProduct/Metadata/configurable_product_add_child-meta.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableProduct/Metadata/configurable_product_add_child-meta.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableProduct/Metadata/configurable_product_options-meta.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableProduct/Metadata/configurable_product_options-meta.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableProduct/Metadata/extension_attribute_configurable_product_options-meta.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableProduct/Metadata/extension_attribute_configurable_product_options-meta.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableProduct/Metadata/valueIndex-meta.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableProduct/Metadata/valueIndex-meta.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableProduct/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableProduct/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableProduct/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableProduct/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableProductSales/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableProductSales/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableProductSales/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableProductSales/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableProductSales/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableProductSales/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableProductSales/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ConfigurableProductSales/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Contact/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Contact/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Contact/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Contact/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Contact/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Contact/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Contact/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Contact/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cookie/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cookie/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cookie/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cookie/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cookie/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cookie/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cookie/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cookie/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cron/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cron/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cron/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cron/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cron/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cron/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cron/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Cron/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CurrencySymbol/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CurrencySymbol/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CurrencySymbol/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CurrencySymbol/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CurrencySymbol/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CurrencySymbol/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CurrencySymbol/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CurrencySymbol/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Cest/AdminCreateCustomerCest.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Cest/AdminCreateCustomerCest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Cest/StorefrontCreateCustomerCest.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Cest/StorefrontCreateCustomerCest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Cest/StorefrontPersistedCustomerLoginCest.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Cest/StorefrontPersistedCustomerLoginCest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Data/AddressData.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Data/AddressData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Data/CustomerData.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Data/CustomerData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Data/ExtensionAttributeSimple.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Data/ExtensionAttributeSimple.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Data/RegionData.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Data/RegionData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Metadata/address-meta.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Metadata/address-meta.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Metadata/customer-meta.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Metadata/customer-meta.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Metadata/customer_extension_attribute-meta.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Metadata/customer_extension_attribute-meta.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Metadata/customer_nested_extension_attribute-meta.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Metadata/customer_nested_extension_attribute-meta.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Metadata/region-meta.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Metadata/region-meta.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Page/AdminCustomerPage.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Page/AdminCustomerPage.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Page/AdminEditCustomerPage.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Page/AdminEditCustomerPage.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Page/AdminNewCustomerPage.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Page/AdminNewCustomerPage.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Page/StorefrontCustomerCreatePage.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Page/StorefrontCustomerCreatePage.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Page/StorefrontCustomerDashboardPage.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Page/StorefrontCustomerDashboardPage.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Page/StorefrontCustomerSignInPage.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Page/StorefrontCustomerSignInPage.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Page/StorefrontHomePage.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Page/StorefrontHomePage.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Section/AdminCustomerFiltersSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Section/AdminCustomerFiltersSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Section/AdminCustomerGridSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Section/AdminCustomerGridSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Section/AdminCustomerMainActionsSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Section/AdminCustomerMainActionsSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Section/AdminCustomerMessagesSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Section/AdminCustomerMessagesSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Section/AdminEditCustomerInformationSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Section/AdminEditCustomerInformationSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Section/AdminEditCustomerOrdersSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Section/AdminEditCustomerOrdersSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Section/AdminNewCustomerAccountInformationSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Section/AdminNewCustomerAccountInformationSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Section/AdminNewCustomerMainActionsSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Section/AdminNewCustomerMainActionsSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Section/StorefrontCustomerCreateFormSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Section/StorefrontCustomerCreateFormSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Section/StorefrontCustomerDashboardAccountInformationSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Section/StorefrontCustomerDashboardAccountInformationSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Section/StorefrontCustomerSignInFormSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Section/StorefrontCustomerSignInFormSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Section/StorefrontPanelHeaderSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/Section/StorefrontPanelHeaderSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Customer/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CustomerAnalytics/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CustomerAnalytics/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CustomerAnalytics/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CustomerAnalytics/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CustomerAnalytics/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CustomerAnalytics/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CustomerAnalytics/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CustomerAnalytics/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CustomerImportExport/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CustomerImportExport/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CustomerImportExport/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CustomerImportExport/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CustomerImportExport/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CustomerImportExport/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CustomerImportExport/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/CustomerImportExport/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Deploy/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Deploy/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Deploy/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Deploy/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Deploy/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Deploy/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Deploy/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Deploy/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Developer/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Developer/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Developer/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Developer/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Developer/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Developer/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Developer/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Developer/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Dhl/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Dhl/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Dhl/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Dhl/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Dhl/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Dhl/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Dhl/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Dhl/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Directory/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Directory/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Directory/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Directory/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Directory/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Directory/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Directory/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Directory/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Downloadable/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Downloadable/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Downloadable/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Downloadable/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Downloadable/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Downloadable/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Downloadable/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Downloadable/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/DownloadableImportExport/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/DownloadableImportExport/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/DownloadableImportExport/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/DownloadableImportExport/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/DownloadableImportExport/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/DownloadableImportExport/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/DownloadableImportExport/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/DownloadableImportExport/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Eav/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Eav/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Eav/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Eav/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Eav/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Eav/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Eav/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Eav/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Email/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Email/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Email/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Email/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Email/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Email/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Email/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Email/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/EncryptionKey/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/EncryptionKey/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/EncryptionKey/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/EncryptionKey/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/EncryptionKey/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/EncryptionKey/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/EncryptionKey/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/EncryptionKey/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Fedex/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Fedex/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Fedex/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Fedex/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Fedex/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Fedex/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Fedex/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Fedex/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GiftMessage/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GiftMessage/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GiftMessage/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GiftMessage/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GiftMessage/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GiftMessage/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GiftMessage/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GiftMessage/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GoogleAdwords/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GoogleAdwords/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GoogleAdwords/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GoogleAdwords/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GoogleAdwords/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GoogleAdwords/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GoogleAdwords/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GoogleAdwords/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GoogleAnalytics/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GoogleAnalytics/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GoogleAnalytics/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GoogleAnalytics/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GoogleAnalytics/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GoogleAnalytics/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GoogleAnalytics/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GoogleAnalytics/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GoogleOptimizer/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GoogleOptimizer/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GoogleOptimizer/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GoogleOptimizer/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GoogleOptimizer/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GoogleOptimizer/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GoogleOptimizer/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GoogleOptimizer/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GraphQl/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GraphQl/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GraphQl/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GraphQl/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GraphQl/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GraphQl/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GraphQl/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GraphQl/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GroupedImportExport/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GroupedImportExport/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GroupedImportExport/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GroupedImportExport/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GroupedImportExport/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GroupedImportExport/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GroupedImportExport/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GroupedImportExport/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GroupedProduct/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GroupedProduct/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GroupedProduct/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GroupedProduct/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GroupedProduct/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GroupedProduct/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GroupedProduct/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/GroupedProduct/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ImportExport/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ImportExport/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ImportExport/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ImportExport/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ImportExport/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ImportExport/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ImportExport/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ImportExport/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Indexer/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Indexer/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Indexer/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Indexer/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Indexer/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Indexer/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Indexer/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Indexer/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/InstantPurchase/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/InstantPurchase/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/InstantPurchase/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/InstantPurchase/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/InstantPurchase/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/InstantPurchase/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/InstantPurchase/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/InstantPurchase/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Integration/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Integration/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Integration/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Integration/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Integration/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Integration/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Integration/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Integration/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/LayeredNavigation/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/LayeredNavigation/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/LayeredNavigation/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/LayeredNavigation/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/LayeredNavigation/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/LayeredNavigation/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/LayeredNavigation/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/LayeredNavigation/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Marketplace/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Marketplace/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Marketplace/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Marketplace/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Marketplace/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Marketplace/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Marketplace/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Marketplace/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/MediaStorage/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/MediaStorage/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/MediaStorage/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/MediaStorage/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/MediaStorage/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/MediaStorage/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/MediaStorage/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/MediaStorage/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Msrp/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Msrp/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Msrp/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Msrp/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Msrp/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Msrp/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Msrp/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Msrp/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Multishipping/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Multishipping/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Multishipping/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Multishipping/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Multishipping/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Multishipping/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Multishipping/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Multishipping/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/NewRelicReporting/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/NewRelicReporting/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/NewRelicReporting/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/NewRelicReporting/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/NewRelicReporting/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/NewRelicReporting/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/NewRelicReporting/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/NewRelicReporting/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Newsletter/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Newsletter/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Newsletter/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Newsletter/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Newsletter/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Newsletter/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Newsletter/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Newsletter/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/OfflinePayments/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/OfflinePayments/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/OfflinePayments/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/OfflinePayments/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/OfflinePayments/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/OfflinePayments/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/OfflinePayments/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/OfflinePayments/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/OfflineShipping/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/OfflineShipping/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/OfflineShipping/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/OfflineShipping/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/OfflineShipping/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/OfflineShipping/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/OfflineShipping/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/OfflineShipping/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/PageCache/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/PageCache/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/PageCache/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/PageCache/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/PageCache/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/PageCache/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/PageCache/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/PageCache/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Payment/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Payment/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Payment/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Payment/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Payment/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Payment/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Payment/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Payment/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Paypal/Data/PaypalData.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Paypal/Data/PaypalData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Paypal/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Paypal/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Paypal/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Paypal/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Paypal/Metadata/paypal_config-meta.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Paypal/Metadata/paypal_config-meta.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Paypal/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Paypal/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Paypal/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Paypal/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Persistent/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Persistent/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Persistent/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Persistent/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Persistent/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Persistent/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Persistent/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Persistent/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ProductAlert/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ProductAlert/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ProductAlert/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ProductAlert/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ProductAlert/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ProductAlert/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ProductAlert/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ProductAlert/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ProductVideo/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ProductVideo/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ProductVideo/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ProductVideo/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ProductVideo/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ProductVideo/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ProductVideo/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ProductVideo/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Quote/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Quote/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Quote/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Quote/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Quote/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Quote/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Quote/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Quote/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/QuoteAnalytics/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/QuoteAnalytics/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/QuoteAnalytics/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/QuoteAnalytics/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/QuoteAnalytics/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/QuoteAnalytics/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/QuoteAnalytics/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/QuoteAnalytics/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Reports/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Reports/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Reports/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Reports/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Reports/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Reports/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Reports/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Reports/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/RequireJs/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/RequireJs/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/RequireJs/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/RequireJs/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/RequireJs/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/RequireJs/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/RequireJs/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/RequireJs/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Review/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Review/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Review/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Review/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Review/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Review/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Review/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Review/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ReviewAnalytics/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ReviewAnalytics/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ReviewAnalytics/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ReviewAnalytics/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ReviewAnalytics/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ReviewAnalytics/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ReviewAnalytics/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/ReviewAnalytics/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Robots/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Robots/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Robots/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Robots/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Robots/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Robots/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Robots/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Robots/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Rss/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Rss/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Rss/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Rss/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Rss/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Rss/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Rss/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Rss/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Rule/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Rule/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Rule/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Rule/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Rule/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Rule/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Rule/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Rule/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Cest/AdminCreateInvoiceCest.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Cest/AdminCreateInvoiceCest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Data/SalesData.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Data/SalesData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Page/InvoiceDetailsPage.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Page/InvoiceDetailsPage.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Page/InvoiceNewPage.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Page/InvoiceNewPage.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Page/InvoicesPage.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Page/InvoicesPage.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Page/OrderDetailsPage.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Page/OrderDetailsPage.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Page/OrdersPage.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Page/OrdersPage.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Section/InvoiceDetailsInformationSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Section/InvoiceDetailsInformationSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Section/InvoiceNewSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Section/InvoiceNewSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Section/InvoicesFiltersSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Section/InvoicesFiltersSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Section/InvoicesGridSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Section/InvoicesGridSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Section/OrderDetailsInformationSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Section/OrderDetailsInformationSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Section/OrderDetailsInvoicesSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Section/OrderDetailsInvoicesSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Section/OrderDetailsMainActionsSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Section/OrderDetailsMainActionsSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Section/OrderDetailsMessagesSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Section/OrderDetailsMessagesSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Section/OrderDetailsOrderViewSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Section/OrderDetailsOrderViewSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Section/OrdersGridSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/Section/OrdersGridSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sales/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesAnalytics/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesAnalytics/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesAnalytics/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesAnalytics/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesAnalytics/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesAnalytics/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesAnalytics/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesAnalytics/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesInventory/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesInventory/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesInventory/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesInventory/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesInventory/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesInventory/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesInventory/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesInventory/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesRule/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesRule/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesRule/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesRule/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesRule/Metadata/sales_rule-meta.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesRule/Metadata/sales_rule-meta.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesRule/Metadata/sales_rule_store_label-meta.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesRule/Metadata/sales_rule_store_label-meta.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesRule/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesRule/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesRule/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesRule/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesSequence/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesSequence/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesSequence/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesSequence/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesSequence/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesSequence/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesSequence/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SalesSequence/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleData/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleData/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleData/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleData/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleData/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleData/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleData/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleData/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTemplates/ActionGroup/TemplateActionGroupFile.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTemplates/ActionGroup/TemplateActionGroupFile.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTemplates/Cest/TemplateCestFile.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTemplates/Cest/TemplateCestFile.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTemplates/Data/TemplateDataFile.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTemplates/Data/TemplateDataFile.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTemplates/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTemplates/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTemplates/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTemplates/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTemplates/Metadata/TemplateMetaFile.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTemplates/Metadata/TemplateMetaFile.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTemplates/Page/TemplatePageFile.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTemplates/Page/TemplatePageFile.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTemplates/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTemplates/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTemplates/Section/TemplateSectionFile.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTemplates/Section/TemplateSectionFile.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTemplates/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTemplates/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/ActionGroup/SampleActionGroup.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/ActionGroup/SampleActionGroup.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/Cest/AdvancedSampleCest.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/Cest/AdvancedSampleCest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/Cest/AssertsCest.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/Cest/AssertsCest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/Cest/CreateConfigurableProductByApiCest.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/Cest/CreateConfigurableProductByApiCest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/Cest/CreateSalesRuleByApiCest.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/Cest/CreateSalesRuleByApiCest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/Cest/MinimumTestCest.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/Cest/MinimumTestCest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/Cest/PersistMultipleEntitiesCest.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/Cest/PersistMultipleEntitiesCest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/Cest/SampleCest.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/Cest/SampleCest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/Cest/SetPaymentConfigurationCest.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/Cest/SetPaymentConfigurationCest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/Cest/UpdateSimpleProductByApiCest.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/Cest/UpdateSimpleProductByApiCest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/Data/SampleData.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/Data/SampleData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/Page/SamplePage.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/Page/SamplePage.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/Section/SampleSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/Section/SampleSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Search/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Search/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Search/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Search/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Search/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Search/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Search/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Search/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Security/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Security/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Security/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Security/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Security/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Security/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Security/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Security/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SendFriend/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SendFriend/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SendFriend/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SendFriend/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SendFriend/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SendFriend/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SendFriend/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SendFriend/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Shipping/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Shipping/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Shipping/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Shipping/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Shipping/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Shipping/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Shipping/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Shipping/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sitemap/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sitemap/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sitemap/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sitemap/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sitemap/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sitemap/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sitemap/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Sitemap/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Store/Cest/AdminCreateStoreGroupCest.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Store/Cest/AdminCreateStoreGroupCest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Store/Data/StoreData.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Store/Data/StoreData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Store/Data/StoreGroupData.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Store/Data/StoreGroupData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Store/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Store/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Store/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Store/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Store/Metadata/store-meta.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Store/Metadata/store-meta.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Store/Metadata/store_group-meta.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Store/Metadata/store_group-meta.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Store/Page/AdminSystemStorePage.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Store/Page/AdminSystemStorePage.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Store/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Store/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Store/Section/AdminNewStoreGroupSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Store/Section/AdminNewStoreGroupSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Store/Section/AdminNewStoreSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Store/Section/AdminNewStoreSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Store/Section/AdminStoresGridSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Store/Section/AdminStoresGridSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Store/Section/AdminStoresMainActionsSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Store/Section/AdminStoresMainActionsSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Store/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Store/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Swagger/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Swagger/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Swagger/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Swagger/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Swagger/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Swagger/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Swagger/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Swagger/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Swatches/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Swatches/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Swatches/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Swatches/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Swatches/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Swatches/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Swatches/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Swatches/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SwatchesLayeredNavigation/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SwatchesLayeredNavigation/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SwatchesLayeredNavigation/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SwatchesLayeredNavigation/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SwatchesLayeredNavigation/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SwatchesLayeredNavigation/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SwatchesLayeredNavigation/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SwatchesLayeredNavigation/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Tax/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Tax/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Tax/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Tax/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Tax/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Tax/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Tax/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Tax/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/TaxImportExport/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/TaxImportExport/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/TaxImportExport/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/TaxImportExport/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/TaxImportExport/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/TaxImportExport/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/TaxImportExport/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/TaxImportExport/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Theme/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Theme/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Theme/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Theme/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Theme/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Theme/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Theme/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Theme/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Translation/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Translation/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Translation/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Translation/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Translation/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Translation/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Translation/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Translation/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Ui/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Ui/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Ui/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Ui/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Ui/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Ui/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Ui/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Ui/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Ups/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Ups/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Ups/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Ups/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Ups/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Ups/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Ups/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Ups/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/UrlRewrite/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/UrlRewrite/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/UrlRewrite/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/UrlRewrite/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/UrlRewrite/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/UrlRewrite/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/UrlRewrite/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/UrlRewrite/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/User/Data/UserData.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/User/Data/UserData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/User/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/User/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/User/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/User/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/User/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/User/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/User/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/User/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Usps/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Usps/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Usps/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Usps/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Usps/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Usps/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Usps/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Usps/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Variable/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Variable/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Variable/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Variable/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Variable/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Variable/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Variable/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Variable/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Vault/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Vault/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Vault/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Vault/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Vault/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Vault/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Vault/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Vault/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Version/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Version/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Version/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Version/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Version/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Version/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Version/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Version/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Webapi/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Webapi/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Webapi/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Webapi/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Webapi/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Webapi/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Webapi/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Webapi/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/WebapiSecurity/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/WebapiSecurity/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/WebapiSecurity/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/WebapiSecurity/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/WebapiSecurity/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/WebapiSecurity/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/WebapiSecurity/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/WebapiSecurity/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Weee/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Weee/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Weee/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Weee/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Weee/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Weee/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Weee/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Weee/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Widget/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Widget/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Widget/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Widget/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Widget/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Widget/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Widget/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Widget/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Wishlist/Cest/StorefrontDeletePersistedWishlistCest.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Wishlist/Cest/StorefrontDeletePersistedWishlistCest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Wishlist/Data/WishlistData.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Wishlist/Data/WishlistData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Wishlist/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Wishlist/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Wishlist/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Wishlist/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Wishlist/Metadata/wishlist-meta.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Wishlist/Metadata/wishlist-meta.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Wishlist/Page/StorefrontCustomerWishlistPage.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Wishlist/Page/StorefrontCustomerWishlistPage.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Wishlist/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Wishlist/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Wishlist/Section/StorefrontCustomerWishlistSection.xml b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Wishlist/Section/StorefrontCustomerWishlistSection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Wishlist/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Wishlist/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/WishlistAnalytics/LICENSE.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/WishlistAnalytics/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/WishlistAnalytics/LICENSE_AFL.txt b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/WishlistAnalytics/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/WishlistAnalytics/README.md b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/WishlistAnalytics/README.md
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/WishlistAnalytics/composer.json b/dev/tests/acceptance/tests/functional/Magento/FunctionalTest/WishlistAnalytics/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/acceptance/tests/functional/_bootstrap.php b/dev/tests/acceptance/tests/functional/_bootstrap.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/.gitignore b/dev/tests/api-functional/.gitignore
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule1/Controller/CookieTester.php b/dev/tests/api-functional/_files/Magento/TestModule1/Controller/CookieTester.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule1/Controller/CookieTester/DeleteCookie.php b/dev/tests/api-functional/_files/Magento/TestModule1/Controller/CookieTester/DeleteCookie.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule1/Controller/CookieTester/SetPublicCookie.php b/dev/tests/api-functional/_files/Magento/TestModule1/Controller/CookieTester/SetPublicCookie.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule1/Controller/CookieTester/SetSensitiveCookie.php b/dev/tests/api-functional/_files/Magento/TestModule1/Controller/CookieTester/SetSensitiveCookie.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule1/Service/V1/AllSoapAndRest.php b/dev/tests/api-functional/_files/Magento/TestModule1/Service/V1/AllSoapAndRest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule1/Service/V1/AllSoapAndRestInterface.php b/dev/tests/api-functional/_files/Magento/TestModule1/Service/V1/AllSoapAndRestInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule1/Service/V1/Entity/Item.php b/dev/tests/api-functional/_files/Magento/TestModule1/Service/V1/Entity/Item.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule1/Service/V2/AllSoapAndRest.php b/dev/tests/api-functional/_files/Magento/TestModule1/Service/V2/AllSoapAndRest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule1/Service/V2/AllSoapAndRestInterface.php b/dev/tests/api-functional/_files/Magento/TestModule1/Service/V2/AllSoapAndRestInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule1/Service/V2/Entity/Item.php b/dev/tests/api-functional/_files/Magento/TestModule1/Service/V2/Entity/Item.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule1/etc/acl.xml b/dev/tests/api-functional/_files/Magento/TestModule1/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule1/etc/di.xml b/dev/tests/api-functional/_files/Magento/TestModule1/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule1/etc/extension_attributes.xml b/dev/tests/api-functional/_files/Magento/TestModule1/etc/extension_attributes.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule1/etc/frontend/routes.xml b/dev/tests/api-functional/_files/Magento/TestModule1/etc/frontend/routes.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule1/etc/module.xml b/dev/tests/api-functional/_files/Magento/TestModule1/etc/module.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule1/etc/webapi.xml b/dev/tests/api-functional/_files/Magento/TestModule1/etc/webapi.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule1/registration.php b/dev/tests/api-functional/_files/Magento/TestModule1/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule2/Service/V1/Entity/Item.php b/dev/tests/api-functional/_files/Magento/TestModule2/Service/V1/Entity/Item.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule2/Service/V1/NoWebApiXml.php b/dev/tests/api-functional/_files/Magento/TestModule2/Service/V1/NoWebApiXml.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule2/Service/V1/NoWebApiXmlInterface.php b/dev/tests/api-functional/_files/Magento/TestModule2/Service/V1/NoWebApiXmlInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule2/Service/V1/SubsetRest.php b/dev/tests/api-functional/_files/Magento/TestModule2/Service/V1/SubsetRest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule2/Service/V1/SubsetRestInterface.php b/dev/tests/api-functional/_files/Magento/TestModule2/Service/V1/SubsetRestInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule2/etc/acl.xml b/dev/tests/api-functional/_files/Magento/TestModule2/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule2/etc/di.xml b/dev/tests/api-functional/_files/Magento/TestModule2/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule2/etc/module.xml b/dev/tests/api-functional/_files/Magento/TestModule2/etc/module.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule2/etc/schema/AllSoapNoRestV1.xsd b/dev/tests/api-functional/_files/Magento/TestModule2/etc/schema/AllSoapNoRestV1.xsd
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule2/etc/schema/NoWebApiXmlV1.xsd b/dev/tests/api-functional/_files/Magento/TestModule2/etc/schema/NoWebApiXmlV1.xsd
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule2/etc/schema/SubsetRestV1.xsd b/dev/tests/api-functional/_files/Magento/TestModule2/etc/schema/SubsetRestV1.xsd
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule2/etc/webapi.xml b/dev/tests/api-functional/_files/Magento/TestModule2/etc/webapi.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule2/registration.php b/dev/tests/api-functional/_files/Magento/TestModule2/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule3/Service/V1/Entity/Parameter.php b/dev/tests/api-functional/_files/Magento/TestModule3/Service/V1/Entity/Parameter.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule3/Service/V1/Entity/WrappedErrorParameter.php b/dev/tests/api-functional/_files/Magento/TestModule3/Service/V1/Entity/WrappedErrorParameter.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule3/Service/V1/Error.php b/dev/tests/api-functional/_files/Magento/TestModule3/Service/V1/Error.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule3/Service/V1/ErrorInterface.php b/dev/tests/api-functional/_files/Magento/TestModule3/Service/V1/ErrorInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule3/etc/acl.xml b/dev/tests/api-functional/_files/Magento/TestModule3/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule3/etc/di.xml b/dev/tests/api-functional/_files/Magento/TestModule3/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule3/etc/module.xml b/dev/tests/api-functional/_files/Magento/TestModule3/etc/module.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule3/etc/webapi.xml b/dev/tests/api-functional/_files/Magento/TestModule3/etc/webapi.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule3/registration.php b/dev/tests/api-functional/_files/Magento/TestModule3/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule4/Model/ResourceModel/Item.php b/dev/tests/api-functional/_files/Magento/TestModule4/Model/ResourceModel/Item.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule4/Service/V1/DataObjectService.php b/dev/tests/api-functional/_files/Magento/TestModule4/Service/V1/DataObjectService.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule4/Service/V1/DataObjectServiceInterface.php b/dev/tests/api-functional/_files/Magento/TestModule4/Service/V1/DataObjectServiceInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule4/Service/V1/Entity/DataObjectRequest.php b/dev/tests/api-functional/_files/Magento/TestModule4/Service/V1/Entity/DataObjectRequest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule4/Service/V1/Entity/DataObjectResponse.php b/dev/tests/api-functional/_files/Magento/TestModule4/Service/V1/Entity/DataObjectResponse.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule4/Service/V1/Entity/ExtensibleRequest.php b/dev/tests/api-functional/_files/Magento/TestModule4/Service/V1/Entity/ExtensibleRequest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule4/Service/V1/Entity/ExtensibleRequestInterface.php b/dev/tests/api-functional/_files/Magento/TestModule4/Service/V1/Entity/ExtensibleRequestInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule4/Service/V1/Entity/NestedDataObjectRequest.php b/dev/tests/api-functional/_files/Magento/TestModule4/Service/V1/Entity/NestedDataObjectRequest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule4/etc/acl.xml b/dev/tests/api-functional/_files/Magento/TestModule4/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule4/etc/di.xml b/dev/tests/api-functional/_files/Magento/TestModule4/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule4/etc/module.xml b/dev/tests/api-functional/_files/Magento/TestModule4/etc/module.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule4/etc/webapi.xml b/dev/tests/api-functional/_files/Magento/TestModule4/etc/webapi.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule4/registration.php b/dev/tests/api-functional/_files/Magento/TestModule4/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule5/Service/V1/AllSoapAndRest.php b/dev/tests/api-functional/_files/Magento/TestModule5/Service/V1/AllSoapAndRest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule5/Service/V1/AllSoapAndRestInterface.php b/dev/tests/api-functional/_files/Magento/TestModule5/Service/V1/AllSoapAndRestInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule5/Service/V1/Entity/AllSoapAndRest.php b/dev/tests/api-functional/_files/Magento/TestModule5/Service/V1/Entity/AllSoapAndRest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule5/Service/V1/OverrideService.php b/dev/tests/api-functional/_files/Magento/TestModule5/Service/V1/OverrideService.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule5/Service/V1/OverrideServiceInterface.php b/dev/tests/api-functional/_files/Magento/TestModule5/Service/V1/OverrideServiceInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule5/Service/V2/AllSoapAndRest.php b/dev/tests/api-functional/_files/Magento/TestModule5/Service/V2/AllSoapAndRest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule5/Service/V2/AllSoapAndRestInterface.php b/dev/tests/api-functional/_files/Magento/TestModule5/Service/V2/AllSoapAndRestInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule5/Service/V2/Entity/AllSoapAndRest.php b/dev/tests/api-functional/_files/Magento/TestModule5/Service/V2/Entity/AllSoapAndRest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule5/etc/acl.xml b/dev/tests/api-functional/_files/Magento/TestModule5/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule5/etc/di.xml b/dev/tests/api-functional/_files/Magento/TestModule5/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule5/etc/module.xml b/dev/tests/api-functional/_files/Magento/TestModule5/etc/module.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule5/etc/webapi.xml b/dev/tests/api-functional/_files/Magento/TestModule5/etc/webapi.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModule5/registration.php b/dev/tests/api-functional/_files/Magento/TestModule5/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModuleDefaultHydrator/Api/CustomerPersistenceInterface.php b/dev/tests/api-functional/_files/Magento/TestModuleDefaultHydrator/Api/CustomerPersistenceInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModuleDefaultHydrator/Api/Data/ExtensionAttributeInterface.php b/dev/tests/api-functional/_files/Magento/TestModuleDefaultHydrator/Api/Data/ExtensionAttributeInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModuleDefaultHydrator/Model/Address/Mapper.php b/dev/tests/api-functional/_files/Magento/TestModuleDefaultHydrator/Model/Address/Mapper.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModuleDefaultHydrator/Model/CustomerPersistence.php b/dev/tests/api-functional/_files/Magento/TestModuleDefaultHydrator/Model/CustomerPersistence.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModuleDefaultHydrator/Model/Data/ExtensionAttribute.php b/dev/tests/api-functional/_files/Magento/TestModuleDefaultHydrator/Model/Data/ExtensionAttribute.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModuleDefaultHydrator/Model/ResourceModel/Address/ReadHandler.php b/dev/tests/api-functional/_files/Magento/TestModuleDefaultHydrator/Model/ResourceModel/Address/ReadHandler.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModuleDefaultHydrator/Model/ResourceModel/Address/SaveHandler.php b/dev/tests/api-functional/_files/Magento/TestModuleDefaultHydrator/Model/ResourceModel/Address/SaveHandler.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModuleDefaultHydrator/Model/ResourceModel/ReadHandler.php b/dev/tests/api-functional/_files/Magento/TestModuleDefaultHydrator/Model/ResourceModel/ReadHandler.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModuleDefaultHydrator/Model/ResourceModel/SaveHandler.php b/dev/tests/api-functional/_files/Magento/TestModuleDefaultHydrator/Model/ResourceModel/SaveHandler.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModuleDefaultHydrator/Setup/InstallSchema.php b/dev/tests/api-functional/_files/Magento/TestModuleDefaultHydrator/Setup/InstallSchema.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModuleDefaultHydrator/etc/di.xml b/dev/tests/api-functional/_files/Magento/TestModuleDefaultHydrator/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModuleDefaultHydrator/etc/extension_attributes.xml b/dev/tests/api-functional/_files/Magento/TestModuleDefaultHydrator/etc/extension_attributes.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModuleDefaultHydrator/etc/module.xml b/dev/tests/api-functional/_files/Magento/TestModuleDefaultHydrator/etc/module.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModuleDefaultHydrator/etc/webapi.xml b/dev/tests/api-functional/_files/Magento/TestModuleDefaultHydrator/etc/webapi.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModuleDefaultHydrator/registration.php b/dev/tests/api-functional/_files/Magento/TestModuleDefaultHydrator/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModuleIntegrationFromConfig/composer.json b/dev/tests/api-functional/_files/Magento/TestModuleIntegrationFromConfig/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModuleIntegrationFromConfig/etc/integration.xml b/dev/tests/api-functional/_files/Magento/TestModuleIntegrationFromConfig/etc/integration.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModuleIntegrationFromConfig/etc/module.xml b/dev/tests/api-functional/_files/Magento/TestModuleIntegrationFromConfig/etc/module.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModuleIntegrationFromConfig/registration.php b/dev/tests/api-functional/_files/Magento/TestModuleIntegrationFromConfig/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModuleJoinDirectives/Api/TestRepositoryInterface.php b/dev/tests/api-functional/_files/Magento/TestModuleJoinDirectives/Api/TestRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModuleJoinDirectives/Model/TestRepository.php b/dev/tests/api-functional/_files/Magento/TestModuleJoinDirectives/Model/TestRepository.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModuleJoinDirectives/composer.json b/dev/tests/api-functional/_files/Magento/TestModuleJoinDirectives/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModuleJoinDirectives/etc/acl.xml b/dev/tests/api-functional/_files/Magento/TestModuleJoinDirectives/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModuleJoinDirectives/etc/di.xml b/dev/tests/api-functional/_files/Magento/TestModuleJoinDirectives/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModuleJoinDirectives/etc/extension_attributes.xml b/dev/tests/api-functional/_files/Magento/TestModuleJoinDirectives/etc/extension_attributes.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModuleJoinDirectives/etc/module.xml b/dev/tests/api-functional/_files/Magento/TestModuleJoinDirectives/etc/module.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModuleJoinDirectives/etc/webapi.xml b/dev/tests/api-functional/_files/Magento/TestModuleJoinDirectives/etc/webapi.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModuleJoinDirectives/registration.php b/dev/tests/api-functional/_files/Magento/TestModuleJoinDirectives/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModuleMSC/Api/AllSoapAndRestInterface.php b/dev/tests/api-functional/_files/Magento/TestModuleMSC/Api/AllSoapAndRestInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModuleMSC/Api/Data/CustomAttributeDataObjectInterface.php b/dev/tests/api-functional/_files/Magento/TestModuleMSC/Api/Data/CustomAttributeDataObjectInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModuleMSC/Api/Data/CustomAttributeNestedDataObjectInterface.php b/dev/tests/api-functional/_files/Magento/TestModuleMSC/Api/Data/CustomAttributeNestedDataObjectInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModuleMSC/Api/Data/ItemInterface.php b/dev/tests/api-functional/_files/Magento/TestModuleMSC/Api/Data/ItemInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModuleMSC/Model/AllSoapAndRest.php b/dev/tests/api-functional/_files/Magento/TestModuleMSC/Model/AllSoapAndRest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModuleMSC/Model/Data/CustomAttributeDataObject.php b/dev/tests/api-functional/_files/Magento/TestModuleMSC/Model/Data/CustomAttributeDataObject.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModuleMSC/Model/Data/CustomAttributeNestedDataObject.php b/dev/tests/api-functional/_files/Magento/TestModuleMSC/Model/Data/CustomAttributeNestedDataObject.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModuleMSC/Model/Data/Eav/AttributeMetadata.php b/dev/tests/api-functional/_files/Magento/TestModuleMSC/Model/Data/Eav/AttributeMetadata.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModuleMSC/Model/Data/Item.php b/dev/tests/api-functional/_files/Magento/TestModuleMSC/Model/Data/Item.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModuleMSC/Model/ResourceModel/Item.php b/dev/tests/api-functional/_files/Magento/TestModuleMSC/Model/ResourceModel/Item.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModuleMSC/etc/acl.xml b/dev/tests/api-functional/_files/Magento/TestModuleMSC/etc/acl.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModuleMSC/etc/di.xml b/dev/tests/api-functional/_files/Magento/TestModuleMSC/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModuleMSC/etc/extension_attributes.xml b/dev/tests/api-functional/_files/Magento/TestModuleMSC/etc/extension_attributes.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModuleMSC/etc/module.xml b/dev/tests/api-functional/_files/Magento/TestModuleMSC/etc/module.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModuleMSC/etc/webapi.xml b/dev/tests/api-functional/_files/Magento/TestModuleMSC/etc/webapi.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/_files/Magento/TestModuleMSC/registration.php b/dev/tests/api-functional/_files/Magento/TestModuleMSC/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/config/config-global.php.dist b/dev/tests/api-functional/config/config-global.php.dist
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/config/install-config-mysql.php.dist b/dev/tests/api-functional/config/install-config-mysql.php.dist
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/framework/Magento/TestFramework/Annotation/ApiDataFixture.php b/dev/tests/api-functional/framework/Magento/TestFramework/Annotation/ApiDataFixture.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/framework/Magento/TestFramework/Authentication/OauthHelper.php b/dev/tests/api-functional/framework/Magento/TestFramework/Authentication/OauthHelper.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/framework/Magento/TestFramework/Authentication/Rest/CurlClient.php b/dev/tests/api-functional/framework/Magento/TestFramework/Authentication/Rest/CurlClient.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/framework/Magento/TestFramework/Authentication/Rest/OauthClient.php b/dev/tests/api-functional/framework/Magento/TestFramework/Authentication/Rest/OauthClient.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/framework/Magento/TestFramework/Authentication/Rest/OauthClient/Signature.php b/dev/tests/api-functional/framework/Magento/TestFramework/Authentication/Rest/OauthClient/Signature.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/framework/Magento/TestFramework/Bootstrap/WebapiDocBlock.php b/dev/tests/api-functional/framework/Magento/TestFramework/Bootstrap/WebapiDocBlock.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/framework/Magento/TestFramework/Helper/Customer.php b/dev/tests/api-functional/framework/Magento/TestFramework/Helper/Customer.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/framework/Magento/TestFramework/TestCase/Webapi/Adapter/Rest.php b/dev/tests/api-functional/framework/Magento/TestFramework/TestCase/Webapi/Adapter/Rest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/framework/Magento/TestFramework/TestCase/Webapi/Adapter/Rest/CurlClient.php b/dev/tests/api-functional/framework/Magento/TestFramework/TestCase/Webapi/Adapter/Rest/CurlClient.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/framework/Magento/TestFramework/TestCase/Webapi/Adapter/Rest/DocumentationGenerator.php b/dev/tests/api-functional/framework/Magento/TestFramework/TestCase/Webapi/Adapter/Rest/DocumentationGenerator.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/framework/Magento/TestFramework/TestCase/Webapi/Adapter/Soap.php b/dev/tests/api-functional/framework/Magento/TestFramework/TestCase/Webapi/Adapter/Soap.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/framework/Magento/TestFramework/TestCase/Webapi/AdapterInterface.php b/dev/tests/api-functional/framework/Magento/TestFramework/TestCase/Webapi/AdapterInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/framework/Magento/TestFramework/TestCase/Webapi/Curl.php b/dev/tests/api-functional/framework/Magento/TestFramework/TestCase/Webapi/Curl.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/framework/Magento/TestFramework/TestCase/WebapiAbstract.php b/dev/tests/api-functional/framework/Magento/TestFramework/TestCase/WebapiAbstract.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/framework/Magento/TestFramework/WebApiApplication.php b/dev/tests/api-functional/framework/Magento/TestFramework/WebApiApplication.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/framework/autoload.php b/dev/tests/api-functional/framework/autoload.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/framework/bootstrap.php b/dev/tests/api-functional/framework/bootstrap.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/phpunit.xml.dist b/dev/tests/api-functional/phpunit.xml.dist
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Analytics/Api/LinkProviderTest.php b/dev/tests/api-functional/testsuite/Magento/Analytics/Api/LinkProviderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Bundle/Api/CartItemRepositoryTest.php b/dev/tests/api-functional/testsuite/Magento/Bundle/Api/CartItemRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Bundle/Api/OrderInvoiceCreateTest.php b/dev/tests/api-functional/testsuite/Magento/Bundle/Api/OrderInvoiceCreateTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Bundle/Api/OrderItemRepositoryTest.php b/dev/tests/api-functional/testsuite/Magento/Bundle/Api/OrderItemRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Bundle/Api/ProductLinkManagementTest.php b/dev/tests/api-functional/testsuite/Magento/Bundle/Api/ProductLinkManagementTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Bundle/Api/ProductOptionRepositoryTest.php b/dev/tests/api-functional/testsuite/Magento/Bundle/Api/ProductOptionRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Bundle/Api/ProductOptionTypeListTest.php b/dev/tests/api-functional/testsuite/Magento/Bundle/Api/ProductOptionTypeListTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Bundle/Api/ProductServiceTest.php b/dev/tests/api-functional/testsuite/Magento/Bundle/Api/ProductServiceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/AttributeSetManagementTest.php b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/AttributeSetManagementTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/AttributeSetRepositoryTest.php b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/AttributeSetRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/BasePriceStorageTest.php b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/BasePriceStorageTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/CartItemRepositoryTest.php b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/CartItemRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/CategoryAttributeOptionManagementInterfaceTest.php b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/CategoryAttributeOptionManagementInterfaceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/CategoryAttributeRepositoryTest.php b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/CategoryAttributeRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/CategoryLinkManagementTest.php b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/CategoryLinkManagementTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/CategoryLinkRepositoryTest.php b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/CategoryLinkRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/CategoryListTest.php b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/CategoryListTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/CategoryManagementTest.php b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/CategoryManagementTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/CategoryRepositoryTest.php b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/CategoryRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/CostStorageTest.php b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/CostStorageTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/OrderItemRepositoryTest.php b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/OrderItemRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductAttributeGroupRepositoryTest.php b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductAttributeGroupRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductAttributeManagementTest.php b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductAttributeManagementTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductAttributeMediaGalleryManagementInterfaceTest.php b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductAttributeMediaGalleryManagementInterfaceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductAttributeOptionManagementInterfaceTest.php b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductAttributeOptionManagementInterfaceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductAttributeRepositoryTest.php b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductAttributeRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductAttributeTypesListTest.php b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductAttributeTypesListTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductCustomAttributeWrongTypeTest.php b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductCustomAttributeWrongTypeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductCustomOptionRepositoryTest.php b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductCustomOptionRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductCustomOptionTypeListTest.php b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductCustomOptionTypeListTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductLinkManagementInterfaceTest.php b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductLinkManagementInterfaceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductLinkRepositoryInterfaceTest.php b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductLinkRepositoryInterfaceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductLinkTypeListTest.php b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductLinkTypeListTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductMediaAttributeManagementTest.php b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductMediaAttributeManagementTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductRenderListInterfaceTest.php b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductRenderListInterfaceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductRepositoryInterfaceTest.php b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductRepositoryInterfaceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductRepositoryMultiCurrencyTest.php b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductRepositoryMultiCurrencyTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductRepositoryMultiStoreTest.php b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductRepositoryMultiStoreTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductSwatchAttributeOptionManagementInterfaceTest.php b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductSwatchAttributeOptionManagementInterfaceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductTierPriceManagementTest.php b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductTierPriceManagementTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductTypeListTest.php b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductTypeListTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/SpecialPriceStorageTest.php b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/SpecialPriceStorageTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/TierPriceStorageTest.php b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/TierPriceStorageTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/_files/product_options.php b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/_files/product_options.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/_files/product_options_negative.php b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/_files/product_options_negative.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/_files/product_options_update_negative.php b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/_files/product_options_update_negative.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Catalog/Api/_files/test_image.jpg b/dev/tests/api-functional/testsuite/Magento/Catalog/Api/_files/test_image.jpg
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/CatalogInventory/Api/LowStockItemsTest.php b/dev/tests/api-functional/testsuite/Magento/CatalogInventory/Api/LowStockItemsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/CatalogInventory/Api/ProductRepositoryInterfaceTest.php b/dev/tests/api-functional/testsuite/Magento/CatalogInventory/Api/ProductRepositoryInterfaceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/CatalogInventory/Api/StockItemTest.php b/dev/tests/api-functional/testsuite/Magento/CatalogInventory/Api/StockItemTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/CatalogInventory/Api/StockStatusTest.php b/dev/tests/api-functional/testsuite/Magento/CatalogInventory/Api/StockStatusTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/CheckoutAgreements/Api/CheckoutAgreementsRepositoryTest.php b/dev/tests/api-functional/testsuite/Magento/CheckoutAgreements/Api/CheckoutAgreementsRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Cms/Api/BlockRepositoryTest.php b/dev/tests/api-functional/testsuite/Magento/Cms/Api/BlockRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Cms/Api/PageRepositoryTest.php b/dev/tests/api-functional/testsuite/Magento/Cms/Api/PageRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/ConfigurableProduct/Api/CartItemRepositoryTest.php b/dev/tests/api-functional/testsuite/Magento/ConfigurableProduct/Api/CartItemRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/ConfigurableProduct/Api/ConfigurableProductManagementTest.php b/dev/tests/api-functional/testsuite/Magento/ConfigurableProduct/Api/ConfigurableProductManagementTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/ConfigurableProduct/Api/LinkManagementTest.php b/dev/tests/api-functional/testsuite/Magento/ConfigurableProduct/Api/LinkManagementTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/ConfigurableProduct/Api/OptionRepositoryTest.php b/dev/tests/api-functional/testsuite/Magento/ConfigurableProduct/Api/OptionRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/ConfigurableProduct/Api/OrderItemRepositoryTest.php b/dev/tests/api-functional/testsuite/Magento/ConfigurableProduct/Api/OrderItemRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/ConfigurableProduct/Api/ProductRepositoryTest.php b/dev/tests/api-functional/testsuite/Magento/ConfigurableProduct/Api/ProductRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Customer/Api/AccountManagementCustomAttributesTest.php b/dev/tests/api-functional/testsuite/Magento/Customer/Api/AccountManagementCustomAttributesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Customer/Api/AccountManagementMeTest.php b/dev/tests/api-functional/testsuite/Magento/Customer/Api/AccountManagementMeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Customer/Api/AccountManagementTest.php b/dev/tests/api-functional/testsuite/Magento/Customer/Api/AccountManagementTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Customer/Api/AddressMetadataTest.php b/dev/tests/api-functional/testsuite/Magento/Customer/Api/AddressMetadataTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Customer/Api/AddressRepositoryTest.php b/dev/tests/api-functional/testsuite/Magento/Customer/Api/AddressRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Customer/Api/CustomerGroupConfigTest.php b/dev/tests/api-functional/testsuite/Magento/Customer/Api/CustomerGroupConfigTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Customer/Api/CustomerMetadataTest.php b/dev/tests/api-functional/testsuite/Magento/Customer/Api/CustomerMetadataTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Customer/Api/CustomerRepositoryTest.php b/dev/tests/api-functional/testsuite/Magento/Customer/Api/CustomerRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Customer/Api/GroupManagementTest.php b/dev/tests/api-functional/testsuite/Magento/Customer/Api/GroupManagementTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Customer/Api/GroupRepositoryTest.php b/dev/tests/api-functional/testsuite/Magento/Customer/Api/GroupRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Customer/Api/_files/buttons.png b/dev/tests/api-functional/testsuite/Magento/Customer/Api/_files/buttons.png
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Customer/Api/_files/test_image.jpg b/dev/tests/api-functional/testsuite/Magento/Customer/Api/_files/test_image.jpg
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Directory/Api/CountryInformationAcquirerTest.php b/dev/tests/api-functional/testsuite/Magento/Directory/Api/CountryInformationAcquirerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Directory/Api/CurrencyInformationAcquirerTest.php b/dev/tests/api-functional/testsuite/Magento/Directory/Api/CurrencyInformationAcquirerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Downloadable/Api/CartItemRepositoryTest.php b/dev/tests/api-functional/testsuite/Magento/Downloadable/Api/CartItemRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Downloadable/Api/LinkRepositoryTest.php b/dev/tests/api-functional/testsuite/Magento/Downloadable/Api/LinkRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Downloadable/Api/OrderItemRepositoryTest.php b/dev/tests/api-functional/testsuite/Magento/Downloadable/Api/OrderItemRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Downloadable/Api/ProductRepositoryTest.php b/dev/tests/api-functional/testsuite/Magento/Downloadable/Api/ProductRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Downloadable/Api/SampleRepositoryTest.php b/dev/tests/api-functional/testsuite/Magento/Downloadable/Api/SampleRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Downloadable/Api/_files/test_image.jpg b/dev/tests/api-functional/testsuite/Magento/Downloadable/Api/_files/test_image.jpg
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Eav/Api/AttributeSetManagementTest.php b/dev/tests/api-functional/testsuite/Magento/Eav/Api/AttributeSetManagementTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Eav/Api/AttributeSetRepositoryTest.php b/dev/tests/api-functional/testsuite/Magento/Eav/Api/AttributeSetRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Framework/Api/Search/SearchTest.php b/dev/tests/api-functional/testsuite/Magento/Framework/Api/Search/SearchTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Framework/Model/Entity/HydratorTest.php b/dev/tests/api-functional/testsuite/Magento/Framework/Model/Entity/HydratorTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Framework/Stdlib/CookieManagerTest.php b/dev/tests/api-functional/testsuite/Magento/Framework/Stdlib/CookieManagerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/GiftMessage/Api/CartRepositoryTest.php b/dev/tests/api-functional/testsuite/Magento/GiftMessage/Api/CartRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/GiftMessage/Api/GuestCartRepositoryTest.php b/dev/tests/api-functional/testsuite/Magento/GiftMessage/Api/GuestCartRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/GiftMessage/Api/GuestItemRepositoryTest.php b/dev/tests/api-functional/testsuite/Magento/GiftMessage/Api/GuestItemRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/GiftMessage/Api/ItemRepositoryTest.php b/dev/tests/api-functional/testsuite/Magento/GiftMessage/Api/ItemRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/GroupedProduct/Api/ProductLinkManagementTest.php b/dev/tests/api-functional/testsuite/Magento/GroupedProduct/Api/ProductLinkManagementTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/GroupedProduct/Api/ProductLinkRepositoryTest.php b/dev/tests/api-functional/testsuite/Magento/GroupedProduct/Api/ProductLinkRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/GroupedProduct/Api/ProductLinkTypeListTest.php b/dev/tests/api-functional/testsuite/Magento/GroupedProduct/Api/ProductLinkTypeListTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/GroupedProduct/Api/ProductRepositoryInterfaceTest.php b/dev/tests/api-functional/testsuite/Magento/GroupedProduct/Api/ProductRepositoryInterfaceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Integration/Model/AdminTokenServiceTest.php b/dev/tests/api-functional/testsuite/Magento/Integration/Model/AdminTokenServiceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Integration/Model/CustomerTokenServiceTest.php b/dev/tests/api-functional/testsuite/Magento/Integration/Model/CustomerTokenServiceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Integration/Model/IntegrationTest.php b/dev/tests/api-functional/testsuite/Magento/Integration/Model/IntegrationTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Quote/Api/BillingAddressManagementTest.php b/dev/tests/api-functional/testsuite/Magento/Quote/Api/BillingAddressManagementTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Quote/Api/CartItemRepositoryTest.php b/dev/tests/api-functional/testsuite/Magento/Quote/Api/CartItemRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Quote/Api/CartManagementTest.php b/dev/tests/api-functional/testsuite/Magento/Quote/Api/CartManagementTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Quote/Api/CartRepositoryTest.php b/dev/tests/api-functional/testsuite/Magento/Quote/Api/CartRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Quote/Api/CartTotalRepositoryTest.php b/dev/tests/api-functional/testsuite/Magento/Quote/Api/CartTotalRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Quote/Api/CouponManagementTest.php b/dev/tests/api-functional/testsuite/Magento/Quote/Api/CouponManagementTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Quote/Api/GuestBillingAddressManagementTest.php b/dev/tests/api-functional/testsuite/Magento/Quote/Api/GuestBillingAddressManagementTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Quote/Api/GuestCartItemRepositoryTest.php b/dev/tests/api-functional/testsuite/Magento/Quote/Api/GuestCartItemRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Quote/Api/GuestCartManagementTest.php b/dev/tests/api-functional/testsuite/Magento/Quote/Api/GuestCartManagementTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Quote/Api/GuestCartRepositoryTest.php b/dev/tests/api-functional/testsuite/Magento/Quote/Api/GuestCartRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Quote/Api/GuestCartTotalRepositoryTest.php b/dev/tests/api-functional/testsuite/Magento/Quote/Api/GuestCartTotalRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Quote/Api/GuestCouponManagementTest.php b/dev/tests/api-functional/testsuite/Magento/Quote/Api/GuestCouponManagementTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Quote/Api/GuestPaymentMethodManagementTest.php b/dev/tests/api-functional/testsuite/Magento/Quote/Api/GuestPaymentMethodManagementTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Quote/Api/GuestShipmentEstimationTest.php b/dev/tests/api-functional/testsuite/Magento/Quote/Api/GuestShipmentEstimationTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Quote/Api/GuestShippingMethodManagementTest.php b/dev/tests/api-functional/testsuite/Magento/Quote/Api/GuestShippingMethodManagementTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Quote/Api/PaymentMethodManagementTest.php b/dev/tests/api-functional/testsuite/Magento/Quote/Api/PaymentMethodManagementTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Quote/Api/ShippingMethodManagementTest.php b/dev/tests/api-functional/testsuite/Magento/Quote/Api/ShippingMethodManagementTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/CreditMemoCreateRefundTest.php b/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/CreditMemoCreateRefundTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/CreditmemoAddCommentTest.php b/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/CreditmemoAddCommentTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/CreditmemoCancelTest.php b/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/CreditmemoCancelTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/CreditmemoCommentsListTest.php b/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/CreditmemoCommentsListTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/CreditmemoCreateTest.php b/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/CreditmemoCreateTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/CreditmemoEmailTest.php b/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/CreditmemoEmailTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/CreditmemoGetTest.php b/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/CreditmemoGetTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/CreditmemoListTest.php b/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/CreditmemoListTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/InvoiceAddCommentTest.php b/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/InvoiceAddCommentTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/InvoiceCaptureTest.php b/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/InvoiceCaptureTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/InvoiceCommentsListTest.php b/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/InvoiceCommentsListTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/InvoiceCreateTest.php b/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/InvoiceCreateTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/InvoiceEmailTest.php b/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/InvoiceEmailTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/InvoiceGetTest.php b/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/InvoiceGetTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/InvoiceListTest.php b/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/InvoiceListTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/InvoiceVoidTest.php b/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/InvoiceVoidTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/OrderAddressUpdateTest.php b/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/OrderAddressUpdateTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/OrderCancelTest.php b/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/OrderCancelTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/OrderCommentsListTest.php b/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/OrderCommentsListTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/OrderEmailTest.php b/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/OrderEmailTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/OrderGetStatusTest.php b/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/OrderGetStatusTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/OrderGetTest.php b/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/OrderGetTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/OrderHoldTest.php b/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/OrderHoldTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/OrderInvoiceCreateTest.php b/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/OrderInvoiceCreateTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/OrderItemGetListTest.php b/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/OrderItemGetListTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/OrderItemGetTest.php b/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/OrderItemGetTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/OrderListTest.php b/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/OrderListTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/OrderStatusHistoryAddTest.php b/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/OrderStatusHistoryAddTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/OrderUnHoldTest.php b/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/OrderUnHoldTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/RefundOrderTest.php b/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/RefundOrderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/ShipOrderTest.php b/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/ShipOrderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/ShipmentAddCommentTest.php b/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/ShipmentAddCommentTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/ShipmentAddTrackTest.php b/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/ShipmentAddTrackTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/ShipmentCommentsListTest.php b/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/ShipmentCommentsListTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/ShipmentCreateTest.php b/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/ShipmentCreateTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/ShipmentEmailTest.php b/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/ShipmentEmailTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/ShipmentGetTest.php b/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/ShipmentGetTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/ShipmentLabelGetTest.php b/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/ShipmentLabelGetTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/ShipmentListTest.php b/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/ShipmentListTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/ShipmentRemoveTrackTest.php b/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/ShipmentRemoveTrackTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/TransactionTest.php b/dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/TransactionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/SalesInventory/Api/Service/V1/ReturnItemsAfterRefundOrderTest.php b/dev/tests/api-functional/testsuite/Magento/SalesInventory/Api/Service/V1/ReturnItemsAfterRefundOrderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/SalesRule/Api/CouponManagementTest.php b/dev/tests/api-functional/testsuite/Magento/SalesRule/Api/CouponManagementTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/SalesRule/Api/CouponRepositoryTest.php b/dev/tests/api-functional/testsuite/Magento/SalesRule/Api/CouponRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/SalesRule/Api/RuleRepositoryTest.php b/dev/tests/api-functional/testsuite/Magento/SalesRule/Api/RuleRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Store/Api/GroupRepositoryTest.php b/dev/tests/api-functional/testsuite/Magento/Store/Api/GroupRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Store/Api/StoreConfigManagerTest.php b/dev/tests/api-functional/testsuite/Magento/Store/Api/StoreConfigManagerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Store/Api/StoreRepositoryTest.php b/dev/tests/api-functional/testsuite/Magento/Store/Api/StoreRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Store/Api/WebsiteRepositoryTest.php b/dev/tests/api-functional/testsuite/Magento/Store/Api/WebsiteRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Tax/Api/TaxClassRepositoryTest.php b/dev/tests/api-functional/testsuite/Magento/Tax/Api/TaxClassRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Tax/Api/TaxRateRepositoryTest.php b/dev/tests/api-functional/testsuite/Magento/Tax/Api/TaxRateRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Tax/Api/TaxRuleRepositoryInterfaceTest.php b/dev/tests/api-functional/testsuite/Magento/Tax/Api/TaxRuleRepositoryInterfaceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Webapi/Authentication/RestTest.php b/dev/tests/api-functional/testsuite/Magento/Webapi/Authentication/RestTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Webapi/CustomAttributeTypeWsdlGenerationTest.php b/dev/tests/api-functional/testsuite/Magento/Webapi/CustomAttributeTypeWsdlGenerationTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Webapi/DataObjectSerialization/ServiceSerializationTest.php b/dev/tests/api-functional/testsuite/Magento/Webapi/DataObjectSerialization/ServiceSerializationTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Webapi/DeserializationTest.php b/dev/tests/api-functional/testsuite/Magento/Webapi/DeserializationTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Webapi/JoinDirectivesTest.php b/dev/tests/api-functional/testsuite/Magento/Webapi/JoinDirectivesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Webapi/JsonGenerationFromDataObjectTest.php b/dev/tests/api-functional/testsuite/Magento/Webapi/JsonGenerationFromDataObjectTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Webapi/PartialResponseTest.php b/dev/tests/api-functional/testsuite/Magento/Webapi/PartialResponseTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Webapi/Routing/BaseService.php b/dev/tests/api-functional/testsuite/Magento/Webapi/Routing/BaseService.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Webapi/Routing/CoreRoutingTest.php b/dev/tests/api-functional/testsuite/Magento/Webapi/Routing/CoreRoutingTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Webapi/Routing/GettersTest.php b/dev/tests/api-functional/testsuite/Magento/Webapi/Routing/GettersTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Webapi/Routing/NoWebApiXmlTest.php b/dev/tests/api-functional/testsuite/Magento/Webapi/Routing/NoWebApiXmlTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Webapi/Routing/RequestIdOverrideTest.php b/dev/tests/api-functional/testsuite/Magento/Webapi/Routing/RequestIdOverrideTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Webapi/Routing/RestErrorHandlingTest.php b/dev/tests/api-functional/testsuite/Magento/Webapi/Routing/RestErrorHandlingTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Webapi/Routing/ServiceVersionV1Test.php b/dev/tests/api-functional/testsuite/Magento/Webapi/Routing/ServiceVersionV1Test.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Webapi/Routing/ServiceVersionV2Test.php b/dev/tests/api-functional/testsuite/Magento/Webapi/Routing/ServiceVersionV2Test.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Webapi/Routing/SoapErrorHandlingTest.php b/dev/tests/api-functional/testsuite/Magento/Webapi/Routing/SoapErrorHandlingTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Webapi/Routing/SubsetTest.php b/dev/tests/api-functional/testsuite/Magento/Webapi/Routing/SubsetTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/api-functional/testsuite/Magento/Webapi/WsdlGenerationFromDataObjectTest.php b/dev/tests/api-functional/testsuite/Magento/Webapi/WsdlGenerationFromDataObjectTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/.gitignore b/dev/tests/functional/.gitignore
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/.htaccess.sample b/dev/tests/functional/.htaccess.sample
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/bootstrap.php b/dev/tests/functional/bootstrap.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/composer.json b/dev/tests/functional/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/credentials.xml.dist b/dev/tests/functional/credentials.xml.dist
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/etc/config.xml.dist b/dev/tests/functional/etc/config.xml.dist
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/etc/config.xsd b/dev/tests/functional/etc/config.xsd
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/etc/di.xml b/dev/tests/functional/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/etc/events.xml b/dev/tests/functional/etc/events.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/etc/events.xsd b/dev/tests/functional/etc/events.xsd
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/etc/repository_replacer.xml b/dev/tests/functional/etc/repository_replacer.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/etc/repository_replacer_payments.xml b/dev/tests/functional/etc/repository_replacer_payments.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/isolation.php b/dev/tests/functional/isolation.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/App/State/AbstractState.php b/dev/tests/functional/lib/Magento/Mtf/App/State/AbstractState.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/App/State/State1.php b/dev/tests/functional/lib/Magento/Mtf/App/State/State1.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/App/State/StateHandlerInterface.php b/dev/tests/functional/lib/Magento/Mtf/App/State/StateHandlerInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Client/Element/ConditionsElement.php b/dev/tests/functional/lib/Magento/Mtf/Client/Element/ConditionsElement.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Client/Element/DatepickerElement.php b/dev/tests/functional/lib/Magento/Mtf/Client/Element/DatepickerElement.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Client/Element/DropdownmultiselectElement.php b/dev/tests/functional/lib/Magento/Mtf/Client/Element/DropdownmultiselectElement.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Client/Element/GlobalsearchElement.php b/dev/tests/functional/lib/Magento/Mtf/Client/Element/GlobalsearchElement.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Client/Element/JquerytreeElement.php b/dev/tests/functional/lib/Magento/Mtf/Client/Element/JquerytreeElement.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Client/Element/LiselectstoreElement.php b/dev/tests/functional/lib/Magento/Mtf/Client/Element/LiselectstoreElement.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Client/Element/MultiselectgrouplistElement.php b/dev/tests/functional/lib/Magento/Mtf/Client/Element/MultiselectgrouplistElement.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Client/Element/MultiselectlistElement.php b/dev/tests/functional/lib/Magento/Mtf/Client/Element/MultiselectlistElement.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Client/Element/MultisuggestElement.php b/dev/tests/functional/lib/Magento/Mtf/Client/Element/MultisuggestElement.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Client/Element/OptgroupselectElement.php b/dev/tests/functional/lib/Magento/Mtf/Client/Element/OptgroupselectElement.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Client/Element/RadiobuttonElement.php b/dev/tests/functional/lib/Magento/Mtf/Client/Element/RadiobuttonElement.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Client/Element/SelectstoreElement.php b/dev/tests/functional/lib/Magento/Mtf/Client/Element/SelectstoreElement.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Client/Element/SimplifiedselectElement.php b/dev/tests/functional/lib/Magento/Mtf/Client/Element/SimplifiedselectElement.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Client/Element/SuggestElement.php b/dev/tests/functional/lib/Magento/Mtf/Client/Element/SuggestElement.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Client/Element/SwitcherElement.php b/dev/tests/functional/lib/Magento/Mtf/Client/Element/SwitcherElement.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Client/Element/Tree.php b/dev/tests/functional/lib/Magento/Mtf/Client/Element/Tree.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Client/Element/TreeElement.php b/dev/tests/functional/lib/Magento/Mtf/Client/Element/TreeElement.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Config/FileResolver/ScopeConfig.php b/dev/tests/functional/lib/Magento/Mtf/Config/FileResolver/ScopeConfig.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Constraint/AbstractAssertForm.php b/dev/tests/functional/lib/Magento/Mtf/Constraint/AbstractAssertForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/EntryPoint/EntryPoint.php b/dev/tests/functional/lib/Magento/Mtf/EntryPoint/EntryPoint.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Handler/Webapi.php b/dev/tests/functional/lib/Magento/Mtf/Handler/Webapi.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Page/BackendPage.php b/dev/tests/functional/lib/Magento/Mtf/Page/BackendPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/System/Observer/AllureWebapiResponse.php b/dev/tests/functional/lib/Magento/Mtf/System/Observer/AllureWebapiResponse.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/System/Observer/WebapiResponse.php b/dev/tests/functional/lib/Magento/Mtf/System/Observer/WebapiResponse.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Troubleshooting/AdminAnalyzer.php b/dev/tests/functional/lib/Magento/Mtf/Troubleshooting/AdminAnalyzer.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Troubleshooting/ConfigAnalyzer.php b/dev/tests/functional/lib/Magento/Mtf/Troubleshooting/ConfigAnalyzer.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Troubleshooting/Configuration.php b/dev/tests/functional/lib/Magento/Mtf/Troubleshooting/Configuration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Troubleshooting/GlobalAnalyzer.php b/dev/tests/functional/lib/Magento/Mtf/Troubleshooting/GlobalAnalyzer.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Troubleshooting/Helper/UrlAnalyzer.php b/dev/tests/functional/lib/Magento/Mtf/Troubleshooting/Helper/UrlAnalyzer.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Troubleshooting/HtaccessAnalyzer.php b/dev/tests/functional/lib/Magento/Mtf/Troubleshooting/HtaccessAnalyzer.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Troubleshooting/PhpUnitAnalyzer.php b/dev/tests/functional/lib/Magento/Mtf/Troubleshooting/PhpUnitAnalyzer.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Troubleshooting/SeleniumSessionAnalyzer.php b/dev/tests/functional/lib/Magento/Mtf/Troubleshooting/SeleniumSessionAnalyzer.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Troubleshooting/StaticClassesGenerator.php b/dev/tests/functional/lib/Magento/Mtf/Troubleshooting/StaticClassesGenerator.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Troubleshooting/StorefrontAnalyzer.php b/dev/tests/functional/lib/Magento/Mtf/Troubleshooting/StorefrontAnalyzer.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Util/Command/Cli.php b/dev/tests/functional/lib/Magento/Mtf/Util/Command/Cli.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Util/Command/Cli/Cache.php b/dev/tests/functional/lib/Magento/Mtf/Util/Command/Cli/Cache.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Util/Command/Cli/Cron.php b/dev/tests/functional/lib/Magento/Mtf/Util/Command/Cli/Cron.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Util/Command/Cli/DeployMode.php b/dev/tests/functional/lib/Magento/Mtf/Util/Command/Cli/DeployMode.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Util/Command/Cli/Indexer.php b/dev/tests/functional/lib/Magento/Mtf/Util/Command/Cli/Indexer.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Util/Command/Cli/Queue.php b/dev/tests/functional/lib/Magento/Mtf/Util/Command/Cli/Queue.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Util/Command/Cli/Setup.php b/dev/tests/functional/lib/Magento/Mtf/Util/Command/Cli/Setup.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Util/Command/Cli/StaticContent.php b/dev/tests/functional/lib/Magento/Mtf/Util/Command/Cli/StaticContent.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Util/Command/File/Export.php b/dev/tests/functional/lib/Magento/Mtf/Util/Command/File/Export.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Util/Command/File/Export/Data.php b/dev/tests/functional/lib/Magento/Mtf/Util/Command/File/Export/Data.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Util/Command/File/Export/Reader.php b/dev/tests/functional/lib/Magento/Mtf/Util/Command/File/Export/Reader.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Util/Command/File/Export/ReaderInterface.php b/dev/tests/functional/lib/Magento/Mtf/Util/Command/File/Export/ReaderInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Util/Command/File/ExportInterface.php b/dev/tests/functional/lib/Magento/Mtf/Util/Command/File/ExportInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Util/Command/File/Log.php b/dev/tests/functional/lib/Magento/Mtf/Util/Command/File/Log.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Util/Command/GeneratedCode.php b/dev/tests/functional/lib/Magento/Mtf/Util/Command/GeneratedCode.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Util/Command/Locales.php b/dev/tests/functional/lib/Magento/Mtf/Util/Command/Locales.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Util/Command/PathChecker.php b/dev/tests/functional/lib/Magento/Mtf/Util/Command/PathChecker.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Util/Command/Website.php b/dev/tests/functional/lib/Magento/Mtf/Util/Command/Website.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Util/Filesystem/FileHelper.php b/dev/tests/functional/lib/Magento/Mtf/Util/Filesystem/FileHelper.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Util/Generate/Factory.php b/dev/tests/functional/lib/Magento/Mtf/Util/Generate/Factory.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Util/Generate/Factory/AbstractFactory.php b/dev/tests/functional/lib/Magento/Mtf/Util/Generate/Factory/AbstractFactory.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Util/Generate/Factory/Block.php b/dev/tests/functional/lib/Magento/Mtf/Util/Generate/Factory/Block.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Util/Generate/Factory/Fixture.php b/dev/tests/functional/lib/Magento/Mtf/Util/Generate/Factory/Fixture.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Util/Generate/Factory/Handler.php b/dev/tests/functional/lib/Magento/Mtf/Util/Generate/Factory/Handler.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Util/Generate/Factory/Page.php b/dev/tests/functional/lib/Magento/Mtf/Util/Generate/Factory/Page.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Util/Generate/Factory/Repository.php b/dev/tests/functional/lib/Magento/Mtf/Util/Generate/Factory/Repository.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Util/Generate/File/Generator.php b/dev/tests/functional/lib/Magento/Mtf/Util/Generate/File/Generator.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Util/Generate/File/TemplateInterface.php b/dev/tests/functional/lib/Magento/Mtf/Util/Generate/File/TemplateInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Util/Generate/Fixture/FieldsProvider.php b/dev/tests/functional/lib/Magento/Mtf/Util/Generate/Fixture/FieldsProvider.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Util/Generate/Fixture/SchemaXml.php b/dev/tests/functional/lib/Magento/Mtf/Util/Generate/Fixture/SchemaXml.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Util/Generate/Fixture/template.xml b/dev/tests/functional/lib/Magento/Mtf/Util/Generate/Fixture/template.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Util/Generate/Repository/RepositoryResource.php b/dev/tests/functional/lib/Magento/Mtf/Util/Generate/Repository/RepositoryResource.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Util/Generate/Repository/TableCollection.php b/dev/tests/functional/lib/Magento/Mtf/Util/Generate/Repository/TableCollection.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Util/ModuleResolver/SequenceSorter.php b/dev/tests/functional/lib/Magento/Mtf/Util/ModuleResolver/SequenceSorter.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Util/Protocol/CurlTransport/BackendDecorator.php b/dev/tests/functional/lib/Magento/Mtf/Util/Protocol/CurlTransport/BackendDecorator.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Util/Protocol/CurlTransport/FrontendDecorator.php b/dev/tests/functional/lib/Magento/Mtf/Util/Protocol/CurlTransport/FrontendDecorator.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/lib/Magento/Mtf/Util/Protocol/CurlTransport/WebapiDecorator.php b/dev/tests/functional/lib/Magento/Mtf/Util/Protocol/CurlTransport/WebapiDecorator.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/phpunit.xml.dist b/dev/tests/functional/phpunit.xml.dist
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/AdminNotification/Test/Block/System/Messages.php b/dev/tests/functional/tests/app/Magento/AdminNotification/Test/Block/System/Messages.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/AdminNotification/Test/Block/System/Messages/System.php b/dev/tests/functional/tests/app/Magento/AdminNotification/Test/Block/System/Messages/System.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/AdminNotification/Test/TestCase/NavigateMenuTest.xml b/dev/tests/functional/tests/app/Magento/AdminNotification/Test/TestCase/NavigateMenuTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/AdvancedPricingImportExport/Test/Constraint/AssertExportAdvancedPricing.php b/dev/tests/functional/tests/app/Magento/AdvancedPricingImportExport/Test/Constraint/AssertExportAdvancedPricing.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/AdvancedPricingImportExport/Test/Constraint/AssertImportAdvancedPricing.php b/dev/tests/functional/tests/app/Magento/AdvancedPricingImportExport/Test/Constraint/AssertImportAdvancedPricing.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/AdvancedPricingImportExport/Test/Repository/ExportData.xml b/dev/tests/functional/tests/app/Magento/AdvancedPricingImportExport/Test/Repository/ExportData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/AdvancedPricingImportExport/Test/TestCase/ExportAdvancedPricingTest.php b/dev/tests/functional/tests/app/Magento/AdvancedPricingImportExport/Test/TestCase/ExportAdvancedPricingTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/AdvancedPricingImportExport/Test/TestCase/ExportAdvancedPricingTest.xml b/dev/tests/functional/tests/app/Magento/AdvancedPricingImportExport/Test/TestCase/ExportAdvancedPricingTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/AdvancedPricingImportExport/Test/TestCase/ImportDataNegativeTest.xml b/dev/tests/functional/tests/app/Magento/AdvancedPricingImportExport/Test/TestCase/ImportDataNegativeTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/AdvancedPricingImportExport/Test/TestCase/ImportDataTest.xml b/dev/tests/functional/tests/app/Magento/AdvancedPricingImportExport/Test/TestCase/ImportDataTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/AdvancedPricingImportExport/Test/_files/template/pricing/advanced_incorrect.php b/dev/tests/functional/tests/app/Magento/AdvancedPricingImportExport/Test/_files/template/pricing/advanced_incorrect.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/AdvancedPricingImportExport/Test/_files/template/pricing/advanced_price_variation_1.php b/dev/tests/functional/tests/app/Magento/AdvancedPricingImportExport/Test/_files/template/pricing/advanced_price_variation_1.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/AdvancedPricingImportExport/Test/_files/template/pricing/advanced_price_variation_2.php b/dev/tests/functional/tests/app/Magento/AdvancedPricingImportExport/Test/_files/template/pricing/advanced_price_variation_2.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/AdvancedPricingImportExport/Test/_files/template/pricing/advanced_price_variation_3.php b/dev/tests/functional/tests/app/Magento/AdvancedPricingImportExport/Test/_files/template/pricing/advanced_price_variation_3.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/AdvancedPricingImportExport/Test/_files/template/pricing/advanced_price_variation_4.php b/dev/tests/functional/tests/app/Magento/AdvancedPricingImportExport/Test/_files/template/pricing/advanced_price_variation_4.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/AdvancedPricingImportExport/Test/etc/di.xml b/dev/tests/functional/tests/app/Magento/AdvancedPricingImportExport/Test/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Analytics/Test/Block/Adminhtml/Dashboard/AdvancedReporting/ReportsSectionBlock.php b/dev/tests/functional/tests/app/Magento/Analytics/Test/Block/Adminhtml/Dashboard/AdvancedReporting/ReportsSectionBlock.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Analytics/Test/Block/System/Config/AnalyticsForm.php b/dev/tests/functional/tests/app/Magento/Analytics/Test/Block/System/Config/AnalyticsForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Analytics/Test/Constraint/AssertAdvancedReportingPage.php b/dev/tests/functional/tests/app/Magento/Analytics/Test/Constraint/AssertAdvancedReportingPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Analytics/Test/Constraint/AssertAdvancedReportingSectionInvisible.php b/dev/tests/functional/tests/app/Magento/Analytics/Test/Constraint/AssertAdvancedReportingSectionInvisible.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Analytics/Test/Constraint/AssertAdvancedReportingSectionVisible.php b/dev/tests/functional/tests/app/Magento/Analytics/Test/Constraint/AssertAdvancedReportingSectionVisible.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Analytics/Test/Constraint/AssertBIEssentialsLink.php b/dev/tests/functional/tests/app/Magento/Analytics/Test/Constraint/AssertBIEssentialsLink.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Analytics/Test/Constraint/AssertConfigAnalyticsDisabled.php b/dev/tests/functional/tests/app/Magento/Analytics/Test/Constraint/AssertConfigAnalyticsDisabled.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Analytics/Test/Constraint/AssertConfigAnalyticsEnabled.php b/dev/tests/functional/tests/app/Magento/Analytics/Test/Constraint/AssertConfigAnalyticsEnabled.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Analytics/Test/Constraint/AssertConfigAnalyticsIndustryScope.php b/dev/tests/functional/tests/app/Magento/Analytics/Test/Constraint/AssertConfigAnalyticsIndustryScope.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Analytics/Test/Constraint/AssertConfigAnalyticsSendingTimeAndZone.php b/dev/tests/functional/tests/app/Magento/Analytics/Test/Constraint/AssertConfigAnalyticsSendingTimeAndZone.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Analytics/Test/Constraint/AssertEmptyIndustryCanNotBeSaved.php b/dev/tests/functional/tests/app/Magento/Analytics/Test/Constraint/AssertEmptyIndustryCanNotBeSaved.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Analytics/Test/Constraint/AssertIndustryIsSet.php b/dev/tests/functional/tests/app/Magento/Analytics/Test/Constraint/AssertIndustryIsSet.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Analytics/Test/Page/Adminhtml/ConfigAnalytics.xml b/dev/tests/functional/tests/app/Magento/Analytics/Test/Page/Adminhtml/ConfigAnalytics.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Analytics/Test/Page/Adminhtml/Dashboard.xml b/dev/tests/functional/tests/app/Magento/Analytics/Test/Page/Adminhtml/Dashboard.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Analytics/Test/Repository/DefaultTimeZone.xml b/dev/tests/functional/tests/app/Magento/Analytics/Test/Repository/DefaultTimeZone.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Analytics/Test/Repository/Integration.xml b/dev/tests/functional/tests/app/Magento/Analytics/Test/Repository/Integration.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Analytics/Test/Repository/Role.xml b/dev/tests/functional/tests/app/Magento/Analytics/Test/Repository/Role.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Analytics/Test/Repository/User.xml b/dev/tests/functional/tests/app/Magento/Analytics/Test/Repository/User.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Analytics/Test/TestCase/AdvancedReportingButtonTest.php b/dev/tests/functional/tests/app/Magento/Analytics/Test/TestCase/AdvancedReportingButtonTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Analytics/Test/TestCase/AdvancedReportingButtonTest.xml b/dev/tests/functional/tests/app/Magento/Analytics/Test/TestCase/AdvancedReportingButtonTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Analytics/Test/TestCase/CustomAclPermissionTest.xml b/dev/tests/functional/tests/app/Magento/Analytics/Test/TestCase/CustomAclPermissionTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Analytics/Test/TestCase/EnableDisableTest.php b/dev/tests/functional/tests/app/Magento/Analytics/Test/TestCase/EnableDisableTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Analytics/Test/TestCase/EnableDisableTest.xml b/dev/tests/functional/tests/app/Magento/Analytics/Test/TestCase/EnableDisableTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Analytics/Test/TestCase/InstallTest.xml b/dev/tests/functional/tests/app/Magento/Analytics/Test/TestCase/InstallTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Analytics/Test/TestCase/NavigateMenuTest.xml b/dev/tests/functional/tests/app/Magento/Analytics/Test/TestCase/NavigateMenuTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Analytics/Test/TestCase/SetIndustryTest.php b/dev/tests/functional/tests/app/Magento/Analytics/Test/TestCase/SetIndustryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Analytics/Test/TestCase/SetIndustryTest.xml b/dev/tests/functional/tests/app/Magento/Analytics/Test/TestCase/SetIndustryTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Analytics/Test/TestCase/SetTimeToSendDataTest.php b/dev/tests/functional/tests/app/Magento/Analytics/Test/TestCase/SetTimeToSendDataTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Analytics/Test/TestCase/SetTimeToSendDataTest.xml b/dev/tests/functional/tests/app/Magento/Analytics/Test/TestCase/SetTimeToSendDataTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Analytics/Test/TestStep/OpenAnalyticsConfigStep.php b/dev/tests/functional/tests/app/Magento/Analytics/Test/TestStep/OpenAnalyticsConfigStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Analytics/Test/etc/di.xml b/dev/tests/functional/tests/app/Magento/Analytics/Test/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Authorizenet/Test/Block/Form/AuthorizenetCc.php b/dev/tests/functional/tests/app/Magento/Authorizenet/Test/Block/Form/AuthorizenetCc.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Authorizenet/Test/Block/Form/AuthorizenetCc.xml b/dev/tests/functional/tests/app/Magento/Authorizenet/Test/Block/Form/AuthorizenetCc.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Authorizenet/Test/Block/Sandbox/AuthorizenetLogin.php b/dev/tests/functional/tests/app/Magento/Authorizenet/Test/Block/Sandbox/AuthorizenetLogin.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Authorizenet/Test/Block/Sandbox/AuthorizenetLogin.xml b/dev/tests/functional/tests/app/Magento/Authorizenet/Test/Block/Sandbox/AuthorizenetLogin.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Authorizenet/Test/Block/Sandbox/GetStartedModal.php b/dev/tests/functional/tests/app/Magento/Authorizenet/Test/Block/Sandbox/GetStartedModal.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Authorizenet/Test/Block/Sandbox/Menu.php b/dev/tests/functional/tests/app/Magento/Authorizenet/Test/Block/Sandbox/Menu.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Authorizenet/Test/Block/Sandbox/SearchForm.php b/dev/tests/functional/tests/app/Magento/Authorizenet/Test/Block/Sandbox/SearchForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Authorizenet/Test/Block/Sandbox/SearchForm.xml b/dev/tests/functional/tests/app/Magento/Authorizenet/Test/Block/Sandbox/SearchForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Authorizenet/Test/Block/Sandbox/TransactionsGrid.php b/dev/tests/functional/tests/app/Magento/Authorizenet/Test/Block/Sandbox/TransactionsGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Authorizenet/Test/Constraint/AssertCreditCardNumberOnOnePageCheckout.php b/dev/tests/functional/tests/app/Magento/Authorizenet/Test/Constraint/AssertCreditCardNumberOnOnePageCheckout.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Authorizenet/Test/Fixture/AuthorizenetSandboxCustomer.xml b/dev/tests/functional/tests/app/Magento/Authorizenet/Test/Fixture/AuthorizenetSandboxCustomer.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Authorizenet/Test/Fixture/TransactionSearch.xml b/dev/tests/functional/tests/app/Magento/Authorizenet/Test/Fixture/TransactionSearch.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Authorizenet/Test/Page/CheckoutOnepage.xml b/dev/tests/functional/tests/app/Magento/Authorizenet/Test/Page/CheckoutOnepage.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Authorizenet/Test/Page/Sandbox/Main.xml b/dev/tests/functional/tests/app/Magento/Authorizenet/Test/Page/Sandbox/Main.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Authorizenet/Test/Repository/AuthorizenetSandboxCustomer.xml b/dev/tests/functional/tests/app/Magento/Authorizenet/Test/Repository/AuthorizenetSandboxCustomer.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Authorizenet/Test/Repository/ConfigData.xml b/dev/tests/functional/tests/app/Magento/Authorizenet/Test/Repository/ConfigData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Authorizenet/Test/Repository/TransactionSearch.xml b/dev/tests/functional/tests/app/Magento/Authorizenet/Test/Repository/TransactionSearch.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Authorizenet/Test/TestCase/AuthorizenetFraudCheckoutTest.php b/dev/tests/functional/tests/app/Magento/Authorizenet/Test/TestCase/AuthorizenetFraudCheckoutTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Authorizenet/Test/TestCase/AuthorizenetFraudCheckoutTest.xml b/dev/tests/functional/tests/app/Magento/Authorizenet/Test/TestCase/AuthorizenetFraudCheckoutTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Authorizenet/Test/TestCase/OnePageCheckoutDeclinedTest.xml b/dev/tests/functional/tests/app/Magento/Authorizenet/Test/TestCase/OnePageCheckoutDeclinedTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Authorizenet/Test/TestCase/OnePageCheckoutPaymentMethodDataPersistenceWithDiscountTest.xml b/dev/tests/functional/tests/app/Magento/Authorizenet/Test/TestCase/OnePageCheckoutPaymentMethodDataPersistenceWithDiscountTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Authorizenet/Test/TestCase/OnePageCheckoutTest.xml b/dev/tests/functional/tests/app/Magento/Authorizenet/Test/TestCase/OnePageCheckoutTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Authorizenet/Test/TestCase/ReorderOrderEntityTest.xml b/dev/tests/functional/tests/app/Magento/Authorizenet/Test/TestCase/ReorderOrderEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Authorizenet/Test/TestStep/AcceptTransactionOnAuthorizenetStep.php b/dev/tests/functional/tests/app/Magento/Authorizenet/Test/TestStep/AcceptTransactionOnAuthorizenetStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Authorizenet/Test/etc/testcase.xml b/dev/tests/functional/tests/app/Magento/Authorizenet/Test/etc/testcase.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Block/Admin/Login.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Block/Admin/Login.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Block/Admin/Login.xml b/dev/tests/functional/tests/app/Magento/Backend/Test/Block/Admin/Login.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Block/Dashboard/StoreStats.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Block/Dashboard/StoreStats.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Block/Dashboard/StoreStats.xml b/dev/tests/functional/tests/app/Magento/Backend/Test/Block/Dashboard/StoreStats.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Block/Dashboard/Tab/Products.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Block/Dashboard/Tab/Products.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Block/Dashboard/Tab/Products/Ordered.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Block/Dashboard/Tab/Products/Ordered.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Block/Denied.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Block/Denied.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Block/GridPageActions.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Block/GridPageActions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Block/Menu.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Block/Menu.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Block/Messages.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Block/Messages.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Block/Page/Error.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Block/Page/Error.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Block/Page/Header.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Block/Page/Header.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Block/Page/Main.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Block/Page/Main.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Block/PageActions.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Block/PageActions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Block/System/Config/Form.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Block/System/Config/Form.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Block/System/Config/Form/Group.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Block/System/Config/Form/Group.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Block/System/Config/PageActions.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Block/System/Config/PageActions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Block/System/Config/Payments.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Block/System/Config/Payments.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Block/System/Config/Tabs.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Block/System/Config/Tabs.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Block/System/Store/Delete/Form.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Block/System/Store/Delete/Form.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Block/System/Store/Delete/Form.xml b/dev/tests/functional/tests/app/Magento/Backend/Test/Block/System/Store/Delete/Form.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Block/System/Store/Edit/Form/GroupForm.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Block/System/Store/Edit/Form/GroupForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Block/System/Store/Edit/Form/GroupForm.xml b/dev/tests/functional/tests/app/Magento/Backend/Test/Block/System/Store/Edit/Form/GroupForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Block/System/Store/Edit/Form/StoreForm.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Block/System/Store/Edit/Form/StoreForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Block/System/Store/Edit/Form/StoreForm.xml b/dev/tests/functional/tests/app/Magento/Backend/Test/Block/System/Store/Edit/Form/StoreForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Block/System/Store/Edit/Form/WebsiteForm.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Block/System/Store/Edit/Form/WebsiteForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Block/System/Store/Edit/Form/WebsiteForm.xml b/dev/tests/functional/tests/app/Magento/Backend/Test/Block/System/Store/Edit/Form/WebsiteForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Block/System/Store/FormPageActions.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Block/System/Store/FormPageActions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Block/System/Store/GridPageActions.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Block/System/Store/GridPageActions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Block/System/Store/StoreGrid.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Block/System/Store/StoreGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Block/Template.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Block/Template.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Block/Version.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Block/Version.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Block/Widget/FormTabs.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Block/Widget/FormTabs.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Block/Widget/Tab.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Block/Widget/Tab.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertAdminLoginPageIsAvailable.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertAdminLoginPageIsAvailable.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertBackendPageIsAvailable.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertBackendPageIsAvailable.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertBestsellersOnDashboard.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertBestsellersOnDashboard.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertDeveloperSectionVisibility.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertDeveloperSectionVisibility.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertGlobalSearchCustomerName.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertGlobalSearchCustomerName.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertGlobalSearchNoRecordsFound.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertGlobalSearchNoRecordsFound.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertGlobalSearchOrderId.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertGlobalSearchOrderId.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertGlobalSearchPreview.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertGlobalSearchPreview.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertGlobalSearchProductName.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertGlobalSearchProductName.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertHttpUsedOnFrontend.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertHttpUsedOnFrontend.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertHttpsHeaderOptionsAvailable.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertHttpsHeaderOptionsAvailable.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertHttpsHeaderOptionsNotAvailable.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertHttpsHeaderOptionsNotAvailable.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertHttpsUsedOnBackend.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertHttpsUsedOnBackend.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertInterfaceLocaleAvailableOptions.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertInterfaceLocaleAvailableOptions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertLocaleCodeVisibility.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertLocaleCodeVisibility.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertMenuItemNotVisible.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertMenuItemNotVisible.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertStoreCanBeLocalized.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Constraint/AssertStoreCanBeLocalized.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Fixture/Admin/SuperAdmin.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Fixture/Admin/SuperAdmin.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Fixture/GlobalSearch.xml b/dev/tests/functional/tests/app/Magento/Backend/Test/Fixture/GlobalSearch.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Fixture/GlobalSearch/Query.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Fixture/GlobalSearch/Query.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Fixture/Source/Date.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Fixture/Source/Date.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Handler/Conditions.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Handler/Conditions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Handler/Extractor.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Handler/Extractor.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Handler/Ui/LoginUser.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Handler/Ui/LoginUser.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Handler/Ui/LogoutUser.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Handler/Ui/LogoutUser.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Page/AdminAuthLogin.php b/dev/tests/functional/tests/app/Magento/Backend/Test/Page/AdminAuthLogin.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Page/Adminhtml/Dashboard.xml b/dev/tests/functional/tests/app/Magento/Backend/Test/Page/Adminhtml/Dashboard.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Page/Adminhtml/DeleteGroup.xml b/dev/tests/functional/tests/app/Magento/Backend/Test/Page/Adminhtml/DeleteGroup.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Page/Adminhtml/DeleteWebsite.xml b/dev/tests/functional/tests/app/Magento/Backend/Test/Page/Adminhtml/DeleteWebsite.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Page/Adminhtml/EditGroup.xml b/dev/tests/functional/tests/app/Magento/Backend/Test/Page/Adminhtml/EditGroup.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Page/Adminhtml/EditStore.xml b/dev/tests/functional/tests/app/Magento/Backend/Test/Page/Adminhtml/EditStore.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Page/Adminhtml/EditWebsite.xml b/dev/tests/functional/tests/app/Magento/Backend/Test/Page/Adminhtml/EditWebsite.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Page/Adminhtml/NewGroupIndex.xml b/dev/tests/functional/tests/app/Magento/Backend/Test/Page/Adminhtml/NewGroupIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Page/Adminhtml/NewWebsiteIndex.xml b/dev/tests/functional/tests/app/Magento/Backend/Test/Page/Adminhtml/NewWebsiteIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Page/Adminhtml/StoreDelete.xml b/dev/tests/functional/tests/app/Magento/Backend/Test/Page/Adminhtml/StoreDelete.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Page/Adminhtml/StoreIndex.xml b/dev/tests/functional/tests/app/Magento/Backend/Test/Page/Adminhtml/StoreIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Page/Adminhtml/StoreNew.xml b/dev/tests/functional/tests/app/Magento/Backend/Test/Page/Adminhtml/StoreNew.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Page/Adminhtml/SystemAccount.xml b/dev/tests/functional/tests/app/Magento/Backend/Test/Page/Adminhtml/SystemAccount.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Page/Adminhtml/SystemConfig.xml b/dev/tests/functional/tests/app/Magento/Backend/Test/Page/Adminhtml/SystemConfig.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Page/Adminhtml/SystemConfigEdit.xml b/dev/tests/functional/tests/app/Magento/Backend/Test/Page/Adminhtml/SystemConfigEdit.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Page/Adminhtml/SystemConfigEditSectionPayment.xml b/dev/tests/functional/tests/app/Magento/Backend/Test/Page/Adminhtml/SystemConfigEditSectionPayment.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/Repository/ConfigData.xml b/dev/tests/functional/tests/app/Magento/Backend/Test/Repository/ConfigData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/ConfigPageVisibilityTest.php b/dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/ConfigPageVisibilityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/ConfigPageVisibilityTest.xml b/dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/ConfigPageVisibilityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/ConfigureSecureUrlsTest.php b/dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/ConfigureSecureUrlsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/ConfigureSecureUrlsTest.xml b/dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/ConfigureSecureUrlsTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/ExpireSessionTest.php b/dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/ExpireSessionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/ExpireSessionTest.xml b/dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/ExpireSessionTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/GlobalSearchEntityTest.php b/dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/GlobalSearchEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/GlobalSearchEntityTest.xml b/dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/GlobalSearchEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/HttpsHeadersDisableTest.php b/dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/HttpsHeadersDisableTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/HttpsHeadersDisableTest.xml b/dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/HttpsHeadersDisableTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/HttpsHeadersEnableTest.php b/dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/HttpsHeadersEnableTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/HttpsHeadersEnableTest.xml b/dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/HttpsHeadersEnableTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/LoginAfterJSMinificationTest.php b/dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/LoginAfterJSMinificationTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/LoginAfterJSMinificationTest.xml b/dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/LoginAfterJSMinificationTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/NavigateMenuTest.php b/dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/NavigateMenuTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/NavigateMenuTest.xml b/dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/NavigateMenuTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/VerifyInterfaceLocaleTest.php b/dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/VerifyInterfaceLocaleTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/VerifyInterfaceLocaleTest.xml b/dev/tests/functional/tests/app/Magento/Backend/Test/TestCase/VerifyInterfaceLocaleTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/TestStep/GetDashboardOrderStep.php b/dev/tests/functional/tests/app/Magento/Backend/Test/TestStep/GetDashboardOrderStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/TestStep/OpenDashboardStep.php b/dev/tests/functional/tests/app/Magento/Backend/Test/TestStep/OpenDashboardStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backend/Test/etc/di.xml b/dev/tests/functional/tests/app/Magento/Backend/Test/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backup/Test/Block/Adminhtml/BackupGrid.php b/dev/tests/functional/tests/app/Magento/Backup/Test/Block/Adminhtml/BackupGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backup/Test/Constraint/AssertBackupInGrid.php b/dev/tests/functional/tests/app/Magento/Backup/Test/Constraint/AssertBackupInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backup/Test/Page/Adminhtml/BackupIndex.xml b/dev/tests/functional/tests/app/Magento/Backup/Test/Page/Adminhtml/BackupIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Backup/Test/TestCase/NavigateMenuTest.xml b/dev/tests/functional/tests/app/Magento/Backup/Test/TestCase/NavigateMenuTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/Block/Adminhtml/Report/Grid.php b/dev/tests/functional/tests/app/Magento/Braintree/Test/Block/Adminhtml/Report/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/Block/Form/BraintreeCc.php b/dev/tests/functional/tests/app/Magento/Braintree/Test/Block/Form/BraintreeCc.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/Block/Form/BraintreeCc.xml b/dev/tests/functional/tests/app/Magento/Braintree/Test/Block/Form/BraintreeCc.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/Block/Form/Secure3d.php b/dev/tests/functional/tests/app/Magento/Braintree/Test/Block/Form/Secure3d.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/Block/Form/Secure3d.xml b/dev/tests/functional/tests/app/Magento/Braintree/Test/Block/Form/Secure3d.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/Block/System/Config/Braintree.php b/dev/tests/functional/tests/app/Magento/Braintree/Test/Block/System/Config/Braintree.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/Constraint/Assert3dSecureInfoIsPresent.php b/dev/tests/functional/tests/app/Magento/Braintree/Test/Constraint/Assert3dSecureInfoIsPresent.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/Constraint/AssertCreditCardJsValidationMessagesArePresent.php b/dev/tests/functional/tests/app/Magento/Braintree/Test/Constraint/AssertCreditCardJsValidationMessagesArePresent.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/Constraint/AssertDeviceDataIsPresentInBraintreeRequest.php b/dev/tests/functional/tests/app/Magento/Braintree/Test/Constraint/AssertDeviceDataIsPresentInBraintreeRequest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/Constraint/AssertTransactionIsPresentInSettlementReport.php b/dev/tests/functional/tests/app/Magento/Braintree/Test/Constraint/AssertTransactionIsPresentInSettlementReport.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/Fixture/BraintreeSandboxCustomer.xml b/dev/tests/functional/tests/app/Magento/Braintree/Test/Fixture/BraintreeSandboxCustomer.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/Fixture/Secure3dBraintree.xml b/dev/tests/functional/tests/app/Magento/Braintree/Test/Fixture/Secure3dBraintree.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/Page/Adminhtml/BraintreeSettlementReport.xml b/dev/tests/functional/tests/app/Magento/Braintree/Test/Page/Adminhtml/BraintreeSettlementReport.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/Page/Adminhtml/SystemConfigEditSectionPayment.xml b/dev/tests/functional/tests/app/Magento/Braintree/Test/Page/Adminhtml/SystemConfigEditSectionPayment.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/Page/CatalogProductView.xml b/dev/tests/functional/tests/app/Magento/Braintree/Test/Page/CatalogProductView.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/Page/CheckoutCart.xml b/dev/tests/functional/tests/app/Magento/Braintree/Test/Page/CheckoutCart.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/Page/CheckoutOnepage.xml b/dev/tests/functional/tests/app/Magento/Braintree/Test/Page/CheckoutOnepage.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/Repository/BraintreeSandboxCustomer.xml b/dev/tests/functional/tests/app/Magento/Braintree/Test/Repository/BraintreeSandboxCustomer.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/Repository/ConfigData.xml b/dev/tests/functional/tests/app/Magento/Braintree/Test/Repository/ConfigData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/Repository/CreditCard.xml b/dev/tests/functional/tests/app/Magento/Braintree/Test/Repository/CreditCard.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/Repository/Secure3d.xml b/dev/tests/functional/tests/app/Magento/Braintree/Test/Repository/Secure3d.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/BraintreeSettlementReportTest.php b/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/BraintreeSettlementReportTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/BraintreeSettlementReportTest.xml b/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/BraintreeSettlementReportTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/CheckoutWithBraintreePaypalCartTest.php b/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/CheckoutWithBraintreePaypalCartTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/CheckoutWithBraintreePaypalCartTest.xml b/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/CheckoutWithBraintreePaypalCartTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/CheckoutWithBraintreePaypalMinicartTest.php b/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/CheckoutWithBraintreePaypalMinicartTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/CheckoutWithBraintreePaypalMinicartTest.xml b/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/CheckoutWithBraintreePaypalMinicartTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/CreateOnlineCreditMemoBraintreePaypalTest.php b/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/CreateOnlineCreditMemoBraintreePaypalTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/CreateOnlineCreditMemoBraintreePaypalTest.xml b/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/CreateOnlineCreditMemoBraintreePaypalTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/CreateOnlineCreditMemoBraintreeTest.php b/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/CreateOnlineCreditMemoBraintreeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/CreateOnlineCreditMemoBraintreeTest.xml b/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/CreateOnlineCreditMemoBraintreeTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/CreateOnlineInvoiceEntityTest.xml b/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/CreateOnlineInvoiceEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/CreateOrderBackendTest.xml b/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/CreateOrderBackendTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/CreateOrderWithPayPalBraintreeVaultBackendTest.php b/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/CreateOrderWithPayPalBraintreeVaultBackendTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/CreateOrderWithPayPalBraintreeVaultBackendTest.xml b/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/CreateOrderWithPayPalBraintreeVaultBackendTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/CreateVaultOrderBackendTest.xml b/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/CreateVaultOrderBackendTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/InvoicePayPalBraintreeTest.php b/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/InvoicePayPalBraintreeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/InvoicePaypalBraintreeTest.xml b/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/InvoicePaypalBraintreeTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/OnePageCheckoutAcceptPaymentTest.php b/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/OnePageCheckoutAcceptPaymentTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/OnePageCheckoutAcceptPaymentTest.xml b/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/OnePageCheckoutAcceptPaymentTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/OnePageCheckoutDeclinedTest.xml b/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/OnePageCheckoutDeclinedTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/OnePageCheckoutDenyPaymentTest.php b/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/OnePageCheckoutDenyPaymentTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/OnePageCheckoutDenyPaymentTest.xml b/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/OnePageCheckoutDenyPaymentTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/OnePageCheckoutFromMiniShoppingCartTest.xml b/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/OnePageCheckoutFromMiniShoppingCartTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/OnePageCheckoutTest.xml b/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/OnePageCheckoutTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/OnePageCheckoutWith3dSecureFailedTest.php b/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/OnePageCheckoutWith3dSecureFailedTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/OnePageCheckoutWith3dSecureFailedTest.xml b/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/OnePageCheckoutWith3dSecureFailedTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/OnePageCheckoutWith3dSecureTest.php b/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/OnePageCheckoutWith3dSecureTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/OnePageCheckoutWith3dSecureTest.xml b/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/OnePageCheckoutWith3dSecureTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/OnePageCheckoutWithBraintreePaypalTest.php b/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/OnePageCheckoutWithBraintreePaypalTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/OnePageCheckoutWithBraintreePaypalTest.xml b/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/OnePageCheckoutWithBraintreePaypalTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/OnePageCheckoutWithDiscountTest.xml b/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/OnePageCheckoutWithDiscountTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/ReorderUsingVaultTest.xml b/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/ReorderUsingVaultTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/SaveUseDeleteVaultForPaypalBraintreeTest.php b/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/SaveUseDeleteVaultForPaypalBraintreeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/SaveUseDeleteVaultForPaypalBraintreeTest.xml b/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/SaveUseDeleteVaultForPaypalBraintreeTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/UseVaultOnCheckoutTest.xml b/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/UseVaultOnCheckoutTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/UseVaultWith3dSecureOnCheckoutTest.php b/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/UseVaultWith3dSecureOnCheckoutTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/UseVaultWith3dSecureOnCheckoutTest.xml b/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/UseVaultWith3dSecureOnCheckoutTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/VerifyPaymentMethodOnCheckoutTest.xml b/dev/tests/functional/tests/app/Magento/Braintree/Test/TestCase/VerifyPaymentMethodOnCheckoutTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/TestStep/ChangeOrderStatusToPaymentReviewStep.php b/dev/tests/functional/tests/app/Magento/Braintree/Test/TestStep/ChangeOrderStatusToPaymentReviewStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/TestStep/CheckBraintreeConfigStep.php b/dev/tests/functional/tests/app/Magento/Braintree/Test/TestStep/CheckBraintreeConfigStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/TestStep/CheckoutWithPaypalFromCartStep.php b/dev/tests/functional/tests/app/Magento/Braintree/Test/TestStep/CheckoutWithPaypalFromCartStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/TestStep/CheckoutWithPaypalFromMinicartStep.php b/dev/tests/functional/tests/app/Magento/Braintree/Test/TestStep/CheckoutWithPaypalFromMinicartStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/TestStep/ContinueToPaypalStep.php b/dev/tests/functional/tests/app/Magento/Braintree/Test/TestStep/ContinueToPaypalStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/TestStep/PlaceOrderWith3dSecureFailedStep.php b/dev/tests/functional/tests/app/Magento/Braintree/Test/TestStep/PlaceOrderWith3dSecureFailedStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/TestStep/PlaceOrderWith3dSecureStep.php b/dev/tests/functional/tests/app/Magento/Braintree/Test/TestStep/PlaceOrderWith3dSecureStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/TestStep/PlaceOrderWithPaypalStep.php b/dev/tests/functional/tests/app/Magento/Braintree/Test/TestStep/PlaceOrderWithPaypalStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/TestStep/SettleTransactionStep.php b/dev/tests/functional/tests/app/Magento/Braintree/Test/TestStep/SettleTransactionStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/etc/di.xml b/dev/tests/functional/tests/app/Magento/Braintree/Test/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Braintree/Test/etc/testcase.xml b/dev/tests/functional/tests/app/Magento/Braintree/Test/etc/testcase.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Adminhtml/Catalog/Product/Edit/Section/Bundle.php b/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Adminhtml/Catalog/Product/Edit/Section/Bundle.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Adminhtml/Catalog/Product/Edit/Section/Bundle/Option.php b/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Adminhtml/Catalog/Product/Edit/Section/Bundle/Option.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Adminhtml/Catalog/Product/Edit/Section/Bundle/Option.xml b/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Adminhtml/Catalog/Product/Edit/Section/Bundle/Option.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Adminhtml/Catalog/Product/Edit/Section/Bundle/Option/Search/Grid.php b/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Adminhtml/Catalog/Product/Edit/Section/Bundle/Option/Search/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Adminhtml/Catalog/Product/Edit/Section/Bundle/Option/Selection.php b/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Adminhtml/Catalog/Product/Edit/Section/Bundle/Option/Selection.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Adminhtml/Catalog/Product/Edit/Section/Bundle/Option/Selection.xml b/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Adminhtml/Catalog/Product/Edit/Section/Bundle/Option/Selection.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Adminhtml/Product/Composite/Configure.php b/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Adminhtml/Product/Composite/Configure.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Adminhtml/Product/Composite/Configure.xml b/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Adminhtml/Product/Composite/Configure.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Adminhtml/Product/ProductForm.xml b/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Adminhtml/Product/ProductForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Catalog/Product/View.php b/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Catalog/Product/View.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Catalog/Product/View/Summary.php b/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Catalog/Product/View/Summary.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Catalog/Product/View/Summary/ConfiguredPrice.php b/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Catalog/Product/View/Summary/ConfiguredPrice.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Catalog/Product/View/Type/Bundle.php b/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Catalog/Product/View/Type/Bundle.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Catalog/Product/View/Type/Option.php b/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Catalog/Product/View/Type/Option.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Catalog/Product/View/Type/Option/Checkbox.php b/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Catalog/Product/View/Type/Option/Checkbox.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Catalog/Product/View/Type/Option/Checkbox.xml b/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Catalog/Product/View/Type/Option/Checkbox.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Catalog/Product/View/Type/Option/Dropdown.php b/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Catalog/Product/View/Type/Option/Dropdown.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Catalog/Product/View/Type/Option/Dropdown.xml b/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Catalog/Product/View/Type/Option/Dropdown.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Catalog/Product/View/Type/Option/Element/Qty.php b/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Catalog/Product/View/Type/Option/Element/Qty.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Catalog/Product/View/Type/Option/Hidden.php b/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Catalog/Product/View/Type/Option/Hidden.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Catalog/Product/View/Type/Option/Hidden.xml b/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Catalog/Product/View/Type/Option/Hidden.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Catalog/Product/View/Type/Option/Multiple.php b/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Catalog/Product/View/Type/Option/Multiple.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Catalog/Product/View/Type/Option/Multiple.xml b/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Catalog/Product/View/Type/Option/Multiple.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Catalog/Product/View/Type/Option/Radiobuttons.php b/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Catalog/Product/View/Type/Option/Radiobuttons.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Catalog/Product/View/Type/Option/Radiobuttons.xml b/dev/tests/functional/tests/app/Magento/Bundle/Test/Block/Catalog/Product/View/Type/Option/Radiobuttons.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Constraint/AssertBundleInCategory.php b/dev/tests/functional/tests/app/Magento/Bundle/Test/Constraint/AssertBundleInCategory.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Constraint/AssertBundleItemsOnProductPage.php b/dev/tests/functional/tests/app/Magento/Bundle/Test/Constraint/AssertBundleItemsOnProductPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Constraint/AssertBundleItemsSummaryOnProductPage.php b/dev/tests/functional/tests/app/Magento/Bundle/Test/Constraint/AssertBundleItemsSummaryOnProductPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Constraint/AssertBundleOptionTitleOnStorefront.php b/dev/tests/functional/tests/app/Magento/Bundle/Test/Constraint/AssertBundleOptionTitleOnStorefront.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Constraint/AssertBundleOptionsDeleted.php b/dev/tests/functional/tests/app/Magento/Bundle/Test/Constraint/AssertBundleOptionsDeleted.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Constraint/AssertBundlePriceCalculatedOnProductPage.php b/dev/tests/functional/tests/app/Magento/Bundle/Test/Constraint/AssertBundlePriceCalculatedOnProductPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Constraint/AssertBundlePriceType.php b/dev/tests/functional/tests/app/Magento/Bundle/Test/Constraint/AssertBundlePriceType.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Constraint/AssertBundlePriceView.php b/dev/tests/functional/tests/app/Magento/Bundle/Test/Constraint/AssertBundlePriceView.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Constraint/AssertBundleProductForm.php b/dev/tests/functional/tests/app/Magento/Bundle/Test/Constraint/AssertBundleProductForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Constraint/AssertBundleProductInCart.php b/dev/tests/functional/tests/app/Magento/Bundle/Test/Constraint/AssertBundleProductInCart.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Constraint/AssertBundleProductInCustomerWishlistOnBackendGrid.php b/dev/tests/functional/tests/app/Magento/Bundle/Test/Constraint/AssertBundleProductInCustomerWishlistOnBackendGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Constraint/AssertBundleProductOnConfigureCartPage.php b/dev/tests/functional/tests/app/Magento/Bundle/Test/Constraint/AssertBundleProductOnConfigureCartPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Constraint/AssertBundleProductPage.php b/dev/tests/functional/tests/app/Magento/Bundle/Test/Constraint/AssertBundleProductPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Constraint/AssertProductCustomOptionsOnBundleProductPage.php b/dev/tests/functional/tests/app/Magento/Bundle/Test/Constraint/AssertProductCustomOptionsOnBundleProductPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Constraint/AssertTierPriceOnBundleProductPage.php b/dev/tests/functional/tests/app/Magento/Bundle/Test/Constraint/AssertTierPriceOnBundleProductPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Fixture/BundleProduct.xml b/dev/tests/functional/tests/app/Magento/Bundle/Test/Fixture/BundleProduct.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Fixture/BundleProduct/BundleSelections.php b/dev/tests/functional/tests/app/Magento/Bundle/Test/Fixture/BundleProduct/BundleSelections.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Fixture/Cart/Item.php b/dev/tests/functional/tests/app/Magento/Bundle/Test/Fixture/Cart/Item.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Handler/BundleProduct/BundleProductInterface.php b/dev/tests/functional/tests/app/Magento/Bundle/Test/Handler/BundleProduct/BundleProductInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Handler/BundleProduct/Curl.php b/dev/tests/functional/tests/app/Magento/Bundle/Test/Handler/BundleProduct/Curl.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Handler/BundleProduct/Webapi.php b/dev/tests/functional/tests/app/Magento/Bundle/Test/Handler/BundleProduct/Webapi.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Page/Adminhtml/CustomerIndexEdit.xml b/dev/tests/functional/tests/app/Magento/Bundle/Test/Page/Adminhtml/CustomerIndexEdit.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Page/Adminhtml/OrderCreateIndex.xml b/dev/tests/functional/tests/app/Magento/Bundle/Test/Page/Adminhtml/OrderCreateIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Page/Product/CatalogProductView.xml b/dev/tests/functional/tests/app/Magento/Bundle/Test/Page/Product/CatalogProductView.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Repository/BundleProduct.xml b/dev/tests/functional/tests/app/Magento/Bundle/Test/Repository/BundleProduct.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Repository/BundleProduct/BundleSelections.xml b/dev/tests/functional/tests/app/Magento/Bundle/Test/Repository/BundleProduct/BundleSelections.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Repository/BundleProduct/CheckoutData.xml b/dev/tests/functional/tests/app/Magento/Bundle/Test/Repository/BundleProduct/CheckoutData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/Repository/BundleProduct/Price.xml b/dev/tests/functional/tests/app/Magento/Bundle/Test/Repository/BundleProduct/Price.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/BundleOptionsSummaryTest.php b/dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/BundleOptionsSummaryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/BundleOptionsSummaryTest.xml b/dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/BundleOptionsSummaryTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/CancelPartiallyInvoicedOrderTest.php b/dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/CancelPartiallyInvoicedOrderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/CancelPartiallyInvoicedOrderTest.xml b/dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/CancelPartiallyInvoicedOrderTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/CreateBundleDynamicProductEntityTest.php b/dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/CreateBundleDynamicProductEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/CreateBundleDynamicProductEntityTest.xml b/dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/CreateBundleDynamicProductEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/CreateBundleProductEntityTest.php b/dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/CreateBundleProductEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/CreateBundleProductEntityTest.xml b/dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/CreateBundleProductEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/DeleteProductEntityTest.xml b/dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/DeleteProductEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/DeleteProductFromMiniShoppingCartTest.xml b/dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/DeleteProductFromMiniShoppingCartTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/MoveRecentlyComparedProductsOnOrderPageTest.xml b/dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/MoveRecentlyComparedProductsOnOrderPageTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/UpdateBundleOptionsShoppingCartTest.php b/dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/UpdateBundleOptionsShoppingCartTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/UpdateBundleOptionsShoppingCartTest.xml b/dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/UpdateBundleOptionsShoppingCartTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/UpdateBundleOptionsTest.php b/dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/UpdateBundleOptionsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/UpdateBundleOptionsTest.xml b/dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/UpdateBundleOptionsTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/UpdateBundleProductEntityTest.php b/dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/UpdateBundleProductEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/UpdateBundleProductEntityTest.xml b/dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/UpdateBundleProductEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/ValidateOrderOfProductTypeTest.xml b/dev/tests/functional/tests/app/Magento/Bundle/Test/TestCase/ValidateOrderOfProductTypeTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/TestStep/CreatePartialInvoiceStep.php b/dev/tests/functional/tests/app/Magento/Bundle/Test/TestStep/CreatePartialInvoiceStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/etc/curl/di.xml b/dev/tests/functional/tests/app/Magento/Bundle/Test/etc/curl/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/etc/di.xml b/dev/tests/functional/tests/app/Magento/Bundle/Test/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/etc/testcase.xml b/dev/tests/functional/tests/app/Magento/Bundle/Test/etc/testcase.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Bundle/Test/etc/webapi/di.xml b/dev/tests/functional/tests/app/Magento/Bundle/Test/etc/webapi/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/BundleImportExport/Test/Constraint/AssertImportedBundleProducts.php b/dev/tests/functional/tests/app/Magento/BundleImportExport/Test/Constraint/AssertImportedBundleProducts.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/BundleImportExport/Test/Fixture/Import/File.php b/dev/tests/functional/tests/app/Magento/BundleImportExport/Test/Fixture/Import/File.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/BundleImportExport/Test/TestCase/ExportProductsTest.xml b/dev/tests/functional/tests/app/Magento/BundleImportExport/Test/TestCase/ExportProductsTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/BundleImportExport/Test/TestCase/ImportProductsTest.xml b/dev/tests/functional/tests/app/Magento/BundleImportExport/Test/TestCase/ImportProductsTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Captcha/Test/Block/Adminhtml/LoginWithCaptcha.php b/dev/tests/functional/tests/app/Magento/Captcha/Test/Block/Adminhtml/LoginWithCaptcha.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Captcha/Test/Block/Adminhtml/LoginWithCaptcha.xml b/dev/tests/functional/tests/app/Magento/Captcha/Test/Block/Adminhtml/LoginWithCaptcha.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Captcha/Test/Block/Form/ContactUs.php b/dev/tests/functional/tests/app/Magento/Captcha/Test/Block/Form/ContactUs.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Captcha/Test/Block/Form/ContactUs.xml b/dev/tests/functional/tests/app/Magento/Captcha/Test/Block/Form/ContactUs.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Captcha/Test/Block/Form/CustomerForm.xml b/dev/tests/functional/tests/app/Magento/Captcha/Test/Block/Form/CustomerForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Captcha/Test/Block/Form/LoginWithCaptcha.php b/dev/tests/functional/tests/app/Magento/Captcha/Test/Block/Form/LoginWithCaptcha.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Captcha/Test/Block/Form/LoginWithCaptcha.xml b/dev/tests/functional/tests/app/Magento/Captcha/Test/Block/Form/LoginWithCaptcha.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Captcha/Test/Block/Form/Register.php b/dev/tests/functional/tests/app/Magento/Captcha/Test/Block/Form/Register.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Captcha/Test/Block/Form/Register.xml b/dev/tests/functional/tests/app/Magento/Captcha/Test/Block/Form/Register.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Captcha/Test/Constraint/AssertCaptchaFieldOnBackend.php b/dev/tests/functional/tests/app/Magento/Captcha/Test/Constraint/AssertCaptchaFieldOnBackend.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Captcha/Test/Constraint/AssertCaptchaFieldOnContactUsForm.php b/dev/tests/functional/tests/app/Magento/Captcha/Test/Constraint/AssertCaptchaFieldOnContactUsForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Captcha/Test/Constraint/AssertCaptchaFieldOnRegisterForm.php b/dev/tests/functional/tests/app/Magento/Captcha/Test/Constraint/AssertCaptchaFieldOnRegisterForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Captcha/Test/Constraint/AssertCaptchaFieldOnStorefront.php b/dev/tests/functional/tests/app/Magento/Captcha/Test/Constraint/AssertCaptchaFieldOnStorefront.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Captcha/Test/Fixture/Comment.xml b/dev/tests/functional/tests/app/Magento/Captcha/Test/Fixture/Comment.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Captcha/Test/Fixture/Customer.xml b/dev/tests/functional/tests/app/Magento/Captcha/Test/Fixture/Customer.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Captcha/Test/Fixture/User.xml b/dev/tests/functional/tests/app/Magento/Captcha/Test/Fixture/User.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Captcha/Test/Page/Adminhtml/AdminAuthLoginWithCaptcha.xml b/dev/tests/functional/tests/app/Magento/Captcha/Test/Page/Adminhtml/AdminAuthLoginWithCaptcha.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Captcha/Test/Page/ContactIndex.xml b/dev/tests/functional/tests/app/Magento/Captcha/Test/Page/ContactIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Captcha/Test/Page/CustomerAccountCreate.xml b/dev/tests/functional/tests/app/Magento/Captcha/Test/Page/CustomerAccountCreate.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Captcha/Test/Page/CustomerAccountLogin.xml b/dev/tests/functional/tests/app/Magento/Captcha/Test/Page/CustomerAccountLogin.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Captcha/Test/Repository/ConfigData.xml b/dev/tests/functional/tests/app/Magento/Captcha/Test/Repository/ConfigData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Captcha/Test/TestCase/CaptchaEditCustomerTest.php b/dev/tests/functional/tests/app/Magento/Captcha/Test/TestCase/CaptchaEditCustomerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Captcha/Test/TestCase/CaptchaEditCustomerTest.xml b/dev/tests/functional/tests/app/Magento/Captcha/Test/TestCase/CaptchaEditCustomerTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Captcha/Test/TestCase/CaptchaLockoutCustomerTest.php b/dev/tests/functional/tests/app/Magento/Captcha/Test/TestCase/CaptchaLockoutCustomerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Captcha/Test/TestCase/CaptchaLockoutCustomerTest.xml b/dev/tests/functional/tests/app/Magento/Captcha/Test/TestCase/CaptchaLockoutCustomerTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Captcha/Test/TestCase/CaptchaOnAdminLoginTest.php b/dev/tests/functional/tests/app/Magento/Captcha/Test/TestCase/CaptchaOnAdminLoginTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Captcha/Test/TestCase/CaptchaOnAdminLoginTest.xml b/dev/tests/functional/tests/app/Magento/Captcha/Test/TestCase/CaptchaOnAdminLoginTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Captcha/Test/TestCase/CaptchaOnContactUsTest.php b/dev/tests/functional/tests/app/Magento/Captcha/Test/TestCase/CaptchaOnContactUsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Captcha/Test/TestCase/CaptchaOnContactUsTest.xml b/dev/tests/functional/tests/app/Magento/Captcha/Test/TestCase/CaptchaOnContactUsTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Captcha/Test/TestCase/CaptchaOnStoreFrontLoginTest.php b/dev/tests/functional/tests/app/Magento/Captcha/Test/TestCase/CaptchaOnStoreFrontLoginTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Captcha/Test/TestCase/CaptchaOnStoreFrontLoginTest.xml b/dev/tests/functional/tests/app/Magento/Captcha/Test/TestCase/CaptchaOnStoreFrontLoginTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Captcha/Test/TestCase/CaptchaOnStoreFrontRegisterTest.php b/dev/tests/functional/tests/app/Magento/Captcha/Test/TestCase/CaptchaOnStoreFrontRegisterTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Captcha/Test/TestCase/CaptchaOnStoreFrontRegisterTest.xml b/dev/tests/functional/tests/app/Magento/Captcha/Test/TestCase/CaptchaOnStoreFrontRegisterTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/AbstractConfigureBlock.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/AbstractConfigureBlock.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/AbstractPriceBlock.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/AbstractPriceBlock.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Category/Edit/CategoryForm.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Category/Edit/CategoryForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Category/Edit/CategoryForm.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Category/Edit/CategoryForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Category/Edit/PageActions.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Category/Edit/PageActions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Category/Edit/Section/ProductGrid.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Category/Edit/Section/ProductGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Category/Edit/Section/Products.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Category/Edit/Section/Products.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Category/Tree.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Category/Tree.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Category/Widget/Chooser.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Category/Widget/Chooser.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/AttributeForm.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/AttributeForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/AttributeForm.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/AttributeForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/CustomAttribute.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/CustomAttribute.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/Edit/AttributeForm.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/Edit/AttributeForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/Edit/AttributeForm.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/Edit/AttributeForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/Edit/Options.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/Edit/Options.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/Edit/Tab/Advanced.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/Edit/Tab/Advanced.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/Edit/Tab/Options.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/Edit/Tab/Options.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/Edit/Tab/Options/Option.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/Edit/Tab/Options/Option.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/Edit/Tab/Options/Option.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/Edit/Tab/Options/Option.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/Grid.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/Set/FormPageActions.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/Set/FormPageActions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/Set/Grid.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/Set/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/Set/GridPageActions.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/Set/GridPageActions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/Set/Main.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/Set/Main.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/Set/Main/AttributeSetForm.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/Set/Main/AttributeSetForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/Set/Main/AttributeSetForm.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/Set/Main/AttributeSetForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/Set/Main/EditForm.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/Set/Main/EditForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/Set/Main/EditForm.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Attribute/Set/Main/EditForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Composite/Configure.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Composite/Configure.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Composite/Configure.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Composite/Configure.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Action/FormPageActions.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Action/FormPageActions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Action/Tab/UpdateAttributeTab.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Action/Tab/UpdateAttributeTab.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Action/UpdateAttributeForm.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Action/UpdateAttributeForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Action/UpdateAttributeForm.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Action/UpdateAttributeForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/AdvancedInventory.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/AdvancedInventory.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/AdvancedPricing.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/AdvancedPricing.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/AdvancedPricing/OptionTier.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/AdvancedPricing/OptionTier.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/AdvancedPricing/OptionTier.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/AdvancedPricing/OptionTier.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Attributes.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Attributes.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Attributes/Grid.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Attributes/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Attributes/Search.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Attributes/Search.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/BlockGallery.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/BlockGallery.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/AbstractOptions.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/AbstractOptions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Row.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Row.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Search/Grid.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Search/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/Area.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/Area.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/Area.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/Area.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/Checkbox.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/Checkbox.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/Checkbox.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/Checkbox.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/Date.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/Date.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/Date.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/Date.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/DateTime.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/DateTime.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/DateTime.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/DateTime.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/DropDown.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/DropDown.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/DropDown.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/DropDown.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/Field.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/Field.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/Field.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/Field.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/File.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/File.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/File.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/File.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/MultipleSelect.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/MultipleSelect.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/MultipleSelect.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/MultipleSelect.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/RadioButtons.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/RadioButtons.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/RadioButtons.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/RadioButtons.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/Time.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/Time.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/Time.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Options/Type/Time.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/ProductDetails.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/ProductDetails.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/ProductDetails/AttributeSet.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/ProductDetails/AttributeSet.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/ProductDetails/CategoryIds.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/ProductDetails/CategoryIds.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/ProductDetails/NewCategoryIds.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/ProductDetails/NewCategoryIds.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/ProductDetails/NewCategoryIds.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/ProductDetails/NewCategoryIds.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Related.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Related.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Related/Grid.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Related/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Websites/StoreTree.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Edit/Section/Websites/StoreTree.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/FormPageActions.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/FormPageActions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/GridPageAction.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/GridPageAction.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Modal/AddAttribute.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Modal/AddAttribute.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Modal/NewAttribute.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Modal/NewAttribute.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/ProductForm.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/ProductForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/ProductForm.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/ProductForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Widget/Chooser.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Adminhtml/Product/Widget/Chooser.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Category/ProductPagination.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Category/ProductPagination.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Category/View.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Category/View.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Links/CompareLink.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Links/CompareLink.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/Additional.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/Additional.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/Compare/ListCompare.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/Compare/ListCompare.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/Compare/Sidebar.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/Compare/Sidebar.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/Grouped/AssociatedProducts.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/Grouped/AssociatedProducts.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/Grouped/AssociatedProducts/ListAssociatedProducts.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/Grouped/AssociatedProducts/ListAssociatedProducts.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/Grouped/AssociatedProducts/ListAssociatedProducts/Product.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/Grouped/AssociatedProducts/ListAssociatedProducts/Product.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/Grouped/AssociatedProducts/Search/Grid.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/Grouped/AssociatedProducts/Search/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/ListProduct.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/ListProduct.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/Price.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/Price.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/ProductList/Crosssell.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/ProductList/Crosssell.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/ProductList/PromotedSection.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/ProductList/PromotedSection.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/ProductList/Related.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/ProductList/Related.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/ProductList/Related/ProductItem.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/ProductList/Related/ProductItem.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/ProductList/Upsell.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/ProductList/Upsell.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/View.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/View.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/View/CustomOptions.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/View/CustomOptions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/View/CustomOptions.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Product/View/CustomOptions.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Search.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Block/Search.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertAbsenceDeleteAttributeButton.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertAbsenceDeleteAttributeButton.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertAddBeforeForPrice.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertAddBeforeForPrice.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertAddToCartButtonAbsent.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertAddToCartButtonAbsent.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertAddToCartButtonPresent.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertAddToCartButtonPresent.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertAddedProductAttributeOnProductForm.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertAddedProductAttributeOnProductForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertAdvancedPriceAbsentOnProductForm.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertAdvancedPriceAbsentOnProductForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertAttributeForm.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertAttributeForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertAttributeOptionsOnProductForm.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertAttributeOptionsOnProductForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertAttributeSetForm.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertAttributeSetForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertAttributeSetGroupOnProductForm.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertAttributeSetGroupOnProductForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertAttributeSetInGrid.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertAttributeSetInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertAttributeSetNotInGrid.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertAttributeSetNotInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertAttributeSetOnProductForm.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertAttributeSetOnProductForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertAttributeSetSuccessDeleteMessage.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertAttributeSetSuccessDeleteMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertAttributeSetSuccessSaveMessage.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertAttributeSetSuccessSaveMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCanSaveProduct.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCanSaveProduct.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryAbsenceOnBackend.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryAbsenceOnBackend.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryAbsenceOnFrontend.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryAbsenceOnFrontend.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryBreadcrumbs.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryBreadcrumbs.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryCannotBeDeleted.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryCannotBeDeleted.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryForAssignedProducts.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryForAssignedProducts.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryForm.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryInNavigationMenu.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryInNavigationMenu.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryIncludeInNavigationMenu.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryIncludeInNavigationMenu.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryIsNotActive.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryIsNotActive.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryMovedMessage.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryMovedMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryNavigationMenu.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryNavigationMenu.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryNotInNavigationMenu.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryNotInNavigationMenu.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryOnCustomStore.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryOnCustomStore.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryOnCustomWebsite.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryOnCustomWebsite.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryPage.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryRedirect.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryRedirect.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategorySaveMessage.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategorySaveMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategorySuccessDeleteMessage.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategorySuccessDeleteMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryWithCustomStoreOnFrontend.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertCategoryWithCustomStoreOnFrontend.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertDateInvalidErrorMessage.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertDateInvalidErrorMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertImagesAreVisibleOnProductPage.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertImagesAreVisibleOnProductPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertMassProductUpdateSuccessMessage.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertMassProductUpdateSuccessMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertPaginationCorrectOnStoreFront.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertPaginationCorrectOnStoreFront.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertPriceOnProductPageInterface.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertPriceOnProductPageInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAbsentCrossSells.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAbsentCrossSells.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAbsentRelatedProducts.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAbsentRelatedProducts.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAbsentUpSells.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAbsentUpSells.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeAbsenceInGrid.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeAbsenceInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeAbsenceInSearchOnProductForm.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeAbsenceInSearchOnProductForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeAbsenceInTemplateGroups.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeAbsenceInTemplateGroups.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeAbsenceInUnassignedAttributes.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeAbsenceInUnassignedAttributes.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeDisplayingOnFrontend.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeDisplayingOnFrontend.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeDisplayingOnSearchForm.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeDisplayingOnSearchForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeInGrid.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeIsComparable.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeIsComparable.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeIsFilterable.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeIsFilterable.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeIsFilterableInSearch.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeIsFilterableInSearch.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeIsGlobal.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeIsGlobal.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeIsHtmlAllowed.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeIsHtmlAllowed.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeIsRequired.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeIsRequired.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeIsUnique.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeIsUnique.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeIsUsedInSortOnFrontend.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeIsUsedInSortOnFrontend.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeSaveMessage.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeSaveMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeSuccessDeleteMessage.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAttributeSuccessDeleteMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAutoincrementedSkuNoticeMessage.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductAutoincrementedSkuNoticeMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductCompareBlockOnCmsPage.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductCompareBlockOnCmsPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductCompareItemsLink.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductCompareItemsLink.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductCompareItemsLinkIsAbsent.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductCompareItemsLinkIsAbsent.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductComparePage.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductComparePage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductCompareRemoveLastProductMessage.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductCompareRemoveLastProductMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductCompareSuccessAddMessage.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductCompareSuccessAddMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductCompareSuccessRemoveAllProductsMessage.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductCompareSuccessRemoveAllProductsMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductCompareSuccessRemoveMessage.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductCompareSuccessRemoveMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductCrossSells.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductCrossSells.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductCustomOptionsErrors.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductCustomOptionsErrors.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductCustomOptionsOnProductPage.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductCustomOptionsOnProductPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductDuplicateForm.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductDuplicateForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductDuplicateIsNotDisplayingOnFrontend.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductDuplicateIsNotDisplayingOnFrontend.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductDuplicateMessage.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductDuplicateMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductDuplicatedInGrid.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductDuplicatedInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductForm.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductFormattingTierPrice.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductFormattingTierPrice.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductGridIsRendered.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductGridIsRendered.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductHasImageInGrid.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductHasImageInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductInCart.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductInCart.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductInCategory.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductInCategory.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductInCategoryOnCustomWebsite.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductInCategoryOnCustomWebsite.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductInCustomStoreView.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductInCustomStoreView.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductInGrid.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductInStock.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductInStock.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductInventoryMaxAllowedQty.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductInventoryMaxAllowedQty.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductInventoryMinAllowedQty.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductInventoryMinAllowedQty.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductInventoryThreshold.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductInventoryThreshold.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductIsNotDisplayingOnFrontend.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductIsNotDisplayingOnFrontend.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductIsNotVisibleInCompareBlock.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductIsNotVisibleInCompareBlock.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductIsNotVisibleInComparePage.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductIsNotVisibleInComparePage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductNameOnDifferentStoreViews.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductNameOnDifferentStoreViews.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductNotInGrid.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductNotInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductNotSearchableBySku.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductNotSearchableBySku.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductNotVisibleInCategory.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductNotVisibleInCategory.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductOnCustomWebsite.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductOnCustomWebsite.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductOutOfStock.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductOutOfStock.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductPage.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductPriceOnDifferentStoreViews.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductPriceOnDifferentStoreViews.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductRelatedProducts.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductRelatedProducts.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductSaveMessage.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductSaveMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductSearchableBySku.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductSearchableBySku.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductSimpleDuplicateForm.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductSimpleDuplicateForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductSkuAutoGenerated.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductSkuAutoGenerated.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductSpecialPriceOnProductPage.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductSpecialPriceOnProductPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductSuccessDeleteMessage.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductSuccessDeleteMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductTierPriceInCart.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductTierPriceInCart.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductTierPriceOnProductPage.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductTierPriceOnProductPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductTierPriceOnProductPageWithCustomer.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductTierPriceOnProductPageWithCustomer.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductTypeOrderOnCreate.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductTypeOrderOnCreate.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductUpSells.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductUpSells.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductView.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductView.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductVisibleInCategory.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductVisibleInCategory.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductsInStock.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductsInStock.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductsOutOfStock.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductsOutOfStock.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductsQtyAndStockStatusInAdminPanel.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertProductsQtyAndStockStatusInAdminPanel.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertResetFilterMessage.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertResetFilterMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertSubCategoryNotInNavigationMenu.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertSubCategoryNotInNavigationMenu.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertUpdatedProductStatusInGrid.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertUpdatedProductStatusInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertUsedSuperAttributeImpossibleDeleteMessages.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Constraint/AssertUsedSuperAttributeImpossibleDeleteMessages.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/Cart/Item.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/Cart/Item.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/CatalogAttributeSet.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/CatalogAttributeSet.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/CatalogAttributeSet/AssignedAttributes.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/CatalogAttributeSet/AssignedAttributes.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/CatalogAttributeSet/SkeletonSet.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/CatalogAttributeSet/SkeletonSet.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/CatalogProductAttribute.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/CatalogProductAttribute.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/CatalogProductSimple.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/CatalogProductSimple.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/CatalogProductSimple/CustomAttribute.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/CatalogProductSimple/CustomAttribute.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/CatalogProductVirtual.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/CatalogProductVirtual.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/Category.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/Category.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/Category/CategoryProducts.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/Category/CategoryProducts.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/Category/LandingPage.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/Category/LandingPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/Category/ParentId.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/Category/ParentId.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/Category/StoreId.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/Category/StoreId.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/Product/AttributeSetId.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/Product/AttributeSetId.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/Product/CategoryIds.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/Product/CategoryIds.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/Product/CustomOptions.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/Product/CustomOptions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/Product/Image.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/Product/Image.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/Product/Price.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/Product/Price.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/Product/RelatedProducts.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/Product/RelatedProducts.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/Product/TaxClass.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/Product/TaxClass.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/Product/TierPrice.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/Product/TierPrice.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/Product/WebsiteIds.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Fixture/Product/WebsiteIds.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Handler/CatalogAttributeSet/CatalogAttributeSetInterface.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Handler/CatalogAttributeSet/CatalogAttributeSetInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Handler/CatalogAttributeSet/Curl.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Handler/CatalogAttributeSet/Curl.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Handler/CatalogProductAttribute/CatalogProductAttributeInterface.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Handler/CatalogProductAttribute/CatalogProductAttributeInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Handler/CatalogProductAttribute/Curl.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Handler/CatalogProductAttribute/Curl.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Handler/CatalogProductSimple/CatalogProductSimpleInterface.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Handler/CatalogProductSimple/CatalogProductSimpleInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Handler/CatalogProductSimple/Curl.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Handler/CatalogProductSimple/Curl.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Handler/CatalogProductSimple/Ui.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Handler/CatalogProductSimple/Ui.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Handler/CatalogProductSimple/Webapi.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Handler/CatalogProductSimple/Webapi.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Handler/CatalogProductVirtual/CatalogProductVirtualInterface.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Handler/CatalogProductVirtual/CatalogProductVirtualInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Handler/CatalogProductVirtual/Curl.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Handler/CatalogProductVirtual/Curl.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Handler/CatalogProductVirtual/Webapi.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Handler/CatalogProductVirtual/Webapi.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Handler/Category/CategoryInterface.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Handler/Category/CategoryInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Handler/Category/Curl.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Handler/Category/Curl.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Handler/Category/Webapi.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Handler/Category/Webapi.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Page/Adminhtml/CatalogCategoryEdit.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Page/Adminhtml/CatalogCategoryEdit.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Page/Adminhtml/CatalogCategoryIndex.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Page/Adminhtml/CatalogCategoryIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Page/Adminhtml/CatalogProductActionAttributeEdit.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Page/Adminhtml/CatalogProductActionAttributeEdit.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Page/Adminhtml/CatalogProductAttributeIndex.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Page/Adminhtml/CatalogProductAttributeIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Page/Adminhtml/CatalogProductAttributeNew.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Page/Adminhtml/CatalogProductAttributeNew.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Page/Adminhtml/CatalogProductEdit.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Page/Adminhtml/CatalogProductEdit.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Page/Adminhtml/CatalogProductIndex.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Page/Adminhtml/CatalogProductIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Page/Adminhtml/CatalogProductNew.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Page/Adminhtml/CatalogProductNew.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Page/Adminhtml/CatalogProductSetAdd.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Page/Adminhtml/CatalogProductSetAdd.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Page/Adminhtml/CatalogProductSetEdit.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Page/Adminhtml/CatalogProductSetEdit.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Page/Adminhtml/CatalogProductSetIndex.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Page/Adminhtml/CatalogProductSetIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Page/Category/CatalogCategory.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Page/Category/CatalogCategory.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Page/Category/CatalogCategoryEdit.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/Page/Category/CatalogCategoryEdit.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Page/Category/CatalogCategoryView.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Page/Category/CatalogCategoryView.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Page/CmsIndex.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Page/CmsIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Page/Product/CatalogProductCompare.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Page/Product/CatalogProductCompare.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Page/Product/CatalogProductView.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Page/Product/CatalogProductView.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Repository/CatalogAttributeSet.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Repository/CatalogAttributeSet.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Repository/CatalogProductAttribute.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Repository/CatalogProductAttribute.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Repository/CatalogProductAttribute/Options.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Repository/CatalogProductAttribute/Options.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Repository/CatalogProductSimple.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Repository/CatalogProductSimple.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Repository/CatalogProductSimple/CheckoutData.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Repository/CatalogProductSimple/CheckoutData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Repository/CatalogProductSimple/Price.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Repository/CatalogProductSimple/Price.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Repository/CatalogProductSimple/WebsiteData.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Repository/CatalogProductSimple/WebsiteData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Repository/CatalogProductVirtual.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Repository/CatalogProductVirtual.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Repository/CatalogProductVirtual/CheckoutData.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Repository/CatalogProductVirtual/CheckoutData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Repository/Category.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Repository/Category.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Repository/ConfigData.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Repository/ConfigData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Repository/Product/CustomOptions.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Repository/Product/CustomOptions.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Repository/Product/Fpt.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Repository/Product/Fpt.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/Repository/Product/TierPrice.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/Repository/Product/TierPrice.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/AdvancedMoveCategoryEntityTest.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/AdvancedMoveCategoryEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/AdvancedMoveCategoryEntityTest.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/AdvancedMoveCategoryEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/CreateCategoryEntityTest.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/CreateCategoryEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/CreateCategoryEntityTest.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/CreateCategoryEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/DeleteCategoryEntityTest.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/DeleteCategoryEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/DeleteCategoryEntityTest.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/DeleteCategoryEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/MoveCategoryEntityTest.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/MoveCategoryEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/MoveCategoryEntityTest.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/MoveCategoryEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/SubcategoryNotIncludeInNavigationMenuTest.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/SubcategoryNotIncludeInNavigationMenuTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/SubcategoryNotIncludeInNavigationMenuTest.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/SubcategoryNotIncludeInNavigationMenuTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/UpdateCategoryEntityFlatDataTest.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/UpdateCategoryEntityFlatDataTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/UpdateCategoryEntityFlatDataTest.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/UpdateCategoryEntityFlatDataTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/UpdateCategoryEntityTest.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/UpdateCategoryEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/UpdateCategoryEntityTest.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/UpdateCategoryEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/UpdateInactiveCategoryEntityFlatDataTest.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/UpdateInactiveCategoryEntityFlatDataTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/UpdateInactiveCategoryEntityFlatDataTest.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/UpdateInactiveCategoryEntityFlatDataTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/UpdateTopCategoryEntityTest.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/UpdateTopCategoryEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/UpdateTopCategoryEntityTest.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Category/UpdateTopCategoryEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/NavigateMenuTest.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/NavigateMenuTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/AbstractCompareProductsTest.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/AbstractCompareProductsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/AbstractProductPromotedProductsTest.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/AbstractProductPromotedProductsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/AddCompareProductsTest.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/AddCompareProductsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/AddCompareProductsTest.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/AddCompareProductsTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/AddToCartCrossSellTest.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/AddToCartCrossSellTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/AddToCartCrossSellTest.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/AddToCartCrossSellTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/ClearAllCompareProductsTest.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/ClearAllCompareProductsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/ClearAllCompareProductsTest.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/ClearAllCompareProductsTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/CreateFlatCatalogProduct.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/CreateFlatCatalogProduct.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/CreateFlatCatalogProduct.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/CreateFlatCatalogProduct.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/CreateSimpleProductEntityByAttributeMaskSkuTest.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/CreateSimpleProductEntityByAttributeMaskSkuTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/CreateSimpleProductEntityByAttributeMaskSkuTest.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/CreateSimpleProductEntityByAttributeMaskSkuTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/CreateSimpleProductEntityPartOneTest.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/CreateSimpleProductEntityPartOneTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/CreateSimpleProductEntityPartOneTest.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/CreateSimpleProductEntityPartOneTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/CreateSimpleProductEntityPartTwoTest.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/CreateSimpleProductEntityPartTwoTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/CreateSimpleProductEntityPartTwoTest.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/CreateSimpleProductEntityPartTwoTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/CreateSimpleProductEntityTest.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/CreateSimpleProductEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/CreateSimpleProductEntityTest.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/CreateSimpleProductEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/CreateVirtualProductEntityTest.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/CreateVirtualProductEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/CreateVirtualProductEntityTest.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/CreateVirtualProductEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/DeleteCompareProductsTest.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/DeleteCompareProductsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/DeleteCompareProductsTest.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/DeleteCompareProductsTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/DeleteProductEntityTest.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/DeleteProductEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/DeleteProductEntityTest.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/DeleteProductEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/DuplicateProductEntityTest.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/DuplicateProductEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/DuplicateProductEntityTest.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/DuplicateProductEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/GridFilteringDeletedEntityTest.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/GridFilteringDeletedEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/ManageProductsStockTest.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/ManageProductsStockTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/ManageProductsStockTest.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/ManageProductsStockTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/MassProductUpdateStatusTest.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/MassProductUpdateStatusTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/MassProductUpdateStatusTest.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/MassProductUpdateStatusTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/MassProductUpdateTest.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/MassProductUpdateTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/MassProductUpdateTest.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/MassProductUpdateTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/NavigateRelatedProductsTest.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/NavigateRelatedProductsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/NavigateRelatedProductsTest.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/NavigateRelatedProductsTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/NavigateUpSellProductsTest.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/NavigateUpSellProductsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/NavigateUpSellProductsTest.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/NavigateUpSellProductsTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/ProductTypeSwitchingOnCreationTest.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/ProductTypeSwitchingOnCreationTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/ProductTypeSwitchingOnCreationTest.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/ProductTypeSwitchingOnCreationTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/ProductTypeSwitchingOnUpdateTest.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/ProductTypeSwitchingOnUpdateTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/ProductTypeSwitchingOnUpdateTest.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/ProductTypeSwitchingOnUpdateTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/ReSavingProductAfterInitialSaveTest.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/ReSavingProductAfterInitialSaveTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/ReSavingProductAfterInitialSaveTest.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/ReSavingProductAfterInitialSaveTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/UpdateSimpleProductEntityTest.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/UpdateSimpleProductEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/UpdateSimpleProductEntityTest.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/UpdateSimpleProductEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/UpdateVirtualProductEntityTest.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/UpdateVirtualProductEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/UpdateVirtualProductEntityTest.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/UpdateVirtualProductEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/ValidateOrderOfProductTypeTest.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/ValidateOrderOfProductTypeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/ValidateOrderOfProductTypeTest.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/Product/ValidateOrderOfProductTypeTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/CreateAttributeSetEntityTest.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/CreateAttributeSetEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/CreateAttributeSetEntityTest.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/CreateAttributeSetEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/CreateProductAttributeEntityFromProductPageTest.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/CreateProductAttributeEntityFromProductPageTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/CreateProductAttributeEntityFromProductPageTest.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/CreateProductAttributeEntityFromProductPageTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/CreateProductAttributeEntityTest.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/CreateProductAttributeEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/CreateProductAttributeEntityTest.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/CreateProductAttributeEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/DeleteAssignedToTemplateProductAttributeTest.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/DeleteAssignedToTemplateProductAttributeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/DeleteAssignedToTemplateProductAttributeTest.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/DeleteAssignedToTemplateProductAttributeTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/DeleteAttributeSetTest.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/DeleteAttributeSetTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/DeleteAttributeSetTest.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/DeleteAttributeSetTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/DeleteProductAttributeEntityTest.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/DeleteProductAttributeEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/DeleteProductAttributeEntityTest.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/DeleteProductAttributeEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/DeleteSystemProductAttributeTest.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/DeleteSystemProductAttributeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/DeleteSystemProductAttributeTest.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/DeleteSystemProductAttributeTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/DeleteUsedInConfigurableProductAttributeTest.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/DeleteUsedInConfigurableProductAttributeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/DeleteUsedInConfigurableProductAttributeTest.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/DeleteUsedInConfigurableProductAttributeTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/UpdateAttributeSetTest.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/UpdateAttributeSetTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/UpdateAttributeSetTest.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/UpdateAttributeSetTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/UpdateProductAttributeEntityTest.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/UpdateProductAttributeEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/UpdateProductAttributeEntityTest.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestCase/ProductAttribute/UpdateProductAttributeEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/AddAttributeToAttributeSetStep.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/AddAttributeToAttributeSetStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/AddNewAttributeFromProductPageStep.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/AddNewAttributeFromProductPageStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/AddNewAttributeStep.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/AddNewAttributeStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/ConfigureProductOnProductPageStep.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/ConfigureProductOnProductPageStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/CreateAttributeSetStep.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/CreateAttributeSetStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/CreateProductStep.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/CreateProductStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/CreateProductWithAttributeSetStep.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/CreateProductWithAttributeSetStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/CreateProductsStep.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/CreateProductsStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/DeleteAttributeStep.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/DeleteAttributeStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/FillAttributeFormOnProductPageStep.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/FillAttributeFormOnProductPageStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/FillAttributeFormStep.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/FillAttributeFormStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/MergePreconditionProductsStep.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/MergePreconditionProductsStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/OpenProductAttributesPageStep.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/OpenProductAttributesPageStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/OpenProductOnBackendStep.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/OpenProductOnBackendStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/OpenProductOnFrontendStep.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/OpenProductOnFrontendStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/OpenProductsOnFrontendStep.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/OpenProductsOnFrontendStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/SaveAttributeOnProductPageStep.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/SaveAttributeOnProductPageStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/SaveAttributeSetStep.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/SaveAttributeSetStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/SaveAttributeStep.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/SaveAttributeStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/SaveProductStep.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/SaveProductStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/SetDefaultAttributeValueStep.php b/dev/tests/functional/tests/app/Magento/Catalog/Test/TestStep/SetDefaultAttributeValueStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/_files/test1.png b/dev/tests/functional/tests/app/Magento/Catalog/Test/_files/test1.png
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/_files/test2.png b/dev/tests/functional/tests/app/Magento/Catalog/Test/_files/test2.png
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/_files/test3.png b/dev/tests/functional/tests/app/Magento/Catalog/Test/_files/test3.png
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/etc/curl/di.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/etc/curl/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/etc/di.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/etc/testcase.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/etc/testcase.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/etc/ui/di.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/etc/ui/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Catalog/Test/etc/webapi/di.xml b/dev/tests/functional/tests/app/Magento/Catalog/Test/etc/webapi/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogImportExport/Test/Constraint/AssertExportProduct.php b/dev/tests/functional/tests/app/Magento/CatalogImportExport/Test/Constraint/AssertExportProduct.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogImportExport/Test/Constraint/AssertExportProductDate.php b/dev/tests/functional/tests/app/Magento/CatalogImportExport/Test/Constraint/AssertExportProductDate.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogImportExport/Test/Constraint/AssertImportedProducts.php b/dev/tests/functional/tests/app/Magento/CatalogImportExport/Test/Constraint/AssertImportedProducts.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogImportExport/Test/Constraint/AssertProductsInGrid.php b/dev/tests/functional/tests/app/Magento/CatalogImportExport/Test/Constraint/AssertProductsInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogImportExport/Test/Constraint/AssertProductsOnStorefront.php b/dev/tests/functional/tests/app/Magento/CatalogImportExport/Test/Constraint/AssertProductsOnStorefront.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogImportExport/Test/TestCase/ExportProductsTest.php b/dev/tests/functional/tests/app/Magento/CatalogImportExport/Test/TestCase/ExportProductsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogImportExport/Test/TestCase/ExportProductsTest.xml b/dev/tests/functional/tests/app/Magento/CatalogImportExport/Test/TestCase/ExportProductsTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogImportExport/Test/TestCase/ImportProductsTest.php b/dev/tests/functional/tests/app/Magento/CatalogImportExport/Test/TestCase/ImportProductsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogImportExport/Test/TestCase/ImportProductsTest.xml b/dev/tests/functional/tests/app/Magento/CatalogImportExport/Test/TestCase/ImportProductsTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogImportExport/Test/_files/template/products_variation_1.php b/dev/tests/functional/tests/app/Magento/CatalogImportExport/Test/_files/template/products_variation_1.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogImportExport/Test/_files/template/products_variation_2.php b/dev/tests/functional/tests/app/Magento/CatalogImportExport/Test/_files/template/products_variation_2.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogImportExport/Test/_files/template/products_variation_3.php b/dev/tests/functional/tests/app/Magento/CatalogImportExport/Test/_files/template/products_variation_3.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogImportExport/Test/etc/testcase.xml b/dev/tests/functional/tests/app/Magento/CatalogImportExport/Test/etc/testcase.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogInventory/Test/Repository/ConfigData.xml b/dev/tests/functional/tests/app/Magento/CatalogInventory/Test/Repository/ConfigData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Block/Adminhtml/FormPageActions.php b/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Block/Adminhtml/FormPageActions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Block/Adminhtml/Promo/Catalog.php b/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Block/Adminhtml/Promo/Catalog.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Block/Adminhtml/Promo/Catalog/Edit/PromoForm.php b/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Block/Adminhtml/Promo/Catalog/Edit/PromoForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Block/Adminhtml/Promo/Catalog/Edit/PromoForm.xml b/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Block/Adminhtml/Promo/Catalog/Edit/PromoForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Block/Adminhtml/Promo/Catalog/Edit/Section/Conditions.php b/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Block/Adminhtml/Promo/Catalog/Edit/Section/Conditions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Block/Adminhtml/Promo/Catalog/Edit/Section/RuleInformation.php b/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Block/Adminhtml/Promo/Catalog/Edit/Section/RuleInformation.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Block/Adminhtml/Promo/GridPageActions.php b/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Block/Adminhtml/Promo/GridPageActions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Block/Conditions.php b/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Block/Conditions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Constraint/AssertCatalogPriceRuleAppliedCatalogPage.php b/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Constraint/AssertCatalogPriceRuleAppliedCatalogPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Constraint/AssertCatalogPriceRuleAppliedProductPage.php b/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Constraint/AssertCatalogPriceRuleAppliedProductPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Constraint/AssertCatalogPriceRuleAppliedShoppingCart.php b/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Constraint/AssertCatalogPriceRuleAppliedShoppingCart.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Constraint/AssertCatalogPriceRuleForm.php b/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Constraint/AssertCatalogPriceRuleForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Constraint/AssertCatalogPriceRuleInGrid.php b/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Constraint/AssertCatalogPriceRuleInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Constraint/AssertCatalogPriceRuleNotAppliedCatalogPage.php b/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Constraint/AssertCatalogPriceRuleNotAppliedCatalogPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Constraint/AssertCatalogPriceRuleNotAppliedProductPage.php b/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Constraint/AssertCatalogPriceRuleNotAppliedProductPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Constraint/AssertCatalogPriceRuleNotAppliedShoppingCart.php b/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Constraint/AssertCatalogPriceRuleNotAppliedShoppingCart.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Constraint/AssertCatalogPriceRuleNotInGrid.php b/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Constraint/AssertCatalogPriceRuleNotInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Constraint/AssertCatalogPriceRuleNoticeMessage.php b/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Constraint/AssertCatalogPriceRuleNoticeMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Constraint/AssertCatalogPriceRuleOnOnepageCheckout.php b/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Constraint/AssertCatalogPriceRuleOnOnepageCheckout.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Constraint/AssertCatalogPriceRuleSuccessDeleteMessage.php b/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Constraint/AssertCatalogPriceRuleSuccessDeleteMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Constraint/AssertCatalogPriceRuleSuccessSaveMessage.php b/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Constraint/AssertCatalogPriceRuleSuccessSaveMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Constraint/AssertProductAttributeIsUsedPromoRules.php b/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Constraint/AssertProductAttributeIsUsedPromoRules.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Fixture/CatalogRule.xml b/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Fixture/CatalogRule.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Handler/CatalogRule/CatalogRuleInterface.php b/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Handler/CatalogRule/CatalogRuleInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Handler/CatalogRule/Curl.php b/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Handler/CatalogRule/Curl.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Page/Adminhtml/CatalogRuleEdit.xml b/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Page/Adminhtml/CatalogRuleEdit.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Page/Adminhtml/CatalogRuleIndex.xml b/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Page/Adminhtml/CatalogRuleIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Page/Adminhtml/CatalogRuleNew.xml b/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Page/Adminhtml/CatalogRuleNew.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Repository/CatalogRule.xml b/dev/tests/functional/tests/app/Magento/CatalogRule/Test/Repository/CatalogRule.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogRule/Test/TestCase/AbstractCatalogRuleEntityTest.php b/dev/tests/functional/tests/app/Magento/CatalogRule/Test/TestCase/AbstractCatalogRuleEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogRule/Test/TestCase/ApplyCatalogPriceRulesTest.php b/dev/tests/functional/tests/app/Magento/CatalogRule/Test/TestCase/ApplyCatalogPriceRulesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogRule/Test/TestCase/ApplyCatalogPriceRulesTest.xml b/dev/tests/functional/tests/app/Magento/CatalogRule/Test/TestCase/ApplyCatalogPriceRulesTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogRule/Test/TestCase/CreateCatalogPriceRuleEntityTest.php b/dev/tests/functional/tests/app/Magento/CatalogRule/Test/TestCase/CreateCatalogPriceRuleEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogRule/Test/TestCase/CreateCatalogPriceRuleEntityTest.xml b/dev/tests/functional/tests/app/Magento/CatalogRule/Test/TestCase/CreateCatalogPriceRuleEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogRule/Test/TestCase/DeleteCatalogPriceRuleEntityTest.php b/dev/tests/functional/tests/app/Magento/CatalogRule/Test/TestCase/DeleteCatalogPriceRuleEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogRule/Test/TestCase/DeleteCatalogPriceRuleEntityTest.xml b/dev/tests/functional/tests/app/Magento/CatalogRule/Test/TestCase/DeleteCatalogPriceRuleEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogRule/Test/TestCase/NavigateMenuTest.xml b/dev/tests/functional/tests/app/Magento/CatalogRule/Test/TestCase/NavigateMenuTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogRule/Test/TestCase/UpdateCatalogPriceRuleEntityTest.php b/dev/tests/functional/tests/app/Magento/CatalogRule/Test/TestCase/UpdateCatalogPriceRuleEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogRule/Test/TestCase/UpdateCatalogPriceRuleEntityTest.xml b/dev/tests/functional/tests/app/Magento/CatalogRule/Test/TestCase/UpdateCatalogPriceRuleEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogRule/Test/TestStep/CreateCatalogRuleStep.php b/dev/tests/functional/tests/app/Magento/CatalogRule/Test/TestStep/CreateCatalogRuleStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogRule/Test/TestStep/DeleteAllCatalogRulesStep.php b/dev/tests/functional/tests/app/Magento/CatalogRule/Test/TestStep/DeleteAllCatalogRulesStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogRule/Test/etc/curl/di.xml b/dev/tests/functional/tests/app/Magento/CatalogRule/Test/etc/curl/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogRule/Test/etc/di.xml b/dev/tests/functional/tests/app/Magento/CatalogRule/Test/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogRule/Test/etc/ui/di.xml b/dev/tests/functional/tests/app/Magento/CatalogRule/Test/etc/ui/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogRuleConfigurable/Test/Constraint/AssertCatalogPriceRuleAppliedCatalogPage.php b/dev/tests/functional/tests/app/Magento/CatalogRuleConfigurable/Test/Constraint/AssertCatalogPriceRuleAppliedCatalogPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogRuleConfigurable/Test/TestCase/ApplyConfigurableProductCatalogPriceRulesTest.php b/dev/tests/functional/tests/app/Magento/CatalogRuleConfigurable/Test/TestCase/ApplyConfigurableProductCatalogPriceRulesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogRuleConfigurable/Test/TestCase/ApplyConfigurableProductCatalogPriceRulesTest.xml b/dev/tests/functional/tests/app/Magento/CatalogRuleConfigurable/Test/TestCase/ApplyConfigurableProductCatalogPriceRulesTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogRuleConfigurable/Test/TestCase/DeleteCatalogPriceRuleEntityTest.xml b/dev/tests/functional/tests/app/Magento/CatalogRuleConfigurable/Test/TestCase/DeleteCatalogPriceRuleEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Block/Adminhtml/Edit/SearchTermForm.php b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Block/Adminhtml/Edit/SearchTermForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Block/Adminhtml/Edit/SearchTermForm.xml b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Block/Adminhtml/Edit/SearchTermForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Block/Adminhtml/Grid.php b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Block/Adminhtml/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Block/Advanced/CustomAttribute/Date.php b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Block/Advanced/CustomAttribute/Date.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Block/Advanced/CustomAttribute/Select.php b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Block/Advanced/CustomAttribute/Select.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Block/Advanced/CustomAttribute/Text.php b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Block/Advanced/CustomAttribute/Text.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Block/Advanced/Form.php b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Block/Advanced/Form.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Block/Advanced/Form.xml b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Block/Advanced/Form.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Block/Advanced/Result.php b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Block/Advanced/Result.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Block/Advanced/SearchResultsTitle.php b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Block/Advanced/SearchResultsTitle.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertAdvancedSearchAttributeIsAbsent.php b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertAdvancedSearchAttributeIsAbsent.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertAdvancedSearchEmptyTerm.php b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertAdvancedSearchEmptyTerm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertAdvancedSearchNoResult.php b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertAdvancedSearchNoResult.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertAdvancedSearchProductByAttribute.php b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertAdvancedSearchProductByAttribute.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertAdvancedSearchProductResult.php b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertAdvancedSearchProductResult.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertAdvancedSearchProductsResult.php b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertAdvancedSearchProductsResult.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertAttributeSearchableByLabel.php b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertAttributeSearchableByLabel.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertCatalogSearchNoResult.php b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertCatalogSearchNoResult.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertCatalogSearchNoResultMessage.php b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertCatalogSearchNoResultMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertCatalogSearchQueryLength.php b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertCatalogSearchQueryLength.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertCatalogSearchResult.php b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertCatalogSearchResult.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertCatalogSearchResultOrder.php b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertCatalogSearchResultOrder.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertConfigurableWithDisabledOtpionCatalogSearchNoResult.php b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertConfigurableWithDisabledOtpionCatalogSearchNoResult.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertProductAddedToCartFromSearchResults.php b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertProductAddedToCartFromSearchResults.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertProductCanBeOpenedFromSearchResult.php b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertProductCanBeOpenedFromSearchResult.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertSearchAttributeTest.php b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertSearchAttributeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertSearchTermForm.php b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertSearchTermForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertSearchTermInGrid.php b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertSearchTermInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertSearchTermMassActionNotOnFrontend.php b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertSearchTermMassActionNotOnFrontend.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertSearchTermMassActionsNotInGrid.php b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertSearchTermMassActionsNotInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertSearchTermNotInGrid.php b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertSearchTermNotInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertSearchTermNotOnFrontend.php b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertSearchTermNotOnFrontend.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertSearchTermOnFrontend.php b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertSearchTermOnFrontend.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertSearchTermSuccessDeleteMessage.php b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertSearchTermSuccessDeleteMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertSearchTermSuccessMassDeleteMessage.php b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertSearchTermSuccessMassDeleteMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertSearchTermSuccessSaveMessage.php b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertSearchTermSuccessSaveMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertSuggestSearchingResult.php b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Constraint/AssertSuggestSearchingResult.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Fixture/CatalogSearchQuery.xml b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Fixture/CatalogSearchQuery.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Fixture/CatalogSearchQuery/QueryText.php b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Fixture/CatalogSearchQuery/QueryText.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Handler/CatalogSearchQuery/CatalogSearchQueryInterface.php b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Handler/CatalogSearchQuery/CatalogSearchQueryInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Handler/CatalogSearchQuery/Curl.php b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Handler/CatalogSearchQuery/Curl.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Page/Adminhtml/CatalogSearchEdit.xml b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Page/Adminhtml/CatalogSearchEdit.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Page/Adminhtml/CatalogSearchIndex.xml b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Page/Adminhtml/CatalogSearchIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Page/AdvancedResult.xml b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Page/AdvancedResult.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Page/AdvancedSearch.xml b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Page/AdvancedSearch.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Page/CatalogsearchResult.xml b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Page/CatalogsearchResult.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Repository/CatalogSearchQuery.xml b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/Repository/CatalogSearchQuery.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/TestCase/AdvancedSearchEntityTest.php b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/TestCase/AdvancedSearchEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/TestCase/AdvancedSearchEntityTest.xml b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/TestCase/AdvancedSearchEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/TestCase/CreateSearchTermEntityTest.php b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/TestCase/CreateSearchTermEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/TestCase/CreateSearchTermEntityTest.xml b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/TestCase/CreateSearchTermEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/TestCase/DeleteSearchTermEntityTest.php b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/TestCase/DeleteSearchTermEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/TestCase/DeleteSearchTermEntityTest.xml b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/TestCase/DeleteSearchTermEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/TestCase/MassDeleteSearchTermEntityTest.php b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/TestCase/MassDeleteSearchTermEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/TestCase/MassDeleteSearchTermEntityTest.xml b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/TestCase/MassDeleteSearchTermEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/TestCase/NavigateMenuTest.xml b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/TestCase/NavigateMenuTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/TestCase/SearchEntityResultsTest.php b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/TestCase/SearchEntityResultsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/TestCase/SearchEntityResultsTest.xml b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/TestCase/SearchEntityResultsTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/TestCase/SuggestSearchingResultEntityTest.php b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/TestCase/SuggestSearchingResultEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/TestCase/SuggestSearchingResultEntityTest.xml b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/TestCase/SuggestSearchingResultEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/TestCase/UpdateSearchTermEntityTest.php b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/TestCase/UpdateSearchTermEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/TestCase/UpdateSearchTermEntityTest.xml b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/TestCase/UpdateSearchTermEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/etc/curl/di.xml b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/etc/curl/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/etc/di.xml b/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogUrlRewrite/Test/Block/Adminhtml/Category/Edit/CategoryForm.xml b/dev/tests/functional/tests/app/Magento/CatalogUrlRewrite/Test/Block/Adminhtml/Category/Edit/CategoryForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogUrlRewrite/Test/Constraint/AssertCategoryUrlDuplicateErrorMessage.php b/dev/tests/functional/tests/app/Magento/CatalogUrlRewrite/Test/Constraint/AssertCategoryUrlDuplicateErrorMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogUrlRewrite/Test/Constraint/AssertProductUrlDuplicateErrorMessage.php b/dev/tests/functional/tests/app/Magento/CatalogUrlRewrite/Test/Constraint/AssertProductUrlDuplicateErrorMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogUrlRewrite/Test/Fixture/Category.xml b/dev/tests/functional/tests/app/Magento/CatalogUrlRewrite/Test/Fixture/Category.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogUrlRewrite/Test/TestCase/CreateDuplicateUrlCategoryEntityTest.php b/dev/tests/functional/tests/app/Magento/CatalogUrlRewrite/Test/TestCase/CreateDuplicateUrlCategoryEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogUrlRewrite/Test/TestCase/CreateDuplicateUrlCategoryEntityTest.xml b/dev/tests/functional/tests/app/Magento/CatalogUrlRewrite/Test/TestCase/CreateDuplicateUrlCategoryEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogUrlRewrite/Test/TestCase/CreateDuplicateUrlProductEntity.php b/dev/tests/functional/tests/app/Magento/CatalogUrlRewrite/Test/TestCase/CreateDuplicateUrlProductEntity.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogUrlRewrite/Test/TestCase/CreateDuplicateUrlProductEntity.xml b/dev/tests/functional/tests/app/Magento/CatalogUrlRewrite/Test/TestCase/CreateDuplicateUrlProductEntity.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CatalogUrlRewrite/Test/etc/di.xml b/dev/tests/functional/tests/app/Magento/CatalogUrlRewrite/Test/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Cart.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Cart.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Cart/AbstractCartItem.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Cart/AbstractCartItem.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Cart/CartEmpty.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Cart/CartEmpty.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Cart/CartItem.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Cart/CartItem.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Cart/DiscountCodes.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Cart/DiscountCodes.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Cart/Pager.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Cart/Pager.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Cart/Shipping.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Cart/Shipping.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Cart/Shipping.xml b/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Cart/Shipping.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Cart/Sidebar.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Cart/Sidebar.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Cart/Sidebar/Item.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Cart/Sidebar/Item.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Cart/Totals.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Cart/Totals.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/AbstractReview.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/AbstractReview.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/CustomAddress.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/CustomAddress.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/Link.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/Link.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/Login.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/Login.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/Login.xml b/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/Login.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/Payment.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/Payment.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/Payment/DiscountCodes.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/Payment/DiscountCodes.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/Payment/Method.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/Payment/Method.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/Payment/Method/Billing.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/Payment/Method/Billing.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/Payment/Method/Billing.xml b/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/Payment/Method/Billing.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/Registration.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/Registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/Review.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/Review.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/Shipping.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/Shipping.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/Shipping.xml b/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/Shipping.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/Shipping/AddressModal.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/Shipping/AddressModal.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/Shipping/AddressModal.xml b/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/Shipping/AddressModal.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/Shipping/Method.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/Shipping/Method.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/ShippingPopup.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/ShippingPopup.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/ShippingPopup.xml b/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/ShippingPopup.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/Success.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Block/Onepage/Success.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertAddToCartButtonAbsentOnCategoryPage.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertAddToCartButtonAbsentOnCategoryPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertAddToCartButtonAbsentOnProductPage.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertAddToCartButtonAbsentOnProductPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertAddToCartButtonPresentOnCategoryPage.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertAddToCartButtonPresentOnCategoryPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertAddToCartButtonPresentOnProductPage.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertAddToCartButtonPresentOnProductPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertAddedProductToCartSuccessMessage.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertAddedProductToCartSuccessMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertBillingAddressAbsentInPayment.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertBillingAddressAbsentInPayment.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertBillingAddressSameAsShippingCheckbox.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertBillingAddressSameAsShippingCheckbox.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertCancelSuccessMessageInShoppingCart.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertCancelSuccessMessageInShoppingCart.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertCartBundleOptionTitle.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertCartBundleOptionTitle.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertCartIsEmpty.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertCartIsEmpty.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertCartItemsOptions.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertCartItemsOptions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertCartPerCustomer.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertCartPerCustomer.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertCheckoutErrorMessage.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertCheckoutErrorMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertCustomerIsRedirectedToCheckoutFromCart.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertCustomerIsRedirectedToCheckoutFromCart.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertDiscountInShoppingCart.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertDiscountInShoppingCart.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertEmailErrorValidationMessage.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertEmailErrorValidationMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertEmailToolTips.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertEmailToolTips.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertEstimateShippingAndTax.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertEstimateShippingAndTax.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertGrandTotalInShoppingCart.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertGrandTotalInShoppingCart.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertGrandTotalOrderReview.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertGrandTotalOrderReview.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertItemsCounterInMiniShoppingCart.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertItemsCounterInMiniShoppingCart.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertLinkGoToCartNotPresentInSummaryBlock.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertLinkGoToCartNotPresentInSummaryBlock.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertLinkGoToCartPresentInSummaryBlock.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertLinkGoToCartPresentInSummaryBlock.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertMinicartEmpty.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertMinicartEmpty.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertMinicartItemsQty.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertMinicartItemsQty.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertMyCartLinkRedirect.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertMyCartLinkRedirect.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertOrderSuccessPlacedMessage.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertOrderSuccessPlacedMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertPagersNotPresentInShoppingCart.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertPagersNotPresentInShoppingCart.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertPagersPresentInShoppingCart.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertPagersPresentInShoppingCart.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertPagersSummaryText.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertPagersSummaryText.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertPaymentMethodIsAbsentOnPaymentPage.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertPaymentMethodIsAbsentOnPaymentPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertPaymentMethodPersistence.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertPaymentMethodPersistence.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertPriceInShoppingCart.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertPriceInShoppingCart.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertProceedToCheckoutButton.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertProceedToCheckoutButton.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertProductAbsentInMiniShoppingCart.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertProductAbsentInMiniShoppingCart.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertProductDataInMiniShoppingCart.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertProductDataInMiniShoppingCart.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertProductIsNotEditable.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertProductIsNotEditable.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertProductOptionsAbsentInShoppingCart.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertProductOptionsAbsentInShoppingCart.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertProductPresentInMiniShoppingCart.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertProductPresentInMiniShoppingCart.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertProductPresentInShoppingCart.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertProductPresentInShoppingCart.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertProductQtyInShoppingCart.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertProductQtyInShoppingCart.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertProductsAbsentInShoppingCart.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertProductsAbsentInShoppingCart.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertShippingAddressJsValidationMessagesIsAbsent.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertShippingAddressJsValidationMessagesIsAbsent.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertShippingInShoppingCart.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertShippingInShoppingCart.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertShippingMethodAvailableInCart.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertShippingMethodAvailableInCart.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertShippingTotalOrderReview.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertShippingTotalOrderReview.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertSubTotalOrderReview.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertSubTotalOrderReview.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertSubtotalInMiniShoppingCart.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertSubtotalInMiniShoppingCart.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertSubtotalInShoppingCart.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertSubtotalInShoppingCart.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertTaxInShoppingCart.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertTaxInShoppingCart.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertTaxTotalOrderReview.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertTaxTotalOrderReview.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertTopDestinationsInSelect.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertTopDestinationsInSelect.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertVisibleItemsQtyInCheckoutSummaryBlock.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertVisibleItemsQtyInCheckoutSummaryBlock.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertVisibleItemsQtyInMiniShoppingCart.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertVisibleItemsQtyInMiniShoppingCart.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertVisibleItemsQtyMessageInMiniShoppingCart.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertVisibleItemsQtyMessageInMiniShoppingCart.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertVisibleItemsQtyMessageOnCheckoutSummaryBlock.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Constraint/AssertVisibleItemsQtyMessageOnCheckoutSummaryBlock.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Fixture/Cart.xml b/dev/tests/functional/tests/app/Magento/Checkout/Test/Fixture/Cart.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Fixture/Cart/Items.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/Fixture/Cart/Items.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Page/CheckoutCart.xml b/dev/tests/functional/tests/app/Magento/Checkout/Test/Page/CheckoutCart.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Page/CheckoutOnepage.xml b/dev/tests/functional/tests/app/Magento/Checkout/Test/Page/CheckoutOnepage.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Page/CheckoutOnepageSuccess.xml b/dev/tests/functional/tests/app/Magento/Checkout/Test/Page/CheckoutOnepageSuccess.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Page/CmsIndex.xml b/dev/tests/functional/tests/app/Magento/Checkout/Test/Page/CmsIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/Repository/ConfigData.xml b/dev/tests/functional/tests/app/Magento/Checkout/Test/Repository/ConfigData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/AddProductsToShoppingCartEntityTest.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/AddProductsToShoppingCartEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/AddProductsToShoppingCartEntityTest.xml b/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/AddProductsToShoppingCartEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/DeleteProductFromMiniShoppingCartTest.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/DeleteProductFromMiniShoppingCartTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/DeleteProductFromMiniShoppingCartTest.xml b/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/DeleteProductFromMiniShoppingCartTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/DeleteProductsFromShoppingCartTest.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/DeleteProductsFromShoppingCartTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/DeleteProductsFromShoppingCartTest.xml b/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/DeleteProductsFromShoppingCartTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/EditShippingAddressOnePageCheckoutTest.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/EditShippingAddressOnePageCheckoutTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/EditShippingAddressOnePageCheckoutTest.xml b/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/EditShippingAddressOnePageCheckoutTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/OnePageCheckoutDeclinedTest.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/OnePageCheckoutDeclinedTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/OnePageCheckoutFromMiniShoppingCartTest.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/OnePageCheckoutFromMiniShoppingCartTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/OnePageCheckoutJsValidationTest.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/OnePageCheckoutJsValidationTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/OnePageCheckoutJsValidationTest.xml b/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/OnePageCheckoutJsValidationTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/OnePageCheckoutOfflinePaymentMethodsTest.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/OnePageCheckoutOfflinePaymentMethodsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/OnePageCheckoutOfflinePaymentMethodsTest.xml b/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/OnePageCheckoutOfflinePaymentMethodsTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/OnePageCheckoutTest.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/OnePageCheckoutTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/OnePageCheckoutTest.xml b/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/OnePageCheckoutTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/ShoppingCartPagerTest.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/ShoppingCartPagerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/ShoppingCartPagerTest.xml b/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/ShoppingCartPagerTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/ShoppingCartPerCustomerTest.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/ShoppingCartPerCustomerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/ShoppingCartPerCustomerTest.xml b/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/ShoppingCartPerCustomerTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/UpdateProductFromMiniShoppingCartEntityTest.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/UpdateProductFromMiniShoppingCartEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/UpdateProductFromMiniShoppingCartEntityTest.xml b/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/UpdateProductFromMiniShoppingCartEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/UpdateShoppingCartTest.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/UpdateShoppingCartTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/UpdateShoppingCartTest.xml b/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/UpdateShoppingCartTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/ValidateEmailOnCheckoutTest.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/ValidateEmailOnCheckoutTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/ValidateEmailOnCheckoutTest.xml b/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/ValidateEmailOnCheckoutTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/VerifyPaymentMethodOnCheckoutTest.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/TestCase/VerifyPaymentMethodOnCheckoutTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/AddNewShippingAddressStep.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/AddNewShippingAddressStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/AddProductsToTheCartStep.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/AddProductsToTheCartStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/ClickPlaceOrderButtonStep.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/ClickPlaceOrderButtonStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/ClickProceedToCheckoutStep.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/ClickProceedToCheckoutStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/CreateCustomerAccountStep.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/CreateCustomerAccountStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/EditShippingAddressStep.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/EditShippingAddressStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/EstimateShippingAndTaxStep.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/EstimateShippingAndTaxStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/FillBillingInformationStep.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/FillBillingInformationStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/FillShippingAddressStep.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/FillShippingAddressStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/FillShippingMethodOnEstimateStep.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/FillShippingMethodOnEstimateStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/FillShippingMethodStep.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/FillShippingMethodStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/GetPlacedOrderIdStep.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/GetPlacedOrderIdStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/PlaceOrderStep.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/PlaceOrderStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/ProceedToCheckoutFromMiniShoppingCartStep.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/ProceedToCheckoutFromMiniShoppingCartStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/ProceedToCheckoutStep.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/ProceedToCheckoutStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/RefreshPageStep.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/RefreshPageStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/RemoveProductsFromTheCartStep.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/RemoveProductsFromTheCartStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/SelectCheckoutMethodStep.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/SelectCheckoutMethodStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/SelectPaymentMethodStep.php b/dev/tests/functional/tests/app/Magento/Checkout/Test/TestStep/SelectPaymentMethodStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/etc/di.xml b/dev/tests/functional/tests/app/Magento/Checkout/Test/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Checkout/Test/etc/testcase.xml b/dev/tests/functional/tests/app/Magento/Checkout/Test/etc/testcase.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Block/Adminhtml/AgreementGrid.php b/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Block/Adminhtml/AgreementGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Block/Adminhtml/Block/Agreement/Edit/AgreementsForm.php b/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Block/Adminhtml/Block/Agreement/Edit/AgreementsForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Block/Adminhtml/Block/Agreement/Edit/AgreementsForm.xml b/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Block/Adminhtml/Block/Agreement/Edit/AgreementsForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Block/Multishipping/MultishippingAgreementReview.php b/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Block/Multishipping/MultishippingAgreementReview.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Block/Onepage/AgreementReview.php b/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Block/Onepage/AgreementReview.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Constraint/AssertTermAbsentInGrid.php b/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Constraint/AssertTermAbsentInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Constraint/AssertTermAbsentOnCheckout.php b/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Constraint/AssertTermAbsentOnCheckout.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Constraint/AssertTermInGrid.php b/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Constraint/AssertTermInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Constraint/AssertTermOnCheckout.php b/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Constraint/AssertTermOnCheckout.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Constraint/AssertTermRequireMessageOnMultishippingCheckout.php b/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Constraint/AssertTermRequireMessageOnMultishippingCheckout.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Constraint/AssertTermSuccessDeleteMessage.php b/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Constraint/AssertTermSuccessDeleteMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Constraint/AssertTermSuccessSaveMessage.php b/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Constraint/AssertTermSuccessSaveMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Fixture/CheckoutAgreement.xml b/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Fixture/CheckoutAgreement.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Fixture/CheckoutAgreement/Stores.php b/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Fixture/CheckoutAgreement/Stores.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Handler/CheckoutAgreement/CheckoutAgreementInterface.php b/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Handler/CheckoutAgreement/CheckoutAgreementInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Handler/CheckoutAgreement/Curl.php b/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Handler/CheckoutAgreement/Curl.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Page/Adminhtml/CheckoutAgreementIndex.xml b/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Page/Adminhtml/CheckoutAgreementIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Page/Adminhtml/CheckoutAgreementNew.xml b/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Page/Adminhtml/CheckoutAgreementNew.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Page/CheckoutOnepage.xml b/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Page/CheckoutOnepage.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Page/MultishippingCheckoutOverview.xml b/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Page/MultishippingCheckoutOverview.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Repository/CheckoutAgreement.xml b/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Repository/CheckoutAgreement.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Repository/ConfigData.xml b/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/Repository/ConfigData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/TestCase/CreateTermEntityTest.php b/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/TestCase/CreateTermEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/TestCase/CreateTermEntityTest.xml b/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/TestCase/CreateTermEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/TestCase/DeleteTermEntityTest.php b/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/TestCase/DeleteTermEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/TestCase/DeleteTermEntityTest.xml b/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/TestCase/DeleteTermEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/TestCase/NavigateMenuTest.xml b/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/TestCase/NavigateMenuTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/TestCase/UpdateTermEntityTest.php b/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/TestCase/UpdateTermEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/TestCase/UpdateTermEntityTest.xml b/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/TestCase/UpdateTermEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/TestStep/CheckTermOnMultishippingStep.php b/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/TestStep/CheckTermOnMultishippingStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/TestStep/CreateTermEntityStep.php b/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/TestStep/CreateTermEntityStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/TestStep/DeleteAllTermsEntityStep.php b/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/TestStep/DeleteAllTermsEntityStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/TestStep/DeleteTermEntityStep.php b/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/TestStep/DeleteTermEntityStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/TestStep/SetupTermEntityStep.php b/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/TestStep/SetupTermEntityStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/TestStep/UpdateTermEntityStep.php b/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/TestStep/UpdateTermEntityStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/etc/curl/di.xml b/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/etc/curl/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/etc/di.xml b/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/etc/testcase.xml b/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/etc/testcase.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Block/Adminhtml/Block/CmsGrid.php b/dev/tests/functional/tests/app/Magento/Cms/Test/Block/Adminhtml/Block/CmsGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Block/Adminhtml/Block/Edit/BlockForm.php b/dev/tests/functional/tests/app/Magento/Cms/Test/Block/Adminhtml/Block/Edit/BlockForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Block/Adminhtml/Block/Edit/CmsForm.php b/dev/tests/functional/tests/app/Magento/Cms/Test/Block/Adminhtml/Block/Edit/CmsForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Block/Adminhtml/Block/Edit/CmsForm.xml b/dev/tests/functional/tests/app/Magento/Cms/Test/Block/Adminhtml/Block/Edit/CmsForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Block/Adminhtml/Page/Edit/PageForm.php b/dev/tests/functional/tests/app/Magento/Cms/Test/Block/Adminhtml/Page/Edit/PageForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Block/Adminhtml/Page/Edit/PageForm.xml b/dev/tests/functional/tests/app/Magento/Cms/Test/Block/Adminhtml/Page/Edit/PageForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Block/Adminhtml/Page/Edit/Tab/Content.php b/dev/tests/functional/tests/app/Magento/Cms/Test/Block/Adminhtml/Page/Edit/Tab/Content.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Block/Adminhtml/Page/Grid.php b/dev/tests/functional/tests/app/Magento/Cms/Test/Block/Adminhtml/Page/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Block/Adminhtml/Page/Widget/Chooser.php b/dev/tests/functional/tests/app/Magento/Cms/Test/Block/Adminhtml/Page/Widget/Chooser.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Block/Adminhtml/Wysiwyg/Config.php b/dev/tests/functional/tests/app/Magento/Cms/Test/Block/Adminhtml/Wysiwyg/Config.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Block/Messages.php b/dev/tests/functional/tests/app/Magento/Cms/Test/Block/Messages.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Block/Page.php b/dev/tests/functional/tests/app/Magento/Cms/Test/Block/Page.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertAuthorizationLinkIsVisibleOnStoreFront.php b/dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertAuthorizationLinkIsVisibleOnStoreFront.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsBlockDeleteMessage.php b/dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsBlockDeleteMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsBlockInGrid.php b/dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsBlockInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsBlockNotInGrid.php b/dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsBlockNotInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsBlockNotOnCategoryPage.php b/dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsBlockNotOnCategoryPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsBlockOnCategoryPage.php b/dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsBlockOnCategoryPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsBlockSuccessSaveMessage.php b/dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsBlockSuccessSaveMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsPageDeleteMessage.php b/dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsPageDeleteMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsPageDisabledOnFrontend.php b/dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsPageDisabledOnFrontend.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsPageDuplicateErrorMessage.php b/dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsPageDuplicateErrorMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsPageForm.php b/dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsPageForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsPageFormSingleStoreMode.php b/dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsPageFormSingleStoreMode.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsPageInGrid.php b/dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsPageInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsPageNotInGrid.php b/dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsPageNotInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsPageOnFrontend.php b/dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsPageOnFrontend.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsPagePreview.php b/dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsPagePreview.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsPageSuccessSaveMessage.php b/dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsPageSuccessSaveMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsPagesDisabledOnFrontend.php b/dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsPagesDisabledOnFrontend.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsPagesInGrid.php b/dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsPagesInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsPagesOnFrontendMultipleStoreViews.php b/dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertCmsPagesOnFrontendMultipleStoreViews.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertUrlRewriteCmsPageRedirect.php b/dev/tests/functional/tests/app/Magento/Cms/Test/Constraint/AssertUrlRewriteCmsPageRedirect.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Fixture/CmsBlock.xml b/dev/tests/functional/tests/app/Magento/Cms/Test/Fixture/CmsBlock.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Fixture/CmsBlock/Stores.php b/dev/tests/functional/tests/app/Magento/Cms/Test/Fixture/CmsBlock/Stores.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Fixture/CmsPage.xml b/dev/tests/functional/tests/app/Magento/Cms/Test/Fixture/CmsPage.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Fixture/CmsPage/Content.php b/dev/tests/functional/tests/app/Magento/Cms/Test/Fixture/CmsPage/Content.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Fixture/CmsPage/StoreId.php b/dev/tests/functional/tests/app/Magento/Cms/Test/Fixture/CmsPage/StoreId.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Handler/CmsBlock/CmsBlockInterface.php b/dev/tests/functional/tests/app/Magento/Cms/Test/Handler/CmsBlock/CmsBlockInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Handler/CmsBlock/Curl.php b/dev/tests/functional/tests/app/Magento/Cms/Test/Handler/CmsBlock/Curl.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Handler/CmsPage/CmsPageInterface.php b/dev/tests/functional/tests/app/Magento/Cms/Test/Handler/CmsPage/CmsPageInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Handler/CmsPage/Curl.php b/dev/tests/functional/tests/app/Magento/Cms/Test/Handler/CmsPage/Curl.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Page/Adminhtml/CmsBlockEdit.xml b/dev/tests/functional/tests/app/Magento/Cms/Test/Page/Adminhtml/CmsBlockEdit.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Page/Adminhtml/CmsBlockIndex.xml b/dev/tests/functional/tests/app/Magento/Cms/Test/Page/Adminhtml/CmsBlockIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Page/Adminhtml/CmsBlockNew.xml b/dev/tests/functional/tests/app/Magento/Cms/Test/Page/Adminhtml/CmsBlockNew.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Page/Adminhtml/CmsPageIndex.xml b/dev/tests/functional/tests/app/Magento/Cms/Test/Page/Adminhtml/CmsPageIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Page/Adminhtml/CmsPageNew.xml b/dev/tests/functional/tests/app/Magento/Cms/Test/Page/Adminhtml/CmsPageNew.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Page/CmsIndex.xml b/dev/tests/functional/tests/app/Magento/Cms/Test/Page/CmsIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Page/CmsPage.xml b/dev/tests/functional/tests/app/Magento/Cms/Test/Page/CmsPage.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Repository/CmsBlock.xml b/dev/tests/functional/tests/app/Magento/Cms/Test/Repository/CmsBlock.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Repository/CmsPage.xml b/dev/tests/functional/tests/app/Magento/Cms/Test/Repository/CmsPage.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Repository/CmsPage/Content.xml b/dev/tests/functional/tests/app/Magento/Cms/Test/Repository/CmsPage/Content.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Repository/ConfigData.xml b/dev/tests/functional/tests/app/Magento/Cms/Test/Repository/ConfigData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/Repository/UrlRewrite.xml b/dev/tests/functional/tests/app/Magento/Cms/Test/Repository/UrlRewrite.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/AbstractCmsBlockEntityTest.php b/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/AbstractCmsBlockEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/CmsPageMassActionTest.php b/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/CmsPageMassActionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/CmsPageMassActionTest.xml b/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/CmsPageMassActionTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/CreateCmsBlockEntityTest.php b/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/CreateCmsBlockEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/CreateCmsBlockEntityTest.xml b/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/CreateCmsBlockEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/CreateCmsPageEntityMultipleStoreViewsTest.php b/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/CreateCmsPageEntityMultipleStoreViewsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/CreateCmsPageEntityMultipleStoreViewsTest.xml b/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/CreateCmsPageEntityMultipleStoreViewsTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/CreateCmsPageEntityTest.php b/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/CreateCmsPageEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/CreateCmsPageEntityTest.xml b/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/CreateCmsPageEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/CreateCmsPageRewriteEntityTest.php b/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/CreateCmsPageRewriteEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/CreateCmsPageRewriteEntityTest.xml b/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/CreateCmsPageRewriteEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/CreateCustomUrlRewriteEntityTest.xml b/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/CreateCustomUrlRewriteEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/CreateDuplicateUrlCmsPageEntityTest.php b/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/CreateDuplicateUrlCmsPageEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/CreateDuplicateUrlCmsPageEntityTest.xml b/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/CreateDuplicateUrlCmsPageEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/DeleteCmsBlockEntityTest.php b/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/DeleteCmsBlockEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/DeleteCmsBlockEntityTest.xml b/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/DeleteCmsBlockEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/DeleteCmsPageEntityTest.php b/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/DeleteCmsPageEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/DeleteCmsPageEntityTest.xml b/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/DeleteCmsPageEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/DeleteCmsPageUrlRewriteEntityTest.php b/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/DeleteCmsPageUrlRewriteEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/DeleteCmsPageUrlRewriteEntityTest.xml b/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/DeleteCmsPageUrlRewriteEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/GridFilteringTest.xml b/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/GridFilteringTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/GridFullTextSearchTest.xml b/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/GridFullTextSearchTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/GridSortingTest.xml b/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/GridSortingTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/NavigateMenuTest.xml b/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/NavigateMenuTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/UpdateCmsBlockEntityTest.php b/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/UpdateCmsBlockEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/UpdateCmsBlockEntityTest.xml b/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/UpdateCmsBlockEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/UpdateCmsPageEntityTest.php b/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/UpdateCmsPageEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/UpdateCmsPageEntityTest.xml b/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/UpdateCmsPageEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/UpdateCmsPageRewriteEntityTest.php b/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/UpdateCmsPageRewriteEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/UpdateCmsPageRewriteEntityTest.xml b/dev/tests/functional/tests/app/Magento/Cms/Test/TestCase/UpdateCmsPageRewriteEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/etc/curl/di.xml b/dev/tests/functional/tests/app/Magento/Cms/Test/etc/curl/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Cms/Test/etc/di.xml b/dev/tests/functional/tests/app/Magento/Cms/Test/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Config/Test/Block/System/Config/AdminForm.php b/dev/tests/functional/tests/app/Magento/Config/Test/Block/System/Config/AdminForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Config/Test/Constraint/AssertAdminAccountSharing.php b/dev/tests/functional/tests/app/Magento/Config/Test/Constraint/AssertAdminAccountSharing.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Config/Test/Fixture/ConfigData.xml b/dev/tests/functional/tests/app/Magento/Config/Test/Fixture/ConfigData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Config/Test/Fixture/ConfigData/Section.php b/dev/tests/functional/tests/app/Magento/Config/Test/Fixture/ConfigData/Section.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Config/Test/Handler/ConfigData/ConfigDataInterface.php b/dev/tests/functional/tests/app/Magento/Config/Test/Handler/ConfigData/ConfigDataInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Config/Test/Handler/ConfigData/Curl.php b/dev/tests/functional/tests/app/Magento/Config/Test/Handler/ConfigData/Curl.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Config/Test/Page/Adminhtml/AdminAccountSharing.xml b/dev/tests/functional/tests/app/Magento/Config/Test/Page/Adminhtml/AdminAccountSharing.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Config/Test/TestCase/VerifyAdminAccountSharingEntityTest.php b/dev/tests/functional/tests/app/Magento/Config/Test/TestCase/VerifyAdminAccountSharingEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Config/Test/TestCase/VerifyAdminAccountSharingEntityTest.xml b/dev/tests/functional/tests/app/Magento/Config/Test/TestCase/VerifyAdminAccountSharingEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Config/Test/TestStep/SetupConfigurationStep.php b/dev/tests/functional/tests/app/Magento/Config/Test/TestStep/SetupConfigurationStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Config/Test/etc/curl/di.xml b/dev/tests/functional/tests/app/Magento/Config/Test/etc/curl/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableImportExport/Test/Constraint/AssertImportedConfigurableProducts.php b/dev/tests/functional/tests/app/Magento/ConfigurableImportExport/Test/Constraint/AssertImportedConfigurableProducts.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableImportExport/Test/Fixture/Import/File.php b/dev/tests/functional/tests/app/Magento/ConfigurableImportExport/Test/Fixture/Import/File.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableImportExport/Test/TestCase/ExportProductsTest.xml b/dev/tests/functional/tests/app/Magento/ConfigurableImportExport/Test/TestCase/ExportProductsTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableImportExport/Test/TestCase/ImportProductsTest.xml b/dev/tests/functional/tests/app/Magento/ConfigurableImportExport/Test/TestCase/ImportProductsTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/AffectedAttributeSet.php b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/AffectedAttributeSet.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/AffectedAttributeSet.xml b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/AffectedAttributeSet.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/AssociatedProductGrid.php b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/AssociatedProductGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/AttributesGrid.php b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/AttributesGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/Composite/Configure.php b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/Composite/Configure.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/Composite/Configure.xml b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/Composite/Configure.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/Edit/NewConfigurableAttributeForm.php b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/Edit/NewConfigurableAttributeForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/Edit/NewConfigurableAttributeForm.xml b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/Edit/NewConfigurableAttributeForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/Edit/Section/Variations/Config.php b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/Edit/Section/Variations/Config.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/Edit/Section/Variations/Config/Attribute.php b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/Edit/Section/Variations/Config/Attribute.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/Edit/Section/Variations/Config/Attribute.xml b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/Edit/Section/Variations/Config/Attribute.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/Edit/Section/Variations/Config/Attribute/AttributeSelector.php b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/Edit/Section/Variations/Config/Attribute/AttributeSelector.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/Edit/Section/Variations/Config/Attribute/ToggleDropdown.php b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/Edit/Section/Variations/Config/Attribute/ToggleDropdown.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/Edit/Section/Variations/Config/Matrix.php b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/Edit/Section/Variations/Config/Matrix.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/Edit/Section/Variations/Config/Matrix.xml b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/Edit/Section/Variations/Config/Matrix.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/FormPageActions.php b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/FormPageActions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/Grid.php b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/ProductForm.php b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/ProductForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/ProductForm.xml b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Adminhtml/Product/ProductForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Product/Price.php b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Product/Price.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Product/View.php b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Product/View.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Product/View/ConfigurableOptions.php b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Block/Product/View/ConfigurableOptions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertChildProductIsNotDisplayedSeparately.php b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertChildProductIsNotDisplayedSeparately.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertChildProductsGeneratedSku.php b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertChildProductsGeneratedSku.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertChildProductsInGrid.php b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertChildProductsInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertConfigurableAttributesAbsentOnProductPage.php b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertConfigurableAttributesAbsentOnProductPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertConfigurableAttributesBlockIsAbsentOnProductPage.php b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertConfigurableAttributesBlockIsAbsentOnProductPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertConfigurableProductAttributeOptionInLayeredNavigation.php b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertConfigurableProductAttributeOptionInLayeredNavigation.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertConfigurableProductDuplicateForm.php b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertConfigurableProductDuplicateForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertConfigurableProductForm.php b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertConfigurableProductForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertConfigurableProductImages.php b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertConfigurableProductImages.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertConfigurableProductInCart.php b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertConfigurableProductInCart.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertConfigurableProductInCategory.php b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertConfigurableProductInCategory.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertConfigurableProductInCustomerWishlistOnBackendGrid.php b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertConfigurableProductInCustomerWishlistOnBackendGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertConfigurableProductOutOfStockPage.php b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertConfigurableProductOutOfStockPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertConfigurableProductPage.php b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertConfigurableProductPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertConfigurableProductsQtyAfterReorder.php b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertConfigurableProductsQtyAfterReorder.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertCurrencyRateAppliedOnProductPage.php b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertCurrencyRateAppliedOnProductPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertOutOfStockOptionIsAbsentOnProductPage.php b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertOutOfStockOptionIsAbsentOnProductPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertProductAttributeAbsenceInVariationsSearch.php b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertProductAttributeAbsenceInVariationsSearch.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertProductAttributeIsConfigurable.php b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertProductAttributeIsConfigurable.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertProductQtyDecreasedAfterCreditmemo.php b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertProductQtyDecreasedAfterCreditmemo.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertProductTierPriceOnProductPage.php b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Constraint/AssertProductTierPriceOnProductPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Fixture/Cart/Item.php b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Fixture/Cart/Item.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Fixture/ConfigurableProduct.xml b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Fixture/ConfigurableProduct.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Fixture/ConfigurableProduct/ConfigurableAttributesData.php b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Fixture/ConfigurableProduct/ConfigurableAttributesData.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Handler/ConfigurableProduct/ConfigurableProductInterface.php b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Handler/ConfigurableProduct/ConfigurableProductInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Handler/ConfigurableProduct/Curl.php b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Handler/ConfigurableProduct/Curl.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Handler/ConfigurableProduct/Webapi.php b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Handler/ConfigurableProduct/Webapi.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Page/Adminhtml/CatalogProductEdit.xml b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Page/Adminhtml/CatalogProductEdit.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Page/Adminhtml/CatalogProductNew.xml b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Page/Adminhtml/CatalogProductNew.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Page/Adminhtml/CustomerIndexEdit.xml b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Page/Adminhtml/CustomerIndexEdit.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Page/Adminhtml/OrderCreateIndex.xml b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Page/Adminhtml/OrderCreateIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Page/Product/CatalogProductView.xml b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Page/Product/CatalogProductView.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Repository/ConfigData.xml b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Repository/ConfigData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Repository/ConfigurableProduct.xml b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Repository/ConfigurableProduct.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Repository/ConfigurableProduct/CheckoutData.xml b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Repository/ConfigurableProduct/CheckoutData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Repository/ConfigurableProduct/ConfigurableAttributesData.xml b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Repository/ConfigurableProduct/ConfigurableAttributesData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Repository/ConfigurableProduct/Price.xml b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/Repository/ConfigurableProduct/Price.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/CreateConfigurableProductEntityTest.php b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/CreateConfigurableProductEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/CreateConfigurableProductEntityTest.xml b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/CreateConfigurableProductEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/CreateCreditMemoEntityTest.xml b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/CreateCreditMemoEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/CreateCurrencyRateTest.xml b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/CreateCurrencyRateTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/DeleteChildConfigurableProductTest.php b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/DeleteChildConfigurableProductTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/DeleteChildConfigurableProductTest.xml b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/DeleteChildConfigurableProductTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/DeleteProductEntityTest.xml b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/DeleteProductEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/DeleteProductFromMiniShoppingCartTest.xml b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/DeleteProductFromMiniShoppingCartTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/DuplicateProductEntityTest.xml b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/DuplicateProductEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/MassProductUpdateTest.xml b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/MassProductUpdateTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/MoveRecentlyComparedProductsOnOrderPageTest.xml b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/MoveRecentlyComparedProductsOnOrderPageTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/TaxCalculationTest.xml b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/TaxCalculationTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/UpdateConfigurableProductEntityTest.php b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/UpdateConfigurableProductEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/UpdateConfigurableProductEntityTest.xml b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/UpdateConfigurableProductEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/ValidateOrderOfProductTypeTest.xml b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/ValidateOrderOfProductTypeTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/VerifyConfigurableProductEntityPriceTest.php b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/VerifyConfigurableProductEntityPriceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/VerifyConfigurableProductEntityPriceTest.xml b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/VerifyConfigurableProductEntityPriceTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/VerifyConfigurableProductLayeredNavigationTest.php b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/VerifyConfigurableProductLayeredNavigationTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/VerifyConfigurableProductLayeredNavigationTest.xml b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestCase/VerifyConfigurableProductLayeredNavigationTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestStep/UpdateChildProductStep.php b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestStep/UpdateChildProductStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestStep/UpdateConfigurableProductStep.php b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/TestStep/UpdateConfigurableProductStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/etc/curl/di.xml b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/etc/curl/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/etc/di.xml b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/etc/testcase.xml b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/etc/testcase.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/etc/webapi/di.xml b/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/etc/webapi/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Contact/Test/Block/Form/ContactUs.php b/dev/tests/functional/tests/app/Magento/Contact/Test/Block/Form/ContactUs.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Contact/Test/Block/Form/ContactUs.xml b/dev/tests/functional/tests/app/Magento/Contact/Test/Block/Form/ContactUs.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Contact/Test/Block/Messages.php b/dev/tests/functional/tests/app/Magento/Contact/Test/Block/Messages.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Contact/Test/Constraint/AssertContactUsSuccessMessage.php b/dev/tests/functional/tests/app/Magento/Contact/Test/Constraint/AssertContactUsSuccessMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Contact/Test/Fixture/Comment.xml b/dev/tests/functional/tests/app/Magento/Contact/Test/Fixture/Comment.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Contact/Test/Fixture/Comment/Customer.php b/dev/tests/functional/tests/app/Magento/Contact/Test/Fixture/Comment/Customer.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Contact/Test/Page/ContactIndex.xml b/dev/tests/functional/tests/app/Magento/Contact/Test/Page/ContactIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Block/Adminhtml/System/Currency/Rate/CurrencyRateForm.php b/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Block/Adminhtml/System/Currency/Rate/CurrencyRateForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Block/Adminhtml/System/Currency/Rate/CurrencyRateForm.xml b/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Block/Adminhtml/System/Currency/Rate/CurrencyRateForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Block/Adminhtml/System/Currency/Rate/FormPageActions.php b/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Block/Adminhtml/System/Currency/Rate/FormPageActions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Block/Adminhtml/System/CurrencySymbolForm.php b/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Block/Adminhtml/System/CurrencySymbolForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Block/Adminhtml/System/CurrencySymbolForm.xml b/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Block/Adminhtml/System/CurrencySymbolForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Block/Adminhtml/System/FormPageActions.php b/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Block/Adminhtml/System/FormPageActions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Constraint/AssertCurrencySymbolOnCatalogPage.php b/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Constraint/AssertCurrencySymbolOnCatalogPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Constraint/AssertCurrencySymbolOnProductPage.php b/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Constraint/AssertCurrencySymbolOnProductPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Constraint/AssertCurrencySymbolOnProductPageCustomWebsite.php b/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Constraint/AssertCurrencySymbolOnProductPageCustomWebsite.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Constraint/AssertCurrencySymbolOnProductPageMainWebsite.php b/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Constraint/AssertCurrencySymbolOnProductPageMainWebsite.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Constraint/AssertCurrencySymbolSuccessSaveMessage.php b/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Constraint/AssertCurrencySymbolSuccessSaveMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Fixture/CurrencySymbolEntity.xml b/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Fixture/CurrencySymbolEntity.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Handler/CurrencySymbolEntity/Curl.php b/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Handler/CurrencySymbolEntity/Curl.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Handler/CurrencySymbolEntity/CurrencySymbolEntityInterface.php b/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Handler/CurrencySymbolEntity/CurrencySymbolEntityInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Page/Adminhtml/ConfigCurrencySetUp.xml b/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Page/Adminhtml/ConfigCurrencySetUp.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Page/Adminhtml/SystemCurrencyIndex.xml b/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Page/Adminhtml/SystemCurrencyIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Page/Adminhtml/SystemCurrencySymbolIndex.xml b/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Page/Adminhtml/SystemCurrencySymbolIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Repository/ConfigData.xml b/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Repository/ConfigData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Repository/CurrencySymbolEntity.xml b/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/Repository/CurrencySymbolEntity.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/TestCase/AbstractCurrencySymbolEntityTest.php b/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/TestCase/AbstractCurrencySymbolEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/TestCase/EditCurrencyCustomWebsiteTest.php b/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/TestCase/EditCurrencyCustomWebsiteTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/TestCase/EditCurrencyCustomWebsiteTest.xml b/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/TestCase/EditCurrencyCustomWebsiteTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/TestCase/EditCurrencySymbolEntityTest.php b/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/TestCase/EditCurrencySymbolEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/TestCase/EditCurrencySymbolEntityTest.xml b/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/TestCase/EditCurrencySymbolEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/TestCase/NavigateMenuTest.xml b/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/TestCase/NavigateMenuTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/TestCase/ResetCurrencySymbolEntityTest.php b/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/TestCase/ResetCurrencySymbolEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/TestCase/ResetCurrencySymbolEntityTest.xml b/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/TestCase/ResetCurrencySymbolEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/etc/curl/di.xml b/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/etc/curl/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Account/AddressesAdditional.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Account/AddressesAdditional.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Account/AddressesDefault.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Account/AddressesDefault.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Account/AuthenticationPopup.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Account/AuthenticationPopup.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Account/AuthenticationPopup.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Account/AuthenticationPopup.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Account/AuthenticationWrapper.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Account/AuthenticationWrapper.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Account/AuthenticationWrapper.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Account/AuthenticationWrapper.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Account/Dashboard/Address.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Account/Dashboard/Address.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Account/Dashboard/Info.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Account/Dashboard/Info.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Account/Links.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Account/Links.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Address/Edit.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Address/Edit.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Address/Edit.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Address/Edit.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Address/Renderer.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Address/Renderer.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Adminhtml/CustomerGrid.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Adminhtml/CustomerGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Adminhtml/Edit/CustomerForm.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Adminhtml/Edit/CustomerForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Adminhtml/Edit/CustomerForm.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Adminhtml/Edit/CustomerForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Adminhtml/Edit/FormPageActions.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Adminhtml/Edit/FormPageActions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Adminhtml/Edit/Tab/Addresses.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Adminhtml/Edit/Tab/Addresses.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Adminhtml/Edit/Tab/Addresses.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Adminhtml/Edit/Tab/Addresses.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Adminhtml/Group/CustomerGroupGrid.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Adminhtml/Group/CustomerGroupGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Adminhtml/Group/Edit/Form.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Adminhtml/Group/Edit/Form.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Adminhtml/Group/Edit/Form.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Adminhtml/Group/Edit/Form.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Form/CustomerForm.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Form/CustomerForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Form/CustomerForm.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Form/CustomerForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Form/ForgotPassword.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Form/ForgotPassword.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Form/ForgotPassword.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Form/ForgotPassword.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Form/Login.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Form/Login.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Form/Login.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Form/Login.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Form/Register.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Form/Register.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Form/Register.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/Block/Form/Register.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertAdditionalAddressCreatedFrontend.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertAdditionalAddressCreatedFrontend.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertAdditionalAddressDeletedFrontend.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertAdditionalAddressDeletedFrontend.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertAddressDeletedBackend.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertAddressDeletedBackend.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertAddressDeletedFrontend.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertAddressDeletedFrontend.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertChangePasswordFailMessage.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertChangePasswordFailMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertChangingWebsiteChangeCountries.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertChangingWebsiteChangeCountries.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerAddressSuccessSaveMessage.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerAddressSuccessSaveMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerBackendBackButton.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerBackendBackButton.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerBackendDuplicateErrorMessage.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerBackendDuplicateErrorMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerBackendFormTitle.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerBackendFormTitle.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerBackendRequiredFields.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerBackendRequiredFields.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerDefaultAddressFrontendAddressBook.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerDefaultAddressFrontendAddressBook.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerDefaultAddresses.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerDefaultAddresses.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerDoesNotHaveDefaultAddresses.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerDoesNotHaveDefaultAddresses.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerFailRegisterMessage.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerFailRegisterMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerForgotPasswordSuccessMessage.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerForgotPasswordSuccessMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerForm.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerGroupAlreadyExists.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerGroupAlreadyExists.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerGroupChangedToDefaultOnCustomerForm.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerGroupChangedToDefaultOnCustomerForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerGroupFieldsDisabled.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerGroupFieldsDisabled.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerGroupForm.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerGroupForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerGroupInGrid.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerGroupInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerGroupNotInGrid.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerGroupNotInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerGroupNotOnCartPriceRuleForm.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerGroupNotOnCartPriceRuleForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerGroupNotOnCatalogPriceRuleForm.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerGroupNotOnCatalogPriceRuleForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerGroupNotOnProductForm.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerGroupNotOnProductForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerGroupOnCartPriceRuleForm.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerGroupOnCartPriceRuleForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerGroupOnCatalogPriceRuleForm.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerGroupOnCatalogPriceRuleForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerGroupOnCustomerForm.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerGroupOnCustomerForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerGroupOnProductForm.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerGroupOnProductForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerGroupSuccessDeleteMessage.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerGroupSuccessDeleteMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerGroupSuccessSaveMessage.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerGroupSuccessSaveMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerInGrid.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerInfoSuccessSavedMessage.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerInfoSuccessSavedMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerInvalidEmail.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerInvalidEmail.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerIsLockedOnBackend.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerIsLockedOnBackend.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerLogin.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerLogin.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerLoginErrorMessage.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerLoginErrorMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerLogout.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerLogout.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerMassDeleteInGrid.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerMassDeleteInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerMassDeleteNotInGrid.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerMassDeleteNotInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerMassDeleteSuccessMessage.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerMassDeleteSuccessMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerNameFrontend.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerNameFrontend.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerNotInGrid.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerNotInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerPasswordAutocompleteOnAuthorizationPopup.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerPasswordAutocompleteOnAuthorizationPopup.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerPasswordAutocompleteOnSignIn.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerPasswordAutocompleteOnSignIn.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerPasswordChanged.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerPasswordChanged.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerRedirectToDashboard.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerRedirectToDashboard.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerSuccessDeleteMessage.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerSuccessDeleteMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerSuccessRegisterMessage.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerSuccessRegisterMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerSuccessSaveMessage.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerSuccessSaveMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertMassActionSuccessUpdateMessage.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertMassActionSuccessUpdateMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertNoDeleteForSystemCustomerGroup.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertNoDeleteForSystemCustomerGroup.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertWrongPassConfirmationMessage.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertWrongPassConfirmationMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Fixture/Address.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/Fixture/Address.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Fixture/Customer.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/Fixture/Customer.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Fixture/Customer/Address.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Fixture/Customer/Address.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Fixture/Customer/GroupId.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Fixture/Customer/GroupId.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Fixture/Customer/WebsiteId.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Fixture/Customer/WebsiteId.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Fixture/CustomerGroup.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/Fixture/CustomerGroup.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Fixture/CustomerGroup/TaxClassIds.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Fixture/CustomerGroup/TaxClassIds.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Handler/Customer/Curl.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Handler/Customer/Curl.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Handler/Customer/CustomerInterface.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Handler/Customer/CustomerInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Handler/Customer/Webapi.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Handler/Customer/Webapi.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Handler/CustomerGroup/Curl.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Handler/CustomerGroup/Curl.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Handler/CustomerGroup/CustomerGroupInterface.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Handler/CustomerGroup/CustomerGroupInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Page/Address/DefaultAddress.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Page/Address/DefaultAddress.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Page/Adminhtml/CheckoutIndex.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/Page/Adminhtml/CheckoutIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Page/Adminhtml/CustomerGroupEdit.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/Page/Adminhtml/CustomerGroupEdit.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Page/Adminhtml/CustomerGroupIndex.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/Page/Adminhtml/CustomerGroupIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Page/Adminhtml/CustomerGroupNew.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/Page/Adminhtml/CustomerGroupNew.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Page/Adminhtml/CustomerIndex.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/Page/Adminhtml/CustomerIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Page/Adminhtml/CustomerIndexEdit.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/Page/Adminhtml/CustomerIndexEdit.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Page/Adminhtml/CustomerIndexNew.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/Page/Adminhtml/CustomerIndexNew.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Page/CustomerAccountAddress.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/Page/CustomerAccountAddress.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Page/CustomerAccountCreate.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/Page/CustomerAccountCreate.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Page/CustomerAccountEdit.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/Page/CustomerAccountEdit.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Page/CustomerAccountForgotPassword.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/Page/CustomerAccountForgotPassword.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Page/CustomerAccountIndex.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/Page/CustomerAccountIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Page/CustomerAccountLogin.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/Page/CustomerAccountLogin.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Page/CustomerAccountLogout.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Page/CustomerAccountLogout.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Page/CustomerAddressEdit.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/Page/CustomerAddressEdit.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Repository/Address.php b/dev/tests/functional/tests/app/Magento/Customer/Test/Repository/Address.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Repository/Address.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/Repository/Address.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Repository/ConfigData.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/Repository/ConfigData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Repository/Customer.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/Repository/Customer.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/Repository/CustomerGroup.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/Repository/CustomerGroup.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/AbstractApplyVatIdTest.php b/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/AbstractApplyVatIdTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/ApplyVatIdTest.php b/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/ApplyVatIdTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/ApplyVatIdTest.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/ApplyVatIdTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/ChangeCustomerPasswordTest.php b/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/ChangeCustomerPasswordTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/ChangeCustomerPasswordTest.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/ChangeCustomerPasswordTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/CreateCustomerBackendEntityTest.php b/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/CreateCustomerBackendEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/CreateCustomerBackendEntityTest.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/CreateCustomerBackendEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/CreateCustomerGroupEntityTest.php b/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/CreateCustomerGroupEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/CreateCustomerGroupEntityTest.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/CreateCustomerGroupEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/CreateExistingCustomerBackendEntity.php b/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/CreateExistingCustomerBackendEntity.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/CreateExistingCustomerBackendEntity.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/CreateExistingCustomerBackendEntity.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/CreateExistingCustomerFrontendEntity.php b/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/CreateExistingCustomerFrontendEntity.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/CreateExistingCustomerFrontendEntity.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/CreateExistingCustomerFrontendEntity.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/DeleteCustomerAddressTest.php b/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/DeleteCustomerAddressTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/DeleteCustomerAddressTest.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/DeleteCustomerAddressTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/DeleteCustomerBackendEntityTest.php b/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/DeleteCustomerBackendEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/DeleteCustomerBackendEntityTest.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/DeleteCustomerBackendEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/DeleteCustomerGroupEntityTest.php b/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/DeleteCustomerGroupEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/DeleteCustomerGroupEntityTest.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/DeleteCustomerGroupEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/DeleteSystemCustomerGroupTest.php b/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/DeleteSystemCustomerGroupTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/DeleteSystemCustomerGroupTest.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/DeleteSystemCustomerGroupTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/ForgotPasswordOnFrontendTest.php b/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/ForgotPasswordOnFrontendTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/ForgotPasswordOnFrontendTest.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/ForgotPasswordOnFrontendTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/GridFilteringTest.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/GridFilteringTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/GridFullTextSearchTest.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/GridFullTextSearchTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/GridSortingTest.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/GridSortingTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/LoginOnFrontendFailTest.php b/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/LoginOnFrontendFailTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/LoginOnFrontendFailTest.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/LoginOnFrontendFailTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/MassAssignCustomerGroupTest.php b/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/MassAssignCustomerGroupTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/MassAssignCustomerGroupTest.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/MassAssignCustomerGroupTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/MassDeleteCustomerBackendEntityTest.php b/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/MassDeleteCustomerBackendEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/MassDeleteCustomerBackendEntityTest.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/MassDeleteCustomerBackendEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/NavigateMenuTest.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/NavigateMenuTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/PasswordAutocompleteOffTest.php b/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/PasswordAutocompleteOffTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/PasswordAutocompleteOffTest.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/PasswordAutocompleteOffTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/RegisterCustomerFrontendEntityTest.php b/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/RegisterCustomerFrontendEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/RegisterCustomerFrontendEntityTest.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/RegisterCustomerFrontendEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/UpdateCustomerBackendEntityTest.php b/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/UpdateCustomerBackendEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/UpdateCustomerBackendEntityTest.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/UpdateCustomerBackendEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/UpdateCustomerFrontendEntityTest.php b/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/UpdateCustomerFrontendEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/UpdateCustomerFrontendEntityTest.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/UpdateCustomerFrontendEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/UpdateCustomerGroupEntityTest.php b/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/UpdateCustomerGroupEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/UpdateCustomerGroupEntityTest.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/UpdateCustomerGroupEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/VerifyDisabledCustomerGroupFieldTest.php b/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/VerifyDisabledCustomerGroupFieldTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/VerifyDisabledCustomerGroupFieldTest.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/TestCase/VerifyDisabledCustomerGroupFieldTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestStep/CreateCustomerStep.php b/dev/tests/functional/tests/app/Magento/Customer/Test/TestStep/CreateCustomerStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestStep/CreateOrderFromCustomerAccountStep.php b/dev/tests/functional/tests/app/Magento/Customer/Test/TestStep/CreateOrderFromCustomerAccountStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestStep/DeleteCustomerStep.php b/dev/tests/functional/tests/app/Magento/Customer/Test/TestStep/DeleteCustomerStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestStep/LoginCustomerOnFrontendStep.php b/dev/tests/functional/tests/app/Magento/Customer/Test/TestStep/LoginCustomerOnFrontendStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestStep/LogoutCustomerOnFrontendStep.php b/dev/tests/functional/tests/app/Magento/Customer/Test/TestStep/LogoutCustomerOnFrontendStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/TestStep/OpenCustomerOnBackendStep.php b/dev/tests/functional/tests/app/Magento/Customer/Test/TestStep/OpenCustomerOnBackendStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/etc/curl/di.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/etc/curl/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/etc/di.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/etc/testcase.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/etc/testcase.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Customer/Test/etc/webapi/di.xml b/dev/tests/functional/tests/app/Magento/Customer/Test/etc/webapi/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CustomerImportExport/Test/Constraint/AssertExportCustomerAddresses.php b/dev/tests/functional/tests/app/Magento/CustomerImportExport/Test/Constraint/AssertExportCustomerAddresses.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CustomerImportExport/Test/Constraint/AssertImportCustomerAddresses.php b/dev/tests/functional/tests/app/Magento/CustomerImportExport/Test/Constraint/AssertImportCustomerAddresses.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CustomerImportExport/Test/Repository/ExportData.xml b/dev/tests/functional/tests/app/Magento/CustomerImportExport/Test/Repository/ExportData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CustomerImportExport/Test/TestCase/ExportCustomerAddressesTest.php b/dev/tests/functional/tests/app/Magento/CustomerImportExport/Test/TestCase/ExportCustomerAddressesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CustomerImportExport/Test/TestCase/ExportCustomerAddressesTest.xml b/dev/tests/functional/tests/app/Magento/CustomerImportExport/Test/TestCase/ExportCustomerAddressesTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CustomerImportExport/Test/TestCase/ImportCustomerAddressTest.php b/dev/tests/functional/tests/app/Magento/CustomerImportExport/Test/TestCase/ImportCustomerAddressTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CustomerImportExport/Test/TestCase/ImportCustomerAddressTest.xml b/dev/tests/functional/tests/app/Magento/CustomerImportExport/Test/TestCase/ImportCustomerAddressTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CustomerImportExport/Test/TestStep/FillCustomImportFormStep.php b/dev/tests/functional/tests/app/Magento/CustomerImportExport/Test/TestStep/FillCustomImportFormStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CustomerImportExport/Test/_files/template/address/customer_addresses_variation_1.php b/dev/tests/functional/tests/app/Magento/CustomerImportExport/Test/_files/template/address/customer_addresses_variation_1.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CustomerImportExport/Test/_files/template/address/customer_addresses_variation_2.php b/dev/tests/functional/tests/app/Magento/CustomerImportExport/Test/_files/template/address/customer_addresses_variation_2.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CustomerImportExport/Test/etc/di.xml b/dev/tests/functional/tests/app/Magento/CustomerImportExport/Test/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/CustomerImportExport/Test/etc/testcase.xml b/dev/tests/functional/tests/app/Magento/CustomerImportExport/Test/etc/testcase.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Dhl/Test/Repository/ConfigData.xml b/dev/tests/functional/tests/app/Magento/Dhl/Test/Repository/ConfigData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Dhl/Test/TestCase/CityBasedShippingRateTest.xml b/dev/tests/functional/tests/app/Magento/Dhl/Test/TestCase/CityBasedShippingRateTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Dhl/Test/TestCase/OnePageCheckoutTest.xml b/dev/tests/functional/tests/app/Magento/Dhl/Test/TestCase/OnePageCheckoutTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Directory/Test/Block/Currency/Switcher.php b/dev/tests/functional/tests/app/Magento/Directory/Test/Block/Currency/Switcher.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Directory/Test/Constraint/AssertCurrencyRateAppliedOnCatalogPage.php b/dev/tests/functional/tests/app/Magento/Directory/Test/Constraint/AssertCurrencyRateAppliedOnCatalogPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Directory/Test/Constraint/AssertCurrencyRateAppliedOnProductPage.php b/dev/tests/functional/tests/app/Magento/Directory/Test/Constraint/AssertCurrencyRateAppliedOnProductPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Directory/Test/Constraint/AssertCurrencyRateSuccessSaveMessage.php b/dev/tests/functional/tests/app/Magento/Directory/Test/Constraint/AssertCurrencyRateSuccessSaveMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Directory/Test/Constraint/AssertShippingPriceWithCustomCurrency.php b/dev/tests/functional/tests/app/Magento/Directory/Test/Constraint/AssertShippingPriceWithCustomCurrency.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Directory/Test/Fixture/CurrencyRate.xml b/dev/tests/functional/tests/app/Magento/Directory/Test/Fixture/CurrencyRate.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Directory/Test/Handler/CurrencyRate/Curl.php b/dev/tests/functional/tests/app/Magento/Directory/Test/Handler/CurrencyRate/Curl.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Directory/Test/Handler/CurrencyRate/CurrencyRateInterface.php b/dev/tests/functional/tests/app/Magento/Directory/Test/Handler/CurrencyRate/CurrencyRateInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Directory/Test/Repository/ConfigData.xml b/dev/tests/functional/tests/app/Magento/Directory/Test/Repository/ConfigData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Directory/Test/Repository/CurrencyRate.xml b/dev/tests/functional/tests/app/Magento/Directory/Test/Repository/CurrencyRate.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Directory/Test/TestCase/CreateCurrencyRateTest.php b/dev/tests/functional/tests/app/Magento/Directory/Test/TestCase/CreateCurrencyRateTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Directory/Test/TestCase/CreateCurrencyRateTest.xml b/dev/tests/functional/tests/app/Magento/Directory/Test/TestCase/CreateCurrencyRateTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Directory/Test/etc/curl/di.xml b/dev/tests/functional/tests/app/Magento/Directory/Test/etc/curl/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Directory/Test/etc/di.xml b/dev/tests/functional/tests/app/Magento/Directory/Test/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/Block/Adminhtml/Catalog/Product/Edit/Section/Downloadable.php b/dev/tests/functional/tests/app/Magento/Downloadable/Test/Block/Adminhtml/Catalog/Product/Edit/Section/Downloadable.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/Block/Adminhtml/Catalog/Product/Edit/Section/Downloadable/LinkRow.php b/dev/tests/functional/tests/app/Magento/Downloadable/Test/Block/Adminhtml/Catalog/Product/Edit/Section/Downloadable/LinkRow.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/Block/Adminhtml/Catalog/Product/Edit/Section/Downloadable/LinkRow.xml b/dev/tests/functional/tests/app/Magento/Downloadable/Test/Block/Adminhtml/Catalog/Product/Edit/Section/Downloadable/LinkRow.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/Block/Adminhtml/Catalog/Product/Edit/Section/Downloadable/Links.php b/dev/tests/functional/tests/app/Magento/Downloadable/Test/Block/Adminhtml/Catalog/Product/Edit/Section/Downloadable/Links.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/Block/Adminhtml/Catalog/Product/Edit/Section/Downloadable/Links.xml b/dev/tests/functional/tests/app/Magento/Downloadable/Test/Block/Adminhtml/Catalog/Product/Edit/Section/Downloadable/Links.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/Block/Adminhtml/Catalog/Product/Edit/Section/Downloadable/SampleRow.php b/dev/tests/functional/tests/app/Magento/Downloadable/Test/Block/Adminhtml/Catalog/Product/Edit/Section/Downloadable/SampleRow.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/Block/Adminhtml/Catalog/Product/Edit/Section/Downloadable/SampleRow.xml b/dev/tests/functional/tests/app/Magento/Downloadable/Test/Block/Adminhtml/Catalog/Product/Edit/Section/Downloadable/SampleRow.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/Block/Adminhtml/Catalog/Product/Edit/Section/Downloadable/Samples.php b/dev/tests/functional/tests/app/Magento/Downloadable/Test/Block/Adminhtml/Catalog/Product/Edit/Section/Downloadable/Samples.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/Block/Adminhtml/Catalog/Product/Edit/Section/Downloadable/Samples.xml b/dev/tests/functional/tests/app/Magento/Downloadable/Test/Block/Adminhtml/Catalog/Product/Edit/Section/Downloadable/Samples.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/Block/Adminhtml/Product/Composite/Configure.php b/dev/tests/functional/tests/app/Magento/Downloadable/Test/Block/Adminhtml/Product/Composite/Configure.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/Block/Adminhtml/Product/Composite/Configure.xml b/dev/tests/functional/tests/app/Magento/Downloadable/Test/Block/Adminhtml/Product/Composite/Configure.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/Block/Adminhtml/Product/ProductForm.xml b/dev/tests/functional/tests/app/Magento/Downloadable/Test/Block/Adminhtml/Product/ProductForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/Block/Catalog/Product/View.php b/dev/tests/functional/tests/app/Magento/Downloadable/Test/Block/Catalog/Product/View.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/Block/Catalog/Product/View/Links.php b/dev/tests/functional/tests/app/Magento/Downloadable/Test/Block/Catalog/Product/View/Links.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/Block/Catalog/Product/View/Samples.php b/dev/tests/functional/tests/app/Magento/Downloadable/Test/Block/Catalog/Product/View/Samples.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/Block/Customer/Products/ListProducts.php b/dev/tests/functional/tests/app/Magento/Downloadable/Test/Block/Customer/Products/ListProducts.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/Constraint/AbstractAssertTaxCalculationAfterCheckoutDownloadable.php b/dev/tests/functional/tests/app/Magento/Downloadable/Test/Constraint/AbstractAssertTaxCalculationAfterCheckoutDownloadable.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/Constraint/AbstractAssertTaxRuleIsAppliedToAllPricesDownloadable.php b/dev/tests/functional/tests/app/Magento/Downloadable/Test/Constraint/AbstractAssertTaxRuleIsAppliedToAllPricesDownloadable.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/Constraint/AssertDownloadableDuplicateForm.php b/dev/tests/functional/tests/app/Magento/Downloadable/Test/Constraint/AssertDownloadableDuplicateForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/Constraint/AssertDownloadableLinksData.php b/dev/tests/functional/tests/app/Magento/Downloadable/Test/Constraint/AssertDownloadableLinksData.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/Constraint/AssertDownloadableProductForm.php b/dev/tests/functional/tests/app/Magento/Downloadable/Test/Constraint/AssertDownloadableProductForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/Constraint/AssertDownloadableProductInCustomerWishlistOnBackendGrid.php b/dev/tests/functional/tests/app/Magento/Downloadable/Test/Constraint/AssertDownloadableProductInCustomerWishlistOnBackendGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/Constraint/AssertDownloadableSamplesData.php b/dev/tests/functional/tests/app/Magento/Downloadable/Test/Constraint/AssertDownloadableSamplesData.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/Constraint/AssertTaxCalculationAfterCheckoutDownloadableExcludingIncludingTax.php b/dev/tests/functional/tests/app/Magento/Downloadable/Test/Constraint/AssertTaxCalculationAfterCheckoutDownloadableExcludingIncludingTax.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/Constraint/AssertTaxCalculationAfterCheckoutDownloadableExcludingTax.php b/dev/tests/functional/tests/app/Magento/Downloadable/Test/Constraint/AssertTaxCalculationAfterCheckoutDownloadableExcludingTax.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/Constraint/AssertTaxCalculationAfterCheckoutDownloadableIncludingTax.php b/dev/tests/functional/tests/app/Magento/Downloadable/Test/Constraint/AssertTaxCalculationAfterCheckoutDownloadableIncludingTax.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/Constraint/AssertTaxRuleIsAppliedToAllPricesDownloadableExcludingIncludingTax.php b/dev/tests/functional/tests/app/Magento/Downloadable/Test/Constraint/AssertTaxRuleIsAppliedToAllPricesDownloadableExcludingIncludingTax.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/Constraint/AssertTaxRuleIsAppliedToAllPricesDownloadableExcludingTax.php b/dev/tests/functional/tests/app/Magento/Downloadable/Test/Constraint/AssertTaxRuleIsAppliedToAllPricesDownloadableExcludingTax.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/Constraint/AssertTaxRuleIsAppliedToAllPricesDownloadableIncludingTax.php b/dev/tests/functional/tests/app/Magento/Downloadable/Test/Constraint/AssertTaxRuleIsAppliedToAllPricesDownloadableIncludingTax.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/Fixture/Cart/Item.php b/dev/tests/functional/tests/app/Magento/Downloadable/Test/Fixture/Cart/Item.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/Fixture/DownloadableProduct.xml b/dev/tests/functional/tests/app/Magento/Downloadable/Test/Fixture/DownloadableProduct.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/Handler/DownloadableProduct/Curl.php b/dev/tests/functional/tests/app/Magento/Downloadable/Test/Handler/DownloadableProduct/Curl.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/Handler/DownloadableProduct/DownloadableProductInterface.php b/dev/tests/functional/tests/app/Magento/Downloadable/Test/Handler/DownloadableProduct/DownloadableProductInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/Handler/DownloadableProduct/Webapi.php b/dev/tests/functional/tests/app/Magento/Downloadable/Test/Handler/DownloadableProduct/Webapi.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/Page/Adminhtml/CustomerIndexEdit.xml b/dev/tests/functional/tests/app/Magento/Downloadable/Test/Page/Adminhtml/CustomerIndexEdit.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/Page/Adminhtml/OrderCreateIndex.xml b/dev/tests/functional/tests/app/Magento/Downloadable/Test/Page/Adminhtml/OrderCreateIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/Page/DownloadableCustomerProducts.xml b/dev/tests/functional/tests/app/Magento/Downloadable/Test/Page/DownloadableCustomerProducts.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/Page/Product/CatalogProductView.xml b/dev/tests/functional/tests/app/Magento/Downloadable/Test/Page/Product/CatalogProductView.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/Repository/DownloadableProduct.xml b/dev/tests/functional/tests/app/Magento/Downloadable/Test/Repository/DownloadableProduct.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/Repository/DownloadableProduct/CheckoutData.xml b/dev/tests/functional/tests/app/Magento/Downloadable/Test/Repository/DownloadableProduct/CheckoutData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/Repository/DownloadableProduct/Links.xml b/dev/tests/functional/tests/app/Magento/Downloadable/Test/Repository/DownloadableProduct/Links.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/Repository/DownloadableProduct/Samples.xml b/dev/tests/functional/tests/app/Magento/Downloadable/Test/Repository/DownloadableProduct/Samples.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/TestCase/CreateDownloadableProductEntityTest.php b/dev/tests/functional/tests/app/Magento/Downloadable/Test/TestCase/CreateDownloadableProductEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/TestCase/CreateDownloadableProductEntityTest.xml b/dev/tests/functional/tests/app/Magento/Downloadable/Test/TestCase/CreateDownloadableProductEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/TestCase/DeleteProductEntityTest.xml b/dev/tests/functional/tests/app/Magento/Downloadable/Test/TestCase/DeleteProductEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/TestCase/DeleteProductFromMiniShoppingCartTest.xml b/dev/tests/functional/tests/app/Magento/Downloadable/Test/TestCase/DeleteProductFromMiniShoppingCartTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/TestCase/DuplicateProductEntityTest.xml b/dev/tests/functional/tests/app/Magento/Downloadable/Test/TestCase/DuplicateProductEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/TestCase/TaxCalculationTest.xml b/dev/tests/functional/tests/app/Magento/Downloadable/Test/TestCase/TaxCalculationTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/TestCase/UpdateDownloadableProductEntityTest.php b/dev/tests/functional/tests/app/Magento/Downloadable/Test/TestCase/UpdateDownloadableProductEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/TestCase/UpdateDownloadableProductEntityTest.xml b/dev/tests/functional/tests/app/Magento/Downloadable/Test/TestCase/UpdateDownloadableProductEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/TestCase/ValidateOrderOfProductTypeTest.xml b/dev/tests/functional/tests/app/Magento/Downloadable/Test/TestCase/ValidateOrderOfProductTypeTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/etc/curl/di.xml b/dev/tests/functional/tests/app/Magento/Downloadable/Test/etc/curl/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/etc/di.xml b/dev/tests/functional/tests/app/Magento/Downloadable/Test/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Downloadable/Test/etc/webapi/di.xml b/dev/tests/functional/tests/app/Magento/Downloadable/Test/etc/webapi/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Email/Test/Block/Adminhtml/Template/Edit/TemplateForm.php b/dev/tests/functional/tests/app/Magento/Email/Test/Block/Adminhtml/Template/Edit/TemplateForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Email/Test/Block/Adminhtml/Template/Edit/TemplateForm.xml b/dev/tests/functional/tests/app/Magento/Email/Test/Block/Adminhtml/Template/Edit/TemplateForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Email/Test/Constraint/AssertEmailTemplateSuccessSaveMessage.php b/dev/tests/functional/tests/app/Magento/Email/Test/Constraint/AssertEmailTemplateSuccessSaveMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Email/Test/Fixture/EmailTemplate.xml b/dev/tests/functional/tests/app/Magento/Email/Test/Fixture/EmailTemplate.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Email/Test/Page/Adminhtml/EmailTemplateIndex.xml b/dev/tests/functional/tests/app/Magento/Email/Test/Page/Adminhtml/EmailTemplateIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Email/Test/Page/Adminhtml/EmailTemplateNew.xml b/dev/tests/functional/tests/app/Magento/Email/Test/Page/Adminhtml/EmailTemplateNew.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Email/Test/TestCase/CreateEmailTemplateEntityTest.php b/dev/tests/functional/tests/app/Magento/Email/Test/TestCase/CreateEmailTemplateEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Email/Test/TestCase/CreateEmailTemplateEntityTest.xml b/dev/tests/functional/tests/app/Magento/Email/Test/TestCase/CreateEmailTemplateEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Email/Test/TestCase/NavigateMenuTest.xml b/dev/tests/functional/tests/app/Magento/Email/Test/TestCase/NavigateMenuTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Fedex/Test/Repository/ConfigData.xml b/dev/tests/functional/tests/app/Magento/Fedex/Test/Repository/ConfigData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Fedex/Test/TestCase/CityBasedShippingRateTest.xml b/dev/tests/functional/tests/app/Magento/Fedex/Test/TestCase/CityBasedShippingRateTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Fedex/Test/TestCase/OnePageCheckoutTest.xml b/dev/tests/functional/tests/app/Magento/Fedex/Test/TestCase/OnePageCheckoutTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Fedex/Test/TestCase/TrackingShipmentForPlacedOrderTest.xml b/dev/tests/functional/tests/app/Magento/Fedex/Test/TestCase/TrackingShipmentForPlacedOrderTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Adminhtml/Order/Create.php b/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Adminhtml/Order/Create.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Adminhtml/Order/Create/Form.php b/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Adminhtml/Order/Create/Form.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Adminhtml/Order/Create/Form.xml b/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Adminhtml/Order/Create/Form.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Adminhtml/Order/Create/GiftOptions.php b/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Adminhtml/Order/Create/GiftOptions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Adminhtml/Order/Create/GiftOptions.xml b/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Adminhtml/Order/Create/GiftOptions.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Adminhtml/Order/Create/Items.php b/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Adminhtml/Order/Create/Items.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Adminhtml/Order/Create/Items/ItemProduct.php b/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Adminhtml/Order/Create/Items/ItemProduct.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Adminhtml/Order/View/Form.php b/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Adminhtml/Order/View/Form.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Adminhtml/Order/View/Form.xml b/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Adminhtml/Order/View/Form.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Adminhtml/Order/View/GiftOptions.php b/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Adminhtml/Order/View/GiftOptions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Adminhtml/Order/View/GiftOptions.xml b/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Adminhtml/Order/View/GiftOptions.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Adminhtml/Order/View/Items.php b/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Adminhtml/Order/View/Items.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Adminhtml/Order/View/Items/ItemProduct.php b/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Adminhtml/Order/View/Items/ItemProduct.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Cart/GiftOptions.php b/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Cart/GiftOptions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Cart/GiftOptions/GiftMessageForm.php b/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Cart/GiftOptions/GiftMessageForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Cart/GiftOptions/GiftMessageForm.xml b/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Cart/GiftOptions/GiftMessageForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Cart/Item/GiftOptions.php b/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Cart/Item/GiftOptions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Cart/Item/GiftOptions.xml b/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Cart/Item/GiftOptions.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Message/Order/Items/View.php b/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Message/Order/Items/View.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Message/Order/View.php b/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Block/Message/Order/View.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Constraint/AssertGiftMessageInBackendOrder.php b/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Constraint/AssertGiftMessageInBackendOrder.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Constraint/AssertGiftMessageInFrontendOrder.php b/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Constraint/AssertGiftMessageInFrontendOrder.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Constraint/AssertGiftMessageInFrontendOrderItems.php b/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Constraint/AssertGiftMessageInFrontendOrderItems.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Fixture/GiftMessage.xml b/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Fixture/GiftMessage.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Fixture/GiftMessage/Items.php b/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Fixture/GiftMessage/Items.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Page/Adminhtml/OrderCreateIndex.xml b/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Page/Adminhtml/OrderCreateIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Page/Adminhtml/OrderView.xml b/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Page/Adminhtml/OrderView.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Page/CheckoutCart.xml b/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Page/CheckoutCart.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Page/CustomerOrderView.xml b/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Page/CustomerOrderView.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Repository/ConfigData.xml b/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Repository/ConfigData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Repository/GiftMessage.xml b/dev/tests/functional/tests/app/Magento/GiftMessage/Test/Repository/GiftMessage.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GiftMessage/Test/TestCase/CheckoutWithGiftMessagesTest.php b/dev/tests/functional/tests/app/Magento/GiftMessage/Test/TestCase/CheckoutWithGiftMessagesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GiftMessage/Test/TestCase/CheckoutWithGiftMessagesTest.xml b/dev/tests/functional/tests/app/Magento/GiftMessage/Test/TestCase/CheckoutWithGiftMessagesTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GiftMessage/Test/TestCase/CreateGiftMessageOnBackendTest.php b/dev/tests/functional/tests/app/Magento/GiftMessage/Test/TestCase/CreateGiftMessageOnBackendTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GiftMessage/Test/TestCase/CreateGiftMessageOnBackendTest.xml b/dev/tests/functional/tests/app/Magento/GiftMessage/Test/TestCase/CreateGiftMessageOnBackendTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GiftMessage/Test/TestStep/AddGiftMessageBackendStep.php b/dev/tests/functional/tests/app/Magento/GiftMessage/Test/TestStep/AddGiftMessageBackendStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GiftMessage/Test/TestStep/AddGiftMessageStep.php b/dev/tests/functional/tests/app/Magento/GiftMessage/Test/TestStep/AddGiftMessageStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GiftMessage/Test/etc/di.xml b/dev/tests/functional/tests/app/Magento/GiftMessage/Test/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GiftMessage/Test/etc/testcase.xml b/dev/tests/functional/tests/app/Magento/GiftMessage/Test/etc/testcase.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedImportExport/Test/Constraint/AssertImportedGroupedProducts.php b/dev/tests/functional/tests/app/Magento/GroupedImportExport/Test/Constraint/AssertImportedGroupedProducts.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedImportExport/Test/Fixture/Import/File.php b/dev/tests/functional/tests/app/Magento/GroupedImportExport/Test/Fixture/Import/File.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedImportExport/Test/TestCase/ExportProductsTest.xml b/dev/tests/functional/tests/app/Magento/GroupedImportExport/Test/TestCase/ExportProductsTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedImportExport/Test/TestCase/ImportProductsTest.xml b/dev/tests/functional/tests/app/Magento/GroupedImportExport/Test/TestCase/ImportProductsTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Block/Adminhtml/Product/Composite/Configure.php b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Block/Adminhtml/Product/Composite/Configure.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Block/Adminhtml/Product/Composite/Configure.xml b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Block/Adminhtml/Product/Composite/Configure.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Block/Adminhtml/Product/Grouped/AssociatedProducts.php b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Block/Adminhtml/Product/Grouped/AssociatedProducts.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Block/Adminhtml/Product/Grouped/AssociatedProducts/ListAssociatedProducts.php b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Block/Adminhtml/Product/Grouped/AssociatedProducts/ListAssociatedProducts.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Block/Adminhtml/Product/Grouped/AssociatedProducts/ListAssociatedProducts/Product.php b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Block/Adminhtml/Product/Grouped/AssociatedProducts/ListAssociatedProducts/Product.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Block/Adminhtml/Product/Grouped/AssociatedProducts/ListAssociatedProducts/Product.xml b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Block/Adminhtml/Product/Grouped/AssociatedProducts/ListAssociatedProducts/Product.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Block/Adminhtml/Product/Grouped/AssociatedProducts/Search/Grid.php b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Block/Adminhtml/Product/Grouped/AssociatedProducts/Search/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Block/Adminhtml/Product/ProductForm.xml b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Block/Adminhtml/Product/ProductForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Block/Cart/Sidebar.php b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Block/Cart/Sidebar.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Block/Cart/Sidebar/Item.php b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Block/Cart/Sidebar/Item.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Block/Catalog/Product/View.php b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Block/Catalog/Product/View.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Block/Catalog/Product/View/Type/Grouped.php b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Block/Catalog/Product/View/Type/Grouped.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Block/Checkout/Cart.php b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Block/Checkout/Cart.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Block/Checkout/Cart/CartItem.php b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Block/Checkout/Cart/CartItem.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Constraint/AbstractAssertPriceOnGroupedProductPage.php b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Constraint/AbstractAssertPriceOnGroupedProductPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Constraint/AbstractAssertTaxRuleIsAppliedToAllPricesOnGroupedProductPage.php b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Constraint/AbstractAssertTaxRuleIsAppliedToAllPricesOnGroupedProductPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Constraint/AssertGroupedProductForm.php b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Constraint/AssertGroupedProductForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Constraint/AssertGroupedProductInCustomerWishlistOnBackendGrid.php b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Constraint/AssertGroupedProductInCustomerWishlistOnBackendGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Constraint/AssertGroupedProductInItemsOrderedGrid.php b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Constraint/AssertGroupedProductInItemsOrderedGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Constraint/AssertGroupedProductsDefaultQty.php b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Constraint/AssertGroupedProductsDefaultQty.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Constraint/AssertProductInItemsOrderedGrid.php b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Constraint/AssertProductInItemsOrderedGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Constraint/AssertSpecialPriceOnGroupedProductPage.php b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Constraint/AssertSpecialPriceOnGroupedProductPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Constraint/AssertTaxRuleIsAppliedToAllPricesGroupedExcludingIncludingTax.php b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Constraint/AssertTaxRuleIsAppliedToAllPricesGroupedExcludingIncludingTax.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Constraint/AssertTierPriceOnGroupedProductPage.php b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Constraint/AssertTierPriceOnGroupedProductPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Fixture/Cart/Item.php b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Fixture/Cart/Item.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Fixture/GroupedProduct.xml b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Fixture/GroupedProduct.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Fixture/GroupedProduct/Associated.php b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Fixture/GroupedProduct/Associated.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Handler/GroupedProduct/Curl.php b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Handler/GroupedProduct/Curl.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Handler/GroupedProduct/GroupedProductInterface.php b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Handler/GroupedProduct/GroupedProductInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Handler/GroupedProduct/Webapi.php b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Handler/GroupedProduct/Webapi.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Page/Adminhtml/CustomerIndexEdit.xml b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Page/Adminhtml/CustomerIndexEdit.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Page/Adminhtml/OrderCreateIndex.xml b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Page/Adminhtml/OrderCreateIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Page/CheckoutCart.xml b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Page/CheckoutCart.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Page/CmsIndex.xml b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Page/CmsIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Page/Product/CatalogProductView.xml b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Page/Product/CatalogProductView.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Repository/GroupedProduct.xml b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Repository/GroupedProduct.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Repository/GroupedProduct/Associated.xml b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Repository/GroupedProduct/Associated.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Repository/GroupedProduct/CheckoutData.xml b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Repository/GroupedProduct/CheckoutData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Repository/GroupedProduct/Price.xml b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/Repository/GroupedProduct/Price.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/TestCase/CreateGroupedProductEntityTest.php b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/TestCase/CreateGroupedProductEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/TestCase/CreateGroupedProductEntityTest.xml b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/TestCase/CreateGroupedProductEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/TestCase/DeleteProductEntityTest.xml b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/TestCase/DeleteProductEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/TestCase/DeleteProductFromMiniShoppingCartTest.xml b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/TestCase/DeleteProductFromMiniShoppingCartTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/TestCase/MoveRecentlyComparedProductsOnOrderPageTest.xml b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/TestCase/MoveRecentlyComparedProductsOnOrderPageTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/TestCase/TaxCalculationTest.xml b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/TestCase/TaxCalculationTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/TestCase/UpdateGroupedProductEntityTest.php b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/TestCase/UpdateGroupedProductEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/TestCase/UpdateGroupedProductEntityTest.xml b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/TestCase/UpdateGroupedProductEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/TestCase/ValidateOrderOfProductTypeTest.xml b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/TestCase/ValidateOrderOfProductTypeTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/etc/curl/di.xml b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/etc/curl/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/etc/di.xml b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/etc/webapi/di.xml b/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/etc/webapi/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ImportExport/Mtf/Util/Import/File/CsvTemplate.php b/dev/tests/functional/tests/app/Magento/ImportExport/Mtf/Util/Import/File/CsvTemplate.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ImportExport/Test/Block/Adminhtml/Export/Edit/Form.php b/dev/tests/functional/tests/app/Magento/ImportExport/Test/Block/Adminhtml/Export/Edit/Form.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ImportExport/Test/Block/Adminhtml/Export/Edit/Form.xml b/dev/tests/functional/tests/app/Magento/ImportExport/Test/Block/Adminhtml/Export/Edit/Form.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ImportExport/Test/Block/Adminhtml/Export/Filter.php b/dev/tests/functional/tests/app/Magento/ImportExport/Test/Block/Adminhtml/Export/Filter.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ImportExport/Test/Block/Adminhtml/Import/Edit/CustomForm.php b/dev/tests/functional/tests/app/Magento/ImportExport/Test/Block/Adminhtml/Import/Edit/CustomForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ImportExport/Test/Block/Adminhtml/Import/Edit/CustomForm.xml b/dev/tests/functional/tests/app/Magento/ImportExport/Test/Block/Adminhtml/Import/Edit/CustomForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ImportExport/Test/Block/Adminhtml/Import/Edit/Form.php b/dev/tests/functional/tests/app/Magento/ImportExport/Test/Block/Adminhtml/Import/Edit/Form.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ImportExport/Test/Block/Adminhtml/Import/Edit/Form.xml b/dev/tests/functional/tests/app/Magento/ImportExport/Test/Block/Adminhtml/Import/Edit/Form.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ImportExport/Test/Block/Adminhtml/Import/FormPageActions.php b/dev/tests/functional/tests/app/Magento/ImportExport/Test/Block/Adminhtml/Import/FormPageActions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ImportExport/Test/Block/Adminhtml/Import/Frame/Result.php b/dev/tests/functional/tests/app/Magento/ImportExport/Test/Block/Adminhtml/Import/Frame/Result.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ImportExport/Test/Block/Adminhtml/Import/Messages.php b/dev/tests/functional/tests/app/Magento/ImportExport/Test/Block/Adminhtml/Import/Messages.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ImportExport/Test/Constraint/AssertExportNoDataErrorMessage.php b/dev/tests/functional/tests/app/Magento/ImportExport/Test/Constraint/AssertExportNoDataErrorMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ImportExport/Test/Constraint/AssertImportCheckData.php b/dev/tests/functional/tests/app/Magento/ImportExport/Test/Constraint/AssertImportCheckData.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ImportExport/Test/Constraint/AssertImportCheckDataErrorMessage.php b/dev/tests/functional/tests/app/Magento/ImportExport/Test/Constraint/AssertImportCheckDataErrorMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ImportExport/Test/Constraint/AssertImportCheckDataErrorMessagesList.php b/dev/tests/functional/tests/app/Magento/ImportExport/Test/Constraint/AssertImportCheckDataErrorMessagesList.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ImportExport/Test/Constraint/AssertImportSuccessMessage.php b/dev/tests/functional/tests/app/Magento/ImportExport/Test/Constraint/AssertImportSuccessMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ImportExport/Test/Constraint/AssertProductAttributeAbsenceForExport.php b/dev/tests/functional/tests/app/Magento/ImportExport/Test/Constraint/AssertProductAttributeAbsenceForExport.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ImportExport/Test/Fixture/ExportData.xml b/dev/tests/functional/tests/app/Magento/ImportExport/Test/Fixture/ExportData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ImportExport/Test/Fixture/ExportData/DataExport.php b/dev/tests/functional/tests/app/Magento/ImportExport/Test/Fixture/ExportData/DataExport.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ImportExport/Test/Fixture/Import/File.php b/dev/tests/functional/tests/app/Magento/ImportExport/Test/Fixture/Import/File.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ImportExport/Test/Fixture/ImportData.xml b/dev/tests/functional/tests/app/Magento/ImportExport/Test/Fixture/ImportData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ImportExport/Test/Page/Adminhtml/AdminExportIndex.xml b/dev/tests/functional/tests/app/Magento/ImportExport/Test/Page/Adminhtml/AdminExportIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ImportExport/Test/Page/Adminhtml/AdminImportIndex.xml b/dev/tests/functional/tests/app/Magento/ImportExport/Test/Page/Adminhtml/AdminImportIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ImportExport/Test/Repository/ExportData.xml b/dev/tests/functional/tests/app/Magento/ImportExport/Test/Repository/ExportData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ImportExport/Test/TestCase/ImportDataNegativeTest.php b/dev/tests/functional/tests/app/Magento/ImportExport/Test/TestCase/ImportDataNegativeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ImportExport/Test/TestCase/ImportDataTest.php b/dev/tests/functional/tests/app/Magento/ImportExport/Test/TestCase/ImportDataTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ImportExport/Test/TestCase/NavigateMenuTest.xml b/dev/tests/functional/tests/app/Magento/ImportExport/Test/TestCase/NavigateMenuTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ImportExport/Test/TestStep/ChangeCurrencyOnCustomWebsiteStep.php b/dev/tests/functional/tests/app/Magento/ImportExport/Test/TestStep/ChangeCurrencyOnCustomWebsiteStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ImportExport/Test/TestStep/CheckResultMessageStep.php b/dev/tests/functional/tests/app/Magento/ImportExport/Test/TestStep/CheckResultMessageStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ImportExport/Test/TestStep/ClickCheckDataStep.php b/dev/tests/functional/tests/app/Magento/ImportExport/Test/TestStep/ClickCheckDataStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ImportExport/Test/TestStep/ClickImportDataStep.php b/dev/tests/functional/tests/app/Magento/ImportExport/Test/TestStep/ClickImportDataStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ImportExport/Test/TestStep/FillImportFormStep.php b/dev/tests/functional/tests/app/Magento/ImportExport/Test/TestStep/FillImportFormStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ImportExport/Test/TestStep/OpenImportIndexStep.php b/dev/tests/functional/tests/app/Magento/ImportExport/Test/TestStep/OpenImportIndexStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ImportExport/Test/etc/di.xml b/dev/tests/functional/tests/app/Magento/ImportExport/Test/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ImportExport/Test/etc/testcase.xml b/dev/tests/functional/tests/app/Magento/ImportExport/Test/etc/testcase.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Indexer/Test/Block/Adminhtml/IndexManagement/Grid.php b/dev/tests/functional/tests/app/Magento/Indexer/Test/Block/Adminhtml/IndexManagement/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Indexer/Test/Constraint/AssertIndexerStatus.php b/dev/tests/functional/tests/app/Magento/Indexer/Test/Constraint/AssertIndexerStatus.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Indexer/Test/Constraint/AssertUpdateByScheduleSuccessSaveMessage.php b/dev/tests/functional/tests/app/Magento/Indexer/Test/Constraint/AssertUpdateByScheduleSuccessSaveMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Indexer/Test/Page/Adminhtml/IndexManagement.xml b/dev/tests/functional/tests/app/Magento/Indexer/Test/Page/Adminhtml/IndexManagement.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Indexer/Test/TestCase/CreateCatalogRulesIndexerTest.php b/dev/tests/functional/tests/app/Magento/Indexer/Test/TestCase/CreateCatalogRulesIndexerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Indexer/Test/TestCase/CreateCatalogRulesIndexerTest.xml b/dev/tests/functional/tests/app/Magento/Indexer/Test/TestCase/CreateCatalogRulesIndexerTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Indexer/Test/TestCase/NavigateMenuTest.xml b/dev/tests/functional/tests/app/Magento/Indexer/Test/TestCase/NavigateMenuTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Indexer/Test/TestStep/ReindexStep.php b/dev/tests/functional/tests/app/Magento/Indexer/Test/TestStep/ReindexStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Install/Test/Block/CreateAdmin.php b/dev/tests/functional/tests/app/Magento/Install/Test/Block/CreateAdmin.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Install/Test/Block/CreateAdmin.xml b/dev/tests/functional/tests/app/Magento/Install/Test/Block/CreateAdmin.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Install/Test/Block/CustomizeStore.php b/dev/tests/functional/tests/app/Magento/Install/Test/Block/CustomizeStore.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Install/Test/Block/CustomizeStore.xml b/dev/tests/functional/tests/app/Magento/Install/Test/Block/CustomizeStore.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Install/Test/Block/Database.php b/dev/tests/functional/tests/app/Magento/Install/Test/Block/Database.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Install/Test/Block/Database.xml b/dev/tests/functional/tests/app/Magento/Install/Test/Block/Database.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Install/Test/Block/Devdocs.php b/dev/tests/functional/tests/app/Magento/Install/Test/Block/Devdocs.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Install/Test/Block/Install.php b/dev/tests/functional/tests/app/Magento/Install/Test/Block/Install.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Install/Test/Block/Landing.php b/dev/tests/functional/tests/app/Magento/Install/Test/Block/Landing.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Install/Test/Block/License.php b/dev/tests/functional/tests/app/Magento/Install/Test/Block/License.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Install/Test/Block/Readiness.php b/dev/tests/functional/tests/app/Magento/Install/Test/Block/Readiness.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Install/Test/Block/WebConfiguration.php b/dev/tests/functional/tests/app/Magento/Install/Test/Block/WebConfiguration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Install/Test/Block/WebConfiguration.xml b/dev/tests/functional/tests/app/Magento/Install/Test/Block/WebConfiguration.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Install/Test/Constraint/AssertAdminUriAutogenerated.php b/dev/tests/functional/tests/app/Magento/Install/Test/Constraint/AssertAdminUriAutogenerated.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Install/Test/Constraint/AssertAgreementTextPresent.php b/dev/tests/functional/tests/app/Magento/Install/Test/Constraint/AssertAgreementTextPresent.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Install/Test/Constraint/AssertCurrencySelected.php b/dev/tests/functional/tests/app/Magento/Install/Test/Constraint/AssertCurrencySelected.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Install/Test/Constraint/AssertDevdocsLink.php b/dev/tests/functional/tests/app/Magento/Install/Test/Constraint/AssertDevdocsLink.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Install/Test/Constraint/AssertGenerationFilePathCheck.php b/dev/tests/functional/tests/app/Magento/Install/Test/Constraint/AssertGenerationFilePathCheck.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Install/Test/Constraint/AssertKeyCreated.php b/dev/tests/functional/tests/app/Magento/Install/Test/Constraint/AssertKeyCreated.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Install/Test/Constraint/AssertLanguageSelected.php b/dev/tests/functional/tests/app/Magento/Install/Test/Constraint/AssertLanguageSelected.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Install/Test/Constraint/AssertRewritesEnabled.php b/dev/tests/functional/tests/app/Magento/Install/Test/Constraint/AssertRewritesEnabled.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Install/Test/Constraint/AssertSecureUrlEnabled.php b/dev/tests/functional/tests/app/Magento/Install/Test/Constraint/AssertSecureUrlEnabled.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Install/Test/Constraint/AssertSuccessInstall.php b/dev/tests/functional/tests/app/Magento/Install/Test/Constraint/AssertSuccessInstall.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Install/Test/Constraint/AssertSuccessfulReadinessCheck.php b/dev/tests/functional/tests/app/Magento/Install/Test/Constraint/AssertSuccessfulReadinessCheck.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Install/Test/Fixture/Install.xml b/dev/tests/functional/tests/app/Magento/Install/Test/Fixture/Install.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Install/Test/Page/DevdocsInstall.xml b/dev/tests/functional/tests/app/Magento/Install/Test/Page/DevdocsInstall.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Install/Test/Page/Install.xml b/dev/tests/functional/tests/app/Magento/Install/Test/Page/Install.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Install/Test/TestCase/InstallTest.php b/dev/tests/functional/tests/app/Magento/Install/Test/TestCase/InstallTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Install/Test/TestCase/InstallTest.xml b/dev/tests/functional/tests/app/Magento/Install/Test/TestCase/InstallTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Install/Test/etc/di.xml b/dev/tests/functional/tests/app/Magento/Install/Test/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Integration/Test/Block/Adminhtml/Integration/Edit/IntegrationForm.php b/dev/tests/functional/tests/app/Magento/Integration/Test/Block/Adminhtml/Integration/Edit/IntegrationForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Integration/Test/Block/Adminhtml/Integration/Edit/IntegrationForm.xml b/dev/tests/functional/tests/app/Magento/Integration/Test/Block/Adminhtml/Integration/Edit/IntegrationForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Integration/Test/Block/Adminhtml/Integration/Edit/IntegrationFormPageActions.php b/dev/tests/functional/tests/app/Magento/Integration/Test/Block/Adminhtml/Integration/Edit/IntegrationFormPageActions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Integration/Test/Block/Adminhtml/Integration/Edit/Tab/Api.php b/dev/tests/functional/tests/app/Magento/Integration/Test/Block/Adminhtml/Integration/Edit/Tab/Api.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Integration/Test/Block/Adminhtml/Integration/IntegrationGrid.php b/dev/tests/functional/tests/app/Magento/Integration/Test/Block/Adminhtml/Integration/IntegrationGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Integration/Test/Block/Adminhtml/Integration/IntegrationGrid/DeleteDialog.php b/dev/tests/functional/tests/app/Magento/Integration/Test/Block/Adminhtml/Integration/IntegrationGrid/DeleteDialog.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Integration/Test/Block/Adminhtml/Integration/IntegrationGrid/ResourcesPopup.php b/dev/tests/functional/tests/app/Magento/Integration/Test/Block/Adminhtml/Integration/IntegrationGrid/ResourcesPopup.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Integration/Test/Block/Adminhtml/Integration/IntegrationGrid/ResourcesPopup.xml b/dev/tests/functional/tests/app/Magento/Integration/Test/Block/Adminhtml/Integration/IntegrationGrid/ResourcesPopup.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Integration/Test/Block/Adminhtml/Integration/IntegrationGrid/TokensPopup.php b/dev/tests/functional/tests/app/Magento/Integration/Test/Block/Adminhtml/Integration/IntegrationGrid/TokensPopup.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Integration/Test/Block/Adminhtml/Integration/IntegrationGrid/TokensPopup.xml b/dev/tests/functional/tests/app/Magento/Integration/Test/Block/Adminhtml/Integration/IntegrationGrid/TokensPopup.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Integration/Test/Constraint/AssertEmailValidationErrorGenerated.php b/dev/tests/functional/tests/app/Magento/Integration/Test/Constraint/AssertEmailValidationErrorGenerated.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Integration/Test/Constraint/AssertIncorrectUserPassword.php b/dev/tests/functional/tests/app/Magento/Integration/Test/Constraint/AssertIncorrectUserPassword.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Integration/Test/Constraint/AssertIntegrationForm.php b/dev/tests/functional/tests/app/Magento/Integration/Test/Constraint/AssertIntegrationForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Integration/Test/Constraint/AssertIntegrationInGrid.php b/dev/tests/functional/tests/app/Magento/Integration/Test/Constraint/AssertIntegrationInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Integration/Test/Constraint/AssertIntegrationNameDuplicationErrorMessage.php b/dev/tests/functional/tests/app/Magento/Integration/Test/Constraint/AssertIntegrationNameDuplicationErrorMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Integration/Test/Constraint/AssertIntegrationNotInGrid.php b/dev/tests/functional/tests/app/Magento/Integration/Test/Constraint/AssertIntegrationNotInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Integration/Test/Constraint/AssertIntegrationResourcesPopup.php b/dev/tests/functional/tests/app/Magento/Integration/Test/Constraint/AssertIntegrationResourcesPopup.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Integration/Test/Constraint/AssertIntegrationSuccessActivationMessage.php b/dev/tests/functional/tests/app/Magento/Integration/Test/Constraint/AssertIntegrationSuccessActivationMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Integration/Test/Constraint/AssertIntegrationSuccessDeleteMessage.php b/dev/tests/functional/tests/app/Magento/Integration/Test/Constraint/AssertIntegrationSuccessDeleteMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Integration/Test/Constraint/AssertIntegrationSuccessReauthorizeMessage.php b/dev/tests/functional/tests/app/Magento/Integration/Test/Constraint/AssertIntegrationSuccessReauthorizeMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Integration/Test/Constraint/AssertIntegrationSuccessSaveMessage.php b/dev/tests/functional/tests/app/Magento/Integration/Test/Constraint/AssertIntegrationSuccessSaveMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Integration/Test/Constraint/AssertIntegrationSuccessSaveMessageNotPresent.php b/dev/tests/functional/tests/app/Magento/Integration/Test/Constraint/AssertIntegrationSuccessSaveMessageNotPresent.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Integration/Test/Constraint/AssertIntegrationTokensAfterReauthorize.php b/dev/tests/functional/tests/app/Magento/Integration/Test/Constraint/AssertIntegrationTokensAfterReauthorize.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Integration/Test/Constraint/AssertIntegrationTokensPopup.php b/dev/tests/functional/tests/app/Magento/Integration/Test/Constraint/AssertIntegrationTokensPopup.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Integration/Test/Constraint/AssertNoAlertPopup.php b/dev/tests/functional/tests/app/Magento/Integration/Test/Constraint/AssertNoAlertPopup.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Integration/Test/Fixture/Integration.xml b/dev/tests/functional/tests/app/Magento/Integration/Test/Fixture/Integration.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Integration/Test/Handler/Integration/Curl.php b/dev/tests/functional/tests/app/Magento/Integration/Test/Handler/Integration/Curl.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Integration/Test/Handler/Integration/IntegrationInterface.php b/dev/tests/functional/tests/app/Magento/Integration/Test/Handler/Integration/IntegrationInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Integration/Test/Page/Adminhtml/IntegrationIndex.xml b/dev/tests/functional/tests/app/Magento/Integration/Test/Page/Adminhtml/IntegrationIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Integration/Test/Page/Adminhtml/IntegrationNew.xml b/dev/tests/functional/tests/app/Magento/Integration/Test/Page/Adminhtml/IntegrationNew.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Integration/Test/Repository/Integration.xml b/dev/tests/functional/tests/app/Magento/Integration/Test/Repository/Integration.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Integration/Test/TestCase/ActivateIntegrationEntityTest.php b/dev/tests/functional/tests/app/Magento/Integration/Test/TestCase/ActivateIntegrationEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Integration/Test/TestCase/ActivateIntegrationEntityTest.xml b/dev/tests/functional/tests/app/Magento/Integration/Test/TestCase/ActivateIntegrationEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Integration/Test/TestCase/CreateIntegrationEntityTest.php b/dev/tests/functional/tests/app/Magento/Integration/Test/TestCase/CreateIntegrationEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Integration/Test/TestCase/CreateIntegrationEntityTest.xml b/dev/tests/functional/tests/app/Magento/Integration/Test/TestCase/CreateIntegrationEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Integration/Test/TestCase/CreateIntegrationWithDuplicatedNameTest.php b/dev/tests/functional/tests/app/Magento/Integration/Test/TestCase/CreateIntegrationWithDuplicatedNameTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Integration/Test/TestCase/CreateIntegrationWithDuplicatedNameTest.xml b/dev/tests/functional/tests/app/Magento/Integration/Test/TestCase/CreateIntegrationWithDuplicatedNameTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Integration/Test/TestCase/DeleteIntegrationEntityTest.php b/dev/tests/functional/tests/app/Magento/Integration/Test/TestCase/DeleteIntegrationEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Integration/Test/TestCase/DeleteIntegrationEntityTest.xml b/dev/tests/functional/tests/app/Magento/Integration/Test/TestCase/DeleteIntegrationEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Integration/Test/TestCase/NavigateMenuTest.xml b/dev/tests/functional/tests/app/Magento/Integration/Test/TestCase/NavigateMenuTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Integration/Test/TestCase/ReAuthorizeTokensIntegrationEntityTest.php b/dev/tests/functional/tests/app/Magento/Integration/Test/TestCase/ReAuthorizeTokensIntegrationEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Integration/Test/TestCase/ReAuthorizeTokensIntegrationEntityTest.xml b/dev/tests/functional/tests/app/Magento/Integration/Test/TestCase/ReAuthorizeTokensIntegrationEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Integration/Test/TestCase/UpdateIntegrationEntityTest.php b/dev/tests/functional/tests/app/Magento/Integration/Test/TestCase/UpdateIntegrationEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Integration/Test/TestCase/UpdateIntegrationEntityTest.xml b/dev/tests/functional/tests/app/Magento/Integration/Test/TestCase/UpdateIntegrationEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Integration/Test/etc/curl/di.xml b/dev/tests/functional/tests/app/Magento/Integration/Test/etc/curl/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Integration/Test/etc/di.xml b/dev/tests/functional/tests/app/Magento/Integration/Test/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/LayeredNavigation/Test/Block/Navigation.php b/dev/tests/functional/tests/app/Magento/LayeredNavigation/Test/Block/Navigation.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/LayeredNavigation/Test/Constraint/AssertCategoryLayeredNavigation.php b/dev/tests/functional/tests/app/Magento/LayeredNavigation/Test/Constraint/AssertCategoryLayeredNavigation.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/LayeredNavigation/Test/Constraint/AssertCategorySortingOnFilteredProductList.php b/dev/tests/functional/tests/app/Magento/LayeredNavigation/Test/Constraint/AssertCategorySortingOnFilteredProductList.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/LayeredNavigation/Test/Constraint/AssertFilterProductList.php b/dev/tests/functional/tests/app/Magento/LayeredNavigation/Test/Constraint/AssertFilterProductList.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/LayeredNavigation/Test/Constraint/AssertProductsCount.php b/dev/tests/functional/tests/app/Magento/LayeredNavigation/Test/Constraint/AssertProductsCount.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/LayeredNavigation/Test/Page/Category/CatalogCategoryView.xml b/dev/tests/functional/tests/app/Magento/LayeredNavigation/Test/Page/Category/CatalogCategoryView.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/LayeredNavigation/Test/Repository/Category.xml b/dev/tests/functional/tests/app/Magento/LayeredNavigation/Test/Repository/Category.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/LayeredNavigation/Test/Repository/ConfigData.xml b/dev/tests/functional/tests/app/Magento/LayeredNavigation/Test/Repository/ConfigData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/LayeredNavigation/Test/TestCase/FilterProductListTest.php b/dev/tests/functional/tests/app/Magento/LayeredNavigation/Test/TestCase/FilterProductListTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/LayeredNavigation/Test/TestCase/FilterProductListTest.xml b/dev/tests/functional/tests/app/Magento/LayeredNavigation/Test/TestCase/FilterProductListTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/LayeredNavigation/Test/TestCase/ProductsCountInLayeredNavigationTest.php b/dev/tests/functional/tests/app/Magento/LayeredNavigation/Test/TestCase/ProductsCountInLayeredNavigationTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/LayeredNavigation/Test/TestCase/ProductsCountInLayeredNavigationTest.xml b/dev/tests/functional/tests/app/Magento/LayeredNavigation/Test/TestCase/ProductsCountInLayeredNavigationTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Msrp/Test/Block/Product/ListProduct.php b/dev/tests/functional/tests/app/Magento/Msrp/Test/Block/Product/ListProduct.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Msrp/Test/Block/Product/Map.php b/dev/tests/functional/tests/app/Magento/Msrp/Test/Block/Product/Map.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Msrp/Test/Block/Product/ProductList/ProductItem.php b/dev/tests/functional/tests/app/Magento/Msrp/Test/Block/Product/ProductList/ProductItem.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Msrp/Test/Block/Product/View.php b/dev/tests/functional/tests/app/Magento/Msrp/Test/Block/Product/View.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Msrp/Test/Constraint/AssertMapOnCategoryPage.php b/dev/tests/functional/tests/app/Magento/Msrp/Test/Constraint/AssertMapOnCategoryPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Msrp/Test/Constraint/AssertMapOnProductView.php b/dev/tests/functional/tests/app/Magento/Msrp/Test/Constraint/AssertMapOnProductView.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Msrp/Test/Constraint/AssertMsrpInShoppingCart.php b/dev/tests/functional/tests/app/Magento/Msrp/Test/Constraint/AssertMsrpInShoppingCart.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Msrp/Test/Constraint/AssertMsrpOnCategoryPage.php b/dev/tests/functional/tests/app/Magento/Msrp/Test/Constraint/AssertMsrpOnCategoryPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Msrp/Test/Constraint/AssertMsrpOnProductView.php b/dev/tests/functional/tests/app/Magento/Msrp/Test/Constraint/AssertMsrpOnProductView.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Msrp/Test/Constraint/AssertProductEditPageAdvancedPricingFields.php b/dev/tests/functional/tests/app/Magento/Msrp/Test/Constraint/AssertProductEditPageAdvancedPricingFields.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Msrp/Test/Page/Category/CatalogCategoryView.xml b/dev/tests/functional/tests/app/Magento/Msrp/Test/Page/Category/CatalogCategoryView.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Msrp/Test/Page/Product/CatalogProductView.xml b/dev/tests/functional/tests/app/Magento/Msrp/Test/Page/Product/CatalogProductView.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Msrp/Test/Repository/CatalogProductSimple.xml b/dev/tests/functional/tests/app/Magento/Msrp/Test/Repository/CatalogProductSimple.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Msrp/Test/Repository/ConfigData.xml b/dev/tests/functional/tests/app/Magento/Msrp/Test/Repository/ConfigData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Msrp/Test/Repository/ConfigurableProduct.xml b/dev/tests/functional/tests/app/Magento/Msrp/Test/Repository/ConfigurableProduct.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Msrp/Test/TestCase/ApplyMapTest.php b/dev/tests/functional/tests/app/Magento/Msrp/Test/TestCase/ApplyMapTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Msrp/Test/TestCase/ApplyMapTest.xml b/dev/tests/functional/tests/app/Magento/Msrp/Test/TestCase/ApplyMapTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Multishipping/Test/Block/Checkout/Addresses.php b/dev/tests/functional/tests/app/Magento/Multishipping/Test/Block/Checkout/Addresses.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Multishipping/Test/Block/Checkout/Billing.php b/dev/tests/functional/tests/app/Magento/Multishipping/Test/Block/Checkout/Billing.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Multishipping/Test/Block/Checkout/Link.php b/dev/tests/functional/tests/app/Magento/Multishipping/Test/Block/Checkout/Link.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Multishipping/Test/Block/Checkout/Overview.php b/dev/tests/functional/tests/app/Magento/Multishipping/Test/Block/Checkout/Overview.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Multishipping/Test/Block/Checkout/Shipping.php b/dev/tests/functional/tests/app/Magento/Multishipping/Test/Block/Checkout/Shipping.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Multishipping/Test/Block/Checkout/Success.php b/dev/tests/functional/tests/app/Magento/Multishipping/Test/Block/Checkout/Success.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Multishipping/Test/Constraint/AssertMultishippingOrderSuccessPlacedMessage.php b/dev/tests/functional/tests/app/Magento/Multishipping/Test/Constraint/AssertMultishippingOrderSuccessPlacedMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Multishipping/Test/Page/CheckoutCart.xml b/dev/tests/functional/tests/app/Magento/Multishipping/Test/Page/CheckoutCart.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Multishipping/Test/Page/MultishippingCheckoutAddressNewShipping.php b/dev/tests/functional/tests/app/Magento/Multishipping/Test/Page/MultishippingCheckoutAddressNewShipping.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Multishipping/Test/Page/MultishippingCheckoutAddresses.xml b/dev/tests/functional/tests/app/Magento/Multishipping/Test/Page/MultishippingCheckoutAddresses.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Multishipping/Test/Page/MultishippingCheckoutBilling.xml b/dev/tests/functional/tests/app/Magento/Multishipping/Test/Page/MultishippingCheckoutBilling.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Multishipping/Test/Page/MultishippingCheckoutCart.php b/dev/tests/functional/tests/app/Magento/Multishipping/Test/Page/MultishippingCheckoutCart.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Multishipping/Test/Page/MultishippingCheckoutLogin.php b/dev/tests/functional/tests/app/Magento/Multishipping/Test/Page/MultishippingCheckoutLogin.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Multishipping/Test/Page/MultishippingCheckoutOverview.xml b/dev/tests/functional/tests/app/Magento/Multishipping/Test/Page/MultishippingCheckoutOverview.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Multishipping/Test/Page/MultishippingCheckoutRegister.php b/dev/tests/functional/tests/app/Magento/Multishipping/Test/Page/MultishippingCheckoutRegister.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Multishipping/Test/Page/MultishippingCheckoutShipping.xml b/dev/tests/functional/tests/app/Magento/Multishipping/Test/Page/MultishippingCheckoutShipping.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Multishipping/Test/Page/MultishippingCheckoutSuccess.xml b/dev/tests/functional/tests/app/Magento/Multishipping/Test/Page/MultishippingCheckoutSuccess.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Multishipping/Test/TestStep/FillCustomerAddressesStep.php b/dev/tests/functional/tests/app/Magento/Multishipping/Test/TestStep/FillCustomerAddressesStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Multishipping/Test/TestStep/FillShippingInformationStep.php b/dev/tests/functional/tests/app/Magento/Multishipping/Test/TestStep/FillShippingInformationStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Multishipping/Test/TestStep/PlaceOrderStep.php b/dev/tests/functional/tests/app/Magento/Multishipping/Test/TestStep/PlaceOrderStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Multishipping/Test/TestStep/ProceedToMultipleAddressCheckoutStep.php b/dev/tests/functional/tests/app/Magento/Multishipping/Test/TestStep/ProceedToMultipleAddressCheckoutStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Multishipping/Test/TestStep/SelectPaymentMethodStep.php b/dev/tests/functional/tests/app/Magento/Multishipping/Test/TestStep/SelectPaymentMethodStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Multishipping/Test/etc/di.xml b/dev/tests/functional/tests/app/Magento/Multishipping/Test/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Newsletter/Test/Block/Adminhtml/Queue/Edit/QueueForm.php b/dev/tests/functional/tests/app/Magento/Newsletter/Test/Block/Adminhtml/Queue/Edit/QueueForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Newsletter/Test/Block/Adminhtml/Queue/Edit/QueueForm.xml b/dev/tests/functional/tests/app/Magento/Newsletter/Test/Block/Adminhtml/Queue/Edit/QueueForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Newsletter/Test/Block/Adminhtml/Queue/Grid.php b/dev/tests/functional/tests/app/Magento/Newsletter/Test/Block/Adminhtml/Queue/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Newsletter/Test/Block/Adminhtml/Subscriber/Grid.php b/dev/tests/functional/tests/app/Magento/Newsletter/Test/Block/Adminhtml/Subscriber/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Newsletter/Test/Block/Adminhtml/Template/FormPageActions.php b/dev/tests/functional/tests/app/Magento/Newsletter/Test/Block/Adminhtml/Template/FormPageActions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Newsletter/Test/Block/Adminhtml/Template/Grid.php b/dev/tests/functional/tests/app/Magento/Newsletter/Test/Block/Adminhtml/Template/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Newsletter/Test/Block/Adminhtml/Template/GridPageActions.php b/dev/tests/functional/tests/app/Magento/Newsletter/Test/Block/Adminhtml/Template/GridPageActions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Newsletter/Test/Block/Adminhtml/Template/Preview.php b/dev/tests/functional/tests/app/Magento/Newsletter/Test/Block/Adminhtml/Template/Preview.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Newsletter/Test/Constraint/AssertCustomerIsSubscribedToNewsletter.php b/dev/tests/functional/tests/app/Magento/Newsletter/Test/Constraint/AssertCustomerIsSubscribedToNewsletter.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Newsletter/Test/Constraint/AssertNewsletterForm.php b/dev/tests/functional/tests/app/Magento/Newsletter/Test/Constraint/AssertNewsletterForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Newsletter/Test/Constraint/AssertNewsletterInGrid.php b/dev/tests/functional/tests/app/Magento/Newsletter/Test/Constraint/AssertNewsletterInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Newsletter/Test/Constraint/AssertNewsletterPreview.php b/dev/tests/functional/tests/app/Magento/Newsletter/Test/Constraint/AssertNewsletterPreview.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Newsletter/Test/Constraint/AssertNewsletterQueue.php b/dev/tests/functional/tests/app/Magento/Newsletter/Test/Constraint/AssertNewsletterQueue.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Newsletter/Test/Constraint/AssertNewsletterQueueForm.php b/dev/tests/functional/tests/app/Magento/Newsletter/Test/Constraint/AssertNewsletterQueueForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Newsletter/Test/Constraint/AssertNewsletterQueueInGrid.php b/dev/tests/functional/tests/app/Magento/Newsletter/Test/Constraint/AssertNewsletterQueueInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Newsletter/Test/Constraint/AssertNewsletterQueueSaveMessage.php b/dev/tests/functional/tests/app/Magento/Newsletter/Test/Constraint/AssertNewsletterQueueSaveMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Newsletter/Test/Constraint/AssertNewsletterSuccessCreateMessage.php b/dev/tests/functional/tests/app/Magento/Newsletter/Test/Constraint/AssertNewsletterSuccessCreateMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Newsletter/Test/Fixture/Queue.xml b/dev/tests/functional/tests/app/Magento/Newsletter/Test/Fixture/Queue.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Newsletter/Test/Fixture/Queue/Stores.php b/dev/tests/functional/tests/app/Magento/Newsletter/Test/Fixture/Queue/Stores.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Newsletter/Test/Fixture/Template.xml b/dev/tests/functional/tests/app/Magento/Newsletter/Test/Fixture/Template.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Newsletter/Test/Handler/Template/Curl.php b/dev/tests/functional/tests/app/Magento/Newsletter/Test/Handler/Template/Curl.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Newsletter/Test/Handler/Template/TemplateInterface.php b/dev/tests/functional/tests/app/Magento/Newsletter/Test/Handler/Template/TemplateInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Newsletter/Test/Page/Adminhtml/SubscriberIndex.xml b/dev/tests/functional/tests/app/Magento/Newsletter/Test/Page/Adminhtml/SubscriberIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Newsletter/Test/Page/Adminhtml/TemplateEdit.xml b/dev/tests/functional/tests/app/Magento/Newsletter/Test/Page/Adminhtml/TemplateEdit.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Newsletter/Test/Page/Adminhtml/TemplateIndex.xml b/dev/tests/functional/tests/app/Magento/Newsletter/Test/Page/Adminhtml/TemplateIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Newsletter/Test/Page/Adminhtml/TemplateNewIndex.xml b/dev/tests/functional/tests/app/Magento/Newsletter/Test/Page/Adminhtml/TemplateNewIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Newsletter/Test/Page/Adminhtml/TemplatePreview.xml b/dev/tests/functional/tests/app/Magento/Newsletter/Test/Page/Adminhtml/TemplatePreview.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Newsletter/Test/Page/Adminhtml/TemplateQueue.xml b/dev/tests/functional/tests/app/Magento/Newsletter/Test/Page/Adminhtml/TemplateQueue.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Newsletter/Test/Page/Adminhtml/TemplateQueueIndex.xml b/dev/tests/functional/tests/app/Magento/Newsletter/Test/Page/Adminhtml/TemplateQueueIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Newsletter/Test/Repository/Customer.xml b/dev/tests/functional/tests/app/Magento/Newsletter/Test/Repository/Customer.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Newsletter/Test/Repository/Queue.xml b/dev/tests/functional/tests/app/Magento/Newsletter/Test/Repository/Queue.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Newsletter/Test/Repository/Template.xml b/dev/tests/functional/tests/app/Magento/Newsletter/Test/Repository/Template.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Newsletter/Test/TestCase/ActionNewsletterTemplateEntityTest.php b/dev/tests/functional/tests/app/Magento/Newsletter/Test/TestCase/ActionNewsletterTemplateEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Newsletter/Test/TestCase/ActionNewsletterTemplateEntityTest.xml b/dev/tests/functional/tests/app/Magento/Newsletter/Test/TestCase/ActionNewsletterTemplateEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Newsletter/Test/TestCase/CreateNewsletterQueueTest.php b/dev/tests/functional/tests/app/Magento/Newsletter/Test/TestCase/CreateNewsletterQueueTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Newsletter/Test/TestCase/CreateNewsletterQueueTest.xml b/dev/tests/functional/tests/app/Magento/Newsletter/Test/TestCase/CreateNewsletterQueueTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Newsletter/Test/TestCase/CreateNewsletterTemplateEntityTest.php b/dev/tests/functional/tests/app/Magento/Newsletter/Test/TestCase/CreateNewsletterTemplateEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Newsletter/Test/TestCase/CreateNewsletterTemplateEntityTest.xml b/dev/tests/functional/tests/app/Magento/Newsletter/Test/TestCase/CreateNewsletterTemplateEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Newsletter/Test/TestCase/NavigateMenuTest.xml b/dev/tests/functional/tests/app/Magento/Newsletter/Test/TestCase/NavigateMenuTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Newsletter/Test/TestCase/PreviewNewsletterTemplateEntityTest.php b/dev/tests/functional/tests/app/Magento/Newsletter/Test/TestCase/PreviewNewsletterTemplateEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Newsletter/Test/TestCase/PreviewNewsletterTemplateEntityTest.xml b/dev/tests/functional/tests/app/Magento/Newsletter/Test/TestCase/PreviewNewsletterTemplateEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Newsletter/Test/TestCase/UpdateNewsletterTemplateTest.php b/dev/tests/functional/tests/app/Magento/Newsletter/Test/TestCase/UpdateNewsletterTemplateTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Newsletter/Test/TestCase/UpdateNewsletterTemplateTest.xml b/dev/tests/functional/tests/app/Magento/Newsletter/Test/TestCase/UpdateNewsletterTemplateTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Newsletter/Test/etc/curl/di.xml b/dev/tests/functional/tests/app/Magento/Newsletter/Test/etc/curl/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/OfflinePayments/Test/Repository/ConfigData.xml b/dev/tests/functional/tests/app/Magento/OfflinePayments/Test/Repository/ConfigData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/OfflineShipping/Test/Repository/ConfigData.xml b/dev/tests/functional/tests/app/Magento/OfflineShipping/Test/Repository/ConfigData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/PageCache/Test/Block/Cache.php b/dev/tests/functional/tests/app/Magento/PageCache/Test/Block/Cache.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/PageCache/Test/Block/Cache/Additional.php b/dev/tests/functional/tests/app/Magento/PageCache/Test/Block/Cache/Additional.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/PageCache/Test/Block/Cache/Grid.php b/dev/tests/functional/tests/app/Magento/PageCache/Test/Block/Cache/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/PageCache/Test/Constraint/AssertCacheFlushSuccessMessage.php b/dev/tests/functional/tests/app/Magento/PageCache/Test/Constraint/AssertCacheFlushSuccessMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/PageCache/Test/Constraint/AssertCacheInvalidateNotice.php b/dev/tests/functional/tests/app/Magento/PageCache/Test/Constraint/AssertCacheInvalidateNotice.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/PageCache/Test/Constraint/AssertCacheInvalidatePopUp.php b/dev/tests/functional/tests/app/Magento/PageCache/Test/Constraint/AssertCacheInvalidatePopUp.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/PageCache/Test/Constraint/AssertCacheIsRefreshableAndInvalidated.php b/dev/tests/functional/tests/app/Magento/PageCache/Test/Constraint/AssertCacheIsRefreshableAndInvalidated.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/PageCache/Test/Constraint/AssertCacheStatus.php b/dev/tests/functional/tests/app/Magento/PageCache/Test/Constraint/AssertCacheStatus.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/PageCache/Test/Constraint/AssertCategoryCaching.php b/dev/tests/functional/tests/app/Magento/PageCache/Test/Constraint/AssertCategoryCaching.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/PageCache/Test/Constraint/AssertFlushStaticFilesCacheButtonVisibility.php b/dev/tests/functional/tests/app/Magento/PageCache/Test/Constraint/AssertFlushStaticFilesCacheButtonVisibility.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/PageCache/Test/Page/Adminhtml/AdminCache.xml b/dev/tests/functional/tests/app/Magento/PageCache/Test/Page/Adminhtml/AdminCache.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/PageCache/Test/Repository/ConfigData.xml b/dev/tests/functional/tests/app/Magento/PageCache/Test/Repository/ConfigData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/PageCache/Test/TestCase/CacheInvalidationTest.php b/dev/tests/functional/tests/app/Magento/PageCache/Test/TestCase/CacheInvalidationTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/PageCache/Test/TestCase/CacheInvalidationTest.xml b/dev/tests/functional/tests/app/Magento/PageCache/Test/TestCase/CacheInvalidationTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/PageCache/Test/TestCase/CacheStatusOnScheduledIndexingTest.php b/dev/tests/functional/tests/app/Magento/PageCache/Test/TestCase/CacheStatusOnScheduledIndexingTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/PageCache/Test/TestCase/CacheStatusOnScheduledIndexingTest.xml b/dev/tests/functional/tests/app/Magento/PageCache/Test/TestCase/CacheStatusOnScheduledIndexingTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/PageCache/Test/TestCase/FlushAdditionalCachesTest.php b/dev/tests/functional/tests/app/Magento/PageCache/Test/TestCase/FlushAdditionalCachesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/PageCache/Test/TestCase/FlushAdditionalCachesTest.xml b/dev/tests/functional/tests/app/Magento/PageCache/Test/TestCase/FlushAdditionalCachesTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/PageCache/Test/TestCase/FlushStaticFilesCacheButtonVisibilityTest.php b/dev/tests/functional/tests/app/Magento/PageCache/Test/TestCase/FlushStaticFilesCacheButtonVisibilityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/PageCache/Test/TestCase/FlushStaticFilesCacheButtonVisibilityTest.xml b/dev/tests/functional/tests/app/Magento/PageCache/Test/TestCase/FlushStaticFilesCacheButtonVisibilityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/PageCache/Test/etc/di.xml b/dev/tests/functional/tests/app/Magento/PageCache/Test/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Payment/Test/Block/Form/PaymentCc.php b/dev/tests/functional/tests/app/Magento/Payment/Test/Block/Form/PaymentCc.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Payment/Test/Block/Form/PaymentCc.xml b/dev/tests/functional/tests/app/Magento/Payment/Test/Block/Form/PaymentCc.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Payment/Test/Constraint/AssertCardRequiredFields.php b/dev/tests/functional/tests/app/Magento/Payment/Test/Constraint/AssertCardRequiredFields.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Payment/Test/Constraint/AssertFieldsAreActive.php b/dev/tests/functional/tests/app/Magento/Payment/Test/Constraint/AssertFieldsAreActive.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Payment/Test/Constraint/AssertFieldsAreDisabled.php b/dev/tests/functional/tests/app/Magento/Payment/Test/Constraint/AssertFieldsAreDisabled.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Payment/Test/Constraint/AssertFieldsAreEnabled.php b/dev/tests/functional/tests/app/Magento/Payment/Test/Constraint/AssertFieldsAreEnabled.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Payment/Test/Constraint/AssertFieldsArePresent.php b/dev/tests/functional/tests/app/Magento/Payment/Test/Constraint/AssertFieldsArePresent.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Payment/Test/Fixture/CreditCard.xml b/dev/tests/functional/tests/app/Magento/Payment/Test/Fixture/CreditCard.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Payment/Test/Page/CheckoutOnepage.xml b/dev/tests/functional/tests/app/Magento/Payment/Test/Page/CheckoutOnepage.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Payment/Test/Repository/CreditCard.xml b/dev/tests/functional/tests/app/Magento/Payment/Test/Repository/CreditCard.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Payment/Test/TestCase/ConflictResolutionTest.php b/dev/tests/functional/tests/app/Magento/Payment/Test/TestCase/ConflictResolutionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Payment/Test/TestCase/ConflictResolutionTest.xml b/dev/tests/functional/tests/app/Magento/Payment/Test/TestCase/ConflictResolutionTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Payment/Test/etc/di.xml b/dev/tests/functional/tests/app/Magento/Payment/Test/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Payment/Test/etc/fixture.xml b/dev/tests/functional/tests/app/Magento/Payment/Test/etc/fixture.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Express/Review.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Express/Review.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Express/Review/ShippingoptgroupElement.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Express/Review/ShippingoptgroupElement.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Form/HostedPro/Cc.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Form/HostedPro/Cc.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Form/HostedPro/Cc.xml b/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Form/HostedPro/Cc.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Form/PayflowLink/Cc.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Form/PayflowLink/Cc.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Form/PayflowLink/Cc.xml b/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Form/PayflowLink/Cc.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Form/PaymentsAdvanced/Cc.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Form/PaymentsAdvanced/Cc.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Form/PaymentsAdvanced/Cc.xml b/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Form/PaymentsAdvanced/Cc.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Onepage/Payment/HostedPro.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Onepage/Payment/HostedPro.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Onepage/Payment/PayflowLink.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Onepage/Payment/PayflowLink.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Onepage/Payment/PaymentsAdvanced.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Onepage/Payment/PaymentsAdvanced.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Onepage/Payment/PaypalIframe.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Onepage/Payment/PaypalIframe.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Sandbox/ExpressLogin.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Sandbox/ExpressLogin.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Sandbox/ExpressLogin.xml b/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Sandbox/ExpressLogin.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Sandbox/ExpressMainLogin.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Sandbox/ExpressMainLogin.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Sandbox/ExpressMainReview.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Sandbox/ExpressMainReview.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Sandbox/ExpressOldLogin.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Sandbox/ExpressOldLogin.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Sandbox/ExpressOldLogin.xml b/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Sandbox/ExpressOldLogin.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Sandbox/ExpressOldReview.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Sandbox/ExpressOldReview.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Sandbox/ExpressReview.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Sandbox/ExpressReview.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Sandbox/SignupAddCard.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Sandbox/SignupAddCard.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Sandbox/SignupAddCard.xml b/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Sandbox/SignupAddCard.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Sandbox/SignupCreate.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Sandbox/SignupCreate.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Sandbox/SignupCreate.xml b/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Sandbox/SignupCreate.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Sandbox/SignupPersonalAccount.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Sandbox/SignupPersonalAccount.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Sandbox/SignupPersonalAccount.xml b/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/Sandbox/SignupPersonalAccount.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/System/Config/ExpressCheckout.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/System/Config/ExpressCheckout.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/System/Config/PayflowLink.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/System/Config/PayflowLink.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/System/Config/PayflowPro.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/System/Config/PayflowPro.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/System/Config/PaymentsAdvanced.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/System/Config/PaymentsAdvanced.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/System/Config/PaymentsPro.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/Block/System/Config/PaymentsPro.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/Constraint/AssertExpressCancelledMessage.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/Constraint/AssertExpressCancelledMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/Constraint/Sandbox/AssertTotalPaypalReview.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/Constraint/Sandbox/AssertTotalPaypalReview.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/Fixture/SandboxCustomer.xml b/dev/tests/functional/tests/app/Magento/Paypal/Test/Fixture/SandboxCustomer.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/Page/Adminhtml/SystemConfigEditSectionPayment.xml b/dev/tests/functional/tests/app/Magento/Paypal/Test/Page/Adminhtml/SystemConfigEditSectionPayment.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/Page/CheckoutOnepage.xml b/dev/tests/functional/tests/app/Magento/Paypal/Test/Page/CheckoutOnepage.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/Page/OrderReviewExpress.xml b/dev/tests/functional/tests/app/Magento/Paypal/Test/Page/OrderReviewExpress.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/Page/Sandbox/AccountSignup.xml b/dev/tests/functional/tests/app/Magento/Paypal/Test/Page/Sandbox/AccountSignup.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/Page/Sandbox/ExpressReview.xml b/dev/tests/functional/tests/app/Magento/Paypal/Test/Page/Sandbox/ExpressReview.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/Page/Sandbox/SignupAddCard.xml b/dev/tests/functional/tests/app/Magento/Paypal/Test/Page/Sandbox/SignupAddCard.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/Page/Sandbox/SignupCreate.xml b/dev/tests/functional/tests/app/Magento/Paypal/Test/Page/Sandbox/SignupCreate.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/Repository/ConfigData.xml b/dev/tests/functional/tests/app/Magento/Paypal/Test/Repository/ConfigData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/Repository/CreditCard.xml b/dev/tests/functional/tests/app/Magento/Paypal/Test/Repository/CreditCard.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/Repository/SandboxCustomer.xml b/dev/tests/functional/tests/app/Magento/Paypal/Test/Repository/SandboxCustomer.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/CloseOrderTest.xml b/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/CloseOrderTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/CloseSalesWithHostedProTest.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/CloseSalesWithHostedProTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/CloseSalesWithHostedProTest.xml b/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/CloseSalesWithHostedProTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/CreateOnlineCreditMemoPayflowLinkTest.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/CreateOnlineCreditMemoPayflowLinkTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/CreateOnlineCreditMemoPayflowLinkTest.xml b/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/CreateOnlineCreditMemoPayflowLinkTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/CreateOnlineCreditMemoTest.xml b/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/CreateOnlineCreditMemoTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/CreatePayFlowOrderBackendNegativeTest.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/CreatePayFlowOrderBackendNegativeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/CreatePayFlowOrderBackendNegativeTest.xml b/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/CreatePayFlowOrderBackendNegativeTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/CreateVaultOrderBackendTest.xml b/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/CreateVaultOrderBackendTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/ExpressCheckoutFromProductPageTest.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/ExpressCheckoutFromProductPageTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/ExpressCheckoutFromProductPageTest.xml b/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/ExpressCheckoutFromProductPageTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/ExpressCheckoutFromShoppingCartTest.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/ExpressCheckoutFromShoppingCartTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/ExpressCheckoutFromShoppingCartTest.xml b/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/ExpressCheckoutFromShoppingCartTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/ExpressCheckoutOnePageTest.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/ExpressCheckoutOnePageTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/ExpressCheckoutOnePageTest.xml b/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/ExpressCheckoutOnePageTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/InContextExpressCheckoutFromShoppingCartTest.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/InContextExpressCheckoutFromShoppingCartTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/InContextExpressCheckoutFromShoppingCartTest.xml b/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/InContextExpressCheckoutFromShoppingCartTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/InContextExpressOnePageCheckoutTest.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/InContextExpressOnePageCheckoutTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/InContextExpressOnePageCheckoutTest.xml b/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/InContextExpressOnePageCheckoutTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/NavigateMenuTest.xml b/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/NavigateMenuTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/OnePageCheckoutDeclinedTest.xml b/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/OnePageCheckoutDeclinedTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/OnePageCheckoutHostedProTest.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/OnePageCheckoutHostedProTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/OnePageCheckoutHostedProTest.xml b/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/OnePageCheckoutHostedProTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/OnePageCheckoutPayflowLinkTest.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/OnePageCheckoutPayflowLinkTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/OnePageCheckoutPayflowLinkTest.xml b/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/OnePageCheckoutPayflowLinkTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/OnePageCheckoutPaymentsAdvancedTest.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/OnePageCheckoutPaymentsAdvancedTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/OnePageCheckoutPaymentsAdvancedTest.xml b/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/OnePageCheckoutPaymentsAdvancedTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/OnePageCheckoutTest.xml b/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/OnePageCheckoutTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/ReorderUsingVaultTest.xml b/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/ReorderUsingVaultTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/UseVaultOnCheckoutTest.xml b/dev/tests/functional/tests/app/Magento/Paypal/Test/TestCase/UseVaultOnCheckoutTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/CheckExpressConfigStep.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/CheckExpressConfigStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/CheckPayflowLinkConfigStep.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/CheckPayflowLinkConfigStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/CheckPayflowProConfigStep.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/CheckPayflowProConfigStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/CheckPaymentsAdvancedConfigStep.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/CheckPaymentsAdvancedConfigStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/CheckPaymentsProConfigStep.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/CheckPaymentsProConfigStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/CheckoutWithPaypalFromProductPageStep.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/CheckoutWithPaypalFromProductPageStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/CheckoutWithPaypalFromShoppingCartStep.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/CheckoutWithPaypalFromShoppingCartStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/ContinuePaypalCheckoutStep.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/ContinuePaypalCheckoutStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/ContinueToPaypalInContextStep.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/ContinueToPaypalInContextStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/ContinueToPaypalStep.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/ContinueToPaypalStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/CreateSandboxCustomerStep.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/CreateSandboxCustomerStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/ExpressCheckoutOrderPlaceStep.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/ExpressCheckoutOrderPlaceStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/InContextCheckoutWithPaypalFromShoppingCartStep.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/InContextCheckoutWithPaypalFromShoppingCartStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/PlaceOrderWithHostedProStep.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/PlaceOrderWithHostedProStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/PlaceOrderWithPayflowLinkStep.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/PlaceOrderWithPayflowLinkStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/PlaceOrderWithPaymentsAdvancedStep.php b/dev/tests/functional/tests/app/Magento/Paypal/Test/TestStep/PlaceOrderWithPaymentsAdvancedStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/etc/di.xml b/dev/tests/functional/tests/app/Magento/Paypal/Test/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Paypal/Test/etc/testcase.xml b/dev/tests/functional/tests/app/Magento/Paypal/Test/etc/testcase.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Persistent/Test/Constraint/AssertCustomerIsRedirectedToCheckout.php b/dev/tests/functional/tests/app/Magento/Persistent/Test/Constraint/AssertCustomerIsRedirectedToCheckout.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Persistent/Test/Repository/ConfigData.xml b/dev/tests/functional/tests/app/Magento/Persistent/Test/Repository/ConfigData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Persistent/Test/TestCase/CheckoutWithPersistentShoppingCartTest.php b/dev/tests/functional/tests/app/Magento/Persistent/Test/TestCase/CheckoutWithPersistentShoppingCartTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Persistent/Test/TestCase/CheckoutWithPersistentShoppingCartTest.xml b/dev/tests/functional/tests/app/Magento/Persistent/Test/TestCase/CheckoutWithPersistentShoppingCartTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ProductVideo/Test/TestCase/AddProductVideoTest.php b/dev/tests/functional/tests/app/Magento/ProductVideo/Test/TestCase/AddProductVideoTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ProductVideo/Test/TestCase/AddProductVideoTest.xml b/dev/tests/functional/tests/app/Magento/ProductVideo/Test/TestCase/AddProductVideoTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ProductVideo/Test/TestCase/ConfigurableProductVideoTest.php b/dev/tests/functional/tests/app/Magento/ProductVideo/Test/TestCase/ConfigurableProductVideoTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ProductVideo/Test/TestCase/ConfigurableProductVideoTest.xml b/dev/tests/functional/tests/app/Magento/ProductVideo/Test/TestCase/ConfigurableProductVideoTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ProductVideo/Test/TestCase/DeleteProductVideoTest.php b/dev/tests/functional/tests/app/Magento/ProductVideo/Test/TestCase/DeleteProductVideoTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ProductVideo/Test/TestCase/DeleteProductVideoTest.xml b/dev/tests/functional/tests/app/Magento/ProductVideo/Test/TestCase/DeleteProductVideoTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ProductVideo/Test/TestCase/UpdateProductVideoTest.php b/dev/tests/functional/tests/app/Magento/ProductVideo/Test/TestCase/UpdateProductVideoTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ProductVideo/Test/TestCase/UpdateProductVideoTest.xml b/dev/tests/functional/tests/app/Magento/ProductVideo/Test/TestCase/UpdateProductVideoTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ProductVideo/Test/etc/di.xml b/dev/tests/functional/tests/app/Magento/ProductVideo/Test/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ReleaseNotification/Test/Block/Adminhtml/Dashboard/ReleaseNotification/ReleaseNotificationBlock.php b/dev/tests/functional/tests/app/Magento/ReleaseNotification/Test/Block/Adminhtml/Dashboard/ReleaseNotification/ReleaseNotificationBlock.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ReleaseNotification/Test/Constraint/AssertLoginAgainAfterFlushCacheReleaseNotificationPopupExist.php b/dev/tests/functional/tests/app/Magento/ReleaseNotification/Test/Constraint/AssertLoginAgainAfterFlushCacheReleaseNotificationPopupExist.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ReleaseNotification/Test/Constraint/AssertLoginAgainReleaseNotificationPopupNotExist.php b/dev/tests/functional/tests/app/Magento/ReleaseNotification/Test/Constraint/AssertLoginAgainReleaseNotificationPopupNotExist.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ReleaseNotification/Test/Constraint/AssertReleaseNotificationPopupExist.php b/dev/tests/functional/tests/app/Magento/ReleaseNotification/Test/Constraint/AssertReleaseNotificationPopupExist.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ReleaseNotification/Test/Page/Adminhtml/Dashboard.xml b/dev/tests/functional/tests/app/Magento/ReleaseNotification/Test/Page/Adminhtml/Dashboard.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ReleaseNotification/Test/TestCase/NotificationTest.php b/dev/tests/functional/tests/app/Magento/ReleaseNotification/Test/TestCase/NotificationTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ReleaseNotification/Test/TestCase/NotificationTest.xml b/dev/tests/functional/tests/app/Magento/ReleaseNotification/Test/TestCase/NotificationTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/ReleaseNotification/Test/etc/testcase.xml b/dev/tests/functional/tests/app/Magento/ReleaseNotification/Test/etc/testcase.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/AbstractFilter.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/AbstractFilter.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Customer/AccountsGrid.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Customer/AccountsGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Customer/Counts/Filter.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Customer/Counts/Filter.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Customer/Counts/Filter.xml b/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Customer/Counts/Filter.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Customer/Counts/Grid.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Customer/Counts/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Customer/Totals/Filter.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Customer/Totals/Filter.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Customer/Totals/Filter.xml b/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Customer/Totals/Filter.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Customer/Totals/Grid.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Customer/Totals/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Product/Downloads/Grid.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Product/Downloads/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Product/Lowstock/Grid.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Product/Lowstock/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Product/Sold/Grid.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Product/Sold/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Product/Viewed/Filter.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Product/Viewed/Filter.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Product/Viewed/Filter.xml b/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Product/Viewed/Filter.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Product/Viewed/ProductGrid.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Product/Viewed/ProductGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Refresh/Statistics/Grid.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Refresh/Statistics/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Review/Customer/Grid.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Review/Customer/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Review/Products/Grid.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Review/Products/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Review/Products/Viewed/Filter.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Review/Products/Viewed/Filter.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Review/Products/Viewed/Filter.xml b/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Review/Products/Viewed/Filter.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Review/Products/Viewed/ProductGrid.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Review/Products/Viewed/ProductGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Sales/Coupons/Action.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Sales/Coupons/Action.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Sales/Coupons/Filter.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Sales/Coupons/Filter.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Sales/Coupons/Filter.xml b/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Sales/Coupons/Filter.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Sales/Coupons/Grid.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Sales/Coupons/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Sales/Invoiced/Grid.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Sales/Invoiced/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Sales/Orders/Viewed/FilterGrid.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Sales/Orders/Viewed/FilterGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Sales/Refunded/FilterGrid.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Sales/Refunded/FilterGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Sales/Shipping/Grid.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Sales/Shipping/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Sales/TaxRule/Action.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Sales/TaxRule/Action.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Sales/TaxRule/Filter.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Sales/TaxRule/Filter.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Sales/TaxRule/Filter.xml b/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Sales/TaxRule/Filter.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Sales/TaxRule/Grid.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Sales/TaxRule/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/SearchTermsGrid.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/SearchTermsGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Shopcart/Abandoned/Grid.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Shopcart/Abandoned/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Shopcart/Product/Grid.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Shopcart/Product/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Viewed/Action.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Block/Adminhtml/Viewed/Action.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AbstractAssertCustomerOrderReportResult.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AbstractAssertCustomerOrderReportResult.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AbstractAssertInvoiceReportResult.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AbstractAssertInvoiceReportResult.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AbstractAssertSalesReportResult.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AbstractAssertSalesReportResult.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AbstractAssertShippingReportResult.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AbstractAssertShippingReportResult.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertAbandonedCartCustomerInfoResult.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertAbandonedCartCustomerInfoResult.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertBestsellerReportResult.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertBestsellerReportResult.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertCouponReportResult.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertCouponReportResult.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertCustomerOrderCountReportResult.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertCustomerOrderCountReportResult.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertCustomerOrderTotalReportResult.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertCustomerOrderTotalReportResult.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertDownloadsReportResult.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertDownloadsReportResult.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertInvoiceReportIntervalResult.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertInvoiceReportIntervalResult.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertInvoiceReportTotalResult.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertInvoiceReportTotalResult.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertLifetimeStatisticsUpdatedMessage.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertLifetimeStatisticsUpdatedMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertLowStockProductInGrid.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertLowStockProductInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertNewAccountsReportTotalResult.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertNewAccountsReportTotalResult.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertOrderedProductReportForConfigurableProduct.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertOrderedProductReportForConfigurableProduct.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertOrderedProductResult.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertOrderedProductResult.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertProductInCartResult.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertProductInCartResult.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertProductReportByCustomerInGrid.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertProductReportByCustomerInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertProductReportByCustomerNotInGrid.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertProductReportByCustomerNotInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertProductReviewIsAvailableForProduct.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertProductReviewIsAvailableForProduct.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertProductReviewReportIsVisibleInGrid.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertProductReviewReportIsVisibleInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertProductReviewsQtyByCustomer.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertProductReviewsQtyByCustomer.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertProductViewsReportTotalResult.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertProductViewsReportTotalResult.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertRecentStatisticsUpdatedMessage.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertRecentStatisticsUpdatedMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertRefundReportIntervalResult.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertRefundReportIntervalResult.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertReportStatisticsNoticeMessage.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertReportStatisticsNoticeMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertReportsUpdatedTimezone.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertReportsUpdatedTimezone.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertSalesReportIntervalResult.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertSalesReportIntervalResult.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertSalesReportTotalResult.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertSalesReportTotalResult.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertSearchTermReportForm.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertSearchTermReportForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertSearchTermsInGrid.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertSearchTermsInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertShippingReportIntervalResult.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertShippingReportIntervalResult.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertShippingReportTotalResult.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertShippingReportTotalResult.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertTaxReportInGrid.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertTaxReportInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertTaxReportNotInGrid.php b/dev/tests/functional/tests/app/Magento/Reports/Test/Constraint/AssertTaxReportNotInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/AbandonedCarts.xml b/dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/AbandonedCarts.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/Bestsellers.xml b/dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/Bestsellers.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/CustomerAccounts.xml b/dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/CustomerAccounts.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/CustomerOrdersReport.xml b/dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/CustomerOrdersReport.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/CustomerReportReview.xml b/dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/CustomerReportReview.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/CustomerTotalsReport.xml b/dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/CustomerTotalsReport.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/DownloadsReport.xml b/dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/DownloadsReport.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/OrderedProductsReport.xml b/dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/OrderedProductsReport.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/ProductLowStock.xml b/dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/ProductLowStock.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/ProductReportReview.xml b/dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/ProductReportReview.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/ProductReportView.xml b/dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/ProductReportView.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/RefundsReport.xml b/dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/RefundsReport.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/SalesCouponReportView.xml b/dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/SalesCouponReportView.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/SalesInvoiceReport.xml b/dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/SalesInvoiceReport.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/SalesReport.xml b/dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/SalesReport.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/SalesShippingReport.xml b/dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/SalesShippingReport.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/SalesTaxReport.xml b/dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/SalesTaxReport.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/SearchIndex.xml b/dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/SearchIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/ShopCartProductReport.xml b/dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/ShopCartProductReport.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/Statistics.xml b/dev/tests/functional/tests/app/Magento/Reports/Test/Page/Adminhtml/Statistics.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/Repository/ConfigData.xml b/dev/tests/functional/tests/app/Magento/Reports/Test/Repository/ConfigData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/AbandonedCartsReportEntityTest.php b/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/AbandonedCartsReportEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/AbandonedCartsReportEntityTest.xml b/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/AbandonedCartsReportEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/BestsellerProductsReportEntityTest.php b/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/BestsellerProductsReportEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/BestsellerProductsReportEntityTest.xml b/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/BestsellerProductsReportEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/CustomersOrderCountReportEntityTest.php b/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/CustomersOrderCountReportEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/CustomersOrderCountReportEntityTest.xml b/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/CustomersOrderCountReportEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/CustomersOrderTotalReportEntityTest.php b/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/CustomersOrderTotalReportEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/CustomersOrderTotalReportEntityTest.xml b/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/CustomersOrderTotalReportEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/DownloadProductsReportEntityTest.php b/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/DownloadProductsReportEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/DownloadProductsReportEntityTest.xml b/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/DownloadProductsReportEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/LowStockProductsReportEntityTest.php b/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/LowStockProductsReportEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/LowStockProductsReportEntityTest.xml b/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/LowStockProductsReportEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/NavigateMenuTest.xml b/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/NavigateMenuTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/NewAccountsReportEntityTest.php b/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/NewAccountsReportEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/NewAccountsReportEntityTest.xml b/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/NewAccountsReportEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/OrderedProductsReportEntityTest.php b/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/OrderedProductsReportEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/OrderedProductsReportEntityTest.xml b/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/OrderedProductsReportEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/ProductsInCartReportEntityTest.php b/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/ProductsInCartReportEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/ProductsInCartReportEntityTest.xml b/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/ProductsInCartReportEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/RefreshReportsStatisticsTest.php b/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/RefreshReportsStatisticsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/RefreshReportsStatisticsTest.xml b/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/RefreshReportsStatisticsTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/ReviewReportEntityTest.php b/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/ReviewReportEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/ReviewReportEntityTest.xml b/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/ReviewReportEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/SalesCouponReportEntityTest.php b/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/SalesCouponReportEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/SalesCouponReportEntityTest.xml b/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/SalesCouponReportEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/SalesInvoiceReportEntityTest.php b/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/SalesInvoiceReportEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/SalesInvoiceReportEntityTest.xml b/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/SalesInvoiceReportEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/SalesOrderReportEntityTest.php b/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/SalesOrderReportEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/SalesOrderReportEntityTest.xml b/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/SalesOrderReportEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/SalesRefundsReportEntityTest.php b/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/SalesRefundsReportEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/SalesRefundsReportEntityTest.xml b/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/SalesRefundsReportEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/SalesTaxReportEntityTest.php b/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/SalesTaxReportEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/SalesTaxReportEntityTest.xml b/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/SalesTaxReportEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/SearchTermsReportEntityTest.php b/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/SearchTermsReportEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/SearchTermsReportEntityTest.xml b/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/SearchTermsReportEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/ViewedProductsReportEntityTest.php b/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/ViewedProductsReportEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/ViewedProductsReportEntityTest.xml b/dev/tests/functional/tests/app/Magento/Reports/Test/TestCase/ViewedProductsReportEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Reports/Test/etc/testcase.xml b/dev/tests/functional/tests/app/Magento/Reports/Test/etc/testcase.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Block/Adminhtml/Customer/Edit/Tab/Reviews.php b/dev/tests/functional/tests/app/Magento/Review/Test/Block/Adminhtml/Customer/Edit/Tab/Reviews.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Block/Adminhtml/Edit/CustomerForm.xml b/dev/tests/functional/tests/app/Magento/Review/Test/Block/Adminhtml/Edit/CustomerForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Block/Adminhtml/Edit/Product/Grid.php b/dev/tests/functional/tests/app/Magento/Review/Test/Block/Adminhtml/Edit/Product/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Block/Adminhtml/Edit/RatingElement.php b/dev/tests/functional/tests/app/Magento/Review/Test/Block/Adminhtml/Edit/RatingElement.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Block/Adminhtml/FormPageActions.php b/dev/tests/functional/tests/app/Magento/Review/Test/Block/Adminhtml/FormPageActions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Block/Adminhtml/Grid.php b/dev/tests/functional/tests/app/Magento/Review/Test/Block/Adminhtml/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Block/Adminhtml/Product/Edit/Section/Reviews.php b/dev/tests/functional/tests/app/Magento/Review/Test/Block/Adminhtml/Product/Edit/Section/Reviews.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Block/Adminhtml/Product/Grid.php b/dev/tests/functional/tests/app/Magento/Review/Test/Block/Adminhtml/Product/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Block/Adminhtml/Product/ProductForm.xml b/dev/tests/functional/tests/app/Magento/Review/Test/Block/Adminhtml/Product/ProductForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Block/Adminhtml/Rating/Edit/RatingForm.php b/dev/tests/functional/tests/app/Magento/Review/Test/Block/Adminhtml/Rating/Edit/RatingForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Block/Adminhtml/Rating/Edit/RatingForm.xml b/dev/tests/functional/tests/app/Magento/Review/Test/Block/Adminhtml/Rating/Edit/RatingForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Block/Adminhtml/Rating/Grid.php b/dev/tests/functional/tests/app/Magento/Review/Test/Block/Adminhtml/Rating/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Block/Adminhtml/ReviewForm.php b/dev/tests/functional/tests/app/Magento/Review/Test/Block/Adminhtml/ReviewForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Block/Adminhtml/ReviewForm.xml b/dev/tests/functional/tests/app/Magento/Review/Test/Block/Adminhtml/ReviewForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Block/Product/View.php b/dev/tests/functional/tests/app/Magento/Review/Test/Block/Product/View.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Block/Product/View/Summary.php b/dev/tests/functional/tests/app/Magento/Review/Test/Block/Product/View/Summary.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Block/ReviewForm.php b/dev/tests/functional/tests/app/Magento/Review/Test/Block/ReviewForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Block/ReviewForm.xml b/dev/tests/functional/tests/app/Magento/Review/Test/Block/ReviewForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductRatingInGrid.php b/dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductRatingInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductRatingInProductPage.php b/dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductRatingInProductPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductRatingNotInGrid.php b/dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductRatingNotInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductRatingNotInProductPage.php b/dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductRatingNotInProductPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductRatingOnReviewPage.php b/dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductRatingOnReviewPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductRatingSuccessDeleteMessage.php b/dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductRatingSuccessDeleteMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductRatingSuccessSaveMessage.php b/dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductRatingSuccessSaveMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductReviewBackendSuccessSaveMessage.php b/dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductReviewBackendSuccessSaveMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductReviewForm.php b/dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductReviewForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductReviewInGrid.php b/dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductReviewInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductReviewInGridOnCustomerPage.php b/dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductReviewInGridOnCustomerPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductReviewIsAbsentOnProductPage.php b/dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductReviewIsAbsentOnProductPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductReviewMassActionSuccessDeleteMessage.php b/dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductReviewMassActionSuccessDeleteMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductReviewMassActionSuccessMessage.php b/dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductReviewMassActionSuccessMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductReviewNotInGrid.php b/dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductReviewNotInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductReviewNotOnProductPage.php b/dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductReviewNotOnProductPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductReviewOnProductPage.php b/dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertProductReviewOnProductPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertReviewCreationSuccessMessage.php b/dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertReviewCreationSuccessMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertReviewLinksIsPresentOnProductPage.php b/dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertReviewLinksIsPresentOnProductPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertReviewSuccessSaveMessage.php b/dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertReviewSuccessSaveMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertSetApprovedProductReview.php b/dev/tests/functional/tests/app/Magento/Review/Test/Constraint/AssertSetApprovedProductReview.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Fixture/Rating.xml b/dev/tests/functional/tests/app/Magento/Review/Test/Fixture/Rating.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Fixture/Review.xml b/dev/tests/functional/tests/app/Magento/Review/Test/Fixture/Review.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Fixture/Review/EntityId.php b/dev/tests/functional/tests/app/Magento/Review/Test/Fixture/Review/EntityId.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Fixture/Review/Ratings.php b/dev/tests/functional/tests/app/Magento/Review/Test/Fixture/Review/Ratings.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Handler/Rating/Curl.php b/dev/tests/functional/tests/app/Magento/Review/Test/Handler/Rating/Curl.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Handler/Rating/RatingInterface.php b/dev/tests/functional/tests/app/Magento/Review/Test/Handler/Rating/RatingInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Handler/Review/Curl.php b/dev/tests/functional/tests/app/Magento/Review/Test/Handler/Review/Curl.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Handler/Review/ReviewInterface.php b/dev/tests/functional/tests/app/Magento/Review/Test/Handler/Review/ReviewInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Page/Adminhtml/RatingEdit.xml b/dev/tests/functional/tests/app/Magento/Review/Test/Page/Adminhtml/RatingEdit.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Page/Adminhtml/RatingIndex.xml b/dev/tests/functional/tests/app/Magento/Review/Test/Page/Adminhtml/RatingIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Page/Adminhtml/RatingNew.xml b/dev/tests/functional/tests/app/Magento/Review/Test/Page/Adminhtml/RatingNew.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Page/Adminhtml/ReviewEdit.xml b/dev/tests/functional/tests/app/Magento/Review/Test/Page/Adminhtml/ReviewEdit.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Page/Adminhtml/ReviewIndex.xml b/dev/tests/functional/tests/app/Magento/Review/Test/Page/Adminhtml/ReviewIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Page/Product/CatalogProductView.xml b/dev/tests/functional/tests/app/Magento/Review/Test/Page/Product/CatalogProductView.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Repository/Rating.xml b/dev/tests/functional/tests/app/Magento/Review/Test/Repository/Rating.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/Repository/Review.xml b/dev/tests/functional/tests/app/Magento/Review/Test/Repository/Review.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/TestCase/CreateProductRatingEntityTest.php b/dev/tests/functional/tests/app/Magento/Review/Test/TestCase/CreateProductRatingEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/TestCase/CreateProductRatingEntityTest.xml b/dev/tests/functional/tests/app/Magento/Review/Test/TestCase/CreateProductRatingEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/TestCase/CreateProductReviewBackendEntityTest.php b/dev/tests/functional/tests/app/Magento/Review/Test/TestCase/CreateProductReviewBackendEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/TestCase/CreateProductReviewBackendEntityTest.xml b/dev/tests/functional/tests/app/Magento/Review/Test/TestCase/CreateProductReviewBackendEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/TestCase/CreateProductReviewFrontendEntityTest.php b/dev/tests/functional/tests/app/Magento/Review/Test/TestCase/CreateProductReviewFrontendEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/TestCase/CreateProductReviewFrontendEntityTest.xml b/dev/tests/functional/tests/app/Magento/Review/Test/TestCase/CreateProductReviewFrontendEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/TestCase/DeleteProductRatingEntityTest.php b/dev/tests/functional/tests/app/Magento/Review/Test/TestCase/DeleteProductRatingEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/TestCase/DeleteProductRatingEntityTest.xml b/dev/tests/functional/tests/app/Magento/Review/Test/TestCase/DeleteProductRatingEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/TestCase/ManageProductReviewFromCustomerPageTest.php b/dev/tests/functional/tests/app/Magento/Review/Test/TestCase/ManageProductReviewFromCustomerPageTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/TestCase/ManageProductReviewFromCustomerPageTest.xml b/dev/tests/functional/tests/app/Magento/Review/Test/TestCase/ManageProductReviewFromCustomerPageTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/TestCase/MassActionsProductReviewEntityTest.php b/dev/tests/functional/tests/app/Magento/Review/Test/TestCase/MassActionsProductReviewEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/TestCase/MassActionsProductReviewEntityTest.xml b/dev/tests/functional/tests/app/Magento/Review/Test/TestCase/MassActionsProductReviewEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/TestCase/ModerateProductReviewEntityTest.php b/dev/tests/functional/tests/app/Magento/Review/Test/TestCase/ModerateProductReviewEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/TestCase/ModerateProductReviewEntityTest.xml b/dev/tests/functional/tests/app/Magento/Review/Test/TestCase/ModerateProductReviewEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/TestCase/NavigateMenuTest.xml b/dev/tests/functional/tests/app/Magento/Review/Test/TestCase/NavigateMenuTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/TestCase/UpdateProductReviewEntityOnProductPageTest.php b/dev/tests/functional/tests/app/Magento/Review/Test/TestCase/UpdateProductReviewEntityOnProductPageTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/TestCase/UpdateProductReviewEntityOnProductPageTest.xml b/dev/tests/functional/tests/app/Magento/Review/Test/TestCase/UpdateProductReviewEntityOnProductPageTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/TestCase/UpdateProductReviewEntityTest.php b/dev/tests/functional/tests/app/Magento/Review/Test/TestCase/UpdateProductReviewEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/TestCase/UpdateProductReviewEntityTest.xml b/dev/tests/functional/tests/app/Magento/Review/Test/TestCase/UpdateProductReviewEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/etc/curl/di.xml b/dev/tests/functional/tests/app/Magento/Review/Test/etc/curl/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Review/Test/etc/di.xml b/dev/tests/functional/tests/app/Magento/Review/Test/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/CreditMemo/Grid.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/CreditMemo/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Invoice/Grid.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Invoice/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/AbstractForm.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/AbstractForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/AbstractForm/Product.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/AbstractForm/Product.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/AbstractItems.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/AbstractItems.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/AbstractItemsNewBlock.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/AbstractItemsNewBlock.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Actions.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Actions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Billing/Address.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Billing/Address.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Billing/Address.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Billing/Address.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Billing/Method.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Billing/Method.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Coupons.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Coupons.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Customer.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Customer.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/CustomerActivities.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/CustomerActivities.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/CustomerActivities/Sidebar.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/CustomerActivities/Sidebar.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/CustomerActivities/Sidebar/LastOrderedItems.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/CustomerActivities/Sidebar/LastOrderedItems.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/CustomerActivities/Sidebar/ProductsInComparison.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/CustomerActivities/Sidebar/ProductsInComparison.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/CustomerActivities/Sidebar/RecentlyComparedProducts.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/CustomerActivities/Sidebar/RecentlyComparedProducts.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/CustomerActivities/Sidebar/RecentlyViewedItems.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/CustomerActivities/Sidebar/RecentlyViewedItems.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/CustomerActivities/Sidebar/RecentlyViewedProducts.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/CustomerActivities/Sidebar/RecentlyViewedProducts.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/CustomerActivities/Sidebar/ShoppingCartItems.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/CustomerActivities/Sidebar/ShoppingCartItems.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/CustomerActivities/Sidebar/Wishlist.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/CustomerActivities/Sidebar/Wishlist.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Form/Account.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Form/Account.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Form/Account.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Form/Account.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Items.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Items.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Items/ItemProduct.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Items/ItemProduct.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Items/ItemProduct.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Items/ItemProduct.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Search/Grid.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Search/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Shipping/Address.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Shipping/Address.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Shipping/Address.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Shipping/Address.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Shipping/Method.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Shipping/Method.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Sidebar.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Sidebar.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Store.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Store.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Totals.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Totals.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Creditmemo/Form.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Creditmemo/Form.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Creditmemo/Form.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Creditmemo/Form.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Creditmemo/Form/Items.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Creditmemo/Form/Items.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Creditmemo/Form/Items/Product.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Creditmemo/Form/Items/Product.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Creditmemo/Form/Items/Product.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Creditmemo/Form/Items/Product.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Creditmemo/Grid.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Creditmemo/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Creditmemo/Totals.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Creditmemo/Totals.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Creditmemo/View/Items.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Creditmemo/View/Items.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Grid.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Invoice/Form.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Invoice/Form.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Invoice/Form.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Invoice/Form.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Invoice/Form/Items.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Invoice/Form/Items.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Invoice/Form/Items/Product.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Invoice/Form/Items/Product.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Invoice/Form/Items/Product.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Invoice/Form/Items/Product.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Invoice/Grid.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Invoice/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Invoice/Totals.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Invoice/Totals.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Invoice/View/Items.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Invoice/View/Items.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Shipment/Totals.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Shipment/Totals.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Shipment/View/Items.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Shipment/View/Items.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Status/Assign/AssignForm.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Status/Assign/AssignForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Status/Assign/AssignForm.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Status/Assign/AssignForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Status/GridPageActions.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Status/GridPageActions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/StatusGrid.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/StatusGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Totals.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Totals.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Transactions/Grid.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Transactions/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/Addresses.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/Addresses.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/Info.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/Info.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/Items.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/Items.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/OrderForm.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/OrderForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/OrderForm.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/OrderForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/Tab/CreditMemos.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/Tab/CreditMemos.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/Tab/CreditMemos/Grid.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/Tab/CreditMemos/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/Tab/Info.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/Tab/Info.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/Tab/Info/CommentsHistoryBlock.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/Tab/Info/CommentsHistoryBlock.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/Tab/Info/PaymentInfoBlock.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/Tab/Info/PaymentInfoBlock.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/Tab/Info/ShippingInfoBlock.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/Tab/Info/ShippingInfoBlock.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/Tab/Invoices.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/Tab/Invoices.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/Tab/Invoices/Grid.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/Tab/Invoices/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/Tab/Shipments.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/Tab/Shipments.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/Tab/Shipments/Grid.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/Tab/Shipments/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/Tab/Transactions.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/Tab/Transactions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/Tab/Transactions/Grid.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/View/Tab/Transactions/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Report/Filter/Form.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Report/Filter/Form.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Report/Filter/Form.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Report/Filter/Form.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Order/History.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Order/History.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Order/Info.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Order/Info.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Order/Items.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Order/Items.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Order/View.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Order/View.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Widget/Guest/Form.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Widget/Guest/Form.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Widget/Guest/Form.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/Block/Widget/Guest/Form.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AbstractAssertItems.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AbstractAssertItems.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AbstractAssertOrderOnFrontend.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AbstractAssertOrderOnFrontend.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertAcceptPaymentMessageInCommentsHistory.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertAcceptPaymentMessageInCommentsHistory.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertAcceptPaymentSuccessMessagePresent.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertAcceptPaymentSuccessMessagePresent.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertAuthorizationInCommentsHistory.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertAuthorizationInCommentsHistory.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertCancelInCommentsHistory.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertCancelInCommentsHistory.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertCaptureInCommentsHistory.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertCaptureInCommentsHistory.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertCartSectionIsEmptyOnBackendOrderPage.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertCartSectionIsEmptyOnBackendOrderPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertCartSectionWithProductsOnBackendOrderPage.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertCartSectionWithProductsOnBackendOrderPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertCreditMemoButton.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertCreditMemoButton.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertCreditMemoItems.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertCreditMemoItems.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertDenyPaymentMessageInCommentsHistory.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertDenyPaymentMessageInCommentsHistory.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertDenyPaymentSuccessMessagePresent.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertDenyPaymentSuccessMessagePresent.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertInvoiceInInvoicesGrid.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertInvoiceInInvoicesGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertInvoiceInInvoicesTab.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertInvoiceInInvoicesTab.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertInvoiceItems.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertInvoiceItems.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertInvoiceNotInInvoicesGrid.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertInvoiceNotInInvoicesGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertInvoiceStatusInOrdersGrid.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertInvoiceStatusInOrdersGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertInvoiceSuccessCreateMessage.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertInvoiceSuccessCreateMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertInvoiceWithShipmentSuccessMessage.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertInvoiceWithShipmentSuccessMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertInvoicedAmountOnFrontend.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertInvoicedAmountOnFrontend.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertInvoicedOrderOnDashboard.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertInvoicedOrderOnDashboard.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertItemsOrderedSectionContainsProducts.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertItemsOrderedSectionContainsProducts.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertItemsOrderedSectionOnBackendOrderIsEmpty.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertItemsOrderedSectionOnBackendOrderIsEmpty.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertNoCreditMemoButton.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertNoCreditMemoButton.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertNoInvoiceButton.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertNoInvoiceButton.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOnlineInvoiceCannotBeCreated.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOnlineInvoiceCannotBeCreated.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderAddresses.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderAddresses.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderBillingAndShippingAddressesAreDifferent.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderBillingAndShippingAddressesAreDifferent.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderButtonsAvailable.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderButtonsAvailable.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderButtonsUnavailable.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderButtonsUnavailable.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderByDateInOrdersGrid.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderByDateInOrdersGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderCancelMassActionFailMessage.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderCancelMassActionFailMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderCancelMassActionSuccessMessage.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderCancelMassActionSuccessMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderCancelSuccessMessage.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderCancelSuccessMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderCommentsHistoryNotifyStatus.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderCommentsHistoryNotifyStatus.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderGrandTotal.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderGrandTotal.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderGraphImageIsVisible.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderGraphImageIsVisible.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderInOrdersGrid.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderInOrdersGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderInOrdersGridOnFrontend.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderInOrdersGridOnFrontend.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderItemsPagerDisplayedOnFrontend.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderItemsPagerDisplayedOnFrontend.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderItemsPagerHiddenOnFrontend.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderItemsPagerHiddenOnFrontend.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderMassOnHoldSuccessMessage.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderMassOnHoldSuccessMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderNotInOrdersGrid.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderNotInOrdersGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderNotVisibleOnMyAccount.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderNotVisibleOnMyAccount.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderOnHoldFailMessage.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderOnHoldFailMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderOnHoldSuccessMessage.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderOnHoldSuccessMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderPaymentInformation.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderPaymentInformation.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderReleaseFailMessage.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderReleaseFailMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderReleaseSuccessMessage.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderReleaseSuccessMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderStatusDuplicateStatus.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderStatusDuplicateStatus.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderStatusInGrid.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderStatusInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderStatusIsCanceled.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderStatusIsCanceled.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderStatusIsCorrect.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderStatusIsCorrect.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderStatusNotAssigned.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderStatusNotAssigned.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderStatusSuccessAssignMessage.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderStatusSuccessAssignMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderStatusSuccessCreateMessage.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderStatusSuccessCreateMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderStatusSuccessUnassignMessage.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderStatusSuccessUnassignMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderSuccessCreateMessage.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderSuccessCreateMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderSuccessVoidedMessage.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderSuccessVoidedMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderTotalPaid.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrderTotalPaid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrdersInOrdersGrid.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertOrdersInOrdersGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertProductInCustomerShoppingCartOnBackendGrid.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertProductInCustomerShoppingCartOnBackendGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertProductInItemsOrderedGrid.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertProductInItemsOrderedGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertProductQtyDecreased.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertProductQtyDecreased.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertProductQtyDecreasedAfterCreditmemo.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertProductQtyDecreasedAfterCreditmemo.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertProductsQtyAfterOrderCancel.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertProductsQtyAfterOrderCancel.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertRefundInCommentsHistory.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertRefundInCommentsHistory.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertRefundInCreditMemoTab.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertRefundInCreditMemoTab.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertRefundInRefundsGrid.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertRefundInRefundsGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertRefundNotInRefundsGrid.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertRefundNotInRefundsGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertRefundOrderStatusInCommentsHistory.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertRefundOrderStatusInCommentsHistory.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertRefundSuccessCreateMessage.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertRefundSuccessCreateMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertRefundedGrandTotalOnFrontend.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertRefundedGrandTotalOnFrontend.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertReorderButtonIsNotVisibleOnFrontend.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertReorderButtonIsNotVisibleOnFrontend.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertReorderStatusIsCorrect.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertReorderStatusIsCorrect.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertSalesPrintOrderBillingAddress.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertSalesPrintOrderBillingAddress.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertSalesPrintOrderGrandTotal.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertSalesPrintOrderGrandTotal.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertSalesPrintOrderPaymentMethod.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertSalesPrintOrderPaymentMethod.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertSalesPrintOrderProducts.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertSalesPrintOrderProducts.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertTransactionStatus.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertTransactionStatus.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertUnholdButton.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertUnholdButton.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertVoidInCommentsHistory.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Constraint/AssertVoidInCommentsHistory.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Fixture/OrderInjectable.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/Fixture/OrderInjectable.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Fixture/OrderInjectable/BillingAddressId.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Fixture/OrderInjectable/BillingAddressId.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Fixture/OrderInjectable/CouponCode.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Fixture/OrderInjectable/CouponCode.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Fixture/OrderInjectable/CustomerId.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Fixture/OrderInjectable/CustomerId.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Fixture/OrderInjectable/EntityId.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Fixture/OrderInjectable/EntityId.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Fixture/OrderInjectable/StoreId.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Fixture/OrderInjectable/StoreId.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Fixture/OrderStatus.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/Fixture/OrderStatus.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Handler/OrderInjectable/Curl.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Handler/OrderInjectable/Curl.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Handler/OrderInjectable/OrderInjectableInterface.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Handler/OrderInjectable/OrderInjectableInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Handler/OrderInjectable/Webapi.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Handler/OrderInjectable/Webapi.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Handler/OrderStatus/Curl.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Handler/OrderStatus/Curl.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Handler/OrderStatus/OrderStatusInterface.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Handler/OrderStatus/OrderStatusInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Page/Adminhtml/CreditMemoIndex.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/Page/Adminhtml/CreditMemoIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Page/Adminhtml/InvoiceIndex.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/Page/Adminhtml/InvoiceIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Page/Adminhtml/OrderCreateIndex.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/Page/Adminhtml/OrderCreateIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Page/Adminhtml/OrderCreditMemoNew.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/Page/Adminhtml/OrderCreditMemoNew.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Page/Adminhtml/OrderIndex.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/Page/Adminhtml/OrderIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Page/Adminhtml/OrderInvoiceNew.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/Page/Adminhtml/OrderInvoiceNew.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Page/Adminhtml/OrderInvoiceView.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/Page/Adminhtml/OrderInvoiceView.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Page/Adminhtml/OrderStatusAssign.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/Page/Adminhtml/OrderStatusAssign.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Page/Adminhtml/OrderStatusEdit.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/Page/Adminhtml/OrderStatusEdit.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Page/Adminhtml/OrderStatusIndex.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/Page/Adminhtml/OrderStatusIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Page/Adminhtml/OrderStatusNew.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/Page/Adminhtml/OrderStatusNew.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Page/Adminhtml/SalesCreditMemoView.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/Page/Adminhtml/SalesCreditMemoView.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Page/Adminhtml/SalesInvoiceView.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/Page/Adminhtml/SalesInvoiceView.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Page/Adminhtml/SalesOrderView.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/Page/Adminhtml/SalesOrderView.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Page/CreditMemoView.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/Page/CreditMemoView.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Page/CustomerOrderView.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/Page/CustomerOrderView.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Page/InvoiceView.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/Page/InvoiceView.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Page/OrderHistory.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/Page/OrderHistory.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Page/SalesGuestForm.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/Page/SalesGuestForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Page/SalesGuestPrint.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/Page/SalesGuestPrint.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Page/SalesGuestView.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/Page/SalesGuestView.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Page/SalesOrderShipmentNew.php b/dev/tests/functional/tests/app/Magento/Sales/Test/Page/SalesOrderShipmentNew.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Repository/ConfigData.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/Repository/ConfigData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Repository/OrderInjectable.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/Repository/OrderInjectable.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Repository/OrderInjectable/Invoice.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/Repository/OrderInjectable/Invoice.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Repository/OrderInjectable/Price.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/Repository/OrderInjectable/Price.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/Repository/OrderStatus.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/Repository/OrderStatus.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/AssignCustomOrderStatusTest.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/AssignCustomOrderStatusTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/AssignCustomOrderStatusTest.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/AssignCustomOrderStatusTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CancelCreatedOrderTest.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CancelCreatedOrderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CancelCreatedOrderTest.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CancelCreatedOrderTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CloseOrderTest.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CloseOrderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CreateCreditMemoEntityTest.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CreateCreditMemoEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CreateCreditMemoEntityTest.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CreateCreditMemoEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CreateCustomOrderStatusEntityTest.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CreateCustomOrderStatusEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CreateCustomOrderStatusEntityTest.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CreateCustomOrderStatusEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CreateInvoiceEntityTest.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CreateInvoiceEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CreateInvoiceEntityTest.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CreateInvoiceEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CreateOnlineCreditMemoTest.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CreateOnlineCreditMemoTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CreateOnlineInvoiceEntityTest.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CreateOnlineInvoiceEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CreateOrderBackendPartOneTest.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CreateOrderBackendPartOneTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CreateOrderBackendPartOneTest.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CreateOrderBackendPartOneTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CreateOrderBackendTest.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CreateOrderBackendTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CreateOrderBackendTest.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CreateOrderBackendTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CreateOrderFromEditCustomerPageTest.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CreateOrderFromEditCustomerPageTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CreateOrderFromEditCustomerPageTest.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/CreateOrderFromEditCustomerPageTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/FrontendOrderPagerTest.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/FrontendOrderPagerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/FrontendOrderPagerTest.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/FrontendOrderPagerTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/GridFilteringTest.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/GridFilteringTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/GridFullTextSearchTest.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/GridFullTextSearchTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/GridSortingTest.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/GridSortingTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/HoldCreatedOrderTest.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/HoldCreatedOrderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/HoldCreatedOrderTest.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/HoldCreatedOrderTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/MassOrdersUpdateTest.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/MassOrdersUpdateTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/MassOrdersUpdateTest.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/MassOrdersUpdateTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/MoveLastOrderedProductsOnOrderPageTest.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/MoveLastOrderedProductsOnOrderPageTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/MoveLastOrderedProductsOnOrderPageTest.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/MoveLastOrderedProductsOnOrderPageTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/MoveProductsInComparedOnOrderPageTest.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/MoveProductsInComparedOnOrderPageTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/MoveProductsInComparedOnOrderPageTest.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/MoveProductsInComparedOnOrderPageTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/MoveRecentlyComparedProductsOnOrderPageTest.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/MoveRecentlyComparedProductsOnOrderPageTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/MoveRecentlyComparedProductsOnOrderPageTest.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/MoveRecentlyComparedProductsOnOrderPageTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/MoveRecentlyViewedProductsOnOrderPageTest.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/MoveRecentlyViewedProductsOnOrderPageTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/MoveRecentlyViewedProductsOnOrderPageTest.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/MoveRecentlyViewedProductsOnOrderPageTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/MoveShoppingCartProductsOnOrderPageTest.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/MoveShoppingCartProductsOnOrderPageTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/MoveShoppingCartProductsOnOrderPageTest.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/MoveShoppingCartProductsOnOrderPageTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/NavigateMenuTest.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/NavigateMenuTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/PrintOrderFrontendGuestTest.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/PrintOrderFrontendGuestTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/PrintOrderFrontendGuestTest.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/PrintOrderFrontendGuestTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/ReorderOrderEntityTest.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/ReorderOrderEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/ReorderOrderEntityTest.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/ReorderOrderEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/UnassignCustomOrderStatusTest.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/UnassignCustomOrderStatusTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/UnassignCustomOrderStatusTest.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/UnassignCustomOrderStatusTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/UpdateCustomOrderStatusTest.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/UpdateCustomOrderStatusTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/UpdateCustomOrderStatusTest.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/UpdateCustomOrderStatusTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/VoidAuthorizationTest.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestCase/VoidAuthorizationTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/AcceptPaymentStep.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/AcceptPaymentStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/AddProductsStep.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/AddProductsStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/AddRecentlyViewedProductsToCartStep.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/AddRecentlyViewedProductsToCartStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/CancelOrderStep.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/CancelOrderStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/ConfigureProductsStep.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/ConfigureProductsStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/CreateCreditMemoStep.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/CreateCreditMemoStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/CreateInvoiceStep.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/CreateInvoiceStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/CreateNewOrderStep.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/CreateNewOrderStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/CreateOnlineCreditMemoStep.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/CreateOnlineCreditMemoStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/CreateOrderStep.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/CreateOrderStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/CreateShipmentStep.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/CreateShipmentStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/DenyPaymentStep.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/DenyPaymentStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/FillAccountInformationStep.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/FillAccountInformationStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/FillBillingAddressStep.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/FillBillingAddressStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/FillShippingAddressStep.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/FillShippingAddressStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/GetPaymentUpdateStep.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/GetPaymentUpdateStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/OnHoldStep.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/OnHoldStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/OpenOrderStep.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/OpenOrderStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/OpenSalesOrderOnFrontendForGuestStep.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/OpenSalesOrderOnFrontendForGuestStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/OpenSalesOrdersStep.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/OpenSalesOrdersStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/PrintOrderOnFrontendStep.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/PrintOrderOnFrontendStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/ReorderStep.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/ReorderStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/SelectCustomerOrderStep.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/SelectCustomerOrderStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/SelectPaymentMethodForOrderStep.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/SelectPaymentMethodForOrderStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/SelectShippingMethodForOrderStep.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/SelectShippingMethodForOrderStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/SelectStoreStep.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/SelectStoreStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/SubmitOrderNegativeStep.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/SubmitOrderNegativeStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/SubmitOrderStep.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/SubmitOrderStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/SubmitOrderWithoutAdditionalInfoStep.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/SubmitOrderWithoutAdditionalInfoStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/UnholdOrderStep.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/UnholdOrderStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/UpdateProductsDataStep.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/UpdateProductsDataStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/Utils/CompareQtyTrait.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/Utils/CompareQtyTrait.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/VoidAuthorizationStep.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/VoidAuthorizationStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/etc/curl/di.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/etc/curl/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/etc/di.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/etc/testcase.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/etc/testcase.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/etc/webapi/di.xml b/dev/tests/functional/tests/app/Magento/Sales/Test/etc/webapi/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/Block/Adminhtml/Promo/Grid.php b/dev/tests/functional/tests/app/Magento/SalesRule/Test/Block/Adminhtml/Promo/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/Block/Adminhtml/Promo/Quote/Edit/PromoQuoteForm.php b/dev/tests/functional/tests/app/Magento/SalesRule/Test/Block/Adminhtml/Promo/Quote/Edit/PromoQuoteForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/Block/Adminhtml/Promo/Quote/Edit/PromoQuoteForm.xml b/dev/tests/functional/tests/app/Magento/SalesRule/Test/Block/Adminhtml/Promo/Quote/Edit/PromoQuoteForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/Block/Adminhtml/Promo/Quote/Edit/Section/Conditions.php b/dev/tests/functional/tests/app/Magento/SalesRule/Test/Block/Adminhtml/Promo/Quote/Edit/Section/Conditions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/Block/Adminhtml/Promo/Quote/Edit/Section/Labels.php b/dev/tests/functional/tests/app/Magento/SalesRule/Test/Block/Adminhtml/Promo/Quote/Edit/Section/Labels.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/Block/Adminhtml/Promo/Quote/Edit/Section/ManageCouponCode.php b/dev/tests/functional/tests/app/Magento/SalesRule/Test/Block/Adminhtml/Promo/Quote/Edit/Section/ManageCouponCode.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/Block/Adminhtml/Promo/Quote/Edit/Section/RuleInformation.php b/dev/tests/functional/tests/app/Magento/SalesRule/Test/Block/Adminhtml/Promo/Quote/Edit/Section/RuleInformation.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/Block/Order/Items.php b/dev/tests/functional/tests/app/Magento/SalesRule/Test/Block/Order/Items.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/Block/Order/View.php b/dev/tests/functional/tests/app/Magento/SalesRule/Test/Block/Order/View.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/Constraint/AssertCartPriceRuleApplying.php b/dev/tests/functional/tests/app/Magento/SalesRule/Test/Constraint/AssertCartPriceRuleApplying.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/Constraint/AssertCartPriceRuleConditionIsApplied.php b/dev/tests/functional/tests/app/Magento/SalesRule/Test/Constraint/AssertCartPriceRuleConditionIsApplied.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/Constraint/AssertCartPriceRuleConditionIsNotApplied.php b/dev/tests/functional/tests/app/Magento/SalesRule/Test/Constraint/AssertCartPriceRuleConditionIsNotApplied.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/Constraint/AssertCartPriceRuleForm.php b/dev/tests/functional/tests/app/Magento/SalesRule/Test/Constraint/AssertCartPriceRuleForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/Constraint/AssertCartPriceRuleFreeShippingIsApplied.php b/dev/tests/functional/tests/app/Magento/SalesRule/Test/Constraint/AssertCartPriceRuleFreeShippingIsApplied.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/Constraint/AssertCartPriceRuleIsNotPresentedInGrid.php b/dev/tests/functional/tests/app/Magento/SalesRule/Test/Constraint/AssertCartPriceRuleIsNotPresentedInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/Constraint/AssertCartPriceRuleSuccessDeleteMessage.php b/dev/tests/functional/tests/app/Magento/SalesRule/Test/Constraint/AssertCartPriceRuleSuccessDeleteMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/Constraint/AssertCartPriceRuleSuccessSaveMessage.php b/dev/tests/functional/tests/app/Magento/SalesRule/Test/Constraint/AssertCartPriceRuleSuccessSaveMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/Constraint/AssertSalesRuleOnPrintOrder.php b/dev/tests/functional/tests/app/Magento/SalesRule/Test/Constraint/AssertSalesRuleOnPrintOrder.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/Fixture/SalesRule.xml b/dev/tests/functional/tests/app/Magento/SalesRule/Test/Fixture/SalesRule.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/Fixture/SalesRule/ConditionsSerialized.php b/dev/tests/functional/tests/app/Magento/SalesRule/Test/Fixture/SalesRule/ConditionsSerialized.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/Handler/SalesRule/Curl.php b/dev/tests/functional/tests/app/Magento/SalesRule/Test/Handler/SalesRule/Curl.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/Handler/SalesRule/SalesRuleInterface.php b/dev/tests/functional/tests/app/Magento/SalesRule/Test/Handler/SalesRule/SalesRuleInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/Handler/SalesRule/Webapi.php b/dev/tests/functional/tests/app/Magento/SalesRule/Test/Handler/SalesRule/Webapi.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/Page/Adminhtml/PromoQuoteEdit.xml b/dev/tests/functional/tests/app/Magento/SalesRule/Test/Page/Adminhtml/PromoQuoteEdit.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/Page/Adminhtml/PromoQuoteIndex.xml b/dev/tests/functional/tests/app/Magento/SalesRule/Test/Page/Adminhtml/PromoQuoteIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/Page/Adminhtml/PromoQuoteNew.xml b/dev/tests/functional/tests/app/Magento/SalesRule/Test/Page/Adminhtml/PromoQuoteNew.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/Page/SalesGuestPrint.xml b/dev/tests/functional/tests/app/Magento/SalesRule/Test/Page/SalesGuestPrint.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/Repository/ConfigData.xml b/dev/tests/functional/tests/app/Magento/SalesRule/Test/Repository/ConfigData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/Repository/SalesRule.xml b/dev/tests/functional/tests/app/Magento/SalesRule/Test/Repository/SalesRule.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/ApplySeveralSalesRuleEntityTest.php b/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/ApplySeveralSalesRuleEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/ApplySeveralSalesRuleEntityTest.xml b/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/ApplySeveralSalesRuleEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/CreateSalesRuleEntityPartOneTest.php b/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/CreateSalesRuleEntityPartOneTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/CreateSalesRuleEntityPartOneTest.xml b/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/CreateSalesRuleEntityPartOneTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/CreateSalesRuleEntityPartTwoTest.php b/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/CreateSalesRuleEntityPartTwoTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/CreateSalesRuleEntityPartTwoTest.xml b/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/CreateSalesRuleEntityPartTwoTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/CreateSalesRuleEntityTest.php b/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/CreateSalesRuleEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/CreateSalesRuleEntityTest.xml b/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/CreateSalesRuleEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/DeleteSalesRuleEntityTest.php b/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/DeleteSalesRuleEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/DeleteSalesRuleEntityTest.xml b/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/DeleteSalesRuleEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/NavigateMenuTest.xml b/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/NavigateMenuTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/OnePageCheckoutPaymentMethodDataPersistenceWithDiscountTest.php b/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/OnePageCheckoutPaymentMethodDataPersistenceWithDiscountTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/OnePageCheckoutWithDiscountTest.php b/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/OnePageCheckoutWithDiscountTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/ShoppingCartWithFreeShippingAndFlatRateTest.php b/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/ShoppingCartWithFreeShippingAndFlatRateTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/ShoppingCartWithFreeShippingAndFlatRateTest.xml b/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/ShoppingCartWithFreeShippingAndFlatRateTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/ShoppingCartWithFreeShippingTest.php b/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/ShoppingCartWithFreeShippingTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/ShoppingCartWithFreeShippingTest.xml b/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/ShoppingCartWithFreeShippingTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/UpdateSalesRuleEntityTest.php b/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/UpdateSalesRuleEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/UpdateSalesRuleEntityTest.xml b/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestCase/UpdateSalesRuleEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestStep/ApplySalesRuleOnBackendStep.php b/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestStep/ApplySalesRuleOnBackendStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestStep/ApplySalesRuleOnCheckoutStep.php b/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestStep/ApplySalesRuleOnCheckoutStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestStep/ApplySalesRuleOnFrontendStep.php b/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestStep/ApplySalesRuleOnFrontendStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestStep/CreateSalesRuleStep.php b/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestStep/CreateSalesRuleStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestStep/CreateSalesRuleThroughAdminStep.php b/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestStep/CreateSalesRuleThroughAdminStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestStep/DeleteAllSalesRuleStep.php b/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestStep/DeleteAllSalesRuleStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestStep/DeleteSalesRulesStep.php b/dev/tests/functional/tests/app/Magento/SalesRule/Test/TestStep/DeleteSalesRulesStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/etc/curl/di.xml b/dev/tests/functional/tests/app/Magento/SalesRule/Test/etc/curl/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/etc/testcase.xml b/dev/tests/functional/tests/app/Magento/SalesRule/Test/etc/testcase.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/SalesRule/Test/etc/webapi/di.xml b/dev/tests/functional/tests/app/Magento/SalesRule/Test/etc/webapi/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Search/Test/Block/Adminhtml/Block/Edit/SynonymGroupForm.php b/dev/tests/functional/tests/app/Magento/Search/Test/Block/Adminhtml/Block/Edit/SynonymGroupForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Search/Test/Block/Adminhtml/Block/Edit/SynonymGroupForm.xml b/dev/tests/functional/tests/app/Magento/Search/Test/Block/Adminhtml/Block/Edit/SynonymGroupForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Search/Test/Block/Adminhtml/Block/SynonymGroupGrid.php b/dev/tests/functional/tests/app/Magento/Search/Test/Block/Adminhtml/Block/SynonymGroupGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Search/Test/Constraint/AssertSynonymGroupDeleteMessage.php b/dev/tests/functional/tests/app/Magento/Search/Test/Constraint/AssertSynonymGroupDeleteMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Search/Test/Constraint/AssertSynonymGroupInGrid.php b/dev/tests/functional/tests/app/Magento/Search/Test/Constraint/AssertSynonymGroupInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Search/Test/Constraint/AssertSynonymGroupSuccessSaveMessage.php b/dev/tests/functional/tests/app/Magento/Search/Test/Constraint/AssertSynonymGroupSuccessSaveMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Search/Test/Constraint/AssertSynonymGroupsSearch.php b/dev/tests/functional/tests/app/Magento/Search/Test/Constraint/AssertSynonymGroupsSearch.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Search/Test/Constraint/AssertSynonymMergeErrorMessage.php b/dev/tests/functional/tests/app/Magento/Search/Test/Constraint/AssertSynonymMergeErrorMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Search/Test/Constraint/AssertSynonymRestrictedAccess.php b/dev/tests/functional/tests/app/Magento/Search/Test/Constraint/AssertSynonymRestrictedAccess.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Search/Test/Fixture/SynonymGroup.xml b/dev/tests/functional/tests/app/Magento/Search/Test/Fixture/SynonymGroup.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Search/Test/Fixture/SynonymGroup/ScopeId.php b/dev/tests/functional/tests/app/Magento/Search/Test/Fixture/SynonymGroup/ScopeId.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Search/Test/Handler/SynonymGroup/Curl.php b/dev/tests/functional/tests/app/Magento/Search/Test/Handler/SynonymGroup/Curl.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Search/Test/Handler/SynonymGroup/SynonymGroupInterface.php b/dev/tests/functional/tests/app/Magento/Search/Test/Handler/SynonymGroup/SynonymGroupInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Search/Test/Page/Adminhtml/SynonymGroupIndex.xml b/dev/tests/functional/tests/app/Magento/Search/Test/Page/Adminhtml/SynonymGroupIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Search/Test/Page/Adminhtml/SynonymGroupNew.xml b/dev/tests/functional/tests/app/Magento/Search/Test/Page/Adminhtml/SynonymGroupNew.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Search/Test/Repository/SynonymGroup.xml b/dev/tests/functional/tests/app/Magento/Search/Test/Repository/SynonymGroup.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Search/Test/TestCase/AdvancedSearchWithAttributeTest.php b/dev/tests/functional/tests/app/Magento/Search/Test/TestCase/AdvancedSearchWithAttributeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Search/Test/TestCase/AdvancedSearchWithAttributeTest.xml b/dev/tests/functional/tests/app/Magento/Search/Test/TestCase/AdvancedSearchWithAttributeTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Search/Test/TestCase/CreateMultipleSynonymGroupsTest.php b/dev/tests/functional/tests/app/Magento/Search/Test/TestCase/CreateMultipleSynonymGroupsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Search/Test/TestCase/CreateMultipleSynonymGroupsTest.xml b/dev/tests/functional/tests/app/Magento/Search/Test/TestCase/CreateMultipleSynonymGroupsTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Search/Test/TestCase/CreateSynonymGroupEntityTest.php b/dev/tests/functional/tests/app/Magento/Search/Test/TestCase/CreateSynonymGroupEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Search/Test/TestCase/CreateSynonymGroupEntityTest.xml b/dev/tests/functional/tests/app/Magento/Search/Test/TestCase/CreateSynonymGroupEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Search/Test/TestCase/CustomAclPermissionTest.xml b/dev/tests/functional/tests/app/Magento/Search/Test/TestCase/CustomAclPermissionTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Search/Test/TestCase/MergeSynonymGroupEntityTest.php b/dev/tests/functional/tests/app/Magento/Search/Test/TestCase/MergeSynonymGroupEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Search/Test/TestCase/MergeSynonymGroupEntityTest.xml b/dev/tests/functional/tests/app/Magento/Search/Test/TestCase/MergeSynonymGroupEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Search/Test/TestCase/UpdateSynonymGroupEntityTest.php b/dev/tests/functional/tests/app/Magento/Search/Test/TestCase/UpdateSynonymGroupEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Search/Test/TestCase/UpdateSynonymGroupEntityTest.xml b/dev/tests/functional/tests/app/Magento/Search/Test/TestCase/UpdateSynonymGroupEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Search/Test/TestStep/DeleteAllSynonymGroupsStep.php b/dev/tests/functional/tests/app/Magento/Search/Test/TestStep/DeleteAllSynonymGroupsStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Search/Test/etc/curl/di.xml b/dev/tests/functional/tests/app/Magento/Search/Test/etc/curl/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Search/Test/etc/di.xml b/dev/tests/functional/tests/app/Magento/Search/Test/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Security/Test/Block/Form/ForgotPassword.php b/dev/tests/functional/tests/app/Magento/Security/Test/Block/Form/ForgotPassword.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Security/Test/Block/Form/ForgotPassword.xml b/dev/tests/functional/tests/app/Magento/Security/Test/Block/Form/ForgotPassword.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Security/Test/Constraint/AssertCustomerEmailChanged.php b/dev/tests/functional/tests/app/Magento/Security/Test/Constraint/AssertCustomerEmailChanged.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Security/Test/Constraint/AssertCustomerIsLocked.php b/dev/tests/functional/tests/app/Magento/Security/Test/Constraint/AssertCustomerIsLocked.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Security/Test/Constraint/AssertCustomerPasswordRequiredClasses.php b/dev/tests/functional/tests/app/Magento/Security/Test/Constraint/AssertCustomerPasswordRequiredClasses.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Security/Test/Constraint/AssertCustomerResetPasswordFailed.php b/dev/tests/functional/tests/app/Magento/Security/Test/Constraint/AssertCustomerResetPasswordFailed.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Security/Test/Constraint/AssertDefaultAccountInformation.php b/dev/tests/functional/tests/app/Magento/Security/Test/Constraint/AssertDefaultAccountInformation.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Security/Test/Constraint/AssertPasswordIsNotSecureEnoughMessage.php b/dev/tests/functional/tests/app/Magento/Security/Test/Constraint/AssertPasswordIsNotSecureEnoughMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Security/Test/Constraint/AssertPasswordLengthErrorMessage.php b/dev/tests/functional/tests/app/Magento/Security/Test/Constraint/AssertPasswordLengthErrorMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Security/Test/Constraint/AssertUserIsLocked.php b/dev/tests/functional/tests/app/Magento/Security/Test/Constraint/AssertUserIsLocked.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Security/Test/Constraint/AssertUserPasswordResetFailed.php b/dev/tests/functional/tests/app/Magento/Security/Test/Constraint/AssertUserPasswordResetFailed.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Security/Test/Page/UserAccountForgotPassword.php b/dev/tests/functional/tests/app/Magento/Security/Test/Page/UserAccountForgotPassword.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Security/Test/Repository/ConfigData.xml b/dev/tests/functional/tests/app/Magento/Security/Test/Repository/ConfigData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/LockAdminUserWhenCreatingNewIntegrationTest.php b/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/LockAdminUserWhenCreatingNewIntegrationTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/LockAdminUserWhenCreatingNewIntegrationTest.xml b/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/LockAdminUserWhenCreatingNewIntegrationTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/LockAdminUserWhenCreatingNewRoleTest.php b/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/LockAdminUserWhenCreatingNewRoleTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/LockAdminUserWhenCreatingNewRoleTest.xml b/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/LockAdminUserWhenCreatingNewRoleTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/LockAdminUserWhenCreatingNewUserTest.php b/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/LockAdminUserWhenCreatingNewUserTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/LockAdminUserWhenCreatingNewUserTest.xml b/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/LockAdminUserWhenCreatingNewUserTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/LockAdminUserWhenEditingIntegrationTest.php b/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/LockAdminUserWhenEditingIntegrationTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/LockAdminUserWhenEditingIntegrationTest.xml b/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/LockAdminUserWhenEditingIntegrationTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/LockAdminUserWhenEditingRoleTest.php b/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/LockAdminUserWhenEditingRoleTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/LockAdminUserWhenEditingRoleTest.xml b/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/LockAdminUserWhenEditingRoleTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/LockAdminUserWhenEditingUserTest.php b/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/LockAdminUserWhenEditingUserTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/LockAdminUserWhenEditingUserTest.xml b/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/LockAdminUserWhenEditingUserTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/LockCustomerOnEditPageTest.php b/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/LockCustomerOnEditPageTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/LockCustomerOnEditPageTest.xml b/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/LockCustomerOnEditPageTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/LockCustomerOnLoginPageTest.php b/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/LockCustomerOnLoginPageTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/LockCustomerOnLoginPageTest.xml b/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/LockCustomerOnLoginPageTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/NewCustomerPasswordComplexityTest.php b/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/NewCustomerPasswordComplexityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/NewCustomerPasswordComplexityTest.xml b/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/NewCustomerPasswordComplexityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/RegisterCustomerEntityWithDifferentPasswordClassesTest.php b/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/RegisterCustomerEntityWithDifferentPasswordClassesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/RegisterCustomerEntityWithDifferentPasswordClassesTest.xml b/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/RegisterCustomerEntityWithDifferentPasswordClassesTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/ResetCustomerPasswordFailedTest.php b/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/ResetCustomerPasswordFailedTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/ResetCustomerPasswordFailedTest.xml b/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/ResetCustomerPasswordFailedTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/ResetUserPasswordFailedTest.php b/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/ResetUserPasswordFailedTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/ResetUserPasswordFailedTest.xml b/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/ResetUserPasswordFailedTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/SecureChangingCustomerEmailTest.php b/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/SecureChangingCustomerEmailTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/SecureChangingCustomerEmailTest.xml b/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/SecureChangingCustomerEmailTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/SecureChangingCustomerPasswordTest.php b/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/SecureChangingCustomerPasswordTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/SecureChangingCustomerPasswordTest.xml b/dev/tests/functional/tests/app/Magento/Security/Test/TestCase/SecureChangingCustomerPasswordTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Security/Test/etc/di.xml b/dev/tests/functional/tests/app/Magento/Security/Test/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/Block/Authentication.php b/dev/tests/functional/tests/app/Magento/Setup/Test/Block/Authentication.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/Block/Authentication.xml b/dev/tests/functional/tests/app/Magento/Setup/Test/Block/Authentication.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/Block/CreateBackup.php b/dev/tests/functional/tests/app/Magento/Setup/Test/Block/CreateBackup.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/Block/CreateBackup.xml b/dev/tests/functional/tests/app/Magento/Setup/Test/Block/CreateBackup.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/Block/Extension/AbstractGrid.php b/dev/tests/functional/tests/app/Magento/Setup/Test/Block/Extension/AbstractGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/Block/Extension/DataOption.php b/dev/tests/functional/tests/app/Magento/Setup/Test/Block/Extension/DataOption.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/Block/Extension/Grid.php b/dev/tests/functional/tests/app/Magento/Setup/Test/Block/Extension/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/Block/Extension/InstallGrid.php b/dev/tests/functional/tests/app/Magento/Setup/Test/Block/Extension/InstallGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/Block/Extension/UpdateGrid.php b/dev/tests/functional/tests/app/Magento/Setup/Test/Block/Extension/UpdateGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/Block/Extension/Updater.php b/dev/tests/functional/tests/app/Magento/Setup/Test/Block/Extension/Updater.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/Block/Home.php b/dev/tests/functional/tests/app/Magento/Setup/Test/Block/Home.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/Block/Module/Grid.php b/dev/tests/functional/tests/app/Magento/Setup/Test/Block/Module/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/Block/Module/Status.php b/dev/tests/functional/tests/app/Magento/Setup/Test/Block/Module/Status.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/Block/Readiness.php b/dev/tests/functional/tests/app/Magento/Setup/Test/Block/Readiness.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/Block/SelectVersion.php b/dev/tests/functional/tests/app/Magento/Setup/Test/Block/SelectVersion.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/Block/SelectVersion.xml b/dev/tests/functional/tests/app/Magento/Setup/Test/Block/SelectVersion.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/Block/SelectVersion/OtherComponentsGrid.php b/dev/tests/functional/tests/app/Magento/Setup/Test/Block/SelectVersion/OtherComponentsGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/Block/SelectVersion/OtherComponentsGrid/Item.php b/dev/tests/functional/tests/app/Magento/Setup/Test/Block/SelectVersion/OtherComponentsGrid/Item.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/Block/SuccessMessage.php b/dev/tests/functional/tests/app/Magento/Setup/Test/Block/SuccessMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/Block/SystemConfig.php b/dev/tests/functional/tests/app/Magento/Setup/Test/Block/SystemConfig.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/Block/SystemUpgrade.php b/dev/tests/functional/tests/app/Magento/Setup/Test/Block/SystemUpgrade.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/Constraint/AssertApplicationVersion.php b/dev/tests/functional/tests/app/Magento/Setup/Test/Constraint/AssertApplicationVersion.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/Constraint/AssertSuccessMessage.php b/dev/tests/functional/tests/app/Magento/Setup/Test/Constraint/AssertSuccessMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/Constraint/AssertSuccessfulReadinessCheck.php b/dev/tests/functional/tests/app/Magento/Setup/Test/Constraint/AssertSuccessfulReadinessCheck.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/Constraint/AssertVersionAndEditionCheck.php b/dev/tests/functional/tests/app/Magento/Setup/Test/Constraint/AssertVersionAndEditionCheck.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/Constraint/Extension/AssertExtensionAndVersionCheck.php b/dev/tests/functional/tests/app/Magento/Setup/Test/Constraint/Extension/AssertExtensionAndVersionCheck.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/Constraint/Extension/AssertFindExtensionOnGrid.php b/dev/tests/functional/tests/app/Magento/Setup/Test/Constraint/Extension/AssertFindExtensionOnGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/Constraint/Extension/AssertMultipleExtensionAndVersionCheck.php b/dev/tests/functional/tests/app/Magento/Setup/Test/Constraint/Extension/AssertMultipleExtensionAndVersionCheck.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/Constraint/Extension/AssertMultipleSuccessMessage.php b/dev/tests/functional/tests/app/Magento/Setup/Test/Constraint/Extension/AssertMultipleSuccessMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/Constraint/Extension/AssertSelectSeveralExtensions.php b/dev/tests/functional/tests/app/Magento/Setup/Test/Constraint/Extension/AssertSelectSeveralExtensions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/Constraint/Extension/AssertSuccessMessage.php b/dev/tests/functional/tests/app/Magento/Setup/Test/Constraint/Extension/AssertSuccessMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/Constraint/Extension/AssertVersionOnGrid.php b/dev/tests/functional/tests/app/Magento/Setup/Test/Constraint/Extension/AssertVersionOnGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/Constraint/Module/AssertModuleInGrid.php b/dev/tests/functional/tests/app/Magento/Setup/Test/Constraint/Module/AssertModuleInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/Constraint/Module/AssertSuccessMessage.php b/dev/tests/functional/tests/app/Magento/Setup/Test/Constraint/Module/AssertSuccessMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/Fixture/BackupOptions.xml b/dev/tests/functional/tests/app/Magento/Setup/Test/Fixture/BackupOptions.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/Fixture/Extension.xml b/dev/tests/functional/tests/app/Magento/Setup/Test/Fixture/Extension.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/Fixture/Module.xml b/dev/tests/functional/tests/app/Magento/Setup/Test/Fixture/Module.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/Fixture/RepoCredentials.xml b/dev/tests/functional/tests/app/Magento/Setup/Test/Fixture/RepoCredentials.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/Fixture/Upgrade.xml b/dev/tests/functional/tests/app/Magento/Setup/Test/Fixture/Upgrade.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/Page/Adminhtml/SetupWizard.xml b/dev/tests/functional/tests/app/Magento/Setup/Test/Page/Adminhtml/SetupWizard.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/Repository/BackupOptions.xml b/dev/tests/functional/tests/app/Magento/Setup/Test/Repository/BackupOptions.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/Repository/Extension.xml b/dev/tests/functional/tests/app/Magento/Setup/Test/Repository/Extension.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/Repository/RepoCredentials.xml b/dev/tests/functional/tests/app/Magento/Setup/Test/Repository/RepoCredentials.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/TestCase/AbstractExtensionTest.php b/dev/tests/functional/tests/app/Magento/Setup/Test/TestCase/AbstractExtensionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/TestCase/EnableDisableModuleTest.php b/dev/tests/functional/tests/app/Magento/Setup/Test/TestCase/EnableDisableModuleTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/TestCase/EnableDisableModuleTest.xml b/dev/tests/functional/tests/app/Magento/Setup/Test/TestCase/EnableDisableModuleTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/TestCase/ExtensionMultipleTest.php b/dev/tests/functional/tests/app/Magento/Setup/Test/TestCase/ExtensionMultipleTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/TestCase/ExtensionMultipleTest.xml b/dev/tests/functional/tests/app/Magento/Setup/Test/TestCase/ExtensionMultipleTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/TestCase/ExtensionMultipleUpdateTest.php b/dev/tests/functional/tests/app/Magento/Setup/Test/TestCase/ExtensionMultipleUpdateTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/TestCase/ExtensionMultipleUpdateTest.xml b/dev/tests/functional/tests/app/Magento/Setup/Test/TestCase/ExtensionMultipleUpdateTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/TestCase/ExtensionTest.php b/dev/tests/functional/tests/app/Magento/Setup/Test/TestCase/ExtensionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/TestCase/ExtensionTest.xml b/dev/tests/functional/tests/app/Magento/Setup/Test/TestCase/ExtensionTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/TestCase/UpgradeSystemTest.php b/dev/tests/functional/tests/app/Magento/Setup/Test/TestCase/UpgradeSystemTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Setup/Test/TestCase/UpgradeSystemTest.xml b/dev/tests/functional/tests/app/Magento/Setup/Test/TestCase/UpgradeSystemTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Shipping/Test/Block/Adminhtml/Form.php b/dev/tests/functional/tests/app/Magento/Shipping/Test/Block/Adminhtml/Form.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Shipping/Test/Block/Adminhtml/Form.xml b/dev/tests/functional/tests/app/Magento/Shipping/Test/Block/Adminhtml/Form.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Shipping/Test/Block/Adminhtml/Form/Items.php b/dev/tests/functional/tests/app/Magento/Shipping/Test/Block/Adminhtml/Form/Items.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Shipping/Test/Block/Adminhtml/Form/Items/Product.php b/dev/tests/functional/tests/app/Magento/Shipping/Test/Block/Adminhtml/Form/Items/Product.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Shipping/Test/Block/Adminhtml/Form/Items/Product.xml b/dev/tests/functional/tests/app/Magento/Shipping/Test/Block/Adminhtml/Form/Items/Product.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Shipping/Test/Block/Adminhtml/Order/Tracking.php b/dev/tests/functional/tests/app/Magento/Shipping/Test/Block/Adminhtml/Order/Tracking.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Shipping/Test/Block/Adminhtml/Order/Tracking/Item.php b/dev/tests/functional/tests/app/Magento/Shipping/Test/Block/Adminhtml/Order/Tracking/Item.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Shipping/Test/Block/Adminhtml/Order/Tracking/Item.xml b/dev/tests/functional/tests/app/Magento/Shipping/Test/Block/Adminhtml/Order/Tracking/Item.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Shipping/Test/Block/Adminhtml/Order/TrackingInfoTable.php b/dev/tests/functional/tests/app/Magento/Shipping/Test/Block/Adminhtml/Order/TrackingInfoTable.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Shipping/Test/Block/Adminhtml/Shipment/Grid.php b/dev/tests/functional/tests/app/Magento/Shipping/Test/Block/Adminhtml/Shipment/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Shipping/Test/Block/Adminhtml/View/Items.php b/dev/tests/functional/tests/app/Magento/Shipping/Test/Block/Adminhtml/View/Items.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Shipping/Test/Block/Order/Info.php b/dev/tests/functional/tests/app/Magento/Shipping/Test/Block/Order/Info.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Shipping/Test/Block/Order/Shipment.php b/dev/tests/functional/tests/app/Magento/Shipping/Test/Block/Order/Shipment.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Shipping/Test/Block/Order/Shipment/Items.php b/dev/tests/functional/tests/app/Magento/Shipping/Test/Block/Order/Shipment/Items.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Shipping/Test/Constraint/AssertCityBasedShippingRateChanged.php b/dev/tests/functional/tests/app/Magento/Shipping/Test/Constraint/AssertCityBasedShippingRateChanged.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Shipping/Test/Constraint/AssertNoShipButton.php b/dev/tests/functional/tests/app/Magento/Shipping/Test/Constraint/AssertNoShipButton.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Shipping/Test/Constraint/AssertShipTotalQuantity.php b/dev/tests/functional/tests/app/Magento/Shipping/Test/Constraint/AssertShipTotalQuantity.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Shipping/Test/Constraint/AssertShipmentInShipmentsGrid.php b/dev/tests/functional/tests/app/Magento/Shipping/Test/Constraint/AssertShipmentInShipmentsGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Shipping/Test/Constraint/AssertShipmentInShipmentsTab.php b/dev/tests/functional/tests/app/Magento/Shipping/Test/Constraint/AssertShipmentInShipmentsTab.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Shipping/Test/Constraint/AssertShipmentItems.php b/dev/tests/functional/tests/app/Magento/Shipping/Test/Constraint/AssertShipmentItems.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Shipping/Test/Constraint/AssertShipmentNotInShipmentsGrid.php b/dev/tests/functional/tests/app/Magento/Shipping/Test/Constraint/AssertShipmentNotInShipmentsGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Shipping/Test/Constraint/AssertShipmentSuccessCreateMessage.php b/dev/tests/functional/tests/app/Magento/Shipping/Test/Constraint/AssertShipmentSuccessCreateMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Shipping/Test/Constraint/AssertShippingMethodOnPrintOrder.php b/dev/tests/functional/tests/app/Magento/Shipping/Test/Constraint/AssertShippingMethodOnPrintOrder.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Shipping/Test/Constraint/AssertTrackingDetailsIsPresent.php b/dev/tests/functional/tests/app/Magento/Shipping/Test/Constraint/AssertTrackingDetailsIsPresent.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Shipping/Test/Fixture/Method.php b/dev/tests/functional/tests/app/Magento/Shipping/Test/Fixture/Method.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Shipping/Test/Page/Adminhtml/OrderShipmentNew.xml b/dev/tests/functional/tests/app/Magento/Shipping/Test/Page/Adminhtml/OrderShipmentNew.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Shipping/Test/Page/Adminhtml/OrderShipmentView.xml b/dev/tests/functional/tests/app/Magento/Shipping/Test/Page/Adminhtml/OrderShipmentView.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Shipping/Test/Page/Adminhtml/SalesShipmentView.xml b/dev/tests/functional/tests/app/Magento/Shipping/Test/Page/Adminhtml/SalesShipmentView.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Shipping/Test/Page/Adminhtml/ShipmentIndex.xml b/dev/tests/functional/tests/app/Magento/Shipping/Test/Page/Adminhtml/ShipmentIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Shipping/Test/Page/SalesGuestPrint.xml b/dev/tests/functional/tests/app/Magento/Shipping/Test/Page/SalesGuestPrint.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Shipping/Test/Page/ShipmentView.xml b/dev/tests/functional/tests/app/Magento/Shipping/Test/Page/ShipmentView.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Shipping/Test/Repository/ConfigData.xml b/dev/tests/functional/tests/app/Magento/Shipping/Test/Repository/ConfigData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Shipping/Test/Repository/Method.php b/dev/tests/functional/tests/app/Magento/Shipping/Test/Repository/Method.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Shipping/Test/TestCase/CityBasedShippingRateTest.php b/dev/tests/functional/tests/app/Magento/Shipping/Test/TestCase/CityBasedShippingRateTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Shipping/Test/TestCase/CreateShipmentEntityTest.php b/dev/tests/functional/tests/app/Magento/Shipping/Test/TestCase/CreateShipmentEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Shipping/Test/TestCase/CreateShipmentEntityTest.xml b/dev/tests/functional/tests/app/Magento/Shipping/Test/TestCase/CreateShipmentEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Shipping/Test/TestCase/SalesShippingReportEntityTest.php b/dev/tests/functional/tests/app/Magento/Shipping/Test/TestCase/SalesShippingReportEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Shipping/Test/TestCase/SalesShippingReportEntityTest.xml b/dev/tests/functional/tests/app/Magento/Shipping/Test/TestCase/SalesShippingReportEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Shipping/Test/TestCase/TrackingShipmentForPlacedOrderTest.php b/dev/tests/functional/tests/app/Magento/Shipping/Test/TestCase/TrackingShipmentForPlacedOrderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Shipping/Test/TestCase/TrackingShipmentForPlacedOrderTest.xml b/dev/tests/functional/tests/app/Magento/Shipping/Test/TestCase/TrackingShipmentForPlacedOrderTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Shipping/Test/TestStep/AddTrackingNumberStep.php b/dev/tests/functional/tests/app/Magento/Shipping/Test/TestStep/AddTrackingNumberStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Shipping/Test/TestStep/FillShippingAddressesStep.php b/dev/tests/functional/tests/app/Magento/Shipping/Test/TestStep/FillShippingAddressesStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Shipping/Test/etc/di.xml b/dev/tests/functional/tests/app/Magento/Shipping/Test/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Shipping/Test/etc/testcase.xml b/dev/tests/functional/tests/app/Magento/Shipping/Test/etc/testcase.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Signifyd/Test/Block/Adminhtml/Order/Grid.php b/dev/tests/functional/tests/app/Magento/Signifyd/Test/Block/Adminhtml/Order/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Signifyd/Test/Block/Adminhtml/Order/View/FraudProtection.php b/dev/tests/functional/tests/app/Magento/Signifyd/Test/Block/Adminhtml/Order/View/FraudProtection.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Signifyd/Test/Block/SignifydConsole/CaseInfo.php b/dev/tests/functional/tests/app/Magento/Signifyd/Test/Block/SignifydConsole/CaseInfo.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Signifyd/Test/Block/SignifydConsole/CaseSearch.php b/dev/tests/functional/tests/app/Magento/Signifyd/Test/Block/SignifydConsole/CaseSearch.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Signifyd/Test/Block/SignifydConsole/SignifydLogin.php b/dev/tests/functional/tests/app/Magento/Signifyd/Test/Block/SignifydConsole/SignifydLogin.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Signifyd/Test/Block/SignifydConsole/Webhooks.php b/dev/tests/functional/tests/app/Magento/Signifyd/Test/Block/SignifydConsole/Webhooks.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Signifyd/Test/Constraint/AssertAwaitingSignifydGuaranteeInCommentsHistory.php b/dev/tests/functional/tests/app/Magento/Signifyd/Test/Constraint/AssertAwaitingSignifydGuaranteeInCommentsHistory.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Signifyd/Test/Constraint/AssertCaseInfoOnAdmin.php b/dev/tests/functional/tests/app/Magento/Signifyd/Test/Constraint/AssertCaseInfoOnAdmin.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Signifyd/Test/Constraint/AssertCaseInfoOnSignifydConsole.php b/dev/tests/functional/tests/app/Magento/Signifyd/Test/Constraint/AssertCaseInfoOnSignifydConsole.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Signifyd/Test/Constraint/AssertSignifydCaseInCommentsHistory.php b/dev/tests/functional/tests/app/Magento/Signifyd/Test/Constraint/AssertSignifydCaseInCommentsHistory.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Signifyd/Test/Constraint/AssertSignifydCaseInOrdersGrid.php b/dev/tests/functional/tests/app/Magento/Signifyd/Test/Constraint/AssertSignifydCaseInOrdersGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Signifyd/Test/Constraint/AssertSignifydGuaranteeCancelInCommentsHistory.php b/dev/tests/functional/tests/app/Magento/Signifyd/Test/Constraint/AssertSignifydGuaranteeCancelInCommentsHistory.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Signifyd/Test/Fixture/SignifydAccount.xml b/dev/tests/functional/tests/app/Magento/Signifyd/Test/Fixture/SignifydAccount.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Signifyd/Test/Fixture/SignifydAddress.xml b/dev/tests/functional/tests/app/Magento/Signifyd/Test/Fixture/SignifydAddress.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Signifyd/Test/Fixture/SignifydAddress/Firstname.php b/dev/tests/functional/tests/app/Magento/Signifyd/Test/Fixture/SignifydAddress/Firstname.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Signifyd/Test/Fixture/SignifydData.xml b/dev/tests/functional/tests/app/Magento/Signifyd/Test/Fixture/SignifydData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Signifyd/Test/Page/Adminhtml/OrdersGrid.xml b/dev/tests/functional/tests/app/Magento/Signifyd/Test/Page/Adminhtml/OrdersGrid.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Signifyd/Test/Page/Adminhtml/SalesOrderView.xml b/dev/tests/functional/tests/app/Magento/Signifyd/Test/Page/Adminhtml/SalesOrderView.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Signifyd/Test/Page/SignifydConsole/SignifydCases.xml b/dev/tests/functional/tests/app/Magento/Signifyd/Test/Page/SignifydConsole/SignifydCases.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Signifyd/Test/Page/SignifydConsole/SignifydLogin.xml b/dev/tests/functional/tests/app/Magento/Signifyd/Test/Page/SignifydConsole/SignifydLogin.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Signifyd/Test/Page/SignifydConsole/SignifydNotifications.xml b/dev/tests/functional/tests/app/Magento/Signifyd/Test/Page/SignifydConsole/SignifydNotifications.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Signifyd/Test/Repository/Address.xml b/dev/tests/functional/tests/app/Magento/Signifyd/Test/Repository/Address.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Signifyd/Test/Repository/ConfigData.xml b/dev/tests/functional/tests/app/Magento/Signifyd/Test/Repository/ConfigData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Signifyd/Test/Repository/Customer.xml b/dev/tests/functional/tests/app/Magento/Signifyd/Test/Repository/Customer.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Signifyd/Test/Repository/SignifydAccount.xml b/dev/tests/functional/tests/app/Magento/Signifyd/Test/Repository/SignifydAccount.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Signifyd/Test/Repository/SignifydData.xml b/dev/tests/functional/tests/app/Magento/Signifyd/Test/Repository/SignifydData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Signifyd/Test/TestCase/AcceptPaymentWithSignifydGuaranteeDeclinedTest.php b/dev/tests/functional/tests/app/Magento/Signifyd/Test/TestCase/AcceptPaymentWithSignifydGuaranteeDeclinedTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Signifyd/Test/TestCase/AcceptPaymentWithSignifydGuaranteeDeclinedTest.xml b/dev/tests/functional/tests/app/Magento/Signifyd/Test/TestCase/AcceptPaymentWithSignifydGuaranteeDeclinedTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Signifyd/Test/TestCase/CreateSignifydGuaranteeAndCancelOrderTest.php b/dev/tests/functional/tests/app/Magento/Signifyd/Test/TestCase/CreateSignifydGuaranteeAndCancelOrderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Signifyd/Test/TestCase/CreateSignifydGuaranteeAndCancelOrderTest.xml b/dev/tests/functional/tests/app/Magento/Signifyd/Test/TestCase/CreateSignifydGuaranteeAndCancelOrderTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Signifyd/Test/TestCase/DenyPaymentWithSignifydGuaranteeDeclinedTest.php b/dev/tests/functional/tests/app/Magento/Signifyd/Test/TestCase/DenyPaymentWithSignifydGuaranteeDeclinedTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Signifyd/Test/TestCase/DenyPaymentWithSignifydGuaranteeDeclinedTest.xml b/dev/tests/functional/tests/app/Magento/Signifyd/Test/TestCase/DenyPaymentWithSignifydGuaranteeDeclinedTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Signifyd/Test/TestStep/OpenOrderGridStep.php b/dev/tests/functional/tests/app/Magento/Signifyd/Test/TestStep/OpenOrderGridStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Signifyd/Test/TestStep/SignifydCancelOrderStep.php b/dev/tests/functional/tests/app/Magento/Signifyd/Test/TestStep/SignifydCancelOrderStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Signifyd/Test/TestStep/SignifydCreateCustomerStep.php b/dev/tests/functional/tests/app/Magento/Signifyd/Test/TestStep/SignifydCreateCustomerStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Signifyd/Test/TestStep/SignifydFillShippingAddressStep.php b/dev/tests/functional/tests/app/Magento/Signifyd/Test/TestStep/SignifydFillShippingAddressStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Signifyd/Test/TestStep/SignifydLoginStep.php b/dev/tests/functional/tests/app/Magento/Signifyd/Test/TestStep/SignifydLoginStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Signifyd/Test/TestStep/SignifydObserveCaseStep.php b/dev/tests/functional/tests/app/Magento/Signifyd/Test/TestStep/SignifydObserveCaseStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Signifyd/Test/TestStep/SignifydSetWebhookHandlersStep.php b/dev/tests/functional/tests/app/Magento/Signifyd/Test/TestStep/SignifydSetWebhookHandlersStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Signifyd/Test/TestStep/UnholdAndCancelOrderStep.php b/dev/tests/functional/tests/app/Magento/Signifyd/Test/TestStep/UnholdAndCancelOrderStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Signifyd/Test/etc/di.xml b/dev/tests/functional/tests/app/Magento/Signifyd/Test/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Signifyd/Test/etc/testcase.xml b/dev/tests/functional/tests/app/Magento/Signifyd/Test/etc/testcase.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sitemap/Test/Block/Adminhtml/SitemapGrid.php b/dev/tests/functional/tests/app/Magento/Sitemap/Test/Block/Adminhtml/SitemapGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sitemap/Test/Block/Adminhtml/SitemapPageActions.php b/dev/tests/functional/tests/app/Magento/Sitemap/Test/Block/Adminhtml/SitemapPageActions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sitemap/Test/Constraint/AssertSitemapContent.php b/dev/tests/functional/tests/app/Magento/Sitemap/Test/Constraint/AssertSitemapContent.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sitemap/Test/Constraint/AssertSitemapFailFolderSaveMessage.php b/dev/tests/functional/tests/app/Magento/Sitemap/Test/Constraint/AssertSitemapFailFolderSaveMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sitemap/Test/Constraint/AssertSitemapFailPathSaveMessage.php b/dev/tests/functional/tests/app/Magento/Sitemap/Test/Constraint/AssertSitemapFailPathSaveMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sitemap/Test/Constraint/AssertSitemapInGrid.php b/dev/tests/functional/tests/app/Magento/Sitemap/Test/Constraint/AssertSitemapInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sitemap/Test/Constraint/AssertSitemapNotInGrid.php b/dev/tests/functional/tests/app/Magento/Sitemap/Test/Constraint/AssertSitemapNotInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sitemap/Test/Constraint/AssertSitemapSubmissionToRobotsTxt.php b/dev/tests/functional/tests/app/Magento/Sitemap/Test/Constraint/AssertSitemapSubmissionToRobotsTxt.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sitemap/Test/Constraint/AssertSitemapSuccessDeleteMessage.php b/dev/tests/functional/tests/app/Magento/Sitemap/Test/Constraint/AssertSitemapSuccessDeleteMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sitemap/Test/Constraint/AssertSitemapSuccessGenerateMessage.php b/dev/tests/functional/tests/app/Magento/Sitemap/Test/Constraint/AssertSitemapSuccessGenerateMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sitemap/Test/Constraint/AssertSitemapSuccessSaveAndGenerateMessages.php b/dev/tests/functional/tests/app/Magento/Sitemap/Test/Constraint/AssertSitemapSuccessSaveAndGenerateMessages.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sitemap/Test/Constraint/AssertSitemapSuccessSaveMessage.php b/dev/tests/functional/tests/app/Magento/Sitemap/Test/Constraint/AssertSitemapSuccessSaveMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sitemap/Test/Fixture/Sitemap.xml b/dev/tests/functional/tests/app/Magento/Sitemap/Test/Fixture/Sitemap.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sitemap/Test/Handler/Sitemap/Curl.php b/dev/tests/functional/tests/app/Magento/Sitemap/Test/Handler/Sitemap/Curl.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sitemap/Test/Handler/Sitemap/SitemapInterface.php b/dev/tests/functional/tests/app/Magento/Sitemap/Test/Handler/Sitemap/SitemapInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sitemap/Test/Page/Adminhtml/SitemapEdit.xml b/dev/tests/functional/tests/app/Magento/Sitemap/Test/Page/Adminhtml/SitemapEdit.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sitemap/Test/Page/Adminhtml/SitemapIndex.xml b/dev/tests/functional/tests/app/Magento/Sitemap/Test/Page/Adminhtml/SitemapIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sitemap/Test/Page/Adminhtml/SitemapNew.xml b/dev/tests/functional/tests/app/Magento/Sitemap/Test/Page/Adminhtml/SitemapNew.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sitemap/Test/Repository/ConfigData.xml b/dev/tests/functional/tests/app/Magento/Sitemap/Test/Repository/ConfigData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sitemap/Test/Repository/Sitemap.xml b/dev/tests/functional/tests/app/Magento/Sitemap/Test/Repository/Sitemap.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sitemap/Test/TestCase/CreateSitemapEntityTest.php b/dev/tests/functional/tests/app/Magento/Sitemap/Test/TestCase/CreateSitemapEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sitemap/Test/TestCase/CreateSitemapEntityTest.xml b/dev/tests/functional/tests/app/Magento/Sitemap/Test/TestCase/CreateSitemapEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sitemap/Test/TestCase/DeleteSitemapEntityTest.php b/dev/tests/functional/tests/app/Magento/Sitemap/Test/TestCase/DeleteSitemapEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sitemap/Test/TestCase/DeleteSitemapEntityTest.xml b/dev/tests/functional/tests/app/Magento/Sitemap/Test/TestCase/DeleteSitemapEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sitemap/Test/TestCase/GenerateSitemapEntityTest.php b/dev/tests/functional/tests/app/Magento/Sitemap/Test/TestCase/GenerateSitemapEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sitemap/Test/TestCase/GenerateSitemapEntityTest.xml b/dev/tests/functional/tests/app/Magento/Sitemap/Test/TestCase/GenerateSitemapEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sitemap/Test/TestCase/NavigateMenuTest.xml b/dev/tests/functional/tests/app/Magento/Sitemap/Test/TestCase/NavigateMenuTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sitemap/Test/TestCase/UpdateSitemapEntityTest.php b/dev/tests/functional/tests/app/Magento/Sitemap/Test/TestCase/UpdateSitemapEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sitemap/Test/TestCase/UpdateSitemapEntityTest.xml b/dev/tests/functional/tests/app/Magento/Sitemap/Test/TestCase/UpdateSitemapEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sitemap/Test/etc/curl/di.xml b/dev/tests/functional/tests/app/Magento/Sitemap/Test/etc/curl/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Sitemap/Test/etc/di.xml b/dev/tests/functional/tests/app/Magento/Sitemap/Test/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/Block/Switcher.php b/dev/tests/functional/tests/app/Magento/Store/Test/Block/Switcher.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreBackend.php b/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreBackend.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreCodeInUrl.php b/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreCodeInUrl.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreDisabledErrorSaveMessage.php b/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreDisabledErrorSaveMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreForm.php b/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreFrontend.php b/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreFrontend.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreGroupForm.php b/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreGroupForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreGroupInGrid.php b/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreGroupInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreGroupNoDeleteButton.php b/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreGroupNoDeleteButton.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreGroupNotInGrid.php b/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreGroupNotInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreGroupOnStoreViewForm.php b/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreGroupOnStoreViewForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreGroupSuccessDeleteAndBackupMessages.php b/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreGroupSuccessDeleteAndBackupMessages.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreGroupSuccessDeleteMessage.php b/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreGroupSuccessDeleteMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreGroupSuccessSaveMessage.php b/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreGroupSuccessSaveMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreInGrid.php b/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreNoDeleteButton.php b/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreNoDeleteButton.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreNotInGrid.php b/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreNotInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreNotOnFrontend.php b/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreNotOnFrontend.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreSuccessDeleteAndBackupMessages.php b/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreSuccessDeleteAndBackupMessages.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreSuccessDeleteMessage.php b/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreSuccessDeleteMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreSuccessSaveMessage.php b/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertStoreSuccessSaveMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertWebsiteForm.php b/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertWebsiteForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertWebsiteInGrid.php b/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertWebsiteInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertWebsiteNotInGrid.php b/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertWebsiteNotInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertWebsiteOnStoreForm.php b/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertWebsiteOnStoreForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertWebsiteSuccessDeleteAndBackupMessages.php b/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertWebsiteSuccessDeleteAndBackupMessages.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertWebsiteSuccessDeleteMessage.php b/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertWebsiteSuccessDeleteMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertWebsiteSuccessSaveMessage.php b/dev/tests/functional/tests/app/Magento/Store/Test/Constraint/AssertWebsiteSuccessSaveMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/Fixture/Store.xml b/dev/tests/functional/tests/app/Magento/Store/Test/Fixture/Store.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/Fixture/Store/GroupId.php b/dev/tests/functional/tests/app/Magento/Store/Test/Fixture/Store/GroupId.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/Fixture/StoreGroup.xml b/dev/tests/functional/tests/app/Magento/Store/Test/Fixture/StoreGroup.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/Fixture/StoreGroup/CategoryId.php b/dev/tests/functional/tests/app/Magento/Store/Test/Fixture/StoreGroup/CategoryId.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/Fixture/StoreGroup/WebsiteId.php b/dev/tests/functional/tests/app/Magento/Store/Test/Fixture/StoreGroup/WebsiteId.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/Fixture/Website.xml b/dev/tests/functional/tests/app/Magento/Store/Test/Fixture/Website.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/Handler/Store/Curl.php b/dev/tests/functional/tests/app/Magento/Store/Test/Handler/Store/Curl.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/Handler/Store/StoreInterface.php b/dev/tests/functional/tests/app/Magento/Store/Test/Handler/Store/StoreInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/Handler/StoreGroup/Curl.php b/dev/tests/functional/tests/app/Magento/Store/Test/Handler/StoreGroup/Curl.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/Handler/StoreGroup/StoreGroupInterface.php b/dev/tests/functional/tests/app/Magento/Store/Test/Handler/StoreGroup/StoreGroupInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/Handler/Website/Curl.php b/dev/tests/functional/tests/app/Magento/Store/Test/Handler/Website/Curl.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/Handler/Website/WebsiteInterface.php b/dev/tests/functional/tests/app/Magento/Store/Test/Handler/Website/WebsiteInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/Repository/ConfigData.xml b/dev/tests/functional/tests/app/Magento/Store/Test/Repository/ConfigData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/Repository/Store.xml b/dev/tests/functional/tests/app/Magento/Store/Test/Repository/Store.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/Repository/StoreGroup.xml b/dev/tests/functional/tests/app/Magento/Store/Test/Repository/StoreGroup.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/Repository/Website.xml b/dev/tests/functional/tests/app/Magento/Store/Test/Repository/Website.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/TestCase/AccessAdminWithStoreCodeInUrlTest.php b/dev/tests/functional/tests/app/Magento/Store/Test/TestCase/AccessAdminWithStoreCodeInUrlTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/TestCase/AccessAdminWithStoreCodeInUrlTest.xml b/dev/tests/functional/tests/app/Magento/Store/Test/TestCase/AccessAdminWithStoreCodeInUrlTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/TestCase/CreateStoreEntityTest.php b/dev/tests/functional/tests/app/Magento/Store/Test/TestCase/CreateStoreEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/TestCase/CreateStoreEntityTest.xml b/dev/tests/functional/tests/app/Magento/Store/Test/TestCase/CreateStoreEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/TestCase/CreateStoreGroupEntityTest.php b/dev/tests/functional/tests/app/Magento/Store/Test/TestCase/CreateStoreGroupEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/TestCase/CreateStoreGroupEntityTest.xml b/dev/tests/functional/tests/app/Magento/Store/Test/TestCase/CreateStoreGroupEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/TestCase/CreateWebsiteEntityTest.php b/dev/tests/functional/tests/app/Magento/Store/Test/TestCase/CreateWebsiteEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/TestCase/CreateWebsiteEntityTest.xml b/dev/tests/functional/tests/app/Magento/Store/Test/TestCase/CreateWebsiteEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/TestCase/DeleteStoreEntityTest.php b/dev/tests/functional/tests/app/Magento/Store/Test/TestCase/DeleteStoreEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/TestCase/DeleteStoreEntityTest.xml b/dev/tests/functional/tests/app/Magento/Store/Test/TestCase/DeleteStoreEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/TestCase/DeleteStoreGroupEntityTest.php b/dev/tests/functional/tests/app/Magento/Store/Test/TestCase/DeleteStoreGroupEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/TestCase/DeleteStoreGroupEntityTest.xml b/dev/tests/functional/tests/app/Magento/Store/Test/TestCase/DeleteStoreGroupEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/TestCase/DeleteWebsiteEntityTest.php b/dev/tests/functional/tests/app/Magento/Store/Test/TestCase/DeleteWebsiteEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/TestCase/DeleteWebsiteEntityTest.xml b/dev/tests/functional/tests/app/Magento/Store/Test/TestCase/DeleteWebsiteEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/TestCase/MoveStoreToOtherGroupSameWebsiteTest.php b/dev/tests/functional/tests/app/Magento/Store/Test/TestCase/MoveStoreToOtherGroupSameWebsiteTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/TestCase/MoveStoreToOtherGroupSameWebsiteTest.xml b/dev/tests/functional/tests/app/Magento/Store/Test/TestCase/MoveStoreToOtherGroupSameWebsiteTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/TestCase/UpdateStoreEntityTest.php b/dev/tests/functional/tests/app/Magento/Store/Test/TestCase/UpdateStoreEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/TestCase/UpdateStoreEntityTest.xml b/dev/tests/functional/tests/app/Magento/Store/Test/TestCase/UpdateStoreEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/TestCase/UpdateStoreGroupEntityTest.php b/dev/tests/functional/tests/app/Magento/Store/Test/TestCase/UpdateStoreGroupEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/TestCase/UpdateStoreGroupEntityTest.xml b/dev/tests/functional/tests/app/Magento/Store/Test/TestCase/UpdateStoreGroupEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/TestCase/UpdateWebsiteEntityTest.php b/dev/tests/functional/tests/app/Magento/Store/Test/TestCase/UpdateWebsiteEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/TestCase/UpdateWebsiteEntityTest.xml b/dev/tests/functional/tests/app/Magento/Store/Test/TestCase/UpdateWebsiteEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/TestStep/DeleteWebsitesEntityStep.php b/dev/tests/functional/tests/app/Magento/Store/Test/TestStep/DeleteWebsitesEntityStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/TestStep/RestoreDefaultStoreViewStep.php b/dev/tests/functional/tests/app/Magento/Store/Test/TestStep/RestoreDefaultStoreViewStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/etc/curl/di.xml b/dev/tests/functional/tests/app/Magento/Store/Test/etc/curl/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Store/Test/etc/di.xml b/dev/tests/functional/tests/app/Magento/Store/Test/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Swagger/Test/Constraint/AssertApiInfoTitleOnPage.php b/dev/tests/functional/tests/app/Magento/Swagger/Test/Constraint/AssertApiInfoTitleOnPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Swagger/Test/Constraint/AssertEndpointContentDisplay.php b/dev/tests/functional/tests/app/Magento/Swagger/Test/Constraint/AssertEndpointContentDisplay.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Swagger/Test/Constraint/AssertServiceContentDisplay.php b/dev/tests/functional/tests/app/Magento/Swagger/Test/Constraint/AssertServiceContentDisplay.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Swagger/Test/Constraint/AssertSwaggerSectionLoadOnPage.php b/dev/tests/functional/tests/app/Magento/Swagger/Test/Constraint/AssertSwaggerSectionLoadOnPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Swagger/Test/Page/SwaggerUiPage.php b/dev/tests/functional/tests/app/Magento/Swagger/Test/Page/SwaggerUiPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Swagger/Test/TestCase/SwaggerUiForRestApiTest.php b/dev/tests/functional/tests/app/Magento/Swagger/Test/TestCase/SwaggerUiForRestApiTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Swagger/Test/TestCase/SwaggerUiForRestApiTest.xml b/dev/tests/functional/tests/app/Magento/Swagger/Test/TestCase/SwaggerUiForRestApiTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Swatches/Test/Block/Product/ListProduct.php b/dev/tests/functional/tests/app/Magento/Swatches/Test/Block/Product/ListProduct.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Swatches/Test/Block/Product/ViewWithSwatches.php b/dev/tests/functional/tests/app/Magento/Swatches/Test/Block/Product/ViewWithSwatches.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Swatches/Test/Constraint/AssertProductPriceWithSelectedSwatchOnCategoryPage.php b/dev/tests/functional/tests/app/Magento/Swatches/Test/Constraint/AssertProductPriceWithSelectedSwatchOnCategoryPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Swatches/Test/Constraint/AssertSelectedSwatchOptionsOnProductPage.php b/dev/tests/functional/tests/app/Magento/Swatches/Test/Constraint/AssertSelectedSwatchOptionsOnProductPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Swatches/Test/Constraint/AssertSwatchOptionsOnProductPage.php b/dev/tests/functional/tests/app/Magento/Swatches/Test/Constraint/AssertSwatchOptionsOnProductPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Swatches/Test/Constraint/AssertSwatchesAreNotVisibleOnCategoryPage.php b/dev/tests/functional/tests/app/Magento/Swatches/Test/Constraint/AssertSwatchesAreNotVisibleOnCategoryPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Swatches/Test/Constraint/AssertSwatchesAreVisibleOnCategoryPage.php b/dev/tests/functional/tests/app/Magento/Swatches/Test/Constraint/AssertSwatchesAreVisibleOnCategoryPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Swatches/Test/Fixture/Cart/Item.php b/dev/tests/functional/tests/app/Magento/Swatches/Test/Fixture/Cart/Item.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Swatches/Test/Fixture/ConfigurableProduct.xml b/dev/tests/functional/tests/app/Magento/Swatches/Test/Fixture/ConfigurableProduct.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Swatches/Test/Fixture/SwatchProductAttribute.xml b/dev/tests/functional/tests/app/Magento/Swatches/Test/Fixture/SwatchProductAttribute.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Swatches/Test/Handler/SwatchProductAttribute/Curl.php b/dev/tests/functional/tests/app/Magento/Swatches/Test/Handler/SwatchProductAttribute/Curl.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Swatches/Test/Handler/SwatchProductAttribute/SwatchProductAttributeInterface.php b/dev/tests/functional/tests/app/Magento/Swatches/Test/Handler/SwatchProductAttribute/SwatchProductAttributeInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Swatches/Test/Page/Category/CatalogCategoryView.xml b/dev/tests/functional/tests/app/Magento/Swatches/Test/Page/Category/CatalogCategoryView.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Swatches/Test/Page/Product/CatalogProductView.xml b/dev/tests/functional/tests/app/Magento/Swatches/Test/Page/Product/CatalogProductView.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Swatches/Test/Repository/ConfigData.xml b/dev/tests/functional/tests/app/Magento/Swatches/Test/Repository/ConfigData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Swatches/Test/Repository/ConfigurableProduct.xml b/dev/tests/functional/tests/app/Magento/Swatches/Test/Repository/ConfigurableProduct.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Swatches/Test/Repository/ConfigurableProduct/CheckoutData.xml b/dev/tests/functional/tests/app/Magento/Swatches/Test/Repository/ConfigurableProduct/CheckoutData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Swatches/Test/Repository/ConfigurableProduct/ConfigurableAttributesData.xml b/dev/tests/functional/tests/app/Magento/Swatches/Test/Repository/ConfigurableProduct/ConfigurableAttributesData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Swatches/Test/Repository/SwatchProductAttribute.xml b/dev/tests/functional/tests/app/Magento/Swatches/Test/Repository/SwatchProductAttribute.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Swatches/Test/TestCase/AddConfigurableProductWithSwatchToShoppingCartTest.php b/dev/tests/functional/tests/app/Magento/Swatches/Test/TestCase/AddConfigurableProductWithSwatchToShoppingCartTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Swatches/Test/TestCase/AddConfigurableProductWithSwatchToShoppingCartTest.xml b/dev/tests/functional/tests/app/Magento/Swatches/Test/TestCase/AddConfigurableProductWithSwatchToShoppingCartTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Swatches/Test/TestCase/CheckShowSwatchesInProductListOptionImpactTest.php b/dev/tests/functional/tests/app/Magento/Swatches/Test/TestCase/CheckShowSwatchesInProductListOptionImpactTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Swatches/Test/TestCase/CheckShowSwatchesInProductListOptionImpactTest.xml b/dev/tests/functional/tests/app/Magento/Swatches/Test/TestCase/CheckShowSwatchesInProductListOptionImpactTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Swatches/Test/TestStep/AddProductToCartFromCatalogCategoryPageStep.php b/dev/tests/functional/tests/app/Magento/Swatches/Test/TestStep/AddProductToCartFromCatalogCategoryPageStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Swatches/Test/etc/curl/di.xml b/dev/tests/functional/tests/app/Magento/Swatches/Test/etc/curl/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Block/Adminhtml/Rate/Edit/Form.php b/dev/tests/functional/tests/app/Magento/Tax/Test/Block/Adminhtml/Rate/Edit/Form.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Block/Adminhtml/Rate/Edit/Form.xml b/dev/tests/functional/tests/app/Magento/Tax/Test/Block/Adminhtml/Rate/Edit/Form.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Block/Adminhtml/Rate/Edit/FormPageActions.php b/dev/tests/functional/tests/app/Magento/Tax/Test/Block/Adminhtml/Rate/Edit/FormPageActions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Block/Adminhtml/Rate/Grid.php b/dev/tests/functional/tests/app/Magento/Tax/Test/Block/Adminhtml/Rate/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Block/Adminhtml/Rate/GridPageActions.php b/dev/tests/functional/tests/app/Magento/Tax/Test/Block/Adminhtml/Rate/GridPageActions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Block/Adminhtml/Rule/Edit/Form.php b/dev/tests/functional/tests/app/Magento/Tax/Test/Block/Adminhtml/Rule/Edit/Form.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Block/Adminhtml/Rule/Edit/Form.xml b/dev/tests/functional/tests/app/Magento/Tax/Test/Block/Adminhtml/Rule/Edit/Form.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Block/Adminhtml/Rule/Edit/TaxRate.php b/dev/tests/functional/tests/app/Magento/Tax/Test/Block/Adminhtml/Rule/Edit/TaxRate.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Block/Adminhtml/Rule/Edit/TaxRate.xml b/dev/tests/functional/tests/app/Magento/Tax/Test/Block/Adminhtml/Rule/Edit/TaxRate.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Block/Adminhtml/Rule/Grid.php b/dev/tests/functional/tests/app/Magento/Tax/Test/Block/Adminhtml/Rule/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AbstractAssertTaxCalculationAfterCheckout.php b/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AbstractAssertTaxCalculationAfterCheckout.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AbstractAssertTaxRuleIsAppliedToAllPrices.php b/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AbstractAssertTaxRuleIsAppliedToAllPrices.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AbstractAssertTaxWithCrossBorderApplying.php b/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AbstractAssertTaxWithCrossBorderApplying.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertOrderTaxOnBackendExcludingIncludingTax.php b/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertOrderTaxOnBackendExcludingIncludingTax.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertOrderTaxOnBackendExcludingTax.php b/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertOrderTaxOnBackendExcludingTax.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertOrderTaxOnBackendIncludingTax.php b/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertOrderTaxOnBackendIncludingTax.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxCalculationAfterCheckoutExcludingIncludingTax.php b/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxCalculationAfterCheckoutExcludingIncludingTax.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxCalculationAfterCheckoutExcludingTax.php b/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxCalculationAfterCheckoutExcludingTax.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxCalculationAfterCheckoutIncludingTax.php b/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxCalculationAfterCheckoutIncludingTax.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRateForm.php b/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRateForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRateInGrid.php b/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRateInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRateInTaxRule.php b/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRateInTaxRule.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRateNotInGrid.php b/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRateNotInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRateNotInTaxRule.php b/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRateNotInTaxRule.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRateSuccessDeleteMessage.php b/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRateSuccessDeleteMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRateSuccessSaveMessage.php b/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRateSuccessSaveMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRuleApplying.php b/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRuleApplying.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRuleForm.php b/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRuleForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRuleInGrid.php b/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRuleInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRuleIsApplied.php b/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRuleIsApplied.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRuleIsAppliedToAllPricesExcludingIncludingTax.php b/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRuleIsAppliedToAllPricesExcludingIncludingTax.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRuleIsAppliedToAllPricesExcludingTax.php b/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRuleIsAppliedToAllPricesExcludingTax.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRuleIsAppliedToAllPricesIncludingTax.php b/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRuleIsAppliedToAllPricesIncludingTax.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRuleIsNotApplied.php b/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRuleIsNotApplied.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRuleNotInGrid.php b/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRuleNotInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRuleSuccessDeleteMessage.php b/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRuleSuccessDeleteMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRuleSuccessSaveMessage.php b/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxRuleSuccessSaveMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxWithCrossBorderApplied.php b/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxWithCrossBorderApplied.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxWithCrossBorderNotApplied.php b/dev/tests/functional/tests/app/Magento/Tax/Test/Constraint/AssertTaxWithCrossBorderNotApplied.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Fixture/TaxClass.xml b/dev/tests/functional/tests/app/Magento/Tax/Test/Fixture/TaxClass.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Fixture/TaxRate.xml b/dev/tests/functional/tests/app/Magento/Tax/Test/Fixture/TaxRate.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Fixture/TaxRule.xml b/dev/tests/functional/tests/app/Magento/Tax/Test/Fixture/TaxRule.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Fixture/TaxRule/TaxClass.php b/dev/tests/functional/tests/app/Magento/Tax/Test/Fixture/TaxRule/TaxClass.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Fixture/TaxRule/TaxRate.php b/dev/tests/functional/tests/app/Magento/Tax/Test/Fixture/TaxRule/TaxRate.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Handler/Curl/RemoveTaxRule.php b/dev/tests/functional/tests/app/Magento/Tax/Test/Handler/Curl/RemoveTaxRule.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Handler/TaxClass/Curl.php b/dev/tests/functional/tests/app/Magento/Tax/Test/Handler/TaxClass/Curl.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Handler/TaxClass/TaxClassInterface.php b/dev/tests/functional/tests/app/Magento/Tax/Test/Handler/TaxClass/TaxClassInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Handler/TaxClass/Webapi.php b/dev/tests/functional/tests/app/Magento/Tax/Test/Handler/TaxClass/Webapi.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Handler/TaxRate/Curl.php b/dev/tests/functional/tests/app/Magento/Tax/Test/Handler/TaxRate/Curl.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Handler/TaxRate/TaxRateInterface.php b/dev/tests/functional/tests/app/Magento/Tax/Test/Handler/TaxRate/TaxRateInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Handler/TaxRate/Webapi.php b/dev/tests/functional/tests/app/Magento/Tax/Test/Handler/TaxRate/Webapi.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Handler/TaxRule/Curl.php b/dev/tests/functional/tests/app/Magento/Tax/Test/Handler/TaxRule/Curl.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Handler/TaxRule/TaxRuleInterface.php b/dev/tests/functional/tests/app/Magento/Tax/Test/Handler/TaxRule/TaxRuleInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Handler/TaxRule/Webapi.php b/dev/tests/functional/tests/app/Magento/Tax/Test/Handler/TaxRule/Webapi.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Page/Adminhtml/TaxRateIndex.xml b/dev/tests/functional/tests/app/Magento/Tax/Test/Page/Adminhtml/TaxRateIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Page/Adminhtml/TaxRateNew.xml b/dev/tests/functional/tests/app/Magento/Tax/Test/Page/Adminhtml/TaxRateNew.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Page/Adminhtml/TaxRuleIndex.xml b/dev/tests/functional/tests/app/Magento/Tax/Test/Page/Adminhtml/TaxRuleIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Page/Adminhtml/TaxRuleNew.xml b/dev/tests/functional/tests/app/Magento/Tax/Test/Page/Adminhtml/TaxRuleNew.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Repository/ConfigData.xml b/dev/tests/functional/tests/app/Magento/Tax/Test/Repository/ConfigData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Repository/TaxClass.xml b/dev/tests/functional/tests/app/Magento/Tax/Test/Repository/TaxClass.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Repository/TaxRate.xml b/dev/tests/functional/tests/app/Magento/Tax/Test/Repository/TaxRate.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/Repository/TaxRule.xml b/dev/tests/functional/tests/app/Magento/Tax/Test/Repository/TaxRule.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/ApplyTaxBasedOnVatIdTest.php b/dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/ApplyTaxBasedOnVatIdTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/ApplyTaxBasedOnVatIdTest.xml b/dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/ApplyTaxBasedOnVatIdTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/CreateTaxRateEntityTest.php b/dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/CreateTaxRateEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/CreateTaxRateEntityTest.xml b/dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/CreateTaxRateEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/CreateTaxRuleEntityTest.php b/dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/CreateTaxRuleEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/CreateTaxRuleEntityTest.xml b/dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/CreateTaxRuleEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/DeleteTaxRateEntityTest.php b/dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/DeleteTaxRateEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/DeleteTaxRateEntityTest.xml b/dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/DeleteTaxRateEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/DeleteTaxRuleEntityTest.php b/dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/DeleteTaxRuleEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/DeleteTaxRuleEntityTest.xml b/dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/DeleteTaxRuleEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/NavigateMenuTest.xml b/dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/NavigateMenuTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/TaxCalculationTest.php b/dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/TaxCalculationTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/TaxCalculationTest.xml b/dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/TaxCalculationTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/TaxWithCrossBorderTest.php b/dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/TaxWithCrossBorderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/TaxWithCrossBorderTest.xml b/dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/TaxWithCrossBorderTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/UpdateTaxRateEntityTest.php b/dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/UpdateTaxRateEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/UpdateTaxRateEntityTest.xml b/dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/UpdateTaxRateEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/UpdateTaxRuleEntityTest.php b/dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/UpdateTaxRuleEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/UpdateTaxRuleEntityTest.xml b/dev/tests/functional/tests/app/Magento/Tax/Test/TestCase/UpdateTaxRuleEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/TestStep/CreateTaxRuleStep.php b/dev/tests/functional/tests/app/Magento/Tax/Test/TestStep/CreateTaxRuleStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/TestStep/DeleteAllTaxRulesStep.php b/dev/tests/functional/tests/app/Magento/Tax/Test/TestStep/DeleteAllTaxRulesStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/etc/curl/di.xml b/dev/tests/functional/tests/app/Magento/Tax/Test/etc/curl/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/etc/di.xml b/dev/tests/functional/tests/app/Magento/Tax/Test/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/etc/testcase.xml b/dev/tests/functional/tests/app/Magento/Tax/Test/etc/testcase.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Tax/Test/etc/webapi/di.xml b/dev/tests/functional/tests/app/Magento/Tax/Test/etc/webapi/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Theme/Test/Block/Html/Breadcrumbs.php b/dev/tests/functional/tests/app/Magento/Theme/Test/Block/Html/Breadcrumbs.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Theme/Test/Block/Html/Footer.php b/dev/tests/functional/tests/app/Magento/Theme/Test/Block/Html/Footer.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Theme/Test/Block/Html/Logo.php b/dev/tests/functional/tests/app/Magento/Theme/Test/Block/Html/Logo.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Theme/Test/Block/Html/Title.php b/dev/tests/functional/tests/app/Magento/Theme/Test/Block/Html/Title.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Theme/Test/Block/Html/Topmenu.php b/dev/tests/functional/tests/app/Magento/Theme/Test/Block/Html/Topmenu.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Theme/Test/Block/Links.php b/dev/tests/functional/tests/app/Magento/Theme/Test/Block/Links.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Theme/Test/Page/CheckoutOnepageSuccess.xml b/dev/tests/functional/tests/app/Magento/Theme/Test/Page/CheckoutOnepageSuccess.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Theme/Test/TestCase/NavigateMenuTest.xml b/dev/tests/functional/tests/app/Magento/Theme/Test/TestCase/NavigateMenuTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Ui/Test/Block/Adminhtml/AbstractContainer.php b/dev/tests/functional/tests/app/Magento/Ui/Test/Block/Adminhtml/AbstractContainer.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Ui/Test/Block/Adminhtml/AbstractFormContainers.php b/dev/tests/functional/tests/app/Magento/Ui/Test/Block/Adminhtml/AbstractFormContainers.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Ui/Test/Block/Adminhtml/DataGrid.php b/dev/tests/functional/tests/app/Magento/Ui/Test/Block/Adminhtml/DataGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Ui/Test/Block/Adminhtml/FormSections.php b/dev/tests/functional/tests/app/Magento/Ui/Test/Block/Adminhtml/FormSections.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Ui/Test/Block/Adminhtml/Modal.php b/dev/tests/functional/tests/app/Magento/Ui/Test/Block/Adminhtml/Modal.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Ui/Test/Block/Adminhtml/Section.php b/dev/tests/functional/tests/app/Magento/Ui/Test/Block/Adminhtml/Section.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Ui/Test/Block/Messages.php b/dev/tests/functional/tests/app/Magento/Ui/Test/Block/Messages.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Ui/Test/Constraint/AssertGridFiltering.php b/dev/tests/functional/tests/app/Magento/Ui/Test/Constraint/AssertGridFiltering.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Ui/Test/Constraint/AssertGridFullTextSearch.php b/dev/tests/functional/tests/app/Magento/Ui/Test/Constraint/AssertGridFullTextSearch.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Ui/Test/Constraint/AssertGridSorting.php b/dev/tests/functional/tests/app/Magento/Ui/Test/Constraint/AssertGridSorting.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Ui/Test/TestCase/GridFilteringDeletedEntityTest.php b/dev/tests/functional/tests/app/Magento/Ui/Test/TestCase/GridFilteringDeletedEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Ui/Test/TestCase/GridFilteringTest.php b/dev/tests/functional/tests/app/Magento/Ui/Test/TestCase/GridFilteringTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Ui/Test/TestCase/GridFullTextSearchTest.php b/dev/tests/functional/tests/app/Magento/Ui/Test/TestCase/GridFullTextSearchTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Ui/Test/TestCase/GridSortingTest.php b/dev/tests/functional/tests/app/Magento/Ui/Test/TestCase/GridSortingTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Ui/Test/etc/di.xml b/dev/tests/functional/tests/app/Magento/Ui/Test/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Ups/Test/Repository/ConfigData.xml b/dev/tests/functional/tests/app/Magento/Ups/Test/Repository/ConfigData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Ups/Test/TestCase/OnePageCheckoutTest.xml b/dev/tests/functional/tests/app/Magento/Ups/Test/TestCase/OnePageCheckoutTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Block/Adminhtml/Catalog/Category/Grid.php b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Block/Adminhtml/Catalog/Category/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Block/Adminhtml/Catalog/Category/Tree.php b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Block/Adminhtml/Catalog/Category/Tree.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Block/Adminhtml/Catalog/Edit/UrlRewriteForm.php b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Block/Adminhtml/Catalog/Edit/UrlRewriteForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Block/Adminhtml/Catalog/Edit/UrlRewriteForm.xml b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Block/Adminhtml/Catalog/Edit/UrlRewriteForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Block/Adminhtml/Catalog/Product/Grid.php b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Block/Adminhtml/Catalog/Product/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Block/Adminhtml/Cms/Page/Grid.php b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Block/Adminhtml/Cms/Page/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Block/Adminhtml/Selector.php b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Block/Adminhtml/Selector.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertCategoryUrlWithCustomStoreView.php b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertCategoryUrlWithCustomStoreView.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertPageByUrlRewriteIsNotFound.php b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertPageByUrlRewriteIsNotFound.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewriteAfterDeletingCategory.php b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewriteAfterDeletingCategory.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewriteCategoryInGrid.php b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewriteCategoryInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewriteCategoryNotInGrid.php b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewriteCategoryNotInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewriteCategoryRedirect.php b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewriteCategoryRedirect.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewriteCustomRedirect.php b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewriteCustomRedirect.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewriteCustomSearchRedirect.php b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewriteCustomSearchRedirect.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewriteDeletedMessage.php b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewriteDeletedMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewriteInGrid.php b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewriteInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewriteNotInGrid.php b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewriteNotInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewriteProductInGrid.php b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewriteProductInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewriteProductNotInGrid.php b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewriteProductNotInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewriteProductRedirect.php b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewriteProductRedirect.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewriteRedirectInGrid.php b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewriteRedirectInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewriteSaveMessage.php b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewriteSaveMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewriteSuccessOutsideRedirect.php b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewriteSuccessOutsideRedirect.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewriteUpdatedProductInGrid.php b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewriteUpdatedProductInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewritesCategoriesInGrid.php b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewritesCategoriesInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewritesRedirectInGrid.php b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Constraint/AssertUrlRewritesRedirectInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Fixture/UrlRewrite.xml b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Fixture/UrlRewrite.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Fixture/UrlRewrite/StoreId.php b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Fixture/UrlRewrite/StoreId.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Fixture/UrlRewrite/TargetPath.php b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Fixture/UrlRewrite/TargetPath.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Handler/UrlRewrite/Curl.php b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Handler/UrlRewrite/Curl.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Handler/UrlRewrite/UrlRewriteInterface.php b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Handler/UrlRewrite/UrlRewriteInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Page/Adminhtml/UrlRewriteEdit.xml b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Page/Adminhtml/UrlRewriteEdit.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Page/Adminhtml/UrlRewriteIndex.xml b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Page/Adminhtml/UrlRewriteIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Repository/UrlRewrite.xml b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/Repository/UrlRewrite.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/CategoryUrlRewriteTest.php b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/CategoryUrlRewriteTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/CategoryUrlRewriteTest.xml b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/CategoryUrlRewriteTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/CreateCategoryRewriteEntityTest.php b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/CreateCategoryRewriteEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/CreateCategoryRewriteEntityTest.xml b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/CreateCategoryRewriteEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/CreateCustomUrlRewriteEntityTest.php b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/CreateCustomUrlRewriteEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/CreateCustomUrlRewriteEntityTest.xml b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/CreateCustomUrlRewriteEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/CreateProductUrlRewriteEntityTest.php b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/CreateProductUrlRewriteEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/CreateProductUrlRewriteEntityTest.xml b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/CreateProductUrlRewriteEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/CreateProductWithSeveralWebsitesUrlRewriteTest.php b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/CreateProductWithSeveralWebsitesUrlRewriteTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/CreateProductWithSeveralWebsitesUrlRewriteTest.xml b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/CreateProductWithSeveralWebsitesUrlRewriteTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/DeleteCategoryUrlRewriteEntityTest.php b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/DeleteCategoryUrlRewriteEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/DeleteCategoryUrlRewriteEntityTest.xml b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/DeleteCategoryUrlRewriteEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/DeleteCustomUrlRewriteEntityTest.php b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/DeleteCustomUrlRewriteEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/DeleteCustomUrlRewriteEntityTest.xml b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/DeleteCustomUrlRewriteEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/DeleteProductUrlRewriteEntityTest.php b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/DeleteProductUrlRewriteEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/DeleteProductUrlRewriteEntityTest.xml b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/DeleteProductUrlRewriteEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/NavigateMenuTest.xml b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/NavigateMenuTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/UpdateCategoryUrlRewriteEntityTest.php b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/UpdateCategoryUrlRewriteEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/UpdateCategoryUrlRewriteEntityTest.xml b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/UpdateCategoryUrlRewriteEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/UpdateCustomUrlRewriteEntityTest.php b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/UpdateCustomUrlRewriteEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/UpdateCustomUrlRewriteEntityTest.xml b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/UpdateCustomUrlRewriteEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/UpdateProductUrlRewriteEntityTest.php b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/UpdateProductUrlRewriteEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/UpdateProductUrlRewriteEntityTest.xml b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/TestCase/UpdateProductUrlRewriteEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/etc/curl/di.xml b/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/etc/curl/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Block/Adminhtml/LockedUsersGrid.php b/dev/tests/functional/tests/app/Magento/User/Test/Block/Adminhtml/LockedUsersGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Block/Adminhtml/Role/PageActions.php b/dev/tests/functional/tests/app/Magento/User/Test/Block/Adminhtml/Role/PageActions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Block/Adminhtml/Role/RoleForm.php b/dev/tests/functional/tests/app/Magento/User/Test/Block/Adminhtml/Role/RoleForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Block/Adminhtml/Role/RoleForm.xml b/dev/tests/functional/tests/app/Magento/User/Test/Block/Adminhtml/Role/RoleForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Block/Adminhtml/Role/Tab/Role.php b/dev/tests/functional/tests/app/Magento/User/Test/Block/Adminhtml/Role/Tab/Role.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Block/Adminhtml/Role/Tab/User/Grid.php b/dev/tests/functional/tests/app/Magento/User/Test/Block/Adminhtml/Role/Tab/User/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Block/Adminhtml/RoleGrid.php b/dev/tests/functional/tests/app/Magento/User/Test/Block/Adminhtml/RoleGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Block/Adminhtml/User/Edit/Form.php b/dev/tests/functional/tests/app/Magento/User/Test/Block/Adminhtml/User/Edit/Form.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Block/Adminhtml/User/Edit/PageActions.php b/dev/tests/functional/tests/app/Magento/User/Test/Block/Adminhtml/User/Edit/PageActions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Block/Adminhtml/User/Edit/Tab/Roles.php b/dev/tests/functional/tests/app/Magento/User/Test/Block/Adminhtml/User/Edit/Tab/Roles.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Block/Adminhtml/User/Tab/Role.php b/dev/tests/functional/tests/app/Magento/User/Test/Block/Adminhtml/User/Tab/Role.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Block/Adminhtml/User/Tab/Role/Grid.php b/dev/tests/functional/tests/app/Magento/User/Test/Block/Adminhtml/User/Tab/Role/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Block/Adminhtml/User/UserForm.php b/dev/tests/functional/tests/app/Magento/User/Test/Block/Adminhtml/User/UserForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Block/Adminhtml/User/UserForm.xml b/dev/tests/functional/tests/app/Magento/User/Test/Block/Adminhtml/User/UserForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Block/Adminhtml/UserGrid.php b/dev/tests/functional/tests/app/Magento/User/Test/Block/Adminhtml/UserGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertAccessTokensErrorRevokeMessage.php b/dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertAccessTokensErrorRevokeMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertImpossibleDeleteYourOwnAccount.php b/dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertImpossibleDeleteYourOwnAccount.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertImpossibleDeleteYourOwnRole.php b/dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertImpossibleDeleteYourOwnRole.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertIncorrectUserPassword.php b/dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertIncorrectUserPassword.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertRoleInGrid.php b/dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertRoleInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertRoleNotInGrid.php b/dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertRoleNotInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertRoleSuccessDeleteMessage.php b/dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertRoleSuccessDeleteMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertRoleSuccessSaveMessage.php b/dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertRoleSuccessSaveMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertUserDuplicateMessage.php b/dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertUserDuplicateMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertUserFailedLoginByPermissionMessage.php b/dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertUserFailedLoginByPermissionMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertUserFailedLoginMessage.php b/dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertUserFailedLoginMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertUserInGrid.php b/dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertUserInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertUserInvalidEmailHostnameMessage.php b/dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertUserInvalidEmailHostnameMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertUserInvalidEmailMessage.php b/dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertUserInvalidEmailMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertUserNotInGrid.php b/dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertUserNotInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertUserPasswordChangedSuccessfully.php b/dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertUserPasswordChangedSuccessfully.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertUserPermissionsOnlyConfigurationIndexPage.php b/dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertUserPermissionsOnlyConfigurationIndexPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertUserRoleRestrictedAccess.php b/dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertUserRoleRestrictedAccess.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertUserSuccessDeleteMessage.php b/dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertUserSuccessDeleteMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertUserSuccessLogOut.php b/dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertUserSuccessLogOut.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertUserSuccessLogin.php b/dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertUserSuccessLogin.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertUserSuccessSaveMessage.php b/dev/tests/functional/tests/app/Magento/User/Test/Constraint/AssertUserSuccessSaveMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Fixture/Role.xml b/dev/tests/functional/tests/app/Magento/User/Test/Fixture/Role.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Fixture/Role/InRoleUsers.php b/dev/tests/functional/tests/app/Magento/User/Test/Fixture/Role/InRoleUsers.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Fixture/User.xml b/dev/tests/functional/tests/app/Magento/User/Test/Fixture/User.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Fixture/User/CurrentPassword.php b/dev/tests/functional/tests/app/Magento/User/Test/Fixture/User/CurrentPassword.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Fixture/User/RoleId.php b/dev/tests/functional/tests/app/Magento/User/Test/Fixture/User/RoleId.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Handler/Role/Curl.php b/dev/tests/functional/tests/app/Magento/User/Test/Handler/Role/Curl.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Handler/Role/RoleInterface.php b/dev/tests/functional/tests/app/Magento/User/Test/Handler/Role/RoleInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Handler/User/Curl.php b/dev/tests/functional/tests/app/Magento/User/Test/Handler/User/Curl.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Handler/User/UserInterface.php b/dev/tests/functional/tests/app/Magento/User/Test/Handler/User/UserInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Page/Adminhtml/UserEdit.xml b/dev/tests/functional/tests/app/Magento/User/Test/Page/Adminhtml/UserEdit.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Page/Adminhtml/UserIndex.xml b/dev/tests/functional/tests/app/Magento/User/Test/Page/Adminhtml/UserIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Page/Adminhtml/UserLocks.xml b/dev/tests/functional/tests/app/Magento/User/Test/Page/Adminhtml/UserLocks.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Page/Adminhtml/UserRoleEditRole.xml b/dev/tests/functional/tests/app/Magento/User/Test/Page/Adminhtml/UserRoleEditRole.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Page/Adminhtml/UserRoleIndex.xml b/dev/tests/functional/tests/app/Magento/User/Test/Page/Adminhtml/UserRoleIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Repository/ConfigData.xml b/dev/tests/functional/tests/app/Magento/User/Test/Repository/ConfigData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Repository/Role.xml b/dev/tests/functional/tests/app/Magento/User/Test/Repository/Role.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/Repository/User.xml b/dev/tests/functional/tests/app/Magento/User/Test/Repository/User.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/TestCase/CreateAdminUserEntityTest.php b/dev/tests/functional/tests/app/Magento/User/Test/TestCase/CreateAdminUserEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/TestCase/CreateAdminUserEntityTest.xml b/dev/tests/functional/tests/app/Magento/User/Test/TestCase/CreateAdminUserEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/TestCase/CreateAdminUserRoleEntityTest.php b/dev/tests/functional/tests/app/Magento/User/Test/TestCase/CreateAdminUserRoleEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/TestCase/CreateAdminUserRoleEntityTest.xml b/dev/tests/functional/tests/app/Magento/User/Test/TestCase/CreateAdminUserRoleEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/TestCase/CustomAclPermissionTest.php b/dev/tests/functional/tests/app/Magento/User/Test/TestCase/CustomAclPermissionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/TestCase/DeleteAdminUserEntityTest.php b/dev/tests/functional/tests/app/Magento/User/Test/TestCase/DeleteAdminUserEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/TestCase/DeleteAdminUserEntityTest.xml b/dev/tests/functional/tests/app/Magento/User/Test/TestCase/DeleteAdminUserEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/TestCase/DeleteUserRoleEntityTest.php b/dev/tests/functional/tests/app/Magento/User/Test/TestCase/DeleteUserRoleEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/TestCase/DeleteUserRoleEntityTest.xml b/dev/tests/functional/tests/app/Magento/User/Test/TestCase/DeleteUserRoleEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/TestCase/LockAdminUserEntityTest.php b/dev/tests/functional/tests/app/Magento/User/Test/TestCase/LockAdminUserEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/TestCase/LockAdminUserEntityTest.xml b/dev/tests/functional/tests/app/Magento/User/Test/TestCase/LockAdminUserEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/TestCase/NavigateMenuTest.xml b/dev/tests/functional/tests/app/Magento/User/Test/TestCase/NavigateMenuTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/TestCase/RevokeAllAccessTokensForAdminWithoutTokensTest.php b/dev/tests/functional/tests/app/Magento/User/Test/TestCase/RevokeAllAccessTokensForAdminWithoutTokensTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/TestCase/RevokeAllAccessTokensForAdminWithoutTokensTest.xml b/dev/tests/functional/tests/app/Magento/User/Test/TestCase/RevokeAllAccessTokensForAdminWithoutTokensTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/TestCase/UnlockAdminUserTest.php b/dev/tests/functional/tests/app/Magento/User/Test/TestCase/UnlockAdminUserTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/TestCase/UnlockAdminUserTest.xml b/dev/tests/functional/tests/app/Magento/User/Test/TestCase/UnlockAdminUserTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/TestCase/UpdateAdminUserEntityTest.php b/dev/tests/functional/tests/app/Magento/User/Test/TestCase/UpdateAdminUserEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/TestCase/UpdateAdminUserEntityTest.xml b/dev/tests/functional/tests/app/Magento/User/Test/TestCase/UpdateAdminUserEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/TestCase/UpdateAdminUserRoleEntityTest.php b/dev/tests/functional/tests/app/Magento/User/Test/TestCase/UpdateAdminUserRoleEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/TestCase/UpdateAdminUserRoleEntityTest.xml b/dev/tests/functional/tests/app/Magento/User/Test/TestCase/UpdateAdminUserRoleEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/TestCase/UpdatePasswordUserEntityPciRequirementsTest.php b/dev/tests/functional/tests/app/Magento/User/Test/TestCase/UpdatePasswordUserEntityPciRequirementsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/TestCase/UpdatePasswordUserEntityPciRequirementsTest.xml b/dev/tests/functional/tests/app/Magento/User/Test/TestCase/UpdatePasswordUserEntityPciRequirementsTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/TestCase/UserLoginAfterChangingPermissionsTest.php b/dev/tests/functional/tests/app/Magento/User/Test/TestCase/UserLoginAfterChangingPermissionsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/TestCase/UserLoginAfterChangingPermissionsTest.xml b/dev/tests/functional/tests/app/Magento/User/Test/TestCase/UserLoginAfterChangingPermissionsTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/TestStep/CreateUserStep.php b/dev/tests/functional/tests/app/Magento/User/Test/TestStep/CreateUserStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/TestStep/LoginUserOnBackendStep.php b/dev/tests/functional/tests/app/Magento/User/Test/TestStep/LoginUserOnBackendStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/TestStep/LogoutUserOnBackendStep.php b/dev/tests/functional/tests/app/Magento/User/Test/TestStep/LogoutUserOnBackendStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/User/Test/etc/curl/di.xml b/dev/tests/functional/tests/app/Magento/User/Test/etc/curl/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Usps/Test/Repository/ConfigData.xml b/dev/tests/functional/tests/app/Magento/Usps/Test/Repository/ConfigData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Usps/Test/TestCase/OnePageCheckoutTest.xml b/dev/tests/functional/tests/app/Magento/Usps/Test/TestCase/OnePageCheckoutTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Variable/Test/Block/Adminhtml/System/Variable/Edit/VariableForm.php b/dev/tests/functional/tests/app/Magento/Variable/Test/Block/Adminhtml/System/Variable/Edit/VariableForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Variable/Test/Block/Adminhtml/System/Variable/Edit/VariableForm.xml b/dev/tests/functional/tests/app/Magento/Variable/Test/Block/Adminhtml/System/Variable/Edit/VariableForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Variable/Test/Block/Adminhtml/System/Variable/FormPageActions.php b/dev/tests/functional/tests/app/Magento/Variable/Test/Block/Adminhtml/System/Variable/FormPageActions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Variable/Test/Block/Adminhtml/System/Variable/Grid.php b/dev/tests/functional/tests/app/Magento/Variable/Test/Block/Adminhtml/System/Variable/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Variable/Test/Constraint/AssertCustomVariableForm.php b/dev/tests/functional/tests/app/Magento/Variable/Test/Constraint/AssertCustomVariableForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Variable/Test/Constraint/AssertCustomVariableInGrid.php b/dev/tests/functional/tests/app/Magento/Variable/Test/Constraint/AssertCustomVariableInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Variable/Test/Constraint/AssertCustomVariableInPage.php b/dev/tests/functional/tests/app/Magento/Variable/Test/Constraint/AssertCustomVariableInPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Variable/Test/Constraint/AssertCustomVariableNotInCmsPageForm.php b/dev/tests/functional/tests/app/Magento/Variable/Test/Constraint/AssertCustomVariableNotInCmsPageForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Variable/Test/Constraint/AssertCustomVariableNotInGrid.php b/dev/tests/functional/tests/app/Magento/Variable/Test/Constraint/AssertCustomVariableNotInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Variable/Test/Constraint/AssertCustomVariableRestrictedAccess.php b/dev/tests/functional/tests/app/Magento/Variable/Test/Constraint/AssertCustomVariableRestrictedAccess.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Variable/Test/Constraint/AssertCustomVariableSuccessDeleteMessage.php b/dev/tests/functional/tests/app/Magento/Variable/Test/Constraint/AssertCustomVariableSuccessDeleteMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Variable/Test/Constraint/AssertCustomVariableSuccessSaveMessage.php b/dev/tests/functional/tests/app/Magento/Variable/Test/Constraint/AssertCustomVariableSuccessSaveMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Variable/Test/Fixture/SystemVariable.xml b/dev/tests/functional/tests/app/Magento/Variable/Test/Fixture/SystemVariable.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Variable/Test/Handler/SystemVariable/Curl.php b/dev/tests/functional/tests/app/Magento/Variable/Test/Handler/SystemVariable/Curl.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Variable/Test/Handler/SystemVariable/SystemVariableInterface.php b/dev/tests/functional/tests/app/Magento/Variable/Test/Handler/SystemVariable/SystemVariableInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Variable/Test/Page/Adminhtml/SystemVariableIndex.xml b/dev/tests/functional/tests/app/Magento/Variable/Test/Page/Adminhtml/SystemVariableIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Variable/Test/Page/Adminhtml/SystemVariableNew.xml b/dev/tests/functional/tests/app/Magento/Variable/Test/Page/Adminhtml/SystemVariableNew.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Variable/Test/Repository/SystemVariable.xml b/dev/tests/functional/tests/app/Magento/Variable/Test/Repository/SystemVariable.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Variable/Test/TestCase/CreateCustomVariableEntityTest.php b/dev/tests/functional/tests/app/Magento/Variable/Test/TestCase/CreateCustomVariableEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Variable/Test/TestCase/CreateCustomVariableEntityTest.xml b/dev/tests/functional/tests/app/Magento/Variable/Test/TestCase/CreateCustomVariableEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Variable/Test/TestCase/CustomAclPermissionTest.xml b/dev/tests/functional/tests/app/Magento/Variable/Test/TestCase/CustomAclPermissionTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Variable/Test/TestCase/DeleteCustomVariableEntityTest.php b/dev/tests/functional/tests/app/Magento/Variable/Test/TestCase/DeleteCustomVariableEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Variable/Test/TestCase/DeleteCustomVariableEntityTest.xml b/dev/tests/functional/tests/app/Magento/Variable/Test/TestCase/DeleteCustomVariableEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Variable/Test/TestCase/NavigateMenuTest.xml b/dev/tests/functional/tests/app/Magento/Variable/Test/TestCase/NavigateMenuTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Variable/Test/TestCase/UpdateCustomVariableEntityTest.php b/dev/tests/functional/tests/app/Magento/Variable/Test/TestCase/UpdateCustomVariableEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Variable/Test/TestCase/UpdateCustomVariableEntityTest.xml b/dev/tests/functional/tests/app/Magento/Variable/Test/TestCase/UpdateCustomVariableEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Variable/Test/etc/curl/di.xml b/dev/tests/functional/tests/app/Magento/Variable/Test/etc/curl/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Vault/Test/Block/Onepage/Payment/Method/Vault.php b/dev/tests/functional/tests/app/Magento/Vault/Test/Block/Onepage/Payment/Method/Vault.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Vault/Test/Block/StoredPayments.php b/dev/tests/functional/tests/app/Magento/Vault/Test/Block/StoredPayments.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Vault/Test/Constraint/AssertCreditCardNotPresentOnCheckout.php b/dev/tests/functional/tests/app/Magento/Vault/Test/Constraint/AssertCreditCardNotPresentOnCheckout.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Vault/Test/Constraint/AssertSaveCreditCardOptionNotPresent.php b/dev/tests/functional/tests/app/Magento/Vault/Test/Constraint/AssertSaveCreditCardOptionNotPresent.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Vault/Test/Constraint/AssertStoredPaymentDeletedMessage.php b/dev/tests/functional/tests/app/Magento/Vault/Test/Constraint/AssertStoredPaymentDeletedMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Vault/Test/Page/CheckoutOnepage.xml b/dev/tests/functional/tests/app/Magento/Vault/Test/Page/CheckoutOnepage.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Vault/Test/Page/StoredPaymentMethods.xml b/dev/tests/functional/tests/app/Magento/Vault/Test/Page/StoredPaymentMethods.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Vault/Test/TestCase/CreateVaultOrderBackendTest.php b/dev/tests/functional/tests/app/Magento/Vault/Test/TestCase/CreateVaultOrderBackendTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Vault/Test/TestCase/DeleteSavedCreditCardTest.php b/dev/tests/functional/tests/app/Magento/Vault/Test/TestCase/DeleteSavedCreditCardTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Vault/Test/TestCase/DeleteSavedCreditCardTest.xml b/dev/tests/functional/tests/app/Magento/Vault/Test/TestCase/DeleteSavedCreditCardTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Vault/Test/TestCase/ReorderUsingVaultTest.php b/dev/tests/functional/tests/app/Magento/Vault/Test/TestCase/ReorderUsingVaultTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Vault/Test/TestCase/UseVaultOnCheckoutTest.php b/dev/tests/functional/tests/app/Magento/Vault/Test/TestCase/UseVaultOnCheckoutTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Vault/Test/TestStep/CheckSaveCreditCardOptionStep.php b/dev/tests/functional/tests/app/Magento/Vault/Test/TestStep/CheckSaveCreditCardOptionStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Vault/Test/TestStep/DeleteCreditCardFromMyAccountStep.php b/dev/tests/functional/tests/app/Magento/Vault/Test/TestStep/DeleteCreditCardFromMyAccountStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Vault/Test/TestStep/DeleteStoredPaymentStep.php b/dev/tests/functional/tests/app/Magento/Vault/Test/TestStep/DeleteStoredPaymentStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Vault/Test/TestStep/SaveCreditCardOnBackendStep.php b/dev/tests/functional/tests/app/Magento/Vault/Test/TestStep/SaveCreditCardOnBackendStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Vault/Test/TestStep/SaveCreditCardStep.php b/dev/tests/functional/tests/app/Magento/Vault/Test/TestStep/SaveCreditCardStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Vault/Test/TestStep/SubmitOrderWithVaultStep.php b/dev/tests/functional/tests/app/Magento/Vault/Test/TestStep/SubmitOrderWithVaultStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Vault/Test/TestStep/UseSavedPaymentMethodStep.php b/dev/tests/functional/tests/app/Magento/Vault/Test/TestStep/UseSavedPaymentMethodStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Vault/Test/TestStep/UseVaultPaymentTokenStep.php b/dev/tests/functional/tests/app/Magento/Vault/Test/TestStep/UseVaultPaymentTokenStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Vault/Test/etc/di.xml b/dev/tests/functional/tests/app/Magento/Vault/Test/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Vault/Test/etc/testcase.xml b/dev/tests/functional/tests/app/Magento/Vault/Test/etc/testcase.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Weee/Test/Block/Adminhtml/Product/Edit/Section/ProductDetails/Fpt.php b/dev/tests/functional/tests/app/Magento/Weee/Test/Block/Adminhtml/Product/Edit/Section/ProductDetails/Fpt.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Weee/Test/Block/Cart.php b/dev/tests/functional/tests/app/Magento/Weee/Test/Block/Cart.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Weee/Test/Block/Cart/CartItem.php b/dev/tests/functional/tests/app/Magento/Weee/Test/Block/Cart/CartItem.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Weee/Test/Block/Cart/CartItem/Fpt.php b/dev/tests/functional/tests/app/Magento/Weee/Test/Block/Cart/CartItem/Fpt.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Weee/Test/Block/Cart/Totals.php b/dev/tests/functional/tests/app/Magento/Weee/Test/Block/Cart/Totals.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Weee/Test/Block/Cart/Totals/Fpt.php b/dev/tests/functional/tests/app/Magento/Weee/Test/Block/Cart/Totals/Fpt.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Weee/Test/Block/Product/ListProduct.php b/dev/tests/functional/tests/app/Magento/Weee/Test/Block/Product/ListProduct.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Weee/Test/Block/Product/Price.php b/dev/tests/functional/tests/app/Magento/Weee/Test/Block/Product/Price.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Weee/Test/Block/Product/ProductList/ProductItem.php b/dev/tests/functional/tests/app/Magento/Weee/Test/Block/Product/ProductList/ProductItem.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Weee/Test/Block/Product/View.php b/dev/tests/functional/tests/app/Magento/Weee/Test/Block/Product/View.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Weee/Test/Constraint/AssertFptApplied.php b/dev/tests/functional/tests/app/Magento/Weee/Test/Constraint/AssertFptApplied.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Weee/Test/Page/Category/CatalogCategoryView.xml b/dev/tests/functional/tests/app/Magento/Weee/Test/Page/Category/CatalogCategoryView.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Weee/Test/Page/CheckoutCart.xml b/dev/tests/functional/tests/app/Magento/Weee/Test/Page/CheckoutCart.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Weee/Test/Page/Product/CatalogProductView.xml b/dev/tests/functional/tests/app/Magento/Weee/Test/Page/Product/CatalogProductView.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Weee/Test/Repository/ConfigData.xml b/dev/tests/functional/tests/app/Magento/Weee/Test/Repository/ConfigData.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Weee/Test/TestCase/CreateTaxWithFptTest.php b/dev/tests/functional/tests/app/Magento/Weee/Test/TestCase/CreateTaxWithFptTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Weee/Test/TestCase/CreateTaxWithFptTest.xml b/dev/tests/functional/tests/app/Magento/Weee/Test/TestCase/CreateTaxWithFptTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Weee/Test/etc/di.xml b/dev/tests/functional/tests/app/Magento/Weee/Test/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/ChosenOption.php b/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/ChosenOption.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/Parameters.php b/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/Parameters.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/CatalogCategoryLink.php b/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/CatalogCategoryLink.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/CatalogCategoryLink.xml b/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/CatalogCategoryLink.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/CatalogCategoryLink/Form.php b/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/CatalogCategoryLink/Form.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/CatalogCategoryLink/Form.xml b/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/CatalogCategoryLink/Form.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/CatalogNewProductsList.php b/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/CatalogNewProductsList.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/CatalogNewProductsList.xml b/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/CatalogNewProductsList.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/CatalogProductLink.php b/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/CatalogProductLink.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/CatalogProductLink.xml b/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/CatalogProductLink.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/CatalogProductLink/Grid.php b/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/CatalogProductLink/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/CmsPageLink.php b/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/CmsPageLink.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/CmsPageLink.xml b/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/CmsPageLink.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/CmsPageLink/Grid.php b/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/CmsPageLink/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/CmsStaticBlock.php b/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/CmsStaticBlock.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/CmsStaticBlock.xml b/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/CmsStaticBlock.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/CmsStaticBlock/Grid.php b/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/CmsStaticBlock/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/ParametersForm.php b/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/ParametersForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/RecentlyComparedProducts.php b/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/RecentlyComparedProducts.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/RecentlyComparedProducts.xml b/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/RecentlyComparedProducts.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/RecentlyViewedProducts.php b/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/RecentlyViewedProducts.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/RecentlyViewedProducts.xml b/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/ParametersType/RecentlyViewedProducts.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/Settings.php b/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/Settings.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/WidgetInstance.php b/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/WidgetInstance.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/WidgetInstanceType/Categories.php b/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/WidgetInstanceType/Categories.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/WidgetInstanceType/Categories.xml b/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/WidgetInstanceType/Categories.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/WidgetInstanceType/GenericPages.php b/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/WidgetInstanceType/GenericPages.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/WidgetInstanceType/GenericPages.xml b/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/WidgetInstanceType/GenericPages.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/WidgetInstanceType/Product/Grid.php b/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/WidgetInstanceType/Product/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/WidgetInstanceType/Products.php b/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/WidgetInstanceType/Products.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/WidgetInstanceType/Products.xml b/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/WidgetInstanceType/Products.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/WidgetInstanceType/WidgetInstanceForm.php b/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/Tab/WidgetInstanceType/WidgetInstanceForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/WidgetForm.php b/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/WidgetForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/WidgetForm.xml b/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/Instance/Edit/WidgetForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/WidgetGrid.php b/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/Widget/WidgetGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/WidgetForm.php b/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/WidgetForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/WidgetForm.xml b/dev/tests/functional/tests/app/Magento/Widget/Test/Block/Adminhtml/WidgetForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Block/WidgetView.php b/dev/tests/functional/tests/app/Magento/Widget/Test/Block/WidgetView.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Constraint/AssertProductInCatalogNewProductsList.php b/dev/tests/functional/tests/app/Magento/Widget/Test/Constraint/AssertProductInCatalogNewProductsList.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Constraint/AssertThemeFilterValuesOnWidgetGrid.php b/dev/tests/functional/tests/app/Magento/Widget/Test/Constraint/AssertThemeFilterValuesOnWidgetGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Constraint/AssertWidgetAbsentOnFrontendHome.php b/dev/tests/functional/tests/app/Magento/Widget/Test/Constraint/AssertWidgetAbsentOnFrontendHome.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Constraint/AssertWidgetCatalogCategoryLink.php b/dev/tests/functional/tests/app/Magento/Widget/Test/Constraint/AssertWidgetCatalogCategoryLink.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Constraint/AssertWidgetCatalogNewProductsList.php b/dev/tests/functional/tests/app/Magento/Widget/Test/Constraint/AssertWidgetCatalogNewProductsList.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Constraint/AssertWidgetCmsPageLink.php b/dev/tests/functional/tests/app/Magento/Widget/Test/Constraint/AssertWidgetCmsPageLink.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Constraint/AssertWidgetInGrid.php b/dev/tests/functional/tests/app/Magento/Widget/Test/Constraint/AssertWidgetInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Constraint/AssertWidgetOnFrontendInCatalog.php b/dev/tests/functional/tests/app/Magento/Widget/Test/Constraint/AssertWidgetOnFrontendInCatalog.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Constraint/AssertWidgetOnProductPage.php b/dev/tests/functional/tests/app/Magento/Widget/Test/Constraint/AssertWidgetOnProductPage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Constraint/AssertWidgetProductLink.php b/dev/tests/functional/tests/app/Magento/Widget/Test/Constraint/AssertWidgetProductLink.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Constraint/AssertWidgetRecentlyComparedProducts.php b/dev/tests/functional/tests/app/Magento/Widget/Test/Constraint/AssertWidgetRecentlyComparedProducts.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Constraint/AssertWidgetRecentlyViewedProducts.php b/dev/tests/functional/tests/app/Magento/Widget/Test/Constraint/AssertWidgetRecentlyViewedProducts.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Constraint/AssertWidgetSuccessDeleteMessage.php b/dev/tests/functional/tests/app/Magento/Widget/Test/Constraint/AssertWidgetSuccessDeleteMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Constraint/AssertWidgetSuccessSaveMessage.php b/dev/tests/functional/tests/app/Magento/Widget/Test/Constraint/AssertWidgetSuccessSaveMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Constraint/AssertWidgetsInGrid.php b/dev/tests/functional/tests/app/Magento/Widget/Test/Constraint/AssertWidgetsInGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Fixture/Widget.xml b/dev/tests/functional/tests/app/Magento/Widget/Test/Fixture/Widget.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Fixture/Widget/Parameters.php b/dev/tests/functional/tests/app/Magento/Widget/Test/Fixture/Widget/Parameters.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Fixture/Widget/StoreIds.php b/dev/tests/functional/tests/app/Magento/Widget/Test/Fixture/Widget/StoreIds.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Fixture/Widget/WidgetInstance.php b/dev/tests/functional/tests/app/Magento/Widget/Test/Fixture/Widget/WidgetInstance.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Handler/Widget/Curl.php b/dev/tests/functional/tests/app/Magento/Widget/Test/Handler/Widget/Curl.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Handler/Widget/WidgetInterface.php b/dev/tests/functional/tests/app/Magento/Widget/Test/Handler/Widget/WidgetInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Page/Adminhtml/WidgetInstanceEdit.xml b/dev/tests/functional/tests/app/Magento/Widget/Test/Page/Adminhtml/WidgetInstanceEdit.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Page/Adminhtml/WidgetInstanceIndex.xml b/dev/tests/functional/tests/app/Magento/Widget/Test/Page/Adminhtml/WidgetInstanceIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Page/Adminhtml/WidgetInstanceNew.xml b/dev/tests/functional/tests/app/Magento/Widget/Test/Page/Adminhtml/WidgetInstanceNew.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Repository/Widget.xml b/dev/tests/functional/tests/app/Magento/Widget/Test/Repository/Widget.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Repository/Widget/Parameters.xml b/dev/tests/functional/tests/app/Magento/Widget/Test/Repository/Widget/Parameters.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/Repository/Widget/WidgetInstance.xml b/dev/tests/functional/tests/app/Magento/Widget/Test/Repository/Widget/WidgetInstance.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/TestCase/AbstractCreateWidgetEntityTest.php b/dev/tests/functional/tests/app/Magento/Widget/Test/TestCase/AbstractCreateWidgetEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/TestCase/CreateWidgetEntityTest.php b/dev/tests/functional/tests/app/Magento/Widget/Test/TestCase/CreateWidgetEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/TestCase/CreateWidgetEntityTest.xml b/dev/tests/functional/tests/app/Magento/Widget/Test/TestCase/CreateWidgetEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/TestCase/CreateWidgetsEntityTest.php b/dev/tests/functional/tests/app/Magento/Widget/Test/TestCase/CreateWidgetsEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/TestCase/CreateWidgetsEntityTest.xml b/dev/tests/functional/tests/app/Magento/Widget/Test/TestCase/CreateWidgetsEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/TestCase/DeleteWidgetEntityTest.php b/dev/tests/functional/tests/app/Magento/Widget/Test/TestCase/DeleteWidgetEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/TestCase/DeleteWidgetEntityTest.xml b/dev/tests/functional/tests/app/Magento/Widget/Test/TestCase/DeleteWidgetEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/TestCase/NavigateMenuTest.xml b/dev/tests/functional/tests/app/Magento/Widget/Test/TestCase/NavigateMenuTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/TestStep/DeleteAllWidgetsStep.php b/dev/tests/functional/tests/app/Magento/Widget/Test/TestStep/DeleteAllWidgetsStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/etc/curl/di.xml b/dev/tests/functional/tests/app/Magento/Widget/Test/etc/curl/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Widget/Test/etc/di.xml b/dev/tests/functional/tests/app/Magento/Widget/Test/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Wishlist/Test/Block/Adminhtml/Customer/Edit/Tab/Wishlist.php b/dev/tests/functional/tests/app/Magento/Wishlist/Test/Block/Adminhtml/Customer/Edit/Tab/Wishlist.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Wishlist/Test/Block/Adminhtml/Customer/Edit/Tab/Wishlist/Grid.php b/dev/tests/functional/tests/app/Magento/Wishlist/Test/Block/Adminhtml/Customer/Edit/Tab/Wishlist/Grid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Wishlist/Test/Block/Adminhtml/Edit/CustomerForm.xml b/dev/tests/functional/tests/app/Magento/Wishlist/Test/Block/Adminhtml/Edit/CustomerForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Wishlist/Test/Block/Customer/Sharing.php b/dev/tests/functional/tests/app/Magento/Wishlist/Test/Block/Customer/Sharing.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Wishlist/Test/Block/Customer/Sharing.xml b/dev/tests/functional/tests/app/Magento/Wishlist/Test/Block/Customer/Sharing.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Wishlist/Test/Block/Customer/Wishlist.php b/dev/tests/functional/tests/app/Magento/Wishlist/Test/Block/Customer/Wishlist.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Wishlist/Test/Block/Customer/Wishlist/Items.php b/dev/tests/functional/tests/app/Magento/Wishlist/Test/Block/Customer/Wishlist/Items.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Wishlist/Test/Block/Customer/Wishlist/Items/Product.php b/dev/tests/functional/tests/app/Magento/Wishlist/Test/Block/Customer/Wishlist/Items/Product.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Wishlist/Test/Block/Customer/Wishlist/Items/Product.xml b/dev/tests/functional/tests/app/Magento/Wishlist/Test/Block/Customer/Wishlist/Items/Product.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Wishlist/Test/Constraint/AbstractAssertWishlistProductDetails.php b/dev/tests/functional/tests/app/Magento/Wishlist/Test/Constraint/AbstractAssertWishlistProductDetails.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Wishlist/Test/Constraint/AssertAddProductToWishlistSuccessMessage.php b/dev/tests/functional/tests/app/Magento/Wishlist/Test/Constraint/AssertAddProductToWishlistSuccessMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Wishlist/Test/Constraint/AssertCustomerWishlistOnBackendIsEmpty.php b/dev/tests/functional/tests/app/Magento/Wishlist/Test/Constraint/AssertCustomerWishlistOnBackendIsEmpty.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Wishlist/Test/Constraint/AssertMoveProductToWishlistSuccessMessage.php b/dev/tests/functional/tests/app/Magento/Wishlist/Test/Constraint/AssertMoveProductToWishlistSuccessMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Wishlist/Test/Constraint/AssertProductDetailsInWishlist.php b/dev/tests/functional/tests/app/Magento/Wishlist/Test/Constraint/AssertProductDetailsInWishlist.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Wishlist/Test/Constraint/AssertProductInCustomerWishlistOnBackendGrid.php b/dev/tests/functional/tests/app/Magento/Wishlist/Test/Constraint/AssertProductInCustomerWishlistOnBackendGrid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Wishlist/Test/Constraint/AssertProductIsPresentInCustomerBackendWishlist.php b/dev/tests/functional/tests/app/Magento/Wishlist/Test/Constraint/AssertProductIsPresentInCustomerBackendWishlist.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Wishlist/Test/Constraint/AssertProductIsPresentInWishlist.php b/dev/tests/functional/tests/app/Magento/Wishlist/Test/Constraint/AssertProductIsPresentInWishlist.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Wishlist/Test/Constraint/AssertProductPriceIsNotZero.php b/dev/tests/functional/tests/app/Magento/Wishlist/Test/Constraint/AssertProductPriceIsNotZero.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Wishlist/Test/Constraint/AssertProductsIsAbsentInWishlist.php b/dev/tests/functional/tests/app/Magento/Wishlist/Test/Constraint/AssertProductsIsAbsentInWishlist.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Wishlist/Test/Constraint/AssertProductsIsPresentInCustomerBackendWishlist.php b/dev/tests/functional/tests/app/Magento/Wishlist/Test/Constraint/AssertProductsIsPresentInCustomerBackendWishlist.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Wishlist/Test/Constraint/AssertWishlistIsEmpty.php b/dev/tests/functional/tests/app/Magento/Wishlist/Test/Constraint/AssertWishlistIsEmpty.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Wishlist/Test/Constraint/AssertWishlistShareMessage.php b/dev/tests/functional/tests/app/Magento/Wishlist/Test/Constraint/AssertWishlistShareMessage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Wishlist/Test/Page/WishlistIndex.xml b/dev/tests/functional/tests/app/Magento/Wishlist/Test/Page/WishlistIndex.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Wishlist/Test/Page/WishlistShare.xml b/dev/tests/functional/tests/app/Magento/Wishlist/Test/Page/WishlistShare.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/AbstractWishlistTest.php b/dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/AbstractWishlistTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/AddProductToWishlistEntityTest.php b/dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/AddProductToWishlistEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/AddProductToWishlistEntityTest.xml b/dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/AddProductToWishlistEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/AddProductsToCartFromCustomerWishlistOnFrontendTest.php b/dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/AddProductsToCartFromCustomerWishlistOnFrontendTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/AddProductsToCartFromCustomerWishlistOnFrontendTest.xml b/dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/AddProductsToCartFromCustomerWishlistOnFrontendTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/ConfigureProductInCustomerWishlistOnBackendTest.php b/dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/ConfigureProductInCustomerWishlistOnBackendTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/ConfigureProductInCustomerWishlistOnBackendTest.xml b/dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/ConfigureProductInCustomerWishlistOnBackendTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/ConfigureProductInCustomerWishlistOnFrontendTest.php b/dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/ConfigureProductInCustomerWishlistOnFrontendTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/ConfigureProductInCustomerWishlistOnFrontendTest.xml b/dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/ConfigureProductInCustomerWishlistOnFrontendTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/DeleteProductFromCustomerWishlistOnBackendTest.php b/dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/DeleteProductFromCustomerWishlistOnBackendTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/DeleteProductFromCustomerWishlistOnBackendTest.xml b/dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/DeleteProductFromCustomerWishlistOnBackendTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/DeleteProductsFromWishlistOnFrontendTest.php b/dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/DeleteProductsFromWishlistOnFrontendTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/DeleteProductsFromWishlistOnFrontendTest.xml b/dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/DeleteProductsFromWishlistOnFrontendTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/MoveProductFromShoppingCartToWishlistTest.php b/dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/MoveProductFromShoppingCartToWishlistTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/MoveProductFromShoppingCartToWishlistTest.xml b/dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/MoveProductFromShoppingCartToWishlistTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/ShareWishlistEntityTest.php b/dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/ShareWishlistEntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/ShareWishlistEntityTest.xml b/dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/ShareWishlistEntityTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/ViewProductInCustomerWishlistOnBackendTest.php b/dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/ViewProductInCustomerWishlistOnBackendTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/ViewProductInCustomerWishlistOnBackendTest.xml b/dev/tests/functional/tests/app/Magento/Wishlist/Test/TestCase/ViewProductInCustomerWishlistOnBackendTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/tests/app/Magento/Wishlist/Test/TestStep/AddProductsToWishlistStep.php b/dev/tests/functional/tests/app/Magento/Wishlist/Test/TestStep/AddProductsToWishlistStep.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests.php b/dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests/3rd_party.xml b/dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests/3rd_party.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests/3rd_party_single_flow.xml b/dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests/3rd_party_single_flow.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests/acceptance.xml b/dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests/acceptance.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests/acceptance_unstable.xml b/dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests/acceptance_unstable.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests/basic.xml b/dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests/basic.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests/basic_green.xml b/dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests/basic_green.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests/category.xml b/dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests/category.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests/extended_acceptance.xml b/dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests/extended_acceptance.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests/installation.xml b/dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests/installation.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests/mvp.xml b/dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests/mvp.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests/setup.xml b/dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests/setup.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests/travis_acceptance.xml b/dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests/travis_acceptance.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests/upgrade.xml b/dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests/upgrade.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/utils/bootstrap.php b/dev/tests/functional/utils/bootstrap.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/utils/command.php b/dev/tests/functional/utils/command.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/utils/deleteMagentoGeneratedCode.php b/dev/tests/functional/utils/deleteMagentoGeneratedCode.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/utils/export.php b/dev/tests/functional/utils/export.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/utils/generate.php b/dev/tests/functional/utils/generate.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/utils/generate/factory.php b/dev/tests/functional/utils/generate/factory.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/utils/generate/fixture.php b/dev/tests/functional/utils/generate/fixture.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/utils/generate/handler.php b/dev/tests/functional/utils/generate/handler.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/utils/generate/page.php b/dev/tests/functional/utils/generate/page.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/utils/generate/repository.php b/dev/tests/functional/utils/generate/repository.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/utils/generateAllureReport.php b/dev/tests/functional/utils/generateAllureReport.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/utils/generateFixtureXml.php b/dev/tests/functional/utils/generateFixtureXml.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/utils/locales.php b/dev/tests/functional/utils/locales.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/utils/log.php b/dev/tests/functional/utils/log.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/utils/mtf b/dev/tests/functional/utils/mtf
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/utils/pathChecker.php b/dev/tests/functional/utils/pathChecker.php
old mode 100644
new mode 100755
diff --git a/dev/tests/functional/utils/website.php b/dev/tests/functional/utils/website.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/.gitignore b/dev/tests/integration/.gitignore
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/_files/Magento/TestModuleDirectoryZipCodes/etc/module.xml b/dev/tests/integration/_files/Magento/TestModuleDirectoryZipCodes/etc/module.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/_files/Magento/TestModuleDirectoryZipCodes/etc/zip_codes.xml b/dev/tests/integration/_files/Magento/TestModuleDirectoryZipCodes/etc/zip_codes.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/_files/Magento/TestModuleDirectoryZipCodes/registration.php b/dev/tests/integration/_files/Magento/TestModuleDirectoryZipCodes/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/_files/Magento/TestModuleFakePaymentMethod/Gateway/Command/DoNothingCommand.php b/dev/tests/integration/_files/Magento/TestModuleFakePaymentMethod/Gateway/Command/DoNothingCommand.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/_files/Magento/TestModuleFakePaymentMethod/etc/config.xml b/dev/tests/integration/_files/Magento/TestModuleFakePaymentMethod/etc/config.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/_files/Magento/TestModuleFakePaymentMethod/etc/di.xml b/dev/tests/integration/_files/Magento/TestModuleFakePaymentMethod/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/_files/Magento/TestModuleFakePaymentMethod/etc/module.xml b/dev/tests/integration/_files/Magento/TestModuleFakePaymentMethod/etc/module.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/_files/Magento/TestModuleFakePaymentMethod/registration.php b/dev/tests/integration/_files/Magento/TestModuleFakePaymentMethod/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/_files/Magento/TestModuleSample/composer.json b/dev/tests/integration/_files/Magento/TestModuleSample/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/_files/Magento/TestModuleSample/etc/module.xml b/dev/tests/integration/_files/Magento/TestModuleSample/etc/module.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/_files/Magento/TestModuleSample/registration.php b/dev/tests/integration/_files/Magento/TestModuleSample/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/etc/config-global.php.dist b/dev/tests/integration/etc/config-global.php.dist
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/etc/di/preferences/ce.php b/dev/tests/integration/etc/di/preferences/ce.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/etc/install-config-mysql.php.dist b/dev/tests/integration/etc/install-config-mysql.php.dist
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/etc/install-config-mysql.travis.php.dist b/dev/tests/integration/etc/install-config-mysql.travis.php.dist
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Annotation/AdminConfigFixture.php b/dev/tests/integration/framework/Magento/TestFramework/Annotation/AdminConfigFixture.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Annotation/AppArea.php b/dev/tests/integration/framework/Magento/TestFramework/Annotation/AppArea.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Annotation/AppIsolation.php b/dev/tests/integration/framework/Magento/TestFramework/Annotation/AppIsolation.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Annotation/Cache.php b/dev/tests/integration/framework/Magento/TestFramework/Annotation/Cache.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Annotation/ComponentRegistrarFixture.php b/dev/tests/integration/framework/Magento/TestFramework/Annotation/ComponentRegistrarFixture.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Annotation/ConfigFixture.php b/dev/tests/integration/framework/Magento/TestFramework/Annotation/ConfigFixture.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Annotation/DataFixture.php b/dev/tests/integration/framework/Magento/TestFramework/Annotation/DataFixture.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Annotation/DataFixtureBeforeTransaction.php b/dev/tests/integration/framework/Magento/TestFramework/Annotation/DataFixtureBeforeTransaction.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Annotation/DbIsolation.php b/dev/tests/integration/framework/Magento/TestFramework/Annotation/DbIsolation.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Api/Config/Reader/FileResolver.php b/dev/tests/integration/framework/Magento/TestFramework/Api/Config/Reader/FileResolver.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/App/Config.php b/dev/tests/integration/framework/Magento/TestFramework/App/Config.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/App/EnvironmentFactory.php b/dev/tests/integration/framework/Magento/TestFramework/App/EnvironmentFactory.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/App/Filesystem.php b/dev/tests/integration/framework/Magento/TestFramework/App/Filesystem.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/App/MutableScopeConfig.php b/dev/tests/integration/framework/Magento/TestFramework/App/MutableScopeConfig.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/App/ObjectManager/Environment/Developer.php b/dev/tests/integration/framework/Magento/TestFramework/App/ObjectManager/Environment/Developer.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/App/ReinitableConfig.php b/dev/tests/integration/framework/Magento/TestFramework/App/ReinitableConfig.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/App/State.php b/dev/tests/integration/framework/Magento/TestFramework/App/State.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Application.php b/dev/tests/integration/framework/Magento/TestFramework/Application.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Backend/App/Config.php b/dev/tests/integration/framework/Magento/TestFramework/Backend/App/Config.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Bootstrap.php b/dev/tests/integration/framework/Magento/TestFramework/Bootstrap.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Bootstrap/DocBlock.php b/dev/tests/integration/framework/Magento/TestFramework/Bootstrap/DocBlock.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Bootstrap/Environment.php b/dev/tests/integration/framework/Magento/TestFramework/Bootstrap/Environment.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Bootstrap/Memory.php b/dev/tests/integration/framework/Magento/TestFramework/Bootstrap/Memory.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Bootstrap/MemoryFactory.php b/dev/tests/integration/framework/Magento/TestFramework/Bootstrap/MemoryFactory.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Bootstrap/Profiler.php b/dev/tests/integration/framework/Magento/TestFramework/Bootstrap/Profiler.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Bootstrap/Settings.php b/dev/tests/integration/framework/Magento/TestFramework/Bootstrap/Settings.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Config.php b/dev/tests/integration/framework/Magento/TestFramework/Config.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/CookieManager.php b/dev/tests/integration/framework/Magento/TestFramework/CookieManager.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Db/AbstractDb.php b/dev/tests/integration/framework/Magento/TestFramework/Db/AbstractDb.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Db/Adapter/Mysql.php b/dev/tests/integration/framework/Magento/TestFramework/Db/Adapter/Mysql.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Db/Adapter/TransactionInterface.php b/dev/tests/integration/framework/Magento/TestFramework/Db/Adapter/TransactionInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Db/ConnectionAdapter.php b/dev/tests/integration/framework/Magento/TestFramework/Db/ConnectionAdapter.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Db/Mysql.php b/dev/tests/integration/framework/Magento/TestFramework/Db/Mysql.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Db/Sequence.php b/dev/tests/integration/framework/Magento/TestFramework/Db/Sequence.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Db/Sequence/Builder.php b/dev/tests/integration/framework/Magento/TestFramework/Db/Sequence/Builder.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Entity.php b/dev/tests/integration/framework/Magento/TestFramework/Entity.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/ErrorLog/Listener.php b/dev/tests/integration/framework/Magento/TestFramework/ErrorLog/Listener.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/ErrorLog/Logger.php b/dev/tests/integration/framework/Magento/TestFramework/ErrorLog/Logger.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Event/Magento.php b/dev/tests/integration/framework/Magento/TestFramework/Event/Magento.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Event/Param/Transaction.php b/dev/tests/integration/framework/Magento/TestFramework/Event/Param/Transaction.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Event/PhpUnit.php b/dev/tests/integration/framework/Magento/TestFramework/Event/PhpUnit.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Event/Transaction.php b/dev/tests/integration/framework/Magento/TestFramework/Event/Transaction.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/EventManager.php b/dev/tests/integration/framework/Magento/TestFramework/EventManager.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Helper/Api.php b/dev/tests/integration/framework/Magento/TestFramework/Helper/Api.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Helper/Bootstrap.php b/dev/tests/integration/framework/Magento/TestFramework/Helper/Bootstrap.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Helper/CacheCleaner.php b/dev/tests/integration/framework/Magento/TestFramework/Helper/CacheCleaner.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Helper/Config.php b/dev/tests/integration/framework/Magento/TestFramework/Helper/Config.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Helper/Eav.php b/dev/tests/integration/framework/Magento/TestFramework/Helper/Eav.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Helper/Factory.php b/dev/tests/integration/framework/Magento/TestFramework/Helper/Factory.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Helper/Memory.php b/dev/tests/integration/framework/Magento/TestFramework/Helper/Memory.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Helper/Xpath.php b/dev/tests/integration/framework/Magento/TestFramework/Helper/Xpath.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Indexer/TestCase.php b/dev/tests/integration/framework/Magento/TestFramework/Indexer/TestCase.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Interception/PluginList.php b/dev/tests/integration/framework/Magento/TestFramework/Interception/PluginList.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Isolation/AppConfig.php b/dev/tests/integration/framework/Magento/TestFramework/Isolation/AppConfig.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Isolation/DeploymentConfig.php b/dev/tests/integration/framework/Magento/TestFramework/Isolation/DeploymentConfig.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Isolation/WorkingDirectory.php b/dev/tests/integration/framework/Magento/TestFramework/Isolation/WorkingDirectory.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Listener/ExtededTestdox.php b/dev/tests/integration/framework/Magento/TestFramework/Listener/ExtededTestdox.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Mail/Template/TransportBuilderMock.php b/dev/tests/integration/framework/Magento/TestFramework/Mail/Template/TransportBuilderMock.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Mail/TransportInterfaceMock.php b/dev/tests/integration/framework/Magento/TestFramework/Mail/TransportInterfaceMock.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/MemoryLimit.php b/dev/tests/integration/framework/Magento/TestFramework/MemoryLimit.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/ObjectManager.php b/dev/tests/integration/framework/Magento/TestFramework/ObjectManager.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/ObjectManager/Config.php b/dev/tests/integration/framework/Magento/TestFramework/ObjectManager/Config.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/ObjectManager/Configurator.php b/dev/tests/integration/framework/Magento/TestFramework/ObjectManager/Configurator.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/ObjectManagerFactory.php b/dev/tests/integration/framework/Magento/TestFramework/ObjectManagerFactory.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Profiler/OutputBamboo.php b/dev/tests/integration/framework/Magento/TestFramework/Profiler/OutputBamboo.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Request.php b/dev/tests/integration/framework/Magento/TestFramework/Request.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Response.php b/dev/tests/integration/framework/Magento/TestFramework/Response.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Store/StoreManager.php b/dev/tests/integration/framework/Magento/TestFramework/Store/StoreManager.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/TestCase/AbstractBackendController.php b/dev/tests/integration/framework/Magento/TestFramework/TestCase/AbstractBackendController.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/TestCase/AbstractConfigFiles.php b/dev/tests/integration/framework/Magento/TestFramework/TestCase/AbstractConfigFiles.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/TestCase/AbstractController.php b/dev/tests/integration/framework/Magento/TestFramework/TestCase/AbstractController.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/TestCase/AbstractIntegrity.php b/dev/tests/integration/framework/Magento/TestFramework/TestCase/AbstractIntegrity.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/View/Layout.php b/dev/tests/integration/framework/Magento/TestFramework/View/Layout.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Workaround/Cleanup/StaticProperties.php b/dev/tests/integration/framework/Magento/TestFramework/Workaround/Cleanup/StaticProperties.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Workaround/Cleanup/TestCaseProperties.php b/dev/tests/integration/framework/Magento/TestFramework/Workaround/Cleanup/TestCaseProperties.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/Magento/TestFramework/Workaround/Segfault.php b/dev/tests/integration/framework/Magento/TestFramework/Workaround/Segfault.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/autoload.php b/dev/tests/integration/framework/autoload.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/bootstrap.php b/dev/tests/integration/framework/bootstrap.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/deployTestModules.php b/dev/tests/integration/framework/deployTestModules.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/tests/unit/framework/bootstrap.php b/dev/tests/integration/framework/tests/unit/framework/bootstrap.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/tests/unit/phpunit.xml.dist b/dev/tests/integration/framework/tests/unit/phpunit.xml.dist
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/AdminConfigFixtureTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/AdminConfigFixtureTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/AppAreaTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/AppAreaTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/AppIsolationTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/AppIsolationTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/ComponentRegistrarFixtureTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/ComponentRegistrarFixtureTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/ConfigFixtureTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/ConfigFixtureTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/DataFixtureTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/DataFixtureTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/DbIsolationTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/DbIsolationTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/_files/components/a/aa/aaa/registration.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/_files/components/a/aa/aaa/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/_files/components/a/aa/registration.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/_files/components/a/aa/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/_files/components/b/registration.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/_files/components/b/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/_files/components/registration.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/_files/components/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/_files/sample_fixture_two_rollback.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Annotation/_files/sample_fixture_two_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/App/ConfigTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/App/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/ApplicationTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/ApplicationTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Bootstrap/DocBlockTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Bootstrap/DocBlockTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Bootstrap/EnvironmentTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Bootstrap/EnvironmentTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Bootstrap/MemoryTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Bootstrap/MemoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Bootstrap/ProfilerTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Bootstrap/ProfilerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Bootstrap/SettingsTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Bootstrap/SettingsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Bootstrap/_files/0 b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Bootstrap/_files/0
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Bootstrap/_files/1.xml b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Bootstrap/_files/1.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Bootstrap/_files/1.xml.dist b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Bootstrap/_files/1.xml.dist
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Bootstrap/_files/2.xml b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Bootstrap/_files/2.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Bootstrap/_files/3.xml.dist b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Bootstrap/_files/3.xml.dist
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Bootstrap/_files/4.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Bootstrap/_files/4.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Bootstrap/_files/metrics.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Bootstrap/_files/metrics.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/BootstrapTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/BootstrapTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Db/Adapter/TransactionInterfaceTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Db/Adapter/TransactionInterfaceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/EntityTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/EntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Event/MagentoTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Event/MagentoTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Event/Param/TransactionTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Event/Param/TransactionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Event/PhpUnitTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Event/PhpUnitTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Event/TransactionTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Event/TransactionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/EventManagerTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/EventManagerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Helper/BootstrapTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Helper/BootstrapTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Helper/FactoryTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Helper/FactoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Helper/MemoryTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Helper/MemoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Isolation/AppConfigTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Isolation/AppConfigTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Isolation/WorkingDirectoryTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Isolation/WorkingDirectoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/MemoryLimitTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/MemoryLimitTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/ObjectManagerTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/ObjectManagerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Profiler/OutputBambooTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Profiler/OutputBambooTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Profiler/OutputBambooTestFilter.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Profiler/OutputBambooTestFilter.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/RequestTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/RequestTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/TestCase/ControllerAbstractTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/TestCase/ControllerAbstractTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Workaround/Cleanup/TestCasePropertiesTest.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Workaround/Cleanup/TestCasePropertiesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Workaround/Cleanup/TestCasePropertiesTest/DummyTestCase.php b/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Workaround/Cleanup/TestCasePropertiesTest/DummyTestCase.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/phpunit.xml.dist b/dev/tests/integration/phpunit.xml.dist
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/AdminNotification/Controller/Adminhtml/Notification/MarkAsReadTest.php b/dev/tests/integration/testsuite/Magento/AdminNotification/Controller/Adminhtml/Notification/MarkAsReadTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/AdminNotification/Controller/Adminhtml/Notification/MassMarkAsReadTest.php b/dev/tests/integration/testsuite/Magento/AdminNotification/Controller/Adminhtml/Notification/MassMarkAsReadTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/AdminNotification/Controller/Adminhtml/Notification/MassRemoveTest.php b/dev/tests/integration/testsuite/Magento/AdminNotification/Controller/Adminhtml/Notification/MassRemoveTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/AdminNotification/Controller/Adminhtml/Notification/RemoveTest.php b/dev/tests/integration/testsuite/Magento/AdminNotification/Controller/Adminhtml/Notification/RemoveTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/AdminNotification/Model/ResourceModel/Inbox/Collection/CriticalTest.php b/dev/tests/integration/testsuite/Magento/AdminNotification/Model/ResourceModel/Inbox/Collection/CriticalTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/AdminNotification/_files/notifications.php b/dev/tests/integration/testsuite/Magento/AdminNotification/_files/notifications.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/AdvancedPricingImportExport/Model/Export/AdvancedPricingTest.php b/dev/tests/integration/testsuite/Magento/AdvancedPricingImportExport/Model/Export/AdvancedPricingTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/AdvancedPricingImportExport/Model/Import/AdvancedPricingTest.php b/dev/tests/integration/testsuite/Magento/AdvancedPricingImportExport/Model/Import/AdvancedPricingTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/AdvancedPricingImportExport/Model/Import/_files/import_advanced_pricing.csv b/dev/tests/integration/testsuite/Magento/AdvancedPricingImportExport/Model/Import/_files/import_advanced_pricing.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/AdvancedPricingImportExport/_files/create_products.php b/dev/tests/integration/testsuite/Magento/AdvancedPricingImportExport/_files/create_products.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/AdvancedPricingImportExport/_files/product_with_second_website.php b/dev/tests/integration/testsuite/Magento/AdvancedPricingImportExport/_files/product_with_second_website.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Analytics/Model/Connector/Http/ReSignUpResponseResolverTest.php b/dev/tests/integration/testsuite/Magento/Analytics/Model/Connector/Http/ReSignUpResponseResolverTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Analytics/Model/Plugin/BaseUrlConfigPluginTest.php b/dev/tests/integration/testsuite/Magento/Analytics/Model/Plugin/BaseUrlConfigPluginTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Analytics/Model/ReportUrlProviderTest.php b/dev/tests/integration/testsuite/Magento/Analytics/Model/ReportUrlProviderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Analytics/_files/create_link.php b/dev/tests/integration/testsuite/Magento/Analytics/_files/create_link.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Analytics/_files/enabled_subscription_with_invalid_token.php b/dev/tests/integration/testsuite/Magento/Analytics/_files/enabled_subscription_with_invalid_token.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Analytics/_files/enabled_subscription_with_invalid_token_rollback.php b/dev/tests/integration/testsuite/Magento/Analytics/_files/enabled_subscription_with_invalid_token_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Authorization/Model/ResourceModel/Role/CollectionTest.php b/dev/tests/integration/testsuite/Magento/Authorization/Model/ResourceModel/Role/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Authorization/Model/ResourceModel/Role/Grid/CollectionTest.php b/dev/tests/integration/testsuite/Magento/Authorization/Model/ResourceModel/Role/Grid/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Authorization/Model/ResourceModel/RoleTest.php b/dev/tests/integration/testsuite/Magento/Authorization/Model/ResourceModel/RoleTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Authorization/Model/ResourceModel/Rules/CollectionTest.php b/dev/tests/integration/testsuite/Magento/Authorization/Model/ResourceModel/Rules/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Authorization/Model/RoleTest.php b/dev/tests/integration/testsuite/Magento/Authorization/Model/RoleTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Authorization/Model/RulesTest.php b/dev/tests/integration/testsuite/Magento/Authorization/Model/RulesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/PlaceTest.php b/dev/tests/integration/testsuite/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/PlaceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/PlaceTesting.php b/dev/tests/integration/testsuite/Magento/Authorizenet/Controller/Adminhtml/Authorizenet/Directpost/Payment/PlaceTesting.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Authorizenet/Controller/Directpost/Payment/BackendResponseTest.php b/dev/tests/integration/testsuite/Magento/Authorizenet/Controller/Directpost/Payment/BackendResponseTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Authorizenet/Controller/Directpost/Payment/ResponseTest.php b/dev/tests/integration/testsuite/Magento/Authorizenet/Controller/Directpost/Payment/ResponseTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Authorizenet/Controller/Directpost/PaymentTest.php b/dev/tests/integration/testsuite/Magento/Authorizenet/Controller/Directpost/PaymentTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Authorizenet/Model/Directpost/RequestTest.php b/dev/tests/integration/testsuite/Magento/Authorizenet/Model/Directpost/RequestTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Authorizenet/Model/DirectpostTest.php b/dev/tests/integration/testsuite/Magento/Authorizenet/Model/DirectpostTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Authorizenet/_files/order.php b/dev/tests/integration/testsuite/Magento/Authorizenet/_files/order.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Authorizenet/_files/transaction_details.xml b/dev/tests/integration/testsuite/Magento/Authorizenet/_files/transaction_details.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/App/AbstractActionTest.php b/dev/tests/integration/testsuite/Magento/Backend/App/AbstractActionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/App/RouterTest.php b/dev/tests/integration/testsuite/Magento/Backend/App/RouterTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/Dashboard/GraphTest.php b/dev/tests/integration/testsuite/Magento/Backend/Block/Dashboard/GraphTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/Dashboard/Orders/GridTest.php b/dev/tests/integration/testsuite/Magento/Backend/Block/Dashboard/Orders/GridTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/Dashboard/Tab/Products/ViewedTest.php b/dev/tests/integration/testsuite/Magento/Backend/Block/Dashboard/Tab/Products/ViewedTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/MenuTest.php b/dev/tests/integration/testsuite/Magento/Backend/Block/MenuTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/Page/FooterTest.php b/dev/tests/integration/testsuite/Magento/Backend/Block/Page/FooterTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/Page/HeaderTest.php b/dev/tests/integration/testsuite/Magento/Backend/Block/Page/HeaderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/System/Account/Edit/FormTest.php b/dev/tests/integration/testsuite/Magento/Backend/Block/System/Account/Edit/FormTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/System/Design/Edit/Tab/GeneralTest.php b/dev/tests/integration/testsuite/Magento/Backend/Block/System/Design/Edit/Tab/GeneralTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/System/Store/DeleteTest.php b/dev/tests/integration/testsuite/Magento/Backend/Block/System/Store/DeleteTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/System/Store/Edit/Form/GroupTest.php b/dev/tests/integration/testsuite/Magento/Backend/Block/System/Store/Edit/Form/GroupTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/System/Store/Edit/Form/StoreTest.php b/dev/tests/integration/testsuite/Magento/Backend/Block/System/Store/Edit/Form/StoreTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/System/Store/Edit/Form/WebsiteTest.php b/dev/tests/integration/testsuite/Magento/Backend/Block/System/Store/Edit/Form/WebsiteTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/System/Store/EditTest.php b/dev/tests/integration/testsuite/Magento/Backend/Block/System/Store/EditTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/TemplateTest.php b/dev/tests/integration/testsuite/Magento/Backend/Block/TemplateTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/Widget/ContainerTest.php b/dev/tests/integration/testsuite/Magento/Backend/Block/Widget/ContainerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/Widget/Form/ContainerTest.php b/dev/tests/integration/testsuite/Magento/Backend/Block/Widget/Form/ContainerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/Widget/FormTest.php b/dev/tests/integration/testsuite/Magento/Backend/Block/Widget/FormTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/Widget/Grid/Column/Renderer/TextTest.php b/dev/tests/integration/testsuite/Magento/Backend/Block/Widget/Grid/Column/Renderer/TextTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/Widget/Grid/ColumnSetTest.php b/dev/tests/integration/testsuite/Magento/Backend/Block/Widget/Grid/ColumnSetTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/Widget/Grid/ContainerTest.php b/dev/tests/integration/testsuite/Magento/Backend/Block/Widget/Grid/ContainerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/Widget/Grid/ExtendedTest.php b/dev/tests/integration/testsuite/Magento/Backend/Block/Widget/Grid/ExtendedTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/Widget/Grid/ItemTest.php b/dev/tests/integration/testsuite/Magento/Backend/Block/Widget/Grid/ItemTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/Widget/Grid/Massaction/AdditionalTest.php b/dev/tests/integration/testsuite/Magento/Backend/Block/Widget/Grid/Massaction/AdditionalTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/Widget/Grid/MassactionTest.php b/dev/tests/integration/testsuite/Magento/Backend/Block/Widget/Grid/MassactionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/Widget/GridTest.php b/dev/tests/integration/testsuite/Magento/Backend/Block/Widget/GridTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/Widget/TabsTest.php b/dev/tests/integration/testsuite/Magento/Backend/Block/Widget/TabsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/WidgetTest.php b/dev/tests/integration/testsuite/Magento/Backend/Block/WidgetTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/Magento/test_default/Magento_Backend/layout/layout_test_grid_handle.xml b/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/Magento/test_default/Magento_Backend/layout/layout_test_grid_handle.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/Magento/test_default/registration.php b/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/Magento/test_default/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/Magento/test_default/theme.xml b/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/Magento/test_default/theme.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/Magento/test_default/web/images/grid_sort_asc.gif b/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/Magento/test_default/web/images/grid_sort_asc.gif
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/Magento/test_default/web/images/grid_sort_desc.gif b/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/Magento/test_default/web/images/grid_sort_desc.gif
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/Magento/test_default/web/images/grid_th_bg.gif b/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/Magento/test_default/web/images/grid_th_bg.gif
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/Magento/test_default/web/images/grid_th_onclick_bg.gif b/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/Magento/test_default/web/images/grid_th_onclick_bg.gif
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/Magento/test_default/web/images/pager_arrow_left.gif b/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/Magento/test_default/web/images/pager_arrow_left.gif
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/Magento/test_default/web/images/pager_arrow_left_off.gif b/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/Magento/test_default/web/images/pager_arrow_left_off.gif
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/Magento/test_default/web/images/pager_arrow_right.gif b/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/Magento/test_default/web/images/pager_arrow_right.gif
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/Magento/test_default/web/images/pager_arrow_right_off.gif b/dev/tests/integration/testsuite/Magento/Backend/Block/_files/design/adminhtml/Magento/test_default/web/images/pager_arrow_right_off.gif
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/_files/form_key_disabled.php b/dev/tests/integration/testsuite/Magento/Backend/Block/_files/form_key_disabled.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/_files/form_key_disabled_rollback.php b/dev/tests/integration/testsuite/Magento/Backend/Block/_files/form_key_disabled_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Block/_files/menu/Magento/Backend/etc/adminhtml/menu.xml b/dev/tests/integration/testsuite/Magento/Backend/Block/_files/menu/Magento/Backend/etc/adminhtml/menu.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Controller/Adminhtml/AuthTest.php b/dev/tests/integration/testsuite/Magento/Backend/Controller/Adminhtml/AuthTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Controller/Adminhtml/Cache/CleanStaticFilesTest.php b/dev/tests/integration/testsuite/Magento/Backend/Controller/Adminhtml/Cache/CleanStaticFilesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Controller/Adminhtml/Cache/MassActionTest.php b/dev/tests/integration/testsuite/Magento/Backend/Controller/Adminhtml/Cache/MassActionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Controller/Adminhtml/CacheTest.php b/dev/tests/integration/testsuite/Magento/Backend/Controller/Adminhtml/CacheTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Controller/Adminhtml/Dashboard/ProductsViewedTest.php b/dev/tests/integration/testsuite/Magento/Backend/Controller/Adminhtml/Dashboard/ProductsViewedTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Controller/Adminhtml/DashboardTest.php b/dev/tests/integration/testsuite/Magento/Backend/Controller/Adminhtml/DashboardTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Controller/Adminhtml/IndexTest.php b/dev/tests/integration/testsuite/Magento/Backend/Controller/Adminhtml/IndexTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Controller/Adminhtml/System/AccountTest.php b/dev/tests/integration/testsuite/Magento/Backend/Controller/Adminhtml/System/AccountTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Controller/Adminhtml/System/DesignTest.php b/dev/tests/integration/testsuite/Magento/Backend/Controller/Adminhtml/System/DesignTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Controller/Adminhtml/System/StoreTest.php b/dev/tests/integration/testsuite/Magento/Backend/Controller/Adminhtml/System/StoreTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Controller/Adminhtml/UrlRewriteTest.php b/dev/tests/integration/testsuite/Magento/Backend/Controller/Adminhtml/UrlRewriteTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Helper/DataTest.php b/dev/tests/integration/testsuite/Magento/Backend/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Model/Auth/SessionTest.php b/dev/tests/integration/testsuite/Magento/Backend/Model/Auth/SessionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Model/AuthTest.php b/dev/tests/integration/testsuite/Magento/Backend/Model/AuthTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Model/Locale/ResolverTest.php b/dev/tests/integration/testsuite/Magento/Backend/Model/Locale/ResolverTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Model/MenuTest.php b/dev/tests/integration/testsuite/Magento/Backend/Model/MenuTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Model/Search/CustomerTest.php b/dev/tests/integration/testsuite/Magento/Backend/Model/Search/CustomerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Model/Search/OrderTest.php b/dev/tests/integration/testsuite/Magento/Backend/Model/Search/OrderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Model/Session/AdminConfigTest.php b/dev/tests/integration/testsuite/Magento/Backend/Model/Session/AdminConfigTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Model/Session/QuoteTest.php b/dev/tests/integration/testsuite/Magento/Backend/Model/Session/QuoteTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Model/SessionTest.php b/dev/tests/integration/testsuite/Magento/Backend/Model/SessionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Model/Translate/InlineTest.php b/dev/tests/integration/testsuite/Magento/Backend/Model/Translate/InlineTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/Model/UrlTest.php b/dev/tests/integration/testsuite/Magento/Backend/Model/UrlTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/controllers/_files/cache/all_types_invalidated.php b/dev/tests/integration/testsuite/Magento/Backend/controllers/_files/cache/all_types_invalidated.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/controllers/_files/cache/all_types_invalidated_rollback.php b/dev/tests/integration/testsuite/Magento/Backend/controllers/_files/cache/all_types_invalidated_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/controllers/_files/cache/application_cache.php b/dev/tests/integration/testsuite/Magento/Backend/controllers/_files/cache/application_cache.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/controllers/_files/cache/application_cache_rollback.php b/dev/tests/integration/testsuite/Magento/Backend/controllers/_files/cache/application_cache_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/controllers/_files/cache/empty_storage.php b/dev/tests/integration/testsuite/Magento/Backend/controllers/_files/cache/empty_storage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/controllers/_files/cache/non_application_cache.php b/dev/tests/integration/testsuite/Magento/Backend/controllers/_files/cache/non_application_cache.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Backend/controllers/_files/cache/non_application_cache_rollback.php b/dev/tests/integration/testsuite/Magento/Backend/controllers/_files/cache/non_application_cache_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Braintree/Block/Form/ContainerTest.php b/dev/tests/integration/testsuite/Magento/Braintree/Block/Form/ContainerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Braintree/Block/VaultTokenRendererTest.php b/dev/tests/integration/testsuite/Magento/Braintree/Block/VaultTokenRendererTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Braintree/Controller/Adminhtml/Order/PaymentReviewTest.php b/dev/tests/integration/testsuite/Magento/Braintree/Controller/Adminhtml/Order/PaymentReviewTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Braintree/Controller/Adminhtml/Payment/GetClientTokenTest.php b/dev/tests/integration/testsuite/Magento/Braintree/Controller/Adminhtml/Payment/GetClientTokenTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Braintree/Controller/Cards/DeleteActionTest.php b/dev/tests/integration/testsuite/Magento/Braintree/Controller/Cards/DeleteActionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Braintree/Gateway/Config/ConfigTest.php b/dev/tests/integration/testsuite/Magento/Braintree/Gateway/Config/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Braintree/Model/Adminhtml/System/Config/CountryCreditCardTest.php b/dev/tests/integration/testsuite/Magento/Braintree/Model/Adminhtml/System/Config/CountryCreditCardTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Braintree/Model/PaymentMethodListTest.php b/dev/tests/integration/testsuite/Magento/Braintree/Model/PaymentMethodListTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Braintree/Model/Ui/Adminhtml/PayPal/TokenUiComponentProviderTest.php b/dev/tests/integration/testsuite/Magento/Braintree/Model/Ui/Adminhtml/PayPal/TokenUiComponentProviderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Braintree/Model/Ui/TokensConfigProviderTest.php b/dev/tests/integration/testsuite/Magento/Braintree/Model/Ui/TokensConfigProviderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Braintree/_files/fraud_order.php b/dev/tests/integration/testsuite/Magento/Braintree/_files/fraud_order.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Braintree/_files/payment_configuration.php b/dev/tests/integration/testsuite/Magento/Braintree/_files/payment_configuration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Braintree/_files/payment_configuration_rollback.php b/dev/tests/integration/testsuite/Magento/Braintree/_files/payment_configuration_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Braintree/_files/payments.php b/dev/tests/integration/testsuite/Magento/Braintree/_files/payments.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Braintree/_files/paypal_quote.php b/dev/tests/integration/testsuite/Magento/Braintree/_files/paypal_quote.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Braintree/_files/paypal_vault_token.php b/dev/tests/integration/testsuite/Magento/Braintree/_files/paypal_vault_token.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Search/GridTest.php b/dev/tests/integration/testsuite/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/Search/GridTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/SearchTest.php b/dev/tests/integration/testsuite/Magento/Bundle/Block/Adminhtml/Catalog/Product/Edit/Tab/Bundle/Option/SearchTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Bundle/Controller/Adminhtml/ProductTest.php b/dev/tests/integration/testsuite/Magento/Bundle/Controller/Adminhtml/ProductTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Bundle/Controller/ProductTest.php b/dev/tests/integration/testsuite/Magento/Bundle/Controller/ProductTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Bundle/Model/Category/ProductIndexerTest.php b/dev/tests/integration/testsuite/Magento/Bundle/Model/Category/ProductIndexerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Bundle/Model/Product/BundlePriceAbstract.php b/dev/tests/integration/testsuite/Magento/Bundle/Model/Product/BundlePriceAbstract.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Bundle/Model/Product/DynamicBundlePriceCalculatorTest.php b/dev/tests/integration/testsuite/Magento/Bundle/Model/Product/DynamicBundlePriceCalculatorTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Bundle/Model/Product/DynamicBundleWithCatalogPriceRuleCalculatorTest.php b/dev/tests/integration/testsuite/Magento/Bundle/Model/Product/DynamicBundleWithCatalogPriceRuleCalculatorTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Bundle/Model/Product/DynamicBundleWithSpecialPriceCalculatorTest.php b/dev/tests/integration/testsuite/Magento/Bundle/Model/Product/DynamicBundleWithSpecialPriceCalculatorTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Bundle/Model/Product/DynamicBundleWithTierPriceCalculatorTest.php b/dev/tests/integration/testsuite/Magento/Bundle/Model/Product/DynamicBundleWithTierPriceCalculatorTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Bundle/Model/Product/FixedBundlePriceCalculatorTest.php b/dev/tests/integration/testsuite/Magento/Bundle/Model/Product/FixedBundlePriceCalculatorTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Bundle/Model/Product/FixedBundleWithCatalogPriceRuleCalculatorTest.php b/dev/tests/integration/testsuite/Magento/Bundle/Model/Product/FixedBundleWithCatalogPriceRuleCalculatorTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Bundle/Model/Product/FixedBundleWithSpecialPriceCalculatorTest.php b/dev/tests/integration/testsuite/Magento/Bundle/Model/Product/FixedBundleWithSpecialPriceCalculatorTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Bundle/Model/Product/FixedBundleWithTierPriceCalculatorTest.php b/dev/tests/integration/testsuite/Magento/Bundle/Model/Product/FixedBundleWithTierPriceCalculatorTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Bundle/Model/Product/IsSaleableTest.php b/dev/tests/integration/testsuite/Magento/Bundle/Model/Product/IsSaleableTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Bundle/Model/Product/OptionListTest.php b/dev/tests/integration/testsuite/Magento/Bundle/Model/Product/OptionListTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Bundle/Model/Product/PriceTest.php b/dev/tests/integration/testsuite/Magento/Bundle/Model/Product/PriceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Bundle/Model/Product/TypeTest.php b/dev/tests/integration/testsuite/Magento/Bundle/Model/Product/TypeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Bundle/Model/ProductTest.php b/dev/tests/integration/testsuite/Magento/Bundle/Model/ProductTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Bundle/Model/ResourceModel/Indexer/StockTest.php b/dev/tests/integration/testsuite/Magento/Bundle/Model/ResourceModel/Indexer/StockTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Bundle/_files/PriceCalculator/dynamic_bundle_product.php b/dev/tests/integration/testsuite/Magento/Bundle/_files/PriceCalculator/dynamic_bundle_product.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Bundle/_files/PriceCalculator/dynamic_bundle_product_rollback.php b/dev/tests/integration/testsuite/Magento/Bundle/_files/PriceCalculator/dynamic_bundle_product_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Bundle/_files/PriceCalculator/dynamic_bundle_product_with_catalog_rule.php b/dev/tests/integration/testsuite/Magento/Bundle/_files/PriceCalculator/dynamic_bundle_product_with_catalog_rule.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Bundle/_files/PriceCalculator/dynamic_bundle_product_with_catalog_rule_rollback.php b/dev/tests/integration/testsuite/Magento/Bundle/_files/PriceCalculator/dynamic_bundle_product_with_catalog_rule_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Bundle/_files/PriceCalculator/dynamic_bundle_product_with_special_price.php b/dev/tests/integration/testsuite/Magento/Bundle/_files/PriceCalculator/dynamic_bundle_product_with_special_price.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Bundle/_files/PriceCalculator/dynamic_bundle_product_with_special_price_rollback.php b/dev/tests/integration/testsuite/Magento/Bundle/_files/PriceCalculator/dynamic_bundle_product_with_special_price_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Bundle/_files/PriceCalculator/fixed_bundle_product.php b/dev/tests/integration/testsuite/Magento/Bundle/_files/PriceCalculator/fixed_bundle_product.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Bundle/_files/PriceCalculator/fixed_bundle_product_rollback.php b/dev/tests/integration/testsuite/Magento/Bundle/_files/PriceCalculator/fixed_bundle_product_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Bundle/_files/PriceCalculator/fixed_bundle_product_with_catalog_rule.php b/dev/tests/integration/testsuite/Magento/Bundle/_files/PriceCalculator/fixed_bundle_product_with_catalog_rule.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Bundle/_files/PriceCalculator/fixed_bundle_product_with_catalog_rule_rollback.php b/dev/tests/integration/testsuite/Magento/Bundle/_files/PriceCalculator/fixed_bundle_product_with_catalog_rule_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Bundle/_files/PriceCalculator/fixed_bundle_product_with_special_price.php b/dev/tests/integration/testsuite/Magento/Bundle/_files/PriceCalculator/fixed_bundle_product_with_special_price.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Bundle/_files/PriceCalculator/fixed_bundle_product_with_special_price_rollback.php b/dev/tests/integration/testsuite/Magento/Bundle/_files/PriceCalculator/fixed_bundle_product_with_special_price_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Bundle/_files/issaleable_product.php b/dev/tests/integration/testsuite/Magento/Bundle/_files/issaleable_product.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Bundle/_files/issaleable_product_rollback.php b/dev/tests/integration/testsuite/Magento/Bundle/_files/issaleable_product_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Bundle/_files/multiple_products.php b/dev/tests/integration/testsuite/Magento/Bundle/_files/multiple_products.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Bundle/_files/multiple_products_rollback.php b/dev/tests/integration/testsuite/Magento/Bundle/_files/multiple_products_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Bundle/_files/order_item_with_bundle_and_options.php b/dev/tests/integration/testsuite/Magento/Bundle/_files/order_item_with_bundle_and_options.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Bundle/_files/order_item_with_bundle_and_options_rollback.php b/dev/tests/integration/testsuite/Magento/Bundle/_files/order_item_with_bundle_and_options_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Bundle/_files/order_items_simple_and_bundle.php b/dev/tests/integration/testsuite/Magento/Bundle/_files/order_items_simple_and_bundle.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Bundle/_files/order_items_simple_and_bundle_rollback.php b/dev/tests/integration/testsuite/Magento/Bundle/_files/order_items_simple_and_bundle_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Bundle/_files/order_with_bundle_shipped_separately.php b/dev/tests/integration/testsuite/Magento/Bundle/_files/order_with_bundle_shipped_separately.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Bundle/_files/order_with_bundle_shipped_separately_rollback.php b/dev/tests/integration/testsuite/Magento/Bundle/_files/order_with_bundle_shipped_separately_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Bundle/_files/product.php b/dev/tests/integration/testsuite/Magento/Bundle/_files/product.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Bundle/_files/product_in_category.php b/dev/tests/integration/testsuite/Magento/Bundle/_files/product_in_category.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Bundle/_files/product_in_category_rollback.php b/dev/tests/integration/testsuite/Magento/Bundle/_files/product_in_category_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Bundle/_files/product_rollback.php b/dev/tests/integration/testsuite/Magento/Bundle/_files/product_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Bundle/_files/product_with_multiple_options.php b/dev/tests/integration/testsuite/Magento/Bundle/_files/product_with_multiple_options.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Bundle/_files/product_with_multiple_options_rollback.php b/dev/tests/integration/testsuite/Magento/Bundle/_files/product_with_multiple_options_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Bundle/_files/product_with_tier_pricing.php b/dev/tests/integration/testsuite/Magento/Bundle/_files/product_with_tier_pricing.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/BundleImportExport/Model/BundleTest.php b/dev/tests/integration/testsuite/Magento/BundleImportExport/Model/BundleTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/BundleImportExport/Model/Export/RowCustomizerTest.php b/dev/tests/integration/testsuite/Magento/BundleImportExport/Model/Export/RowCustomizerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/BundleImportExport/Model/Import/Product/Type/BundleTest.php b/dev/tests/integration/testsuite/Magento/BundleImportExport/Model/Import/Product/Type/BundleTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/BundleImportExport/Model/Import/_files/import_bundle.csv b/dev/tests/integration/testsuite/Magento/BundleImportExport/Model/Import/_files/import_bundle.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/BundleImportExport/Model/Import/_files/import_bundle_multiple_store_views.csv b/dev/tests/integration/testsuite/Magento/BundleImportExport/Model/Import/_files/import_bundle_multiple_store_views.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Captcha/Block/Adminhtml/Captcha/DefaultCaptchaTest.php b/dev/tests/integration/testsuite/Magento/Captcha/Block/Adminhtml/Captcha/DefaultCaptchaTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Captcha/Block/Captcha/DefaultTest.php b/dev/tests/integration/testsuite/Magento/Captcha/Block/Captcha/DefaultTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Captcha/Observer/CaseBackendLoginActionWithInvalidCaptchaReturnsErrorTest.php b/dev/tests/integration/testsuite/Magento/Captcha/Observer/CaseBackendLoginActionWithInvalidCaptchaReturnsErrorTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Captcha/Observer/CaseCaptchaIsRequiredAfterFailedLoginAttemptsTest.php b/dev/tests/integration/testsuite/Magento/Captcha/Observer/CaseCaptchaIsRequiredAfterFailedLoginAttemptsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Captcha/Observer/CaseCheckUnsuccessfulMessageWhenCaptchaFailedTest.php b/dev/tests/integration/testsuite/Magento/Captcha/Observer/CaseCheckUnsuccessfulMessageWhenCaptchaFailedTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Captcha/Observer/CaseCheckUserForgotPasswordBackendWhenCaptchaFailedTest.php b/dev/tests/integration/testsuite/Magento/Captcha/Observer/CaseCheckUserForgotPasswordBackendWhenCaptchaFailedTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Captcha/_files/dummy_user.php b/dev/tests/integration/testsuite/Magento/Captcha/_files/dummy_user.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Block/Adminhtml/Category/Checkboxes/TreeTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Block/Adminhtml/Category/Checkboxes/TreeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Block/Adminhtml/Category/TreeTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Block/Adminhtml/Category/TreeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tab/FrontTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Block/Adminhtml/Product/Attribute/Edit/Tab/FrontTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Toolbar/AddTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Block/Adminhtml/Product/Attribute/Set/Toolbar/AddTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Block/Adminhtml/Product/Edit/JsTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Block/Adminhtml/Product/Edit/JsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/OptionTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/OptionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Type/SelectTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Block/Adminhtml/Product/Edit/Tab/Options/Type/SelectTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/CategoryTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/CategoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Gallery/ContentTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/Gallery/ContentTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/WeightTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Block/Adminhtml/Product/Helper/Form/WeightTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Block/Adminhtml/Product/Options/AjaxTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Block/Adminhtml/Product/Options/AjaxTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Block/Product/AbstractTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Block/Product/AbstractTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Block/Product/ListTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Block/Product/ListTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Block/Product/NewTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Block/Product/NewTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Block/Product/ProductList/CrosssellTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Block/Product/ProductList/CrosssellTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Block/Product/ProductList/RelatedTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Block/Product/ProductList/RelatedTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Block/Product/ProductList/ToolbarTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Block/Product/ProductList/ToolbarTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Block/Product/ProductList/UpsellTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Block/Product/ProductList/UpsellTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Block/Product/View/AdditionalTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Block/Product/View/AdditionalTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Block/Product/View/OptionsTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Block/Product/View/OptionsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Block/Product/ViewTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Block/Product/ViewTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Console/Command/ProductAttributesCleanUpTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Console/Command/ProductAttributesCleanUpTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Controller/Adminhtml/CategoryTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Controller/Adminhtml/CategoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Controller/Adminhtml/Product/Action/AttributeTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Controller/Adminhtml/Product/Action/AttributeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Controller/Adminhtml/Product/AttributeTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Controller/Adminhtml/Product/AttributeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Controller/Adminhtml/Product/ReviewTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Controller/Adminhtml/Product/ReviewTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Controller/Adminhtml/Product/Set/DeleteTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Controller/Adminhtml/Product/Set/DeleteTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Controller/Adminhtml/Product/Set/SaveTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Controller/Adminhtml/Product/Set/SaveTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Controller/Adminhtml/ProductTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Controller/Adminhtml/ProductTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Controller/CategoryTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Controller/CategoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Controller/IndexTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Controller/IndexTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Controller/Product/CompareTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Controller/Product/CompareTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Controller/Product/ViewTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Controller/Product/ViewTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Controller/ProductTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Controller/ProductTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Cron/DeleteOutdatedPriceValuesTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Cron/DeleteOutdatedPriceValuesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Helper/CategoryTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Helper/CategoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Helper/DataTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Helper/OutputTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Helper/OutputTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Helper/Product/CompareTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Helper/Product/CompareTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Helper/Product/CompositeTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Helper/Product/CompositeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Helper/Product/FlatTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Helper/Product/FlatTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Helper/Product/Stub/ProductControllerStub.php b/dev/tests/integration/testsuite/Magento/Catalog/Helper/Product/Stub/ProductControllerStub.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Helper/Product/ViewTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Helper/Product/ViewTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Helper/ProductTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Helper/ProductTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/AbstractModel/Stub.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/AbstractModel/Stub.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/AbstractTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/AbstractTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Category/DataProviderTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Category/DataProviderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Category/_files/category_without_image.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Category/_files/category_without_image.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Category/_files/service_category_create.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Category/_files/service_category_create.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Category/_files/service_category_create_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Category/_files/service_category_create_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/CategoryTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/CategoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/CategoryTreeTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/CategoryTreeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/ConfigTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/DesignTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/DesignTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Indexer/Category/ProductTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Indexer/Category/ProductTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Indexer/FlatTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Indexer/FlatTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Indexer/Product/CategoryTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Indexer/Product/CategoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Indexer/Product/Eav/Action/FullTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Indexer/Product/Eav/Action/FullTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Indexer/Product/Eav/Action/RowTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Indexer/Product/Eav/Action/RowTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Indexer/Product/Eav/Action/RowsTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Indexer/Product/Eav/Action/RowsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Indexer/Product/Flat/Action/FullTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Indexer/Product/Flat/Action/FullTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Indexer/Product/Flat/Action/RowTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Indexer/Product/Flat/Action/RowTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Indexer/Product/Flat/Action/RowsTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Indexer/Product/Flat/Action/RowsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Indexer/Product/Flat/ProcessorTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Indexer/Product/Flat/ProcessorTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Indexer/Product/Price/Action/FullTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Indexer/Product/Price/Action/FullTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Indexer/Product/Price/Action/RowTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Indexer/Product/Price/Action/RowTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Indexer/Product/Price/Action/RowsTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Indexer/Product/Price/Action/RowsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Indexer/Product/Price/SimpleWithOptionsTierPriceTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Indexer/Product/Price/SimpleWithOptionsTierPriceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Layer/CategoryTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Layer/CategoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Layer/Filter/AttributeTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Layer/Filter/AttributeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Layer/Filter/CategoryTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Layer/Filter/CategoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Layer/Filter/DataProvider/PriceTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Layer/Filter/DataProvider/PriceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Layer/Filter/DecimalTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Layer/Filter/DecimalTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Layer/Filter/Price/AlgorithmAdvancedTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Layer/Filter/Price/AlgorithmAdvancedTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Layer/Filter/Price/AlgorithmBaseTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Layer/Filter/Price/AlgorithmBaseTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Layer/Filter/Price/_files/_algorithm_base_data.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Layer/Filter/Price/_files/_algorithm_base_data.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Layer/Filter/Price/_files/products_advanced.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Layer/Filter/Price/_files/products_advanced.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Layer/Filter/Price/_files/products_advanced_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Layer/Filter/Price/_files/products_advanced_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Layer/Filter/Price/_files/products_base.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Layer/Filter/Price/_files/products_base.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Layer/Filter/Price/_files/products_base_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Layer/Filter/Price/_files/products_base_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Layer/Filter/PriceTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Layer/Filter/PriceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Layer/Filter/_files/attribute_weight_filterable.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Layer/Filter/_files/attribute_weight_filterable.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Layer/Filter/_files/attribute_with_option.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Layer/Filter/_files/attribute_with_option.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Layer/Filter/_files/attribute_with_option_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Layer/Filter/_files/attribute_with_option_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/ActionTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/ActionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Attribute/Backend/PriceTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Attribute/Backend/PriceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Attribute/Backend/SkuTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Attribute/Backend/SkuTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Attribute/Backend/TierpriceTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Attribute/Backend/TierpriceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Attribute/Source/CountryofmanufactureTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Attribute/Source/CountryofmanufactureTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Attribute/_files/create_attribute_service.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Attribute/_files/create_attribute_service.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Attribute/_files/create_attribute_service_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Attribute/_files/create_attribute_service_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Attribute/_files/select_attribute.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Attribute/_files/select_attribute.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Attribute/_files/select_attribute_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Attribute/_files/select_attribute_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Compare/ListCompareTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Compare/ListCompareTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/CopierTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/CopierTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Gallery/CreateHandlerTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Gallery/CreateHandlerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Gallery/ProcessorTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Gallery/ProcessorTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Gallery/ReadHandlerTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Gallery/ReadHandlerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/ImageTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/ImageTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Option/Type/DateTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Option/Type/DateTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Option/Type/File/ValidatorFileTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Option/Type/File/ValidatorFileTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Option/Type/File/ValidatorInfoTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Option/Type/File/ValidatorInfoTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Type/AbstractTypeTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Type/AbstractTypeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Type/PriceTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Type/PriceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Type/VirtualTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/Type/VirtualTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/TypeTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/TypeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/UrlTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/UrlTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/_files/service_product_create.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/_files/service_product_create.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/_files/service_product_create_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Product/_files/service_product_create_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/ProductExternalTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/ProductExternalTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/ProductGettersTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/ProductGettersTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/ProductPriceTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/ProductPriceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/ProductRepositoryTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/ProductRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/ProductTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/ProductTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/ResourceModel/Attribute/WebsiteAttributesSynchronizerTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/ResourceModel/Attribute/WebsiteAttributesSynchronizerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/ResourceModel/Eav/AttributeTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/ResourceModel/Eav/AttributeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/ResourceModel/Product/CollectionTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/ResourceModel/Product/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/ResourceModel/Product/Indexer/Eav/SourceTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/ResourceModel/Product/Indexer/Eav/SourceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/ResourceModel/Product/Link/Product/CollectionTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/ResourceModel/Product/Link/Product/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/ResourceModel/_files/product_simple.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/ResourceModel/_files/product_simple.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/ResourceModel/_files/url_rewrites.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/ResourceModel/_files/url_rewrites.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/ResourceModel/_files/website_attribute_sync.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/ResourceModel/_files/website_attribute_sync.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/ResourceModel/_files/website_attribute_sync_flag.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/ResourceModel/_files/website_attribute_sync_flag.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/ResourceModel/_files/website_attribute_sync_flag_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/ResourceModel/_files/website_attribute_sync_flag_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/ResourceModel/_files/website_attribute_sync_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/ResourceModel/_files/website_attribute_sync_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Model/Webapi/Product/Option/Type/File/ProcessorTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Model/Webapi/Product/Option/Type/File/ProcessorTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Observer/SwitchPriceAttributeScopeOnConfigChangeTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Observer/SwitchPriceAttributeScopeOnConfigChangeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Plugin/Model/AttributeSetRepository/RemoveProductsTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Plugin/Model/AttributeSetRepository/RemoveProductsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Pricing/Render/FinalPriceBox/RenderingBasedOnIsProductListFlagTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Pricing/Render/FinalPriceBox/RenderingBasedOnIsProductListFlagTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Pricing/Render/FinalPriceBoxTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Pricing/Render/FinalPriceBoxTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Ui/DataProvider/Product/Attributes/ListingTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Ui/DataProvider/Product/Attributes/ListingTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/CategoriesTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/CategoriesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/EavTest.php b/dev/tests/integration/testsuite/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/EavTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/_files/eav_expected_data_output.php b/dev/tests/integration/testsuite/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/_files/eav_expected_data_output.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/_files/eav_expected_meta_output.php b/dev/tests/integration/testsuite/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/_files/eav_expected_meta_output.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/_files/eav_expected_meta_output_w_default.php b/dev/tests/integration/testsuite/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/_files/eav_expected_meta_output_w_default.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/_files/expected_categories.php b/dev/tests/integration/testsuite/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/_files/expected_categories.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/_files/input_meta_for_categories.php b/dev/tests/integration/testsuite/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/_files/input_meta_for_categories.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/WidgetTest.php b/dev/tests/integration/testsuite/Magento/Catalog/WidgetTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/attribute_set_with_image_attribute.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/attribute_set_with_image_attribute.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/attribute_set_with_image_attribute_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/attribute_set_with_image_attribute_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/attribute_set_with_product.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/attribute_set_with_product.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/attribute_set_with_product_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/attribute_set_with_product_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/attribute_set_with_renamed_group.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/attribute_set_with_renamed_group.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/catalog_category_with_apostrophe.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/catalog_category_with_apostrophe.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/catalog_category_with_apostrophe_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/catalog_category_with_apostrophe_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/categories.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/categories.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/categories_no_products.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/categories_no_products.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/categories_no_products_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/categories_no_products_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/categories_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/categories_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/category.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/category.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/category_attribute.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/category_attribute.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/category_attribute_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/category_attribute_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/category_backend.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/category_backend.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/category_backend_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/category_backend_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/category_duplicates.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/category_duplicates.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/category_product.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/category_product.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/category_product_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/category_product_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/category_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/category_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/category_tree.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/category_tree.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/category_tree_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/category_tree_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/category_with_position.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/category_with_position.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/category_with_position_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/category_with_position_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/category_with_two_stores.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/category_with_two_stores.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/category_with_two_stores_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/category_with_two_stores_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/dropdown_attribute.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/dropdown_attribute.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/empty_attribute_group.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/empty_attribute_group.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/empty_attribute_group_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/empty_attribute_group_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/enable_price_index_schedule.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/enable_price_index_schedule.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/enable_price_index_schedule_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/enable_price_index_schedule_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/enable_reindex_schedule.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/enable_reindex_schedule.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/enable_reindex_schedule_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/enable_reindex_schedule_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/etc/extension_attributes.xml b/dev/tests/integration/testsuite/Magento/Catalog/_files/etc/extension_attributes.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/filterable_attributes.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/filterable_attributes.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/indexer_catalog_category.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/indexer_catalog_category.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/indexer_catalog_category_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/indexer_catalog_category_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/indexer_catalog_product_categories.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/indexer_catalog_product_categories.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/indexer_catalog_product_categories_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/indexer_catalog_product_categories_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/indexer_catalog_products.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/indexer_catalog_products.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/indexer_catalog_products_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/indexer_catalog_products_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/magento_empty.jpg b/dev/tests/integration/testsuite/Magento/Catalog/_files/magento_empty.jpg
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/magento_image.jpg b/dev/tests/integration/testsuite/Magento/Catalog/_files/magento_image.jpg
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/magento_small_image.jpg b/dev/tests/integration/testsuite/Magento/Catalog/_files/magento_small_image.jpg
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/magento_thumbnail.jpg b/dev/tests/integration/testsuite/Magento/Catalog/_files/magento_thumbnail.jpg
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/multiple_products.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/multiple_products.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/multiple_products_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/multiple_products_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/multiple_products_with_non_saleable_product.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/multiple_products_with_non_saleable_product.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/multiple_products_with_non_saleable_product_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/multiple_products_with_non_saleable_product_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/multiselect_attribute.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/multiselect_attribute.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/multiselect_attribute_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/multiselect_attribute_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/multiselect_attribute_with_incorrect_values.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/multiselect_attribute_with_incorrect_values.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/order_item_with_product_and_custom_options.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/order_item_with_product_and_custom_options.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/order_item_with_product_and_custom_options_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/order_item_with_product_and_custom_options_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/price_row_fixture.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/price_row_fixture.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/price_row_fixture_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/price_row_fixture_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/product_associated.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/product_associated.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/product_associated_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/product_associated_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/product_attribute.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/product_attribute.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/product_attribute_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/product_attribute_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/product_attribute_with_invalid_apply_to.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/product_attribute_with_invalid_apply_to.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/product_different_store_prices.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/product_different_store_prices.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/product_different_store_prices_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/product_different_store_prices_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/product_group_prices_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/product_group_prices_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/product_has_tier_price_show_as_low_as.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/product_has_tier_price_show_as_low_as.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/product_has_tier_price_show_as_low_as_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/product_has_tier_price_show_as_low_as_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/product_image.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/product_image.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/product_image_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/product_image_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_duplicated.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_duplicated.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_duplicated_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_duplicated_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_multistore.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_multistore.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_multistore_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_multistore_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_out_of_stock.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_out_of_stock.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_out_of_stock_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_out_of_stock_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_sku_with_slash.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_sku_with_slash.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_sku_with_slash_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_sku_with_slash_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_with_admin_store.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_with_admin_store.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_with_custom_options.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_with_custom_options.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_with_custom_options_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_with_custom_options_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_with_decimal_qty.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_with_decimal_qty.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_with_decimal_qty_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_with_decimal_qty_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_with_url_key.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_with_url_key.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_xss.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/product_simple_xss.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/product_special_price.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/product_special_price.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/product_special_price_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/product_special_price_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/product_text_attribute.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/product_text_attribute.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/product_virtual.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/product_virtual.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/product_virtual_in_stock.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/product_virtual_in_stock.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/product_virtual_in_stock_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/product_virtual_in_stock_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/product_virtual_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/product_virtual_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/product_with_dropdown_option.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/product_with_dropdown_option.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/product_with_dropdown_option_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/product_with_dropdown_option_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/product_with_image.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/product_with_image.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/product_with_image_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/product_with_image_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/product_with_options.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/product_with_options.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/product_with_options_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/product_with_options_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/product_with_two_websites.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/product_with_two_websites.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/product_with_two_websites_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/product_with_two_websites_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/product_without_options.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/product_without_options.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/product_without_options_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/product_without_options_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/products.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/products.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/products_crosssell.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/products_crosssell.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/products_crosssell_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/products_crosssell_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/products_for_search.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/products_for_search.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/products_for_search_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/products_for_search_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/products_in_category.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/products_in_category.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/products_in_category_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/products_in_category_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/products_new.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/products_new.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/products_new_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/products_new_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/products_related.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/products_related.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/products_related_multiple.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/products_related_multiple.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/products_related_multiple_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/products_related_multiple_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/products_related_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/products_related_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/products_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/products_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/products_upsell.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/products_upsell.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/products_upsell_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/products_upsell_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/products_with_multiselect_attribute.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/products_with_multiselect_attribute.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/products_with_multiselect_attribute_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/products_with_multiselect_attribute_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/products_with_unique_input_attribute.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/products_with_unique_input_attribute.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/products_with_websites_and_stores.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/products_with_websites_and_stores.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/products_with_websites_and_stores_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/products_with_websites_and_stores_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/quote_with_product_and_custom_options.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/quote_with_product_and_custom_options.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/quote_with_product_and_custom_options_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/quote_with_product_and_custom_options_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/row_fixture.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/row_fixture.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/row_fixture_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/row_fixture_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/second_product_simple.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/second_product_simple.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/second_product_simple_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/second_product_simple_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/second_website.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/second_website.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/second_website_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/second_website_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/text_attribute_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/text_attribute_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/unique_input_attribute.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/unique_input_attribute.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/url_rewrites.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/url_rewrites.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/url_rewrites_invalid.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/url_rewrites_invalid.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/url_rewrites_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/url_rewrites_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/validate_image.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/validate_image.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/validate_image_info.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/validate_image_info.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/validate_image_info_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/validate_image_info_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/validate_image_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/_files/validate_image_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/_files/watermark.jpg b/dev/tests/integration/testsuite/Magento/Catalog/_files/watermark.jpg
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/controllers/_files/attribute_system.php b/dev/tests/integration/testsuite/Magento/Catalog/controllers/_files/attribute_system.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/controllers/_files/attribute_system_popup.php b/dev/tests/integration/testsuite/Magento/Catalog/controllers/_files/attribute_system_popup.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/controllers/_files/attribute_system_with_applyto_data.php b/dev/tests/integration/testsuite/Magento/Catalog/controllers/_files/attribute_system_with_applyto_data.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/controllers/_files/attribute_user_defined.php b/dev/tests/integration/testsuite/Magento/Catalog/controllers/_files/attribute_user_defined.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/controllers/_files/product_image.png b/dev/tests/integration/testsuite/Magento/Catalog/controllers/_files/product_image.png
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/controllers/_files/products.php b/dev/tests/integration/testsuite/Magento/Catalog/controllers/_files/products.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Catalog/controllers/_files/products_rollback.php b/dev/tests/integration/testsuite/Magento/Catalog/controllers/_files/products_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/AbstractProductExportImportTestCase.php b/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/AbstractProductExportImportTestCase.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Export/ProductTest.php b/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Export/ProductTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/Product/Type/AbstractTest.php b/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/Product/Type/AbstractTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/ProductTest.php b/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/ProductTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/custom_attributes.php b/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/custom_attributes.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/custom_attributes_rollback.php b/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/custom_attributes_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/import_media.csv b/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/import_media.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/import_media_existing_images.csv b/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/import_media_existing_images.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/import_media_two_stores.csv b/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/import_media_two_stores.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/import_new_categories_custom_separator.csv b/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/import_new_categories_custom_separator.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/import_new_categories_default_separator.csv b/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/import_new_categories_default_separator.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/import_with_filesystem_images.php b/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/import_with_filesystem_images.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/import_with_filesystem_images_rollback.php b/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/import_with_filesystem_images_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/magento_additional_image_error.jpg b/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/magento_additional_image_error.jpg
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/magento_additional_image_one.jpg b/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/magento_additional_image_one.jpg
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/magento_additional_image_two.jpg b/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/magento_additional_image_two.jpg
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/media_import_image.php b/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/media_import_image.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/media_import_image_rollback.php b/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/media_import_image_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/product_to_import_invalid_weight.csv b/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/product_to_import_invalid_weight.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/product_with_custom_options.csv b/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/product_with_custom_options.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/product_with_custom_options_and_multiple_store_views.csv b/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/product_with_custom_options_and_multiple_store_views.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/product_with_custom_options_new.csv b/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/product_with_custom_options_new.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_duplicate_category.csv b/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_duplicate_category.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_multiple_stores.csv b/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_multiple_stores.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_check_duplicated_names.csv b/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_check_duplicated_names.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_check_duplicated_url_keys.csv b/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_check_duplicated_url_keys.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_check_valid_url_keys.csv b/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_check_valid_url_keys.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_check_valid_url_keys_multiple_stores.csv b/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_check_valid_url_keys_multiple_stores.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_import.csv b/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_import.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_import_invalid_attribute_set.csv b/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_import_invalid_attribute_set.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_import_with_additional_attributes.csv b/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_import_with_additional_attributes.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_import_with_changed_sku_case.csv b/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_import_with_changed_sku_case.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_import_with_datetime.csv b/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_import_with_datetime.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_import_with_multiple_store.csv b/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_import_with_multiple_store.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_import_with_new_attribute_set.csv b/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_import_with_new_attribute_set.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_import_with_product_links.csv b/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_import_with_product_links.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_import_with_qty.csv b/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_import_with_qty.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_import_with_two_stores.csv b/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_import_with_two_stores.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_import_with_use_config_settings.csv b/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_import_with_use_config_settings.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_import_with_valid_url_keys.csv b/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_import_with_valid_url_keys.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_import_without_url_keys.csv b/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_to_import_without_url_keys.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_with_invalid_multiselect_values.csv b/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/products_with_invalid_multiselect_values.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/ProductTest.php b/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/ProductTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/_files/product_export_data.php b/dev/tests/integration/testsuite/Magento/CatalogImportExport/_files/product_export_data.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/_files/product_export_data_rollback.php b/dev/tests/integration/testsuite/Magento/CatalogImportExport/_files/product_export_data_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/_files/product_export_data_special_chars.php b/dev/tests/integration/testsuite/Magento/CatalogImportExport/_files/product_export_data_special_chars.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/_files/product_export_data_special_chars_rollback.php b/dev/tests/integration/testsuite/Magento/CatalogImportExport/_files/product_export_data_special_chars_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/_files/product_export_with_categories.php b/dev/tests/integration/testsuite/Magento/CatalogImportExport/_files/product_export_with_categories.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/_files/product_export_with_images.php b/dev/tests/integration/testsuite/Magento/CatalogImportExport/_files/product_export_with_images.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/_files/product_export_with_images_rollback.php b/dev/tests/integration/testsuite/Magento/CatalogImportExport/_files/product_export_with_images_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/_files/product_export_with_product_links_data.php b/dev/tests/integration/testsuite/Magento/CatalogImportExport/_files/product_export_with_product_links_data.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogImportExport/_files/product_export_with_product_links_data_rollback.php b/dev/tests/integration/testsuite/Magento/CatalogImportExport/_files/product_export_with_product_links_data_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogInventory/Api/StockItemSaveTest.php b/dev/tests/integration/testsuite/Magento/CatalogInventory/Api/StockItemSaveTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogInventory/Block/Adminhtml/Form/Field/CustomergroupTest.php b/dev/tests/integration/testsuite/Magento/CatalogInventory/Block/Adminhtml/Form/Field/CustomergroupTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogInventory/Model/Indexer/Stock/Action/FullTest.php b/dev/tests/integration/testsuite/Magento/CatalogInventory/Model/Indexer/Stock/Action/FullTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogInventory/Model/Indexer/Stock/Action/RowTest.php b/dev/tests/integration/testsuite/Magento/CatalogInventory/Model/Indexer/Stock/Action/RowTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogInventory/Model/Indexer/Stock/Action/RowsTest.php b/dev/tests/integration/testsuite/Magento/CatalogInventory/Model/Indexer/Stock/Action/RowsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogInventory/Model/Quote/Item/QuantityValidatorTest.php b/dev/tests/integration/testsuite/Magento/CatalogInventory/Model/Quote/Item/QuantityValidatorTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogInventory/Model/ResourceModel/Indexer/Stock/DefaultStockTest.php b/dev/tests/integration/testsuite/Magento/CatalogInventory/Model/ResourceModel/Indexer/Stock/DefaultStockTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogInventory/Model/Stock/ItemTest.php b/dev/tests/integration/testsuite/Magento/CatalogInventory/Model/Stock/ItemTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogInventory/Model/StockItemSave/ByStockItemRepositoryTest.php b/dev/tests/integration/testsuite/Magento/CatalogInventory/Model/StockItemSave/ByStockItemRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogInventory/Model/StockItemSave/OnProductCreate/ByProductModel/ByQuantityAndStockStatusTest.php b/dev/tests/integration/testsuite/Magento/CatalogInventory/Model/StockItemSave/OnProductCreate/ByProductModel/ByQuantityAndStockStatusTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogInventory/Model/StockItemSave/OnProductCreate/ByProductModel/ByStockDataTest.php b/dev/tests/integration/testsuite/Magento/CatalogInventory/Model/StockItemSave/OnProductCreate/ByProductModel/ByStockDataTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogInventory/Model/StockItemSave/OnProductCreate/ByProductModel/ByStockItemTest.php b/dev/tests/integration/testsuite/Magento/CatalogInventory/Model/StockItemSave/OnProductCreate/ByProductModel/ByStockItemTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogInventory/Model/StockItemSave/OnProductCreate/ByProductRepository/ByQuantityAndStockStatusTest.php b/dev/tests/integration/testsuite/Magento/CatalogInventory/Model/StockItemSave/OnProductCreate/ByProductRepository/ByQuantityAndStockStatusTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogInventory/Model/StockItemSave/OnProductCreate/ByProductRepository/ByStockDataTest.php b/dev/tests/integration/testsuite/Magento/CatalogInventory/Model/StockItemSave/OnProductCreate/ByProductRepository/ByStockDataTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogInventory/Model/StockItemSave/OnProductCreate/ByProductRepository/ByStockItemTest.php b/dev/tests/integration/testsuite/Magento/CatalogInventory/Model/StockItemSave/OnProductCreate/ByProductRepository/ByStockItemTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogInventory/Model/StockItemSave/OnProductUpdate/ByProductModel/ByQuantityAndStockStatusTest.php b/dev/tests/integration/testsuite/Magento/CatalogInventory/Model/StockItemSave/OnProductUpdate/ByProductModel/ByQuantityAndStockStatusTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogInventory/Model/StockItemSave/OnProductUpdate/ByProductModel/ByStockDataTest.php b/dev/tests/integration/testsuite/Magento/CatalogInventory/Model/StockItemSave/OnProductUpdate/ByProductModel/ByStockDataTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogInventory/Model/StockItemSave/OnProductUpdate/ByProductModel/ByStockItemTest.php b/dev/tests/integration/testsuite/Magento/CatalogInventory/Model/StockItemSave/OnProductUpdate/ByProductModel/ByStockItemTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogInventory/Model/StockItemSave/OnProductUpdate/ByProductRepository/ByQuantityAndStockStatusTest.php b/dev/tests/integration/testsuite/Magento/CatalogInventory/Model/StockItemSave/OnProductUpdate/ByProductRepository/ByQuantityAndStockStatusTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogInventory/Model/StockItemSave/OnProductUpdate/ByProductRepository/ByStockDataTest.php b/dev/tests/integration/testsuite/Magento/CatalogInventory/Model/StockItemSave/OnProductUpdate/ByProductRepository/ByStockDataTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogInventory/Model/StockItemSave/OnProductUpdate/ByProductRepository/ByStockItemTest.php b/dev/tests/integration/testsuite/Magento/CatalogInventory/Model/StockItemSave/OnProductUpdate/ByProductRepository/ByStockItemTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogInventory/Model/StockItemSave/StockItemDataChecker.php b/dev/tests/integration/testsuite/Magento/CatalogInventory/Model/StockItemSave/StockItemDataChecker.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogInventory/Model/System/Config/Backend/MinsaleqtyTest.php b/dev/tests/integration/testsuite/Magento/CatalogInventory/Model/System/Config/Backend/MinsaleqtyTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogInventory/Observer/AddStockItemsObserverTest.php b/dev/tests/integration/testsuite/Magento/CatalogInventory/Observer/AddStockItemsObserverTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogRule/Model/Indexer/BatchIndexTest.php b/dev/tests/integration/testsuite/Magento/CatalogRule/Model/Indexer/BatchIndexTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogRule/Model/Indexer/IndexerBuilderTest.php b/dev/tests/integration/testsuite/Magento/CatalogRule/Model/Indexer/IndexerBuilderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogRule/Model/Indexer/ProductRuleTest.php b/dev/tests/integration/testsuite/Magento/CatalogRule/Model/Indexer/ProductRuleTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogRule/Model/Indexer/RuleProductTest.php b/dev/tests/integration/testsuite/Magento/CatalogRule/Model/Indexer/RuleProductTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogRule/Model/ResourceModel/Rule/CollectionTest.php b/dev/tests/integration/testsuite/Magento/CatalogRule/Model/ResourceModel/Rule/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogRule/Model/RuleTest.php b/dev/tests/integration/testsuite/Magento/CatalogRule/Model/RuleTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogRule/_files/attribute.php b/dev/tests/integration/testsuite/Magento/CatalogRule/_files/attribute.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogRule/_files/attribute_rollback.php b/dev/tests/integration/testsuite/Magento/CatalogRule/_files/attribute_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogRule/_files/catalog_rule_10_off_not_logged.php b/dev/tests/integration/testsuite/Magento/CatalogRule/_files/catalog_rule_10_off_not_logged.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogRule/_files/catalog_rule_10_off_not_logged_rollback.php b/dev/tests/integration/testsuite/Magento/CatalogRule/_files/catalog_rule_10_off_not_logged_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogRule/_files/rule_by_attribute.php b/dev/tests/integration/testsuite/Magento/CatalogRule/_files/rule_by_attribute.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogRule/_files/rule_by_attribute_rollback.php b/dev/tests/integration/testsuite/Magento/CatalogRule/_files/rule_by_attribute_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogRule/_files/rule_by_category_ids.php b/dev/tests/integration/testsuite/Magento/CatalogRule/_files/rule_by_category_ids.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogRule/_files/two_rules.php b/dev/tests/integration/testsuite/Magento/CatalogRule/_files/two_rules.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogRule/_files/two_rules_rollback.php b/dev/tests/integration/testsuite/Magento/CatalogRule/_files/two_rules_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogSearch/Block/Advanced/ResultTest.php b/dev/tests/integration/testsuite/Magento/CatalogSearch/Block/Advanced/ResultTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogSearch/Block/ResultTest.php b/dev/tests/integration/testsuite/Magento/CatalogSearch/Block/ResultTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogSearch/Block/TermTest.php b/dev/tests/integration/testsuite/Magento/CatalogSearch/Block/TermTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogSearch/Controller/AjaxTest.php b/dev/tests/integration/testsuite/Magento/CatalogSearch/Controller/AjaxTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogSearch/Controller/ResultTest.php b/dev/tests/integration/testsuite/Magento/CatalogSearch/Controller/ResultTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogSearch/Helper/DataTest.php b/dev/tests/integration/testsuite/Magento/CatalogSearch/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogSearch/Model/Adapter/Mysql/BaseSelectStrategy/BaseSelectAttributesSearchStrategyTest.php b/dev/tests/integration/testsuite/Magento/CatalogSearch/Model/Adapter/Mysql/BaseSelectStrategy/BaseSelectAttributesSearchStrategyTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogSearch/Model/Adapter/Mysql/BaseSelectStrategy/BaseSelectFullTextSearchStrategyTest.php b/dev/tests/integration/testsuite/Magento/CatalogSearch/Model/Adapter/Mysql/BaseSelectStrategy/BaseSelectFullTextSearchStrategyTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogSearch/Model/Indexer/Fulltext/Action/DataProviderTest.php b/dev/tests/integration/testsuite/Magento/CatalogSearch/Model/Indexer/Fulltext/Action/DataProviderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogSearch/Model/Indexer/Fulltext/Action/FullTest.php b/dev/tests/integration/testsuite/Magento/CatalogSearch/Model/Indexer/Fulltext/Action/FullTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogSearch/Model/Indexer/FulltextTest.php b/dev/tests/integration/testsuite/Magento/CatalogSearch/Model/Indexer/FulltextTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogSearch/Model/Indexer/IndexSwitcherMock.php b/dev/tests/integration/testsuite/Magento/CatalogSearch/Model/Indexer/IndexSwitcherMock.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogSearch/Model/Indexer/SwitcherUsedInFulltextTest.php b/dev/tests/integration/testsuite/Magento/CatalogSearch/Model/Indexer/SwitcherUsedInFulltextTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogSearch/Model/Layer/Filter/AttributeTest.php b/dev/tests/integration/testsuite/Magento/CatalogSearch/Model/Layer/Filter/AttributeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogSearch/Model/Layer/Filter/CategoryTest.php b/dev/tests/integration/testsuite/Magento/CatalogSearch/Model/Layer/Filter/CategoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogSearch/Model/Layer/Filter/DecimalTest.php b/dev/tests/integration/testsuite/Magento/CatalogSearch/Model/Layer/Filter/DecimalTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogSearch/Model/Layer/Filter/PriceTest.php b/dev/tests/integration/testsuite/Magento/CatalogSearch/Model/Layer/Filter/PriceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogSearch/Model/ResourceModel/Advanced/CollectionTest.php b/dev/tests/integration/testsuite/Magento/CatalogSearch/Model/ResourceModel/Advanced/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogSearch/Model/ResourceModel/Fulltext/CollectionTest.php b/dev/tests/integration/testsuite/Magento/CatalogSearch/Model/ResourceModel/Fulltext/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogSearch/Model/Search/FilterMapper/CustomAttributeFilterTest.php b/dev/tests/integration/testsuite/Magento/CatalogSearch/Model/Search/FilterMapper/CustomAttributeFilterTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogSearch/Model/Search/FilterMapper/StockStatusFilterTest.php b/dev/tests/integration/testsuite/Magento/CatalogSearch/Model/Search/FilterMapper/StockStatusFilterTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogSearch/Model/Search/FilterMapper/VisibilityFilterTest.php b/dev/tests/integration/testsuite/Magento/CatalogSearch/Model/Search/FilterMapper/VisibilityFilterTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogSearch/Model/Search/RequestGeneratorTest.php b/dev/tests/integration/testsuite/Magento/CatalogSearch/Model/Search/RequestGeneratorTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogSearch/_files/full_reindex.php b/dev/tests/integration/testsuite/Magento/CatalogSearch/_files/full_reindex.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogSearch/_files/indexer_fulltext.php b/dev/tests/integration/testsuite/Magento/CatalogSearch/_files/indexer_fulltext.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogSearch/_files/indexer_fulltext_rollback.php b/dev/tests/integration/testsuite/Magento/CatalogSearch/_files/indexer_fulltext_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogSearch/_files/product_configurable_not_available.php b/dev/tests/integration/testsuite/Magento/CatalogSearch/_files/product_configurable_not_available.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogSearch/_files/product_configurable_not_available_rollback.php b/dev/tests/integration/testsuite/Magento/CatalogSearch/_files/product_configurable_not_available_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogSearch/_files/product_configurable_with_single_child.php b/dev/tests/integration/testsuite/Magento/CatalogSearch/_files/product_configurable_with_single_child.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogSearch/_files/product_configurable_with_single_child_rollback.php b/dev/tests/integration/testsuite/Magento/CatalogSearch/_files/product_configurable_with_single_child_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogSearch/_files/product_for_search.php b/dev/tests/integration/testsuite/Magento/CatalogSearch/_files/product_for_search.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogSearch/_files/product_for_search_rollback.php b/dev/tests/integration/testsuite/Magento/CatalogSearch/_files/product_for_search_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogSearch/_files/products_for_index.php b/dev/tests/integration/testsuite/Magento/CatalogSearch/_files/products_for_index.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogSearch/_files/products_for_index_rollback.php b/dev/tests/integration/testsuite/Magento/CatalogSearch/_files/products_for_index_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogSearch/_files/query.php b/dev/tests/integration/testsuite/Magento/CatalogSearch/_files/query.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogSearch/_files/query_redirect.php b/dev/tests/integration/testsuite/Magento/CatalogSearch/_files/query_redirect.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogSearch/_files/search_attributes.php b/dev/tests/integration/testsuite/Magento/CatalogSearch/_files/search_attributes.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogSearch/_files/search_attributes_rollback.php b/dev/tests/integration/testsuite/Magento/CatalogSearch/_files/search_attributes_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogSearch/_files/searchable_attribute.php b/dev/tests/integration/testsuite/Magento/CatalogSearch/_files/searchable_attribute.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogUrlRewrite/Model/CategoryUrlRewriteGeneratorTest.php b/dev/tests/integration/testsuite/Magento/CatalogUrlRewrite/Model/CategoryUrlRewriteGeneratorTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogUrlRewrite/Model/ProductUrlRewriteGeneratorTest.php b/dev/tests/integration/testsuite/Magento/CatalogUrlRewrite/Model/ProductUrlRewriteGeneratorTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogUrlRewrite/Observer/CategoryProcessUrlRewriteSavingObserverTest.php b/dev/tests/integration/testsuite/Magento/CatalogUrlRewrite/Observer/CategoryProcessUrlRewriteSavingObserverTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogUrlRewrite/Plugin/Catalog/Block/Adminhtml/Category/Tab/AttributesTest.php b/dev/tests/integration/testsuite/Magento/CatalogUrlRewrite/Plugin/Catalog/Block/Adminhtml/Category/Tab/AttributesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogUrlRewrite/_files/categories.php b/dev/tests/integration/testsuite/Magento/CatalogUrlRewrite/_files/categories.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogUrlRewrite/_files/categories_rollback.php b/dev/tests/integration/testsuite/Magento/CatalogUrlRewrite/_files/categories_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogUrlRewrite/_files/categories_with_product_ids.php b/dev/tests/integration/testsuite/Magento/CatalogUrlRewrite/_files/categories_with_product_ids.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogUrlRewrite/_files/categories_with_products.php b/dev/tests/integration/testsuite/Magento/CatalogUrlRewrite/_files/categories_with_products.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogUrlRewrite/_files/categories_with_products_rollback.php b/dev/tests/integration/testsuite/Magento/CatalogUrlRewrite/_files/categories_with_products_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogUrlRewrite/_files/product_simple.php b/dev/tests/integration/testsuite/Magento/CatalogUrlRewrite/_files/product_simple.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogUrlRewrite/_files/product_with_category.php b/dev/tests/integration/testsuite/Magento/CatalogUrlRewrite/_files/product_with_category.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogUrlRewrite/_files/product_with_category_rollback.php b/dev/tests/integration/testsuite/Magento/CatalogUrlRewrite/_files/product_with_category_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogWidget/Block/Product/ProductListTest.php b/dev/tests/integration/testsuite/Magento/CatalogWidget/Block/Product/ProductListTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogWidget/Block/Product/Widget/ConditionsTest.php b/dev/tests/integration/testsuite/Magento/CatalogWidget/Block/Product/Widget/ConditionsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CatalogWidget/Model/Rule/Condition/ProductTest.php b/dev/tests/integration/testsuite/Magento/CatalogWidget/Model/Rule/Condition/ProductTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/Api/PaymentInformationManagementTest.php b/dev/tests/integration/testsuite/Magento/Checkout/Api/PaymentInformationManagementTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/Block/Cart/AbstractCartTest.php b/dev/tests/integration/testsuite/Magento/Checkout/Block/Cart/AbstractCartTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/Block/Cart/GridTest.php b/dev/tests/integration/testsuite/Magento/Checkout/Block/Cart/GridTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/Block/CartTest.php b/dev/tests/integration/testsuite/Magento/Checkout/Block/CartTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/Controller/Cart/Index/CouponPostTest.php b/dev/tests/integration/testsuite/Magento/Checkout/Controller/Cart/Index/CouponPostTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/Controller/CartTest.php b/dev/tests/integration/testsuite/Magento/Checkout/Controller/CartTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/Model/CartTest.php b/dev/tests/integration/testsuite/Magento/Checkout/Model/CartTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/Model/SessionTest.php b/dev/tests/integration/testsuite/Magento/Checkout/Model/SessionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/ValidatorFileMock.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/ValidatorFileMock.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/active_quote.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/active_quote.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/active_quote_rollback.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/active_quote_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/cart.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/cart.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/customers.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/customers.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/discount_10percent.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/discount_10percent.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/discount_10percent_generalusers.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/discount_10percent_generalusers.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/discount_10percent_generalusers_rollback.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/discount_10percent_generalusers_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/discount_10percent_rollback.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/discount_10percent_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/order_items.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/order_items.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/orders.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/orders.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/product_bundle.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/product_bundle.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/product_with_custom_option.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/product_with_custom_option.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/products.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/products.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/quote.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/quote.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_address.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_address.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_address_rollback.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_address_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_address_saved.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_address_saved.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_address_saved_rollback.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_address_saved_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_bundle_and_options.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_bundle_and_options.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_bundle_and_options_rollback.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_bundle_and_options_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_bundle_product.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_bundle_product.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_check_payment.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_check_payment.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_check_payment_rollback.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_check_payment_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_coupon_saved.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_coupon_saved.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_coupon_saved_rollback.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_coupon_saved_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_downloadable_product.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_downloadable_product.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_items_and_custom_options_saved.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_items_and_custom_options_saved.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_items_and_custom_options_saved_rollback.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_items_and_custom_options_saved_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_items_saved.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_items_saved.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_items_saved_rollback.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_items_saved_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_payment_saved.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_payment_saved.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_payment_saved_rollback.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_payment_saved_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_product_and_payment.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_product_and_payment.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_shipping_method.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_shipping_method.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_shipping_method_and_items_categories.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_shipping_method_and_items_categories.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_shipping_method_rollback.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_shipping_method_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_simple_product.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_simple_product.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_simple_product_and_custom_option.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_simple_product_and_custom_option.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_simple_product_and_image.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_simple_product_and_image.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_simple_product_and_image_rollback.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_simple_product_and_image_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_simple_product_saved.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_simple_product_saved.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_simple_product_saved_rollback.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_simple_product_saved_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_virtual_product_and_address.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_virtual_product_and_address.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_virtual_product_and_address_rollback.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_virtual_product_and_address_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_virtual_product_saved.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_virtual_product_saved.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_virtual_product_saved_rollback.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/quote_with_virtual_product_saved_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/rollback_quote.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/rollback_quote.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/set_product_min_in_cart.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/set_product_min_in_cart.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Checkout/_files/simple_product.php b/dev/tests/integration/testsuite/Magento/Checkout/_files/simple_product.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CheckoutAgreements/Model/Checkout/Plugin/GuestValidationTest.php b/dev/tests/integration/testsuite/Magento/CheckoutAgreements/Model/Checkout/Plugin/GuestValidationTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CheckoutAgreements/_files/agreement_active_with_html_content.php b/dev/tests/integration/testsuite/Magento/CheckoutAgreements/_files/agreement_active_with_html_content.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CheckoutAgreements/_files/agreement_active_with_html_content_rollback.php b/dev/tests/integration/testsuite/Magento/CheckoutAgreements/_files/agreement_active_with_html_content_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CheckoutAgreements/_files/agreement_inactive_with_text_content.php b/dev/tests/integration/testsuite/Magento/CheckoutAgreements/_files/agreement_inactive_with_text_content.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CheckoutAgreements/_files/agreement_inactive_with_text_content_rollback.php b/dev/tests/integration/testsuite/Magento/CheckoutAgreements/_files/agreement_inactive_with_text_content_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CheckoutAgreements/_files/multi_agreements_active_with_text.php b/dev/tests/integration/testsuite/Magento/CheckoutAgreements/_files/multi_agreements_active_with_text.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CheckoutAgreements/_files/multi_agreements_active_with_text_rollback.php b/dev/tests/integration/testsuite/Magento/CheckoutAgreements/_files/multi_agreements_active_with_text_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Cms/Block/BlockTest.php b/dev/tests/integration/testsuite/Magento/Cms/Block/BlockTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Cms/Block/PageTest.php b/dev/tests/integration/testsuite/Magento/Cms/Block/PageTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Cms/Block/Widget/BlockTest.php b/dev/tests/integration/testsuite/Magento/Cms/Block/Widget/BlockTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/IndexTest.php b/dev/tests/integration/testsuite/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/IndexTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/OnInsertTest.php b/dev/tests/integration/testsuite/Magento/Cms/Controller/Adminhtml/Wysiwyg/Images/OnInsertTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Cms/Controller/Noroute/IndexTest.php b/dev/tests/integration/testsuite/Magento/Cms/Controller/Noroute/IndexTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Cms/Controller/PageTest.php b/dev/tests/integration/testsuite/Magento/Cms/Controller/PageTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Cms/Controller/RouterTest.php b/dev/tests/integration/testsuite/Magento/Cms/Controller/RouterTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Cms/Helper/PageTest.php b/dev/tests/integration/testsuite/Magento/Cms/Helper/PageTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Cms/Helper/Wysiwyg/ImagesTest.php b/dev/tests/integration/testsuite/Magento/Cms/Helper/Wysiwyg/ImagesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Cms/Model/BlockTest.php b/dev/tests/integration/testsuite/Magento/Cms/Model/BlockTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Cms/Model/PageTest.php b/dev/tests/integration/testsuite/Magento/Cms/Model/PageTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Cms/Model/Wysiwyg/ConfigTest.php b/dev/tests/integration/testsuite/Magento/Cms/Model/Wysiwyg/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Cms/Model/Wysiwyg/Images/StorageTest.php b/dev/tests/integration/testsuite/Magento/Cms/Model/Wysiwyg/Images/StorageTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Cms/Setup/ContentConverterTest.php b/dev/tests/integration/testsuite/Magento/Cms/Setup/ContentConverterTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Cms/_files/block.php b/dev/tests/integration/testsuite/Magento/Cms/_files/block.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Cms/_files/noroute.php b/dev/tests/integration/testsuite/Magento/Cms/_files/noroute.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Cms/_files/pages.php b/dev/tests/integration/testsuite/Magento/Cms/_files/pages.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Config/App/Config/Type/SystemTest.php b/dev/tests/integration/testsuite/Magento/Config/App/Config/Type/SystemTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Config/Block/System/Config/FieldArray.php b/dev/tests/integration/testsuite/Magento/Config/Block/System/Config/FieldArray.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Config/Block/System/Config/FormStub.php b/dev/tests/integration/testsuite/Magento/Config/Block/System/Config/FormStub.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Config/Block/System/Config/FormTest.php b/dev/tests/integration/testsuite/Magento/Config/Block/System/Config/FormTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Config/Block/System/Config/_files/test_config.xml b/dev/tests/integration/testsuite/Magento/Config/Block/System/Config/_files/test_config.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Config/Block/System/Config/_files/test_system.xml b/dev/tests/integration/testsuite/Magento/Config/Block/System/Config/_files/test_system.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Config/Console/Command/ConfigSetCommandTest.php b/dev/tests/integration/testsuite/Magento/Config/Console/Command/ConfigSetCommandTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Config/Console/Command/ConfigShowCommandTest.php b/dev/tests/integration/testsuite/Magento/Config/Console/Command/ConfigShowCommandTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Config/Controller/Adminhtml/System/ConfigTest.php b/dev/tests/integration/testsuite/Magento/Config/Controller/Adminhtml/System/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Config/Model/Config/Backend/Admin/RobotsTest.php b/dev/tests/integration/testsuite/Magento/Config/Model/Config/Backend/Admin/RobotsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Config/Model/Config/Backend/BaseurlTest.php b/dev/tests/integration/testsuite/Magento/Config/Model/Config/Backend/BaseurlTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Config/Model/Config/Backend/EncryptedTest.php b/dev/tests/integration/testsuite/Magento/Config/Model/Config/Backend/EncryptedTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Config/Model/Config/Backend/FileTest.php b/dev/tests/integration/testsuite/Magento/Config/Model/Config/Backend/FileTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Config/Model/Config/Backend/Image/AdapterTest.php b/dev/tests/integration/testsuite/Magento/Config/Model/Config/Backend/Image/AdapterTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Config/Model/Config/Processor/EnvironmentPlaceholderTest.php b/dev/tests/integration/testsuite/Magento/Config/Model/Config/Processor/EnvironmentPlaceholderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Config/Model/ConfigTest.php b/dev/tests/integration/testsuite/Magento/Config/Model/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Config/Model/ResourceModel/ConfigTest.php b/dev/tests/integration/testsuite/Magento/Config/Model/ResourceModel/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Config/Model/_files/config_groups.php b/dev/tests/integration/testsuite/Magento/Config/Model/_files/config_groups.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Config/Model/_files/config_section.php b/dev/tests/integration/testsuite/Magento/Config/Model/_files/config_section.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Config/Model/_files/no_robots_txt.php b/dev/tests/integration/testsuite/Magento/Config/Model/_files/no_robots_txt.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Config/Model/_files/robots.txt b/dev/tests/integration/testsuite/Magento/Config/Model/_files/robots.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Config/Model/_files/robots_txt.php b/dev/tests/integration/testsuite/Magento/Config/Model/_files/robots_txt.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Config/_files/config.php b/dev/tests/integration/testsuite/Magento/Config/_files/config.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Config/_files/config_data.php b/dev/tests/integration/testsuite/Magento/Config/_files/config_data.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Config/_files/env.php b/dev/tests/integration/testsuite/Magento/Config/_files/env.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ConfigurableImportExport/Model/ConfigurableTest.php b/dev/tests/integration/testsuite/Magento/ConfigurableImportExport/Model/ConfigurableTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ConfigurableImportExport/Model/Export/RowCustomizerTest.php b/dev/tests/integration/testsuite/Magento/ConfigurableImportExport/Model/Export/RowCustomizerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ConfigurableImportExport/Model/Import/Product/Type/ConfigurableTest.php b/dev/tests/integration/testsuite/Magento/ConfigurableImportExport/Model/Import/Product/Type/ConfigurableTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ConfigurableImportExport/Model/Import/_files/import_configurable.csv b/dev/tests/integration/testsuite/Magento/ConfigurableImportExport/Model/Import/_files/import_configurable.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ConfigurableImportExport/Model/Import/_files/import_configurable_12345.csv b/dev/tests/integration/testsuite/Magento/ConfigurableImportExport/Model/Import/_files/import_configurable_12345.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ConfigurableProduct/Block/Adminhtml/Product/Edit/Tab/Variations/Config/MatrixTest.php b/dev/tests/integration/testsuite/Magento/ConfigurableProduct/Block/Adminhtml/Product/Edit/Tab/Variations/Config/MatrixTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ConfigurableProduct/Block/Product/View/Type/ConfigurableTest.php b/dev/tests/integration/testsuite/Magento/ConfigurableProduct/Block/Product/View/Type/ConfigurableTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ConfigurableProduct/Controller/Adminhtml/ProductTest.php b/dev/tests/integration/testsuite/Magento/ConfigurableProduct/Controller/Adminhtml/ProductTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ConfigurableProduct/Controller/CartTest.php b/dev/tests/integration/testsuite/Magento/ConfigurableProduct/Controller/CartTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ConfigurableProduct/Model/Category/ProductIndexerTest.php b/dev/tests/integration/testsuite/Magento/ConfigurableProduct/Model/Category/ProductIndexerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ConfigurableProduct/Model/OptionRepositoryTest.php b/dev/tests/integration/testsuite/Magento/ConfigurableProduct/Model/OptionRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ConfigurableProduct/Model/Product/Type/Configurable/AttributeTest.php b/dev/tests/integration/testsuite/Magento/ConfigurableProduct/Model/Product/Type/Configurable/AttributeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ConfigurableProduct/Model/Product/Type/Configurable/PriceTest.php b/dev/tests/integration/testsuite/Magento/ConfigurableProduct/Model/Product/Type/Configurable/PriceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ConfigurableProduct/Model/Product/Type/ConfigurableTest.php b/dev/tests/integration/testsuite/Magento/ConfigurableProduct/Model/Product/Type/ConfigurableTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ConfigurableProduct/Model/Product/VariationHandlerTest.php b/dev/tests/integration/testsuite/Magento/ConfigurableProduct/Model/Product/VariationHandlerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ConfigurableProduct/Model/ResourceModel/Product/Indexer/Price/ConfigurableTest.php b/dev/tests/integration/testsuite/Magento/ConfigurableProduct/Model/ResourceModel/Product/Indexer/Price/ConfigurableTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ConfigurableProduct/Model/ResourceModel/Product/Indexer/Stock/ConfigurableTest.php b/dev/tests/integration/testsuite/Magento/ConfigurableProduct/Model/ResourceModel/Product/Indexer/Stock/ConfigurableTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ConfigurableProduct/Pricing/Price/LowestPriceOptionProviderTest.php b/dev/tests/integration/testsuite/Magento/ConfigurableProduct/Pricing/Price/LowestPriceOptionProviderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ConfigurableProduct/Pricing/Price/SpecialPriceIndexerTest.php b/dev/tests/integration/testsuite/Magento/ConfigurableProduct/Pricing/Price/SpecialPriceIndexerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ConfigurableProduct/Pricing/Price/SpecialPriceTest.php b/dev/tests/integration/testsuite/Magento/ConfigurableProduct/Pricing/Price/SpecialPriceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ConfigurableProduct/Pricing/Render/FinalPriceBox/RenderingBasedOnIsProductListFlagTest.php b/dev/tests/integration/testsuite/Magento/ConfigurableProduct/Pricing/Render/FinalPriceBox/RenderingBasedOnIsProductListFlagTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/Data/AssociatedProductsTest.php b/dev/tests/integration/testsuite/Magento/ConfigurableProduct/Ui/DataProvider/Product/Form/Modifier/Data/AssociatedProductsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/associated_products.php b/dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/associated_products.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/configurable_attribute.php b/dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/configurable_attribute.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/configurable_attribute_rollback.php b/dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/configurable_attribute_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/configurable_products.php b/dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/configurable_products.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/configurable_products_rollback.php b/dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/configurable_products_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/delete_association.php b/dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/delete_association.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/order_item_with_configurable_and_options.php b/dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/order_item_with_configurable_and_options.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/order_item_with_configurable_and_options_rollback.php b/dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/order_item_with_configurable_and_options_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/product_configurable.php b/dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/product_configurable.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/product_configurable_12345.php b/dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/product_configurable_12345.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/product_configurable_12345_rollback.php b/dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/product_configurable_12345_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/product_configurable_rollback.php b/dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/product_configurable_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/product_configurable_sku.php b/dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/product_configurable_sku.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/product_configurable_sku_rollback.php b/dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/product_configurable_sku_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/product_simple_77.php b/dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/product_simple_77.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/quote_with_configurable_product.php b/dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/quote_with_configurable_product.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/quote_with_configurable_product_last_variation.php b/dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/quote_with_configurable_product_last_variation.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/quote_with_configurable_product_last_variation_rollback.php b/dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/quote_with_configurable_product_last_variation_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/quote_with_configurable_product_rollback.php b/dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/quote_with_configurable_product_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/tax_rule.php b/dev/tests/integration/testsuite/Magento/ConfigurableProduct/_files/tax_rule.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ConfigurableProduct/etc/extension_attributes.xml b/dev/tests/integration/testsuite/Magento/ConfigurableProduct/etc/extension_attributes.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Contact/Controller/IndexTest.php b/dev/tests/integration/testsuite/Magento/Contact/Controller/IndexTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Contact/Helper/DataTest.php b/dev/tests/integration/testsuite/Magento/Contact/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Contact/Model/ConfigTest.php b/dev/tests/integration/testsuite/Magento/Contact/Model/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Cookie/Model/Config/Backend/DomainTest.php b/dev/tests/integration/testsuite/Magento/Cookie/Model/Config/Backend/DomainTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Cookie/Model/Config/Backend/LifetimeTest.php b/dev/tests/integration/testsuite/Magento/Cookie/Model/Config/Backend/LifetimeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Cookie/Model/Config/Backend/PathTest.php b/dev/tests/integration/testsuite/Magento/Cookie/Model/Config/Backend/PathTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Cron/Model/ScheduleTest.php b/dev/tests/integration/testsuite/Magento/Cron/Model/ScheduleTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Cron/Observer/ProcessCronQueueObserverTest.php b/dev/tests/integration/testsuite/Magento/Cron/Observer/ProcessCronQueueObserverTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CurrencySymbol/Controller/Adminhtml/System/Currency/FetchRatesTest.php b/dev/tests/integration/testsuite/Magento/CurrencySymbol/Controller/Adminhtml/System/Currency/FetchRatesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CurrencySymbol/Controller/Adminhtml/System/Currency/IndexTest.php b/dev/tests/integration/testsuite/Magento/CurrencySymbol/Controller/Adminhtml/System/Currency/IndexTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CurrencySymbol/Controller/Adminhtml/System/Currency/SaveRatesTest.php b/dev/tests/integration/testsuite/Magento/CurrencySymbol/Controller/Adminhtml/System/Currency/SaveRatesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CurrencySymbol/Controller/Adminhtml/System/Currencysymbol/IndexTest.php b/dev/tests/integration/testsuite/Magento/CurrencySymbol/Controller/Adminhtml/System/Currencysymbol/IndexTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CurrencySymbol/Controller/Adminhtml/System/Currencysymbol/SaveTest.php b/dev/tests/integration/testsuite/Magento/CurrencySymbol/Controller/Adminhtml/System/Currencysymbol/SaveTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CurrencySymbol/Model/System/CurrencysymbolTest.php b/dev/tests/integration/testsuite/Magento/CurrencySymbol/Model/System/CurrencysymbolTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Api/AddressRepositoryTest.php b/dev/tests/integration/testsuite/Magento/Customer/Api/AddressRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Block/Account/Dashboard/AddressTest.php b/dev/tests/integration/testsuite/Magento/Customer/Block/Account/Dashboard/AddressTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Block/Account/Dashboard/InfoTest.php b/dev/tests/integration/testsuite/Magento/Customer/Block/Account/Dashboard/InfoTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Block/Account/DashboardTest.php b/dev/tests/integration/testsuite/Magento/Customer/Block/Account/DashboardTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Block/Address/BookTest.php b/dev/tests/integration/testsuite/Magento/Customer/Block/Address/BookTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Block/Address/EditTest.php b/dev/tests/integration/testsuite/Magento/Customer/Block/Address/EditTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Block/Address/Renderer/DefaultRendererTest.php b/dev/tests/integration/testsuite/Magento/Customer/Block/Address/Renderer/DefaultRendererTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Block/Adminhtml/Edit/Tab/CartTest.php b/dev/tests/integration/testsuite/Magento/Customer/Block/Adminhtml/Edit/Tab/CartTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Block/Adminhtml/Edit/Tab/CartsTest.php b/dev/tests/integration/testsuite/Magento/Customer/Block/Adminhtml/Edit/Tab/CartsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Block/Adminhtml/Edit/Tab/NewsletterTest.php b/dev/tests/integration/testsuite/Magento/Customer/Block/Adminhtml/Edit/Tab/NewsletterTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Block/Adminhtml/Edit/Tab/OrdersTest.php b/dev/tests/integration/testsuite/Magento/Customer/Block/Adminhtml/Edit/Tab/OrdersTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Block/Adminhtml/Edit/Tab/View/CartTest.php b/dev/tests/integration/testsuite/Magento/Customer/Block/Adminhtml/Edit/Tab/View/CartTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Block/Adminhtml/Edit/Tab/View/PersonalInfoTest.php b/dev/tests/integration/testsuite/Magento/Customer/Block/Adminhtml/Edit/Tab/View/PersonalInfoTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Block/Adminhtml/Edit/Tab/View/SalesTest.php b/dev/tests/integration/testsuite/Magento/Customer/Block/Adminhtml/Edit/Tab/View/SalesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Block/Adminhtml/Edit/Tab/ViewTest.php b/dev/tests/integration/testsuite/Magento/Customer/Block/Adminhtml/Edit/Tab/ViewTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Block/Adminhtml/EditTest.php b/dev/tests/integration/testsuite/Magento/Customer/Block/Adminhtml/EditTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Block/Adminhtml/Group/Edit/FormTest.php b/dev/tests/integration/testsuite/Magento/Customer/Block/Adminhtml/Group/Edit/FormTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Block/Adminhtml/Group/EditTest.php b/dev/tests/integration/testsuite/Magento/Customer/Block/Adminhtml/Group/EditTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Block/Form/RegisterTest.php b/dev/tests/integration/testsuite/Magento/Customer/Block/Form/RegisterTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Block/Widget/CompanyTest.php b/dev/tests/integration/testsuite/Magento/Customer/Block/Widget/CompanyTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Block/Widget/DobTest.php b/dev/tests/integration/testsuite/Magento/Customer/Block/Widget/DobTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Block/Widget/FaxTest.php b/dev/tests/integration/testsuite/Magento/Customer/Block/Widget/FaxTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Block/Widget/GenderTest.php b/dev/tests/integration/testsuite/Magento/Customer/Block/Widget/GenderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Block/Widget/NameTest.php b/dev/tests/integration/testsuite/Magento/Customer/Block/Widget/NameTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Block/Widget/TaxvatTest.php b/dev/tests/integration/testsuite/Magento/Customer/Block/Widget/TaxvatTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Block/Widget/TelephoneTest.php b/dev/tests/integration/testsuite/Magento/Customer/Block/Widget/TelephoneTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Controller/AccountTest.php b/dev/tests/integration/testsuite/Magento/Customer/Controller/AccountTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Controller/AddressTest.php b/dev/tests/integration/testsuite/Magento/Customer/Controller/AddressTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Controller/Adminhtml/Cart/Product/Composite/CartTest.php b/dev/tests/integration/testsuite/Magento/Customer/Controller/Adminhtml/Cart/Product/Composite/CartTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Controller/Adminhtml/GroupTest.php b/dev/tests/integration/testsuite/Magento/Customer/Controller/Adminhtml/GroupTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Controller/Adminhtml/Index/MassAssignGroupTest.php b/dev/tests/integration/testsuite/Magento/Customer/Controller/Adminhtml/Index/MassAssignGroupTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Controller/Adminhtml/Index/MassDeleteTest.php b/dev/tests/integration/testsuite/Magento/Customer/Controller/Adminhtml/Index/MassDeleteTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Controller/Adminhtml/Index/MassSubscribeTest.php b/dev/tests/integration/testsuite/Magento/Customer/Controller/Adminhtml/Index/MassSubscribeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Controller/Adminhtml/Index/ResetPasswordTest.php b/dev/tests/integration/testsuite/Magento/Customer/Controller/Adminhtml/Index/ResetPasswordTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Controller/Adminhtml/IndexTest.php b/dev/tests/integration/testsuite/Magento/Customer/Controller/Adminhtml/IndexTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Controller/AjaxLoginTest.php b/dev/tests/integration/testsuite/Magento/Customer/Controller/AjaxLoginTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Controller/Section/LoadTest.php b/dev/tests/integration/testsuite/Magento/Customer/Controller/Section/LoadTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Helper/AddressTest.php b/dev/tests/integration/testsuite/Magento/Customer/Helper/AddressTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Helper/ViewTest.php b/dev/tests/integration/testsuite/Magento/Customer/Helper/ViewTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Model/AccountManagementTest.php b/dev/tests/integration/testsuite/Magento/Customer/Model/AccountManagementTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Model/AddressMetadataTest.php b/dev/tests/integration/testsuite/Magento/Customer/Model/AddressMetadataTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Model/AddressRegistryTest.php b/dev/tests/integration/testsuite/Magento/Customer/Model/AddressRegistryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Model/AddressTest.php b/dev/tests/integration/testsuite/Magento/Customer/Model/AddressTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Model/Config/ShareTest.php b/dev/tests/integration/testsuite/Magento/Customer/Model/Config/ShareTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Model/Config/Source/Group/MultiselectTest.php b/dev/tests/integration/testsuite/Magento/Customer/Model/Config/Source/Group/MultiselectTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Model/Config/Source/GroupTest.php b/dev/tests/integration/testsuite/Magento/Customer/Model/Config/Source/GroupTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Model/CustomerMetadataTest.php b/dev/tests/integration/testsuite/Magento/Customer/Model/CustomerMetadataTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Model/CustomerRegistryTest.php b/dev/tests/integration/testsuite/Magento/Customer/Model/CustomerRegistryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Model/CustomerTest.php b/dev/tests/integration/testsuite/Magento/Customer/Model/CustomerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Model/FileResolverStub.php b/dev/tests/integration/testsuite/Magento/Customer/Model/FileResolverStub.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Model/FormTest.php b/dev/tests/integration/testsuite/Magento/Customer/Model/FormTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Model/GroupManagementTest.php b/dev/tests/integration/testsuite/Magento/Customer/Model/GroupManagementTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Model/GroupRegistryTest.php b/dev/tests/integration/testsuite/Magento/Customer/Model/GroupRegistryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Model/GroupTest.php b/dev/tests/integration/testsuite/Magento/Customer/Model/GroupTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Model/Metadata/FormFactoryTest.php b/dev/tests/integration/testsuite/Magento/Customer/Model/Metadata/FormFactoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Model/Metadata/FormTest.php b/dev/tests/integration/testsuite/Magento/Customer/Model/Metadata/FormTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Model/ResourceModel/Address/CollectionTest.php b/dev/tests/integration/testsuite/Magento/Customer/Model/ResourceModel/Address/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Model/ResourceModel/AddressRepositoryTest.php b/dev/tests/integration/testsuite/Magento/Customer/Model/ResourceModel/AddressRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Model/ResourceModel/Customer/CollectionTest.php b/dev/tests/integration/testsuite/Magento/Customer/Model/ResourceModel/Customer/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Model/ResourceModel/CustomerRepositoryTest.php b/dev/tests/integration/testsuite/Magento/Customer/Model/ResourceModel/CustomerRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Model/ResourceModel/Grid/CollectionTest.php b/dev/tests/integration/testsuite/Magento/Customer/Model/ResourceModel/Grid/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Model/ResourceModel/Group/Grid/ServiceCollectionTest.php b/dev/tests/integration/testsuite/Magento/Customer/Model/ResourceModel/Group/Grid/ServiceCollectionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Model/ResourceModel/GroupRepositoryTest.php b/dev/tests/integration/testsuite/Magento/Customer/Model/ResourceModel/GroupRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Model/SessionTest.php b/dev/tests/integration/testsuite/Magento/Customer/Model/SessionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/Model/VisitorTest.php b/dev/tests/integration/testsuite/Magento/Customer/Model/VisitorTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/_files/attribute_user_defined_address.php b/dev/tests/integration/testsuite/Magento/Customer/_files/attribute_user_defined_address.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/_files/attribute_user_defined_address_custom_attribute.php b/dev/tests/integration/testsuite/Magento/Customer/_files/attribute_user_defined_address_custom_attribute.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/_files/attribute_user_defined_address_custom_attribute_rollback.php b/dev/tests/integration/testsuite/Magento/Customer/_files/attribute_user_defined_address_custom_attribute_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/_files/attribute_user_defined_address_rollback.php b/dev/tests/integration/testsuite/Magento/Customer/_files/attribute_user_defined_address_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/_files/attribute_user_defined_custom_attribute.php b/dev/tests/integration/testsuite/Magento/Customer/_files/attribute_user_defined_custom_attribute.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/_files/attribute_user_defined_custom_attribute_rollback.php b/dev/tests/integration/testsuite/Magento/Customer/_files/attribute_user_defined_custom_attribute_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/_files/attribute_user_defined_customer.php b/dev/tests/integration/testsuite/Magento/Customer/_files/attribute_user_defined_customer.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/_files/attribute_user_defined_customer_rollback.php b/dev/tests/integration/testsuite/Magento/Customer/_files/attribute_user_defined_customer_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/_files/attribute_user_fullname.php b/dev/tests/integration/testsuite/Magento/Customer/_files/attribute_user_fullname.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/_files/customer.php b/dev/tests/integration/testsuite/Magento/Customer/_files/customer.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/_files/customer_address.php b/dev/tests/integration/testsuite/Magento/Customer/_files/customer_address.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/_files/customer_address_rollback.php b/dev/tests/integration/testsuite/Magento/Customer/_files/customer_address_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/_files/customer_from_repository.php b/dev/tests/integration/testsuite/Magento/Customer/_files/customer_from_repository.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/_files/customer_grid_indexer_enabled_update_on_schedule.php b/dev/tests/integration/testsuite/Magento/Customer/_files/customer_grid_indexer_enabled_update_on_schedule.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/_files/customer_grid_indexer_enabled_update_on_schedule_rollback.php b/dev/tests/integration/testsuite/Magento/Customer/_files/customer_grid_indexer_enabled_update_on_schedule_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/_files/customer_group.php b/dev/tests/integration/testsuite/Magento/Customer/_files/customer_group.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/_files/customer_no_address.php b/dev/tests/integration/testsuite/Magento/Customer/_files/customer_no_address.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/_files/customer_non_default_website_id.php b/dev/tests/integration/testsuite/Magento/Customer/_files/customer_non_default_website_id.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/_files/customer_non_default_website_id_rollback.php b/dev/tests/integration/testsuite/Magento/Customer/_files/customer_non_default_website_id_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/_files/customer_primary_addresses.php b/dev/tests/integration/testsuite/Magento/Customer/_files/customer_primary_addresses.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/_files/customer_rollback.php b/dev/tests/integration/testsuite/Magento/Customer/_files/customer_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/_files/customer_rp_token.php b/dev/tests/integration/testsuite/Magento/Customer/_files/customer_rp_token.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/_files/customer_sample.php b/dev/tests/integration/testsuite/Magento/Customer/_files/customer_sample.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/_files/customer_two_addresses.php b/dev/tests/integration/testsuite/Magento/Customer/_files/customer_two_addresses.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/_files/customer_with_website.php b/dev/tests/integration/testsuite/Magento/Customer/_files/customer_with_website.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/_files/etc/extension_attributes.xml b/dev/tests/integration/testsuite/Magento/Customer/_files/etc/extension_attributes.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/_files/import_export/customer.php b/dev/tests/integration/testsuite/Magento/Customer/_files/import_export/customer.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/_files/import_export/customer_with_addresses.php b/dev/tests/integration/testsuite/Magento/Customer/_files/import_export/customer_with_addresses.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/_files/import_export/customers.php b/dev/tests/integration/testsuite/Magento/Customer/_files/import_export/customers.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/_files/import_export/customers_for_address_import.php b/dev/tests/integration/testsuite/Magento/Customer/_files/import_export/customers_for_address_import.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/_files/inactive_customer.php b/dev/tests/integration/testsuite/Magento/Customer/_files/inactive_customer.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/_files/quote.php b/dev/tests/integration/testsuite/Magento/Customer/_files/quote.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/_files/sales_order.php b/dev/tests/integration/testsuite/Magento/Customer/_files/sales_order.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/_files/three_customers.php b/dev/tests/integration/testsuite/Magento/Customer/_files/three_customers.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/_files/twenty_one_customers.php b/dev/tests/integration/testsuite/Magento/Customer/_files/twenty_one_customers.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/_files/two_customers.php b/dev/tests/integration/testsuite/Magento/Customer/_files/two_customers.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Customer/etc/extension_attributes.xml b/dev/tests/integration/testsuite/Magento/Customer/etc/extension_attributes.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CustomerImportExport/Model/Export/AddressTest.php b/dev/tests/integration/testsuite/Magento/CustomerImportExport/Model/Export/AddressTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CustomerImportExport/Model/Export/CustomerTest.php b/dev/tests/integration/testsuite/Magento/CustomerImportExport/Model/Export/CustomerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CustomerImportExport/Model/Import/AddressTest.php b/dev/tests/integration/testsuite/Magento/CustomerImportExport/Model/Import/AddressTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CustomerImportExport/Model/Import/CustomerCompositeTest.php b/dev/tests/integration/testsuite/Magento/CustomerImportExport/Model/Import/CustomerCompositeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CustomerImportExport/Model/Import/CustomerTest.php b/dev/tests/integration/testsuite/Magento/CustomerImportExport/Model/Import/CustomerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CustomerImportExport/Model/Import/_files/address_import_delete.csv b/dev/tests/integration/testsuite/Magento/CustomerImportExport/Model/Import/_files/address_import_delete.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CustomerImportExport/Model/Import/_files/address_import_update.csv b/dev/tests/integration/testsuite/Magento/CustomerImportExport/Model/Import/_files/address_import_update.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CustomerImportExport/Model/Import/_files/customer_composite_delete.csv b/dev/tests/integration/testsuite/Magento/CustomerImportExport/Model/Import/_files/customer_composite_delete.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CustomerImportExport/Model/Import/_files/customer_composite_update.csv b/dev/tests/integration/testsuite/Magento/CustomerImportExport/Model/Import/_files/customer_composite_update.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CustomerImportExport/Model/Import/_files/customer_to_import_with_one_additional_column.csv b/dev/tests/integration/testsuite/Magento/CustomerImportExport/Model/Import/_files/customer_to_import_with_one_additional_column.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CustomerImportExport/Model/Import/_files/customers_to_delete.csv b/dev/tests/integration/testsuite/Magento/CustomerImportExport/Model/Import/_files/customers_to_delete.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/CustomerImportExport/Model/Import/_files/customers_to_import.csv b/dev/tests/integration/testsuite/Magento/CustomerImportExport/Model/Import/_files/customers_to_import.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/Console/Command/App/ApplicationDumpCommandTest.php b/dev/tests/integration/testsuite/Magento/Deploy/Console/Command/App/ApplicationDumpCommandTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/Console/Command/App/ConfigImportCommand/IntegrationTestImporter.php b/dev/tests/integration/testsuite/Magento/Deploy/Console/Command/App/ConfigImportCommand/IntegrationTestImporter.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/Console/Command/App/ConfigImportCommand/IntegrationTestSecondImporter.php b/dev/tests/integration/testsuite/Magento/Deploy/Console/Command/App/ConfigImportCommand/IntegrationTestSecondImporter.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/Console/Command/App/ConfigImportCommandTest.php b/dev/tests/integration/testsuite/Magento/Deploy/Console/Command/App/ConfigImportCommandTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/Console/Command/App/SensitiveConfigSetCommandTest.php b/dev/tests/integration/testsuite/Magento/Deploy/Console/Command/App/SensitiveConfigSetCommandTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/DeployTest.php b/dev/tests/integration/testsuite/Magento/Deploy/DeployTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/_files/_config.local.php b/dev/tests/integration/testsuite/Magento/Deploy/_files/_config.local.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/_files/config.php b/dev/tests/integration/testsuite/Magento/Deploy/_files/config.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/_files/config_data.php b/dev/tests/integration/testsuite/Magento/Deploy/_files/config_data.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/_files/lib/web/test.js b/dev/tests/integration/testsuite/Magento/Deploy/_files/lib/web/test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/_files/map.php b/dev/tests/integration/testsuite/Magento/Deploy/_files/map.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/_files/requirejs-map.js b/dev/tests/integration/testsuite/Magento/Deploy/_files/requirejs-map.js
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/_files/scopes/config_with_changed_stores.php b/dev/tests/integration/testsuite/Magento/Deploy/_files/scopes/config_with_changed_stores.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/_files/scopes/config_with_removed_stores.php b/dev/tests/integration/testsuite/Magento/Deploy/_files/scopes/config_with_removed_stores.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/_files/scopes/config_with_stores.php b/dev/tests/integration/testsuite/Magento/Deploy/_files/scopes/config_with_stores.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/_files/theme.php b/dev/tests/integration/testsuite/Magento/Deploy/_files/theme.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/_files/theme_rollback.php b/dev/tests/integration/testsuite/Magento/Deploy/_files/theme_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom1/LICENSE.txt b/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom1/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom1/LICENSE_AFL.txt b/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom1/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom1/composer.json b/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom1/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom1/etc/view.xml b/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom1/etc/view.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom1/registration.php b/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom1/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom1/theme.xml b/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom1/theme.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom1/web/css/root.less b/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom1/web/css/root.less
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom1/web/images/logo-magento-1.png b/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom1/web/images/logo-magento-1.png
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom1/web/images/logo-magento-2.png b/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom1/web/images/logo-magento-2.png
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom1/web/images/logo-magento-3.png b/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom1/web/images/logo-magento-3.png
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom1/web/js/file1.js b/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom1/web/js/file1.js
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom1/web/js/file2.js b/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom1/web/js/file2.js
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom1/web/js/file3.js b/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom1/web/js/file3.js
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom1/web/js/file4.js b/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom1/web/js/file4.js
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom2/LICENSE.txt b/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom2/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom2/LICENSE_AFL.txt b/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom2/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom2/composer.json b/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom2/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom2/etc/view.xml b/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom2/etc/view.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom2/registration.php b/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom2/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom2/theme.xml b/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom2/theme.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom2/web/css/_testA.less b/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom2/web/css/_testA.less
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom2/web/css/_testB.less b/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom2/web/css/_testB.less
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom2/web/css/root.less b/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom2/web/css/root.less
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom2/web/images/logo-magento-2.png b/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom2/web/images/logo-magento-2.png
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom2/web/js/file2.js b/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom2/web/js/file2.js
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom3/LICENSE.txt b/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom3/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom3/composer.json b/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom3/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom3/etc/view.xml b/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom3/etc/view.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom3/registration.php b/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom3/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom3/theme.xml b/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom3/theme.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom3/web/css/_testA.less b/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom3/web/css/_testA.less
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom3/web/css/local.css b/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom3/web/css/local.css
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom3/web/images/logo-magento-3.png b/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom3/web/images/logo-magento-3.png
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom3/web/js/file3.js b/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom3/web/js/file3.js
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Developer/Console/Command/SourceThemeDeployCommandTest.php b/dev/tests/integration/testsuite/Magento/Developer/Console/Command/SourceThemeDeployCommandTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Developer/Helper/DataTest.php b/dev/tests/integration/testsuite/Magento/Developer/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Developer/Model/Config/Backend/AllowedIpsTest.php b/dev/tests/integration/testsuite/Magento/Developer/Model/Config/Backend/AllowedIpsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Developer/Model/Logger/Handler/DebugTest.php b/dev/tests/integration/testsuite/Magento/Developer/Model/Logger/Handler/DebugTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Dhl/Block/Adminhtml/UnitofmeasureTest.php b/dev/tests/integration/testsuite/Magento/Dhl/Block/Adminhtml/UnitofmeasureTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Directory/Block/DataTest.php b/dev/tests/integration/testsuite/Magento/Directory/Block/DataTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Directory/Helper/DataTest.php b/dev/tests/integration/testsuite/Magento/Directory/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Directory/Model/Country/Postcode/Config/ReaderTest.php b/dev/tests/integration/testsuite/Magento/Directory/Model/Country/Postcode/Config/ReaderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Directory/Model/Country/Postcode/ValidatorTest.php b/dev/tests/integration/testsuite/Magento/Directory/Model/Country/Postcode/ValidatorTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Directory/Model/CurrencyConfigTest.php b/dev/tests/integration/testsuite/Magento/Directory/Model/CurrencyConfigTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Directory/Model/ObserverTest.php b/dev/tests/integration/testsuite/Magento/Directory/Model/ObserverTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Directory/Model/PriceCurrencyTest.php b/dev/tests/integration/testsuite/Magento/Directory/Model/PriceCurrencyTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/LinksTest.php b/dev/tests/integration/testsuite/Magento/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/LinksTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/SamplesTest.php b/dev/tests/integration/testsuite/Magento/Downloadable/Block/Adminhtml/Catalog/Product/Edit/Tab/Downloadable/SamplesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Downloadable/Controller/Adminhtml/_files/sample.txt b/dev/tests/integration/testsuite/Magento/Downloadable/Controller/Adminhtml/_files/sample.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Downloadable/Controller/ProductTest.php b/dev/tests/integration/testsuite/Magento/Downloadable/Controller/ProductTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Downloadable/Model/Observer/SetLinkStatusObserverTest.php b/dev/tests/integration/testsuite/Magento/Downloadable/Model/Observer/SetLinkStatusObserverTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Downloadable/Model/Product/TypeTest.php b/dev/tests/integration/testsuite/Magento/Downloadable/Model/Product/TypeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Downloadable/Model/ResourceModel/Indexer/PriceTest.php b/dev/tests/integration/testsuite/Magento/Downloadable/Model/ResourceModel/Indexer/PriceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Downloadable/_files/order_item_with_downloadable_and_options.php b/dev/tests/integration/testsuite/Magento/Downloadable/_files/order_item_with_downloadable_and_options.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Downloadable/_files/order_item_with_downloadable_and_options_rollback.php b/dev/tests/integration/testsuite/Magento/Downloadable/_files/order_item_with_downloadable_and_options_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Downloadable/_files/order_with_downloadable_product.php b/dev/tests/integration/testsuite/Magento/Downloadable/_files/order_with_downloadable_product.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Downloadable/_files/order_with_downloadable_product_with_additional_options.php b/dev/tests/integration/testsuite/Magento/Downloadable/_files/order_with_downloadable_product_with_additional_options.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Downloadable/_files/product_downloadable.php b/dev/tests/integration/testsuite/Magento/Downloadable/_files/product_downloadable.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Downloadable/_files/product_downloadable_rollback.php b/dev/tests/integration/testsuite/Magento/Downloadable/_files/product_downloadable_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Downloadable/_files/product_downloadable_with_files.php b/dev/tests/integration/testsuite/Magento/Downloadable/_files/product_downloadable_with_files.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Downloadable/_files/product_downloadable_with_files_rollback.php b/dev/tests/integration/testsuite/Magento/Downloadable/_files/product_downloadable_with_files_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Downloadable/_files/quote_with_downloadable_product.php b/dev/tests/integration/testsuite/Magento/Downloadable/_files/quote_with_downloadable_product.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Downloadable/_files/quote_with_downloadable_product_rollback.php b/dev/tests/integration/testsuite/Magento/Downloadable/_files/quote_with_downloadable_product_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Downloadable/_files/test_image.jpg b/dev/tests/integration/testsuite/Magento/Downloadable/_files/test_image.jpg
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Downloadable/etc/extension_attributes.xml b/dev/tests/integration/testsuite/Magento/Downloadable/etc/extension_attributes.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/DownloadableImportExport/Model/DownloadableTest.php b/dev/tests/integration/testsuite/Magento/DownloadableImportExport/Model/DownloadableTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/DownloadableImportExport/Model/Import/Product/Type/DownloadableTest.php b/dev/tests/integration/testsuite/Magento/DownloadableImportExport/Model/Import/Product/Type/DownloadableTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/DownloadableImportExport/Model/Import/_files/import_downloadable.csv b/dev/tests/integration/testsuite/Magento/DownloadableImportExport/Model/Import/_files/import_downloadable.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Eav/Block/Adminhtml/Attribute/Edit/Main/AbstractMainTest.php b/dev/tests/integration/testsuite/Magento/Eav/Block/Adminhtml/Attribute/Edit/Main/AbstractMainTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Eav/Model/Attribute/GroupRepositoryTest.php b/dev/tests/integration/testsuite/Magento/Eav/Model/Attribute/GroupRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Eav/Model/AttributeManagementTest.php b/dev/tests/integration/testsuite/Magento/Eav/Model/AttributeManagementTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Eav/Model/AttributeRepositoryTest.php b/dev/tests/integration/testsuite/Magento/Eav/Model/AttributeRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Eav/Model/ConfigTest.php b/dev/tests/integration/testsuite/Magento/Eav/Model/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Eav/Model/Entity/Attribute/Frontend/DefaultFrontendTest.php b/dev/tests/integration/testsuite/Magento/Eav/Model/Entity/Attribute/Frontend/DefaultFrontendTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Eav/Model/Entity/AttributeLoaderTest.php b/dev/tests/integration/testsuite/Magento/Eav/Model/Entity/AttributeLoaderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Eav/Model/ResourceModel/AttributeLoaderTest.php b/dev/tests/integration/testsuite/Magento/Eav/Model/ResourceModel/AttributeLoaderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Eav/Model/ResourceModel/Entity/Attribute/CollectionTest.php b/dev/tests/integration/testsuite/Magento/Eav/Model/ResourceModel/Entity/Attribute/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Eav/Model/ResourceModel/UpdateHandlerTest.php b/dev/tests/integration/testsuite/Magento/Eav/Model/ResourceModel/UpdateHandlerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Eav/Model/Validator/Attribute/BackendTest.php b/dev/tests/integration/testsuite/Magento/Eav/Model/Validator/Attribute/BackendTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Eav/Setup/EavSetupTest.php b/dev/tests/integration/testsuite/Magento/Eav/Setup/EavSetupTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Eav/_files/attribute_for_search.php b/dev/tests/integration/testsuite/Magento/Eav/_files/attribute_for_search.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Eav/_files/attribute_group_for_search.php b/dev/tests/integration/testsuite/Magento/Eav/_files/attribute_group_for_search.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Eav/_files/attribute_set_for_search.php b/dev/tests/integration/testsuite/Magento/Eav/_files/attribute_set_for_search.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Eav/_files/attribute_set_for_search_rollback.php b/dev/tests/integration/testsuite/Magento/Eav/_files/attribute_set_for_search_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Eav/_files/empty_attribute_set.php b/dev/tests/integration/testsuite/Magento/Eav/_files/empty_attribute_set.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Eav/_files/empty_attribute_set_rollback.php b/dev/tests/integration/testsuite/Magento/Eav/_files/empty_attribute_set_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Email/Block/Adminhtml/Template/Edit/FormTest.php b/dev/tests/integration/testsuite/Magento/Email/Block/Adminhtml/Template/Edit/FormTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Email/Controller/Adminhtml/Email/TemplateTest.php b/dev/tests/integration/testsuite/Magento/Email/Controller/Adminhtml/Email/TemplateTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Email/Model/Template/FilterTest.php b/dev/tests/integration/testsuite/Magento/Email/Model/Template/FilterTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Email/Model/TemplateTest.php b/dev/tests/integration/testsuite/Magento/Email/Model/TemplateTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Email/Model/_files/code/Magento/Email/view/email/footer.html b/dev/tests/integration/testsuite/Magento/Email/Model/_files/code/Magento/Email/view/email/footer.html
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Email/Model/_files/code/Magento/Email/view/email/header.html b/dev/tests/integration/testsuite/Magento/Email/Model/_files/code/Magento/Email/view/email/header.html
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/adminhtml/Magento/default/Magento_Email/layout/email_template_test_handle.xml b/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/adminhtml/Magento/default/Magento_Email/layout/email_template_test_handle.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/adminhtml/Magento/default/Magento_Email/templates/sample_email_content.phtml b/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/adminhtml/Magento/default/Magento_Email/templates/sample_email_content.phtml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/adminhtml/Magento/default/Magento_ProductAlert/email/cron_error.html b/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/adminhtml/Magento/default/Magento_ProductAlert/email/cron_error.html
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/adminhtml/Magento/default/registration.php b/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/adminhtml/Magento/default/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/adminhtml/Magento/default/theme.xml b/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/adminhtml/Magento/default/theme.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/adminhtml/Vendor/custom_theme/registration.php b/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/adminhtml/Vendor/custom_theme/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/adminhtml/Vendor/custom_theme/theme.xml b/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/adminhtml/Vendor/custom_theme/theme.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/adminhtml/Vendor/default/registration.php b/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/adminhtml/Vendor/default/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/adminhtml/Vendor/default/theme.xml b/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/adminhtml/Vendor/default/theme.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Magento/default/Magento_Customer/email/account_new_confirmed.html b/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Magento/default/Magento_Customer/email/account_new_confirmed.html
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Magento/default/Magento_Email/layout/email_template_test_handle.xml b/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Magento/default/Magento_Email/layout/email_template_test_handle.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Magento/default/Magento_Email/templates/sample_email_content.phtml b/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Magento/default/Magento_Email/templates/sample_email_content.phtml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Magento/default/Magento_Email/templates/sample_email_content_custom.phtml b/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Magento/default/Magento_Email/templates/sample_email_content_custom.phtml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Magento/default/registration.php b/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Magento/default/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Magento/default/theme.xml b/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Magento/default/theme.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Magento/default/web/css/email-3.less b/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Magento/default/web/css/email-3.less
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Magento/default/web/css/email-inline-3.less b/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Magento/default/web/css/email-inline-3.less
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Magento/default/web/css/file-with-error.less b/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Magento/default/web/css/file-with-error.less
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Vendor/custom_theme/Magento_Customer/email/account_new.html b/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Vendor/custom_theme/Magento_Customer/email/account_new.html
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Vendor/custom_theme/registration.php b/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Vendor/custom_theme/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Vendor/custom_theme/theme.xml b/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Vendor/custom_theme/theme.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Vendor/custom_theme/web/css/email-1.less b/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Vendor/custom_theme/web/css/email-1.less
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Vendor/custom_theme/web/css/email-inline-1.less b/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Vendor/custom_theme/web/css/email-inline-1.less
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Vendor/default/Magento_Customer/email/account_new_confirmation.html b/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Vendor/default/Magento_Customer/email/account_new_confirmation.html
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Vendor/default/registration.php b/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Vendor/default/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Vendor/default/theme.xml b/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Vendor/default/theme.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Vendor/default/web/css/email-2.less b/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Vendor/default/web/css/email-2.less
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Vendor/default/web/css/email-inline-2.less b/dev/tests/integration/testsuite/Magento/Email/Model/_files/design/frontend/Vendor/default/web/css/email-inline-2.less
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Email/Model/_files/email_template.php b/dev/tests/integration/testsuite/Magento/Email/Model/_files/email_template.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Email/Model/_files/template_fixture.html b/dev/tests/integration/testsuite/Magento/Email/Model/_files/template_fixture.html
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/EncryptionKey/Block/Adminhtml/Crypt/Key/EditTest.php b/dev/tests/integration/testsuite/Magento/EncryptionKey/Block/Adminhtml/Crypt/Key/EditTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/EncryptionKey/Block/Adminhtml/Crypt/Key/FormTest.php b/dev/tests/integration/testsuite/Magento/EncryptionKey/Block/Adminhtml/Crypt/Key/FormTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/EncryptionKey/Controller/Adminhtml/Crypt/Key/IndexTest.php b/dev/tests/integration/testsuite/Magento/EncryptionKey/Controller/Adminhtml/Crypt/Key/IndexTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/EncryptionKey/Controller/Adminhtml/Crypt/Key/SaveTest.php b/dev/tests/integration/testsuite/Magento/EncryptionKey/Controller/Adminhtml/Crypt/Key/SaveTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/EncryptionKey/Model/ResourceModel/Key/ChangeTest.php b/dev/tests/integration/testsuite/Magento/EncryptionKey/Model/ResourceModel/Key/ChangeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/EncryptionKey/_files/payment_info.php b/dev/tests/integration/testsuite/Magento/EncryptionKey/_files/payment_info.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Fedex/Model/CarrierTest.php b/dev/tests/integration/testsuite/Magento/Fedex/Model/CarrierTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Fedex/Model/Source/UnitofmeasureTest.php b/dev/tests/integration/testsuite/Magento/Fedex/Model/Source/UnitofmeasureTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Api/AbstractExtensibleObjectTest.php b/dev/tests/integration/testsuite/Magento/Framework/Api/AbstractExtensibleObjectTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Api/ExtensionAttribute/Config/ReaderTest.php b/dev/tests/integration/testsuite/Magento/Framework/Api/ExtensionAttribute/Config/ReaderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Api/ExtensionAttribute/Config/_files/config_one.xml b/dev/tests/integration/testsuite/Magento/Framework/Api/ExtensionAttribute/Config/_files/config_one.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Api/ExtensionAttribute/Config/_files/config_two.xml b/dev/tests/integration/testsuite/Magento/Framework/Api/ExtensionAttribute/Config/_files/config_two.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Api/ExtensionAttribute/JoinProcessorTest.php b/dev/tests/integration/testsuite/Magento/Framework/Api/ExtensionAttribute/JoinProcessorTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Api/ExtensionAttributesFactoryTest.php b/dev/tests/integration/testsuite/Magento/Framework/Api/ExtensionAttributesFactoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Api/_files/Magento/Wonderland/Api/Data/FakeAddressInterface.php b/dev/tests/integration/testsuite/Magento/Framework/Api/_files/Magento/Wonderland/Api/Data/FakeAddressInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Api/_files/Magento/Wonderland/Api/Data/FakeExtensibleOneInterface.php b/dev/tests/integration/testsuite/Magento/Framework/Api/_files/Magento/Wonderland/Api/Data/FakeExtensibleOneInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Api/_files/Magento/Wonderland/Api/Data/FakeExtensibleTwoInterface.php b/dev/tests/integration/testsuite/Magento/Framework/Api/_files/Magento/Wonderland/Api/Data/FakeExtensibleTwoInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Api/_files/Magento/Wonderland/Api/Data/FakeRegionInterface.php b/dev/tests/integration/testsuite/Magento/Framework/Api/_files/Magento/Wonderland/Api/Data/FakeRegionInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Api/_files/Magento/Wonderland/Model/Data/FakeAddress.php b/dev/tests/integration/testsuite/Magento/Framework/Api/_files/Magento/Wonderland/Model/Data/FakeAddress.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Api/_files/Magento/Wonderland/Model/Data/FakeExtensibleOne.php b/dev/tests/integration/testsuite/Magento/Framework/Api/_files/Magento/Wonderland/Model/Data/FakeExtensibleOne.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Api/_files/Magento/Wonderland/Model/Data/FakeExtensibleTwo.php b/dev/tests/integration/testsuite/Magento/Framework/Api/_files/Magento/Wonderland/Model/Data/FakeExtensibleTwo.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Api/_files/Magento/Wonderland/Model/Data/FakeRegion.php b/dev/tests/integration/testsuite/Magento/Framework/Api/_files/Magento/Wonderland/Model/Data/FakeRegion.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Api/_files/Magento/Wonderland/Model/FakeAddress.php b/dev/tests/integration/testsuite/Magento/Framework/Api/_files/Magento/Wonderland/Model/FakeAddress.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Api/_files/Magento/Wonderland/Model/FakeRegion.php b/dev/tests/integration/testsuite/Magento/Framework/Api/_files/Magento/Wonderland/Model/FakeRegion.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Api/_files/extension_attributes.xml b/dev/tests/integration/testsuite/Magento/Framework/Api/_files/extension_attributes.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Api/etc/extension_attributes.xml b/dev/tests/integration/testsuite/Magento/Framework/Api/etc/extension_attributes.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/AreaTest.php b/dev/tests/integration/testsuite/Magento/Framework/App/AreaTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/Config/BaseTest.php b/dev/tests/integration/testsuite/Magento/Framework/App/Config/BaseTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/Config/DataTest.php b/dev/tests/integration/testsuite/Magento/Framework/App/Config/DataTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/Config/InitialTest.php b/dev/tests/integration/testsuite/Magento/Framework/App/Config/InitialTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/FrontControllerTest.php b/dev/tests/integration/testsuite/Magento/Framework/App/FrontControllerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/Language/DictionaryTest.php b/dev/tests/integration/testsuite/Magento/Framework/App/Language/DictionaryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/bar/en_gb/1.csv b/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/bar/en_gb/1.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/bar/en_gb/language.xml b/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/bar/en_gb/language.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/bar/en_gb/registration.php b/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/bar/en_gb/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/bar/en_us/a.csv b/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/bar/en_us/a.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/bar/en_us/b.csv b/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/bar/en_us/b.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/bar/en_us/language.xml b/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/bar/en_us/language.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/bar/en_us/registration.php b/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/bar/en_us/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/baz/en_gb/1.csv b/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/baz/en_gb/1.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/baz/en_gb/language.xml b/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/baz/en_gb/language.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/baz/en_gb/registration.php b/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/baz/en_gb/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/first/en_us/1.csv b/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/first/en_us/1.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/first/en_us/language.xml b/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/first/en_us/language.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/first/en_us/registration.php b/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/first/en_us/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/foo/en_au/1.csv b/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/foo/en_au/1.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/foo/en_au/2.csv b/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/foo/en_au/2.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/foo/en_au/language.xml b/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/foo/en_au/language.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/foo/en_au/registration.php b/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/foo/en_au/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/my/ru_ru/1.csv b/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/my/ru_ru/1.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/my/ru_ru/language.xml b/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/my/ru_ru/language.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/my/ru_ru/registration.php b/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/my/ru_ru/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/second/en_gb/1.csv b/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/second/en_gb/1.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/second/en_gb/language.xml b/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/second/en_gb/language.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/second/en_gb/registration.php b/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/second/en_gb/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/theirs/ru_ru/1.csv b/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/theirs/ru_ru/1.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/theirs/ru_ru/language.xml b/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/theirs/ru_ru/language.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/theirs/ru_ru/registration.php b/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/theirs/ru_ru/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/ObjectManager/ConfigLoaderTest.php b/dev/tests/integration/testsuite/Magento/Framework/App/ObjectManager/ConfigLoaderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/ResourceConnection/ConnectionFactoryTest.php b/dev/tests/integration/testsuite/Magento/Framework/App/ResourceConnection/ConnectionFactoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/Response/HeaderProvider/AbstractHeaderTestCase.php b/dev/tests/integration/testsuite/Magento/Framework/App/Response/HeaderProvider/AbstractHeaderTestCase.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/Response/HeaderProvider/HstsTest.php b/dev/tests/integration/testsuite/Magento/Framework/App/Response/HeaderProvider/HstsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/Response/HeaderProvider/UpgradeInsecureTest.php b/dev/tests/integration/testsuite/Magento/Framework/App/Response/HeaderProvider/UpgradeInsecureTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/Response/HeaderProvider/XFrameOptionsTest.php b/dev/tests/integration/testsuite/Magento/Framework/App/Response/HeaderProvider/XFrameOptionsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/Route/ConfigTest.php b/dev/tests/integration/testsuite/Magento/Framework/App/Route/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/Router/BaseTest.php b/dev/tests/integration/testsuite/Magento/Framework/App/Router/BaseTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/Utility/FilesTest.php b/dev/tests/integration/testsuite/Magento/Framework/App/Utility/FilesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/Utility/_files/fixtures/language/One.php b/dev/tests/integration/testsuite/Magento/Framework/App/Utility/_files/fixtures/language/One.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/Utility/_files/fixtures/language/one.csv b/dev/tests/integration/testsuite/Magento/Framework/App/Utility/_files/fixtures/language/one.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/Utility/_files/fixtures/language/registration.php b/dev/tests/integration/testsuite/Magento/Framework/App/Utility/_files/fixtures/language/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/Utility/_files/fixtures/library/One.php b/dev/tests/integration/testsuite/Magento/Framework/App/Utility/_files/fixtures/library/One.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/Utility/_files/fixtures/library/registration.php b/dev/tests/integration/testsuite/Magento/Framework/App/Utility/_files/fixtures/library/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/Utility/_files/fixtures/module/One.php b/dev/tests/integration/testsuite/Magento/Framework/App/Utility/_files/fixtures/module/One.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/Utility/_files/fixtures/module/registration.php b/dev/tests/integration/testsuite/Magento/Framework/App/Utility/_files/fixtures/module/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/Utility/_files/fixtures/theme/One.php b/dev/tests/integration/testsuite/Magento/Framework/App/Utility/_files/fixtures/theme/One.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/Utility/_files/fixtures/theme/registration.php b/dev/tests/integration/testsuite/Magento/Framework/App/Utility/_files/fixtures/theme/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/Utility/_files/patterns/paths_one.txt b/dev/tests/integration/testsuite/Magento/Framework/App/Utility/_files/patterns/paths_one.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/Utility/_files/patterns/paths_two.txt b/dev/tests/integration/testsuite/Magento/Framework/App/Utility/_files/patterns/paths_two.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/App/View/Deployment/VersionTest.php b/dev/tests/integration/testsuite/Magento/Framework/App/View/Deployment/VersionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Backup/FilesystemTest.php b/dev/tests/integration/testsuite/Magento/Framework/Backup/FilesystemTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Backup/_files/var/backups/1474538269_filesystem_code.tgz b/dev/tests/integration/testsuite/Magento/Framework/Backup/_files/var/backups/1474538269_filesystem_code.tgz
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Cache/Backend/MongoDbTest.php b/dev/tests/integration/testsuite/Magento/Framework/Cache/Backend/MongoDbTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Cache/CoreTest.php b/dev/tests/integration/testsuite/Magento/Framework/Cache/CoreTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Code/GeneratorTest.php b/dev/tests/integration/testsuite/Magento/Framework/Code/GeneratorTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Code/GeneratorTest/ParentClassWithNamespace.php b/dev/tests/integration/testsuite/Magento/Framework/Code/GeneratorTest/ParentClassWithNamespace.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Code/GeneratorTest/SourceClassWithNamespace.php b/dev/tests/integration/testsuite/Magento/Framework/Code/GeneratorTest/SourceClassWithNamespace.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Code/GeneratorTest/SourceClassWithNamespaceExtension.php b/dev/tests/integration/testsuite/Magento/Framework/Code/GeneratorTest/SourceClassWithNamespaceExtension.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Code/Reader/SourceArgumentsReaderTest.php b/dev/tests/integration/testsuite/Magento/Framework/Code/Reader/SourceArgumentsReaderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Code/Reader/_files/SourceArgumentsReaderTest.php.sample b/dev/tests/integration/testsuite/Magento/Framework/Code/Reader/_files/SourceArgumentsReaderTest.php.sample
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Code/_expected/SourceClassWithNamespaceExtensionInterfaceFactory.php.sample b/dev/tests/integration/testsuite/Magento/Framework/Code/_expected/SourceClassWithNamespaceExtensionInterfaceFactory.php.sample
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Code/_expected/SourceClassWithNamespaceFactory.php.sample b/dev/tests/integration/testsuite/Magento/Framework/Code/_expected/SourceClassWithNamespaceFactory.php.sample
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Code/_expected/SourceClassWithNamespaceInterceptor.php.sample b/dev/tests/integration/testsuite/Magento/Framework/Code/_expected/SourceClassWithNamespaceInterceptor.php.sample
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Code/_expected/SourceClassWithNamespaceProxy.php.sample b/dev/tests/integration/testsuite/Magento/Framework/Code/_expected/SourceClassWithNamespaceProxy.php.sample
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Code/_files/ClassToFind.php b/dev/tests/integration/testsuite/Magento/Framework/Code/_files/ClassToFind.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Communication/ConfigTest.php b/dev/tests/integration/testsuite/Magento/Framework/Communication/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_incorrect_request_schema_type.php b/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_incorrect_request_schema_type.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_invalid_topic_name.php b/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_invalid_topic_name.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_is_synchronous_is_not_boolean.php b/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_is_synchronous_is_not_boolean.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_missing_handler.xml b/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_missing_handler.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_missing_request.xml b/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_missing_request.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_multiple_handlers_synchronous_mode.php b/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_multiple_handlers_synchronous_mode.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_multiple_handlers_synchronous_mode.xml b/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_multiple_handlers_synchronous_mode.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_no_attributes.xml b/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_no_attributes.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_not_existing_handler_method.php b/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_not_existing_handler_method.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_not_existing_handler_method.xml b/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_not_existing_handler_method.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_not_existing_service.xml b/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_not_existing_service.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_not_existing_service_method.xml b/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_not_existing_service_method.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_request_not_existing_service.php b/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_request_not_existing_service.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_request_not_existing_service.xml b/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_request_not_existing_service.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_response_not_existing_service.php b/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_response_not_existing_service.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_response_not_existing_service.xml b/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_response_not_existing_service.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_topic_with_excessive_keys.php b/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_topic_with_excessive_keys.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_topic_with_missed_keys.php b/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_topic_with_missed_keys.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_topic_without_data.php b/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_topic_without_data.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_with_disabled_handler.php b/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_with_disabled_handler.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_with_non_matched_name.php b/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/communication_with_non_matched_name.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/invalid_communication_numeric.xml b/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/invalid_communication_numeric.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/valid_communication.xml b/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/valid_communication.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/valid_communication_expected.php b/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/valid_communication_expected.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/valid_communication_input.php b/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/valid_communication_input.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/valid_communication_numeric.xml b/dev/tests/integration/testsuite/Magento/Framework/Communication/_files/valid_communication_numeric.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Composer/ComposerInformationTest.php b/dev/tests/integration/testsuite/Magento/Framework/Composer/ComposerInformationTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Composer/RemoveTest.php b/dev/tests/integration/testsuite/Magento/Framework/Composer/RemoveTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Composer/_files/testFromClone/.htaccess b/dev/tests/integration/testsuite/Magento/Framework/Composer/_files/testFromClone/.htaccess
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Composer/_files/testFromClone/cache/.htaccess b/dev/tests/integration/testsuite/Magento/Framework/Composer/_files/testFromClone/cache/.htaccess
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Composer/_files/testFromClone/composer.json b/dev/tests/integration/testsuite/Magento/Framework/Composer/_files/testFromClone/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Composer/_files/testFromClone/composer.lock b/dev/tests/integration/testsuite/Magento/Framework/Composer/_files/testFromClone/composer.lock
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Composer/_files/testFromClone/vendor/README b/dev/tests/integration/testsuite/Magento/Framework/Composer/_files/testFromClone/vendor/README
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Composer/_files/testFromCreateProject/.htaccess b/dev/tests/integration/testsuite/Magento/Framework/Composer/_files/testFromCreateProject/.htaccess
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Composer/_files/testFromCreateProject/cache/.htaccess b/dev/tests/integration/testsuite/Magento/Framework/Composer/_files/testFromCreateProject/cache/.htaccess
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Composer/_files/testFromCreateProject/composer.json b/dev/tests/integration/testsuite/Magento/Framework/Composer/_files/testFromCreateProject/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Composer/_files/testFromCreateProject/composer.lock b/dev/tests/integration/testsuite/Magento/Framework/Composer/_files/testFromCreateProject/composer.lock
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Composer/_files/testFromCreateProject/vendor/README b/dev/tests/integration/testsuite/Magento/Framework/Composer/_files/testFromCreateProject/vendor/README
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Composer/_files/testSkeleton/.htaccess b/dev/tests/integration/testsuite/Magento/Framework/Composer/_files/testSkeleton/.htaccess
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Composer/_files/testSkeleton/cache/.htaccess b/dev/tests/integration/testsuite/Magento/Framework/Composer/_files/testSkeleton/cache/.htaccess
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Composer/_files/testSkeleton/composer.json b/dev/tests/integration/testsuite/Magento/Framework/Composer/_files/testSkeleton/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Composer/_files/testSkeleton/composer.lock b/dev/tests/integration/testsuite/Magento/Framework/Composer/_files/testSkeleton/composer.lock
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Composer/_files/testSkeleton/vendor/README b/dev/tests/integration/testsuite/Magento/Framework/Composer/_files/testSkeleton/vendor/README
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Composer/_files/vendor_path.php b/dev/tests/integration/testsuite/Magento/Framework/Composer/_files/vendor_path.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Config/ConverterTest.php b/dev/tests/integration/testsuite/Magento/Framework/Config/ConverterTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/Adapter/CssInlinerTest.php b/dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/Adapter/CssInlinerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/File/Collector/AggregatedTest.php b/dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/File/Collector/AggregatedTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/code/Magento/Other/registration.php b/dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/code/Magento/Other/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/code/Magento/Other/view/frontend/web/3.less b/dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/code/Magento/Other/view/frontend/web/3.less
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/code/Magento/Third/registration.php b/dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/code/Magento/Third/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/code/Magento/Third/view/frontend/web/3.less b/dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/code/Magento/Third/view/frontend/web/3.less
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/design/frontend/Test/default/MagentoFrameworkCssTest_Module/web/1.file b/dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/design/frontend/Test/default/MagentoFrameworkCssTest_Module/web/1.file
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/design/frontend/Test/default/MagentoFrameworkCssTest_Third/web/3.less b/dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/design/frontend/Test/default/MagentoFrameworkCssTest_Third/web/3.less
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/design/frontend/Test/default/registration.php b/dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/design/frontend/Test/default/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/design/frontend/Test/default/theme.xml b/dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/design/frontend/Test/default/theme.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/design/frontend/Test/default/web/1.file b/dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/design/frontend/Test/default/web/1.file
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/design/frontend/Test/parent/MagentoFrameworkCssTest_Module/web/1.file b/dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/design/frontend/Test/parent/MagentoFrameworkCssTest_Module/web/1.file
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/design/frontend/Test/parent/MagentoFrameworkCssTest_Second/web/1.file b/dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/design/frontend/Test/parent/MagentoFrameworkCssTest_Second/web/1.file
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/design/frontend/Test/parent/registration.php b/dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/design/frontend/Test/parent/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/design/frontend/Test/parent/theme.xml b/dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/design/frontend/Test/parent/theme.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/lib/web/1.file b/dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/lib/web/1.file
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/lib/web/2.file b/dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/lib/web/2.file
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/lib/web/3.less b/dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/lib/web/3.less
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/lib/web/some_dir/import_dir/import_in_magento_import.less b/dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/lib/web/some_dir/import_dir/import_in_magento_import.less
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/lib/web/some_dir/magento_import.less b/dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/lib/web/some_dir/magento_import.less
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Css/_files/css/test-css-no-spaces.css b/dev/tests/integration/testsuite/Magento/Framework/Css/_files/css/test-css-no-spaces.css
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Css/_files/css/test-css-with-spaces.css b/dev/tests/integration/testsuite/Magento/Framework/Css/_files/css/test-css-with-spaces.css
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Css/_files/css/test-input.html b/dev/tests/integration/testsuite/Magento/Framework/Css/_files/css/test-input.html
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/DB/Adapter/InterfaceTest.php b/dev/tests/integration/testsuite/Magento/Framework/DB/Adapter/InterfaceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/DB/Adapter/Pdo/MysqlTest.php b/dev/tests/integration/testsuite/Magento/Framework/DB/Adapter/Pdo/MysqlTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/DB/DataConverter/DataConverterTest.php b/dev/tests/integration/testsuite/Magento/Framework/DB/DataConverter/DataConverterTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/DB/HelperTest.php b/dev/tests/integration/testsuite/Magento/Framework/DB/HelperTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/DB/TransactionTest.php b/dev/tests/integration/testsuite/Magento/Framework/DB/TransactionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Data/Argument/Interpreter/BaseStringUtilsTest.php b/dev/tests/integration/testsuite/Magento/Framework/Data/Argument/Interpreter/BaseStringUtilsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Data/Argument/Interpreter/StringUtilsTest.php b/dev/tests/integration/testsuite/Magento/Framework/Data/Argument/Interpreter/StringUtilsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Data/Form/Element/DateTest.php b/dev/tests/integration/testsuite/Magento/Framework/Data/Form/Element/DateTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Data/Form/Element/FieldsetTest.php b/dev/tests/integration/testsuite/Magento/Framework/Data/Form/Element/FieldsetTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Data/Form/Element/ImageTest.php b/dev/tests/integration/testsuite/Magento/Framework/Data/Form/Element/ImageTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Data/Wysiwyg/NormalizerTest.php b/dev/tests/integration/testsuite/Magento/Framework/Data/Wysiwyg/NormalizerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/DataObject/Copy/Config/ReaderTest.php b/dev/tests/integration/testsuite/Magento/Framework/DataObject/Copy/Config/ReaderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/DataObject/Copy/Config/_files/expectedArray.php b/dev/tests/integration/testsuite/Magento/Framework/DataObject/Copy/Config/_files/expectedArray.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/DataObject/Copy/Config/_files/fieldset.xml b/dev/tests/integration/testsuite/Magento/Framework/DataObject/Copy/Config/_files/fieldset.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/DataObject/Copy/Config/_files/partialFieldsetFirst.xml b/dev/tests/integration/testsuite/Magento/Framework/DataObject/Copy/Config/_files/partialFieldsetFirst.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/DataObject/Copy/Config/_files/partialFieldsetSecond.xml b/dev/tests/integration/testsuite/Magento/Framework/DataObject/Copy/Config/_files/partialFieldsetSecond.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/DataObject/CopyTest.php b/dev/tests/integration/testsuite/Magento/Framework/DataObject/CopyTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/DataObject/_files/Magento/Wonderland/Api/Data/FakeAttributeMetadataInterface.php b/dev/tests/integration/testsuite/Magento/Framework/DataObject/_files/Magento/Wonderland/Api/Data/FakeAttributeMetadataInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/DataObject/_files/Magento/Wonderland/Api/Data/FakeCustomerInterface.php b/dev/tests/integration/testsuite/Magento/Framework/DataObject/_files/Magento/Wonderland/Api/Data/FakeCustomerInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/DataObject/_files/Magento/Wonderland/Model/Data/FakeAttributeMetadata.php b/dev/tests/integration/testsuite/Magento/Framework/DataObject/_files/Magento/Wonderland/Model/Data/FakeAttributeMetadata.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/DataObject/_files/Magento/Wonderland/Model/Data/FakeCustomer.php b/dev/tests/integration/testsuite/Magento/Framework/DataObject/_files/Magento/Wonderland/Model/Data/FakeCustomer.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/DataObject/_files/Magento/Wonderland/Model/FakeAttributeMetadata.php b/dev/tests/integration/testsuite/Magento/Framework/DataObject/_files/Magento/Wonderland/Model/FakeAttributeMetadata.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/DataObject/_files/Magento/Wonderland/Model/FakeCustomer.php b/dev/tests/integration/testsuite/Magento/Framework/DataObject/_files/Magento/Wonderland/Model/FakeCustomer.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Encryption/EncryptorTest.php b/dev/tests/integration/testsuite/Magento/Framework/Encryption/EncryptorTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Encryption/ModelTest.php b/dev/tests/integration/testsuite/Magento/Framework/Encryption/ModelTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Error/ProcessorTest.php b/dev/tests/integration/testsuite/Magento/Framework/Error/ProcessorTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Exception/NoSuchEntityExceptionTest.php b/dev/tests/integration/testsuite/Magento/Framework/Exception/NoSuchEntityExceptionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/File/SizeTest.php b/dev/tests/integration/testsuite/Magento/Framework/File/SizeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Filesystem/Directory/ReadTest.php b/dev/tests/integration/testsuite/Magento/Framework/Filesystem/Directory/ReadTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Filesystem/Directory/WriteTest.php b/dev/tests/integration/testsuite/Magento/Framework/Filesystem/Directory/WriteTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Filesystem/Driver/FileTest.php b/dev/tests/integration/testsuite/Magento/Framework/Filesystem/Driver/FileTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Filesystem/File/ReadTest.php b/dev/tests/integration/testsuite/Magento/Framework/Filesystem/File/ReadTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Filesystem/File/WriteTest.php b/dev/tests/integration/testsuite/Magento/Framework/Filesystem/File/WriteTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Filesystem/FileResolverTest.php b/dev/tests/integration/testsuite/Magento/Framework/Filesystem/FileResolverTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Filesystem/FilesystemTest.php b/dev/tests/integration/testsuite/Magento/Framework/Filesystem/FilesystemTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Filesystem/_files/ClassToFind.php b/dev/tests/integration/testsuite/Magento/Framework/Filesystem/_files/ClassToFind.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Filesystem/_files/data.csv b/dev/tests/integration/testsuite/Magento/Framework/Filesystem/_files/data.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Filesystem/_files/foo/bar/baz/file_one.txt b/dev/tests/integration/testsuite/Magento/Framework/Filesystem/_files/foo/bar/baz/file_one.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Filesystem/_files/foo/bar/file_two.txt b/dev/tests/integration/testsuite/Magento/Framework/Filesystem/_files/foo/bar/file_two.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Filesystem/_files/foo/file_three.txt b/dev/tests/integration/testsuite/Magento/Framework/Filesystem/_files/foo/file_three.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Filesystem/_files/popup.csv b/dev/tests/integration/testsuite/Magento/Framework/Filesystem/_files/popup.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Filter/Template/Tokenizer/ParameterTest.php b/dev/tests/integration/testsuite/Magento/Framework/Filter/Template/Tokenizer/ParameterTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/HTTP/HeaderTest.php b/dev/tests/integration/testsuite/Magento/Framework/HTTP/HeaderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/HTTP/PhpEnvironment/RemoteAddressTest.php b/dev/tests/integration/testsuite/Magento/Framework/HTTP/PhpEnvironment/RemoteAddressTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/HTTP/PhpEnvironment/ServerAddressTest.php b/dev/tests/integration/testsuite/Magento/Framework/HTTP/PhpEnvironment/ServerAddressTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Image/Adapter/ConfigTest.php b/dev/tests/integration/testsuite/Magento/Framework/Image/Adapter/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Image/Adapter/InterfaceTest.php b/dev/tests/integration/testsuite/Magento/Framework/Image/Adapter/InterfaceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Image/_files/image_adapters_test.png b/dev/tests/integration/testsuite/Magento/Framework/Image/_files/image_adapters_test.png
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Image/_files/magento_thumbnail.jpg b/dev/tests/integration/testsuite/Magento/Framework/Image/_files/magento_thumbnail.jpg
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Image/_files/watermark.gif b/dev/tests/integration/testsuite/Magento/Framework/Image/_files/watermark.gif
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Image/_files/watermark.jpg b/dev/tests/integration/testsuite/Magento/Framework/Image/_files/watermark.jpg
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Image/_files/watermark.png b/dev/tests/integration/testsuite/Magento/Framework/Image/_files/watermark.png
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Interception/AbstractPlugin.php b/dev/tests/integration/testsuite/Magento/Framework/Interception/AbstractPlugin.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Interception/Fixture/Intercepted.php b/dev/tests/integration/testsuite/Magento/Framework/Interception/Fixture/Intercepted.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Interception/Fixture/Intercepted/FirstPlugin.php b/dev/tests/integration/testsuite/Magento/Framework/Interception/Fixture/Intercepted/FirstPlugin.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Interception/Fixture/Intercepted/InterfacePlugin.php b/dev/tests/integration/testsuite/Magento/Framework/Interception/Fixture/Intercepted/InterfacePlugin.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Interception/Fixture/Intercepted/Plugin.php b/dev/tests/integration/testsuite/Magento/Framework/Interception/Fixture/Intercepted/Plugin.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Interception/Fixture/InterceptedInterface.php b/dev/tests/integration/testsuite/Magento/Framework/Interception/Fixture/InterceptedInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Interception/Fixture/InterceptedParent.php b/dev/tests/integration/testsuite/Magento/Framework/Interception/Fixture/InterceptedParent.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Interception/Fixture/InterceptedParentInterface.php b/dev/tests/integration/testsuite/Magento/Framework/Interception/Fixture/InterceptedParentInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Interception/GeneralTest.php b/dev/tests/integration/testsuite/Magento/Framework/Interception/GeneralTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Interception/TwoPluginTest.php b/dev/tests/integration/testsuite/Magento/Framework/Interception/TwoPluginTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Json/Helper/DataTest.php b/dev/tests/integration/testsuite/Magento/Framework/Json/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Mail/MessageTest.php b/dev/tests/integration/testsuite/Magento/Framework/Mail/MessageTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Message/CollectionFactoryTest.php b/dev/tests/integration/testsuite/Magento/Framework/Message/CollectionFactoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Message/FactoryTest.php b/dev/tests/integration/testsuite/Magento/Framework/Message/FactoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Message/ManagerTest.php b/dev/tests/integration/testsuite/Magento/Framework/Message/ManagerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Model/Entity/HydratorTest.php b/dev/tests/integration/testsuite/Magento/Framework/Model/Entity/HydratorTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Model/ResourceModel/Db/AbstractTest.php b/dev/tests/integration/testsuite/Magento/Framework/Model/ResourceModel/Db/AbstractTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Model/ResourceModel/Db/Collection/AbstractTest.php b/dev/tests/integration/testsuite/Magento/Framework/Model/ResourceModel/Db/Collection/AbstractTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Model/ResourceModel/Db/ProfilerTest.php b/dev/tests/integration/testsuite/Magento/Framework/Model/ResourceModel/Db/ProfilerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Model/ResourceModel/Entity/TableTest.php b/dev/tests/integration/testsuite/Magento/Framework/Model/ResourceModel/Entity/TableTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Model/ResourceModel/IteratorTest.php b/dev/tests/integration/testsuite/Magento/Framework/Model/ResourceModel/IteratorTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Model/ResourceModel/Type/Db/ConnectionFactoryTest.php b/dev/tests/integration/testsuite/Magento/Framework/Model/ResourceModel/Type/Db/ConnectionFactoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Model/ResourceModel/Type/Db/Pdo/MysqlTest.php b/dev/tests/integration/testsuite/Magento/Framework/Model/ResourceModel/Type/Db/Pdo/MysqlTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Model/ResourceTest.php b/dev/tests/integration/testsuite/Magento/Framework/Model/ResourceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Module/Plugin/DbStatusValidatorTest.php b/dev/tests/integration/testsuite/Magento/Framework/Module/Plugin/DbStatusValidatorTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Mview/View/ChangelogTest.php b/dev/tests/integration/testsuite/Magento/Framework/Mview/View/ChangelogTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/Config/Reader/DomTest.php b/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/Config/Reader/DomTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/Factory/AbstractFactoryRuntimeDefinitionsTestCases.php b/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/Factory/AbstractFactoryRuntimeDefinitionsTestCases.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/Factory/CompiledTest.php b/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/Factory/CompiledTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/Factory/Dynamic/DeveloperTest.php b/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/Factory/Dynamic/DeveloperTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/ObjectManagerTest.php b/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/ObjectManagerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/Basic.php b/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/Basic.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/BasicInjection.php b/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/BasicInjection.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/ComplexDependencies.php b/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/ComplexDependencies.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/ConstructorEightArguments.php b/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/ConstructorEightArguments.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/ConstructorFiveArguments.php b/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/ConstructorFiveArguments.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/ConstructorFourArguments.php b/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/ConstructorFourArguments.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/ConstructorNineArguments.php b/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/ConstructorNineArguments.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/ConstructorNoArguments.php b/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/ConstructorNoArguments.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/ConstructorOneArgument.php b/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/ConstructorOneArgument.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/ConstructorSevenArguments.php b/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/ConstructorSevenArguments.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/ConstructorSixArguments.php b/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/ConstructorSixArguments.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/ConstructorTenArguments.php b/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/ConstructorTenArguments.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/ConstructorThreeArguments.php b/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/ConstructorThreeArguments.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/ConstructorTwoArguments.php b/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/ConstructorTwoArguments.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/DependsOnAlias.php b/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/DependsOnAlias.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/DependsOnInterface.php b/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/DependsOnInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/HasOptionalParameters.php b/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/HasOptionalParameters.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/InterfaceImplementation.php b/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/InterfaceImplementation.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/InterfaceInjection.php b/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/InterfaceInjection.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/TestAssetInterface.php b/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/TestAsset/TestAssetInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/_files/config_merged.xml b/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/_files/config_merged.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/_files/config_one.xml b/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/_files/config_one.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/_files/config_two.xml b/dev/tests/integration/testsuite/Magento/Framework/ObjectManager/_files/config_two.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Pricing/Helper/DataTest.php b/dev/tests/integration/testsuite/Magento/Framework/Pricing/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Profiler/Driver/Standard/Output/CsvfileTest.php b/dev/tests/integration/testsuite/Magento/Framework/Profiler/Driver/Standard/Output/CsvfileTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Profiler/Driver/Standard/Output/HtmlTest.php b/dev/tests/integration/testsuite/Magento/Framework/Profiler/Driver/Standard/Output/HtmlTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Profiler/Driver/Standard/Output/_files/output.html b/dev/tests/integration/testsuite/Magento/Framework/Profiler/Driver/Standard/Output/_files/output.html
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Profiler/Driver/Standard/Output/_files/output_custom.csv b/dev/tests/integration/testsuite/Magento/Framework/Profiler/Driver/Standard/Output/_files/output_custom.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Profiler/Driver/Standard/Output/_files/output_default.csv b/dev/tests/integration/testsuite/Magento/Framework/Profiler/Driver/Standard/Output/_files/output_default.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Profiler/Driver/Standard/Output/_files/timers.php b/dev/tests/integration/testsuite/Magento/Framework/Profiler/Driver/Standard/Output/_files/timers.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/ProfilerTest.php b/dev/tests/integration/testsuite/Magento/Framework/ProfilerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Reflection/MethodsMapTest.php b/dev/tests/integration/testsuite/Magento/Framework/Reflection/MethodsMapTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Search/Adapter/Mysql/AdapterTest.php b/dev/tests/integration/testsuite/Magento/Framework/Search/Adapter/Mysql/AdapterTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Search/Adapter/Mysql/Builder/Query/MatchTest.php b/dev/tests/integration/testsuite/Magento/Framework/Search/Adapter/Mysql/Builder/Query/MatchTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Search/Request/Config/ConverterTest.php b/dev/tests/integration/testsuite/Magento/Framework/Search/Request/Config/ConverterTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Search/Request/Config/FileResolverStub.php b/dev/tests/integration/testsuite/Magento/Framework/Search/Request/Config/FileResolverStub.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Search/Request/Config/FileSystemReaderTest.php b/dev/tests/integration/testsuite/Magento/Framework/Search/Request/Config/FileSystemReaderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Search/Request/MapperTest.php b/dev/tests/integration/testsuite/Magento/Framework/Search/Request/MapperTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Search/_files/configurable_attribute.php b/dev/tests/integration/testsuite/Magento/Framework/Search/_files/configurable_attribute.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Search/_files/configurable_attribute_rollback.php b/dev/tests/integration/testsuite/Magento/Framework/Search/_files/configurable_attribute_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Search/_files/date_attribute.php b/dev/tests/integration/testsuite/Magento/Framework/Search/_files/date_attribute.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Search/_files/date_attribute_rollback.php b/dev/tests/integration/testsuite/Magento/Framework/Search/_files/date_attribute_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Search/_files/etc/search_request_1.xml b/dev/tests/integration/testsuite/Magento/Framework/Search/_files/etc/search_request_1.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Search/_files/etc/search_request_2.xml b/dev/tests/integration/testsuite/Magento/Framework/Search/_files/etc/search_request_2.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Search/_files/filterable_attribute.php b/dev/tests/integration/testsuite/Magento/Framework/Search/_files/filterable_attribute.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Search/_files/filterable_attribute_rollback.php b/dev/tests/integration/testsuite/Magento/Framework/Search/_files/filterable_attribute_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Search/_files/filterable_attributes.php b/dev/tests/integration/testsuite/Magento/Framework/Search/_files/filterable_attributes.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Search/_files/filterable_attributes_rollback.php b/dev/tests/integration/testsuite/Magento/Framework/Search/_files/filterable_attributes_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Search/_files/product_configurable.php b/dev/tests/integration/testsuite/Magento/Framework/Search/_files/product_configurable.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Search/_files/product_configurable_rollback.php b/dev/tests/integration/testsuite/Magento/Framework/Search/_files/product_configurable_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Search/_files/product_configurable_with_disabled_child.php b/dev/tests/integration/testsuite/Magento/Framework/Search/_files/product_configurable_with_disabled_child.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Search/_files/product_configurable_with_disabled_child_rollback.php b/dev/tests/integration/testsuite/Magento/Framework/Search/_files/product_configurable_with_disabled_child_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Search/_files/products.php b/dev/tests/integration/testsuite/Magento/Framework/Search/_files/products.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Search/_files/products_multi_option.php b/dev/tests/integration/testsuite/Magento/Framework/Search/_files/products_multi_option.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Search/_files/products_multi_option_rollback.php b/dev/tests/integration/testsuite/Magento/Framework/Search/_files/products_multi_option_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Search/_files/products_rollback.php b/dev/tests/integration/testsuite/Magento/Framework/Search/_files/products_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Search/_files/products_with_the_same_search_score.php b/dev/tests/integration/testsuite/Magento/Framework/Search/_files/products_with_the_same_search_score.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Search/_files/products_with_the_same_search_score_rollback.php b/dev/tests/integration/testsuite/Magento/Framework/Search/_files/products_with_the_same_search_score_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Search/_files/requests.xml b/dev/tests/integration/testsuite/Magento/Framework/Search/_files/requests.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Search/_files/search_request.xml b/dev/tests/integration/testsuite/Magento/Framework/Search/_files/search_request.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Search/_files/search_request_config.php b/dev/tests/integration/testsuite/Magento/Framework/Search/_files/search_request_config.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Search/_files/search_request_merged.php b/dev/tests/integration/testsuite/Magento/Framework/Search/_files/search_request_merged.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Search/_files/search_weight_products.php b/dev/tests/integration/testsuite/Magento/Framework/Search/_files/search_weight_products.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Search/_files/search_weight_products_rollback.php b/dev/tests/integration/testsuite/Magento/Framework/Search/_files/search_weight_products_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Session/Config/Validator/CookieDomainValidatorTest.php b/dev/tests/integration/testsuite/Magento/Framework/Session/Config/Validator/CookieDomainValidatorTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Session/Config/Validator/CookieLifetimeValidatorTest.php b/dev/tests/integration/testsuite/Magento/Framework/Session/Config/Validator/CookieLifetimeValidatorTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Session/Config/Validator/CookiePathValidatorTest.php b/dev/tests/integration/testsuite/Magento/Framework/Session/Config/Validator/CookiePathValidatorTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Session/ConfigTest.php b/dev/tests/integration/testsuite/Magento/Framework/Session/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Session/SaveHandler/DbTableTest.php b/dev/tests/integration/testsuite/Magento/Framework/Session/SaveHandler/DbTableTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Session/SaveHandlerTest.php b/dev/tests/integration/testsuite/Magento/Framework/Session/SaveHandlerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Session/SessionManagerTest.php b/dev/tests/integration/testsuite/Magento/Framework/Session/SessionManagerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Session/SidResolverTest.php b/dev/tests/integration/testsuite/Magento/Framework/Session/SidResolverTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Stdlib/Cookie/CookieScopeTest.php b/dev/tests/integration/testsuite/Magento/Framework/Stdlib/Cookie/CookieScopeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Stdlib/Cookie/PhpCookieManagerTest.php b/dev/tests/integration/testsuite/Magento/Framework/Stdlib/Cookie/PhpCookieManagerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Stdlib/Cookie/PhpCookieReaderTest.php b/dev/tests/integration/testsuite/Magento/Framework/Stdlib/Cookie/PhpCookieReaderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Stdlib/DateTime/Filter/DateTest.php b/dev/tests/integration/testsuite/Magento/Framework/Stdlib/DateTime/Filter/DateTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Stdlib/DateTime/Filter/DateTimeTest.php b/dev/tests/integration/testsuite/Magento/Framework/Stdlib/DateTime/Filter/DateTimeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Translate/InlineTest.php b/dev/tests/integration/testsuite/Magento/Framework/Translate/InlineTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Translate/_files/_inline_page_expected.html b/dev/tests/integration/testsuite/Magento/Framework/Translate/_files/_inline_page_expected.html
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Translate/_files/_inline_page_original.html b/dev/tests/integration/testsuite/Magento/Framework/Translate/_files/_inline_page_original.html
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Translate/_files/_translation_data.php b/dev/tests/integration/testsuite/Magento/Framework/Translate/_files/_translation_data.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/TranslateCachingTest.php b/dev/tests/integration/testsuite/Magento/Framework/TranslateCachingTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/TranslateTest.php b/dev/tests/integration/testsuite/Magento/Framework/TranslateTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Url/Helper/DataTest.php b/dev/tests/integration/testsuite/Magento/Framework/Url/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/UrlTest.php b/dev/tests/integration/testsuite/Magento/Framework/UrlTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/Validator/FactoryTest.php b/dev/tests/integration/testsuite/Magento/Framework/Validator/FactoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/ValidatorFactoryTest.php b/dev/tests/integration/testsuite/Magento/Framework/ValidatorFactoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Asset/MinifierTest.php b/dev/tests/integration/testsuite/Magento/Framework/View/Asset/MinifierTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Design/Fallback/RulePoolTest.php b/dev/tests/integration/testsuite/Magento/Framework/View/Design/Fallback/RulePoolTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Design/FileResolution/FallbackTest.php b/dev/tests/integration/testsuite/Magento/Framework/View/Design/FileResolution/FallbackTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Design/Theme/LabelTest.php b/dev/tests/integration/testsuite/Magento/Framework/View/Design/Theme/LabelTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Design/Theme/ValidatorTest.php b/dev/tests/integration/testsuite/Magento/Framework/View/Design/Theme/ValidatorTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Element/AbstractBlockTest.php b/dev/tests/integration/testsuite/Magento/Framework/View/Element/AbstractBlockTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Element/TemplateTest.php b/dev/tests/integration/testsuite/Magento/Framework/View/Element/TemplateTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Element/Text/ListTest.php b/dev/tests/integration/testsuite/Magento/Framework/View/Element/Text/ListTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Element/TextTest.php b/dev/tests/integration/testsuite/Magento/Framework/View/Element/TextTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Element/UiComponent/Config/Provider/TemplateTest.php b/dev/tests/integration/testsuite/Magento/Framework/View/Element/UiComponent/Config/Provider/TemplateTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Element/_files/frontend/Magento/plushe/css/wrong.css b/dev/tests/integration/testsuite/Magento/Framework/View/Element/_files/frontend/Magento/plushe/css/wrong.css
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/FileSystemTest.php b/dev/tests/integration/testsuite/Magento/Framework/View/FileSystemTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Fixture/Block/BrokenAction.php b/dev/tests/integration/testsuite/Magento/Framework/View/Fixture/Block/BrokenAction.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Fixture/Block/BrokenConstructor.php b/dev/tests/integration/testsuite/Magento/Framework/View/Fixture/Block/BrokenConstructor.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Fixture/Block/BrokenLayout.php b/dev/tests/integration/testsuite/Magento/Framework/View/Fixture/Block/BrokenLayout.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Layout/ElementTest.php b/dev/tests/integration/testsuite/Magento/Framework/View/Layout/ElementTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Layout/MergeTest.php b/dev/tests/integration/testsuite/Magento/Framework/View/Layout/MergeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Layout/Reader/_files/_layout_update_block.xml b/dev/tests/integration/testsuite/Magento/Framework/View/Layout/Reader/_files/_layout_update_block.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Layout/Reader/_files/_layout_update_reference.xml b/dev/tests/integration/testsuite/Magento/Framework/View/Layout/Reader/_files/_layout_update_reference.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/catalog_category_default.xml b/dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/catalog_category_default.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/catalog_category_layered.xml b/dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/catalog_category_layered.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/catalog_product_view.xml b/dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/catalog_product_view.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/catalog_product_view_type_configurable.xml b/dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/catalog_product_view_type_configurable.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/catalog_product_view_type_simple.xml b/dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/catalog_product_view_type_simple.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/checkout_index_index.xml b/dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/checkout_index_index.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/customer_account.xml b/dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/customer_account.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/default.xml b/dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/default.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/file_wrong.xml b/dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/file_wrong.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/fixture_handle_one.xml b/dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/fixture_handle_one.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/fixture_handle_page_layout.xml b/dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/fixture_handle_page_layout.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/fixture_handle_two.xml b/dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/fixture_handle_two.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/fixture_handle_with_page_layout.xml b/dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/fixture_handle_with_page_layout.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/not_a_page_type.xml b/dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/not_a_page_type.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/page_empty.xml b/dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/page_empty.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/print.xml b/dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/print.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/sales_guest_print.xml b/dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/sales_guest_print.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/sales_order_print.xml b/dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/layout/sales_order_print.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/merged.xml b/dev/tests/integration/testsuite/Magento/Framework/View/Layout/_mergeFiles/merged.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/LayoutArgumentObjectUpdater.php b/dev/tests/integration/testsuite/Magento/Framework/View/LayoutArgumentObjectUpdater.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/LayoutArgumentSimpleUpdater.php b/dev/tests/integration/testsuite/Magento/Framework/View/LayoutArgumentSimpleUpdater.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/LayoutTest.php b/dev/tests/integration/testsuite/Magento/Framework/View/LayoutTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/LayoutTestWithExceptions.php b/dev/tests/integration/testsuite/Magento/Framework/View/LayoutTestWithExceptions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Model/Layout/MergeTest.php b/dev/tests/integration/testsuite/Magento/Framework/View/Model/Layout/MergeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Model/Layout/_files/layout/fixture_handle_one.xml b/dev/tests/integration/testsuite/Magento/Framework/View/Model/Layout/_files/layout/fixture_handle_one.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Model/Layout/_files/layout/fixture_handle_two.xml b/dev/tests/integration/testsuite/Magento/Framework/View/Model/Layout/_files/layout/fixture_handle_two.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Page/Config/Reader/HtmlTest.php b/dev/tests/integration/testsuite/Magento/Framework/View/Page/Config/Reader/HtmlTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Page/Config/Reader/_files/_layout_update.xml b/dev/tests/integration/testsuite/Magento/Framework/View/Page/Config/Reader/_files/_layout_update.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Utility/Layout.php b/dev/tests/integration/testsuite/Magento/Framework/View/Utility/Layout.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Utility/LayoutTest.php b/dev/tests/integration/testsuite/Magento/Framework/View/Utility/LayoutTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Utility/_files/layout/handle_one.xml b/dev/tests/integration/testsuite/Magento/Framework/View/Utility/_files/layout/handle_one.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Utility/_files/layout/handle_three.xml b/dev/tests/integration/testsuite/Magento/Framework/View/Utility/_files/layout/handle_three.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Utility/_files/layout/handle_two.xml b/dev/tests/integration/testsuite/Magento/Framework/View/Utility/_files/layout/handle_two.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Utility/_files/layout_merged/multiple_handles.xml b/dev/tests/integration/testsuite/Magento/Framework/View/Utility/_files/layout_merged/multiple_handles.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/Utility/_files/layout_merged/single_handle.xml b/dev/tests/integration/testsuite/Magento/Framework/View/Utility/_files/layout_merged/single_handle.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/Fixture_Module/registration.php b/dev/tests/integration/testsuite/Magento/Framework/View/_files/Fixture_Module/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/Magento/ModuleA/view/adminhtml/product/product.css b/dev/tests/integration/testsuite/Magento/Framework/View/_files/Magento/ModuleA/view/adminhtml/product/product.css
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/Magento/ModuleB/view/adminhtml/images/gallery-image-base-label.png b/dev/tests/integration/testsuite/Magento/Framework/View/_files/Magento/ModuleB/view/adminhtml/images/gallery-image-base-label.png
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/Magento/ModuleC/view/adminhtml/images/allinone.png b/dev/tests/integration/testsuite/Magento/Framework/View/_files/Magento/ModuleC/view/adminhtml/images/allinone.png
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/Magento/ModuleC/view/adminhtml/images/logo.png b/dev/tests/integration/testsuite/Magento/Framework/View/_files/Magento/ModuleC/view/adminhtml/images/logo.png
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/Magento/ModuleC/view/adminhtml/styles.css b/dev/tests/integration/testsuite/Magento/Framework/View/_files/Magento/ModuleC/view/adminhtml/styles.css
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/UiComponent/expected/config.xml b/dev/tests/integration/testsuite/Magento/Framework/View/_files/UiComponent/expected/config.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/UiComponent/theme/Magento_Catalog/ui_component/test.xml b/dev/tests/integration/testsuite/Magento/Framework/View/_files/UiComponent/theme/Magento_Catalog/ui_component/test.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/UiComponent/theme/Magento_Customer/ui_component/test.xml b/dev/tests/integration/testsuite/Magento/Framework/View/_files/UiComponent/theme/Magento_Customer/ui_component/test.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/UiComponent/theme/registration.php b/dev/tests/integration/testsuite/Magento/Framework/View/_files/UiComponent/theme/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/UiComponent/theme/theme.xml b/dev/tests/integration/testsuite/Magento/Framework/View/_files/UiComponent/theme/theme.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/app/code/ViewTest_Module/registration.php b/dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/app/code/ViewTest_Module/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/custom_theme/ViewTest_Module/templates/fixture_template_two.phtml b/dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/custom_theme/ViewTest_Module/templates/fixture_template_two.phtml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/custom_theme/ViewTest_Module/web/fixture_script_two.js b/dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/custom_theme/ViewTest_Module/web/fixture_script_two.js
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/custom_theme/i18n/en_US.csv b/dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/custom_theme/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/custom_theme/registration.php b/dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/custom_theme/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/custom_theme/templates/fixture_template_two.phtml b/dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/custom_theme/templates/fixture_template_two.phtml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/custom_theme/theme.xml b/dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/custom_theme/theme.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/custom_theme/web/fixture_script_two.js b/dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/custom_theme/web/fixture_script_two.js
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/custom_theme/web/mage/script.js b/dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/custom_theme/web/mage/script.js
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/custom_theme2/registration.php b/dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/custom_theme2/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/custom_theme2/theme.xml b/dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/custom_theme2/theme.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/default/ViewTest_Module/templates/fixture_template.phtml b/dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/default/ViewTest_Module/templates/fixture_template.phtml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/default/ViewTest_Module/web/fixture_script.js b/dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/default/ViewTest_Module/web/fixture_script.js
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/default/ViewTest_Module/web/i18n/ru_RU/fixture_script.js b/dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/default/ViewTest_Module/web/i18n/ru_RU/fixture_script.js
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/default/i18n/en_US.csv b/dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/default/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/default/registration.php b/dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/default/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/default/templates/fixture_template.phtml b/dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/default/templates/fixture_template.phtml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/default/theme.xml b/dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/default/theme.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/default/web/fixture_script.js b/dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/default/web/fixture_script.js
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/default/web/i18n/ru_RU/fixture_script.js b/dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/default/web/i18n/ru_RU/fixture_script.js
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/standalone_theme/registration.php b/dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/standalone_theme/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/standalone_theme/theme.xml b/dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/standalone_theme/theme.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/lib/web/mage/script.js b/dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/lib/web/mage/script.js
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/layout/cacheable.xml b/dev/tests/integration/testsuite/Magento/Framework/View/_files/layout/cacheable.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/layout/container_attributes.xml b/dev/tests/integration/testsuite/Magento/Framework/View/_files/layout/container_attributes.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/layout/non_cacheable.xml b/dev/tests/integration/testsuite/Magento/Framework/View/_files/layout/non_cacheable.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/action_for_anonymous_parent_block.xml b/dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/action_for_anonymous_parent_block.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/arguments.xml b/dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/arguments.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/arguments_complex_values.xml b/dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/arguments_complex_values.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/arguments_object_type.xml b/dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/arguments_object_type.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/arguments_object_type_updaters.xml b/dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/arguments_object_type_updaters.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/arguments_url_type.xml b/dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/arguments_url_type.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/get_block.xml b/dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/get_block.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/group.xml b/dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/group.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/ifconfig.xml b/dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/ifconfig.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/move.xml b/dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/move.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/move_alias_broken.xml b/dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/move_alias_broken.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/move_broken.xml b/dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/move_broken.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/move_new_alias.xml b/dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/move_new_alias.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/move_the_same_alias.xml b/dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/move_the_same_alias.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/remove_cancellation.xml b/dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/remove_cancellation.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/render.xml b/dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/render.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/sort_after_after.xml b/dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/sort_after_after.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/sort_after_previous.xml b/dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/sort_after_previous.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/sort_before_after.xml b/dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/sort_before_after.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/sort_before_before.xml b/dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_directives_test/sort_before_before.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_with_exceptions/layout.xml b/dev/tests/integration/testsuite/Magento/Framework/View/_files/layout_with_exceptions/layout.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/static/expected/styles.magento.min.css b/dev/tests/integration/testsuite/Magento/Framework/View/_files/static/expected/styles.magento.min.css
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/static/expected/test.min.js b/dev/tests/integration/testsuite/Magento/Framework/View/_files/static/expected/test.min.js
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/static/theme/registration.php b/dev/tests/integration/testsuite/Magento/Framework/View/_files/static/theme/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/static/theme/theme.xml b/dev/tests/integration/testsuite/Magento/Framework/View/_files/static/theme/theme.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/static/theme/web/css/preminified-styles.min.css b/dev/tests/integration/testsuite/Magento/Framework/View/_files/static/theme/web/css/preminified-styles.min.css
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/static/theme/web/css/styles.css b/dev/tests/integration/testsuite/Magento/Framework/View/_files/static/theme/web/css/styles.css
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Framework/View/_files/static/theme/web/js/test.js b/dev/tests/integration/testsuite/Magento/Framework/View/_files/static/theme/web/js/test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/GiftMessage/Model/OrderItemRepositoryTest.php b/dev/tests/integration/testsuite/Magento/GiftMessage/Model/OrderItemRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/GiftMessage/Model/OrderRepositoryTest.php b/dev/tests/integration/testsuite/Magento/GiftMessage/Model/OrderRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/GiftMessage/_files/empty_order.php b/dev/tests/integration/testsuite/Magento/GiftMessage/_files/empty_order.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/GiftMessage/_files/order_with_message.php b/dev/tests/integration/testsuite/Magento/GiftMessage/_files/order_with_message.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/GiftMessage/_files/quote_with_customer_and_message.php b/dev/tests/integration/testsuite/Magento/GiftMessage/_files/quote_with_customer_and_message.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/GiftMessage/_files/quote_with_customer_and_message_rollback.php b/dev/tests/integration/testsuite/Magento/GiftMessage/_files/quote_with_customer_and_message_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/GiftMessage/_files/quote_with_item_message.php b/dev/tests/integration/testsuite/Magento/GiftMessage/_files/quote_with_item_message.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/GiftMessage/_files/quote_with_item_message_rollback.php b/dev/tests/integration/testsuite/Magento/GiftMessage/_files/quote_with_item_message_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/GiftMessage/_files/quote_with_message.php b/dev/tests/integration/testsuite/Magento/GiftMessage/_files/quote_with_message.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/GiftMessage/_files/quote_with_message_rollback.php b/dev/tests/integration/testsuite/Magento/GiftMessage/_files/quote_with_message_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/GiftMessage/_files/virtual_order.php b/dev/tests/integration/testsuite/Magento/GiftMessage/_files/virtual_order.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/GoogleAdwords/Model/Validator/FactoryTest.php b/dev/tests/integration/testsuite/Magento/GoogleAdwords/Model/Validator/FactoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/GroupedImportExport/Model/GroupedTest.php b/dev/tests/integration/testsuite/Magento/GroupedImportExport/Model/GroupedTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/GroupedImportExport/Model/Import/Product/Type/GroupedTest.php b/dev/tests/integration/testsuite/Magento/GroupedImportExport/Model/Import/Product/Type/GroupedTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/GroupedImportExport/Model/Import/_files/grouped_product.csv b/dev/tests/integration/testsuite/Magento/GroupedImportExport/Model/Import/_files/grouped_product.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/GroupedProduct/Model/Product/Type/GroupedTest.php b/dev/tests/integration/testsuite/Magento/GroupedProduct/Model/Product/Type/GroupedTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/GroupedProduct/Model/ResourceModel/Product/Indexer/Price/GroupedTest.php b/dev/tests/integration/testsuite/Magento/GroupedProduct/Model/ResourceModel/Product/Indexer/Price/GroupedTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/GroupedProduct/Model/ResourceModel/Product/Indexer/Stock/GroupedTest.php b/dev/tests/integration/testsuite/Magento/GroupedProduct/Model/ResourceModel/Product/Indexer/Stock/GroupedTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/GroupedProduct/Model/ResourceModel/Product/Type/Grouped/AssociatedProductsCollectionTest.php b/dev/tests/integration/testsuite/Magento/GroupedProduct/Model/ResourceModel/Product/Type/Grouped/AssociatedProductsCollectionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/GroupedProduct/Pricing/Price/FinalPriceTest.php b/dev/tests/integration/testsuite/Magento/GroupedProduct/Pricing/Price/FinalPriceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/GroupedProduct/_files/product_grouped.php b/dev/tests/integration/testsuite/Magento/GroupedProduct/_files/product_grouped.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/GroupedProduct/_files/product_grouped_rollback.php b/dev/tests/integration/testsuite/Magento/GroupedProduct/_files/product_grouped_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/GroupedProduct/_files/product_grouped_with_simple.php b/dev/tests/integration/testsuite/Magento/GroupedProduct/_files/product_grouped_with_simple.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/GroupedProduct/_files/product_grouped_with_simple_rollback.php b/dev/tests/integration/testsuite/Magento/GroupedProduct/_files/product_grouped_with_simple_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ImportExport/Block/Adminhtml/Export/Edit/FormTest.php b/dev/tests/integration/testsuite/Magento/ImportExport/Block/Adminhtml/Export/Edit/FormTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ImportExport/Block/Adminhtml/Export/FilterTest.php b/dev/tests/integration/testsuite/Magento/ImportExport/Block/Adminhtml/Export/FilterTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ImportExport/Block/Adminhtml/Import/Edit/BeforeTest.php b/dev/tests/integration/testsuite/Magento/ImportExport/Block/Adminhtml/Import/Edit/BeforeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ImportExport/Block/Adminhtml/Import/Edit/FormTest.php b/dev/tests/integration/testsuite/Magento/ImportExport/Block/Adminhtml/Import/Edit/FormTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ImportExport/Controller/Adminhtml/ExportTest.php b/dev/tests/integration/testsuite/Magento/ImportExport/Controller/Adminhtml/ExportTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ImportExport/Controller/Adminhtml/Import/HttpFactoryMock.php b/dev/tests/integration/testsuite/Magento/ImportExport/Controller/Adminhtml/Import/HttpFactoryMock.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ImportExport/Controller/Adminhtml/Import/ValidateTest.php b/dev/tests/integration/testsuite/Magento/ImportExport/Controller/Adminhtml/Import/ValidateTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ImportExport/Controller/Adminhtml/Import/_files/catalog_product.csv b/dev/tests/integration/testsuite/Magento/ImportExport/Controller/Adminhtml/Import/_files/catalog_product.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ImportExport/Controller/Adminhtml/Import/_files/incorrect_catalog_product_comma.csv b/dev/tests/integration/testsuite/Magento/ImportExport/Controller/Adminhtml/Import/_files/incorrect_catalog_product_comma.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ImportExport/Controller/Adminhtml/Import/_files/incorrect_catalog_product_semicolon.csv b/dev/tests/integration/testsuite/Magento/ImportExport/Controller/Adminhtml/Import/_files/incorrect_catalog_product_semicolon.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ImportExport/Controller/Adminhtml/Import/_files/test.txt b/dev/tests/integration/testsuite/Magento/ImportExport/Controller/Adminhtml/Import/_files/test.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ImportExport/Controller/Adminhtml/ImportTest.php b/dev/tests/integration/testsuite/Magento/ImportExport/Controller/Adminhtml/ImportTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ImportExport/Controller/Adminhtml/_files/products_duplicate_category.csv b/dev/tests/integration/testsuite/Magento/ImportExport/Controller/Adminhtml/_files/products_duplicate_category.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ImportExport/Model/Export/AbstractStubEntity.php b/dev/tests/integration/testsuite/Magento/ImportExport/Model/Export/AbstractStubEntity.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ImportExport/Model/Export/Entity/AbstractEavTest.php b/dev/tests/integration/testsuite/Magento/ImportExport/Model/Export/Entity/AbstractEavTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ImportExport/Model/Export/EntityAbstractTest.php b/dev/tests/integration/testsuite/Magento/ImportExport/Model/Export/EntityAbstractTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ImportExport/Model/ExportTest.php b/dev/tests/integration/testsuite/Magento/ImportExport/Model/ExportTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ImportExport/Model/Import/Entity/EavAbstractTest.php b/dev/tests/integration/testsuite/Magento/ImportExport/Model/Import/Entity/EavAbstractTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ImportExport/Model/Import/Entity/_files/customers_for_validation_test.csv b/dev/tests/integration/testsuite/Magento/ImportExport/Model/Import/Entity/_files/customers_for_validation_test.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ImportExport/Model/Import/EntityAbstractTest.php b/dev/tests/integration/testsuite/Magento/ImportExport/Model/Import/EntityAbstractTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ImportExport/Model/ImportTest.php b/dev/tests/integration/testsuite/Magento/ImportExport/Model/ImportTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ImportExport/Model/ResourceModel/Import/DataTest.php b/dev/tests/integration/testsuite/Magento/ImportExport/Model/ResourceModel/Import/DataTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ImportExport/Model/Source/Import/EntityTest.php b/dev/tests/integration/testsuite/Magento/ImportExport/Model/Source/Import/EntityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ImportExport/_files/import_data.php b/dev/tests/integration/testsuite/Magento/ImportExport/_files/import_data.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ImportExport/_files/product.php b/dev/tests/integration/testsuite/Magento/ImportExport/_files/product.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Indexer/Controller/Adminhtml/IndexerTest.php b/dev/tests/integration/testsuite/Magento/Indexer/Controller/Adminhtml/IndexerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Indexer/Model/Config/ConverterTest.php b/dev/tests/integration/testsuite/Magento/Indexer/Model/Config/ConverterTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Indexer/Model/Config/_files/dependency_on_not_existing_indexer.xml b/dev/tests/integration/testsuite/Magento/Indexer/Model/Config/_files/dependency_on_not_existing_indexer.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Indexer/Model/Config/_files/indexer.xml b/dev/tests/integration/testsuite/Magento/Indexer/Model/Config/_files/indexer.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Indexer/Model/Config/_files/indexer_with_circular_dependency.xml b/dev/tests/integration/testsuite/Magento/Indexer/Model/Config/_files/indexer_with_circular_dependency.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Indexer/Model/Config/_files/result.php b/dev/tests/integration/testsuite/Magento/Indexer/Model/Config/_files/result.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/InstantPurchase/CustomerData/InstantPurchaseTest.php b/dev/tests/integration/testsuite/Magento/InstantPurchase/CustomerData/InstantPurchaseTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/InstantPurchase/CustomerData/StubPaymentTokenFormatter.php b/dev/tests/integration/testsuite/Magento/InstantPurchase/CustomerData/StubPaymentTokenFormatter.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/InstantPurchase/Model/InstantPurchaseTest.php b/dev/tests/integration/testsuite/Magento/InstantPurchase/Model/InstantPurchaseTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/InstantPurchase/Model/PlaceOrderTest.php b/dev/tests/integration/testsuite/Magento/InstantPurchase/Model/PlaceOrderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/InstantPurchase/_files/fake_payment_token.php b/dev/tests/integration/testsuite/Magento/InstantPurchase/_files/fake_payment_token.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Integration/Block/Adminhtml/Integration/Activate/Permissions/Tab/WebapiTest.php b/dev/tests/integration/testsuite/Magento/Integration/Block/Adminhtml/Integration/Activate/Permissions/Tab/WebapiTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Integration/Block/Adminhtml/Integration/Edit/FormTest.php b/dev/tests/integration/testsuite/Magento/Integration/Block/Adminhtml/Integration/Edit/FormTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Integration/Block/Adminhtml/Integration/Edit/Tab/InfoTest.php b/dev/tests/integration/testsuite/Magento/Integration/Block/Adminhtml/Integration/Edit/Tab/InfoTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Integration/Block/Adminhtml/Integration/EditTest.php b/dev/tests/integration/testsuite/Magento/Integration/Block/Adminhtml/Integration/EditTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Integration/Block/Adminhtml/Integration/GridTest.php b/dev/tests/integration/testsuite/Magento/Integration/Block/Adminhtml/Integration/GridTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Integration/Block/Adminhtml/Integration/TokensTest.php b/dev/tests/integration/testsuite/Magento/Integration/Block/Adminhtml/Integration/TokensTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Button/DeleteTest.php b/dev/tests/integration/testsuite/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Button/DeleteTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Button/EditTest.php b/dev/tests/integration/testsuite/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Button/EditTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Link/ActivateTest.php b/dev/tests/integration/testsuite/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Link/ActivateTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Integration/Controller/Adminhtml/IntegrationTest.php b/dev/tests/integration/testsuite/Magento/Integration/Controller/Adminhtml/IntegrationTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Integration/Model/AdminTokenServiceTest.php b/dev/tests/integration/testsuite/Magento/Integration/Model/AdminTokenServiceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Integration/Model/AuthorizationServiceTest.php b/dev/tests/integration/testsuite/Magento/Integration/Model/AuthorizationServiceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Integration/Model/Config/Consolidated/ReaderTest.php b/dev/tests/integration/testsuite/Magento/Integration/Model/Config/Consolidated/ReaderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Integration/Model/Config/Consolidated/_files/integration.php b/dev/tests/integration/testsuite/Magento/Integration/Model/Config/Consolidated/_files/integration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Integration/Model/Config/Consolidated/_files/integrationA.xml b/dev/tests/integration/testsuite/Magento/Integration/Model/Config/Consolidated/_files/integrationA.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Integration/Model/Config/Consolidated/_files/integrationB.xml b/dev/tests/integration/testsuite/Magento/Integration/Model/Config/Consolidated/_files/integrationB.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Integration/Model/Config/Integration/ReaderTest.php b/dev/tests/integration/testsuite/Magento/Integration/Model/Config/Integration/ReaderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Integration/Model/Config/Integration/_files/api.php b/dev/tests/integration/testsuite/Magento/Integration/Model/Config/Integration/_files/api.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Integration/Model/Config/Integration/_files/apiA.xml b/dev/tests/integration/testsuite/Magento/Integration/Model/Config/Integration/_files/apiA.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Integration/Model/Config/Integration/_files/apiB.xml b/dev/tests/integration/testsuite/Magento/Integration/Model/Config/Integration/_files/apiB.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Integration/Model/Config/ReaderTest.php b/dev/tests/integration/testsuite/Magento/Integration/Model/Config/ReaderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Integration/Model/Config/_files/configA.xml b/dev/tests/integration/testsuite/Magento/Integration/Model/Config/_files/configA.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Integration/Model/Config/_files/configB.xml b/dev/tests/integration/testsuite/Magento/Integration/Model/Config/_files/configB.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Integration/Model/Config/_files/integration.php b/dev/tests/integration/testsuite/Magento/Integration/Model/Config/_files/integration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Integration/Model/CustomerTokenServiceTest.php b/dev/tests/integration/testsuite/Magento/Integration/Model/CustomerTokenServiceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Integration/Model/ResourceModel/IntegrationTest.php b/dev/tests/integration/testsuite/Magento/Integration/Model/ResourceModel/IntegrationTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Integration/Model/ResourceModel/Oauth/TokenTest.php b/dev/tests/integration/testsuite/Magento/Integration/Model/ResourceModel/Oauth/TokenTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Integration/_files/integration_all_permissions.php b/dev/tests/integration/testsuite/Magento/Integration/_files/integration_all_permissions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Integration/_files/integration_all_permissions_rollback.php b/dev/tests/integration/testsuite/Magento/Integration/_files/integration_all_permissions_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/MediaStorage/Model/File/StorageTest.php b/dev/tests/integration/testsuite/Magento/MediaStorage/Model/File/StorageTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/MemoryUsageTest.php b/dev/tests/integration/testsuite/Magento/MemoryUsageTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Multishipping/Block/Checkout/Address/SelectTest.php b/dev/tests/integration/testsuite/Magento/Multishipping/Block/Checkout/Address/SelectTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Multishipping/Block/Checkout/AddressesTest.php b/dev/tests/integration/testsuite/Magento/Multishipping/Block/Checkout/AddressesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Multishipping/Block/Checkout/OverviewTest.php b/dev/tests/integration/testsuite/Magento/Multishipping/Block/Checkout/OverviewTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Multishipping/Controller/CheckoutTest.php b/dev/tests/integration/testsuite/Magento/Multishipping/Controller/CheckoutTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Multishipping/Model/Checkout/Type/MultishippingTest.php b/dev/tests/integration/testsuite/Magento/Multishipping/Model/Checkout/Type/MultishippingTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Newsletter/Block/Adminhtml/Queue/Edit/FormTest.php b/dev/tests/integration/testsuite/Magento/Newsletter/Block/Adminhtml/Queue/Edit/FormTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Newsletter/Block/Adminhtml/SubscriberTest.php b/dev/tests/integration/testsuite/Magento/Newsletter/Block/Adminhtml/SubscriberTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Newsletter/Controller/Adminhtml/NewsletterQueueTest.php b/dev/tests/integration/testsuite/Magento/Newsletter/Controller/Adminhtml/NewsletterQueueTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Newsletter/Controller/Adminhtml/NewsletterTemplateTest.php b/dev/tests/integration/testsuite/Magento/Newsletter/Controller/Adminhtml/NewsletterTemplateTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Newsletter/Controller/ManageTest.php b/dev/tests/integration/testsuite/Magento/Newsletter/Controller/ManageTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Newsletter/Controller/SubscriberTest.php b/dev/tests/integration/testsuite/Magento/Newsletter/Controller/SubscriberTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Newsletter/Helper/DataTest.php b/dev/tests/integration/testsuite/Magento/Newsletter/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Newsletter/Model/Plugin/PluginTest.php b/dev/tests/integration/testsuite/Magento/Newsletter/Model/Plugin/PluginTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Newsletter/Model/QueueTest.php b/dev/tests/integration/testsuite/Magento/Newsletter/Model/QueueTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Newsletter/Model/ResourceModel/Problem/CollectionTest.php b/dev/tests/integration/testsuite/Magento/Newsletter/Model/ResourceModel/Problem/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Newsletter/Model/ResourceModel/Subscriber/CollectionTest.php b/dev/tests/integration/testsuite/Magento/Newsletter/Model/ResourceModel/Subscriber/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Newsletter/Model/ResourceModel/SubscriberTest.php b/dev/tests/integration/testsuite/Magento/Newsletter/Model/ResourceModel/SubscriberTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Newsletter/Model/SubscriberTest.php b/dev/tests/integration/testsuite/Magento/Newsletter/Model/SubscriberTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Newsletter/Model/TemplateTest.php b/dev/tests/integration/testsuite/Magento/Newsletter/Model/TemplateTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Newsletter/_files/newsletter_sample.php b/dev/tests/integration/testsuite/Magento/Newsletter/_files/newsletter_sample.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Newsletter/_files/problems.php b/dev/tests/integration/testsuite/Magento/Newsletter/_files/problems.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Newsletter/_files/queue.php b/dev/tests/integration/testsuite/Magento/Newsletter/_files/queue.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Newsletter/_files/subscribers.php b/dev/tests/integration/testsuite/Magento/Newsletter/_files/subscribers.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Newsletter/_files/subscribers_rollback.php b/dev/tests/integration/testsuite/Magento/Newsletter/_files/subscribers_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Newsletter/_files/template.php b/dev/tests/integration/testsuite/Magento/Newsletter/_files/template.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/OfflineShipping/_files/tablerates.php b/dev/tests/integration/testsuite/Magento/OfflineShipping/_files/tablerates.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/OfflineShipping/_files/tablerates_rollback.php b/dev/tests/integration/testsuite/Magento/OfflineShipping/_files/tablerates_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/PageCache/Block/JavascriptTest.php b/dev/tests/integration/testsuite/Magento/PageCache/Block/JavascriptTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/PageCache/Block/System/Config/Form/Field/ExportTest.php b/dev/tests/integration/testsuite/Magento/PageCache/Block/System/Config/Form/Field/ExportTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/PageCache/Model/ConfigTest.php b/dev/tests/integration/testsuite/Magento/PageCache/Model/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/PageCache/Model/Layout/MergeTest.php b/dev/tests/integration/testsuite/Magento/PageCache/Model/Layout/MergeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/PageCache/Model/System/Config/Backend/TtlTest.php b/dev/tests/integration/testsuite/Magento/PageCache/Model/System/Config/Backend/TtlTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/PageCache/Model/System/Config/Backend/VarnishTest.php b/dev/tests/integration/testsuite/Magento/PageCache/Model/System/Config/Backend/VarnishTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/PageCache/Model/_files/result.vcl b/dev/tests/integration/testsuite/Magento/PageCache/Model/_files/result.vcl
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/PageCache/Model/_files/test.vcl b/dev/tests/integration/testsuite/Magento/PageCache/Model/_files/test.vcl
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Payment/Block/InfoTest.php b/dev/tests/integration/testsuite/Magento/Payment/Block/InfoTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Payment/Block/Transparent/IframeTest.php b/dev/tests/integration/testsuite/Magento/Payment/Block/Transparent/IframeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Payment/Helper/DataTest.php b/dev/tests/integration/testsuite/Magento/Payment/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Payment/Model/Config/ReaderTest.php b/dev/tests/integration/testsuite/Magento/Payment/Model/Config/ReaderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Payment/Model/ConfigTest.php b/dev/tests/integration/testsuite/Magento/Payment/Model/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Payment/Model/_files/payment.xml b/dev/tests/integration/testsuite/Magento/Payment/Model/_files/payment.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Payment/Model/_files/payment2.xml b/dev/tests/integration/testsuite/Magento/Payment/Model/_files/payment2.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Payment/Observer/UpdateOrderStatusForPaymentMethodsObserverTest.php b/dev/tests/integration/testsuite/Magento/Payment/Observer/UpdateOrderStatusForPaymentMethodsObserverTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Payment/_files/order_status.php b/dev/tests/integration/testsuite/Magento/Payment/_files/order_status.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/Adminhtml/Paypal/ReportsTest.php b/dev/tests/integration/testsuite/Magento/Paypal/Adminhtml/Paypal/ReportsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/Block/Adminhtml/Billing/Agreement/View/Tab/InfoTest.php b/dev/tests/integration/testsuite/Magento/Paypal/Block/Adminhtml/Billing/Agreement/View/Tab/InfoTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/Block/Billing/Agreement/ViewTest.php b/dev/tests/integration/testsuite/Magento/Paypal/Block/Billing/Agreement/ViewTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/Block/Bml/BannersTest.php b/dev/tests/integration/testsuite/Magento/Paypal/Block/Bml/BannersTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/Block/Express/Review/BillingTest.php b/dev/tests/integration/testsuite/Magento/Paypal/Block/Express/Review/BillingTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/Block/Express/ReviewTest.php b/dev/tests/integration/testsuite/Magento/Paypal/Block/Express/ReviewTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/Block/Payment/Form/Billing/AgreementTest.php b/dev/tests/integration/testsuite/Magento/Paypal/Block/Payment/Form/Billing/AgreementTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/CancelTest.php b/dev/tests/integration/testsuite/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/CancelTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/DeleteTest.php b/dev/tests/integration/testsuite/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/DeleteTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/GridTest.php b/dev/tests/integration/testsuite/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/GridTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/IndexTest.php b/dev/tests/integration/testsuite/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/IndexTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/ViewTest.php b/dev/tests/integration/testsuite/Magento/Paypal/Controller/Adminhtml/Billing/Agreement/ViewTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/Controller/Adminhtml/Billing/AgreementTest.php b/dev/tests/integration/testsuite/Magento/Paypal/Controller/Adminhtml/Billing/AgreementTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/Controller/Adminhtml/Paypal/Reports/DetailsTest.php b/dev/tests/integration/testsuite/Magento/Paypal/Controller/Adminhtml/Paypal/Reports/DetailsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/Controller/Adminhtml/Paypal/Reports/FetchTest.php b/dev/tests/integration/testsuite/Magento/Paypal/Controller/Adminhtml/Paypal/Reports/FetchTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/Controller/Adminhtml/Paypal/Reports/IndexTest.php b/dev/tests/integration/testsuite/Magento/Paypal/Controller/Adminhtml/Paypal/Reports/IndexTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/Controller/Billing/AgreementTest.php b/dev/tests/integration/testsuite/Magento/Paypal/Controller/Billing/AgreementTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/Controller/ExpressTest.php b/dev/tests/integration/testsuite/Magento/Paypal/Controller/ExpressTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/Controller/HostedproTest.php b/dev/tests/integration/testsuite/Magento/Paypal/Controller/HostedproTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/Controller/Payflow/SilentPostTest.php b/dev/tests/integration/testsuite/Magento/Paypal/Controller/Payflow/SilentPostTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/Controller/PayflowTest.php b/dev/tests/integration/testsuite/Magento/Paypal/Controller/PayflowTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/Controller/PayflowadvancedTest.php b/dev/tests/integration/testsuite/Magento/Paypal/Controller/PayflowadvancedTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/Helper/DataTest.php b/dev/tests/integration/testsuite/Magento/Paypal/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/Model/Api/NvpTest.php b/dev/tests/integration/testsuite/Magento/Paypal/Model/Api/NvpTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/Model/Api/PayflowNvpTest.php b/dev/tests/integration/testsuite/Magento/Paypal/Model/Api/PayflowNvpTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/Model/Config/Structure/Reader/ConverterStub.php b/dev/tests/integration/testsuite/Magento/Paypal/Model/Config/Structure/Reader/ConverterStub.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/Model/Config/Structure/Reader/ReaderStub.php b/dev/tests/integration/testsuite/Magento/Paypal/Model/Config/Structure/Reader/ReaderStub.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/Model/Config/Structure/Reader/ReaderTest.php b/dev/tests/integration/testsuite/Magento/Paypal/Model/Config/Structure/Reader/ReaderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/Model/Config/Structure/Reader/_files/actual/config.xml b/dev/tests/integration/testsuite/Magento/Paypal/Model/Config/Structure/Reader/_files/actual/config.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/Model/Config/Structure/Reader/_files/expected/config.xml b/dev/tests/integration/testsuite/Magento/Paypal/Model/Config/Structure/Reader/_files/expected/config.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/Model/Express/CheckoutTest.php b/dev/tests/integration/testsuite/Magento/Paypal/Model/Express/CheckoutTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/Model/Hostedpro/RequestTest.php b/dev/tests/integration/testsuite/Magento/Paypal/Model/Hostedpro/RequestTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/Model/HostedproTest.php b/dev/tests/integration/testsuite/Magento/Paypal/Model/HostedproTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/Model/IpnTest.php b/dev/tests/integration/testsuite/Magento/Paypal/Model/IpnTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/Model/PayflowproTest.php b/dev/tests/integration/testsuite/Magento/Paypal/Model/PayflowproTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/Model/Payment/Method/Billing/AbstractAgreementTest.php b/dev/tests/integration/testsuite/Magento/Paypal/Model/Payment/Method/Billing/AbstractAgreementTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/Model/Report/SettlementTest.php b/dev/tests/integration/testsuite/Magento/Paypal/Model/Report/SettlementTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/Model/ResourceModel/Billing/Agreement/CollectionTest.php b/dev/tests/integration/testsuite/Magento/Paypal/Model/ResourceModel/Billing/Agreement/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/Model/VoidTest.php b/dev/tests/integration/testsuite/Magento/Paypal/Model/VoidTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/_files/address_data.php b/dev/tests/integration/testsuite/Magento/Paypal/_files/address_data.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/_files/billing_agreement.php b/dev/tests/integration/testsuite/Magento/Paypal/_files/billing_agreement.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/_files/configurable_attribute.php b/dev/tests/integration/testsuite/Magento/Paypal/_files/configurable_attribute.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/_files/fixed_discount.php b/dev/tests/integration/testsuite/Magento/Paypal/_files/fixed_discount.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/_files/ipn.php b/dev/tests/integration/testsuite/Magento/Paypal/_files/ipn.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/_files/ipn_refund.php b/dev/tests/integration/testsuite/Magento/Paypal/_files/ipn_refund.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/_files/order_express.php b/dev/tests/integration/testsuite/Magento/Paypal/_files/order_express.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/_files/order_express_with_invoice_and_creditmemo.php b/dev/tests/integration/testsuite/Magento/Paypal/_files/order_express_with_invoice_and_creditmemo.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/_files/order_express_with_invoice_and_shipping.php b/dev/tests/integration/testsuite/Magento/Paypal/_files/order_express_with_invoice_and_shipping.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/_files/order_express_with_tax.php b/dev/tests/integration/testsuite/Magento/Paypal/_files/order_express_with_tax.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/_files/order_hostedpro.php b/dev/tests/integration/testsuite/Magento/Paypal/_files/order_hostedpro.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/_files/order_payflow_link.php b/dev/tests/integration/testsuite/Magento/Paypal/_files/order_payflow_link.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/_files/order_payflowpro.php b/dev/tests/integration/testsuite/Magento/Paypal/_files/order_payflowpro.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/_files/product_configurable.php b/dev/tests/integration/testsuite/Magento/Paypal/_files/product_configurable.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/_files/quote_express.php b/dev/tests/integration/testsuite/Magento/Paypal/_files/quote_express.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/_files/quote_express_configurable.php b/dev/tests/integration/testsuite/Magento/Paypal/_files/quote_express_configurable.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/_files/quote_express_with_customer.php b/dev/tests/integration/testsuite/Magento/Paypal/_files/quote_express_with_customer.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/_files/quote_payflowpro.php b/dev/tests/integration/testsuite/Magento/Paypal/_files/quote_payflowpro.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/_files/quote_payment.php b/dev/tests/integration/testsuite/Magento/Paypal/_files/quote_payment.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/_files/quote_payment_express.php b/dev/tests/integration/testsuite/Magento/Paypal/_files/quote_payment_express.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/_files/quote_payment_express_with_customer.php b/dev/tests/integration/testsuite/Magento/Paypal/_files/quote_payment_express_with_customer.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/_files/quote_payment_payflow.php b/dev/tests/integration/testsuite/Magento/Paypal/_files/quote_payment_payflow.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Paypal/_files/quote_with_fpt.php b/dev/tests/integration/testsuite/Magento/Paypal/_files/quote_with_fpt.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Persistent/Block/Header/AdditionalTest.php b/dev/tests/integration/testsuite/Magento/Persistent/Block/Header/AdditionalTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Persistent/Model/Checkout/GuestPaymentInformationManagementPluginTest.php b/dev/tests/integration/testsuite/Magento/Persistent/Model/Checkout/GuestPaymentInformationManagementPluginTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Persistent/Model/ObserverTest.php b/dev/tests/integration/testsuite/Magento/Persistent/Model/ObserverTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Persistent/Model/Persistent/ConfigTest.php b/dev/tests/integration/testsuite/Magento/Persistent/Model/Persistent/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Persistent/Model/Persistent/_files/expectedArray.php b/dev/tests/integration/testsuite/Magento/Persistent/Model/Persistent/_files/expectedArray.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Persistent/Model/Persistent/_files/expectedBlocksArray.php b/dev/tests/integration/testsuite/Magento/Persistent/Model/Persistent/_files/expectedBlocksArray.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Persistent/Model/Persistent/_files/persistent.xml b/dev/tests/integration/testsuite/Magento/Persistent/Model/Persistent/_files/persistent.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Persistent/Model/SessionTest.php b/dev/tests/integration/testsuite/Magento/Persistent/Model/SessionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Persistent/Observer/EmulateCustomerObserverTest.php b/dev/tests/integration/testsuite/Magento/Persistent/Observer/EmulateCustomerObserverTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Persistent/Observer/EmulateQuoteObserverTest.php b/dev/tests/integration/testsuite/Magento/Persistent/Observer/EmulateQuoteObserverTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Persistent/Observer/SynchronizePersistentOnLoginObserverTest.php b/dev/tests/integration/testsuite/Magento/Persistent/Observer/SynchronizePersistentOnLoginObserverTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Persistent/Observer/SynchronizePersistentOnLogoutObserverTest.php b/dev/tests/integration/testsuite/Magento/Persistent/Observer/SynchronizePersistentOnLogoutObserverTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Persistent/_files/persistent.php b/dev/tests/integration/testsuite/Magento/Persistent/_files/persistent.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ProductAlert/Model/EmailTest.php b/dev/tests/integration/testsuite/Magento/ProductAlert/Model/EmailTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ProductAlert/Model/ObserverTest.php b/dev/tests/integration/testsuite/Magento/ProductAlert/Model/ObserverTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ProductAlert/_files/product_alert.php b/dev/tests/integration/testsuite/Magento/ProductAlert/_files/product_alert.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Quote/Model/Quote/Address/ConverterTest.php b/dev/tests/integration/testsuite/Magento/Quote/Model/Quote/Address/ConverterTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Quote/Model/Quote/AddressTest.php b/dev/tests/integration/testsuite/Magento/Quote/Model/Quote/AddressTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Quote/Model/Quote/Item/RepositoryTest.php b/dev/tests/integration/testsuite/Magento/Quote/Model/Quote/Item/RepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Quote/Model/QuoteManagementTest.php b/dev/tests/integration/testsuite/Magento/Quote/Model/QuoteManagementTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Quote/Model/QuoteRepositoryTest.php b/dev/tests/integration/testsuite/Magento/Quote/Model/QuoteRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Quote/Model/QuoteTest.php b/dev/tests/integration/testsuite/Magento/Quote/Model/QuoteTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Quote/Model/ShippingMethodManagementTest.php b/dev/tests/integration/testsuite/Magento/Quote/Model/ShippingMethodManagementTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Quote/Observer/Frontend/Quote/Address/CollectTotalsObserverTest.php b/dev/tests/integration/testsuite/Magento/Quote/Observer/Frontend/Quote/Address/CollectTotalsObserverTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Quote/_files/empty_quote.php b/dev/tests/integration/testsuite/Magento/Quote/_files/empty_quote.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Quote/_files/empty_quote_rollback.php b/dev/tests/integration/testsuite/Magento/Quote/_files/empty_quote_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Quote/_files/is_not_salable_product.php b/dev/tests/integration/testsuite/Magento/Quote/_files/is_not_salable_product.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Quote/_files/is_salable_product.php b/dev/tests/integration/testsuite/Magento/Quote/_files/is_salable_product.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Quote/etc/extension_attributes.xml b/dev/tests/integration/testsuite/Magento/Quote/etc/extension_attributes.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/ReleaseNotification/Model/ResourceModel/Viewer/LoggerTest.php b/dev/tests/integration/testsuite/Magento/ReleaseNotification/Model/ResourceModel/Viewer/LoggerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Reports/Block/Adminhtml/Filter/FormTest.php b/dev/tests/integration/testsuite/Magento/Reports/Block/Adminhtml/Filter/FormTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Reports/Block/Adminhtml/GridTest.php b/dev/tests/integration/testsuite/Magento/Reports/Block/Adminhtml/GridTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Reports/Block/Adminhtml/Sales/Bestsellers/GridTest.php b/dev/tests/integration/testsuite/Magento/Reports/Block/Adminhtml/Sales/Bestsellers/GridTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Reports/Block/Adminhtml/Sales/Coupons/GridTest.php b/dev/tests/integration/testsuite/Magento/Reports/Block/Adminhtml/Sales/Coupons/GridTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Reports/Block/Adminhtml/Sales/Invoiced/GridTest.php b/dev/tests/integration/testsuite/Magento/Reports/Block/Adminhtml/Sales/Invoiced/GridTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Reports/Block/Adminhtml/Sales/Refunded/GridTest.php b/dev/tests/integration/testsuite/Magento/Reports/Block/Adminhtml/Sales/Refunded/GridTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Reports/Block/Adminhtml/Sales/Sales/GridTest.php b/dev/tests/integration/testsuite/Magento/Reports/Block/Adminhtml/Sales/Sales/GridTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Reports/Block/Adminhtml/Sales/Shipping/GridTest.php b/dev/tests/integration/testsuite/Magento/Reports/Block/Adminhtml/Sales/Shipping/GridTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Reports/Block/Adminhtml/Sales/Tax/GridTest.php b/dev/tests/integration/testsuite/Magento/Reports/Block/Adminhtml/Sales/Tax/GridTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Reports/Block/Adminhtml/Shopcart/Abandoned/GridTest.php b/dev/tests/integration/testsuite/Magento/Reports/Block/Adminhtml/Shopcart/Abandoned/GridTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Reports/Block/Adminhtml/Shopcart/GridTestAbstract.php b/dev/tests/integration/testsuite/Magento/Reports/Block/Adminhtml/Shopcart/GridTestAbstract.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Reports/Block/Adminhtml/Shopcart/Product/GridTest.php b/dev/tests/integration/testsuite/Magento/Reports/Block/Adminhtml/Shopcart/Product/GridTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Reports/Controller/Adminhtml/Report/Product/SoldTest.php b/dev/tests/integration/testsuite/Magento/Reports/Controller/Adminhtml/Report/Product/SoldTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Reports/Controller/Adminhtml/Report/Product/ViewedTest.php b/dev/tests/integration/testsuite/Magento/Reports/Controller/Adminhtml/Report/Product/ViewedTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Reports/Model/ResourceModel/Product/Lowstock/CollectionTest.php b/dev/tests/integration/testsuite/Magento/Reports/Model/ResourceModel/Product/Lowstock/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Reports/Model/ResourceModel/Report/Product/Viewed/CollectionTest.php b/dev/tests/integration/testsuite/Magento/Reports/Model/ResourceModel/Report/Product/Viewed/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Reports/Model/ResourceModel/Report/Sold/CollectionTest.php b/dev/tests/integration/testsuite/Magento/Reports/Model/ResourceModel/Report/Sold/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Reports/Model/ResourceModel/Review/Customer/CollectionTest.php b/dev/tests/integration/testsuite/Magento/Reports/Model/ResourceModel/Review/Customer/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Reports/Model/ResourceModel/Review/Product/CollectionTest.php b/dev/tests/integration/testsuite/Magento/Reports/Model/ResourceModel/Review/Product/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Reports/_files/orders.php b/dev/tests/integration/testsuite/Magento/Reports/_files/orders.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Reports/_files/viewed_products.php b/dev/tests/integration/testsuite/Magento/Reports/_files/viewed_products.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Review/Block/Adminhtml/Edit/FormTest.php b/dev/tests/integration/testsuite/Magento/Review/Block/Adminhtml/Edit/FormTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Review/Block/Adminhtml/Edit/Tab/FormTest.php b/dev/tests/integration/testsuite/Magento/Review/Block/Adminhtml/Edit/Tab/FormTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Review/Block/Adminhtml/MainTest.php b/dev/tests/integration/testsuite/Magento/Review/Block/Adminhtml/MainTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Review/Block/FormTest.php b/dev/tests/integration/testsuite/Magento/Review/Block/FormTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Review/Block/Product/ReviewRendererTest.php b/dev/tests/integration/testsuite/Magento/Review/Block/Product/ReviewRendererTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Review/Controller/ProductTest.php b/dev/tests/integration/testsuite/Magento/Review/Controller/ProductTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Review/Model/ResourceModel/Rating/CollectionTest.php b/dev/tests/integration/testsuite/Magento/Review/Model/ResourceModel/Rating/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Review/Model/ResourceModel/RatingTest.php b/dev/tests/integration/testsuite/Magento/Review/Model/ResourceModel/RatingTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Review/Model/ResourceModel/Review/Product/CollectionTest.php b/dev/tests/integration/testsuite/Magento/Review/Model/ResourceModel/Review/Product/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Review/Model/ResourceModel/Review/ReviewTest.php b/dev/tests/integration/testsuite/Magento/Review/Model/ResourceModel/Review/ReviewTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Review/_files/config.php b/dev/tests/integration/testsuite/Magento/Review/_files/config.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Review/_files/customer_review.php b/dev/tests/integration/testsuite/Magento/Review/_files/customer_review.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Review/_files/customer_review_with_rating.php b/dev/tests/integration/testsuite/Magento/Review/_files/customer_review_with_rating.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Review/_files/different_reviews.php b/dev/tests/integration/testsuite/Magento/Review/_files/different_reviews.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Review/_files/review_xss.php b/dev/tests/integration/testsuite/Magento/Review/_files/review_xss.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Review/_files/reviews.php b/dev/tests/integration/testsuite/Magento/Review/_files/reviews.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Rule/Model/Condition/AbstractTest.php b/dev/tests/integration/testsuite/Magento/Rule/Model/Condition/AbstractTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Rule/Model/Condition/Product/AbstractProductTest.php b/dev/tests/integration/testsuite/Magento/Rule/Model/Condition/Product/AbstractProductTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Rule/Model/Condition/Sql/BuilderTest.php b/dev/tests/integration/testsuite/Magento/Rule/Model/Condition/Sql/BuilderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Rule/_files/dropdown_attribute_with_html.php b/dev/tests/integration/testsuite/Magento/Rule/_files/dropdown_attribute_with_html.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Rule/_files/dropdown_attribute_with_html_rollback.php b/dev/tests/integration/testsuite/Magento/Rule/_files/dropdown_attribute_with_html_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Api/CreditmemoCommentRepositoryInterfaceTest.php b/dev/tests/integration/testsuite/Magento/Sales/Api/CreditmemoCommentRepositoryInterfaceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Api/CreditmemoItemRepositoryInterfaceTest.php b/dev/tests/integration/testsuite/Magento/Sales/Api/CreditmemoItemRepositoryInterfaceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Api/InvoiceCommentRepositoryInterfaceTest.php b/dev/tests/integration/testsuite/Magento/Sales/Api/InvoiceCommentRepositoryInterfaceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Api/InvoiceItemRepositoryInterfaceTest.php b/dev/tests/integration/testsuite/Magento/Sales/Api/InvoiceItemRepositoryInterfaceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Api/OrderStatusHistoryRepositoryInterfaceTest.php b/dev/tests/integration/testsuite/Magento/Sales/Api/OrderStatusHistoryRepositoryInterfaceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Api/ShipmentCommentRepositoryInterfaceTest.php b/dev/tests/integration/testsuite/Magento/Sales/Api/ShipmentCommentRepositoryInterfaceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Api/ShipmentItemRepositoryInterfaceTest.php b/dev/tests/integration/testsuite/Magento/Sales/Api/ShipmentItemRepositoryInterfaceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Api/ShipmentTrackRepositoryInterfaceTest.php b/dev/tests/integration/testsuite/Magento/Sales/Api/ShipmentTrackRepositoryInterfaceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Block/Adminhtml/Items/AbstractTest.php b/dev/tests/integration/testsuite/Magento/Sales/Block/Adminhtml/Items/AbstractTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Block/Adminhtml/Order/Create/Billing/Method/FormTest.php b/dev/tests/integration/testsuite/Magento/Sales/Block/Adminhtml/Order/Create/Billing/Method/FormTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Block/Adminhtml/Order/Create/Form/AbstractTest.php b/dev/tests/integration/testsuite/Magento/Sales/Block/Adminhtml/Order/Create/Form/AbstractTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Block/Adminhtml/Order/Create/Form/AccountTest.php b/dev/tests/integration/testsuite/Magento/Sales/Block/Adminhtml/Order/Create/Form/AccountTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Block/Adminhtml/Order/Create/Form/AddressTest.php b/dev/tests/integration/testsuite/Magento/Sales/Block/Adminhtml/Order/Create/Form/AddressTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Block/Adminhtml/Order/Create/FormTest.php b/dev/tests/integration/testsuite/Magento/Sales/Block/Adminhtml/Order/Create/FormTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Block/Adminhtml/Order/Create/Giftmessage/FormTest.php b/dev/tests/integration/testsuite/Magento/Sales/Block/Adminhtml/Order/Create/Giftmessage/FormTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Block/Adminhtml/Order/Create/HeaderTest.php b/dev/tests/integration/testsuite/Magento/Sales/Block/Adminhtml/Order/Create/HeaderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Block/Adminhtml/Order/View/InfoTest.php b/dev/tests/integration/testsuite/Magento/Sales/Block/Adminhtml/Order/View/InfoTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Block/Adminhtml/Report/Filter/Form/CouponTest.php b/dev/tests/integration/testsuite/Magento/Sales/Block/Adminhtml/Report/Filter/Form/CouponTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Block/Order/CommentsTest.php b/dev/tests/integration/testsuite/Magento/Sales/Block/Order/CommentsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Block/Order/Creditmemo/ItemsTest.php b/dev/tests/integration/testsuite/Magento/Sales/Block/Order/Creditmemo/ItemsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Block/Order/Invoice/ItemsTest.php b/dev/tests/integration/testsuite/Magento/Sales/Block/Order/Invoice/ItemsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Block/Order/ItemsTest.php b/dev/tests/integration/testsuite/Magento/Sales/Block/Order/ItemsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Block/Order/PrintOrder/CreditmemoTest.php b/dev/tests/integration/testsuite/Magento/Sales/Block/Order/PrintOrder/CreditmemoTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Block/Order/PrintOrder/InvoiceTest.php b/dev/tests/integration/testsuite/Magento/Sales/Block/Order/PrintOrder/InvoiceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Block/Order/TotalsTest.php b/dev/tests/integration/testsuite/Magento/Sales/Block/Order/TotalsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Controller/Adminhtml/Order/AddCommentTest.php b/dev/tests/integration/testsuite/Magento/Sales/Controller/Adminhtml/Order/AddCommentTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Controller/Adminhtml/Order/AddressSaveTest.php b/dev/tests/integration/testsuite/Magento/Sales/Controller/Adminhtml/Order/AddressSaveTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Controller/Adminhtml/Order/AddressTest.php b/dev/tests/integration/testsuite/Magento/Sales/Controller/Adminhtml/Order/AddressTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Controller/Adminhtml/Order/AuthorizationMock.php b/dev/tests/integration/testsuite/Magento/Sales/Controller/Adminhtml/Order/AuthorizationMock.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Controller/Adminhtml/Order/CancelTest.php b/dev/tests/integration/testsuite/Magento/Sales/Controller/Adminhtml/Order/CancelTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Controller/Adminhtml/Order/Create/SaveTest.php b/dev/tests/integration/testsuite/Magento/Sales/Controller/Adminhtml/Order/Create/SaveTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Controller/Adminhtml/Order/CreateTest.php b/dev/tests/integration/testsuite/Magento/Sales/Controller/Adminhtml/Order/CreateTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Controller/Adminhtml/Order/CreditmemoTest.php b/dev/tests/integration/testsuite/Magento/Sales/Controller/Adminhtml/Order/CreditmemoTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Controller/Adminhtml/Order/EmailTest.php b/dev/tests/integration/testsuite/Magento/Sales/Controller/Adminhtml/Order/EmailTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Controller/Adminhtml/Order/HoldTest.php b/dev/tests/integration/testsuite/Magento/Sales/Controller/Adminhtml/Order/HoldTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Controller/Adminhtml/Order/ReviewPaymentTest.php b/dev/tests/integration/testsuite/Magento/Sales/Controller/Adminhtml/Order/ReviewPaymentTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Controller/Adminhtml/Order/Stub/OrderCreateStub.php b/dev/tests/integration/testsuite/Magento/Sales/Controller/Adminhtml/Order/Stub/OrderCreateStub.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Controller/Adminhtml/Order/UnholdTest.php b/dev/tests/integration/testsuite/Magento/Sales/Controller/Adminhtml/Order/UnholdTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Controller/Adminhtml/Order/ViewTest.php b/dev/tests/integration/testsuite/Magento/Sales/Controller/Adminhtml/Order/ViewTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Controller/Adminhtml/Transactions/FetchTest.php b/dev/tests/integration/testsuite/Magento/Sales/Controller/Adminhtml/Transactions/FetchTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Model/AbstractCollectorPositionsTest.php b/dev/tests/integration/testsuite/Magento/Sales/Model/AbstractCollectorPositionsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Model/AdminOrder/CreateTest.php b/dev/tests/integration/testsuite/Magento/Sales/Model/AdminOrder/CreateTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Model/Convert/OrderTest.php b/dev/tests/integration/testsuite/Magento/Sales/Model/Convert/OrderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Model/CronJob/CleanExpiredOrdersTest.php b/dev/tests/integration/testsuite/Magento/Sales/Model/CronJob/CleanExpiredOrdersTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Model/GridAsyncInsertTest.php b/dev/tests/integration/testsuite/Magento/Sales/Model/GridAsyncInsertTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Model/Order/Address/RendererTest.php b/dev/tests/integration/testsuite/Magento/Sales/Model/Order/Address/RendererTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Model/Order/AddressRepositoryTest.php b/dev/tests/integration/testsuite/Magento/Sales/Model/Order/AddressRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Model/Order/AddressTest.php b/dev/tests/integration/testsuite/Magento/Sales/Model/Order/AddressTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Model/Order/CreditmemoFactoryTest.php b/dev/tests/integration/testsuite/Magento/Sales/Model/Order/CreditmemoFactoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Model/Order/Email/Sender/CreditmemoSenderTest.php b/dev/tests/integration/testsuite/Magento/Sales/Model/Order/Email/Sender/CreditmemoSenderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Model/Order/Email/Sender/InvoiceSenderTest.php b/dev/tests/integration/testsuite/Magento/Sales/Model/Order/Email/Sender/InvoiceSenderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Model/Order/Email/Sender/OrderSenderTest.php b/dev/tests/integration/testsuite/Magento/Sales/Model/Order/Email/Sender/OrderSenderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Model/Order/Email/Sender/ShipmentSenderTest.php b/dev/tests/integration/testsuite/Magento/Sales/Model/Order/Email/Sender/ShipmentSenderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Model/Order/InvoiceTest.php b/dev/tests/integration/testsuite/Magento/Sales/Model/Order/InvoiceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Model/Order/ItemTest.php b/dev/tests/integration/testsuite/Magento/Sales/Model/Order/ItemTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Model/Order/Payment/RepositoryTest.php b/dev/tests/integration/testsuite/Magento/Sales/Model/Order/Payment/RepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Model/Order/Payment/TransactionTest.php b/dev/tests/integration/testsuite/Magento/Sales/Model/Order/Payment/TransactionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Model/Order/Pdf/AbstractPdfTest.php b/dev/tests/integration/testsuite/Magento/Sales/Model/Order/Pdf/AbstractPdfTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Model/Order/Reorder/UnavailableProductsProviderTest.php b/dev/tests/integration/testsuite/Magento/Sales/Model/Order/Reorder/UnavailableProductsProviderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Model/Order/ShipmentTest.php b/dev/tests/integration/testsuite/Magento/Sales/Model/Order/ShipmentTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Model/Order/StatusTest.php b/dev/tests/integration/testsuite/Magento/Sales/Model/Order/StatusTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Model/OrderIncrementIdCheckerTest.php b/dev/tests/integration/testsuite/Magento/Sales/Model/OrderIncrementIdCheckerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Model/ResourceModel/Order/StatusTest.php b/dev/tests/integration/testsuite/Magento/Sales/Model/ResourceModel/Order/StatusTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Model/ResourceModel/OrderTest.php b/dev/tests/integration/testsuite/Magento/Sales/Model/ResourceModel/OrderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Model/ResourceModel/Report/Bestsellers/CollectionTest.php b/dev/tests/integration/testsuite/Magento/Sales/Model/ResourceModel/Report/Bestsellers/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Model/ResourceModel/Report/Invoiced/Collection/InvoicedTest.php b/dev/tests/integration/testsuite/Magento/Sales/Model/ResourceModel/Report/Invoiced/Collection/InvoicedTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Model/ResourceModel/Report/Invoiced/Collection/OrderTest.php b/dev/tests/integration/testsuite/Magento/Sales/Model/ResourceModel/Report/Invoiced/Collection/OrderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Model/ResourceModel/Report/Refunded/Collection/OrderTest.php b/dev/tests/integration/testsuite/Magento/Sales/Model/ResourceModel/Report/Refunded/Collection/OrderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Model/ResourceModel/Report/Refunded/Collection/RefundedTest.php b/dev/tests/integration/testsuite/Magento/Sales/Model/ResourceModel/Report/Refunded/Collection/RefundedTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Model/ResourceModel/Report/Shipping/Collection/OrderTest.php b/dev/tests/integration/testsuite/Magento/Sales/Model/ResourceModel/Report/Shipping/Collection/OrderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Model/ResourceModel/Report/Shipping/Collection/ShipmentTest.php b/dev/tests/integration/testsuite/Magento/Sales/Model/ResourceModel/Report/Shipping/Collection/ShipmentTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Model/ResourceModel/Sale/CollectionTest.php b/dev/tests/integration/testsuite/Magento/Sales/Model/ResourceModel/Sale/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/Observer/Backend/CustomerQuoteTest.php b/dev/tests/integration/testsuite/Magento/Sales/Observer/Backend/CustomerQuoteTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/address.php b/dev/tests/integration/testsuite/Magento/Sales/_files/address.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/address_data.php b/dev/tests/integration/testsuite/Magento/Sales/_files/address_data.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/address_list.php b/dev/tests/integration/testsuite/Magento/Sales/_files/address_list.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/address_list_rollback.php b/dev/tests/integration/testsuite/Magento/Sales/_files/address_list_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/assign_status_to_state.php b/dev/tests/integration/testsuite/Magento/Sales/_files/assign_status_to_state.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/creditmemo_comments_for_search.php b/dev/tests/integration/testsuite/Magento/Sales/_files/creditmemo_comments_for_search.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/creditmemo_for_get.php b/dev/tests/integration/testsuite/Magento/Sales/_files/creditmemo_for_get.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/creditmemo_for_get_rollback.php b/dev/tests/integration/testsuite/Magento/Sales/_files/creditmemo_for_get_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/creditmemo_items_for_search.php b/dev/tests/integration/testsuite/Magento/Sales/_files/creditmemo_items_for_search.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/creditmemo_list.php b/dev/tests/integration/testsuite/Magento/Sales/_files/creditmemo_list.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/creditmemo_list_rollback.php b/dev/tests/integration/testsuite/Magento/Sales/_files/creditmemo_list_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/creditmemo_with_list.php b/dev/tests/integration/testsuite/Magento/Sales/_files/creditmemo_with_list.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/creditmemo_with_list_rollback.php b/dev/tests/integration/testsuite/Magento/Sales/_files/creditmemo_with_list_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/default_rollback.php b/dev/tests/integration/testsuite/Magento/Sales/_files/default_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/invoice.php b/dev/tests/integration/testsuite/Magento/Sales/_files/invoice.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/invoice_comments_for_search.php b/dev/tests/integration/testsuite/Magento/Sales/_files/invoice_comments_for_search.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/invoice_fixture_store_order.php b/dev/tests/integration/testsuite/Magento/Sales/_files/invoice_fixture_store_order.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/invoice_items_for_search.php b/dev/tests/integration/testsuite/Magento/Sales/_files/invoice_items_for_search.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/invoice_list.php b/dev/tests/integration/testsuite/Magento/Sales/_files/invoice_list.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/invoice_list_rollback.php b/dev/tests/integration/testsuite/Magento/Sales/_files/invoice_list_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/invoice_payflowpro.php b/dev/tests/integration/testsuite/Magento/Sales/_files/invoice_payflowpro.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/invoice_rollback.php b/dev/tests/integration/testsuite/Magento/Sales/_files/invoice_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/order.php b/dev/tests/integration/testsuite/Magento/Sales/_files/order.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/order_alphanumeric_id.php b/dev/tests/integration/testsuite/Magento/Sales/_files/order_alphanumeric_id.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/order_configurable_product.php b/dev/tests/integration/testsuite/Magento/Sales/_files/order_configurable_product.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/order_configurable_product_rollback.php b/dev/tests/integration/testsuite/Magento/Sales/_files/order_configurable_product_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/order_fixture_store.php b/dev/tests/integration/testsuite/Magento/Sales/_files/order_fixture_store.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/order_fixture_store_rollback.php b/dev/tests/integration/testsuite/Magento/Sales/_files/order_fixture_store_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/order_from_past.php b/dev/tests/integration/testsuite/Magento/Sales/_files/order_from_past.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/order_info.php b/dev/tests/integration/testsuite/Magento/Sales/_files/order_info.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/order_item_list.php b/dev/tests/integration/testsuite/Magento/Sales/_files/order_item_list.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/order_item_with_configurable_for_reorder.php b/dev/tests/integration/testsuite/Magento/Sales/_files/order_item_with_configurable_for_reorder.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/order_item_with_configurable_for_reorder_rollback.php b/dev/tests/integration/testsuite/Magento/Sales/_files/order_item_with_configurable_for_reorder_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/order_list.php b/dev/tests/integration/testsuite/Magento/Sales/_files/order_list.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/order_list_rollback.php b/dev/tests/integration/testsuite/Magento/Sales/_files/order_list_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/order_new.php b/dev/tests/integration/testsuite/Magento/Sales/_files/order_new.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/order_new_rollback.php b/dev/tests/integration/testsuite/Magento/Sales/_files/order_new_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/order_paid_with_payflowpro.php b/dev/tests/integration/testsuite/Magento/Sales/_files/order_paid_with_payflowpro.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/order_payment_list.php b/dev/tests/integration/testsuite/Magento/Sales/_files/order_payment_list.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/order_pending_payment.php b/dev/tests/integration/testsuite/Magento/Sales/_files/order_pending_payment.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/order_rollback.php b/dev/tests/integration/testsuite/Magento/Sales/_files/order_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/order_shipping.php b/dev/tests/integration/testsuite/Magento/Sales/_files/order_shipping.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/order_shipping_address_different_to_billing.php b/dev/tests/integration/testsuite/Magento/Sales/_files/order_shipping_address_different_to_billing.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/order_shipping_address_same_as_billing.php b/dev/tests/integration/testsuite/Magento/Sales/_files/order_shipping_address_same_as_billing.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/order_status.php b/dev/tests/integration/testsuite/Magento/Sales/_files/order_status.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/order_status_history_for_search.php b/dev/tests/integration/testsuite/Magento/Sales/_files/order_status_history_for_search.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/order_with_customer.php b/dev/tests/integration/testsuite/Magento/Sales/_files/order_with_customer.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/order_with_dummy_item_and_invoiced.php b/dev/tests/integration/testsuite/Magento/Sales/_files/order_with_dummy_item_and_invoiced.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/order_with_shipping_and_invoice.php b/dev/tests/integration/testsuite/Magento/Sales/_files/order_with_shipping_and_invoice.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/order_with_shipping_and_invoice_rollback.php b/dev/tests/integration/testsuite/Magento/Sales/_files/order_with_shipping_and_invoice_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/quote.php b/dev/tests/integration/testsuite/Magento/Sales/_files/quote.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/quote_rollback.php b/dev/tests/integration/testsuite/Magento/Sales/_files/quote_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/quote_with_bundle.php b/dev/tests/integration/testsuite/Magento/Sales/_files/quote_with_bundle.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/quote_with_bundle_rollback.php b/dev/tests/integration/testsuite/Magento/Sales/_files/quote_with_bundle_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/quote_with_customer.php b/dev/tests/integration/testsuite/Magento/Sales/_files/quote_with_customer.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/quote_with_customer_rollback.php b/dev/tests/integration/testsuite/Magento/Sales/_files/quote_with_customer_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/quote_with_new_customer.php b/dev/tests/integration/testsuite/Magento/Sales/_files/quote_with_new_customer.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/report_bestsellers.php b/dev/tests/integration/testsuite/Magento/Sales/_files/report_bestsellers.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/report_invoiced.php b/dev/tests/integration/testsuite/Magento/Sales/_files/report_invoiced.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/report_refunded.php b/dev/tests/integration/testsuite/Magento/Sales/_files/report_refunded.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/report_shipping.php b/dev/tests/integration/testsuite/Magento/Sales/_files/report_shipping.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/shipment.php b/dev/tests/integration/testsuite/Magento/Sales/_files/shipment.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/shipment_comments_for_search.php b/dev/tests/integration/testsuite/Magento/Sales/_files/shipment_comments_for_search.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/shipment_items_for_search.php b/dev/tests/integration/testsuite/Magento/Sales/_files/shipment_items_for_search.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/shipment_list.php b/dev/tests/integration/testsuite/Magento/Sales/_files/shipment_list.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/shipment_list_rollback.php b/dev/tests/integration/testsuite/Magento/Sales/_files/shipment_list_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/shipment_rollback.php b/dev/tests/integration/testsuite/Magento/Sales/_files/shipment_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/shipment_tracks_for_search.php b/dev/tests/integration/testsuite/Magento/Sales/_files/shipment_tracks_for_search.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/transactions.php b/dev/tests/integration/testsuite/Magento/Sales/_files/transactions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/transactions_detailed.php b/dev/tests/integration/testsuite/Magento/Sales/_files/transactions_detailed.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/transactions_list.php b/dev/tests/integration/testsuite/Magento/Sales/_files/transactions_list.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/transactions_list_rollback.php b/dev/tests/integration/testsuite/Magento/Sales/_files/transactions_list_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/two_orders_for_one_of_two_customers.php b/dev/tests/integration/testsuite/Magento/Sales/_files/two_orders_for_one_of_two_customers.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sales/_files/two_orders_for_two_diff_customers.php b/dev/tests/integration/testsuite/Magento/Sales/_files/two_orders_for_two_diff_customers.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/LabelsTest.php b/dev/tests/integration/testsuite/Magento/SalesRule/Block/Adminhtml/Promo/Quote/Edit/Tab/LabelsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/SalesRule/Model/Quote/Address/Total/ShippingTest.php b/dev/tests/integration/testsuite/Magento/SalesRule/Model/Quote/Address/Total/ShippingTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/SalesRule/Model/ResourceModel/Report/Rule/CreatedatTest.php b/dev/tests/integration/testsuite/Magento/SalesRule/Model/ResourceModel/Report/Rule/CreatedatTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/SalesRule/Model/ResourceModel/Rule/CollectionTest.php b/dev/tests/integration/testsuite/Magento/SalesRule/Model/ResourceModel/Rule/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/SalesRule/Model/ResourceModel/RuleTest.php b/dev/tests/integration/testsuite/Magento/SalesRule/Model/ResourceModel/RuleTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/SalesRule/Model/Rule/Condition/ProductTest.php b/dev/tests/integration/testsuite/Magento/SalesRule/Model/Rule/Condition/ProductTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/SalesRule/_files/cart_rule_40_percent_off.php b/dev/tests/integration/testsuite/Magento/SalesRule/_files/cart_rule_40_percent_off.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/SalesRule/_files/cart_rule_50_percent_off.php b/dev/tests/integration/testsuite/Magento/SalesRule/_files/cart_rule_50_percent_off.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/SalesRule/_files/cart_rule_free_shipping.php b/dev/tests/integration/testsuite/Magento/SalesRule/_files/cart_rule_free_shipping.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/SalesRule/_files/cart_rule_free_shipping_by_cart.php b/dev/tests/integration/testsuite/Magento/SalesRule/_files/cart_rule_free_shipping_by_cart.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/SalesRule/_files/cart_rule_free_shipping_rollback.php b/dev/tests/integration/testsuite/Magento/SalesRule/_files/cart_rule_free_shipping_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/SalesRule/_files/coupons.php b/dev/tests/integration/testsuite/Magento/SalesRule/_files/coupons.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/SalesRule/_files/coupons_advanced.php b/dev/tests/integration/testsuite/Magento/SalesRule/_files/coupons_advanced.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/SalesRule/_files/order_with_coupon.php b/dev/tests/integration/testsuite/Magento/SalesRule/_files/order_with_coupon.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/SalesRule/_files/report_coupons.php b/dev/tests/integration/testsuite/Magento/SalesRule/_files/report_coupons.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/SalesRule/_files/rule_custom_product_attribute.php b/dev/tests/integration/testsuite/Magento/SalesRule/_files/rule_custom_product_attribute.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/SalesRule/_files/rule_free_shipping_by_product_weight.php b/dev/tests/integration/testsuite/Magento/SalesRule/_files/rule_free_shipping_by_product_weight.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/SalesRule/_files/rule_specific_date.php b/dev/tests/integration/testsuite/Magento/SalesRule/_files/rule_specific_date.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/SalesRule/_files/rules.php b/dev/tests/integration/testsuite/Magento/SalesRule/_files/rules.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/SalesRule/_files/rules_advanced.php b/dev/tests/integration/testsuite/Magento/SalesRule/_files/rules_advanced.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/SalesRule/_files/rules_autogeneration.php b/dev/tests/integration/testsuite/Magento/SalesRule/_files/rules_autogeneration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/SalesRule/_files/rules_autogeneration_rollback.php b/dev/tests/integration/testsuite/Magento/SalesRule/_files/rules_autogeneration_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/SalesRule/_files/rules_categories.php b/dev/tests/integration/testsuite/Magento/SalesRule/_files/rules_categories.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/SalesRule/_files/rules_categories_rollback.php b/dev/tests/integration/testsuite/Magento/SalesRule/_files/rules_categories_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/SalesRule/_files/rules_category.php b/dev/tests/integration/testsuite/Magento/SalesRule/_files/rules_category.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/SalesRule/_files/rules_category_rollback.php b/dev/tests/integration/testsuite/Magento/SalesRule/_files/rules_category_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/SalesRule/_files/rules_group_all_categories.php b/dev/tests/integration/testsuite/Magento/SalesRule/_files/rules_group_all_categories.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/SalesRule/_files/rules_group_all_categories_price_attr_set.php b/dev/tests/integration/testsuite/Magento/SalesRule/_files/rules_group_all_categories_price_attr_set.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/SalesRule/_files/rules_group_any_categories.php b/dev/tests/integration/testsuite/Magento/SalesRule/_files/rules_group_any_categories.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/SalesRule/_files/rules_group_any_categories_price_address.php b/dev/tests/integration/testsuite/Magento/SalesRule/_files/rules_group_any_categories_price_address.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/SalesRule/_files/rules_group_any_categories_price_attr_set.php b/dev/tests/integration/testsuite/Magento/SalesRule/_files/rules_group_any_categories_price_attr_set.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/SalesRule/_files/rules_group_any_categories_price_attr_set_any.php b/dev/tests/integration/testsuite/Magento/SalesRule/_files/rules_group_any_categories_price_attr_set_any.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/SalesRule/_files/rules_group_categories_price_sku_attr_set_any.php b/dev/tests/integration/testsuite/Magento/SalesRule/_files/rules_group_categories_price_sku_attr_set_any.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/SalesRule/_files/rules_group_not_categories_sku_attr.php b/dev/tests/integration/testsuite/Magento/SalesRule/_files/rules_group_not_categories_sku_attr.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/SalesRule/_files/rules_rollback.php b/dev/tests/integration/testsuite/Magento/SalesRule/_files/rules_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/SampleData/Model/DependencyTest.php b/dev/tests/integration/testsuite/Magento/SampleData/Model/DependencyTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/SampleData/_files/Modules/FirstModule/composer.json b/dev/tests/integration/testsuite/Magento/SampleData/_files/Modules/FirstModule/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/SampleData/_files/Modules/SecondModule/composer.json b/dev/tests/integration/testsuite/Magento/SampleData/_files/Modules/SecondModule/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/SampleData/_files/Modules/ThirdModule/composer.json b/dev/tests/integration/testsuite/Magento/SampleData/_files/Modules/ThirdModule/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Search/Block/TermTest.php b/dev/tests/integration/testsuite/Magento/Search/Block/TermTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Search/Model/Adminhtml/System/Config/Source/EngineTest.php b/dev/tests/integration/testsuite/Magento/Search/Model/Adminhtml/System/Config/Source/EngineTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Search/Model/ResourceModel/SynonymGroupTest.php b/dev/tests/integration/testsuite/Magento/Search/Model/ResourceModel/SynonymGroupTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Search/Model/SearchEngine/ConfigTest.php b/dev/tests/integration/testsuite/Magento/Search/Model/SearchEngine/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Search/Model/SynonymAnalyzerTest.php b/dev/tests/integration/testsuite/Magento/Search/Model/SynonymAnalyzerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Search/Model/SynonymGroupRepositoryTest.php b/dev/tests/integration/testsuite/Magento/Search/Model/SynonymGroupRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Search/Model/SynonymReaderTest.php b/dev/tests/integration/testsuite/Magento/Search/Model/SynonymReaderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Search/_files/query.php b/dev/tests/integration/testsuite/Magento/Search/_files/query.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Search/_files/query_rollback.php b/dev/tests/integration/testsuite/Magento/Search/_files/query_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Search/_files/search_engine.xml b/dev/tests/integration/testsuite/Magento/Search/_files/search_engine.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Search/_files/synonym_reader.php b/dev/tests/integration/testsuite/Magento/Search/_files/synonym_reader.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Search/_files/synonym_reader_rollback.php b/dev/tests/integration/testsuite/Magento/Search/_files/synonym_reader_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Security/Controller/Adminhtml/Session/LogoutAllTest.php b/dev/tests/integration/testsuite/Magento/Security/Controller/Adminhtml/Session/LogoutAllTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Security/Model/AdminSessionsManagerTest.php b/dev/tests/integration/testsuite/Magento/Security/Model/AdminSessionsManagerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Security/Model/Plugin/AuthSessionTest.php b/dev/tests/integration/testsuite/Magento/Security/Model/Plugin/AuthSessionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Security/Model/ResourceModel/AdminSessionInfo/CollectionTest.php b/dev/tests/integration/testsuite/Magento/Security/Model/ResourceModel/AdminSessionInfo/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Security/Model/ResourceModel/AdminSessionInfoTest.php b/dev/tests/integration/testsuite/Magento/Security/Model/ResourceModel/AdminSessionInfoTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Security/Model/ResourceModel/PasswordResetRequestEvent/CollectionTest.php b/dev/tests/integration/testsuite/Magento/Security/Model/ResourceModel/PasswordResetRequestEvent/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Security/Model/ResourceModel/PasswordResetRequestEventTest.php b/dev/tests/integration/testsuite/Magento/Security/Model/ResourceModel/PasswordResetRequestEventTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Security/Model/SecurityManagerTest.php b/dev/tests/integration/testsuite/Magento/Security/Model/SecurityManagerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Security/_files/adminsession.php b/dev/tests/integration/testsuite/Magento/Security/_files/adminsession.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Security/_files/password_reset_request_events.php b/dev/tests/integration/testsuite/Magento/Security/_files/password_reset_request_events.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/SendFriend/Block/SendTest.php b/dev/tests/integration/testsuite/Magento/SendFriend/Block/SendTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Console/Command/DependenciesShowFrameworkCommandTest.php b/dev/tests/integration/testsuite/Magento/Setup/Console/Command/DependenciesShowFrameworkCommandTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Console/Command/DependenciesShowModulesCircularCommandTest.php b/dev/tests/integration/testsuite/Magento/Setup/Console/Command/DependenciesShowModulesCircularCommandTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Console/Command/DependenciesShowModulesCommandTest.php b/dev/tests/integration/testsuite/Magento/Setup/Console/Command/DependenciesShowModulesCommandTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Console/Command/DeployStaticContentCommandTest.php b/dev/tests/integration/testsuite/Magento/Setup/Console/Command/DeployStaticContentCommandTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Console/Command/I18nCollectPhrasesCommandTest.php b/dev/tests/integration/testsuite/Magento/Setup/Console/Command/I18nCollectPhrasesCommandTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Console/Command/I18nPackCommandTest.php b/dev/tests/integration/testsuite/Magento/Setup/Console/Command/I18nPackCommandTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/config/dump_config.php b/dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/config/dump_config.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/expectedPhrases.csv b/dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/expectedPhrases.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/i18n.csv b/dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/i18n.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/output/.gitignore b/dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/output/.gitignore
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/phrases/TestPhrases.php b/dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/phrases/TestPhrases.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/phrases/test_di.xml b/dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/phrases/test_di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/root/app/code/Magento/A/Model/Foo.php b/dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/root/app/code/Magento/A/Model/Foo.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/root/app/code/Magento/A/composer.json b/dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/root/app/code/Magento/A/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/root/app/code/Magento/A/etc/module.xml b/dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/root/app/code/Magento/A/etc/module.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/root/app/code/Magento/A/registration.php b/dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/root/app/code/Magento/A/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/root/app/code/Magento/B/Model/Foo.php b/dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/root/app/code/Magento/B/Model/Foo.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/root/app/code/Magento/B/composer.json b/dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/root/app/code/Magento/B/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/root/app/code/Magento/B/etc/module.xml b/dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/root/app/code/Magento/B/etc/module.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/root/app/code/Magento/B/registration.php b/dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/root/app/code/Magento/B/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/root/app/code/Magento/C/registration.php b/dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/root/app/code/Magento/C/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/root/app/code/Magento/D/registration.php b/dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/root/app/code/Magento/D/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/root/lib/internal/Magento/Framework/Test/Unit/View/Element/UiComponentFactoryTest.php b/dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/root/lib/internal/Magento/Framework/Test/Unit/View/Element/UiComponentFactoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Controller/UrlCheckTest.php b/dev/tests/integration/testsuite/Magento/Setup/Controller/UrlCheckTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Fixtures/FixtureModelTest.php b/dev/tests/integration/testsuite/Magento/Setup/Fixtures/FixtureModelTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Fixtures/FixturesAsserts/BundleProductsAssert.php b/dev/tests/integration/testsuite/Magento/Setup/Fixtures/FixturesAsserts/BundleProductsAssert.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Fixtures/FixturesAsserts/ConfigurableProductsAssert.php b/dev/tests/integration/testsuite/Magento/Setup/Fixtures/FixturesAsserts/ConfigurableProductsAssert.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Fixtures/FixturesAsserts/ImagesAssert.php b/dev/tests/integration/testsuite/Magento/Setup/Fixtures/FixturesAsserts/ImagesAssert.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Fixtures/FixturesAsserts/ProductAssert.php b/dev/tests/integration/testsuite/Magento/Setup/Fixtures/FixturesAsserts/ProductAssert.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Fixtures/FixturesAsserts/SimpleProductsAssert.php b/dev/tests/integration/testsuite/Magento/Setup/Fixtures/FixturesAsserts/SimpleProductsAssert.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Fixtures/_files/attributeSets.xml b/dev/tests/integration/testsuite/Magento/Setup/Fixtures/_files/attributeSets.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Fixtures/_files/small.xml b/dev/tests/integration/testsuite/Magento/Setup/Fixtures/_files/small.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Fixtures/_files/tax_rates.csv b/dev/tests/integration/testsuite/Magento/Setup/Fixtures/_files/tax_rates.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Model/ConfigOptionsListCollectorTest.php b/dev/tests/integration/testsuite/Magento/Setup/Model/ConfigOptionsListCollectorTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Model/Cron/MultipleStreamOutputTest.php b/dev/tests/integration/testsuite/Magento/Setup/Model/Cron/MultipleStreamOutputTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Model/Cron/_files/a.txt b/dev/tests/integration/testsuite/Magento/Setup/Model/Cron/_files/a.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Model/Cron/_files/b.txt b/dev/tests/integration/testsuite/Magento/Setup/Model/Cron/_files/b.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Model/FixtureGenerator/ProductGeneratorTest.php b/dev/tests/integration/testsuite/Magento/Setup/Model/FixtureGenerator/ProductGeneratorTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Model/ObjectManagerProviderTest.php b/dev/tests/integration/testsuite/Magento/Setup/Model/ObjectManagerProviderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Model/_files/testSkeleton/composer.json b/dev/tests/integration/testsuite/Magento/Setup/Model/_files/testSkeleton/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Model/_files/testSkeleton/composer.lock b/dev/tests/integration/testsuite/Magento/Setup/Model/_files/testSkeleton/composer.lock
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/DataSetupTest.php b/dev/tests/integration/testsuite/Magento/Setup/Module/DataSetupTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/CircularTest.php b/dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/CircularTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/Parser/Composer/JsonTest.php b/dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/Parser/Composer/JsonTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/Parser/Config/XmlTest.php b/dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/Parser/Config/XmlTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/Report/CircularTest.php b/dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/Report/CircularTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/Report/DependencyTest.php b/dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/Report/DependencyTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/Report/FrameworkTest.php b/dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/Report/FrameworkTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/code/Magento/FirstModule/Helper/Helper.php b/dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/code/Magento/FirstModule/Helper/Helper.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/code/Magento/FirstModule/Model/Model.php b/dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/code/Magento/FirstModule/Model/Model.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/code/Magento/FirstModule/Model/WithoutDependencies.php b/dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/code/Magento/FirstModule/Model/WithoutDependencies.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/code/Magento/FirstModule/etc/module.xml b/dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/code/Magento/FirstModule/etc/module.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/code/Magento/FirstModule/view/frontend/template.phtml b/dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/code/Magento/FirstModule/view/frontend/template.phtml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/composer1.json b/dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/composer1.json
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/composer2.json b/dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/composer2.json
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/composer3.json b/dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/composer3.json
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/composer4.json b/dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/composer4.json
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/composer5.json b/dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/composer5.json
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/expected/circular-dependencies.csv b/dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/expected/circular-dependencies.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/expected/dependencies.csv b/dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/expected/dependencies.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/expected/framework-dependencies.csv b/dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/expected/framework-dependencies.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/expected/without-circular-dependencies.csv b/dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/expected/without-circular-dependencies.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/expected/without-dependencies.csv b/dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/expected/without-dependencies.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/expected/without-framework-dependencies.csv b/dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/expected/without-framework-dependencies.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/module1.xml b/dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/module1.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/module2.xml b/dev/tests/integration/testsuite/Magento/Setup/Module/Dependency/_files/module2.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Dictionary/GeneratorTest.php b/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Dictionary/GeneratorTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Dictionary/_files/expected/with_context.csv b/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Dictionary/_files/expected/with_context.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Dictionary/_files/expected/without_context.csv b/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Dictionary/_files/expected/without_context.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Dictionary/_files/source/app/code/Magento/FirstModule/Helper/Helper.php b/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Dictionary/_files/source/app/code/Magento/FirstModule/Helper/Helper.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Dictionary/_files/source/app/code/Magento/FirstModule/Model/Model.php b/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Dictionary/_files/source/app/code/Magento/FirstModule/Model/Model.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Dictionary/_files/source/app/code/Magento/FirstModule/view/frontend/default.xml b/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Dictionary/_files/source/app/code/Magento/FirstModule/view/frontend/default.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Dictionary/_files/source/app/code/Magento/FirstModule/view/frontend/file.js b/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Dictionary/_files/source/app/code/Magento/FirstModule/view/frontend/file.js
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Dictionary/_files/source/app/code/Magento/FirstModule/view/frontend/template.phtml b/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Dictionary/_files/source/app/code/Magento/FirstModule/view/frontend/template.phtml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Dictionary/_files/source/app/code/Magento/SecondModule/Model/Model.php b/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Dictionary/_files/source/app/code/Magento/SecondModule/Model/Model.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Dictionary/_files/source/app/design/adminhtml/default/backend/default.xml b/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Dictionary/_files/source/app/design/adminhtml/default/backend/default.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Dictionary/_files/source/app/design/adminhtml/default/backend/template.phtml b/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Dictionary/_files/source/app/design/adminhtml/default/backend/template.phtml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Dictionary/_files/source/lib/web/mage/file.js b/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Dictionary/_files/source/lib/web/mage/file.js
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Dictionary/_files/source/lib/web/varien/file.js b/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Dictionary/_files/source/lib/web/varien/file.js
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Dictionary/_files/source/not_magento_dir/Model.php b/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Dictionary/_files/source/not_magento_dir/Model.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Dictionary/_files/source/not_magento_dir/file.js b/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Dictionary/_files/source/not_magento_dir/file.js
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Dictionary/_files/source/not_magento_dir/template.phtml b/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Dictionary/_files/source/not_magento_dir/template.phtml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Pack/GeneratorTest.php b/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Pack/GeneratorTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Pack/_files/expected/app/code/Magento/FirstModule/i18n/de_DE.csv b/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Pack/_files/expected/app/code/Magento/FirstModule/i18n/de_DE.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Pack/_files/expected/app/code/Magento/SecondModule/i18n/de_DE.csv b/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Pack/_files/expected/app/code/Magento/SecondModule/i18n/de_DE.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Pack/_files/expected/app/design/adminhtml/default/i18n/de_DE.csv b/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Pack/_files/expected/app/design/adminhtml/default/i18n/de_DE.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Pack/_files/expected/lib/web/i18n/de_DE.csv b/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Pack/_files/expected/lib/web/i18n/de_DE.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Pack/_files/source.csv b/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Pack/_files/source.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Parser/Adapter/JsTest.php b/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Parser/Adapter/JsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Parser/Adapter/Php/Tokenizer/PhraseCollectorTest.php b/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Parser/Adapter/Php/Tokenizer/PhraseCollectorTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Parser/Adapter/Php/Tokenizer/Translate/MethodCollectorTest.php b/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Parser/Adapter/Php/Tokenizer/Translate/MethodCollectorTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Parser/Adapter/Php/Tokenizer/_files/methodsCode.php.txt b/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Parser/Adapter/Php/Tokenizer/_files/methodsCode.php.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Parser/Adapter/Php/Tokenizer/_files/objectsCode.php.txt b/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Parser/Adapter/Php/Tokenizer/_files/objectsCode.php.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Parser/Adapter/XmlTest.php b/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Parser/Adapter/XmlTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Parser/Adapter/_files/jsPhrasesForTest.js b/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Parser/Adapter/_files/jsPhrasesForTest.js
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Parser/Adapter/_files/xmlPhrasesForTest.xml b/dev/tests/integration/testsuite/Magento/Setup/Module/I18n/Parser/Adapter/_files/xmlPhrasesForTest.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Shipping/Block/ItemsTest.php b/dev/tests/integration/testsuite/Magento/Shipping/Block/ItemsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Shipping/Helper/DataTest.php b/dev/tests/integration/testsuite/Magento/Shipping/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Shipping/Model/ShippingTest.php b/dev/tests/integration/testsuite/Magento/Shipping/Model/ShippingTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Signifyd/Block/Adminhtml/CaseInfoTest.php b/dev/tests/integration/testsuite/Magento/Signifyd/Block/Adminhtml/CaseInfoTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Signifyd/Block/FingerprintTest.php b/dev/tests/integration/testsuite/Magento/Signifyd/Block/FingerprintTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Signifyd/Controller/Webhooks/HandlerTest.php b/dev/tests/integration/testsuite/Magento/Signifyd/Controller/Webhooks/HandlerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Signifyd/Model/CaseManagementTest.php b/dev/tests/integration/testsuite/Magento/Signifyd/Model/CaseManagementTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Signifyd/Model/CaseRepositoryTest.php b/dev/tests/integration/testsuite/Magento/Signifyd/Model/CaseRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Signifyd/Model/CaseServices/CreationServiceTest.php b/dev/tests/integration/testsuite/Magento/Signifyd/Model/CaseServices/CreationServiceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Signifyd/Model/CaseServices/UpdatingServiceTest.php b/dev/tests/integration/testsuite/Magento/Signifyd/Model/CaseServices/UpdatingServiceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Signifyd/Model/Guarantee/CancelingServiceTest.php b/dev/tests/integration/testsuite/Magento/Signifyd/Model/Guarantee/CancelingServiceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Signifyd/Model/Guarantee/CreationServiceTest.php b/dev/tests/integration/testsuite/Magento/Signifyd/Model/Guarantee/CreationServiceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Signifyd/Model/SignifydGateway/Request/CreateCaseBuilderTest.php b/dev/tests/integration/testsuite/Magento/Signifyd/Model/SignifydGateway/Request/CreateCaseBuilderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Signifyd/Observer/PlaceOrderTest.php b/dev/tests/integration/testsuite/Magento/Signifyd/Observer/PlaceOrderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Signifyd/Plugin/CancelOrderTest.php b/dev/tests/integration/testsuite/Magento/Signifyd/Plugin/CancelOrderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Signifyd/Plugin/DenyPaymentTest.php b/dev/tests/integration/testsuite/Magento/Signifyd/Plugin/DenyPaymentTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Signifyd/_files/approved_case.php b/dev/tests/integration/testsuite/Magento/Signifyd/_files/approved_case.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Signifyd/_files/case.php b/dev/tests/integration/testsuite/Magento/Signifyd/_files/case.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Signifyd/_files/customer.php b/dev/tests/integration/testsuite/Magento/Signifyd/_files/customer.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Signifyd/_files/declined_case.php b/dev/tests/integration/testsuite/Magento/Signifyd/_files/declined_case.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Signifyd/_files/multiple_cases.php b/dev/tests/integration/testsuite/Magento/Signifyd/_files/multiple_cases.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Signifyd/_files/order_with_customer_and_two_simple_products.php b/dev/tests/integration/testsuite/Magento/Signifyd/_files/order_with_customer_and_two_simple_products.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Signifyd/_files/order_with_guest_and_virtual_product.php b/dev/tests/integration/testsuite/Magento/Signifyd/_files/order_with_guest_and_virtual_product.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Signifyd/_files/store.php b/dev/tests/integration/testsuite/Magento/Signifyd/_files/store.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Signifyd/_files/webhook_body.json b/dev/tests/integration/testsuite/Magento/Signifyd/_files/webhook_body.json
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sitemap/Helper/DataTest.php b/dev/tests/integration/testsuite/Magento/Sitemap/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sitemap/Model/ResourceModel/Catalog/ProductTest.php b/dev/tests/integration/testsuite/Magento/Sitemap/Model/ResourceModel/Catalog/ProductTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sitemap/_files/magento_image_sitemap.png b/dev/tests/integration/testsuite/Magento/Sitemap/_files/magento_image_sitemap.png
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sitemap/_files/second_image.png b/dev/tests/integration/testsuite/Magento/Sitemap/_files/second_image.png
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sitemap/_files/sitemap_products.php b/dev/tests/integration/testsuite/Magento/Sitemap/_files/sitemap_products.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Sitemap/_files/sitemap_products_rollback.php b/dev/tests/integration/testsuite/Magento/Sitemap/_files/sitemap_products_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Store/App/FrontController/Plugin/RequestPreprocessorTest.php b/dev/tests/integration/testsuite/Magento/Store/App/FrontController/Plugin/RequestPreprocessorTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Store/App/Request/PathInfoProcessorTest.php b/dev/tests/integration/testsuite/Magento/Store/App/Request/PathInfoProcessorTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Store/Block/SwitcherTest.php b/dev/tests/integration/testsuite/Magento/Store/Block/SwitcherTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Store/Controller/Store/SwitchActionTest.php b/dev/tests/integration/testsuite/Magento/Store/Controller/Store/SwitchActionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Store/Model/App/EmulationTest.php b/dev/tests/integration/testsuite/Magento/Store/Model/App/EmulationTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Store/Model/DataSource.php b/dev/tests/integration/testsuite/Magento/Store/Model/DataSource.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Store/Model/GroupTest.php b/dev/tests/integration/testsuite/Magento/Store/Model/GroupTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Store/Model/ResourceModel/Store/CollectionTest.php b/dev/tests/integration/testsuite/Magento/Store/Model/ResourceModel/Store/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Store/Model/ResourceModel/StoreTest.php b/dev/tests/integration/testsuite/Magento/Store/Model/ResourceModel/StoreTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Store/Model/ResourceModel/WebsiteTest.php b/dev/tests/integration/testsuite/Magento/Store/Model/ResourceModel/WebsiteTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Store/Model/StoreCookieManagerTest.php b/dev/tests/integration/testsuite/Magento/Store/Model/StoreCookieManagerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Store/Model/StoreManagerTest.php b/dev/tests/integration/testsuite/Magento/Store/Model/StoreManagerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Store/Model/StoreResolverTest.php b/dev/tests/integration/testsuite/Magento/Store/Model/StoreResolverTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Store/Model/StoreTest.php b/dev/tests/integration/testsuite/Magento/Store/Model/StoreTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Store/Model/WebsiteTest.php b/dev/tests/integration/testsuite/Magento/Store/Model/WebsiteTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Store/_files/core_fixturestore.php b/dev/tests/integration/testsuite/Magento/Store/_files/core_fixturestore.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Store/_files/core_fixturestore_rollback.php b/dev/tests/integration/testsuite/Magento/Store/_files/core_fixturestore_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Store/_files/core_second_third_fixturestore.php b/dev/tests/integration/testsuite/Magento/Store/_files/core_second_third_fixturestore.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Store/_files/fixture_store_with_catalogsearch_index.php b/dev/tests/integration/testsuite/Magento/Store/_files/fixture_store_with_catalogsearch_index.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Store/_files/fixture_store_with_catalogsearch_index_rollback.php b/dev/tests/integration/testsuite/Magento/Store/_files/fixture_store_with_catalogsearch_index_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Store/_files/scope.config.fixture.php b/dev/tests/integration/testsuite/Magento/Store/_files/scope.config.fixture.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Store/_files/second_store.php b/dev/tests/integration/testsuite/Magento/Store/_files/second_store.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Store/_files/second_store_rollback.php b/dev/tests/integration/testsuite/Magento/Store/_files/second_store_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Store/_files/second_website_with_second_currency.php b/dev/tests/integration/testsuite/Magento/Store/_files/second_website_with_second_currency.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Store/_files/second_website_with_second_currency_rollback.php b/dev/tests/integration/testsuite/Magento/Store/_files/second_website_with_second_currency_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Store/_files/second_website_with_two_stores.php b/dev/tests/integration/testsuite/Magento/Store/_files/second_website_with_two_stores.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Store/_files/second_website_with_two_stores_rollback.php b/dev/tests/integration/testsuite/Magento/Store/_files/second_website_with_two_stores_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Store/_files/store.php b/dev/tests/integration/testsuite/Magento/Store/_files/store.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Store/_files/store_rollback.php b/dev/tests/integration/testsuite/Magento/Store/_files/store_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Store/_files/website.php b/dev/tests/integration/testsuite/Magento/Store/_files/website.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Store/_files/website_rollback.php b/dev/tests/integration/testsuite/Magento/Store/_files/website_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Swatches/Controller/Adminhtml/Iframe/ShowTest.php b/dev/tests/integration/testsuite/Magento/Swatches/Controller/Adminhtml/Iframe/ShowTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Swatches/Model/AttributeCreateTest.php b/dev/tests/integration/testsuite/Magento/Swatches/Model/AttributeCreateTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Swatches/Model/SwatchAttributeCodesTest.php b/dev/tests/integration/testsuite/Magento/Swatches/Model/SwatchAttributeCodesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Swatches/Model/SwatchAttributeOptionAddTest.php b/dev/tests/integration/testsuite/Magento/Swatches/Model/SwatchAttributeOptionAddTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Swatches/_files/swatch_attribute.php b/dev/tests/integration/testsuite/Magento/Swatches/_files/swatch_attribute.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Swatches/_files/swatch_attribute_rollback.php b/dev/tests/integration/testsuite/Magento/Swatches/_files/swatch_attribute_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/Block/Adminhtml/Rate/TitleTest.php b/dev/tests/integration/testsuite/Magento/Tax/Block/Adminhtml/Rate/TitleTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/Controller/Adminhtml/RateTest.php b/dev/tests/integration/testsuite/Magento/Tax/Controller/Adminhtml/RateTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/Controller/Adminhtml/RuleTest.php b/dev/tests/integration/testsuite/Magento/Tax/Controller/Adminhtml/RuleTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/Controller/Adminhtml/TaxTest.php b/dev/tests/integration/testsuite/Magento/Tax/Controller/Adminhtml/TaxTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/Helper/DataTest.php b/dev/tests/integration/testsuite/Magento/Tax/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/Model/Calculation/RateRepositoryTest.php b/dev/tests/integration/testsuite/Magento/Tax/Model/Calculation/RateRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/Model/CalculationTest.php b/dev/tests/integration/testsuite/Magento/Tax/Model/CalculationTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/Model/ClassTest.php b/dev/tests/integration/testsuite/Magento/Tax/Model/ClassTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/Model/ConfigTest.php b/dev/tests/integration/testsuite/Magento/Tax/Model/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/Model/Rate/ProviderTest.php b/dev/tests/integration/testsuite/Magento/Tax/Model/Rate/ProviderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/Model/Rate/SourceTest.php b/dev/tests/integration/testsuite/Magento/Tax/Model/Rate/SourceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/Model/ResourceModel/Calculation/Rule/CollectionTest.php b/dev/tests/integration/testsuite/Magento/Tax/Model/ResourceModel/Calculation/Rule/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/Model/ResourceModel/CalculationTest.php b/dev/tests/integration/testsuite/Magento/Tax/Model/ResourceModel/CalculationTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/Model/ResourceModel/Report/CollectionTest.php b/dev/tests/integration/testsuite/Magento/Tax/Model/ResourceModel/Report/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/Model/Sales/Total/Quote/SetupUtil.php b/dev/tests/integration/testsuite/Magento/Tax/Model/Sales/Total/Quote/SetupUtil.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/Model/Sales/Total/Quote/SubtotalTest.php b/dev/tests/integration/testsuite/Magento/Tax/Model/Sales/Total/Quote/SubtotalTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/Model/Sales/Total/Quote/TaxTest.php b/dev/tests/integration/testsuite/Magento/Tax/Model/Sales/Total/Quote/TaxTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/Model/TaxCalculationTest.php b/dev/tests/integration/testsuite/Magento/Tax/Model/TaxCalculationTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/Model/TaxClass/ManagementTest.php b/dev/tests/integration/testsuite/Magento/Tax/Model/TaxClass/ManagementTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/Model/TaxClass/RepositoryTest.php b/dev/tests/integration/testsuite/Magento/Tax/Model/TaxClass/RepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/Model/TaxClass/Source/CustomerTest.php b/dev/tests/integration/testsuite/Magento/Tax/Model/TaxClass/Source/CustomerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/Model/TaxClass/Source/ProductTest.php b/dev/tests/integration/testsuite/Magento/Tax/Model/TaxClass/Source/ProductTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/Model/TaxClass/Type/CustomerTest.php b/dev/tests/integration/testsuite/Magento/Tax/Model/TaxClass/Type/CustomerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/Model/TaxRateCollectionTest.php b/dev/tests/integration/testsuite/Magento/Tax/Model/TaxRateCollectionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/Model/TaxRateManagementTest.php b/dev/tests/integration/testsuite/Magento/Tax/Model/TaxRateManagementTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/Model/TaxRuleCollectionTest.php b/dev/tests/integration/testsuite/Magento/Tax/Model/TaxRuleCollectionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/Model/TaxRuleFixtureFactory.php b/dev/tests/integration/testsuite/Magento/Tax/Model/TaxRuleFixtureFactory.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/Model/TaxRuleRepositoryTest.php b/dev/tests/integration/testsuite/Magento/Tax/Model/TaxRuleRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/Pricing/AdjustmentTest.php b/dev/tests/integration/testsuite/Magento/Tax/Pricing/AdjustmentTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/_files/order_with_tax.php b/dev/tests/integration/testsuite/Magento/Tax/_files/order_with_tax.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/_files/report_tax.php b/dev/tests/integration/testsuite/Magento/Tax/_files/report_tax.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/excluding_tax_apply_tax_after_discount.php b/dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/excluding_tax_apply_tax_after_discount.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/excluding_tax_apply_tax_after_discount_discount_tax.php b/dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/excluding_tax_apply_tax_after_discount_discount_tax.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/excluding_tax_apply_tax_before_discount.php b/dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/excluding_tax_apply_tax_before_discount.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/excluding_tax_multi_item_row.php b/dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/excluding_tax_multi_item_row.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/excluding_tax_multi_item_total.php b/dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/excluding_tax_multi_item_total.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/excluding_tax_multi_item_unit.php b/dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/excluding_tax_multi_item_unit.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/excluding_tax_row.php b/dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/excluding_tax_row.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/excluding_tax_total.php b/dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/excluding_tax_total.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/excluding_tax_unit.php b/dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/excluding_tax_unit.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/including_tax_cross_border_trade_disabled.php b/dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/including_tax_cross_border_trade_disabled.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/including_tax_cross_border_trade_enabled.php b/dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/including_tax_cross_border_trade_enabled.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/including_tax_row.php b/dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/including_tax_row.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/including_tax_total.php b/dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/including_tax_total.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/including_tax_unit.php b/dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/including_tax_unit.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/multi_tax_rule_total_calculate_subtotal_no.php b/dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/multi_tax_rule_total_calculate_subtotal_no.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/multi_tax_rule_total_calculate_subtotal_yes.php b/dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/multi_tax_rule_total_calculate_subtotal_yes.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/multi_tax_rule_two_row_calculate_subtotal_yes_row.php b/dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/multi_tax_rule_two_row_calculate_subtotal_yes_row.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/multi_tax_rule_two_row_calculate_subtotal_yes_total.php b/dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/multi_tax_rule_two_row_calculate_subtotal_yes_total.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/multi_tax_rule_unit_calculate_subtotal_no.php b/dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/multi_tax_rule_unit_calculate_subtotal_no.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/multi_tax_rule_unit_calculate_subtotal_yes.php b/dev/tests/integration/testsuite/Magento/Tax/_files/scenarios/multi_tax_rule_unit_calculate_subtotal_yes.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/_files/tax_calculation_data_aggregated.php b/dev/tests/integration/testsuite/Magento/Tax/_files/tax_calculation_data_aggregated.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Tax/_files/tax_classes.php b/dev/tests/integration/testsuite/Magento/Tax/_files/tax_classes.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/TaxImportExport/Block/Adminhtml/Rate/ImportExportTest.php b/dev/tests/integration/testsuite/Magento/TaxImportExport/Block/Adminhtml/Rate/ImportExportTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/TaxImportExport/Controller/Adminhtml/Rate/ExportPostTest.php b/dev/tests/integration/testsuite/Magento/TaxImportExport/Controller/Adminhtml/Rate/ExportPostTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/TaxImportExport/Controller/Adminhtml/Rate/ImportExportTest.php b/dev/tests/integration/testsuite/Magento/TaxImportExport/Controller/Adminhtml/Rate/ImportExportTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/TaxImportExport/Controller/Adminhtml/Rate/ImportPostTest.php b/dev/tests/integration/testsuite/Magento/TaxImportExport/Controller/Adminhtml/Rate/ImportPostTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/TaxImportExport/Model/Rate/CsvImportHandlerTest.php b/dev/tests/integration/testsuite/Magento/TaxImportExport/Model/Rate/CsvImportHandlerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/TaxImportExport/Model/Rate/_files/correct_rates_import_file.csv b/dev/tests/integration/testsuite/Magento/TaxImportExport/Model/Rate/_files/correct_rates_import_file.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/TaxImportExport/Model/Rate/_files/rates_import_file_incorrect_country.csv b/dev/tests/integration/testsuite/Magento/TaxImportExport/Model/Rate/_files/rates_import_file_incorrect_country.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Test/Integrity/DatabaseTest.php b/dev/tests/integration/testsuite/Magento/Test/Integrity/DatabaseTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Test/Integrity/LayoutTest.php b/dev/tests/integration/testsuite/Magento/Test/Integrity/LayoutTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Test/Integrity/Magento/Payment/MethodsTest.php b/dev/tests/integration/testsuite/Magento/Test/Integrity/Magento/Payment/MethodsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Test/Integrity/Magento/Widget/SkinFilesTest.php b/dev/tests/integration/testsuite/Magento/Test/Integrity/Magento/Widget/SkinFilesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Test/Integrity/Magento/Widget/TemplateFilesTest.php b/dev/tests/integration/testsuite/Magento/Test/Integrity/Magento/Widget/TemplateFilesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/AbstractMergedConfigTest.php b/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/AbstractMergedConfigTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/AclConfigFilesTest.php b/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/AclConfigFilesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/BlockInstantiationTest.php b/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/BlockInstantiationTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/CacheFilesTest.php b/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/CacheFilesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/CarrierConfigFilesTest.php b/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/CarrierConfigFilesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/CrontabConfigFilesTest.php b/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/CrontabConfigFilesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/DiConfigFilesTest.php b/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/DiConfigFilesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/EavAttributesConfigFilesTest.php b/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/EavAttributesConfigFilesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/EventConfigFilesTest.php b/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/EventConfigFilesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/ExportConfigFilesTest.php b/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/ExportConfigFilesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/FieldsetConfigFilesTest.php b/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/FieldsetConfigFilesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/ImportConfigFilesTest.php b/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/ImportConfigFilesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/IndexerConfigFilesTest.php b/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/IndexerConfigFilesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/LayoutFilesTest.php b/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/LayoutFilesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/Magento/Catalog/AttributeConfigFilesTest.php b/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/Magento/Catalog/AttributeConfigFilesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/Magento/Customer/AddressFormatsFilesTest.php b/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/Magento/Customer/AddressFormatsFilesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/Magento/Email/EmailTemplateConfigFilesTest.php b/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/Magento/Email/EmailTemplateConfigFilesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/Magento/Sales/PdfConfigFilesTest.php b/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/Magento/Sales/PdfConfigFilesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/MenuConfigFilesTest.php b/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/MenuConfigFilesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/MviewConfigFilesTest.php b/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/MviewConfigFilesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/PaymentConfigFilesTest.php b/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/PaymentConfigFilesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/ProductOptionsConfigFilesTest.php b/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/ProductOptionsConfigFilesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/ProductTypesConfigFilesTest.php b/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/ProductTypesConfigFilesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/ResourcesConfigFilesTest.php b/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/ResourcesConfigFilesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/RouteConfigFilesTest.php b/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/RouteConfigFilesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/SalesConfigFilesTest.php b/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/SalesConfigFilesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/SystemConfigFilesTest.php b/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/SystemConfigFilesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/TemplateFilesTest.php b/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/TemplateFilesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/ThemeConfigFilesTest.php b/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/ThemeConfigFilesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/ViewConfigFilesTest.php b/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/ViewConfigFilesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/WidgetConfigFilesTest.php b/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/WidgetConfigFilesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/_files/skip_blocks_ce.php b/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/_files/skip_blocks_ce.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/_files/skip_template_blocks_ce.php b/dev/tests/integration/testsuite/Magento/Test/Integrity/Modular/_files/skip_template_blocks_ce.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Test/Integrity/StaticFilesTest.php b/dev/tests/integration/testsuite/Magento/Test/Integrity/StaticFilesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Test/Integrity/Theme/TemplateFilesTest.php b/dev/tests/integration/testsuite/Magento/Test/Integrity/Theme/TemplateFilesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Test/Integrity/Theme/XmlFilesTest.php b/dev/tests/integration/testsuite/Magento/Test/Integrity/Theme/XmlFilesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Test/Integrity/ViewFileReferenceTest.php b/dev/tests/integration/testsuite/Magento/Test/Integrity/ViewFileReferenceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/TestFixture/Controller/Adminhtml/Noroute.php b/dev/tests/integration/testsuite/Magento/TestFixture/Controller/Adminhtml/Noroute.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/TestModuleSample/ModuleInstallationTest.php b/dev/tests/integration/testsuite/Magento/TestModuleSample/ModuleInstallationTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Block/Adminhtml/System/Design/Theme/Edit/Tab/GeneralTest.php b/dev/tests/integration/testsuite/Magento/Theme/Block/Adminhtml/System/Design/Theme/Edit/Tab/GeneralTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Block/Html/BreadcrumbsTest.php b/dev/tests/integration/testsuite/Magento/Theme/Block/Html/BreadcrumbsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Block/Html/FooterTest.php b/dev/tests/integration/testsuite/Magento/Theme/Block/Html/FooterTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Controller/Adminhtml/System/Design/Config/SaveTest.php b/dev/tests/integration/testsuite/Magento/Theme/Controller/Adminhtml/System/Design/Config/SaveTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Controller/Adminhtml/System/Design/ThemeControllerTest.php b/dev/tests/integration/testsuite/Magento/Theme/Controller/Adminhtml/System/Design/ThemeControllerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Controller/Adminhtml/System/Design/_files/simple-js-file.js b/dev/tests/integration/testsuite/Magento/Theme/Controller/Adminhtml/System/Design/_files/simple-js-file.js
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/Config/Processor/DesignThemeTest.php b/dev/tests/integration/testsuite/Magento/Theme/Model/Config/Processor/DesignThemeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/Config/ValidatorTest.php b/dev/tests/integration/testsuite/Magento/Theme/Model/Config/ValidatorTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/Design/Backend/ExceptionsTest.php b/dev/tests/integration/testsuite/Magento/Theme/Model/Design/Backend/ExceptionsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/Design/ConfigTest.php b/dev/tests/integration/testsuite/Magento/Theme/Model/Design/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/DesignTest.php b/dev/tests/integration/testsuite/Magento/Theme/Model/DesignTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/Layout/Config/ReaderTest.php b/dev/tests/integration/testsuite/Magento/Theme/Model/Layout/Config/ReaderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/Layout/ConfigTest.php b/dev/tests/integration/testsuite/Magento/Theme/Model/Layout/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/Layout/_files/page_layouts.xml b/dev/tests/integration/testsuite/Magento/Theme/Model/Layout/_files/page_layouts.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/Layout/_files/page_layouts2.xml b/dev/tests/integration/testsuite/Magento/Theme/Model/Layout/_files/page_layouts2.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/ResourceModel/Theme/CollectionTest.php b/dev/tests/integration/testsuite/Magento/Theme/Model/ResourceModel/Theme/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/Theme/CollectionTest.php b/dev/tests/integration/testsuite/Magento/Theme/Model/Theme/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/Theme/Domain/VirtualTest.php b/dev/tests/integration/testsuite/Magento/Theme/Model/Theme/Domain/VirtualTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/Theme/FileTest.php b/dev/tests/integration/testsuite/Magento/Theme/Model/Theme/FileTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/Theme/RegistrationTest.php b/dev/tests/integration/testsuite/Magento/Theme/Model/Theme/RegistrationTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/Theme/Source/ThemeTest.php b/dev/tests/integration/testsuite/Magento/Theme/Model/Theme/Source/ThemeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/Theme/Source/_files/design/frontend/a_d/theme.xml b/dev/tests/integration/testsuite/Magento/Theme/Model/Theme/Source/_files/design/frontend/a_d/theme.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/Theme/Source/_files/design/frontend/b_e/theme.xml b/dev/tests/integration/testsuite/Magento/Theme/Model/Theme/Source/_files/design/frontend/b_e/theme.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/Theme/Source/_files/design/frontend/magento_default/theme.xml b/dev/tests/integration/testsuite/Magento/Theme/Model/Theme/Source/_files/design/frontend/magento_default/theme.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/Theme/Source/_files/design/frontend/magento_g/theme.xml b/dev/tests/integration/testsuite/Magento/Theme/Model/Theme/Source/_files/design/frontend/magento_g/theme.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/Theme/ThemeProviderTest.php b/dev/tests/integration/testsuite/Magento/Theme/Model/Theme/ThemeProviderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/ThemeTest.php b/dev/tests/integration/testsuite/Magento/Theme/Model/ThemeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/View/DesignTest.php b/dev/tests/integration/testsuite/Magento/Theme/Model/View/DesignTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/adminhtml/Vendor/test/registration.php b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/adminhtml/Vendor/test/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/adminhtml/Vendor/test/theme.xml b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/adminhtml/Vendor/test/theme.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/area_two/Vendor/theme_one/registration.php b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/area_two/Vendor/theme_one/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/area_two/Vendor/theme_one/theme.xml b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/area_two/Vendor/theme_one/theme.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/area_two/Vendor/theme_one/web/file b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/area_two/Vendor/theme_one/web/file
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/design_area/Vendor/theme_one/registration.php b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/design_area/Vendor/theme_one/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/design_area/Vendor/theme_one/theme.xml b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/design_area/Vendor/theme_one/theme.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/design_area/Vendor/theme_one/web/file b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/design_area/Vendor/theme_one/web/file
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Magento/default/registration.php b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Magento/default/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Magento/default/theme.xml b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Magento/default/theme.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Magento/default_iphone/images/preview_image.jpg b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Magento/default_iphone/images/preview_image.jpg
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Magento/default_iphone/registration.php b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Magento/default_iphone/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Magento/default_iphone/theme.xml b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Magento/default_iphone/theme.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/cache_test_theme/registration.php b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/cache_test_theme/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/cache_test_theme/theme.xml b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/cache_test_theme/theme.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/Magento_Catalog/catalog_category_view.xml b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/Magento_Catalog/catalog_category_view.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/Magento_Catalog/catalog_category_view_type_default.xml b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/Magento_Catalog/catalog_category_view_type_default.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/Magento_Catalog/catalog_product_view.xml b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/Magento_Catalog/catalog_product_view.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/Magento_Catalog/catalog_product_view_type_simple.xml b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/Magento_Catalog/catalog_product_view_type_simple.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/Magento_Catalog/templates/theme_template.phtml b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/Magento_Catalog/templates/theme_template.phtml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/Magento_Catalog/theme_file.txt b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/Magento_Catalog/theme_file.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/Magento_Catalog/theme_file_with_2_dots..txt b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/Magento_Catalog/theme_file_with_2_dots..txt
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/Magento_Cms/layout_test_handle_extra.xml b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/Magento_Cms/layout_test_handle_extra.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/Magento_Core/layout_test_handle_sample.xml b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/Magento_Core/layout_test_handle_sample.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/Namespace_Module/web/favicon.ico b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/Namespace_Module/web/favicon.ico
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/etc/view.xml b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/etc/view.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/i18n/en_US.csv b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/registration.php b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/theme.xml b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/theme.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/web/css/styles.css b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/web/css/styles.css
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/web/i18n/fr_FR/logo.gif b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/web/i18n/fr_FR/logo.gif
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/web/images/logo.gif b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/web/images/logo.gif
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/web/images/logo_email.gif b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/web/images/logo_email.gif
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/web/js/tabs.js b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/web/js/tabs.js
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/web/result_source.css b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/web/result_source.css
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/web/result_source_dev.css b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/web/result_source_dev.css
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/web/source.less b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/web/source.less
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/publication/registration.php b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/publication/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/publication/theme.xml b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/publication/theme.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/test_theme/registration.php b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/test_theme/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/test_theme/theme.xml b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/test_theme/theme.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/custom_theme/Fixture_Module/web/fixture_script.js b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/custom_theme/Fixture_Module/web/fixture_script.js
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/custom_theme/registration.php b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/custom_theme/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/custom_theme/theme.xml b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/custom_theme/theme.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/default/Namespace_Module/web/absolute_valid_module.gif b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/default/Namespace_Module/web/absolute_valid_module.gif
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/default/access_violation.php b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/default/access_violation.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/default/registration.php b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/default/registration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/default/theme.xml b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/default/theme.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/default/web/css/1.gif b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/default/web/css/1.gif
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/default/web/css/base64.css b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/default/web/css/base64.css
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/default/web/css/body.gif b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/default/web/css/body.gif
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/default/web/css/deep/recursive.css b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/default/web/css/deep/recursive.css
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/default/web/css/exception.css b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/default/web/css/exception.css
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/default/web/css/file.css b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/default/web/css/file.css
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/default/web/h1.gif b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/default/web/h1.gif
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/default/web/images/h2.gif b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/default/web/images/h2.gif
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/default/web/recursive.css b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/default/web/recursive.css
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/default/web/recursive.gif b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/default/web/recursive.gif
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/default/web/recursive2.gif b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/default/web/recursive2.gif
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/default/web/scripts.js b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Vendor/default/web/scripts.js
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/access_violation.php b/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/access_violation.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/_files/config_data.php b/dev/tests/integration/testsuite/Magento/Theme/_files/config_data.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/_files/config_data_rollback.php b/dev/tests/integration/testsuite/Magento/Theme/_files/config_data_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/_files/design_change.php b/dev/tests/integration/testsuite/Magento/Theme/_files/design_change.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/_files/design_change_rollback.php b/dev/tests/integration/testsuite/Magento/Theme/_files/design_change_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/_files/design_change_timezone.php b/dev/tests/integration/testsuite/Magento/Theme/_files/design_change_timezone.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Theme/_files/design_change_timezone_rollback.php b/dev/tests/integration/testsuite/Magento/Theme/_files/design_change_timezone_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Translation/Controller/AjaxTest.php b/dev/tests/integration/testsuite/Magento/Translation/Controller/AjaxTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Translation/Model/InlineParserTest.php b/dev/tests/integration/testsuite/Magento/Translation/Model/InlineParserTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Translation/Model/StringTest.php b/dev/tests/integration/testsuite/Magento/Translation/Model/StringTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Translation/Model/_files/Magento/Catalog/i18n/en_US.csv b/dev/tests/integration/testsuite/Magento/Translation/Model/_files/Magento/Catalog/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Translation/Model/_files/Magento/Store/i18n/en_AU.csv b/dev/tests/integration/testsuite/Magento/Translation/Model/_files/Magento/Store/i18n/en_AU.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Translation/Model/_files/Magento/Store/i18n/en_UK.csv b/dev/tests/integration/testsuite/Magento/Translation/Model/_files/Magento/Store/i18n/en_UK.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Translation/Model/_files/Magento/Store/i18n/en_US.csv b/dev/tests/integration/testsuite/Magento/Translation/Model/_files/Magento/Store/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Translation/Model/_files/Magento/design/Magento/theme/i18n/en_US.csv b/dev/tests/integration/testsuite/Magento/Translation/Model/_files/Magento/design/Magento/theme/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Translation/Model/_files/local_config/local_config/custom/local.xml b/dev/tests/integration/testsuite/Magento/Translation/Model/_files/local_config/local_config/custom/local.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Translation/Model/_files/local_config/local_config/custom/prohibited.filename.xml b/dev/tests/integration/testsuite/Magento/Translation/Model/_files/local_config/local_config/custom/prohibited.filename.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Translation/Model/_files/local_config/local_config/local.xml b/dev/tests/integration/testsuite/Magento/Translation/Model/_files/local_config/local_config/local.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Translation/Model/_files/local_config/local_config/z.xml b/dev/tests/integration/testsuite/Magento/Translation/Model/_files/local_config/local_config/z.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Translation/Model/_files/local_config/no_local_config/a.xml b/dev/tests/integration/testsuite/Magento/Translation/Model/_files/local_config/no_local_config/a.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Translation/Model/_files/local_config/no_local_config/b.xml b/dev/tests/integration/testsuite/Magento/Translation/Model/_files/local_config/no_local_config/b.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Translation/Model/_files/local_config/no_local_config/custom/local.xml b/dev/tests/integration/testsuite/Magento/Translation/Model/_files/local_config/no_local_config/custom/local.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Translation/Model/_files/locale/en_AU/config.xml b/dev/tests/integration/testsuite/Magento/Translation/Model/_files/locale/en_AU/config.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Translation/Model/_files/media/some_file.txt b/dev/tests/integration/testsuite/Magento/Translation/Model/_files/media/some_file.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Translation/_files/db_translate.php b/dev/tests/integration/testsuite/Magento/Translation/_files/db_translate.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Translation/_files/db_translate_admin_store.php b/dev/tests/integration/testsuite/Magento/Translation/_files/db_translate_admin_store.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/Api/BookmarkRepositoryTest.php b/dev/tests/integration/testsuite/Magento/Ui/Api/BookmarkRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/Component/ConfigurationTest.php b/dev/tests/integration/testsuite/Magento/Ui/Component/ConfigurationTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/Config/ConverterTest.php b/dev/tests/integration/testsuite/Magento/Ui/Config/ConverterTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/Config/FileResolverStub.php b/dev/tests/integration/testsuite/Magento/Ui/Config/FileResolverStub.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/Config/Reader/DomTest.php b/dev/tests/integration/testsuite/Magento/Ui/Config/Reader/DomTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/Config/ReaderTest.php b/dev/tests/integration/testsuite/Magento/Ui/Config/ReaderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/bookmarks.php b/dev/tests/integration/testsuite/Magento/Ui/_files/bookmarks.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/expected_result_configuration.php b/dev/tests/integration/testsuite/Magento/Ui/_files/expected_result_configuration.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/module_one/ui_component/etc/test_definition.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/module_one/ui_component/etc/test_definition.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/module_one/ui_component/parent_component.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/module_one/ui_component/parent_component.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/module_one/ui_component/test_component.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/module_one/ui_component/test_component.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/module_two/ui_component/etc/test_definition.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/module_two/ui_component/etc/test_definition.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/module_two/ui_component/parent_component.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/module_two/ui_component/parent_component.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/module_two/ui_component/test_component.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/module_two/ui_component/test_component.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/action.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/action.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/actionDelete.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/actionDelete.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/actions.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/actions.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/actionsColumn.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/actionsColumn.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/bookmark.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/bookmark.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/boolean.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/boolean.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/button.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/button.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/checkbox.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/checkbox.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/checkboxset.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/checkboxset.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/column.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/column.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/columns.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/columns.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/columnsControls.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/columnsControls.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/component.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/component.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/dataSource.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/dataSource.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/date.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/date.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/dynamicRows.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/dynamicRows.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/email.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/email.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/exportButton.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/exportButton.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/field.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/field.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/fieldset.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/fieldset.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/file.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/file.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/fileUploader.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/fileUploader.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/filterDate.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/filterDate.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/filterInput.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/filterInput.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/filterRange.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/filterRange.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/filters.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/filters.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/form.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/form.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/hidden.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/hidden.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/htmlContent.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/htmlContent.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/input.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/input.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/insertForm.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/insertForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/insertListing.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/insertListing.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/listing.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/listing.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/listingToolbar.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/listingToolbar.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/massaction.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/massaction.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/modal.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/modal.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/multiline.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/multiline.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/multiselect.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/multiselect.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/paging.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/paging.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/radioset.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/radioset.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/range.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/range.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/select.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/select.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/selectionsColumn.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/selectionsColumn.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/tab.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/tab.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/text.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/text.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/textarea.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/textarea.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/wysiwyg.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/arbitrary/wysiwyg.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/etc/test_definition_merged.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/etc/test_definition_merged.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/action.php b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/action.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/actionDelete.php b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/actionDelete.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/actions.php b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/actions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/actionsColumn.php b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/actionsColumn.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/bookmark.php b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/bookmark.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/boolean.php b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/boolean.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/button.php b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/button.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/checkbox.php b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/checkbox.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/checkboxset.php b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/checkboxset.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/column.php b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/column.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/columns.php b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/columns.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/columnsControls.php b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/columnsControls.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/component.php b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/component.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/dataSource.php b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/dataSource.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/date.php b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/date.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/dynamicRows.php b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/dynamicRows.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/email.php b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/email.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/exportButton.php b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/exportButton.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/field.php b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/field.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/fieldset.php b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/fieldset.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/file.php b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/file.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/fileUploader.php b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/fileUploader.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/filterDate.php b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/filterDate.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/filterInput.php b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/filterInput.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/filterRange.php b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/filterRange.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/filters.php b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/filters.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/form.php b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/form.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/hidden.php b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/hidden.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/htmlContent.php b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/htmlContent.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/input.php b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/input.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/insertForm.php b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/insertForm.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/insertListing.php b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/insertListing.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/listing.php b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/listing.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/massaction.php b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/massaction.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/modal.php b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/modal.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/multiline.php b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/multiline.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/multiselect.php b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/multiselect.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/paging.php b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/paging.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/radioset.php b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/radioset.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/range.php b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/range.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/select.php b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/select.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/selectionsColumn.php b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/selectionsColumn.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/tab.php b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/tab.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/text.php b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/text.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/textarea.php b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/textarea.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/wysiwyg.php b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/expected/wysiwyg.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/action.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/action.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/actionDelete.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/actionDelete.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/actions.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/actions.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/actionsColumn.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/actionsColumn.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/bookmark.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/bookmark.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/boolean.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/boolean.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/button.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/button.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/checkbox.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/checkbox.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/checkboxset.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/checkboxset.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/column.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/column.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/columns.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/columns.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/columnsControls.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/columnsControls.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/component.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/component.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/container.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/container.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/dataProvider.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/dataProvider.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/dataSource.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/dataSource.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/date.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/date.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/dynamicRows.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/dynamicRows.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/email.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/email.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/exportButton.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/exportButton.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/field.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/field.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/fieldset.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/fieldset.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/file.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/file.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/fileUploader.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/fileUploader.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/filterDate.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/filterDate.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/filterInput.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/filterInput.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/filterRange.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/filterRange.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/filters.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/filters.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/form.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/form.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/hidden.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/hidden.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/htmlContent.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/htmlContent.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/input.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/input.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/insertForm.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/insertForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/insertListing.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/insertListing.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/listing.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/listing.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/listingToolbar.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/listingToolbar.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/massaction.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/massaction.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/modal.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/modal.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/multiline.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/multiline.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/multiselect.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/multiselect.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/nav.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/nav.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/number.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/number.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/paging.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/paging.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/price.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/price.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/radioset.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/radioset.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/range.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/range.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/select.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/select.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/selectionsColumn.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/selectionsColumn.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/tab.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/tab.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/text.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/text.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/textarea.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/textarea.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/wysiwyg.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/mixed/wysiwyg.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/action.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/action.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/actionDelete.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/actionDelete.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/actions.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/actions.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/actionsColumn.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/actionsColumn.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/bookmark.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/bookmark.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/boolean.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/boolean.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/button.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/button.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/checkbox.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/checkbox.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/checkboxset.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/checkboxset.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/column.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/column.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/columns.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/columns.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/columnsControls.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/columnsControls.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/component.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/component.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/container.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/container.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/dataProvider.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/dataProvider.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/dataSource.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/dataSource.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/date.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/date.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/dynamicRows.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/dynamicRows.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/email.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/email.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/exportButton.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/exportButton.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/field.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/field.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/fieldset.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/fieldset.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/file.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/file.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/fileUploader.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/fileUploader.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/filterDate.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/filterDate.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/filterInput.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/filterInput.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/filterRange.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/filterRange.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/filters.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/filters.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/form.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/form.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/hidden.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/hidden.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/htmlContent.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/htmlContent.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/input.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/input.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/insertForm.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/insertForm.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/insertListing.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/insertListing.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/listing.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/listing.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/listingToolbar.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/listingToolbar.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/massaction.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/massaction.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/modal.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/modal.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/multiline.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/multiline.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/multiselect.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/multiselect.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/nav.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/nav.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/number.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/number.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/paging.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/paging.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/price.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/price.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/radioset.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/radioset.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/range.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/range.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/select.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/select.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/selectionsColumn.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/selectionsColumn.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/tab.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/tab.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/text.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/text.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/textarea.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/textarea.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/wysiwyg.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/semantic/wysiwyg.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/test_component_merged.xml b/dev/tests/integration/testsuite/Magento/Ui/_files/view/ui_component/test_component_merged.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Ups/Model/CarrierTest.php b/dev/tests/integration/testsuite/Magento/Ups/Model/CarrierTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/UrlRewrite/Block/Catalog/Category/EditTest.php b/dev/tests/integration/testsuite/Magento/UrlRewrite/Block/Catalog/Category/EditTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/UrlRewrite/Block/Catalog/Category/TreeTest.php b/dev/tests/integration/testsuite/Magento/UrlRewrite/Block/Catalog/Category/TreeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/UrlRewrite/Block/Catalog/Edit/FormTest.php b/dev/tests/integration/testsuite/Magento/UrlRewrite/Block/Catalog/Edit/FormTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/UrlRewrite/Block/Catalog/Product/EditTest.php b/dev/tests/integration/testsuite/Magento/UrlRewrite/Block/Catalog/Product/EditTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/UrlRewrite/Block/Catalog/Product/GridTest.php b/dev/tests/integration/testsuite/Magento/UrlRewrite/Block/Catalog/Product/GridTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/UrlRewrite/Block/Cms/Page/Edit/FormTest.php b/dev/tests/integration/testsuite/Magento/UrlRewrite/Block/Cms/Page/Edit/FormTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/UrlRewrite/Block/Cms/Page/EditTest.php b/dev/tests/integration/testsuite/Magento/UrlRewrite/Block/Cms/Page/EditTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/UrlRewrite/Block/Cms/Page/GridTest.php b/dev/tests/integration/testsuite/Magento/UrlRewrite/Block/Cms/Page/GridTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/UrlRewrite/Block/Edit/FormTest.php b/dev/tests/integration/testsuite/Magento/UrlRewrite/Block/Edit/FormTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/UrlRewrite/Block/EditTest.php b/dev/tests/integration/testsuite/Magento/UrlRewrite/Block/EditTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/UrlRewrite/Block/SelectorTest.php b/dev/tests/integration/testsuite/Magento/UrlRewrite/Block/SelectorTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/UrlRewrite/Controller/UrlRewriteTest.php b/dev/tests/integration/testsuite/Magento/UrlRewrite/Controller/UrlRewriteTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/UrlRewrite/_files/url_rewrite.php b/dev/tests/integration/testsuite/Magento/UrlRewrite/_files/url_rewrite.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/User/Block/Role/Grid/UserTest.php b/dev/tests/integration/testsuite/Magento/User/Block/Role/Grid/UserTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/User/Block/Role/Tab/EditTest.php b/dev/tests/integration/testsuite/Magento/User/Block/Role/Tab/EditTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/User/Block/User/Edit/Tab/MainTest.php b/dev/tests/integration/testsuite/Magento/User/Block/User/Edit/Tab/MainTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/User/Controller/Adminhtml/AuthTest.php b/dev/tests/integration/testsuite/Magento/User/Controller/Adminhtml/AuthTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/User/Controller/Adminhtml/Locks/GridTest.php b/dev/tests/integration/testsuite/Magento/User/Controller/Adminhtml/Locks/GridTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/User/Controller/Adminhtml/Locks/IndexTest.php b/dev/tests/integration/testsuite/Magento/User/Controller/Adminhtml/Locks/IndexTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/User/Controller/Adminhtml/Locks/MassUnlockTest.php b/dev/tests/integration/testsuite/Magento/User/Controller/Adminhtml/Locks/MassUnlockTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/User/Controller/Adminhtml/User/DeleteTest.php b/dev/tests/integration/testsuite/Magento/User/Controller/Adminhtml/User/DeleteTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/User/Controller/Adminhtml/User/InvalidateTokenTest.php b/dev/tests/integration/testsuite/Magento/User/Controller/Adminhtml/User/InvalidateTokenTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/User/Controller/Adminhtml/User/RoleTest.php b/dev/tests/integration/testsuite/Magento/User/Controller/Adminhtml/User/RoleTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/User/Controller/Adminhtml/UserTest.php b/dev/tests/integration/testsuite/Magento/User/Controller/Adminhtml/UserTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/User/Helper/DataTest.php b/dev/tests/integration/testsuite/Magento/User/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/User/Model/ResourceModel/Role/User/CollectionTest.php b/dev/tests/integration/testsuite/Magento/User/Model/ResourceModel/Role/User/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/User/Model/ResourceModel/UserTest.php b/dev/tests/integration/testsuite/Magento/User/Model/ResourceModel/UserTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/User/Model/UserTest.php b/dev/tests/integration/testsuite/Magento/User/Model/UserTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/User/_files/dummy_user.php b/dev/tests/integration/testsuite/Magento/User/_files/dummy_user.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/User/_files/locked_users.php b/dev/tests/integration/testsuite/Magento/User/_files/locked_users.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/User/_files/user_with_role.php b/dev/tests/integration/testsuite/Magento/User/_files/user_with_role.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Variable/Block/System/Variable/EditTest.php b/dev/tests/integration/testsuite/Magento/Variable/Block/System/Variable/EditTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Variable/Controller/Adminhtml/System/VariableTest.php b/dev/tests/integration/testsuite/Magento/Variable/Controller/Adminhtml/System/VariableTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Variable/Model/VariableTest.php b/dev/tests/integration/testsuite/Magento/Variable/Model/VariableTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Variable/_files/variable.php b/dev/tests/integration/testsuite/Magento/Variable/_files/variable.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Vault/Model/PaymentTokenRepositoryTest.php b/dev/tests/integration/testsuite/Magento/Vault/Model/PaymentTokenRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Vault/Model/ResourceModel/PaymentTokenTest.php b/dev/tests/integration/testsuite/Magento/Vault/Model/ResourceModel/PaymentTokenTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Vault/_files/customer.php b/dev/tests/integration/testsuite/Magento/Vault/_files/customer.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Vault/_files/payment_tokens.php b/dev/tests/integration/testsuite/Magento/Vault/_files/payment_tokens.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Vault/_files/token.php b/dev/tests/integration/testsuite/Magento/Vault/_files/token.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Version/Controller/Index/IndexTest.php b/dev/tests/integration/testsuite/Magento/Version/Controller/Index/IndexTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Webapi/Controller/PathProcessorTest.php b/dev/tests/integration/testsuite/Magento/Webapi/Controller/PathProcessorTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Webapi/Controller/SoapTest.php b/dev/tests/integration/testsuite/Magento/Webapi/Controller/SoapTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Webapi/Model/Config/ReaderTest.php b/dev/tests/integration/testsuite/Magento/Webapi/Model/Config/ReaderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Webapi/Model/Config/_files/webapi.php b/dev/tests/integration/testsuite/Magento/Webapi/Model/Config/_files/webapi.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Webapi/Model/Config/_files/webapiA.xml b/dev/tests/integration/testsuite/Magento/Webapi/Model/Config/_files/webapiA.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Webapi/Model/Config/_files/webapiB.xml b/dev/tests/integration/testsuite/Magento/Webapi/Model/Config/_files/webapiB.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Webapi/Model/ServiceMetadataTest.php b/dev/tests/integration/testsuite/Magento/Webapi/Model/ServiceMetadataTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Webapi/Model/Soap/ConfigTest.php b/dev/tests/integration/testsuite/Magento/Webapi/Model/Soap/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Webapi/Service/Entity/TestService.php b/dev/tests/integration/testsuite/Magento/Webapi/Service/Entity/TestService.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Webapi/ServiceNameCollisionTest.php b/dev/tests/integration/testsuite/Magento/Webapi/ServiceNameCollisionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Webapi/_files/webapi_user.php b/dev/tests/integration/testsuite/Magento/Webapi/_files/webapi_user.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Webapi/_files/webapi_user_rollback.php b/dev/tests/integration/testsuite/Magento/Webapi/_files/webapi_user_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Weee/Model/TaxTest.php b/dev/tests/integration/testsuite/Magento/Weee/Model/TaxTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Weee/_files/product_with_fpt.php b/dev/tests/integration/testsuite/Magento/Weee/_files/product_with_fpt.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Weee/_files/product_with_fpt_rollback.php b/dev/tests/integration/testsuite/Magento/Weee/_files/product_with_fpt_rollback.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/ContainerTest.php b/dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/ContainerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/DesignAbstractionTest.php b/dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/DesignAbstractionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/LayoutTest.php b/dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/LayoutTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/_files/design-abstraction_select.html b/dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/_files/design-abstraction_select.html
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/_files/layout/child_page_with_inherited_containers.xml b/dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/_files/layout/child_page_with_inherited_containers.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/_files/layout/child_page_with_inherited_imported_containers.xml b/dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/_files/layout/child_page_with_inherited_imported_containers.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/_files/layout/child_page_with_own_containers.xml b/dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/_files/layout/child_page_with_own_containers.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/_files/layout/child_page_without_containers.xml b/dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/_files/layout/child_page_without_containers.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/_files/layout/customer_account.xml b/dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/_files/layout/customer_account.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/_files/layout/non_page_handle_with_own_containers.xml b/dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/_files/layout/non_page_handle_with_own_containers.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/_files/layout/page_empty.xml b/dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/_files/layout/page_empty.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/_files/layout/root_page_with_imported_containers.xml b/dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/_files/layout/root_page_with_imported_containers.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/_files/layout/root_page_with_own_containers.xml b/dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/_files/layout/root_page_with_own_containers.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/_files/layout/root_page_without_containers.xml b/dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/_files/layout/root_page_without_containers.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/_files/layout/root_page_without_own_containers.xml b/dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/_files/layout/root_page_without_own_containers.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/_files/page_types_select.html b/dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Chooser/_files/page_types_select.html
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Tab/Main/LayoutTest.php b/dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Tab/Main/LayoutTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Tab/MainTest.php b/dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/Edit/Tab/MainTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/EditTest.php b/dev/tests/integration/testsuite/Magento/Widget/Block/Adminhtml/Widget/Instance/EditTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Widget/Controller/Adminhtml/Widget/InstanceTest.php b/dev/tests/integration/testsuite/Magento/Widget/Controller/Adminhtml/Widget/InstanceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Widget/Controller/Adminhtml/WidgetTest.php b/dev/tests/integration/testsuite/Magento/Widget/Controller/Adminhtml/WidgetTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Widget/Model/Config/DataTest.php b/dev/tests/integration/testsuite/Magento/Widget/Model/Config/DataTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Widget/Model/Config/ReaderTest.php b/dev/tests/integration/testsuite/Magento/Widget/Model/Config/ReaderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Widget/Model/Config/_files/catalog_new_products_list.xml b/dev/tests/integration/testsuite/Magento/Widget/Model/Config/_files/catalog_new_products_list.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Widget/Model/Config/_files/expectedGlobalArray.php b/dev/tests/integration/testsuite/Magento/Widget/Model/Config/_files/expectedGlobalArray.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Widget/Model/Config/_files/expectedGlobalDesignArray.php b/dev/tests/integration/testsuite/Magento/Widget/Model/Config/_files/expectedGlobalDesignArray.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Widget/Model/Config/_files/expectedMergedArray.php b/dev/tests/integration/testsuite/Magento/Widget/Model/Config/_files/expectedMergedArray.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Widget/Model/Config/_files/orders_and_returns.xml b/dev/tests/integration/testsuite/Magento/Widget/Model/Config/_files/orders_and_returns.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Widget/Model/Config/_files/orders_and_returns_customized.xml b/dev/tests/integration/testsuite/Magento/Widget/Model/Config/_files/orders_and_returns_customized.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Widget/Model/Layout/UpdateTest.php b/dev/tests/integration/testsuite/Magento/Widget/Model/Layout/UpdateTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Widget/Model/ResourceModel/Layout/UpdateTest.php b/dev/tests/integration/testsuite/Magento/Widget/Model/ResourceModel/Layout/UpdateTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Widget/Model/Template/FilterTest.php b/dev/tests/integration/testsuite/Magento/Widget/Model/Template/FilterTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Widget/Model/Widget/ConfigTest.php b/dev/tests/integration/testsuite/Magento/Widget/Model/Widget/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Widget/Model/Widget/InstanceTest.php b/dev/tests/integration/testsuite/Magento/Widget/Model/Widget/InstanceTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Widget/Model/WidgetTest.php b/dev/tests/integration/testsuite/Magento/Widget/Model/WidgetTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Widget/Setup/LayoutUpdateConverterTest.php b/dev/tests/integration/testsuite/Magento/Widget/Setup/LayoutUpdateConverterTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Widget/_files/design/adminhtml/magento_basic/Magento_Catalog/web/images/product_widget_new.png b/dev/tests/integration/testsuite/Magento/Widget/_files/design/adminhtml/magento_basic/Magento_Catalog/web/images/product_widget_new.png
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Widget/_files/design/adminhtml/magento_basic/composer.json b/dev/tests/integration/testsuite/Magento/Widget/_files/design/adminhtml/magento_basic/composer.json
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Widget/_files/design/adminhtml/magento_basic/theme.xml b/dev/tests/integration/testsuite/Magento/Widget/_files/design/adminhtml/magento_basic/theme.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Widget/_files/layout_cache.php b/dev/tests/integration/testsuite/Magento/Widget/_files/layout_cache.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Widget/_files/layout_update.php b/dev/tests/integration/testsuite/Magento/Widget/_files/layout_update.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Widget/_files/new_widget.php b/dev/tests/integration/testsuite/Magento/Widget/_files/new_widget.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Wishlist/Block/Customer/Wishlist/Item/ColumnTest.php b/dev/tests/integration/testsuite/Magento/Wishlist/Block/Customer/Wishlist/Item/ColumnTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Wishlist/Block/Customer/Wishlist/Item/OptionsTest.php b/dev/tests/integration/testsuite/Magento/Wishlist/Block/Customer/Wishlist/Item/OptionsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Wishlist/Block/Customer/Wishlist/ItemsTest.php b/dev/tests/integration/testsuite/Magento/Wishlist/Block/Customer/Wishlist/ItemsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Wishlist/Block/Share/WishlistTest.php b/dev/tests/integration/testsuite/Magento/Wishlist/Block/Share/WishlistTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Wishlist/Controller/IndexTest.php b/dev/tests/integration/testsuite/Magento/Wishlist/Controller/IndexTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Wishlist/Controller/SharedTest.php b/dev/tests/integration/testsuite/Magento/Wishlist/Controller/SharedTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Wishlist/Controller/UpdateTest.php b/dev/tests/integration/testsuite/Magento/Wishlist/Controller/UpdateTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Wishlist/Helper/DataTest.php b/dev/tests/integration/testsuite/Magento/Wishlist/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Wishlist/Model/ItemTest.php b/dev/tests/integration/testsuite/Magento/Wishlist/Model/ItemTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Wishlist/Model/ResourceModel/Item/CollectionTest.php b/dev/tests/integration/testsuite/Magento/Wishlist/Model/ResourceModel/Item/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Wishlist/Model/WishlistTest.php b/dev/tests/integration/testsuite/Magento/Wishlist/Model/WishlistTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Wishlist/_files/wishlist.php b/dev/tests/integration/testsuite/Magento/Wishlist/_files/wishlist.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Wishlist/_files/wishlist_shared.php b/dev/tests/integration/testsuite/Magento/Wishlist/_files/wishlist_shared.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/testsuite/Magento/Wishlist/_files/wishlist_with_product_qty_increments.php b/dev/tests/integration/testsuite/Magento/Wishlist/_files/wishlist_with_product_qty_increments.php
old mode 100644
new mode 100755
diff --git a/dev/tests/integration/tmp/.gitignore b/dev/tests/integration/tmp/.gitignore
old mode 100644
new mode 100755
diff --git a/dev/tests/js/JsTestDriver/.gitignore b/dev/tests/js/JsTestDriver/.gitignore
old mode 100644
new mode 100755
diff --git a/dev/tests/js/JsTestDriver/framework/qunit/qunit-1.14.0.css b/dev/tests/js/JsTestDriver/framework/qunit/qunit-1.14.0.css
old mode 100644
new mode 100755
diff --git a/dev/tests/js/JsTestDriver/framework/qunit/qunit-1.14.0.js b/dev/tests/js/JsTestDriver/framework/qunit/qunit-1.14.0.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/JsTestDriver/framework/requirejs-util.js b/dev/tests/js/JsTestDriver/framework/requirejs-util.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/JsTestDriver/framework/stub.js b/dev/tests/js/JsTestDriver/framework/stub.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/JsTestDriver/jsTestDriver.php.dist b/dev/tests/js/JsTestDriver/jsTestDriver.php.dist
old mode 100644
new mode 100755
diff --git a/dev/tests/js/JsTestDriver/jsTestDriverOrder.php b/dev/tests/js/JsTestDriver/jsTestDriverOrder.php
old mode 100644
new mode 100755
diff --git a/dev/tests/js/JsTestDriver/run_js_tests.php b/dev/tests/js/JsTestDriver/run_js_tests.php
old mode 100644
new mode 100755
diff --git a/dev/tests/js/JsTestDriver/testsuite/lib/ko/datepicker/datepicker.js b/dev/tests/js/JsTestDriver/testsuite/lib/ko/datepicker/datepicker.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/JsTestDriver/testsuite/lib/ko/datepicker/index.html b/dev/tests/js/JsTestDriver/testsuite/lib/ko/datepicker/index.html
old mode 100644
new mode 100755
diff --git a/dev/tests/js/JsTestDriver/testsuite/lib/storage/index.html b/dev/tests/js/JsTestDriver/testsuite/lib/storage/index.html
old mode 100644
new mode 100755
diff --git a/dev/tests/js/JsTestDriver/testsuite/lib/storage/test-storage.js b/dev/tests/js/JsTestDriver/testsuite/lib/storage/test-storage.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/JsTestDriver/testsuite/mage/_demo/index.html b/dev/tests/js/JsTestDriver/testsuite/mage/_demo/index.html
old mode 100644
new mode 100755
diff --git a/dev/tests/js/JsTestDriver/testsuite/mage/_demo/test.js b/dev/tests/js/JsTestDriver/testsuite/mage/_demo/test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/JsTestDriver/testsuite/mage/button/button-test.js b/dev/tests/js/JsTestDriver/testsuite/mage/button/button-test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/JsTestDriver/testsuite/mage/edit_trigger/edit-trigger-test.js b/dev/tests/js/JsTestDriver/testsuite/mage/edit_trigger/edit-trigger-test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/JsTestDriver/testsuite/mage/list/index.html b/dev/tests/js/JsTestDriver/testsuite/mage/list/index.html
old mode 100644
new mode 100755
diff --git a/dev/tests/js/JsTestDriver/testsuite/mage/list/jquery-list-test.js b/dev/tests/js/JsTestDriver/testsuite/mage/list/jquery-list-test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/JsTestDriver/testsuite/mage/mage-test.js b/dev/tests/js/JsTestDriver/testsuite/mage/mage-test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/JsTestDriver/testsuite/mage/search/regular-search-test.js b/dev/tests/js/JsTestDriver/testsuite/mage/search/regular-search-test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/JsTestDriver/testsuite/mage/translate_inline_vde/translate-inline-vde-dialog-test.js b/dev/tests/js/JsTestDriver/testsuite/mage/translate_inline_vde/translate-inline-vde-dialog-test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/JsTestDriver/testsuite/mage/translate_inline_vde/translate-inline-vde-test.js b/dev/tests/js/JsTestDriver/testsuite/mage/translate_inline_vde/translate-inline-vde-test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/JsTestDriver/testsuite/mage/webapi-test.js b/dev/tests/js/JsTestDriver/testsuite/mage/webapi-test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/JsTestDriver/testsuite/mage/zoom/zoom-test.js b/dev/tests/js/JsTestDriver/testsuite/mage/zoom/zoom-test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/assets/apply/components/fn.js b/dev/tests/js/jasmine/assets/apply/components/fn.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/assets/apply/config.json b/dev/tests/js/jasmine/assets/apply/config.json
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/assets/apply/index.js b/dev/tests/js/jasmine/assets/apply/index.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/assets/apply/templates/node.html b/dev/tests/js/jasmine/assets/apply/templates/node.html
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/assets/gallery/config.json b/dev/tests/js/jasmine/assets/gallery/config.json
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/assets/jsbuild/config.js b/dev/tests/js/jasmine/assets/jsbuild/config.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/assets/jsbuild/external.js b/dev/tests/js/jasmine/assets/jsbuild/external.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/assets/jsbuild/local.js b/dev/tests/js/jasmine/assets/jsbuild/local.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/assets/lib/web/mage/menu.html b/dev/tests/js/jasmine/assets/lib/web/mage/menu.html
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/assets/lib/web/mage/tabs.html b/dev/tests/js/jasmine/assets/lib/web/mage/tabs.html
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/assets/lib/web/mage/translate-inline.html b/dev/tests/js/jasmine/assets/lib/web/mage/translate-inline.html
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/assets/script/config.json b/dev/tests/js/jasmine/assets/script/config.json
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/assets/script/index.js b/dev/tests/js/jasmine/assets/script/index.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/assets/script/templates/selector.html b/dev/tests/js/jasmine/assets/script/templates/selector.html
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/assets/script/templates/virtual.html b/dev/tests/js/jasmine/assets/script/templates/virtual.html
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/assets/text/config.js b/dev/tests/js/jasmine/assets/text/config.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/assets/text/external.html b/dev/tests/js/jasmine/assets/text/external.html
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/assets/text/local.html b/dev/tests/js/jasmine/assets/text/local.html
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/assets/tools.js b/dev/tests/js/jasmine/assets/tools.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/require.conf.js b/dev/tests/js/jasmine/require.conf.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/spec_runner/index.js b/dev/tests/js/jasmine/spec_runner/index.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/spec_runner/settings.json b/dev/tests/js/jasmine/spec_runner/settings.json
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/spec_runner/tasks/connect.js b/dev/tests/js/jasmine/spec_runner/tasks/connect.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/spec_runner/tasks/jasmine.js b/dev/tests/js/jasmine/spec_runner/tasks/jasmine.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/spec_runner/template.html b/dev/tests/js/jasmine/spec_runner/template.html
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Backend/view/adminhtml/web/js/validate-store.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Backend/view/adminhtml/web/js/validate-store.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Braintree/frontend/js/paypal/button.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Braintree/frontend/js/paypal/button.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Braintree/frontend/js/view/payment/method-renderer/cc-form.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Braintree/frontend/js/view/payment/method-renderer/cc-form.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Braintree/frontend/js/view/payment/method-renderer/paypal.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Braintree/frontend/js/view/payment/method-renderer/paypal.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Bundle/adminhtml/js/components/bundle-checkbox.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Bundle/adminhtml/js/components/bundle-checkbox.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Catalog/adminhtml/js/components/dynamic-rows-import-custom-options.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Catalog/adminhtml/js/components/dynamic-rows-import-custom-options.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Catalog/adminhtml/js/disable-on-option/yesno.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Catalog/adminhtml/js/disable-on-option/yesno.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Catalog/adminhtml/js/utils/percentage-price-calculator.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Catalog/adminhtml/js/utils/percentage-price-calculator.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Catalog/base/js/product/list/columns/final-price.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Catalog/base/js/product/list/columns/final-price.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Catalog/base/js/product/list/columns/image.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Catalog/base/js/product/list/columns/image.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Catalog/frontend/js/product/storage/data-storage.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Catalog/frontend/js/product/storage/data-storage.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Catalog/frontend/js/product/storage/ids-storage-compare.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Catalog/frontend/js/product/storage/ids-storage-compare.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Catalog/frontend/js/product/storage/ids-storage.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Catalog/frontend/js/product/storage/ids-storage.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Catalog/frontend/js/product/storage/storage-service.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Catalog/frontend/js/product/storage/storage-service.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Catalog/frontend/js/storage-manager.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Catalog/frontend/js/storage-manager.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Checkout/base/web/js/model/default-post-code-resolver.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Checkout/base/web/js/model/default-post-code-resolver.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Checkout/frontend/js/action/redirect-on-success.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Checkout/frontend/js/action/redirect-on-success.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Checkout/frontend/js/model/cart/cache.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Checkout/frontend/js/model/cart/cache.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Checkout/frontend/js/model/cart/estimate-service.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Checkout/frontend/js/model/cart/estimate-service.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Checkout/frontend/js/model/cart/totals-processor/default.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Checkout/frontend/js/model/cart/totals-processor/default.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Checkout/frontend/js/model/new-customer-address.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Checkout/frontend/js/model/new-customer-address.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Checkout/frontend/js/view/cart/shipping-estimation.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Checkout/frontend/js/view/cart/shipping-estimation.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Checkout/frontend/js/view/minicart.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Checkout/frontend/js/view/minicart.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Checkout/frontend/js/view/shipping.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Checkout/frontend/js/view/shipping.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Checkout/frontend/js/view/summary/cart-items.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Checkout/frontend/js/view/summary/cart-items.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/CheckoutAgreements/frontend/js/model/agreement-validator.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/CheckoutAgreements/frontend/js/model/agreement-validator.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/CheckoutAgreements/frontend/js/model/place-order-mixin.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/CheckoutAgreements/frontend/js/model/place-order-mixin.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/CheckoutAgreements/frontend/js/model/set-payment-information-mixin.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/CheckoutAgreements/frontend/js/model/set-payment-information-mixin.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Customer/frontend/js/invalidation-processor.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Customer/frontend/js/invalidation-processor.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Customer/frontend/js/model/customer/address.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Customer/frontend/js/model/customer/address.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Customer/frontend/js/view/authentication-popup.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Customer/frontend/js/view/authentication-popup.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/InstantPurchase/frontend/web/js/view/instant-purchase.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/InstantPurchase/frontend/web/js/view/instant-purchase.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Msrp/frontend/js/msrp.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Msrp/frontend/js/msrp.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/PageCache/frontend/js/page-cache.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/PageCache/frontend/js/page-cache.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Payment/base/js/model/credit-card-validation/validator.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Payment/base/js/model/credit-card-validation/validator.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Paypal/frontend/js/in-context/express-checkout.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Paypal/frontend/js/in-context/express-checkout.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Paypal/frontend/js/view/payment/method-renderer/in-context/checkout-express.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Paypal/frontend/js/view/payment/method-renderer/in-context/checkout-express.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Paypal/frontend/js/view/payment/method-renderer/paypal-express-abstract.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Paypal/frontend/js/view/payment/method-renderer/paypal-express-abstract.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Review/view/base/web/js/product/summary.js b/dev/tests/js/jasmine/tests/app/code/Magento/Review/view/base/web/js/product/summary.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Review/view/base/web/template/product/summary.html b/dev/tests/js/jasmine/tests/app/code/Magento/Review/view/base/web/template/product/summary.html
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Review/view/base/web/template/product/summary_short.html b/dev/tests/js/jasmine/tests/app/code/Magento/Review/view/base/web/template/product/summary_short.html
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Review/view/frontend/web/js/process-review.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Review/view/frontend/web/js/process-review.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Signifyd/frontend/js/Fingerprint.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Signifyd/frontend/js/Fingerprint.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Tax/view/frontend/web/js/view/checkout/summary/grand-total.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Tax/view/frontend/web/js/view/checkout/summary/grand-total.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/core/layout.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/core/layout.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/dynamic-rows/dynamic-rows.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/dynamic-rows/dynamic-rows.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/dynamic-rows/record.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/dynamic-rows/record.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/adapter.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/adapter.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/client.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/client.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/components/area.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/components/area.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/components/button.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/components/button.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/components/collection.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/components/collection.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/components/collection/item.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/components/collection/item.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/components/group.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/components/group.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/components/html.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/components/html.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/components/tab.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/components/tab.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/components/tab_group.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/components/tab_group.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/element/abstract.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/element/abstract.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/element/boolean.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/element/boolean.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/element/date-time.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/element/date-time.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/element/date.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/element/date.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/element/file-uploader.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/element/file-uploader.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/element/multiselect.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/element/multiselect.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/element/post-code.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/element/post-code.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/element/region.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/element/region.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/element/select.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/element/select.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/element/textarea.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/element/textarea.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/form.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/form.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/provider.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/provider.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/ui-select.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/ui-select.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/columns/actions.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/columns/actions.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/columns/column.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/columns/column.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/columns/date.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/columns/date.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/columns/expandable.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/columns/expandable.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/columns/multiselect.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/columns/multiselect.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/columns/select.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/columns/select.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/controls/bookmarks/storage.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/controls/bookmarks/storage.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/controls/columns.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/controls/columns.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/data-storage.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/data-storage.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/editing/bulk.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/editing/bulk.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/filters/filters.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/filters/filters.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/filters/range.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/filters/range.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/paging/paging.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/paging/paging.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/resize.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/resize.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/search/search.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/search/search.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/sticky/sticky.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/sticky/sticky.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/tree-massactions.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/tree-massactions.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/lib/component/links.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/lib/component/links.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/lib/events.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/lib/events.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/lib/ko/bind/datepicker.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/lib/ko/bind/datepicker.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/lib/ko/bind/i18n.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/lib/ko/bind/i18n.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/lib/logger/console-logger.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/lib/logger/console-logger.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/lib/logger/console-output-handler.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/lib/logger/console-output-handler.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/lib/logger/entry.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/lib/logger/entry.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/lib/logger/formatter.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/lib/logger/formatter.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/lib/logger/logger.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/lib/logger/logger.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/lib/registry/registry.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/lib/registry/registry.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/lib/validation/rules.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/lib/validation/rules.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/modal/alert.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/modal/alert.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/modal/confirm.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/modal/confirm.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/modal/modal.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/modal/modal.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/modal/prompt.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/modal/prompt.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/timeline/timeline.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/timeline/timeline.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/app/code/Magento/Wishlist/view/frontend/web/js/add-to-wishlist.test.js b/dev/tests/js/jasmine/tests/app/code/Magento/Wishlist/view/frontend/web/js/add-to-wishlist.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/lib/mage/accordion.test.js b/dev/tests/js/jasmine/tests/lib/mage/accordion.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/lib/mage/apply.test.js b/dev/tests/js/jasmine/tests/lib/mage/apply.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/lib/mage/backend/bootstrap.test.js b/dev/tests/js/jasmine/tests/lib/mage/backend/bootstrap.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/lib/mage/backend/suggest.test.js b/dev/tests/js/jasmine/tests/lib/mage/backend/suggest.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/lib/mage/backend/tree-suggest.test.js b/dev/tests/js/jasmine/tests/lib/mage/backend/tree-suggest.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/lib/mage/calendar.test.js b/dev/tests/js/jasmine/tests/lib/mage/calendar.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/lib/mage/collapsible.test.js b/dev/tests/js/jasmine/tests/lib/mage/collapsible.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/lib/mage/decorate.test.js b/dev/tests/js/jasmine/tests/lib/mage/decorate.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/lib/mage/dropdown.test.js b/dev/tests/js/jasmine/tests/lib/mage/dropdown.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/lib/mage/form.test.js b/dev/tests/js/jasmine/tests/lib/mage/form.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/lib/mage/loader.test.js b/dev/tests/js/jasmine/tests/lib/mage/loader.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/lib/mage/menu.test.js b/dev/tests/js/jasmine/tests/lib/mage/menu.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/lib/mage/misc.test.js b/dev/tests/js/jasmine/tests/lib/mage/misc.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/lib/mage/multiselect.test.js b/dev/tests/js/jasmine/tests/lib/mage/multiselect.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/lib/mage/requirejs/static-jsbuild.test.js b/dev/tests/js/jasmine/tests/lib/mage/requirejs/static-jsbuild.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/lib/mage/requirejs/static-text.test.js b/dev/tests/js/jasmine/tests/lib/mage/requirejs/static-text.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/lib/mage/requirejs/statistician.test.js b/dev/tests/js/jasmine/tests/lib/mage/requirejs/statistician.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/lib/mage/scripts.test.js b/dev/tests/js/jasmine/tests/lib/mage/scripts.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/lib/mage/tabs.test.js b/dev/tests/js/jasmine/tests/lib/mage/tabs.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/lib/mage/template.test.js b/dev/tests/js/jasmine/tests/lib/mage/template.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/lib/mage/translate-inline.test.js b/dev/tests/js/jasmine/tests/lib/mage/translate-inline.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/lib/mage/translate.test.js b/dev/tests/js/jasmine/tests/lib/mage/translate.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/js/jasmine/tests/lib/mage/validation.test.js b/dev/tests/js/jasmine/tests/lib/mage/validation.test.js
old mode 100644
new mode 100755
diff --git a/dev/tests/static/.gitignore b/dev/tests/static/.gitignore
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/CodeMessDetector/Rule/Design/FinalImplementation.php b/dev/tests/static/framework/Magento/CodeMessDetector/Rule/Design/FinalImplementation.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/CodeMessDetector/Test/Unit/Rule/Design/FinalImplementationTest.php b/dev/tests/static/framework/Magento/CodeMessDetector/Test/Unit/Rule/Design/FinalImplementationTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/CodeMessDetector/resources/rulesets/design.xml b/dev/tests/static/framework/Magento/CodeMessDetector/resources/rulesets/design.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/Sniffs/Arrays/ShortArraySyntaxSniff.php b/dev/tests/static/framework/Magento/Sniffs/Arrays/ShortArraySyntaxSniff.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/Sniffs/EchoTags/ShortEchoSyntaxSniff.php b/dev/tests/static/framework/Magento/Sniffs/EchoTags/ShortEchoSyntaxSniff.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/Sniffs/Files/LineLengthSniff.php b/dev/tests/static/framework/Magento/Sniffs/Files/LineLengthSniff.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/Sniffs/Less/AvoidIdSniff.php b/dev/tests/static/framework/Magento/Sniffs/Less/AvoidIdSniff.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/Sniffs/Less/BracesFormattingSniff.php b/dev/tests/static/framework/Magento/Sniffs/Less/BracesFormattingSniff.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/Sniffs/Less/ClassNamingSniff.php b/dev/tests/static/framework/Magento/Sniffs/Less/ClassNamingSniff.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/Sniffs/Less/ColonSpacingSniff.php b/dev/tests/static/framework/Magento/Sniffs/Less/ColonSpacingSniff.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/Sniffs/Less/ColourDefinitionSniff.php b/dev/tests/static/framework/Magento/Sniffs/Less/ColourDefinitionSniff.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/Sniffs/Less/CombinatorIndentationSniff.php b/dev/tests/static/framework/Magento/Sniffs/Less/CombinatorIndentationSniff.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/Sniffs/Less/CommentLevelsSniff.php b/dev/tests/static/framework/Magento/Sniffs/Less/CommentLevelsSniff.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/Sniffs/Less/ImportantPropertySniff.php b/dev/tests/static/framework/Magento/Sniffs/Less/ImportantPropertySniff.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/Sniffs/Less/IndentationSniff.php b/dev/tests/static/framework/Magento/Sniffs/Less/IndentationSniff.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/Sniffs/Less/PropertiesLineBreakSniff.php b/dev/tests/static/framework/Magento/Sniffs/Less/PropertiesLineBreakSniff.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/Sniffs/Less/PropertiesSortingSniff.php b/dev/tests/static/framework/Magento/Sniffs/Less/PropertiesSortingSniff.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/Sniffs/Less/QuotesSniff.php b/dev/tests/static/framework/Magento/Sniffs/Less/QuotesSniff.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/Sniffs/Less/SelectorDelimiterSniff.php b/dev/tests/static/framework/Magento/Sniffs/Less/SelectorDelimiterSniff.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/Sniffs/Less/SemicolonSpacingSniff.php b/dev/tests/static/framework/Magento/Sniffs/Less/SemicolonSpacingSniff.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/Sniffs/Less/TokenizerSymbolsInterface.php b/dev/tests/static/framework/Magento/Sniffs/Less/TokenizerSymbolsInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/Sniffs/Less/TypeSelectorConcatenationSniff.php b/dev/tests/static/framework/Magento/Sniffs/Less/TypeSelectorConcatenationSniff.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/Sniffs/Less/TypeSelectorsSniff.php b/dev/tests/static/framework/Magento/Sniffs/Less/TypeSelectorsSniff.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/Sniffs/Less/VariablesSniff.php b/dev/tests/static/framework/Magento/Sniffs/Less/VariablesSniff.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/Sniffs/Less/ZeroUnitsSniff.php b/dev/tests/static/framework/Magento/Sniffs/Less/ZeroUnitsSniff.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/Sniffs/LiteralNamespaces/LiteralNamespacesSniff.php b/dev/tests/static/framework/Magento/Sniffs/LiteralNamespaces/LiteralNamespacesSniff.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/Sniffs/MicroOptimizations/IsNullSniff.php b/dev/tests/static/framework/Magento/Sniffs/MicroOptimizations/IsNullSniff.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/Sniffs/NamingConventions/InterfaceNameSniff.php b/dev/tests/static/framework/Magento/Sniffs/NamingConventions/InterfaceNameSniff.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/Sniffs/NamingConventions/ReservedWordsSniff.php b/dev/tests/static/framework/Magento/Sniffs/NamingConventions/ReservedWordsSniff.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/Sniffs/Translation/ConstantUsageSniff.php b/dev/tests/static/framework/Magento/Sniffs/Translation/ConstantUsageSniff.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/Sniffs/Whitespace/EmptyLineMissedSniff.php b/dev/tests/static/framework/Magento/Sniffs/Whitespace/EmptyLineMissedSniff.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/Sniffs/Whitespace/MultipleEmptyLinesSniff.php b/dev/tests/static/framework/Magento/Sniffs/Whitespace/MultipleEmptyLinesSniff.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/TestFramework/CodingStandard/Tool/BlacklistInterface.php b/dev/tests/static/framework/Magento/TestFramework/CodingStandard/Tool/BlacklistInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/TestFramework/CodingStandard/Tool/CodeMessDetector.php b/dev/tests/static/framework/Magento/TestFramework/CodingStandard/Tool/CodeMessDetector.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/TestFramework/CodingStandard/Tool/CodeSniffer.php b/dev/tests/static/framework/Magento/TestFramework/CodingStandard/Tool/CodeSniffer.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/TestFramework/CodingStandard/Tool/CodeSniffer/LessWrapper.php b/dev/tests/static/framework/Magento/TestFramework/CodingStandard/Tool/CodeSniffer/LessWrapper.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/TestFramework/CodingStandard/Tool/CodeSniffer/Wrapper.php b/dev/tests/static/framework/Magento/TestFramework/CodingStandard/Tool/CodeSniffer/Wrapper.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/TestFramework/CodingStandard/Tool/CopyPasteDetector.php b/dev/tests/static/framework/Magento/TestFramework/CodingStandard/Tool/CopyPasteDetector.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/TestFramework/CodingStandard/Tool/ExtensionInterface.php b/dev/tests/static/framework/Magento/TestFramework/CodingStandard/Tool/ExtensionInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/TestFramework/CodingStandard/ToolInterface.php b/dev/tests/static/framework/Magento/TestFramework/CodingStandard/ToolInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/TestFramework/Dependency/DbRule.php b/dev/tests/static/framework/Magento/TestFramework/Dependency/DbRule.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/TestFramework/Dependency/DiRule.php b/dev/tests/static/framework/Magento/TestFramework/Dependency/DiRule.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/TestFramework/Dependency/LayoutRule.php b/dev/tests/static/framework/Magento/TestFramework/Dependency/LayoutRule.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/TestFramework/Dependency/PhpRule.php b/dev/tests/static/framework/Magento/TestFramework/Dependency/PhpRule.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/TestFramework/Dependency/ReportsConfigRule.php b/dev/tests/static/framework/Magento/TestFramework/Dependency/ReportsConfigRule.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/TestFramework/Dependency/RuleInterface.php b/dev/tests/static/framework/Magento/TestFramework/Dependency/RuleInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/TestFramework/Dependency/VirtualType/VirtualTypeMapper.php b/dev/tests/static/framework/Magento/TestFramework/Dependency/VirtualType/VirtualTypeMapper.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/TestFramework/Inspection/AbstractCommand.php b/dev/tests/static/framework/Magento/TestFramework/Inspection/AbstractCommand.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/TestFramework/Inspection/Exception.php b/dev/tests/static/framework/Magento/TestFramework/Inspection/Exception.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/TestFramework/Inspection/WordsFinder.php b/dev/tests/static/framework/Magento/TestFramework/Inspection/WordsFinder.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/TestFramework/Integrity/AbstractConfig.php b/dev/tests/static/framework/Magento/TestFramework/Integrity/AbstractConfig.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/TestFramework/Integrity/Library/Injectable.php b/dev/tests/static/framework/Magento/TestFramework/Integrity/Library/Injectable.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/TestFramework/Integrity/Library/PhpParser/DependenciesCollectorInterface.php b/dev/tests/static/framework/Magento/TestFramework/Integrity/Library/PhpParser/DependenciesCollectorInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/TestFramework/Integrity/Library/PhpParser/ParserFactory.php b/dev/tests/static/framework/Magento/TestFramework/Integrity/Library/PhpParser/ParserFactory.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/TestFramework/Integrity/Library/PhpParser/ParserInterface.php b/dev/tests/static/framework/Magento/TestFramework/Integrity/Library/PhpParser/ParserInterface.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/TestFramework/Integrity/Library/PhpParser/StaticCalls.php b/dev/tests/static/framework/Magento/TestFramework/Integrity/Library/PhpParser/StaticCalls.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/TestFramework/Integrity/Library/PhpParser/Throws.php b/dev/tests/static/framework/Magento/TestFramework/Integrity/Library/PhpParser/Throws.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/TestFramework/Integrity/Library/PhpParser/Tokens.php b/dev/tests/static/framework/Magento/TestFramework/Integrity/Library/PhpParser/Tokens.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/TestFramework/Integrity/Library/PhpParser/Uses.php b/dev/tests/static/framework/Magento/TestFramework/Integrity/Library/PhpParser/Uses.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/TestFramework/Integrity/PluginValidator.php b/dev/tests/static/framework/Magento/TestFramework/Integrity/PluginValidator.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/TestFramework/Utility/AutogeneratedClassNotInConstructorFinder.php b/dev/tests/static/framework/Magento/TestFramework/Utility/AutogeneratedClassNotInConstructorFinder.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/TestFramework/Utility/ChangedFiles.php b/dev/tests/static/framework/Magento/TestFramework/Utility/ChangedFiles.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/TestFramework/Utility/ClassNameExtractor.php b/dev/tests/static/framework/Magento/TestFramework/Utility/ClassNameExtractor.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/TestFramework/Utility/CodeCheck.php b/dev/tests/static/framework/Magento/TestFramework/Utility/CodeCheck.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/TestFramework/Utility/File/RegexIteratorFactory.php b/dev/tests/static/framework/Magento/TestFramework/Utility/File/RegexIteratorFactory.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/TestFramework/Utility/FunctionDetector.php b/dev/tests/static/framework/Magento/TestFramework/Utility/FunctionDetector.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/TestFramework/Utility/XssOutputValidator.php b/dev/tests/static/framework/Magento/TestFramework/Utility/XssOutputValidator.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/Magento/ruleset.xml b/dev/tests/static/framework/Magento/ruleset.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/autoload.php b/dev/tests/static/framework/autoload.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/bootstrap.php b/dev/tests/static/framework/bootstrap.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/phpunit.xml.dist b/dev/tests/static/framework/tests/unit/phpunit.xml.dist
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/Sniffs/EchoTags/ShortEchoSyntaxSniffTest.php b/dev/tests/static/framework/tests/unit/testsuite/Magento/Sniffs/EchoTags/ShortEchoSyntaxSniffTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/Sniffs/EchoTags/_files/correct_echotag.txt b/dev/tests/static/framework/tests/unit/testsuite/Magento/Sniffs/EchoTags/_files/correct_echotag.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/Sniffs/EchoTags/_files/correct_noecho.txt b/dev/tests/static/framework/tests/unit/testsuite/Magento/Sniffs/EchoTags/_files/correct_noecho.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/Sniffs/EchoTags/_files/incorrect_echotag.txt b/dev/tests/static/framework/tests/unit/testsuite/Magento/Sniffs/EchoTags/_files/incorrect_echotag.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/Sniffs/Translation/ConstantUsageSniffTest.php b/dev/tests/static/framework/tests/unit/testsuite/Magento/Sniffs/Translation/ConstantUsageSniffTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/Sniffs/Translation/_files/correct_arguments.txt b/dev/tests/static/framework/tests/unit/testsuite/Magento/Sniffs/Translation/_files/correct_arguments.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/Sniffs/Translation/_files/incorrect_arguments.txt b/dev/tests/static/framework/tests/unit/testsuite/Magento/Sniffs/Translation/_files/incorrect_arguments.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Integrity/Library/InjectableTest.php b/dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Integrity/Library/InjectableTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Integrity/Library/PhpParser/ParserFactoryTest.php b/dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Integrity/Library/PhpParser/ParserFactoryTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Integrity/Library/PhpParser/StaticCallsTest.php b/dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Integrity/Library/PhpParser/StaticCallsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Integrity/Library/PhpParser/ThrowsTest.php b/dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Integrity/Library/PhpParser/ThrowsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Integrity/Library/PhpParser/TokensTest.php b/dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Integrity/Library/PhpParser/TokensTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Integrity/Library/PhpParser/UsesTest.php b/dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Integrity/Library/PhpParser/UsesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Utility/File/CodeCheckTest.php b/dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Utility/File/CodeCheckTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Utility/File/_files/class_name_in_namespace_and_variable_name.txt b/dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Utility/File/_files/class_name_in_namespace_and_variable_name.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Utility/File/_files/create_new_instance.txt b/dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Utility/File/_files/create_new_instance.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Utility/File/_files/create_new_instance2.txt b/dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Utility/File/_files/create_new_instance2.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Utility/File/_files/create_new_instance3.txt b/dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Utility/File/_files/create_new_instance3.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Utility/File/_files/extends.txt b/dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Utility/File/_files/extends.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Utility/File/_files/extends2.txt b/dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Utility/File/_files/extends2.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Utility/File/_files/implements.txt b/dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Utility/File/_files/implements.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Utility/File/_files/implements2.txt b/dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Utility/File/_files/implements2.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Utility/File/_files/use.txt b/dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Utility/File/_files/use.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Utility/File/_files/use2.txt b/dev/tests/static/framework/tests/unit/testsuite/Magento/Test/Utility/File/_files/use2.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/CodingStandard/Tool/CodeMessDetectorTest.php b/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/CodingStandard/Tool/CodeMessDetectorTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/CodingStandard/Tool/CodeSniffer/WrapperTest.php b/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/CodingStandard/Tool/CodeSniffer/WrapperTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/CodingStandard/Tool/CodeSnifferTest.php b/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/CodingStandard/Tool/CodeSnifferTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Dependency/DbRuleTest.php b/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Dependency/DbRuleTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Dependency/DiRuleTest.php b/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Dependency/DiRuleTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Dependency/LayoutRuleTest.php b/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Dependency/LayoutRuleTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Dependency/PhpRuleTest.php b/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Dependency/PhpRuleTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Dependency/VirtualType/VirtualTypeMapperTest.php b/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Dependency/VirtualType/VirtualTypeMapperTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Dependency/VirtualType/_files/etc/adminhtml/di.xml b/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Dependency/VirtualType/_files/etc/adminhtml/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Dependency/VirtualType/_files/etc/di.xml b/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Dependency/VirtualType/_files/etc/di.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Dependency/_files/di_external_dependency.xml b/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Dependency/_files/di_external_dependency.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Dependency/_files/di_in_module_dependency.xml b/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Dependency/_files/di_in_module_dependency.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Dependency/_files/di_no_dependency.xml b/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Dependency/_files/di_no_dependency.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Dependency/_files/di_virtual_dependency.xml b/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Dependency/_files/di_virtual_dependency.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Dependency/_files/layout_handle.xml b/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Dependency/_files/layout_handle.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Dependency/_files/layout_handle_parent.xml b/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Dependency/_files/layout_handle_parent.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Dependency/_files/layout_handle_update.xml b/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Dependency/_files/layout_handle_update.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Dependency/_files/layout_reference.xml b/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Dependency/_files/layout_reference.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Inspection/WordsFinderTest.php b/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Inspection/WordsFinderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Inspection/_files/broken_config.xml b/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Inspection/_files/broken_config.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Inspection/_files/config.xml b/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Inspection/_files/config.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Inspection/_files/config_additional.xml b/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Inspection/_files/config_additional.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Inspection/_files/empty_whitelist_path.xml b/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Inspection/_files/empty_whitelist_path.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Inspection/_files/empty_words_config.xml b/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Inspection/_files/empty_words_config.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Inspection/_files/words_finder/buffy.php b/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Inspection/_files/words_finder/buffy.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Inspection/_files/words_finder/buffy.zip b/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Inspection/_files/words_finder/buffy.zip
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Inspection/_files/words_finder/interview_with_the_vampire.php b/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Inspection/_files/words_finder/interview_with_the_vampire.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Inspection/_files/words_finder/interview_with_the_vampire.zip b/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Inspection/_files/words_finder/interview_with_the_vampire.zip
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Inspection/_files/words_finder/self_tested_config.xml b/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Inspection/_files/words_finder/self_tested_config.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Inspection/_files/words_finder/twilight/eclipse.php b/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Inspection/_files/words_finder/twilight/eclipse.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Inspection/_files/words_finder/twilight/newmoon.php b/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Inspection/_files/words_finder/twilight/newmoon.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/AutogeneratedClassNotInConstructorFinderTest.php b/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/AutogeneratedClassNotInConstructorFinderTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/Bar.php b/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/Bar.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/ClassNameExtractorTest.php b/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/ClassNameExtractorTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/Foo.php b/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/Foo.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/FunctionDetectorTest.php b/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/FunctionDetectorTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/PartialNamespace/Bar.php b/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/PartialNamespace/Bar.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/XssOutputValidatorTest.php b/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/XssOutputValidatorTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/_files/class_implements_interface.txt b/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/_files/class_implements_interface.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/_files/class_with_comment.txt b/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/_files/class_with_comment.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/_files/class_with_namespace.txt b/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/_files/class_with_namespace.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/_files/class_without_namespace.txt b/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/_files/class_without_namespace.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/_files/extra_whitespaces.txt b/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/_files/extra_whitespaces.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/_files/implements_keyword_on_different_line.txt b/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/_files/implements_keyword_on_different_line.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/_files/missing_class_keyword.txt b/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/_files/missing_class_keyword.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/_files/test.txt b/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/_files/test.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/_files/xss_safe.phtml b/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/_files/xss_safe.phtml
old mode 100644
new mode 100755
diff --git a/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/_files/xss_unsafe.phtml b/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Utility/_files/xss_unsafe.phtml
old mode 100644
new mode 100755
diff --git a/dev/tests/static/get_github_changes.php b/dev/tests/static/get_github_changes.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/phpunit-all.xml.dist b/dev/tests/static/phpunit-all.xml.dist
old mode 100644
new mode 100755
diff --git a/dev/tests/static/phpunit.xml.dist b/dev/tests/static/phpunit.xml.dist
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/App/Language/CircularDependencyTest.php b/dev/tests/static/testsuite/Magento/Test/Integrity/App/Language/CircularDependencyTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/App/Language/ConfigTest.php b/dev/tests/static/testsuite/Magento/Test/Integrity/App/Language/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/App/Language/TranslationFiles.php b/dev/tests/static/testsuite/Magento/Test/Integrity/App/Language/TranslationFiles.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/App/Language/TranslationFilesTest.php b/dev/tests/static/testsuite/Magento/Test/Integrity/App/Language/TranslationFilesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/App/Language/_files/known_invalid.xml b/dev/tests/static/testsuite/Magento/Test/Integrity/App/Language/_files/known_invalid.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/App/Language/_files/known_valid.xml b/dev/tests/static/testsuite/Magento/Test/Integrity/App/Language/_files/known_valid.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/CircularDependencyTest.php b/dev/tests/static/testsuite/Magento/Test/Integrity/CircularDependencyTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/ClassesTest.php b/dev/tests/static/testsuite/Magento/Test/Integrity/ClassesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/ComposerLockTest.php b/dev/tests/static/testsuite/Magento/Test/Integrity/ComposerLockTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/ComposerTest.php b/dev/tests/static/testsuite/Magento/Test/Integrity/ComposerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/ConfigTest.php b/dev/tests/static/testsuite/Magento/Test/Integrity/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/DependencyTest.php b/dev/tests/static/testsuite/Magento/Test/Integrity/DependencyTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Di/CompilerTest.php b/dev/tests/static/testsuite/Magento/Test/Integrity/Di/CompilerTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/ExceptionHierarchyTest.php b/dev/tests/static/testsuite/Magento/Test/Integrity/ExceptionHierarchyTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/HhvmCompatibilityTest.php b/dev/tests/static/testsuite/Magento/Test/Integrity/HhvmCompatibilityTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Layout/BlockNamesTest.php b/dev/tests/static/testsuite/Magento/Test/Integrity/Layout/BlockNamesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Layout/BlocksTest.php b/dev/tests/static/testsuite/Magento/Test/Integrity/Layout/BlocksTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Layout/HandlesTest.php b/dev/tests/static/testsuite/Magento/Test/Integrity/Layout/HandlesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Layout/TemplatesTest.php b/dev/tests/static/testsuite/Magento/Test/Integrity/Layout/TemplatesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Layout/ThemeHandlesTest.php b/dev/tests/static/testsuite/Magento/Test/Integrity/Layout/ThemeHandlesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Library/DependencyTest.php b/dev/tests/static/testsuite/Magento/Test/Integrity/Library/DependencyTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Library/_files/blacklist.txt b/dev/tests/static/testsuite/Magento/Test/Integrity/Library/_files/blacklist.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Backend/ControllerAclTest.php b/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Backend/ControllerAclTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Backend/SystemConfigTest.php b/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Backend/SystemConfigTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Backend/_files/controller_acl_test_whitelist_ce.txt b/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Backend/_files/controller_acl_test_whitelist_ce.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Core/Model/Fieldset/FieldsetConfigTest.php b/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Core/Model/Fieldset/FieldsetConfigTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Core/Model/Fieldset/_files/fieldset.xml b/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Core/Model/Fieldset/_files/fieldset.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Core/Model/Fieldset/_files/fieldset_file.xml b/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Core/Model/Fieldset/_files/fieldset_file.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Core/Model/Fieldset/_files/invalid_fieldset.xml b/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Core/Model/Fieldset/_files/invalid_fieldset.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Framework/Api/ExtensibleInterfacesTest.php b/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Framework/Api/ExtensibleInterfacesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Framework/Api/_files/ExtensibleInterfacesTest/blacklist_ce.txt b/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Framework/Api/_files/ExtensibleInterfacesTest/blacklist_ce.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Framework/Search/RequestConfigTest.php b/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Framework/Search/RequestConfigTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Framework/Search/SearchEngineConfigTest.php b/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Framework/Search/SearchEngineConfigTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Framework/Search/_files/request/invalid.xml b/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Framework/Search/_files/request/invalid.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Framework/Search/_files/request/invalid_partial.xml b/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Framework/Search/_files/request/invalid_partial.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Framework/Search/_files/request/valid.xml b/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Framework/Search/_files/request/valid.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Framework/Search/_files/request/valid_partial.xml b/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Framework/Search/_files/request/valid_partial.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Framework/Search/_files/search_engine/invalid.xml b/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Framework/Search/_files/search_engine/invalid.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Framework/Search/_files/search_engine/valid.xml b/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Framework/Search/_files/search_engine/valid.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Indexer/ConfigTest.php b/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Indexer/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Indexer/_files/invalid.xml b/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Indexer/_files/invalid.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Indexer/_files/valid.xml b/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Indexer/_files/valid.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Indexer/_files/valid_partial.xml b/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Indexer/_files/valid_partial.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Payment/Config/ReferentialTest.php b/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Payment/Config/ReferentialTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Payment/Model/ConfigTest.php b/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Payment/Model/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Payment/Model/_files/invalid_payment.xml b/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Payment/Model/_files/invalid_payment.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Payment/Model/_files/invalid_payment_partial.xml b/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Payment/Model/_files/invalid_payment_partial.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Payment/Model/_files/payment.xml b/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Payment/Model/_files/payment.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Payment/Model/_files/payment_partial.xml b/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Payment/Model/_files/payment_partial.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Persistent/ConfigTest.php b/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Persistent/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Persistent/_files/invalid_persistent.xml b/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Persistent/_files/invalid_persistent.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Persistent/_files/valid_persistent.xml b/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Persistent/_files/valid_persistent.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Webapi/Model/ConfigTest.php b/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Webapi/Model/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Webapi/Model/_files/invalid_webapi.xml b/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Webapi/Model/_files/invalid_webapi.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Webapi/Model/_files/webapi.xml b/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Webapi/Model/_files/webapi.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Widget/WidgetConfigTest.php b/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Widget/WidgetConfigTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Widget/_files/invalid_widget.xml b/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Widget/_files/invalid_widget.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Widget/_files/widget.xml b/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Widget/_files/widget.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Widget/_files/widget_file.xml b/dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Widget/_files/widget_file.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/ObserverImplementationTest.php b/dev/tests/static/testsuite/Magento/Test/Integrity/ObserverImplementationTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Phrase/AbstractTestCase.php b/dev/tests/static/testsuite/Magento/Test/Integrity/Phrase/AbstractTestCase.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Phrase/ArgumentsTest.php b/dev/tests/static/testsuite/Magento/Test/Integrity/Phrase/ArgumentsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Phrase/Legacy/SignatureTest.php b/dev/tests/static/testsuite/Magento/Test/Integrity/Phrase/Legacy/SignatureTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/PublicCodeTest.php b/dev/tests/static/testsuite/Magento/Test/Integrity/PublicCodeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Readme/ReadmeTest.php b/dev/tests/static/testsuite/Magento/Test/Integrity/Readme/ReadmeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Readme/_files/blacklist/ce.txt b/dev/tests/static/testsuite/Magento/Test/Integrity/Readme/_files/blacklist/ce.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Readme/_files/scan_list.txt b/dev/tests/static/testsuite/Magento/Test/Integrity/Readme/_files/scan_list.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/TestPlacementTest.php b/dev/tests/static/testsuite/Magento/Test/Integrity/TestPlacementTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/Xml/SchemaTest.php b/dev/tests/static/testsuite/Magento/Test/Integrity/Xml/SchemaTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/_files/blacklist/exception_hierarchy.txt b/dev/tests/static/testsuite/Magento/Test/Integrity/_files/blacklist/exception_hierarchy.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/_files/blacklist/observers.txt b/dev/tests/static/testsuite/Magento/Test/Integrity/_files/blacklist/observers.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/_files/blacklist/reference.txt b/dev/tests/static/testsuite/Magento/Test/Integrity/_files/blacklist/reference.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Integrity/_files/dependency_test/tables_ce.php b/dev/tests/static/testsuite/Magento/Test/Integrity/_files/dependency_test/tables_ce.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Js/_files/blacklist/magento.txt b/dev/tests/static/testsuite/Magento/Test/Js/_files/blacklist/magento.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Js/_files/eslint/.eslintrc b/dev/tests/static/testsuite/Magento/Test/Js/_files/eslint/.eslintrc
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Js/_files/eslint/.eslintrc-magento b/dev/tests/static/testsuite/Magento/Test/Js/_files/eslint/.eslintrc-magento
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Js/_files/eslint/.eslintrc-reset b/dev/tests/static/testsuite/Magento/Test/Js/_files/eslint/.eslintrc-reset
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Js/_files/jscs/.jscsrc b/dev/tests/static/testsuite/Magento/Test/Js/_files/jscs/.jscsrc
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Js/_files/whitelist/magento.txt b/dev/tests/static/testsuite/Magento/Test/Js/_files/whitelist/magento.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/AutogeneratedClassNotInConstructorTest.php b/dev/tests/static/testsuite/Magento/Test/Legacy/AutogeneratedClassNotInConstructorTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/ClassesTest.php b/dev/tests/static/testsuite/Magento/Test/Legacy/ClassesTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/ConfigTest.php b/dev/tests/static/testsuite/Magento/Test/Legacy/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/CopyrightTest.php b/dev/tests/static/testsuite/Magento/Test/Legacy/CopyrightTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/EmailTemplateTest.php b/dev/tests/static/testsuite/Magento/Test/Legacy/EmailTemplateTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/FilesystemTest.php b/dev/tests/static/testsuite/Magento/Test/Legacy/FilesystemTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/InstallUpgradeTest.php b/dev/tests/static/testsuite/Magento/Test/Legacy/InstallUpgradeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/LayoutTest.php b/dev/tests/static/testsuite/Magento/Test/Legacy/LayoutTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/LibraryLocationTest.php b/dev/tests/static/testsuite/Magento/Test/Legacy/LibraryLocationTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/LicenseTest.php b/dev/tests/static/testsuite/Magento/Test/Legacy/LicenseTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/Magento/Core/Block/AbstractBlockTest.php b/dev/tests/static/testsuite/Magento/Test/Legacy/Magento/Core/Block/AbstractBlockTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/Magento/Framework/Module/ModuleXMLTest.php b/dev/tests/static/testsuite/Magento/Test/Legacy/Magento/Framework/Module/ModuleXMLTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/Magento/Framework/ObjectManager/DiConfigTest.php b/dev/tests/static/testsuite/Magento/Test/Legacy/Magento/Framework/ObjectManager/DiConfigTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/Magento/Widget/XmlTest.php b/dev/tests/static/testsuite/Magento/Test/Legacy/Magento/Widget/XmlTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/ModuleDBChangeTest.php b/dev/tests/static/testsuite/Magento/Test/Legacy/ModuleDBChangeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/ObsoleteAclTest.php b/dev/tests/static/testsuite/Magento/Test/Legacy/ObsoleteAclTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/ObsoleteCodeTest.php b/dev/tests/static/testsuite/Magento/Test/Legacy/ObsoleteCodeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/ObsoleteConnectionTest.php b/dev/tests/static/testsuite/Magento/Test/Legacy/ObsoleteConnectionTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/ObsoleteMenuTest.php b/dev/tests/static/testsuite/Magento/Test/Legacy/ObsoleteMenuTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/ObsoleteResponseTest.php b/dev/tests/static/testsuite/Magento/Test/Legacy/ObsoleteResponseTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/ObsoleteSystemConfigurationTest.php b/dev/tests/static/testsuite/Magento/Test/Legacy/ObsoleteSystemConfigurationTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/ObsoleteThemeLocalXmlTest.php b/dev/tests/static/testsuite/Magento/Test/Legacy/ObsoleteThemeLocalXmlTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/PhtmlTemplateTest.php b/dev/tests/static/testsuite/Magento/Test/Legacy/PhtmlTemplateTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/RestrictedCodeTest.php b/dev/tests/static/testsuite/Magento/Test/Legacy/RestrictedCodeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/TableTest.php b/dev/tests/static/testsuite/Magento/Test/Legacy/TableTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/UnsecureFunctionsUsageTest.php b/dev/tests/static/testsuite/Magento/Test/Legacy/UnsecureFunctionsUsageTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/WordsTest.php b/dev/tests/static/testsuite/Magento/Test/Legacy/WordsTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/_files/autogenerated_class_not_in_constructor_whitelist.php b/dev/tests/static/testsuite/Magento/Test/Legacy/_files/autogenerated_class_not_in_constructor_whitelist.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/_files/blacklist/obsolete_mage.php b/dev/tests/static/testsuite/Magento/Test/Legacy/_files/blacklist/obsolete_mage.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/_files/connection/blacklist/files_list.php b/dev/tests/static/testsuite/Magento/Test/Legacy/_files/connection/blacklist/files_list.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/_files/connection/whitelist/refactored_modules.php b/dev/tests/static/testsuite/Magento/Test/Legacy/_files/connection/whitelist/refactored_modules.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/_files/copyright/blacklist.php b/dev/tests/static/testsuite/Magento/Test/Legacy/_files/copyright/blacklist.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/_files/obsolete_config_nodes.php b/dev/tests/static/testsuite/Magento/Test/Legacy/_files/obsolete_config_nodes.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/_files/obsolete_constants.php b/dev/tests/static/testsuite/Magento/Test/Legacy/_files/obsolete_constants.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/_files/obsolete_methods.php b/dev/tests/static/testsuite/Magento/Test/Legacy/_files/obsolete_methods.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/_files/obsolete_namespaces.php b/dev/tests/static/testsuite/Magento/Test/Legacy/_files/obsolete_namespaces.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/_files/obsolete_paths.php b/dev/tests/static/testsuite/Magento/Test/Legacy/_files/obsolete_paths.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/_files/obsolete_properties.php b/dev/tests/static/testsuite/Magento/Test/Legacy/_files/obsolete_properties.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/_files/response/blacklist/files_list.php b/dev/tests/static/testsuite/Magento/Test/Legacy/_files/response/blacklist/files_list.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/_files/response/obsolete_response_methods.php b/dev/tests/static/testsuite/Magento/Test/Legacy/_files/response/obsolete_response_methods.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/_files/response/whitelist/refactored_modules.php b/dev/tests/static/testsuite/Magento/Test/Legacy/_files/response/whitelist/refactored_modules.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/_files/restricted_classes.php b/dev/tests/static/testsuite/Magento/Test/Legacy/_files/restricted_classes.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/_files/security/unsecure_php_functions.php b/dev/tests/static/testsuite/Magento/Test/Legacy/_files/security/unsecure_php_functions.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/_files/security/whitelist.txt b/dev/tests/static/testsuite/Magento/Test/Legacy/_files/security/whitelist.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Legacy/_files/words_ce.xml b/dev/tests/static/testsuite/Magento/Test/Legacy/_files/words_ce.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Less/LiveCodeTest.php b/dev/tests/static/testsuite/Magento/Test/Less/LiveCodeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Less/_files/blacklist/old.txt b/dev/tests/static/testsuite/Magento/Test/Less/_files/blacklist/old.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Less/_files/lesscs/ruleset.xml b/dev/tests/static/testsuite/Magento/Test/Less/_files/lesscs/ruleset.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Less/_files/whitelist/common.txt b/dev/tests/static/testsuite/Magento/Test/Less/_files/whitelist/common.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Php/LiveCodeTest.php b/dev/tests/static/testsuite/Magento/Test/Php/LiveCodeTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Php/XssPhtmlTemplateTest.php b/dev/tests/static/testsuite/Magento/Test/Php/XssPhtmlTemplateTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Php/_files/phpcpd/blacklist/common.txt b/dev/tests/static/testsuite/Magento/Test/Php/_files/phpcpd/blacklist/common.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Php/_files/phpmd/ruleset.xml b/dev/tests/static/testsuite/Magento/Test/Php/_files/phpmd/ruleset.xml
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Php/_files/whitelist/common.txt b/dev/tests/static/testsuite/Magento/Test/Php/_files/whitelist/common.txt
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Php/_files/whitelist/exempt_modules/ce.php b/dev/tests/static/testsuite/Magento/Test/Php/_files/whitelist/exempt_modules/ce.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/Tools/Composer/RootComposerMappingTest.php b/dev/tests/static/testsuite/Magento/Test/Tools/Composer/RootComposerMappingTest.php
old mode 100644
new mode 100755
diff --git a/dev/tests/static/testsuite/Magento/Test/_files/.gitignore b/dev/tests/static/testsuite/Magento/Test/_files/.gitignore
old mode 100644
new mode 100755
diff --git a/dev/tests/unit/.gitignore b/dev/tests/unit/.gitignore
old mode 100644
new mode 100755
diff --git a/dev/tests/unit/framework/autoload.php b/dev/tests/unit/framework/autoload.php
old mode 100644
new mode 100755
diff --git a/dev/tests/unit/framework/bootstrap.php b/dev/tests/unit/framework/bootstrap.php
old mode 100644
new mode 100755
diff --git a/dev/tests/unit/phpunit.xml.dist b/dev/tests/unit/phpunit.xml.dist
old mode 100644
new mode 100755
diff --git a/dev/tests/unit/tmp/.gitignore b/dev/tests/unit/tmp/.gitignore
old mode 100644
new mode 100755
diff --git a/dev/tools/Magento/Tools/Layout/processors/addItemRenderer.xsl b/dev/tools/Magento/Tools/Layout/processors/addItemRenderer.xsl
old mode 100644
new mode 100755
diff --git a/dev/tools/Magento/Tools/Layout/processors/addToParentGroup.xsl b/dev/tools/Magento/Tools/Layout/processors/addToParentGroup.xsl
old mode 100644
new mode 100755
diff --git a/dev/tools/Magento/Tools/Layout/processors/headBlocks.xsl b/dev/tools/Magento/Tools/Layout/processors/headBlocks.xsl
old mode 100644
new mode 100755
diff --git a/dev/tools/Magento/Tools/Layout/processors/layoutArguments.xsl b/dev/tools/Magento/Tools/Layout/processors/layoutArguments.xsl
old mode 100644
new mode 100755
diff --git a/dev/tools/Magento/Tools/Layout/processors/layoutGridContainer.xsl b/dev/tools/Magento/Tools/Layout/processors/layoutGridContainer.xsl
old mode 100644
new mode 100755
diff --git a/dev/tools/Magento/Tools/Layout/processors/layoutHandles.xsl b/dev/tools/Magento/Tools/Layout/processors/layoutHandles.xsl
old mode 100644
new mode 100755
diff --git a/dev/tools/Magento/Tools/Layout/processors/layoutLabels.xsl b/dev/tools/Magento/Tools/Layout/processors/layoutLabels.xsl
old mode 100644
new mode 100755
diff --git a/dev/tools/Magento/Tools/Layout/processors/layoutReferences.xsl b/dev/tools/Magento/Tools/Layout/processors/layoutReferences.xsl
old mode 100644
new mode 100755
diff --git a/dev/tools/Magento/Tools/Layout/processors/layoutTranslate.xsl b/dev/tools/Magento/Tools/Layout/processors/layoutTranslate.xsl
old mode 100644
new mode 100755
diff --git a/dev/tools/Magento/Tools/StaticReview/PhpCsFixerReview.php b/dev/tools/Magento/Tools/StaticReview/PhpCsFixerReview.php
old mode 100644
new mode 100755
diff --git a/dev/tools/bootstrap.php b/dev/tools/bootstrap.php
old mode 100644
new mode 100755
diff --git a/dev/tools/dynamicReturnTypeMeta.json b/dev/tools/dynamicReturnTypeMeta.json
old mode 100644
new mode 100755
diff --git a/dev/tools/grunt/assets/legacy-build/shim.js b/dev/tools/grunt/assets/legacy-build/shim.js
old mode 100644
new mode 100755
diff --git a/dev/tools/grunt/configs/autoprefixer.json b/dev/tools/grunt/configs/autoprefixer.json
old mode 100644
new mode 100755
diff --git a/dev/tools/grunt/configs/clean.js b/dev/tools/grunt/configs/clean.js
old mode 100644
new mode 100755
diff --git a/dev/tools/grunt/configs/combo.js b/dev/tools/grunt/configs/combo.js
old mode 100644
new mode 100755
diff --git a/dev/tools/grunt/configs/concat.json b/dev/tools/grunt/configs/concat.json
old mode 100644
new mode 100755
diff --git a/dev/tools/grunt/configs/cssmin.json b/dev/tools/grunt/configs/cssmin.json
old mode 100644
new mode 100755
diff --git a/dev/tools/grunt/configs/eslint.json b/dev/tools/grunt/configs/eslint.json
old mode 100644
new mode 100755
diff --git a/dev/tools/grunt/configs/exec.js b/dev/tools/grunt/configs/exec.js
old mode 100644
new mode 100755
diff --git a/dev/tools/grunt/configs/imagemin.js b/dev/tools/grunt/configs/imagemin.js
old mode 100644
new mode 100755
diff --git a/dev/tools/grunt/configs/jscs.json b/dev/tools/grunt/configs/jscs.json
old mode 100644
new mode 100755
diff --git a/dev/tools/grunt/configs/less.js b/dev/tools/grunt/configs/less.js
old mode 100644
new mode 100755
diff --git a/dev/tools/grunt/configs/mage-minify.json b/dev/tools/grunt/configs/mage-minify.json
old mode 100644
new mode 100755
diff --git a/dev/tools/grunt/configs/path.js b/dev/tools/grunt/configs/path.js
old mode 100644
new mode 100755
diff --git a/dev/tools/grunt/configs/replace.js b/dev/tools/grunt/configs/replace.js
old mode 100644
new mode 100755
diff --git a/dev/tools/grunt/configs/styledocco.json b/dev/tools/grunt/configs/styledocco.json
old mode 100644
new mode 100755
diff --git a/dev/tools/grunt/configs/themes.js b/dev/tools/grunt/configs/themes.js
old mode 100644
new mode 100755
diff --git a/dev/tools/grunt/configs/usebanner.js b/dev/tools/grunt/configs/usebanner.js
old mode 100644
new mode 100755
diff --git a/dev/tools/grunt/configs/watch.js b/dev/tools/grunt/configs/watch.js
old mode 100644
new mode 100755
diff --git a/dev/tools/grunt/tasks/black-list-generator.js b/dev/tools/grunt/tasks/black-list-generator.js
old mode 100644
new mode 100755
diff --git a/dev/tools/grunt/tasks/clean-black-list.js b/dev/tools/grunt/tasks/clean-black-list.js
old mode 100644
new mode 100755
diff --git a/dev/tools/grunt/tasks/deploy.js b/dev/tools/grunt/tasks/deploy.js
old mode 100644
new mode 100755
diff --git a/dev/tools/grunt/tasks/mage-minify.js b/dev/tools/grunt/tasks/mage-minify.js
old mode 100644
new mode 100755
diff --git a/dev/tools/grunt/tasks/static.js b/dev/tools/grunt/tasks/static.js
old mode 100644
new mode 100755
diff --git a/dev/tools/grunt/tools/collect-validation-files.js b/dev/tools/grunt/tools/collect-validation-files.js
old mode 100644
new mode 100755
diff --git a/dev/tools/grunt/tools/files-router.js b/dev/tools/grunt/tools/files-router.js
old mode 100644
new mode 100755
diff --git a/dev/tools/grunt/tools/fs-tools.js b/dev/tools/grunt/tools/fs-tools.js
old mode 100644
new mode 100755
diff --git a/dev/travis/config/apache_virtual_host b/dev/travis/config/apache_virtual_host
old mode 100644
new mode 100755
diff --git a/dev/travis/config/www.conf b/dev/travis/config/www.conf
old mode 100644
new mode 100755
diff --git a/generated/.htaccess b/generated/.htaccess
old mode 100644
new mode 100755
diff --git a/grunt-config.json.sample b/grunt-config.json.sample
old mode 100644
new mode 100755
diff --git a/index.php b/index.php
old mode 100644
new mode 100755
diff --git a/lib/.htaccess b/lib/.htaccess
old mode 100644
new mode 100755
diff --git a/lib/internal/LinLibertineFont/Bugs b/lib/internal/LinLibertineFont/Bugs
old mode 100644
new mode 100755
diff --git a/lib/internal/LinLibertineFont/ChangeLog.txt b/lib/internal/LinLibertineFont/ChangeLog.txt
old mode 100644
new mode 100755
diff --git a/lib/internal/LinLibertineFont/GPL.txt b/lib/internal/LinLibertineFont/GPL.txt
old mode 100644
new mode 100755
diff --git a/lib/internal/LinLibertineFont/LICENCE.txt b/lib/internal/LinLibertineFont/LICENCE.txt
old mode 100644
new mode 100755
diff --git a/lib/internal/LinLibertineFont/LinLibertineC_Re-2.8.0.ttf b/lib/internal/LinLibertineFont/LinLibertineC_Re-2.8.0.ttf
old mode 100644
new mode 100755
diff --git a/lib/internal/LinLibertineFont/LinLibertine_Bd-2.8.1.ttf b/lib/internal/LinLibertineFont/LinLibertine_Bd-2.8.1.ttf
old mode 100644
new mode 100755
diff --git a/lib/internal/LinLibertineFont/LinLibertine_It-2.8.2.ttf b/lib/internal/LinLibertineFont/LinLibertine_It-2.8.2.ttf
old mode 100644
new mode 100755
diff --git a/lib/internal/LinLibertineFont/LinLibertine_Re-4.4.1.ttf b/lib/internal/LinLibertineFont/LinLibertine_Re-4.4.1.ttf
old mode 100644
new mode 100755
diff --git a/lib/internal/LinLibertineFont/OFL.txt b/lib/internal/LinLibertineFont/OFL.txt
old mode 100644
new mode 100755
diff --git a/lib/internal/LinLibertineFont/Readme b/lib/internal/LinLibertineFont/Readme
old mode 100644
new mode 100755
diff --git a/lib/internal/LinLibertineFont/Readme-TEX.txt b/lib/internal/LinLibertineFont/Readme-TEX.txt
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Acl.php b/lib/internal/Magento/Framework/Acl.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Acl/AclResource.php b/lib/internal/Magento/Framework/Acl/AclResource.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Acl/AclResource/Config/Converter/Dom.php b/lib/internal/Magento/Framework/Acl/AclResource/Config/Converter/Dom.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Acl/AclResource/Config/Reader/Filesystem.php b/lib/internal/Magento/Framework/Acl/AclResource/Config/Reader/Filesystem.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Acl/AclResource/Config/SchemaLocator.php b/lib/internal/Magento/Framework/Acl/AclResource/Config/SchemaLocator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Acl/AclResource/Provider.php b/lib/internal/Magento/Framework/Acl/AclResource/Provider.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Acl/AclResource/ProviderInterface.php b/lib/internal/Magento/Framework/Acl/AclResource/ProviderInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Acl/AclResource/TreeBuilder.php b/lib/internal/Magento/Framework/Acl/AclResource/TreeBuilder.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Acl/AclResourceFactory.php b/lib/internal/Magento/Framework/Acl/AclResourceFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Acl/Builder.php b/lib/internal/Magento/Framework/Acl/Builder.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Acl/Data/Cache.php b/lib/internal/Magento/Framework/Acl/Data/Cache.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Acl/Data/CacheInterface.php b/lib/internal/Magento/Framework/Acl/Data/CacheInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Acl/Loader/DefaultLoader.php b/lib/internal/Magento/Framework/Acl/Loader/DefaultLoader.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Acl/Loader/ResourceLoader.php b/lib/internal/Magento/Framework/Acl/Loader/ResourceLoader.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Acl/LoaderInterface.php b/lib/internal/Magento/Framework/Acl/LoaderInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Acl/Role/Registry.php b/lib/internal/Magento/Framework/Acl/Role/Registry.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Acl/RootResource.php b/lib/internal/Magento/Framework/Acl/RootResource.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Acl/Test/Unit/AclResource/Config/Converter/DomTest.php b/lib/internal/Magento/Framework/Acl/Test/Unit/AclResource/Config/Converter/DomTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Acl/Test/Unit/AclResource/Config/Converter/_files/converted_valid_acl.php b/lib/internal/Magento/Framework/Acl/Test/Unit/AclResource/Config/Converter/_files/converted_valid_acl.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Acl/Test/Unit/AclResource/Config/Converter/_files/valid_acl.xml b/lib/internal/Magento/Framework/Acl/Test/Unit/AclResource/Config/Converter/_files/valid_acl.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Acl/Test/Unit/AclResource/Config/MergedXsdTest.php b/lib/internal/Magento/Framework/Acl/Test/Unit/AclResource/Config/MergedXsdTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Acl/Test/Unit/AclResource/Config/SchemaLocatorTest.php b/lib/internal/Magento/Framework/Acl/Test/Unit/AclResource/Config/SchemaLocatorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Acl/Test/Unit/AclResource/Config/XsdTest.php b/lib/internal/Magento/Framework/Acl/Test/Unit/AclResource/Config/XsdTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Acl/Test/Unit/AclResource/Config/_files/invalidAclXmlArray.php b/lib/internal/Magento/Framework/Acl/Test/Unit/AclResource/Config/_files/invalidAclXmlArray.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Acl/Test/Unit/AclResource/Config/_files/invalidMergedAclXmlArray.php b/lib/internal/Magento/Framework/Acl/Test/Unit/AclResource/Config/_files/invalidMergedAclXmlArray.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Acl/Test/Unit/AclResource/Config/_files/valid_acl.xml b/lib/internal/Magento/Framework/Acl/Test/Unit/AclResource/Config/_files/valid_acl.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Acl/Test/Unit/AclResource/Config/_files/valid_merged_acl.xml b/lib/internal/Magento/Framework/Acl/Test/Unit/AclResource/Config/_files/valid_merged_acl.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Acl/Test/Unit/AclResource/ProviderTest.php b/lib/internal/Magento/Framework/Acl/Test/Unit/AclResource/ProviderTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Acl/Test/Unit/AclResource/TreeBuilderTest.php b/lib/internal/Magento/Framework/Acl/Test/Unit/AclResource/TreeBuilderTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Acl/Test/Unit/BuilderTest.php b/lib/internal/Magento/Framework/Acl/Test/Unit/BuilderTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Acl/Test/Unit/Loader/DefaultTest.php b/lib/internal/Magento/Framework/Acl/Test/Unit/Loader/DefaultTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Acl/Test/Unit/Loader/ResourceLoaderTest.php b/lib/internal/Magento/Framework/Acl/Test/Unit/Loader/ResourceLoaderTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Acl/Test/Unit/ResourceFactoryTest.php b/lib/internal/Magento/Framework/Acl/Test/Unit/ResourceFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Acl/Test/Unit/Role/RegistryTest.php b/lib/internal/Magento/Framework/Acl/Test/Unit/Role/RegistryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Acl/Test/Unit/_files/resourceList.php b/lib/internal/Magento/Framework/Acl/Test/Unit/_files/resourceList.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Acl/Test/Unit/_files/result.php b/lib/internal/Magento/Framework/Acl/Test/Unit/_files/result.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Acl/etc/acl.xsd b/lib/internal/Magento/Framework/Acl/etc/acl.xsd
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Acl/etc/acl_merged.xsd b/lib/internal/Magento/Framework/Acl/etc/acl_merged.xsd
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/AclFactory.php b/lib/internal/Magento/Framework/AclFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/AbstractExtensibleObject.php b/lib/internal/Magento/Framework/Api/AbstractExtensibleObject.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/AbstractServiceCollection.php b/lib/internal/Magento/Framework/Api/AbstractServiceCollection.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/AbstractSimpleObject.php b/lib/internal/Magento/Framework/Api/AbstractSimpleObject.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/AbstractSimpleObjectBuilder.php b/lib/internal/Magento/Framework/Api/AbstractSimpleObjectBuilder.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/ArrayObjectSearch.php b/lib/internal/Magento/Framework/Api/ArrayObjectSearch.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/AttributeInterface.php b/lib/internal/Magento/Framework/Api/AttributeInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/AttributeMetadata.php b/lib/internal/Magento/Framework/Api/AttributeMetadata.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/AttributeTypeResolverInterface.php b/lib/internal/Magento/Framework/Api/AttributeTypeResolverInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/AttributeValue.php b/lib/internal/Magento/Framework/Api/AttributeValue.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/AttributeValueFactory.php b/lib/internal/Magento/Framework/Api/AttributeValueFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Code/Generator/ExtensionAttributesGenerator.php b/lib/internal/Magento/Framework/Api/Code/Generator/ExtensionAttributesGenerator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Code/Generator/ExtensionAttributesInterfaceFactoryGenerator.php b/lib/internal/Magento/Framework/Api/Code/Generator/ExtensionAttributesInterfaceFactoryGenerator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Code/Generator/ExtensionAttributesInterfaceGenerator.php b/lib/internal/Magento/Framework/Api/Code/Generator/ExtensionAttributesInterfaceGenerator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Code/Generator/Mapper.php b/lib/internal/Magento/Framework/Api/Code/Generator/Mapper.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Code/Generator/SearchResults.php b/lib/internal/Magento/Framework/Api/Code/Generator/SearchResults.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/CriteriaInterface.php b/lib/internal/Magento/Framework/Api/CriteriaInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/CustomAttributesDataInterface.php b/lib/internal/Magento/Framework/Api/CustomAttributesDataInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Data/ImageContentInterface.php b/lib/internal/Magento/Framework/Api/Data/ImageContentInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Data/VideoContentInterface.php b/lib/internal/Magento/Framework/Api/Data/VideoContentInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/DataObjectHelper.php b/lib/internal/Magento/Framework/Api/DataObjectHelper.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/DefaultMetadataService.php b/lib/internal/Magento/Framework/Api/DefaultMetadataService.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/ExtensibleDataInterface.php b/lib/internal/Magento/Framework/Api/ExtensibleDataInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/ExtensibleDataObjectConverter.php b/lib/internal/Magento/Framework/Api/ExtensibleDataObjectConverter.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/ExtensionAttribute/Config.php b/lib/internal/Magento/Framework/Api/ExtensionAttribute/Config.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/ExtensionAttribute/Config/Converter.php b/lib/internal/Magento/Framework/Api/ExtensionAttribute/Config/Converter.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/ExtensionAttribute/Config/Reader.php b/lib/internal/Magento/Framework/Api/ExtensionAttribute/Config/Reader.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/ExtensionAttribute/Config/SchemaLocator.php b/lib/internal/Magento/Framework/Api/ExtensionAttribute/Config/SchemaLocator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/ExtensionAttribute/JoinData.php b/lib/internal/Magento/Framework/Api/ExtensionAttribute/JoinData.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/ExtensionAttribute/JoinDataInterface.php b/lib/internal/Magento/Framework/Api/ExtensionAttribute/JoinDataInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/ExtensionAttribute/JoinDataInterfaceFactory.php b/lib/internal/Magento/Framework/Api/ExtensionAttribute/JoinDataInterfaceFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/ExtensionAttribute/JoinProcessor.php b/lib/internal/Magento/Framework/Api/ExtensionAttribute/JoinProcessor.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/ExtensionAttribute/JoinProcessorHelper.php b/lib/internal/Magento/Framework/Api/ExtensionAttribute/JoinProcessorHelper.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/ExtensionAttribute/JoinProcessorInterface.php b/lib/internal/Magento/Framework/Api/ExtensionAttribute/JoinProcessorInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/ExtensionAttributesFactory.php b/lib/internal/Magento/Framework/Api/ExtensionAttributesFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/ExtensionAttributesInterface.php b/lib/internal/Magento/Framework/Api/ExtensionAttributesInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Filter.php b/lib/internal/Magento/Framework/Api/Filter.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/FilterBuilder.php b/lib/internal/Magento/Framework/Api/FilterBuilder.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/ImageContent.php b/lib/internal/Magento/Framework/Api/ImageContent.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/ImageContentValidator.php b/lib/internal/Magento/Framework/Api/ImageContentValidator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/ImageContentValidatorInterface.php b/lib/internal/Magento/Framework/Api/ImageContentValidatorInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/ImageProcessor.php b/lib/internal/Magento/Framework/Api/ImageProcessor.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/ImageProcessorInterface.php b/lib/internal/Magento/Framework/Api/ImageProcessorInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/MetadataObjectInterface.php b/lib/internal/Magento/Framework/Api/MetadataObjectInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/MetadataServiceInterface.php b/lib/internal/Magento/Framework/Api/MetadataServiceInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/ObjectFactory.php b/lib/internal/Magento/Framework/Api/ObjectFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Search/AggregationInterface.php b/lib/internal/Magento/Framework/Api/Search/AggregationInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Search/AggregationValueInterface.php b/lib/internal/Magento/Framework/Api/Search/AggregationValueInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Search/BucketInterface.php b/lib/internal/Magento/Framework/Api/Search/BucketInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Search/Document.php b/lib/internal/Magento/Framework/Api/Search/Document.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Search/DocumentFactory.php b/lib/internal/Magento/Framework/Api/Search/DocumentFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Search/DocumentInterface.php b/lib/internal/Magento/Framework/Api/Search/DocumentInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Search/FilterGroup.php b/lib/internal/Magento/Framework/Api/Search/FilterGroup.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Search/FilterGroupBuilder.php b/lib/internal/Magento/Framework/Api/Search/FilterGroupBuilder.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Search/ReportingInterface.php b/lib/internal/Magento/Framework/Api/Search/ReportingInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Search/SearchCriteria.php b/lib/internal/Magento/Framework/Api/Search/SearchCriteria.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Search/SearchCriteriaBuilder.php b/lib/internal/Magento/Framework/Api/Search/SearchCriteriaBuilder.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Search/SearchCriteriaFactory.php b/lib/internal/Magento/Framework/Api/Search/SearchCriteriaFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Search/SearchCriteriaInterface.php b/lib/internal/Magento/Framework/Api/Search/SearchCriteriaInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Search/SearchInterface.php b/lib/internal/Magento/Framework/Api/Search/SearchInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Search/SearchResult.php b/lib/internal/Magento/Framework/Api/Search/SearchResult.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Search/SearchResultFactory.php b/lib/internal/Magento/Framework/Api/Search/SearchResultFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Search/SearchResultInterface.php b/lib/internal/Magento/Framework/Api/Search/SearchResultInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/SearchCriteria.php b/lib/internal/Magento/Framework/Api/SearchCriteria.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/SearchCriteria/CollectionProcessor.php b/lib/internal/Magento/Framework/Api/SearchCriteria/CollectionProcessor.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/SearchCriteria/CollectionProcessor/FilterProcessor.php b/lib/internal/Magento/Framework/Api/SearchCriteria/CollectionProcessor/FilterProcessor.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/SearchCriteria/CollectionProcessor/FilterProcessor/CustomFilterInterface.php b/lib/internal/Magento/Framework/Api/SearchCriteria/CollectionProcessor/FilterProcessor/CustomFilterInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/SearchCriteria/CollectionProcessor/JoinProcessor.php b/lib/internal/Magento/Framework/Api/SearchCriteria/CollectionProcessor/JoinProcessor.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/SearchCriteria/CollectionProcessor/JoinProcessor/CustomJoinInterface.php b/lib/internal/Magento/Framework/Api/SearchCriteria/CollectionProcessor/JoinProcessor/CustomJoinInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/SearchCriteria/CollectionProcessor/PaginationProcessor.php b/lib/internal/Magento/Framework/Api/SearchCriteria/CollectionProcessor/PaginationProcessor.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/SearchCriteria/CollectionProcessor/SortingProcessor.php b/lib/internal/Magento/Framework/Api/SearchCriteria/CollectionProcessor/SortingProcessor.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/SearchCriteria/CollectionProcessorInterface.php b/lib/internal/Magento/Framework/Api/SearchCriteria/CollectionProcessorInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/SearchCriteriaBuilder.php b/lib/internal/Magento/Framework/Api/SearchCriteriaBuilder.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/SearchCriteriaInterface.php b/lib/internal/Magento/Framework/Api/SearchCriteriaInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/SearchResults.php b/lib/internal/Magento/Framework/Api/SearchResults.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/SearchResultsInterface.php b/lib/internal/Magento/Framework/Api/SearchResultsInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/SimpleBuilderInterface.php b/lib/internal/Magento/Framework/Api/SimpleBuilderInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/SimpleDataObjectConverter.php b/lib/internal/Magento/Framework/Api/SimpleDataObjectConverter.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/SortOrder.php b/lib/internal/Magento/Framework/Api/SortOrder.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/SortOrderBuilder.php b/lib/internal/Magento/Framework/Api/SortOrderBuilder.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Test/Unit/Api/ImageContentValidatorTest.php b/lib/internal/Magento/Framework/Api/Test/Unit/Api/ImageContentValidatorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Test/Unit/Api/ImageProcessorTest.php b/lib/internal/Magento/Framework/Api/Test/Unit/Api/ImageProcessorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Test/Unit/Api/_files/image.jpg b/lib/internal/Magento/Framework/Api/Test/Unit/Api/_files/image.jpg
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Test/Unit/Code/Generator/EntityChildTestAbstract.php b/lib/internal/Magento/Framework/Api/Test/Unit/Code/Generator/EntityChildTestAbstract.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Test/Unit/Code/Generator/ExtensibleSample.php b/lib/internal/Magento/Framework/Api/Test/Unit/Code/Generator/ExtensibleSample.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Test/Unit/Code/Generator/ExtensibleSampleInterface.php b/lib/internal/Magento/Framework/Api/Test/Unit/Code/Generator/ExtensibleSampleInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Test/Unit/Code/Generator/ExtensionAttributesGeneratorTest.php b/lib/internal/Magento/Framework/Api/Test/Unit/Code/Generator/ExtensionAttributesGeneratorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Test/Unit/Code/Generator/ExtensionAttributesInterfaceGeneratorTest.php b/lib/internal/Magento/Framework/Api/Test/Unit/Code/Generator/ExtensionAttributesInterfaceGeneratorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Test/Unit/Code/Generator/GenerateMapperTest.php b/lib/internal/Magento/Framework/Api/Test/Unit/Code/Generator/GenerateMapperTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Test/Unit/Code/Generator/GenerateSearchResultsTest.php b/lib/internal/Magento/Framework/Api/Test/Unit/Code/Generator/GenerateSearchResultsTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Test/Unit/Code/Generator/Sample.php b/lib/internal/Magento/Framework/Api/Test/Unit/Code/Generator/Sample.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Test/Unit/Code/Generator/_files/SampleEmptyExtension.txt b/lib/internal/Magento/Framework/Api/Test/Unit/Code/Generator/_files/SampleEmptyExtension.txt
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Test/Unit/Code/Generator/_files/SampleExtension.txt b/lib/internal/Magento/Framework/Api/Test/Unit/Code/Generator/_files/SampleExtension.txt
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Test/Unit/Code/Generator/_files/SampleExtensionInterface.txt b/lib/internal/Magento/Framework/Api/Test/Unit/Code/Generator/_files/SampleExtensionInterface.txt
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Test/Unit/Code/Generator/_files/SampleMapper.txt b/lib/internal/Magento/Framework/Api/Test/Unit/Code/Generator/_files/SampleMapper.txt
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Test/Unit/Code/Generator/_files/SampleSearchResults.txt b/lib/internal/Magento/Framework/Api/Test/Unit/Code/Generator/_files/SampleSearchResults.txt
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Test/Unit/Data/AttributeValueTest.php b/lib/internal/Magento/Framework/Api/Test/Unit/Data/AttributeValueTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Test/Unit/DataObjectHelperTest.php b/lib/internal/Magento/Framework/Api/Test/Unit/DataObjectHelperTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Test/Unit/ExtensibleDataObjectConverterTest.php b/lib/internal/Magento/Framework/Api/Test/Unit/ExtensibleDataObjectConverterTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Test/Unit/ExtensionAttribute/Config/ConverterTest.php b/lib/internal/Magento/Framework/Api/Test/Unit/ExtensionAttribute/Config/ConverterTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Test/Unit/ExtensionAttribute/Config/ReaderTest.php b/lib/internal/Magento/Framework/Api/Test/Unit/ExtensionAttribute/Config/ReaderTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Test/Unit/ExtensionAttribute/Config/SchemaLocatorTest.php b/lib/internal/Magento/Framework/Api/Test/Unit/ExtensionAttribute/Config/SchemaLocatorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Test/Unit/ExtensionAttribute/Config/XsdTest.php b/lib/internal/Magento/Framework/Api/Test/Unit/ExtensionAttribute/Config/XsdTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Test/Unit/ExtensionAttribute/Config/_files/extension_attributes.xml b/lib/internal/Magento/Framework/Api/Test/Unit/ExtensionAttribute/Config/_files/extension_attributes.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Test/Unit/ExtensionAttribute/Config/_files/extension_attributes_with_join_directives.xml b/lib/internal/Magento/Framework/Api/Test/Unit/ExtensionAttribute/Config/_files/extension_attributes_with_join_directives.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Test/Unit/Search/SearchResultTest.php b/lib/internal/Magento/Framework/Api/Test/Unit/Search/SearchResultTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Test/Unit/SearchCriteria/CollectionProcessor/FilterProcessorTest.php b/lib/internal/Magento/Framework/Api/Test/Unit/SearchCriteria/CollectionProcessor/FilterProcessorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Test/Unit/SearchCriteria/CollectionProcessor/JoinProcessorTest.php b/lib/internal/Magento/Framework/Api/Test/Unit/SearchCriteria/CollectionProcessor/JoinProcessorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Test/Unit/SearchCriteria/CollectionProcessor/PaginationProcessorTest.php b/lib/internal/Magento/Framework/Api/Test/Unit/SearchCriteria/CollectionProcessor/PaginationProcessorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Test/Unit/SearchCriteria/CollectionProcessor/SortingProcessorTest.php b/lib/internal/Magento/Framework/Api/Test/Unit/SearchCriteria/CollectionProcessor/SortingProcessorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Test/Unit/SearchCriteria/CollectionProcessorTest.php b/lib/internal/Magento/Framework/Api/Test/Unit/SearchCriteria/CollectionProcessorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Test/Unit/SortOrderTest.php b/lib/internal/Magento/Framework/Api/Test/Unit/SortOrderTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Test/Unit/StubAbstractSimpleObject.php b/lib/internal/Magento/Framework/Api/Test/Unit/StubAbstractSimpleObject.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/Uploader.php b/lib/internal/Magento/Framework/Api/Uploader.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Api/etc/extension_attributes.xsd b/lib/internal/Magento/Framework/Api/etc/extension_attributes.xsd
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Action/AbstractAction.php b/lib/internal/Magento/Framework/App/Action/AbstractAction.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Action/Action.php b/lib/internal/Magento/Framework/App/Action/Action.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Action/Context.php b/lib/internal/Magento/Framework/App/Action/Context.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Action/Forward.php b/lib/internal/Magento/Framework/App/Action/Forward.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Action/Plugin/Design.php b/lib/internal/Magento/Framework/App/Action/Plugin/Design.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Action/Redirect.php b/lib/internal/Magento/Framework/App/Action/Redirect.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/ActionFactory.php b/lib/internal/Magento/Framework/App/ActionFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/ActionFlag.php b/lib/internal/Magento/Framework/App/ActionFlag.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/ActionInterface.php b/lib/internal/Magento/Framework/App/ActionInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Area.php b/lib/internal/Magento/Framework/App/Area.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Area/FrontNameResolverFactory.php b/lib/internal/Magento/Framework/App/Area/FrontNameResolverFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Area/FrontNameResolverInterface.php b/lib/internal/Magento/Framework/App/Area/FrontNameResolverInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/AreaInterface.php b/lib/internal/Magento/Framework/App/AreaInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/AreaList.php b/lib/internal/Magento/Framework/App/AreaList.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/AreaList/Proxy.php b/lib/internal/Magento/Framework/App/AreaList/Proxy.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Arguments/ArgumentInterpreter.php b/lib/internal/Magento/Framework/App/Arguments/ArgumentInterpreter.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Arguments/FileResolver/Primary.php b/lib/internal/Magento/Framework/App/Arguments/FileResolver/Primary.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Arguments/ValidationState.php b/lib/internal/Magento/Framework/App/Arguments/ValidationState.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Bootstrap.php b/lib/internal/Magento/Framework/App/Bootstrap.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Cache.php b/lib/internal/Magento/Framework/App/Cache.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Cache/FlushCacheByTags.php b/lib/internal/Magento/Framework/App/Cache/FlushCacheByTags.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Cache/Frontend/Factory.php b/lib/internal/Magento/Framework/App/Cache/Frontend/Factory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Cache/Frontend/Pool.php b/lib/internal/Magento/Framework/App/Cache/Frontend/Pool.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Cache/InstanceFactory.php b/lib/internal/Magento/Framework/App/Cache/InstanceFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Cache/Manager.php b/lib/internal/Magento/Framework/App/Cache/Manager.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Cache/Proxy.php b/lib/internal/Magento/Framework/App/Cache/Proxy.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Cache/README.md b/lib/internal/Magento/Framework/App/Cache/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Cache/State.php b/lib/internal/Magento/Framework/App/Cache/State.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Cache/StateInterface.php b/lib/internal/Magento/Framework/App/Cache/StateInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Cache/Tag/Resolver.php b/lib/internal/Magento/Framework/App/Cache/Tag/Resolver.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Cache/Tag/Strategy/Dummy.php b/lib/internal/Magento/Framework/App/Cache/Tag/Strategy/Dummy.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Cache/Tag/Strategy/Factory.php b/lib/internal/Magento/Framework/App/Cache/Tag/Strategy/Factory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Cache/Tag/Strategy/Identifier.php b/lib/internal/Magento/Framework/App/Cache/Tag/Strategy/Identifier.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Cache/Tag/StrategyInterface.php b/lib/internal/Magento/Framework/App/Cache/Tag/StrategyInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Cache/Type/AccessProxy.php b/lib/internal/Magento/Framework/App/Cache/Type/AccessProxy.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Cache/Type/Block.php b/lib/internal/Magento/Framework/App/Cache/Type/Block.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Cache/Type/Collection.php b/lib/internal/Magento/Framework/App/Cache/Type/Collection.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Cache/Type/Config.php b/lib/internal/Magento/Framework/App/Cache/Type/Config.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Cache/Type/Dummy.php b/lib/internal/Magento/Framework/App/Cache/Type/Dummy.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Cache/Type/FrontendPool.php b/lib/internal/Magento/Framework/App/Cache/Type/FrontendPool.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Cache/Type/Layout.php b/lib/internal/Magento/Framework/App/Cache/Type/Layout.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Cache/Type/Reflection.php b/lib/internal/Magento/Framework/App/Cache/Type/Reflection.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Cache/Type/Translate.php b/lib/internal/Magento/Framework/App/Cache/Type/Translate.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Cache/TypeList.php b/lib/internal/Magento/Framework/App/Cache/TypeList.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Cache/TypeListInterface.php b/lib/internal/Magento/Framework/App/Cache/TypeListInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/CacheInterface.php b/lib/internal/Magento/Framework/App/CacheInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Config.php b/lib/internal/Magento/Framework/App/Config.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Config/Base.php b/lib/internal/Magento/Framework/App/Config/Base.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Config/BaseFactory.php b/lib/internal/Magento/Framework/App/Config/BaseFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Config/CommentInterface.php b/lib/internal/Magento/Framework/App/Config/CommentInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Config/CommentParserInterface.php b/lib/internal/Magento/Framework/App/Config/CommentParserInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Config/ConfigPathResolver.php b/lib/internal/Magento/Framework/App/Config/ConfigPathResolver.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Config/ConfigResource/ConfigInterface.php b/lib/internal/Magento/Framework/App/Config/ConfigResource/ConfigInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Config/ConfigSourceAggregated.php b/lib/internal/Magento/Framework/App/Config/ConfigSourceAggregated.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Config/ConfigSourceInterface.php b/lib/internal/Magento/Framework/App/Config/ConfigSourceInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Config/ConfigTypeInterface.php b/lib/internal/Magento/Framework/App/Config/ConfigTypeInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Config/Data.php b/lib/internal/Magento/Framework/App/Config/Data.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Config/Data/ProcessorFactory.php b/lib/internal/Magento/Framework/App/Config/Data/ProcessorFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Config/Data/ProcessorInterface.php b/lib/internal/Magento/Framework/App/Config/Data/ProcessorInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Config/DataFactory.php b/lib/internal/Magento/Framework/App/Config/DataFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Config/DataInterface.php b/lib/internal/Magento/Framework/App/Config/DataInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Config/Element.php b/lib/internal/Magento/Framework/App/Config/Element.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Config/FileResolver.php b/lib/internal/Magento/Framework/App/Config/FileResolver.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Config/Initial.php b/lib/internal/Magento/Framework/App/Config/Initial.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Config/Initial/Converter.php b/lib/internal/Magento/Framework/App/Config/Initial/Converter.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Config/Initial/Reader.php b/lib/internal/Magento/Framework/App/Config/Initial/Reader.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Config/Initial/SchemaLocator.php b/lib/internal/Magento/Framework/App/Config/Initial/SchemaLocator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Config/InitialConfigSource.php b/lib/internal/Magento/Framework/App/Config/InitialConfigSource.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Config/MetadataConfigTypeProcessor.php b/lib/internal/Magento/Framework/App/Config/MetadataConfigTypeProcessor.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Config/MetadataProcessor.php b/lib/internal/Magento/Framework/App/Config/MetadataProcessor.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Config/MutableScopeConfigInterface.php b/lib/internal/Magento/Framework/App/Config/MutableScopeConfigInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Config/PostProcessorComposite.php b/lib/internal/Magento/Framework/App/Config/PostProcessorComposite.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Config/PreProcessorComposite.php b/lib/internal/Magento/Framework/App/Config/PreProcessorComposite.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Config/Reader/Source/SourceInterface.php b/lib/internal/Magento/Framework/App/Config/Reader/Source/SourceInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Config/ReinitableConfigInterface.php b/lib/internal/Magento/Framework/App/Config/ReinitableConfigInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Config/Scope/Converter.php b/lib/internal/Magento/Framework/App/Config/Scope/Converter.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Config/Scope/ReaderInterface.php b/lib/internal/Magento/Framework/App/Config/Scope/ReaderInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Config/Scope/Validator.php b/lib/internal/Magento/Framework/App/Config/Scope/Validator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Config/ScopeCodeResolver.php b/lib/internal/Magento/Framework/App/Config/ScopeCodeResolver.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Config/ScopeConfigInterface.php b/lib/internal/Magento/Framework/App/Config/ScopeConfigInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Config/Spi/PostProcessorInterface.php b/lib/internal/Magento/Framework/App/Config/Spi/PostProcessorInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Config/Spi/PreProcessorInterface.php b/lib/internal/Magento/Framework/App/Config/Spi/PreProcessorInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Config/Storage/Writer.php b/lib/internal/Magento/Framework/App/Config/Storage/Writer.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Config/Storage/WriterInterface.php b/lib/internal/Magento/Framework/App/Config/Storage/WriterInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Config/Value.php b/lib/internal/Magento/Framework/App/Config/Value.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Config/ValueFactory.php b/lib/internal/Magento/Framework/App/Config/ValueFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Config/ValueInterface.php b/lib/internal/Magento/Framework/App/Config/ValueInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Console/MaintenanceModeEnabler.php b/lib/internal/Magento/Framework/App/Console/MaintenanceModeEnabler.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Console/Request.php b/lib/internal/Magento/Framework/App/Console/Request.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Console/Response.php b/lib/internal/Magento/Framework/App/Console/Response.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Cron.php b/lib/internal/Magento/Framework/App/Cron.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/DefaultPath/DefaultPath.php b/lib/internal/Magento/Framework/App/DefaultPath/DefaultPath.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/DefaultPathInterface.php b/lib/internal/Magento/Framework/App/DefaultPathInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/DeploymentConfig.php b/lib/internal/Magento/Framework/App/DeploymentConfig.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/DeploymentConfig/CommentParser.php b/lib/internal/Magento/Framework/App/DeploymentConfig/CommentParser.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/DeploymentConfig/FileReader.php b/lib/internal/Magento/Framework/App/DeploymentConfig/FileReader.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/DeploymentConfig/ImporterInterface.php b/lib/internal/Magento/Framework/App/DeploymentConfig/ImporterInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/DeploymentConfig/Reader.php b/lib/internal/Magento/Framework/App/DeploymentConfig/Reader.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/DeploymentConfig/ValidatorInterface.php b/lib/internal/Magento/Framework/App/DeploymentConfig/ValidatorInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/DeploymentConfig/Writer.php b/lib/internal/Magento/Framework/App/DeploymentConfig/Writer.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/DeploymentConfig/Writer/FormatterInterface.php b/lib/internal/Magento/Framework/App/DeploymentConfig/Writer/FormatterInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/DeploymentConfig/Writer/PhpFormatter.php b/lib/internal/Magento/Framework/App/DeploymentConfig/Writer/PhpFormatter.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/DesignInterface.php b/lib/internal/Magento/Framework/App/DesignInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/DocRootLocator.php b/lib/internal/Magento/Framework/App/DocRootLocator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/EnvironmentFactory.php b/lib/internal/Magento/Framework/App/EnvironmentFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/EnvironmentInterface.php b/lib/internal/Magento/Framework/App/EnvironmentInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/ErrorHandler.php b/lib/internal/Magento/Framework/App/ErrorHandler.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Filesystem/DirectoryList.php b/lib/internal/Magento/Framework/App/Filesystem/DirectoryList.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Filesystem/README.md b/lib/internal/Magento/Framework/App/Filesystem/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/FrontController.php b/lib/internal/Magento/Framework/App/FrontController.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/FrontControllerInterface.php b/lib/internal/Magento/Framework/App/FrontControllerInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Helper/AbstractHelper.php b/lib/internal/Magento/Framework/App/Helper/AbstractHelper.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Helper/Context.php b/lib/internal/Magento/Framework/App/Helper/Context.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Http.php b/lib/internal/Magento/Framework/App/Http.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Http/Context.php b/lib/internal/Magento/Framework/App/Http/Context.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Interception/Cache/CompiledConfig.php b/lib/internal/Magento/Framework/App/Interception/Cache/CompiledConfig.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Language/Config.php b/lib/internal/Magento/Framework/App/Language/Config.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Language/ConfigFactory.php b/lib/internal/Magento/Framework/App/Language/ConfigFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Language/Dictionary.php b/lib/internal/Magento/Framework/App/Language/Dictionary.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Language/package.xsd b/lib/internal/Magento/Framework/App/Language/package.xsd
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/MaintenanceMode.php b/lib/internal/Magento/Framework/App/MaintenanceMode.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/MutableScopeConfig.php b/lib/internal/Magento/Framework/App/MutableScopeConfig.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/ObjectManager.php b/lib/internal/Magento/Framework/App/ObjectManager.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/ObjectManager/ConfigCache.php b/lib/internal/Magento/Framework/App/ObjectManager/ConfigCache.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/ObjectManager/ConfigLoader.php b/lib/internal/Magento/Framework/App/ObjectManager/ConfigLoader.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/ObjectManager/ConfigLoader/Compiled.php b/lib/internal/Magento/Framework/App/ObjectManager/ConfigLoader/Compiled.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/ObjectManager/Environment/AbstractEnvironment.php b/lib/internal/Magento/Framework/App/ObjectManager/Environment/AbstractEnvironment.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/ObjectManager/Environment/Compiled.php b/lib/internal/Magento/Framework/App/ObjectManager/Environment/Compiled.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/ObjectManager/Environment/Developer.php b/lib/internal/Magento/Framework/App/ObjectManager/Environment/Developer.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/ObjectManagerFactory.php b/lib/internal/Magento/Framework/App/ObjectManagerFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/PageCache/Cache.php b/lib/internal/Magento/Framework/App/PageCache/Cache.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/PageCache/FormKey.php b/lib/internal/Magento/Framework/App/PageCache/FormKey.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/PageCache/Identifier.php b/lib/internal/Magento/Framework/App/PageCache/Identifier.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/PageCache/Kernel.php b/lib/internal/Magento/Framework/App/PageCache/Kernel.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/PageCache/NotCacheableInterface.php b/lib/internal/Magento/Framework/App/PageCache/NotCacheableInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/PageCache/README.md b/lib/internal/Magento/Framework/App/PageCache/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/PageCache/Version.php b/lib/internal/Magento/Framework/App/PageCache/Version.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/PlainTextRequestInterface.php b/lib/internal/Magento/Framework/App/PlainTextRequestInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/ProductMetadata.php b/lib/internal/Magento/Framework/App/ProductMetadata.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/ProductMetadataInterface.php b/lib/internal/Magento/Framework/App/ProductMetadataInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/README.md b/lib/internal/Magento/Framework/App/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/ReinitableConfig.php b/lib/internal/Magento/Framework/App/ReinitableConfig.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Request/DataPersistor.php b/lib/internal/Magento/Framework/App/Request/DataPersistor.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Request/DataPersistorInterface.php b/lib/internal/Magento/Framework/App/Request/DataPersistorInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Request/Http.php b/lib/internal/Magento/Framework/App/Request/Http.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Request/PathInfoProcessorInterface.php b/lib/internal/Magento/Framework/App/Request/PathInfoProcessorInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/RequestContentInterface.php b/lib/internal/Magento/Framework/App/RequestContentInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/RequestFactory.php b/lib/internal/Magento/Framework/App/RequestFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/RequestInterface.php b/lib/internal/Magento/Framework/App/RequestInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/RequestSafetyInterface.php b/lib/internal/Magento/Framework/App/RequestSafetyInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/ResourceConnection.php b/lib/internal/Magento/Framework/App/ResourceConnection.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/ResourceConnection/Config.php b/lib/internal/Magento/Framework/App/ResourceConnection/Config.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/ResourceConnection/Config/Converter.php b/lib/internal/Magento/Framework/App/ResourceConnection/Config/Converter.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/ResourceConnection/Config/Reader.php b/lib/internal/Magento/Framework/App/ResourceConnection/Config/Reader.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/ResourceConnection/Config/SchemaLocator.php b/lib/internal/Magento/Framework/App/ResourceConnection/Config/SchemaLocator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/ResourceConnection/ConfigInterface.php b/lib/internal/Magento/Framework/App/ResourceConnection/ConfigInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/ResourceConnection/ConnectionAdapterInterface.php b/lib/internal/Magento/Framework/App/ResourceConnection/ConnectionAdapterInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/ResourceConnection/ConnectionFactory.php b/lib/internal/Magento/Framework/App/ResourceConnection/ConnectionFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/ResourceConnection/SourceFactory.php b/lib/internal/Magento/Framework/App/ResourceConnection/SourceFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/ResourceConnection/SourceProviderInterface.php b/lib/internal/Magento/Framework/App/ResourceConnection/SourceProviderInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Response/FileInterface.php b/lib/internal/Magento/Framework/App/Response/FileInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Response/HeaderManager.php b/lib/internal/Magento/Framework/App/Response/HeaderManager.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Response/HeaderProvider/AbstractHeaderProvider.php b/lib/internal/Magento/Framework/App/Response/HeaderProvider/AbstractHeaderProvider.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Response/HeaderProvider/HeaderProviderInterface.php b/lib/internal/Magento/Framework/App/Response/HeaderProvider/HeaderProviderInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Response/HeaderProvider/XContentTypeOptions.php b/lib/internal/Magento/Framework/App/Response/HeaderProvider/XContentTypeOptions.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Response/HeaderProvider/XFrameOptions.php b/lib/internal/Magento/Framework/App/Response/HeaderProvider/XFrameOptions.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Response/HeaderProvider/XssProtection.php b/lib/internal/Magento/Framework/App/Response/HeaderProvider/XssProtection.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Response/Http.php b/lib/internal/Magento/Framework/App/Response/Http.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Response/Http/FileFactory.php b/lib/internal/Magento/Framework/App/Response/Http/FileFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Response/HttpInterface.php b/lib/internal/Magento/Framework/App/Response/HttpInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Response/RedirectInterface.php b/lib/internal/Magento/Framework/App/Response/RedirectInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/ResponseFactory.php b/lib/internal/Magento/Framework/App/ResponseFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/ResponseInterface.php b/lib/internal/Magento/Framework/App/ResponseInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Route/Config.php b/lib/internal/Magento/Framework/App/Route/Config.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Route/Config/Converter.php b/lib/internal/Magento/Framework/App/Route/Config/Converter.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Route/Config/Reader.php b/lib/internal/Magento/Framework/App/Route/Config/Reader.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Route/Config/SchemaLocator.php b/lib/internal/Magento/Framework/App/Route/Config/SchemaLocator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Route/ConfigInterface.php b/lib/internal/Magento/Framework/App/Route/ConfigInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Route/ConfigInterface/Proxy.php b/lib/internal/Magento/Framework/App/Route/ConfigInterface/Proxy.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Router/ActionList.php b/lib/internal/Magento/Framework/App/Router/ActionList.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Router/Base.php b/lib/internal/Magento/Framework/App/Router/Base.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Router/DefaultRouter.php b/lib/internal/Magento/Framework/App/Router/DefaultRouter.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Router/NoRouteHandler.php b/lib/internal/Magento/Framework/App/Router/NoRouteHandler.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Router/NoRouteHandlerInterface.php b/lib/internal/Magento/Framework/App/Router/NoRouteHandlerInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Router/NoRouteHandlerList.php b/lib/internal/Magento/Framework/App/Router/NoRouteHandlerList.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Router/PathConfigInterface.php b/lib/internal/Magento/Framework/App/Router/PathConfigInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/RouterInterface.php b/lib/internal/Magento/Framework/App/RouterInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/RouterList.php b/lib/internal/Magento/Framework/App/RouterList.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/RouterListInterface.php b/lib/internal/Magento/Framework/App/RouterListInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Rss/DataProviderInterface.php b/lib/internal/Magento/Framework/App/Rss/DataProviderInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Rss/RssManagerInterface.php b/lib/internal/Magento/Framework/App/Rss/RssManagerInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Rss/UrlBuilder.php b/lib/internal/Magento/Framework/App/Rss/UrlBuilder.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Rss/UrlBuilderInterface.php b/lib/internal/Magento/Framework/App/Rss/UrlBuilderInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Scope/Source.php b/lib/internal/Magento/Framework/App/Scope/Source.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Scope/Validator.php b/lib/internal/Magento/Framework/App/Scope/Validator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Scope/ValidatorInterface.php b/lib/internal/Magento/Framework/App/Scope/ValidatorInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/ScopeDefault.php b/lib/internal/Magento/Framework/App/ScopeDefault.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/ScopeFallbackResolverInterface.php b/lib/internal/Magento/Framework/App/ScopeFallbackResolverInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/ScopeInterface.php b/lib/internal/Magento/Framework/App/ScopeInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/ScopeResolver.php b/lib/internal/Magento/Framework/App/ScopeResolver.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/ScopeResolverInterface.php b/lib/internal/Magento/Framework/App/ScopeResolverInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/ScopeResolverPool.php b/lib/internal/Magento/Framework/App/ScopeResolverPool.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/ScopeTreeProviderInterface.php b/lib/internal/Magento/Framework/App/ScopeTreeProviderInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/ScopeValidatorInterface.php b/lib/internal/Magento/Framework/App/ScopeValidatorInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/SetupInfo.php b/lib/internal/Magento/Framework/App/SetupInfo.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Shell.php b/lib/internal/Magento/Framework/App/Shell.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/State.php b/lib/internal/Magento/Framework/App/State.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/State/CleanupFiles.php b/lib/internal/Magento/Framework/App/State/CleanupFiles.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/StaticResource.php b/lib/internal/Magento/Framework/App/StaticResource.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/TemplateTypesInterface.php b/lib/internal/Magento/Framework/App/TemplateTypesInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/AclResourceTest.php b/lib/internal/Magento/Framework/App/Test/Unit/AclResourceTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Action/AbstractActionTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Action/AbstractActionTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Action/ActionFake.php b/lib/internal/Magento/Framework/App/Test/Unit/Action/ActionFake.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Action/ActionTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Action/ActionTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Action/ForwardTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Action/ForwardTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Action/Plugin/DesignTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Action/Plugin/DesignTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Action/Stub/ActionStub.php b/lib/internal/Magento/Framework/App/Test/Unit/Action/Stub/ActionStub.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/ActionFlagTest.php b/lib/internal/Magento/Framework/App/Test/Unit/ActionFlagTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/AreaListTest.php b/lib/internal/Magento/Framework/App/Test/Unit/AreaListTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/AreaTest.php b/lib/internal/Magento/Framework/App/Test/Unit/AreaTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Arguments/ArgumentInterpreterTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Arguments/ArgumentInterpreterTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Arguments/FileResolver/PrimaryTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Arguments/FileResolver/PrimaryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Arguments/FileResolver/_files/app/etc/config.xml b/lib/internal/Magento/Framework/App/Test/Unit/Arguments/FileResolver/_files/app/etc/config.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Arguments/FileResolver/_files/app/etc/custom/config.xml b/lib/internal/Magento/Framework/App/Test/Unit/Arguments/FileResolver/_files/app/etc/custom/config.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Arguments/FileResolver/_files/primary/app/etc/di.xml b/lib/internal/Magento/Framework/App/Test/Unit/Arguments/FileResolver/_files/primary/app/etc/di.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Arguments/FileResolver/_files/primary/app/etc/some_config/di.xml b/lib/internal/Magento/Framework/App/Test/Unit/Arguments/FileResolver/_files/primary/app/etc/some_config/di.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/BootstrapTest.php b/lib/internal/Magento/Framework/App/Test/Unit/BootstrapTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Cache/FlushCacheByTagsTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Cache/FlushCacheByTagsTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Cache/Frontend/FactoryTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Cache/Frontend/FactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Cache/Frontend/FactoryTest/CacheDecoratorDummy.php b/lib/internal/Magento/Framework/App/Test/Unit/Cache/Frontend/FactoryTest/CacheDecoratorDummy.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Cache/Frontend/PoolTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Cache/Frontend/PoolTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Cache/ManagerTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Cache/ManagerTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Cache/StateTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Cache/StateTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Cache/Tag/ResolverTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Cache/Tag/ResolverTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Cache/Tag/Strategy/DummyTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Cache/Tag/Strategy/DummyTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Cache/Tag/Strategy/FactoryTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Cache/Tag/Strategy/FactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Cache/Tag/Strategy/IdentifierTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Cache/Tag/Strategy/IdentifierTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Cache/Type/AccessProxyTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Cache/Type/AccessProxyTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Cache/Type/ConfigTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Cache/Type/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Cache/Type/FrontendPoolTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Cache/Type/FrontendPoolTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Cache/Type/GenericTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Cache/Type/GenericTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Cache/TypeListTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Cache/TypeListTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/CacheTest.php b/lib/internal/Magento/Framework/App/Test/Unit/CacheTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Config/BaseFactoryTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Config/BaseFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Config/ConfigPathResolverTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Config/ConfigPathResolverTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Config/ConfigSourceAggregatedTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Config/ConfigSourceAggregatedTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Config/Data/ProcessorFactoryTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Config/Data/ProcessorFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Config/DataFactoryTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Config/DataFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Config/DataTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Config/DataTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Config/ElementTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Config/ElementTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Config/FileResolverTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Config/FileResolverTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Config/Initial/ConverterTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Config/Initial/ConverterTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Config/Initial/ReaderTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Config/Initial/ReaderTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Config/Initial/SchemaLocatorTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Config/Initial/SchemaLocatorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Config/Initial/XsdTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Config/Initial/XsdTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Config/Initial/_files/config.xml b/lib/internal/Magento/Framework/App/Test/Unit/Config/Initial/_files/config.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Config/Initial/_files/config.xsd b/lib/internal/Magento/Framework/App/Test/Unit/Config/Initial/_files/config.xsd
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Config/Initial/_files/converted_config.php b/lib/internal/Magento/Framework/App/Test/Unit/Config/Initial/_files/converted_config.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Config/Initial/_files/initial_config1.xml b/lib/internal/Magento/Framework/App/Test/Unit/Config/Initial/_files/initial_config1.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Config/Initial/_files/initial_config2.xml b/lib/internal/Magento/Framework/App/Test/Unit/Config/Initial/_files/initial_config2.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Config/Initial/_files/initial_config_merged.php b/lib/internal/Magento/Framework/App/Test/Unit/Config/Initial/_files/initial_config_merged.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Config/Initial/_files/invalidConfigXmlArray.php b/lib/internal/Magento/Framework/App/Test/Unit/Config/Initial/_files/invalidConfigXmlArray.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Config/Initial/_files/invalid_config.xml b/lib/internal/Magento/Framework/App/Test/Unit/Config/Initial/_files/invalid_config.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Config/Initial/_files/valid_config.xml b/lib/internal/Magento/Framework/App/Test/Unit/Config/Initial/_files/valid_config.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Config/InitialConfigSourceTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Config/InitialConfigSourceTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Config/InitialTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Config/InitialTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Config/MetadataConfigTypeProcessorTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Config/MetadataConfigTypeProcessorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Config/MetadataProcessorTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Config/MetadataProcessorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Config/PreProcessorCompositeTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Config/PreProcessorCompositeTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Config/Scope/ConverterTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Config/Scope/ConverterTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Config/Scope/ValidatorTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Config/Scope/ValidatorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Config/ScopeCodeResolverTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Config/ScopeCodeResolverTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Config/Storage/WriterTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Config/Storage/WriterTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Config/ValueFactoryTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Config/ValueFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Config/ValueTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Config/ValueTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Config/XsdTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Config/XsdTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Config/_files/element.xml b/lib/internal/Magento/Framework/App/Test/Unit/Config/_files/element.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Config/_files/invalidRoutesXmlArray.php b/lib/internal/Magento/Framework/App/Test/Unit/Config/_files/invalidRoutesXmlArray.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Config/_files/valid_routes.xml b/lib/internal/Magento/Framework/App/Test/Unit/Config/_files/valid_routes.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/ConfigTest.php b/lib/internal/Magento/Framework/App/Test/Unit/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Console/CommandListTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Console/CommandListTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Console/MaintenanceModeEnablerTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Console/MaintenanceModeEnablerTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Console/ResponseTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Console/ResponseTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/CronTest.php b/lib/internal/Magento/Framework/App/Test/Unit/CronTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/DefaultClass.php b/lib/internal/Magento/Framework/App/Test/Unit/DefaultClass.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/DefaultPath/DefaultPathTest.php b/lib/internal/Magento/Framework/App/Test/Unit/DefaultPath/DefaultPathTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/DeploymentConfig/CommentParserTest.php b/lib/internal/Magento/Framework/App/Test/Unit/DeploymentConfig/CommentParserTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/DeploymentConfig/FileReaderTest.php b/lib/internal/Magento/Framework/App/Test/Unit/DeploymentConfig/FileReaderTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/DeploymentConfig/ReaderTest.php b/lib/internal/Magento/Framework/App/Test/Unit/DeploymentConfig/ReaderTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/DeploymentConfig/Writer/PhpFormatterTest.php b/lib/internal/Magento/Framework/App/Test/Unit/DeploymentConfig/Writer/PhpFormatterTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/DeploymentConfig/WriterTest.php b/lib/internal/Magento/Framework/App/Test/Unit/DeploymentConfig/WriterTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/DeploymentConfig/_files/config.php b/lib/internal/Magento/Framework/App/Test/Unit/DeploymentConfig/_files/config.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/DeploymentConfig/_files/custom.php b/lib/internal/Magento/Framework/App/Test/Unit/DeploymentConfig/_files/custom.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/DeploymentConfig/_files/duplicateConfig.php b/lib/internal/Magento/Framework/App/Test/Unit/DeploymentConfig/_files/duplicateConfig.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/DeploymentConfig/_files/env.php b/lib/internal/Magento/Framework/App/Test/Unit/DeploymentConfig/_files/env.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/DeploymentConfig/_files/mergeOne.php b/lib/internal/Magento/Framework/App/Test/Unit/DeploymentConfig/_files/mergeOne.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/DeploymentConfig/_files/mergeTwo.php b/lib/internal/Magento/Framework/App/Test/Unit/DeploymentConfig/_files/mergeTwo.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/DeploymentConfigTest.php b/lib/internal/Magento/Framework/App/Test/Unit/DeploymentConfigTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/DocRootLocatorTest.php b/lib/internal/Magento/Framework/App/Test/Unit/DocRootLocatorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/ErrorHandlerTest.php b/lib/internal/Magento/Framework/App/Test/Unit/ErrorHandlerTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Filesystem/DirectoryListTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Filesystem/DirectoryListTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/FrontClass.php b/lib/internal/Magento/Framework/App/Test/Unit/FrontClass.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/FrontControllerTest.php b/lib/internal/Magento/Framework/App/Test/Unit/FrontControllerTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Http/ContextTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Http/ContextTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/HttpTest.php b/lib/internal/Magento/Framework/App/Test/Unit/HttpTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Language/ConfigTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Language/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Language/DictionaryTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Language/DictionaryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Language/_files/language.xml b/lib/internal/Magento/Framework/App/Test/Unit/Language/_files/language.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/MaintenanceModeTest.php b/lib/internal/Magento/Framework/App/Test/Unit/MaintenanceModeTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/ObjectManager/ConfigCacheTest.php b/lib/internal/Magento/Framework/App/Test/Unit/ObjectManager/ConfigCacheTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/ObjectManager/ConfigLoaderTest.php b/lib/internal/Magento/Framework/App/Test/Unit/ObjectManager/ConfigLoaderTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/ObjectManager/Environment/CompiledTest.php b/lib/internal/Magento/Framework/App/Test/Unit/ObjectManager/Environment/CompiledTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/ObjectManager/Environment/CompiledTesting.php b/lib/internal/Magento/Framework/App/Test/Unit/ObjectManager/Environment/CompiledTesting.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/ObjectManager/Environment/ConfigTesting.php b/lib/internal/Magento/Framework/App/Test/Unit/ObjectManager/Environment/ConfigTesting.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/ObjectManager/Environment/DeveloperTest.php b/lib/internal/Magento/Framework/App/Test/Unit/ObjectManager/Environment/DeveloperTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/ObjectManager/FactoryStub.php b/lib/internal/Magento/Framework/App/Test/Unit/ObjectManager/FactoryStub.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/ObjectManagerFactoryTest.php b/lib/internal/Magento/Framework/App/Test/Unit/ObjectManagerFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/PageCache/FormKeyTest.php b/lib/internal/Magento/Framework/App/Test/Unit/PageCache/FormKeyTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/PageCache/IdentifierTest.php b/lib/internal/Magento/Framework/App/Test/Unit/PageCache/IdentifierTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/PageCache/KernelTest.php b/lib/internal/Magento/Framework/App/Test/Unit/PageCache/KernelTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/PageCache/PageCacheTest.php b/lib/internal/Magento/Framework/App/Test/Unit/PageCache/PageCacheTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/PageCache/VersionTest.php b/lib/internal/Magento/Framework/App/Test/Unit/PageCache/VersionTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/ProductMetadataTest.php b/lib/internal/Magento/Framework/App/Test/Unit/ProductMetadataTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Request/HttpTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Request/HttpTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/RequestFactoryTest.php b/lib/internal/Magento/Framework/App/Test/Unit/RequestFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/ResourceConnection/Config/ConverterTest.php b/lib/internal/Magento/Framework/App/Test/Unit/ResourceConnection/Config/ConverterTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/ResourceConnection/Config/ReaderTest.php b/lib/internal/Magento/Framework/App/Test/Unit/ResourceConnection/Config/ReaderTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/ResourceConnection/Config/SchemaLocatorTest.php b/lib/internal/Magento/Framework/App/Test/Unit/ResourceConnection/Config/SchemaLocatorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/ResourceConnection/Config/XsdTest.php b/lib/internal/Magento/Framework/App/Test/Unit/ResourceConnection/Config/XsdTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/ResourceConnection/Config/_files/invalidResourcesXmlArray.php b/lib/internal/Magento/Framework/App/Test/Unit/ResourceConnection/Config/_files/invalidResourcesXmlArray.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/ResourceConnection/Config/_files/resources.php b/lib/internal/Magento/Framework/App/Test/Unit/ResourceConnection/Config/_files/resources.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/ResourceConnection/Config/_files/resources.xml b/lib/internal/Magento/Framework/App/Test/Unit/ResourceConnection/Config/_files/resources.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/ResourceConnection/Config/_files/valid_resources.xml b/lib/internal/Magento/Framework/App/Test/Unit/ResourceConnection/Config/_files/valid_resources.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/ResourceConnection/ConfigTest.php b/lib/internal/Magento/Framework/App/Test/Unit/ResourceConnection/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/ResourceConnection/ConnectionFactoryTest.php b/lib/internal/Magento/Framework/App/Test/Unit/ResourceConnection/ConnectionFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Response/HeaderProvider/XFrameOptionsTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Response/HeaderProvider/XFrameOptionsTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Response/HeaderProvider/XssProtectionTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Response/HeaderProvider/XssProtectionTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Response/Http/FileFactoryTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Response/Http/FileFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Response/HttpTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Response/HttpTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/ResponseFactoryTest.php b/lib/internal/Magento/Framework/App/Test/Unit/ResponseFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Route/Config/ConverterTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Route/Config/ConverterTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Route/Config/SchemaLocatorTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Route/Config/SchemaLocatorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Route/Config/_files/routes.php b/lib/internal/Magento/Framework/App/Test/Unit/Route/Config/_files/routes.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Route/Config/_files/routes.xml b/lib/internal/Magento/Framework/App/Test/Unit/Route/Config/_files/routes.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Route/ConfigInterface/ProxyTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Route/ConfigInterface/ProxyTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Route/ConfigTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Route/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Router/ActionListTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Router/ActionListTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Router/BaseTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Router/BaseTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Router/DefaultRouterTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Router/DefaultRouterTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Router/NoRouteHandlerListTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Router/NoRouteHandlerListTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Router/NoRouteHandlerTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Router/NoRouteHandlerTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/RouterListTest.php b/lib/internal/Magento/Framework/App/Test/Unit/RouterListTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Scope/ValidatorTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Scope/ValidatorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/ScopeResolverPoolTest.php b/lib/internal/Magento/Framework/App/Test/Unit/ScopeResolverPoolTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/SetupInfoTest.php b/lib/internal/Magento/Framework/App/Test/Unit/SetupInfoTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/ShellTest.php b/lib/internal/Magento/Framework/App/Test/Unit/ShellTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/State/CleanupFilesTest.php b/lib/internal/Magento/Framework/App/Test/Unit/State/CleanupFilesTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/StateTest.php b/lib/internal/Magento/Framework/App/Test/Unit/StateTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/StaticResourceTest.php b/lib/internal/Magento/Framework/App/Test/Unit/StaticResourceTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Utility/AggregateInvokerTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Utility/AggregateInvokerTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Utility/FilesTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Utility/FilesTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Utility/_files/foo/bar/one.txt b/lib/internal/Magento/Framework/App/Test/Unit/Utility/_files/foo/bar/one.txt
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Utility/_files/foo/bar/recursive/one.txt b/lib/internal/Magento/Framework/App/Test/Unit/Utility/_files/foo/bar/recursive/one.txt
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Utility/_files/foo/bar/recursive/two.txt b/lib/internal/Magento/Framework/App/Test/Unit/Utility/_files/foo/bar/recursive/two.txt
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Utility/_files/foo/bar/two.txt b/lib/internal/Magento/Framework/App/Test/Unit/Utility/_files/foo/bar/two.txt
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Utility/_files/foo/baz/one.txt b/lib/internal/Magento/Framework/App/Test/Unit/Utility/_files/foo/baz/one.txt
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Utility/_files/foo/baz/two.txt b/lib/internal/Magento/Framework/App/Test/Unit/Utility/_files/foo/baz/two.txt
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Utility/_files/foo/one.txt b/lib/internal/Magento/Framework/App/Test/Unit/Utility/_files/foo/one.txt
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Utility/_files/foo/two.txt b/lib/internal/Magento/Framework/App/Test/Unit/Utility/_files/foo/two.txt
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Utility/_files/list_corrupted_dir.txt b/lib/internal/Magento/Framework/App/Test/Unit/Utility/_files/list_corrupted_dir.txt
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Utility/_files/list_corrupted_file.txt b/lib/internal/Magento/Framework/App/Test/Unit/Utility/_files/list_corrupted_file.txt
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Utility/_files/list_good.txt b/lib/internal/Magento/Framework/App/Test/Unit/Utility/_files/list_good.txt
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/View/Asset/MaterializationStrategy/CopyTest.php b/lib/internal/Magento/Framework/App/Test/Unit/View/Asset/MaterializationStrategy/CopyTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/View/Asset/MaterializationStrategy/FactoryTest.php b/lib/internal/Magento/Framework/App/Test/Unit/View/Asset/MaterializationStrategy/FactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/View/Asset/MaterializationStrategy/SymlinkTest.php b/lib/internal/Magento/Framework/App/Test/Unit/View/Asset/MaterializationStrategy/SymlinkTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/View/Asset/PublisherTest.php b/lib/internal/Magento/Framework/App/Test/Unit/View/Asset/PublisherTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/View/Deployment/Version/Storage/FileTest.php b/lib/internal/Magento/Framework/App/Test/Unit/View/Deployment/Version/Storage/FileTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/View/Deployment/VersionTest.php b/lib/internal/Magento/Framework/App/Test/Unit/View/Deployment/VersionTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/ViewTest.php b/lib/internal/Magento/Framework/App/Test/Unit/ViewTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/_files/app/etc/di.xml b/lib/internal/Magento/Framework/App/Test/Unit/_files/app/etc/di.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/_files/config.php b/lib/internal/Magento/Framework/App/Test/Unit/_files/config.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/_files/other/local_developer.php b/lib/internal/Magento/Framework/App/Test/Unit/_files/other/local_developer.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/_files/other/local_developer_merged.php b/lib/internal/Magento/Framework/App/Test/Unit/_files/other/local_developer_merged.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/_files/pub/index.php b/lib/internal/Magento/Framework/App/Test/Unit/_files/pub/index.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/_files/setup/index.php b/lib/internal/Magento/Framework/App/Test/Unit/_files/setup/index.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Test/Unit/_files/test.composer.json b/lib/internal/Magento/Framework/App/Test/Unit/_files/test.composer.json
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Utility/AggregateInvoker.php b/lib/internal/Magento/Framework/App/Utility/AggregateInvoker.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Utility/Classes.php b/lib/internal/Magento/Framework/App/Utility/Classes.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Utility/Files.php b/lib/internal/Magento/Framework/App/Utility/Files.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/Utility/RegexIteratorFactory.php b/lib/internal/Magento/Framework/App/Utility/RegexIteratorFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/View.php b/lib/internal/Magento/Framework/App/View.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/View/Asset/MaterializationStrategy/Copy.php b/lib/internal/Magento/Framework/App/View/Asset/MaterializationStrategy/Copy.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/View/Asset/MaterializationStrategy/Factory.php b/lib/internal/Magento/Framework/App/View/Asset/MaterializationStrategy/Factory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/View/Asset/MaterializationStrategy/StrategyInterface.php b/lib/internal/Magento/Framework/App/View/Asset/MaterializationStrategy/StrategyInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/View/Asset/MaterializationStrategy/Symlink.php b/lib/internal/Magento/Framework/App/View/Asset/MaterializationStrategy/Symlink.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/View/Asset/Publisher.php b/lib/internal/Magento/Framework/App/View/Asset/Publisher.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/View/Deployment/Version.php b/lib/internal/Magento/Framework/App/View/Deployment/Version.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/View/Deployment/Version/Storage/File.php b/lib/internal/Magento/Framework/App/View/Deployment/Version/Storage/File.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/View/Deployment/Version/StorageInterface.php b/lib/internal/Magento/Framework/App/View/Deployment/Version/StorageInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/ViewInterface.php b/lib/internal/Magento/Framework/App/ViewInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/etc/resources.xsd b/lib/internal/Magento/Framework/App/etc/resources.xsd
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/etc/routes.xsd b/lib/internal/Magento/Framework/App/etc/routes.xsd
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/App/etc/routes_merged.xsd b/lib/internal/Magento/Framework/App/etc/routes_merged.xsd
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/AppInterface.php b/lib/internal/Magento/Framework/AppInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Archive.php b/lib/internal/Magento/Framework/Archive.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Archive/AbstractArchive.php b/lib/internal/Magento/Framework/Archive/AbstractArchive.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Archive/ArchiveInterface.php b/lib/internal/Magento/Framework/Archive/ArchiveInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Archive/Bz.php b/lib/internal/Magento/Framework/Archive/Bz.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Archive/Gz.php b/lib/internal/Magento/Framework/Archive/Gz.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Archive/Helper/File.php b/lib/internal/Magento/Framework/Archive/Helper/File.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Archive/Helper/File/Bz.php b/lib/internal/Magento/Framework/Archive/Helper/File/Bz.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Archive/Helper/File/Gz.php b/lib/internal/Magento/Framework/Archive/Helper/File/Gz.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Archive/README.md b/lib/internal/Magento/Framework/Archive/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Archive/Tar.php b/lib/internal/Magento/Framework/Archive/Tar.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Archive/Test/Unit/ZipTest.php b/lib/internal/Magento/Framework/Archive/Test/Unit/ZipTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Archive/Zip.php b/lib/internal/Magento/Framework/Archive/Zip.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Authorization.php b/lib/internal/Magento/Framework/Authorization.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Authorization/Factory.php b/lib/internal/Magento/Framework/Authorization/Factory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Authorization/Policy/Acl.php b/lib/internal/Magento/Framework/Authorization/Policy/Acl.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Authorization/Policy/DefaultPolicy.php b/lib/internal/Magento/Framework/Authorization/Policy/DefaultPolicy.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Authorization/PolicyInterface.php b/lib/internal/Magento/Framework/Authorization/PolicyInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Authorization/RoleLocator/DefaultRoleLocator.php b/lib/internal/Magento/Framework/Authorization/RoleLocator/DefaultRoleLocator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Authorization/RoleLocatorInterface.php b/lib/internal/Magento/Framework/Authorization/RoleLocatorInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Authorization/Test/Unit/Policy/AclTest.php b/lib/internal/Magento/Framework/Authorization/Test/Unit/Policy/AclTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Authorization/Test/Unit/Policy/DefaultTest.php b/lib/internal/Magento/Framework/Authorization/Test/Unit/Policy/DefaultTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/AuthorizationInterface.php b/lib/internal/Magento/Framework/AuthorizationInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Autoload/AutoloaderInterface.php b/lib/internal/Magento/Framework/Autoload/AutoloaderInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Autoload/AutoloaderRegistry.php b/lib/internal/Magento/Framework/Autoload/AutoloaderRegistry.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Autoload/ClassLoaderWrapper.php b/lib/internal/Magento/Framework/Autoload/ClassLoaderWrapper.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Autoload/ClassMap.php b/lib/internal/Magento/Framework/Autoload/ClassMap.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Autoload/Populator.php b/lib/internal/Magento/Framework/Autoload/Populator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Autoload/README.md b/lib/internal/Magento/Framework/Autoload/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Autoload/Test/Unit/ClassLoaderWrapperTest.php b/lib/internal/Magento/Framework/Autoload/Test/Unit/ClassLoaderWrapperTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Autoload/Test/Unit/PopulatorTest.php b/lib/internal/Magento/Framework/Autoload/Test/Unit/PopulatorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Backup/AbstractBackup.php b/lib/internal/Magento/Framework/Backup/AbstractBackup.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Backup/Archive/Tar.php b/lib/internal/Magento/Framework/Backup/Archive/Tar.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Backup/BackupException.php b/lib/internal/Magento/Framework/Backup/BackupException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Backup/BackupInterface.php b/lib/internal/Magento/Framework/Backup/BackupInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Backup/Db.php b/lib/internal/Magento/Framework/Backup/Db.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Backup/Db/BackupDbInterface.php b/lib/internal/Magento/Framework/Backup/Db/BackupDbInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Backup/Db/BackupFactory.php b/lib/internal/Magento/Framework/Backup/Db/BackupFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Backup/Db/BackupInterface.php b/lib/internal/Magento/Framework/Backup/Db/BackupInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Backup/Exception/CantLoadSnapshot.php b/lib/internal/Magento/Framework/Backup/Exception/CantLoadSnapshot.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Backup/Exception/FtpConnectionFailed.php b/lib/internal/Magento/Framework/Backup/Exception/FtpConnectionFailed.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Backup/Exception/FtpValidationFailed.php b/lib/internal/Magento/Framework/Backup/Exception/FtpValidationFailed.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Backup/Exception/NotEnoughFreeSpace.php b/lib/internal/Magento/Framework/Backup/Exception/NotEnoughFreeSpace.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Backup/Exception/NotEnoughPermissions.php b/lib/internal/Magento/Framework/Backup/Exception/NotEnoughPermissions.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Backup/Factory.php b/lib/internal/Magento/Framework/Backup/Factory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Backup/Filesystem.php b/lib/internal/Magento/Framework/Backup/Filesystem.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Backup/Filesystem/Helper.php b/lib/internal/Magento/Framework/Backup/Filesystem/Helper.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Backup/Filesystem/Iterator/File.php b/lib/internal/Magento/Framework/Backup/Filesystem/Iterator/File.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Backup/Filesystem/Iterator/Filter.php b/lib/internal/Magento/Framework/Backup/Filesystem/Iterator/Filter.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Backup/Filesystem/Rollback/AbstractRollback.php b/lib/internal/Magento/Framework/Backup/Filesystem/Rollback/AbstractRollback.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Backup/Filesystem/Rollback/Fs.php b/lib/internal/Magento/Framework/Backup/Filesystem/Rollback/Fs.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Backup/Filesystem/Rollback/Ftp.php b/lib/internal/Magento/Framework/Backup/Filesystem/Rollback/Ftp.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Backup/Media.php b/lib/internal/Magento/Framework/Backup/Media.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Backup/Nomedia.php b/lib/internal/Magento/Framework/Backup/Nomedia.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Backup/README.md b/lib/internal/Magento/Framework/Backup/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Backup/Snapshot.php b/lib/internal/Magento/Framework/Backup/Snapshot.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Backup/Test/Unit/FactoryTest.php b/lib/internal/Magento/Framework/Backup/Test/Unit/FactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Backup/Test/Unit/Filesystem/Helper.php b/lib/internal/Magento/Framework/Backup/Test/Unit/Filesystem/Helper.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Backup/Test/Unit/Filesystem/Rollback/Fs.php b/lib/internal/Magento/Framework/Backup/Test/Unit/Filesystem/Rollback/Fs.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Backup/Test/Unit/Filesystem/Rollback/FsTest.php b/lib/internal/Magento/Framework/Backup/Test/Unit/Filesystem/Rollback/FsTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Backup/Test/Unit/Filesystem/Rollback/Ftp.php b/lib/internal/Magento/Framework/Backup/Test/Unit/Filesystem/Rollback/Ftp.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Backup/Test/Unit/Filesystem/Rollback/_files/ioMock.php b/lib/internal/Magento/Framework/Backup/Test/Unit/Filesystem/Rollback/_files/ioMock.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Backup/Test/Unit/FilesystemTest.php b/lib/internal/Magento/Framework/Backup/Test/Unit/FilesystemTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Backup/Test/Unit/MediaTest.php b/lib/internal/Magento/Framework/Backup/Test/Unit/MediaTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Backup/Test/Unit/NomediaTest.php b/lib/internal/Magento/Framework/Backup/Test/Unit/NomediaTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Backup/Test/Unit/SnapshotTest.php b/lib/internal/Magento/Framework/Backup/Test/Unit/SnapshotTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Backup/Test/Unit/_files/app_dirs.php b/lib/internal/Magento/Framework/Backup/Test/Unit/_files/app_dirs.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Backup/Test/Unit/_files/app_dirs_rollback.php b/lib/internal/Magento/Framework/Backup/Test/Unit/_files/app_dirs_rollback.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Backup/Test/Unit/_files/io.php b/lib/internal/Magento/Framework/Backup/Test/Unit/_files/io.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Cache/Backend/Database.php b/lib/internal/Magento/Framework/Cache/Backend/Database.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Cache/Backend/Decorator/AbstractDecorator.php b/lib/internal/Magento/Framework/Cache/Backend/Decorator/AbstractDecorator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Cache/Backend/Decorator/Compression.php b/lib/internal/Magento/Framework/Cache/Backend/Decorator/Compression.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Cache/Backend/Eaccelerator.php b/lib/internal/Magento/Framework/Cache/Backend/Eaccelerator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Cache/Backend/Memcached.php b/lib/internal/Magento/Framework/Cache/Backend/Memcached.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Cache/Backend/MongoDb.php b/lib/internal/Magento/Framework/Cache/Backend/MongoDb.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Cache/Config.php b/lib/internal/Magento/Framework/Cache/Config.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Cache/Config/Converter.php b/lib/internal/Magento/Framework/Cache/Config/Converter.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Cache/Config/Data.php b/lib/internal/Magento/Framework/Cache/Config/Data.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Cache/Config/Reader.php b/lib/internal/Magento/Framework/Cache/Config/Reader.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Cache/Config/SchemaLocator.php b/lib/internal/Magento/Framework/Cache/Config/SchemaLocator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Cache/ConfigInterface.php b/lib/internal/Magento/Framework/Cache/ConfigInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Cache/Core.php b/lib/internal/Magento/Framework/Cache/Core.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Cache/Frontend/Adapter/Zend.php b/lib/internal/Magento/Framework/Cache/Frontend/Adapter/Zend.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Cache/Frontend/Decorator/Bare.php b/lib/internal/Magento/Framework/Cache/Frontend/Decorator/Bare.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Cache/Frontend/Decorator/Logger.php b/lib/internal/Magento/Framework/Cache/Frontend/Decorator/Logger.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Cache/Frontend/Decorator/Profiler.php b/lib/internal/Magento/Framework/Cache/Frontend/Decorator/Profiler.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Cache/Frontend/Decorator/TagScope.php b/lib/internal/Magento/Framework/Cache/Frontend/Decorator/TagScope.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Cache/FrontendInterface.php b/lib/internal/Magento/Framework/Cache/FrontendInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Cache/InvalidateLogger.php b/lib/internal/Magento/Framework/Cache/InvalidateLogger.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Cache/Test/Unit/Backend/DatabaseTest.php b/lib/internal/Magento/Framework/Cache/Test/Unit/Backend/DatabaseTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Cache/Test/Unit/Backend/Decorator/CompressionTest.php b/lib/internal/Magento/Framework/Cache/Test/Unit/Backend/Decorator/CompressionTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Cache/Test/Unit/Backend/Decorator/DecoratorAbstractTest.php b/lib/internal/Magento/Framework/Cache/Test/Unit/Backend/Decorator/DecoratorAbstractTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Cache/Test/Unit/Backend/MongoDbTest.php b/lib/internal/Magento/Framework/Cache/Test/Unit/Backend/MongoDbTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Cache/Test/Unit/Backend/_files/MongoBinData.txt b/lib/internal/Magento/Framework/Cache/Test/Unit/Backend/_files/MongoBinData.txt
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Cache/Test/Unit/Config/ConverterTest.php b/lib/internal/Magento/Framework/Cache/Test/Unit/Config/ConverterTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Cache/Test/Unit/Config/SchemaLocatorTest.php b/lib/internal/Magento/Framework/Cache/Test/Unit/Config/SchemaLocatorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Cache/Test/Unit/Config/_files/cache_config.php b/lib/internal/Magento/Framework/Cache/Test/Unit/Config/_files/cache_config.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Cache/Test/Unit/Config/_files/cache_config.xml b/lib/internal/Magento/Framework/Cache/Test/Unit/Config/_files/cache_config.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Cache/Test/Unit/ConfigTest.php b/lib/internal/Magento/Framework/Cache/Test/Unit/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Cache/Test/Unit/CoreTest.php b/lib/internal/Magento/Framework/Cache/Test/Unit/CoreTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Cache/Test/Unit/CoreTestMock.php b/lib/internal/Magento/Framework/Cache/Test/Unit/CoreTestMock.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Cache/Test/Unit/Frontend/Adapter/ZendTest.php b/lib/internal/Magento/Framework/Cache/Test/Unit/Frontend/Adapter/ZendTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Cache/Test/Unit/Frontend/Decorator/BareTest.php b/lib/internal/Magento/Framework/Cache/Test/Unit/Frontend/Decorator/BareTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Cache/Test/Unit/Frontend/Decorator/ProfilerTest.php b/lib/internal/Magento/Framework/Cache/Test/Unit/Frontend/Decorator/ProfilerTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Cache/Test/Unit/Frontend/Decorator/TagScopeTest.php b/lib/internal/Magento/Framework/Cache/Test/Unit/Frontend/Decorator/TagScopeTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Cache/Test/Unit/InvalidateLoggerTest.php b/lib/internal/Magento/Framework/Cache/Test/Unit/InvalidateLoggerTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Cache/etc/cache.xsd b/lib/internal/Magento/Framework/Cache/etc/cache.xsd
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/GeneratedFiles.php b/lib/internal/Magento/Framework/Code/GeneratedFiles.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Generator.php b/lib/internal/Magento/Framework/Code/Generator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Generator/Autoloader.php b/lib/internal/Magento/Framework/Code/Generator/Autoloader.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Generator/ClassGenerator.php b/lib/internal/Magento/Framework/Code/Generator/ClassGenerator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Generator/CodeGeneratorInterface.php b/lib/internal/Magento/Framework/Code/Generator/CodeGeneratorInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Generator/DefinedClasses.php b/lib/internal/Magento/Framework/Code/Generator/DefinedClasses.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Generator/EntityAbstract.php b/lib/internal/Magento/Framework/Code/Generator/EntityAbstract.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Generator/InterfaceGenerator.php b/lib/internal/Magento/Framework/Code/Generator/InterfaceGenerator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Generator/InterfaceMethodGenerator.php b/lib/internal/Magento/Framework/Code/Generator/InterfaceMethodGenerator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Generator/Io.php b/lib/internal/Magento/Framework/Code/Generator/Io.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Minifier/Adapter/Css/CSSmin.php b/lib/internal/Magento/Framework/Code/Minifier/Adapter/Css/CSSmin.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Minifier/Adapter/Js/JShrink.php b/lib/internal/Magento/Framework/Code/Minifier/Adapter/Js/JShrink.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Minifier/AdapterInterface.php b/lib/internal/Magento/Framework/Code/Minifier/AdapterInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/NameBuilder.php b/lib/internal/Magento/Framework/Code/NameBuilder.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/README.md b/lib/internal/Magento/Framework/Code/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Reader/ArgumentsReader.php b/lib/internal/Magento/Framework/Code/Reader/ArgumentsReader.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Reader/ClassReader.php b/lib/internal/Magento/Framework/Code/Reader/ClassReader.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Reader/ClassReaderInterface.php b/lib/internal/Magento/Framework/Code/Reader/ClassReaderInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Reader/NamespaceResolver.php b/lib/internal/Magento/Framework/Code/Reader/NamespaceResolver.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Reader/ScalarTypesProvider.php b/lib/internal/Magento/Framework/Code/Reader/ScalarTypesProvider.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Reader/SourceArgumentsReader.php b/lib/internal/Magento/Framework/Code/Reader/SourceArgumentsReader.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Test/Unit/GeneratedFilesTest.php b/lib/internal/Magento/Framework/Code/Test/Unit/GeneratedFilesTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Test/Unit/Generator/ClassGeneratorTest.php b/lib/internal/Magento/Framework/Code/Test/Unit/Generator/ClassGeneratorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Test/Unit/Generator/DefinedClassesTest.php b/lib/internal/Magento/Framework/Code/Test/Unit/Generator/DefinedClassesTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Test/Unit/Generator/EntityAbstractTest.php b/lib/internal/Magento/Framework/Code/Test/Unit/Generator/EntityAbstractTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Test/Unit/Generator/InterfaceGeneratorTest.php b/lib/internal/Magento/Framework/Code/Test/Unit/Generator/InterfaceGeneratorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Test/Unit/Generator/IoTest.php b/lib/internal/Magento/Framework/Code/Test/Unit/Generator/IoTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Test/Unit/Generator/TestAsset/ParentClass.php b/lib/internal/Magento/Framework/Code/Test/Unit/Generator/TestAsset/ParentClass.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Test/Unit/Generator/TestAsset/SourceClass.php b/lib/internal/Magento/Framework/Code/Test/Unit/Generator/TestAsset/SourceClass.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Test/Unit/Generator/TestAsset/TestGenerationClass.php b/lib/internal/Magento/Framework/Code/Test/Unit/Generator/TestAsset/TestGenerationClass.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Test/Unit/GeneratorTest.php b/lib/internal/Magento/Framework/Code/Test/Unit/GeneratorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Test/Unit/Minifier/Adapter/Css/CssMinTest.php b/lib/internal/Magento/Framework/Code/Test/Unit/Minifier/Adapter/Css/CssMinTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Test/Unit/Minifier/Adapter/Js/JShrinkTest.php b/lib/internal/Magento/Framework/Code/Test/Unit/Minifier/Adapter/Js/JShrinkTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Test/Unit/Minifier/_files/js/original.js b/lib/internal/Magento/Framework/Code/Test/Unit/Minifier/_files/js/original.js
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Test/Unit/Model/File/Validator/NotProtectedExtensionTest.php b/lib/internal/Magento/Framework/Code/Test/Unit/Model/File/Validator/NotProtectedExtensionTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Test/Unit/NameBuilderTest.php b/lib/internal/Magento/Framework/Code/Test/Unit/NameBuilderTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Test/Unit/Reader/ArgumentsReaderTest.php b/lib/internal/Magento/Framework/Code/Test/Unit/Reader/ArgumentsReaderTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Test/Unit/Reader/_files/ClassesForArgumentsReader.php b/lib/internal/Magento/Framework/Code/Test/Unit/Reader/_files/ClassesForArgumentsReader.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Test/Unit/Validator/ArgumentSequenceTest.php b/lib/internal/Magento/Framework/Code/Test/Unit/Validator/ArgumentSequenceTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Test/Unit/Validator/ConstructorArgumentTypesTest.php b/lib/internal/Magento/Framework/Code/Test/Unit/Validator/ConstructorArgumentTypesTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Test/Unit/Validator/ConstructorIntegrityTest.php b/lib/internal/Magento/Framework/Code/Test/Unit/Validator/ConstructorIntegrityTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Test/Unit/Validator/TypeDuplicationTest.php b/lib/internal/Magento/Framework/Code/Test/Unit/Validator/TypeDuplicationTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Test/Unit/Validator/_files/ClassesForArgumentSequence.php b/lib/internal/Magento/Framework/Code/Test/Unit/Validator/_files/ClassesForArgumentSequence.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Test/Unit/Validator/_files/ClassesForConstructorIntegrity.php b/lib/internal/Magento/Framework/Code/Test/Unit/Validator/_files/ClassesForConstructorIntegrity.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Test/Unit/Validator/_files/ClassesForTypeDuplication.php b/lib/internal/Magento/Framework/Code/Test/Unit/Validator/_files/ClassesForTypeDuplication.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Test/Unit/ValidatorTest.php b/lib/internal/Magento/Framework/Code/Test/Unit/ValidatorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Test/Unit/_files/app/code/Magento/SomeModule/Model/ElementFactory.php b/lib/internal/Magento/Framework/Code/Test/Unit/_files/app/code/Magento/SomeModule/Model/ElementFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Test/Unit/_files/app/code/Magento/SomeModule/Model/Five/Test.php b/lib/internal/Magento/Framework/Code/Test/Unit/_files/app/code/Magento/SomeModule/Model/Five/Test.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Test/Unit/_files/app/code/Magento/SomeModule/Model/Four/Test.php b/lib/internal/Magento/Framework/Code/Test/Unit/_files/app/code/Magento/SomeModule/Model/Four/Test.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Test/Unit/_files/app/code/Magento/SomeModule/Model/One/Test.php b/lib/internal/Magento/Framework/Code/Test/Unit/_files/app/code/Magento/SomeModule/Model/One/Test.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Test/Unit/_files/app/code/Magento/SomeModule/Model/Proxy.php b/lib/internal/Magento/Framework/Code/Test/Unit/_files/app/code/Magento/SomeModule/Model/Proxy.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Test/Unit/_files/app/code/Magento/SomeModule/Model/SevenInterface.php b/lib/internal/Magento/Framework/Code/Test/Unit/_files/app/code/Magento/SomeModule/Model/SevenInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Test/Unit/_files/app/code/Magento/SomeModule/Model/Six/Test.php b/lib/internal/Magento/Framework/Code/Test/Unit/_files/app/code/Magento/SomeModule/Model/Six/Test.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Test/Unit/_files/app/code/Magento/SomeModule/Model/Three/Test.php b/lib/internal/Magento/Framework/Code/Test/Unit/_files/app/code/Magento/SomeModule/Model/Three/Test.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Test/Unit/_files/app/code/Magento/SomeModule/Model/Two/Test.php b/lib/internal/Magento/Framework/Code/Test/Unit/_files/app/code/Magento/SomeModule/Model/Two/Test.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Validator.php b/lib/internal/Magento/Framework/Code/Validator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Validator/ArgumentSequence.php b/lib/internal/Magento/Framework/Code/Validator/ArgumentSequence.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Validator/ConstructorArgumentTypes.php b/lib/internal/Magento/Framework/Code/Validator/ConstructorArgumentTypes.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Validator/ConstructorIntegrity.php b/lib/internal/Magento/Framework/Code/Validator/ConstructorIntegrity.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/Validator/TypeDuplication.php b/lib/internal/Magento/Framework/Code/Validator/TypeDuplication.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Code/ValidatorInterface.php b/lib/internal/Magento/Framework/Code/ValidatorInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Communication/Config.php b/lib/internal/Magento/Framework/Communication/Config.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Communication/Config/CompositeReader.php b/lib/internal/Magento/Framework/Communication/Config/CompositeReader.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Communication/Config/ConfigParser.php b/lib/internal/Magento/Framework/Communication/Config/ConfigParser.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Communication/Config/Data.php b/lib/internal/Magento/Framework/Communication/Config/Data.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Communication/Config/Reader/EnvReader.php b/lib/internal/Magento/Framework/Communication/Config/Reader/EnvReader.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Communication/Config/Reader/EnvReader/Validator.php b/lib/internal/Magento/Framework/Communication/Config/Reader/EnvReader/Validator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Communication/Config/Reader/XmlReader.php b/lib/internal/Magento/Framework/Communication/Config/Reader/XmlReader.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Communication/Config/Reader/XmlReader/Converter.php b/lib/internal/Magento/Framework/Communication/Config/Reader/XmlReader/Converter.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Communication/Config/Reader/XmlReader/SchemaLocator.php b/lib/internal/Magento/Framework/Communication/Config/Reader/XmlReader/SchemaLocator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Communication/Config/Reader/XmlReader/Validator.php b/lib/internal/Magento/Framework/Communication/Config/Reader/XmlReader/Validator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Communication/Config/ReflectionGenerator.php b/lib/internal/Magento/Framework/Communication/Config/ReflectionGenerator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Communication/Config/Validator.php b/lib/internal/Magento/Framework/Communication/Config/Validator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Communication/ConfigInterface.php b/lib/internal/Magento/Framework/Communication/ConfigInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Communication/README.md b/lib/internal/Magento/Framework/Communication/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Communication/etc/communication.xsd b/lib/internal/Magento/Framework/Communication/etc/communication.xsd
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Component/ComponentFile.php b/lib/internal/Magento/Framework/Component/ComponentFile.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Component/ComponentRegistrar.php b/lib/internal/Magento/Framework/Component/ComponentRegistrar.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Component/ComponentRegistrarInterface.php b/lib/internal/Magento/Framework/Component/ComponentRegistrarInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Component/DirSearch.php b/lib/internal/Magento/Framework/Component/DirSearch.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Component/README.md b/lib/internal/Magento/Framework/Component/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Component/Test/Unit/ComponentFileTest.php b/lib/internal/Magento/Framework/Component/Test/Unit/ComponentFileTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Component/Test/Unit/ComponentRegistrarTest.php b/lib/internal/Magento/Framework/Component/Test/Unit/ComponentRegistrarTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Component/Test/Unit/DirSearchTest.php b/lib/internal/Magento/Framework/Component/Test/Unit/DirSearchTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Composer/BufferIoFactory.php b/lib/internal/Magento/Framework/Composer/BufferIoFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Composer/ComposerFactory.php b/lib/internal/Magento/Framework/Composer/ComposerFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Composer/ComposerJsonFinder.php b/lib/internal/Magento/Framework/Composer/ComposerJsonFinder.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Composer/DependencyChecker.php b/lib/internal/Magento/Framework/Composer/DependencyChecker.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Composer/MagentoComposerApplicationFactory.php b/lib/internal/Magento/Framework/Composer/MagentoComposerApplicationFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Composer/README.md b/lib/internal/Magento/Framework/Composer/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Composer/Remove.php b/lib/internal/Magento/Framework/Composer/Remove.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Composer/Test/Unit/ComposerFactoryTest.php b/lib/internal/Magento/Framework/Composer/Test/Unit/ComposerFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Composer/Test/Unit/ComposerInformationTest.php b/lib/internal/Magento/Framework/Composer/Test/Unit/ComposerInformationTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Composer/Test/Unit/DependencyCheckerTest.php b/lib/internal/Magento/Framework/Composer/Test/Unit/DependencyCheckerTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Composer/Test/Unit/_files/composer.json b/lib/internal/Magento/Framework/Composer/Test/Unit/_files/composer.json
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/AbstractXml.php b/lib/internal/Magento/Framework/Config/AbstractXml.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/CacheInterface.php b/lib/internal/Magento/Framework/Config/CacheInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Composer/Package.php b/lib/internal/Magento/Framework/Config/Composer/Package.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/ConfigOptionsListConstants.php b/lib/internal/Magento/Framework/Config/ConfigOptionsListConstants.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Converter.php b/lib/internal/Magento/Framework/Config/Converter.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Converter/Dom.php b/lib/internal/Magento/Framework/Config/Converter/Dom.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Converter/Dom/Flat.php b/lib/internal/Magento/Framework/Config/Converter/Dom/Flat.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/ConverterInterface.php b/lib/internal/Magento/Framework/Config/ConverterInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Data.php b/lib/internal/Magento/Framework/Config/Data.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Data/ConfigData.php b/lib/internal/Magento/Framework/Config/Data/ConfigData.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Data/ConfigDataFactory.php b/lib/internal/Magento/Framework/Config/Data/ConfigDataFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Data/Scoped.php b/lib/internal/Magento/Framework/Config/Data/Scoped.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/DataInterface.php b/lib/internal/Magento/Framework/Config/DataInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/DesignResolverInterface.php b/lib/internal/Magento/Framework/Config/DesignResolverInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Dom.php b/lib/internal/Magento/Framework/Config/Dom.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Dom/ArrayNodeConfig.php b/lib/internal/Magento/Framework/Config/Dom/ArrayNodeConfig.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Dom/NodeMergingConfig.php b/lib/internal/Magento/Framework/Config/Dom/NodeMergingConfig.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Dom/NodePathMatcher.php b/lib/internal/Magento/Framework/Config/Dom/NodePathMatcher.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Dom/UrnResolver.php b/lib/internal/Magento/Framework/Config/Dom/UrnResolver.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Dom/ValidationException.php b/lib/internal/Magento/Framework/Config/Dom/ValidationException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Dom/ValidationSchemaException.php b/lib/internal/Magento/Framework/Config/Dom/ValidationSchemaException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/DomFactory.php b/lib/internal/Magento/Framework/Config/DomFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/File/ConfigFilePool.php b/lib/internal/Magento/Framework/Config/File/ConfigFilePool.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/FileIterator.php b/lib/internal/Magento/Framework/Config/FileIterator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/FileIteratorFactory.php b/lib/internal/Magento/Framework/Config/FileIteratorFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/FileResolver.php b/lib/internal/Magento/Framework/Config/FileResolver.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/FileResolverInterface.php b/lib/internal/Magento/Framework/Config/FileResolverInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/GenericSchemaLocator.php b/lib/internal/Magento/Framework/Config/GenericSchemaLocator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Reader.php b/lib/internal/Magento/Framework/Config/Reader.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Reader/Filesystem.php b/lib/internal/Magento/Framework/Config/Reader/Filesystem.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/ReaderInterface.php b/lib/internal/Magento/Framework/Config/ReaderInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/SchemaLocator.php b/lib/internal/Magento/Framework/Config/SchemaLocator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/SchemaLocatorInterface.php b/lib/internal/Magento/Framework/Config/SchemaLocatorInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Scope.php b/lib/internal/Magento/Framework/Config/Scope.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/ScopeInterface.php b/lib/internal/Magento/Framework/Config/ScopeInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/ScopeListInterface.php b/lib/internal/Magento/Framework/Config/ScopeListInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/Composer/PackageTest.php b/lib/internal/Magento/Framework/Config/Test/Unit/Composer/PackageTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/Converter/Dom/FlatTest.php b/lib/internal/Magento/Framework/Config/Test/Unit/Converter/Dom/FlatTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/Converter/DomTest.php b/lib/internal/Magento/Framework/Config/Test/Unit/Converter/DomTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/Data/ConfigDataTest.php b/lib/internal/Magento/Framework/Config/Test/Unit/Data/ConfigDataTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/Data/ScopedTest.php b/lib/internal/Magento/Framework/Config/Test/Unit/Data/ScopedTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/DataTest.php b/lib/internal/Magento/Framework/Config/Test/Unit/DataTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/Dom/ArrayNodeConfigTest.php b/lib/internal/Magento/Framework/Config/Test/Unit/Dom/ArrayNodeConfigTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/Dom/NodeMergingConfigTest.php b/lib/internal/Magento/Framework/Config/Test/Unit/Dom/NodeMergingConfigTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/Dom/NodePathMatcherTest.php b/lib/internal/Magento/Framework/Config/Test/Unit/Dom/NodePathMatcherTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/Dom/UrnResolverTest.php b/lib/internal/Magento/Framework/Config/Test/Unit/Dom/UrnResolverTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/DomTest.php b/lib/internal/Magento/Framework/Config/Test/Unit/DomTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/File/ConfigFilePoolTest.php b/lib/internal/Magento/Framework/Config/Test/Unit/File/ConfigFilePoolTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/FileIteratorTest.php b/lib/internal/Magento/Framework/Config/Test/Unit/FileIteratorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/GenericSchemaLocatorTest.php b/lib/internal/Magento/Framework/Config/Test/Unit/GenericSchemaLocatorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/Reader/FilesystemTest.php b/lib/internal/Magento/Framework/Config/Test/Unit/Reader/FilesystemTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/ReaderTest.php b/lib/internal/Magento/Framework/Config/Test/Unit/ReaderTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/ScopeTest.php b/lib/internal/Magento/Framework/Config/Test/Unit/ScopeTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/ThemeTest.php b/lib/internal/Magento/Framework/Config/Test/Unit/ThemeTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/ValidationStateTest.php b/lib/internal/Magento/Framework/Config/Test/Unit/ValidationStateTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/ViewFactoryTest.php b/lib/internal/Magento/Framework/Config/Test/Unit/ViewFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/XsdTest.php b/lib/internal/Magento/Framework/Config/Test/Unit/XsdTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/area/default_default/theme.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/area/default_default/theme.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/area/default_test/theme.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/area/default_test/theme.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/area/default_test2/theme.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/area/default_test2/theme.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/area/test_default/theme.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/area/test_default/theme.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/area/test_external_package_descendant/theme.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/area/test_external_package_descendant/theme.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/converter/dom/attributes.php b/lib/internal/Magento/Framework/Config/Test/Unit/_files/converter/dom/attributes.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/converter/dom/attributes.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/converter/dom/attributes.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/converter/dom/cdata.php b/lib/internal/Magento/Framework/Config/Test/Unit/_files/converter/dom/cdata.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/converter/dom/cdata.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/converter/dom/cdata.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/converter/dom/flat/result.php b/lib/internal/Magento/Framework/Config/Test/Unit/_files/converter/dom/flat/result.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/converter/dom/flat/source.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/converter/dom/flat/source.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/converter/dom/flat/source_notuniq.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/converter/dom/flat/source_notuniq.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/converter/dom/flat/source_wrongarray.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/converter/dom/flat/source_wrongarray.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/ambiguous_merged.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/ambiguous_merged.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/ambiguous_new_one.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/ambiguous_new_one.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/ambiguous_new_two.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/ambiguous_new_two.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/ambiguous_one.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/ambiguous_one.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/ambiguous_two.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/ambiguous_two.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/attributes.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/attributes.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/attributes_merged.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/attributes_merged.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/attributes_new.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/attributes_new.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/converter/cdata.php b/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/converter/cdata.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/converter/cdata.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/converter/cdata.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/converter/no_attributes.php b/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/converter/no_attributes.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/converter/no_attributes.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/converter/no_attributes.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/converter/with_attributes.php b/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/converter/with_attributes.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/converter/with_attributes.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/converter/with_attributes.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/ids.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/ids.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/ids_merged.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/ids_merged.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/ids_new.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/ids_new.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/namespaced.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/namespaced.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/namespaced_merged.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/namespaced_merged.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/namespaced_new.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/namespaced_new.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/no_ids.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/no_ids.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/no_ids_merged.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/no_ids_merged.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/no_ids_new.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/no_ids_new.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/override_node.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/override_node.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/override_node_merged.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/override_node_merged.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/override_node_new.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/override_node_new.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/recursive.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/recursive.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/recursive_deep.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/recursive_deep.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/recursive_deep_merged.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/recursive_deep_merged.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/recursive_deep_new.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/recursive_deep_new.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/recursive_merged.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/recursive_merged.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/recursive_new.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/recursive_new.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/text_node.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/text_node.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/text_node_merged.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/text_node_merged.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/text_node_new.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/text_node_new.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/types.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/types.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/types_merged.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/types_merged.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/types_new.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/dom/types_new.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/reader/config.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/reader/config.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/reader/schema.xsd b/lib/internal/Magento/Framework/Config/Test/Unit/_files/reader/schema.xsd
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/sample.xsd b/lib/internal/Magento/Framework/Config/Test/Unit/_files/sample.xsd
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/theme_invalid.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/theme_invalid.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/view_invalid.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/view_invalid.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/view_one.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/view_one.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Test/Unit/_files/view_two.xml b/lib/internal/Magento/Framework/Config/Test/Unit/_files/view_two.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/Theme.php b/lib/internal/Magento/Framework/Config/Theme.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/ValidationStateInterface.php b/lib/internal/Magento/Framework/Config/ValidationStateInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/View.php b/lib/internal/Magento/Framework/Config/View.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/ViewFactory.php b/lib/internal/Magento/Framework/Config/ViewFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/etc/theme.xsd b/lib/internal/Magento/Framework/Config/etc/theme.xsd
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Config/etc/view.xsd b/lib/internal/Magento/Framework/Config/etc/view.xsd
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Console/Cli.php b/lib/internal/Magento/Framework/Console/Cli.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Console/CommandList.php b/lib/internal/Magento/Framework/Console/CommandList.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Console/CommandListInterface.php b/lib/internal/Magento/Framework/Console/CommandListInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Console/CommandLocator.php b/lib/internal/Magento/Framework/Console/CommandLocator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Console/Exception/GenerationDirectoryAccessException.php b/lib/internal/Magento/Framework/Console/Exception/GenerationDirectoryAccessException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Console/GenerationDirectoryAccess.php b/lib/internal/Magento/Framework/Console/GenerationDirectoryAccess.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Console/QuestionPerformer/YesNo.php b/lib/internal/Magento/Framework/Console/QuestionPerformer/YesNo.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Console/README.md b/lib/internal/Magento/Framework/Console/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Console/Test/Unit/Exception/GenerationDirectoryAccessExceptionTest.php b/lib/internal/Magento/Framework/Console/Test/Unit/Exception/GenerationDirectoryAccessExceptionTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Console/Test/Unit/QuestionPerformer/YesNoTest.php b/lib/internal/Magento/Framework/Console/Test/Unit/QuestionPerformer/YesNoTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Controller/AbstractResult.php b/lib/internal/Magento/Framework/Controller/AbstractResult.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Controller/Index/Index.php b/lib/internal/Magento/Framework/Controller/Index/Index.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Controller/Noroute/Index.php b/lib/internal/Magento/Framework/Controller/Noroute/Index.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Controller/README.md b/lib/internal/Magento/Framework/Controller/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Controller/Result/Forward.php b/lib/internal/Magento/Framework/Controller/Result/Forward.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Controller/Result/Json.php b/lib/internal/Magento/Framework/Controller/Result/Json.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Controller/Result/JsonFactory.php b/lib/internal/Magento/Framework/Controller/Result/JsonFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Controller/Result/Raw.php b/lib/internal/Magento/Framework/Controller/Result/Raw.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Controller/Result/Redirect.php b/lib/internal/Magento/Framework/Controller/Result/Redirect.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Controller/Result/RedirectFactory.php b/lib/internal/Magento/Framework/Controller/Result/RedirectFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Controller/ResultFactory.php b/lib/internal/Magento/Framework/Controller/ResultFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Controller/ResultInterface.php b/lib/internal/Magento/Framework/Controller/ResultInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Controller/Router/Route/Factory.php b/lib/internal/Magento/Framework/Controller/Router/Route/Factory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Controller/Test/Unit/Controller/Index/IndexTest.php b/lib/internal/Magento/Framework/Controller/Test/Unit/Controller/Index/IndexTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Controller/Test/Unit/Controller/NorouteTest.php b/lib/internal/Magento/Framework/Controller/Test/Unit/Controller/NorouteTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Controller/Test/Unit/Result/ForwardTest.php b/lib/internal/Magento/Framework/Controller/Test/Unit/Result/ForwardTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Controller/Test/Unit/Result/JsonTest.php b/lib/internal/Magento/Framework/Controller/Test/Unit/Result/JsonTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Controller/Test/Unit/Result/RawTest.php b/lib/internal/Magento/Framework/Controller/Test/Unit/Result/RawTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Controller/Test/Unit/Result/RedirectFactoryTest.php b/lib/internal/Magento/Framework/Controller/Test/Unit/Result/RedirectFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Controller/Test/Unit/Result/RedirectTest.php b/lib/internal/Magento/Framework/Controller/Test/Unit/Result/RedirectTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Controller/Test/Unit/Router/Route/FactoryTest.php b/lib/internal/Magento/Framework/Controller/Test/Unit/Router/Route/FactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Convert/ConvertArray.php b/lib/internal/Magento/Framework/Convert/ConvertArray.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Convert/DataObject.php b/lib/internal/Magento/Framework/Convert/DataObject.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Convert/DataSize.php b/lib/internal/Magento/Framework/Convert/DataSize.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Convert/Excel.php b/lib/internal/Magento/Framework/Convert/Excel.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Convert/ExcelFactory.php b/lib/internal/Magento/Framework/Convert/ExcelFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Convert/README.md b/lib/internal/Magento/Framework/Convert/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Convert/Test/Unit/ConvertArrayTest.php b/lib/internal/Magento/Framework/Convert/Test/Unit/ConvertArrayTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Convert/Test/Unit/DataSizeTest.php b/lib/internal/Magento/Framework/Convert/Test/Unit/DataSizeTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Convert/Test/Unit/ExcelFactoryTest.php b/lib/internal/Magento/Framework/Convert/Test/Unit/ExcelFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Convert/Test/Unit/ExcelTest.php b/lib/internal/Magento/Framework/Convert/Test/Unit/ExcelTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Convert/Test/Unit/ObjectTest.php b/lib/internal/Magento/Framework/Convert/Test/Unit/ObjectTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Convert/Test/Unit/XmlTest.php b/lib/internal/Magento/Framework/Convert/Test/Unit/XmlTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Convert/Test/Unit/_files/sample.xml b/lib/internal/Magento/Framework/Convert/Test/Unit/_files/sample.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Convert/Xml.php b/lib/internal/Magento/Framework/Convert/Xml.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Crontab/CrontabManager.php b/lib/internal/Magento/Framework/Crontab/CrontabManager.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Crontab/CrontabManagerInterface.php b/lib/internal/Magento/Framework/Crontab/CrontabManagerInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Crontab/README.md b/lib/internal/Magento/Framework/Crontab/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Crontab/TasksProvider.php b/lib/internal/Magento/Framework/Crontab/TasksProvider.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Crontab/TasksProviderInterface.php b/lib/internal/Magento/Framework/Crontab/TasksProviderInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Crontab/Test/Unit/CrontabManagerTest.php b/lib/internal/Magento/Framework/Crontab/Test/Unit/CrontabManagerTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Crontab/Test/Unit/TasksProviderTest.php b/lib/internal/Magento/Framework/Crontab/Test/Unit/TasksProviderTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Css/PreProcessor/Adapter/CssInliner.php b/lib/internal/Magento/Framework/Css/PreProcessor/Adapter/CssInliner.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Css/PreProcessor/Adapter/Less/Processor.php b/lib/internal/Magento/Framework/Css/PreProcessor/Adapter/Less/Processor.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Css/PreProcessor/Config.php b/lib/internal/Magento/Framework/Css/PreProcessor/Config.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Css/PreProcessor/ErrorHandler.php b/lib/internal/Magento/Framework/Css/PreProcessor/ErrorHandler.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Css/PreProcessor/ErrorHandlerInterface.php b/lib/internal/Magento/Framework/Css/PreProcessor/ErrorHandlerInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Css/PreProcessor/File/Collector/Aggregated.php b/lib/internal/Magento/Framework/Css/PreProcessor/File/Collector/Aggregated.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Css/PreProcessor/File/Collector/Library.php b/lib/internal/Magento/Framework/Css/PreProcessor/File/Collector/Library.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Css/PreProcessor/File/FileList/Collator.php b/lib/internal/Magento/Framework/Css/PreProcessor/File/FileList/Collator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Css/PreProcessor/File/Temporary.php b/lib/internal/Magento/Framework/Css/PreProcessor/File/Temporary.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Css/PreProcessor/FileGenerator/RelatedGenerator.php b/lib/internal/Magento/Framework/Css/PreProcessor/FileGenerator/RelatedGenerator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Css/PreProcessor/Instruction/Import.php b/lib/internal/Magento/Framework/Css/PreProcessor/Instruction/Import.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Css/PreProcessor/Instruction/MagentoImport.php b/lib/internal/Magento/Framework/Css/PreProcessor/Instruction/MagentoImport.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Css/README.md b/lib/internal/Magento/Framework/Css/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Css/Test/Unit/PreProcessor/Adapter/Less/ProcessorTest.php b/lib/internal/Magento/Framework/Css/Test/Unit/PreProcessor/Adapter/Less/ProcessorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Css/Test/Unit/PreProcessor/Adapter/Less/_file/test.css b/lib/internal/Magento/Framework/Css/Test/Unit/PreProcessor/Adapter/Less/_file/test.css
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Css/Test/Unit/PreProcessor/Adapter/Less/_file/test.less b/lib/internal/Magento/Framework/Css/Test/Unit/PreProcessor/Adapter/Less/_file/test.less
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Css/Test/Unit/PreProcessor/File/Collector/AggregatedTest.php b/lib/internal/Magento/Framework/Css/Test/Unit/PreProcessor/File/Collector/AggregatedTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Css/Test/Unit/PreProcessor/File/Collector/LibraryTest.php b/lib/internal/Magento/Framework/Css/Test/Unit/PreProcessor/File/Collector/LibraryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Css/Test/Unit/PreProcessor/File/FileList/CollatorTest.php b/lib/internal/Magento/Framework/Css/Test/Unit/PreProcessor/File/FileList/CollatorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Css/Test/Unit/PreProcessor/Instruction/ImportTest.php b/lib/internal/Magento/Framework/Css/Test/Unit/PreProcessor/Instruction/ImportTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Css/Test/Unit/PreProcessor/Instruction/MagentoImportTest.php b/lib/internal/Magento/Framework/Css/Test/Unit/PreProcessor/Instruction/MagentoImportTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Css/Test/Unit/PreProcessor/_files/invalid.less b/lib/internal/Magento/Framework/Css/Test/Unit/PreProcessor/_files/invalid.less
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Css/Test/Unit/PreProcessor/_files/valid.less b/lib/internal/Magento/Framework/Css/Test/Unit/PreProcessor/_files/valid.less
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Currency.php b/lib/internal/Magento/Framework/Currency.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/CurrencyFactory.php b/lib/internal/Magento/Framework/CurrencyFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/CurrencyInterface.php b/lib/internal/Magento/Framework/CurrencyInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/AbstractMapper.php b/lib/internal/Magento/Framework/DB/AbstractMapper.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Adapter/AdapterInterface.php b/lib/internal/Magento/Framework/DB/Adapter/AdapterInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Adapter/ConnectionException.php b/lib/internal/Magento/Framework/DB/Adapter/ConnectionException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Adapter/DdlCache.php b/lib/internal/Magento/Framework/DB/Adapter/DdlCache.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Adapter/DeadlockException.php b/lib/internal/Magento/Framework/DB/Adapter/DeadlockException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Adapter/DuplicateException.php b/lib/internal/Magento/Framework/DB/Adapter/DuplicateException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Adapter/LockWaitException.php b/lib/internal/Magento/Framework/DB/Adapter/LockWaitException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Adapter/Pdo/Mysql.php b/lib/internal/Magento/Framework/DB/Adapter/Pdo/Mysql.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Adapter/Pdo/MysqlFactory.php b/lib/internal/Magento/Framework/DB/Adapter/Pdo/MysqlFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/AggregatedFieldDataConverter.php b/lib/internal/Magento/Framework/DB/AggregatedFieldDataConverter.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/DataConverter/DataConversionException.php b/lib/internal/Magento/Framework/DB/DataConverter/DataConversionException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/DataConverter/DataConverterInterface.php b/lib/internal/Magento/Framework/DB/DataConverter/DataConverterInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/DataConverter/SerializedToJson.php b/lib/internal/Magento/Framework/DB/DataConverter/SerializedToJson.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Ddl/Sequence.php b/lib/internal/Magento/Framework/DB/Ddl/Sequence.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Ddl/Table.php b/lib/internal/Magento/Framework/DB/Ddl/Table.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Ddl/Trigger.php b/lib/internal/Magento/Framework/DB/Ddl/Trigger.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Ddl/TriggerFactory.php b/lib/internal/Magento/Framework/DB/Ddl/TriggerFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/ExpressionConverter.php b/lib/internal/Magento/Framework/DB/ExpressionConverter.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/FieldDataConversionException.php b/lib/internal/Magento/Framework/DB/FieldDataConversionException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/FieldDataConverter.php b/lib/internal/Magento/Framework/DB/FieldDataConverter.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/FieldDataConverterFactory.php b/lib/internal/Magento/Framework/DB/FieldDataConverterFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/FieldToConvert.php b/lib/internal/Magento/Framework/DB/FieldToConvert.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/GenericMapper.php b/lib/internal/Magento/Framework/DB/GenericMapper.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Helper.php b/lib/internal/Magento/Framework/DB/Helper.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Helper/AbstractHelper.php b/lib/internal/Magento/Framework/DB/Helper/AbstractHelper.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Helper/Mysql/Fulltext.php b/lib/internal/Magento/Framework/DB/Helper/Mysql/Fulltext.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Logger/File.php b/lib/internal/Magento/Framework/DB/Logger/File.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Logger/LoggerAbstract.php b/lib/internal/Magento/Framework/DB/Logger/LoggerAbstract.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Logger/LoggerProxy.php b/lib/internal/Magento/Framework/DB/Logger/LoggerProxy.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Logger/Quiet.php b/lib/internal/Magento/Framework/DB/Logger/Quiet.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/LoggerInterface.php b/lib/internal/Magento/Framework/DB/LoggerInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/MapperFactory.php b/lib/internal/Magento/Framework/DB/MapperFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/MapperInterface.php b/lib/internal/Magento/Framework/DB/MapperInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Platform/Quote.php b/lib/internal/Magento/Framework/DB/Platform/Quote.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Profiler.php b/lib/internal/Magento/Framework/DB/Profiler.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Query.php b/lib/internal/Magento/Framework/DB/Query.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Query/BatchIterator.php b/lib/internal/Magento/Framework/DB/Query/BatchIterator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Query/BatchIteratorFactory.php b/lib/internal/Magento/Framework/DB/Query/BatchIteratorFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Query/BatchIteratorInterface.php b/lib/internal/Magento/Framework/DB/Query/BatchIteratorInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Query/BatchRangeIterator.php b/lib/internal/Magento/Framework/DB/Query/BatchRangeIterator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Query/Generator.php b/lib/internal/Magento/Framework/DB/Query/Generator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/QueryBuilder.php b/lib/internal/Magento/Framework/DB/QueryBuilder.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/QueryFactory.php b/lib/internal/Magento/Framework/DB/QueryFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/QueryInterface.php b/lib/internal/Magento/Framework/DB/QueryInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Select.php b/lib/internal/Magento/Framework/DB/Select.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Select/ColumnsRenderer.php b/lib/internal/Magento/Framework/DB/Select/ColumnsRenderer.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Select/CompositeQueryModifier.php b/lib/internal/Magento/Framework/DB/Select/CompositeQueryModifier.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Select/DistinctRenderer.php b/lib/internal/Magento/Framework/DB/Select/DistinctRenderer.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Select/ForUpdateRenderer.php b/lib/internal/Magento/Framework/DB/Select/ForUpdateRenderer.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Select/FromRenderer.php b/lib/internal/Magento/Framework/DB/Select/FromRenderer.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Select/GroupRenderer.php b/lib/internal/Magento/Framework/DB/Select/GroupRenderer.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Select/HavingRenderer.php b/lib/internal/Magento/Framework/DB/Select/HavingRenderer.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Select/InQueryModifier.php b/lib/internal/Magento/Framework/DB/Select/InQueryModifier.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Select/LikeQueryModifier.php b/lib/internal/Magento/Framework/DB/Select/LikeQueryModifier.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Select/LimitRenderer.php b/lib/internal/Magento/Framework/DB/Select/LimitRenderer.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Select/OrderRenderer.php b/lib/internal/Magento/Framework/DB/Select/OrderRenderer.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Select/QueryModifierFactory.php b/lib/internal/Magento/Framework/DB/Select/QueryModifierFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Select/QueryModifierInterface.php b/lib/internal/Magento/Framework/DB/Select/QueryModifierInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Select/RendererInterface.php b/lib/internal/Magento/Framework/DB/Select/RendererInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Select/RendererProxy.php b/lib/internal/Magento/Framework/DB/Select/RendererProxy.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Select/SelectRenderer.php b/lib/internal/Magento/Framework/DB/Select/SelectRenderer.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Select/UnionRenderer.php b/lib/internal/Magento/Framework/DB/Select/UnionRenderer.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Select/WhereRenderer.php b/lib/internal/Magento/Framework/DB/Select/WhereRenderer.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/SelectFactory.php b/lib/internal/Magento/Framework/DB/SelectFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Sequence/SequenceInterface.php b/lib/internal/Magento/Framework/DB/Sequence/SequenceInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Sql/ColumnValueExpression.php b/lib/internal/Magento/Framework/DB/Sql/ColumnValueExpression.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Sql/ConcatExpression.php b/lib/internal/Magento/Framework/DB/Sql/ConcatExpression.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Sql/Expression.php b/lib/internal/Magento/Framework/DB/Sql/Expression.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Sql/ExpressionInterface.php b/lib/internal/Magento/Framework/DB/Sql/ExpressionInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Sql/LimitExpression.php b/lib/internal/Magento/Framework/DB/Sql/LimitExpression.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Sql/LookupExpression.php b/lib/internal/Magento/Framework/DB/Sql/LookupExpression.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Sql/UnionExpression.php b/lib/internal/Magento/Framework/DB/Sql/UnionExpression.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Statement/Parameter.php b/lib/internal/Magento/Framework/DB/Statement/Parameter.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Statement/Pdo/Mysql.php b/lib/internal/Magento/Framework/DB/Statement/Pdo/Mysql.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/SubSelect.php b/lib/internal/Magento/Framework/DB/SubSelect.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/TemporaryTableService.php b/lib/internal/Magento/Framework/DB/TemporaryTableService.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Test/Unit/AbstractMapperTest.php b/lib/internal/Magento/Framework/DB/Test/Unit/AbstractMapperTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Test/Unit/Adapter/Pdo/MysqlFactoryTest.php b/lib/internal/Magento/Framework/DB/Test/Unit/Adapter/Pdo/MysqlFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Test/Unit/Adapter/Pdo/MysqlTest.php b/lib/internal/Magento/Framework/DB/Test/Unit/Adapter/Pdo/MysqlTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Test/Unit/DB/Logger/LoggerProxyTest.php b/lib/internal/Magento/Framework/DB/Test/Unit/DB/Logger/LoggerProxyTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Test/Unit/DataConverter/SerializedToJsonTest.php b/lib/internal/Magento/Framework/DB/Test/Unit/DataConverter/SerializedToJsonTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Test/Unit/Ddl/SequenceTest.php b/lib/internal/Magento/Framework/DB/Test/Unit/Ddl/SequenceTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Test/Unit/Ddl/TriggerTest.php b/lib/internal/Magento/Framework/DB/Test/Unit/Ddl/TriggerTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Test/Unit/ExpressionConverterTest.php b/lib/internal/Magento/Framework/DB/Test/Unit/ExpressionConverterTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Test/Unit/FieldDataConverterFactoryTest.php b/lib/internal/Magento/Framework/DB/Test/Unit/FieldDataConverterFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Test/Unit/FieldDataConverterTest.php b/lib/internal/Magento/Framework/DB/Test/Unit/FieldDataConverterTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Test/Unit/GenericMapperTest.php b/lib/internal/Magento/Framework/DB/Test/Unit/GenericMapperTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Test/Unit/Helper/AbstractHelperTest.php b/lib/internal/Magento/Framework/DB/Test/Unit/Helper/AbstractHelperTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Test/Unit/Helper/Mysql/FulltextTest.php b/lib/internal/Magento/Framework/DB/Test/Unit/Helper/Mysql/FulltextTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Test/Unit/Logger/FileTest.php b/lib/internal/Magento/Framework/DB/Test/Unit/Logger/FileTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Test/Unit/Platform/QuoteTest.php b/lib/internal/Magento/Framework/DB/Test/Unit/Platform/QuoteTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Test/Unit/ProfilerTest.php b/lib/internal/Magento/Framework/DB/Test/Unit/ProfilerTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Test/Unit/QueryTest.php b/lib/internal/Magento/Framework/DB/Test/Unit/QueryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Test/Unit/Select/ColumnsRendererTest.php b/lib/internal/Magento/Framework/DB/Test/Unit/Select/ColumnsRendererTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Test/Unit/Select/CompositeQueryModifierTest.php b/lib/internal/Magento/Framework/DB/Test/Unit/Select/CompositeQueryModifierTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Test/Unit/Select/DistinctRendererTest.php b/lib/internal/Magento/Framework/DB/Test/Unit/Select/DistinctRendererTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Test/Unit/Select/ForUpdateRendererTest.php b/lib/internal/Magento/Framework/DB/Test/Unit/Select/ForUpdateRendererTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Test/Unit/Select/FromRendererTest.php b/lib/internal/Magento/Framework/DB/Test/Unit/Select/FromRendererTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Test/Unit/Select/GroupRendererTest.php b/lib/internal/Magento/Framework/DB/Test/Unit/Select/GroupRendererTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Test/Unit/Select/HavingRendererTest.php b/lib/internal/Magento/Framework/DB/Test/Unit/Select/HavingRendererTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Test/Unit/Select/LikeQueryModifierTest.php b/lib/internal/Magento/Framework/DB/Test/Unit/Select/LikeQueryModifierTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Test/Unit/Select/LimitRendererTest.php b/lib/internal/Magento/Framework/DB/Test/Unit/Select/LimitRendererTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Test/Unit/Select/OrderRendererTest.php b/lib/internal/Magento/Framework/DB/Test/Unit/Select/OrderRendererTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Test/Unit/Select/QueryModifierFactoryTest.php b/lib/internal/Magento/Framework/DB/Test/Unit/Select/QueryModifierFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Test/Unit/Select/RendererProxyTest.php b/lib/internal/Magento/Framework/DB/Test/Unit/Select/RendererProxyTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Test/Unit/Select/SelectRendererTest.php b/lib/internal/Magento/Framework/DB/Test/Unit/Select/SelectRendererTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Test/Unit/Select/UnionRendererTest.php b/lib/internal/Magento/Framework/DB/Test/Unit/Select/UnionRendererTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Test/Unit/Select/WhereRendererTest.php b/lib/internal/Magento/Framework/DB/Test/Unit/Select/WhereRendererTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Test/Unit/SelectFactoryTest.php b/lib/internal/Magento/Framework/DB/Test/Unit/SelectFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Test/Unit/SelectTest.php b/lib/internal/Magento/Framework/DB/Test/Unit/SelectTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Test/Unit/Sql/LimitExpressionTest.php b/lib/internal/Magento/Framework/DB/Test/Unit/Sql/LimitExpressionTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Test/Unit/Sql/UnionExpressionTest.php b/lib/internal/Magento/Framework/DB/Test/Unit/Sql/UnionExpressionTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Test/Unit/TemporaryTableServiceTest.php b/lib/internal/Magento/Framework/DB/Test/Unit/TemporaryTableServiceTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Test/Unit/Tree/NodeTest.php b/lib/internal/Magento/Framework/DB/Test/Unit/Tree/NodeTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Transaction.php b/lib/internal/Magento/Framework/DB/Transaction.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Tree.php b/lib/internal/Magento/Framework/DB/Tree.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Tree/Node.php b/lib/internal/Magento/Framework/DB/Tree/Node.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DB/Tree/NodeSet.php b/lib/internal/Magento/Framework/DB/Tree/NodeSet.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/AbstractCriteria.php b/lib/internal/Magento/Framework/Data/AbstractCriteria.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/AbstractDataObject.php b/lib/internal/Magento/Framework/Data/AbstractDataObject.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/AbstractSearchCriteriaBuilder.php b/lib/internal/Magento/Framework/Data/AbstractSearchCriteriaBuilder.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/AbstractSearchResult.php b/lib/internal/Magento/Framework/Data/AbstractSearchResult.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Argument/Interpreter/ArrayType.php b/lib/internal/Magento/Framework/Data/Argument/Interpreter/ArrayType.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Argument/Interpreter/BaseStringUtils.php b/lib/internal/Magento/Framework/Data/Argument/Interpreter/BaseStringUtils.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Argument/Interpreter/Boolean.php b/lib/internal/Magento/Framework/Data/Argument/Interpreter/Boolean.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Argument/Interpreter/Composite.php b/lib/internal/Magento/Framework/Data/Argument/Interpreter/Composite.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Argument/Interpreter/Constant.php b/lib/internal/Magento/Framework/Data/Argument/Interpreter/Constant.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Argument/Interpreter/DataObject.php b/lib/internal/Magento/Framework/Data/Argument/Interpreter/DataObject.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Argument/Interpreter/NullType.php b/lib/internal/Magento/Framework/Data/Argument/Interpreter/NullType.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Argument/Interpreter/Number.php b/lib/internal/Magento/Framework/Data/Argument/Interpreter/Number.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Argument/Interpreter/StringUtils.php b/lib/internal/Magento/Framework/Data/Argument/Interpreter/StringUtils.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Argument/InterpreterInterface.php b/lib/internal/Magento/Framework/Data/Argument/InterpreterInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Collection.php b/lib/internal/Magento/Framework/Data/Collection.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Collection/AbstractDb.php b/lib/internal/Magento/Framework/Data/Collection/AbstractDb.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Collection/Db/FetchStrategy/Cache.php b/lib/internal/Magento/Framework/Data/Collection/Db/FetchStrategy/Cache.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Collection/Db/FetchStrategy/Query.php b/lib/internal/Magento/Framework/Data/Collection/Db/FetchStrategy/Query.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Collection/Db/FetchStrategyInterface.php b/lib/internal/Magento/Framework/Data/Collection/Db/FetchStrategyInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Collection/EntityFactory.php b/lib/internal/Magento/Framework/Data/Collection/EntityFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Collection/EntityFactoryInterface.php b/lib/internal/Magento/Framework/Data/Collection/EntityFactoryInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Collection/Filesystem.php b/lib/internal/Magento/Framework/Data/Collection/Filesystem.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Collection/ModelFactory.php b/lib/internal/Magento/Framework/Data/Collection/ModelFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/CollectionDataSourceInterface.php b/lib/internal/Magento/Framework/Data/CollectionDataSourceInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/CollectionModifier.php b/lib/internal/Magento/Framework/Data/CollectionModifier.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/CollectionModifierInterface.php b/lib/internal/Magento/Framework/Data/CollectionModifierInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/DataArray.php b/lib/internal/Magento/Framework/Data/DataArray.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Form.php b/lib/internal/Magento/Framework/Data/Form.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Form/AbstractForm.php b/lib/internal/Magento/Framework/Data/Form/AbstractForm.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Form/Element/AbstractElement.php b/lib/internal/Magento/Framework/Data/Form/Element/AbstractElement.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Form/Element/Button.php b/lib/internal/Magento/Framework/Data/Form/Element/Button.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Form/Element/Checkbox.php b/lib/internal/Magento/Framework/Data/Form/Element/Checkbox.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Form/Element/Checkboxes.php b/lib/internal/Magento/Framework/Data/Form/Element/Checkboxes.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Form/Element/Collection.php b/lib/internal/Magento/Framework/Data/Form/Element/Collection.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Form/Element/CollectionFactory.php b/lib/internal/Magento/Framework/Data/Form/Element/CollectionFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Form/Element/Column.php b/lib/internal/Magento/Framework/Data/Form/Element/Column.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Form/Element/Date.php b/lib/internal/Magento/Framework/Data/Form/Element/Date.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Form/Element/Editablemultiselect.php b/lib/internal/Magento/Framework/Data/Form/Element/Editablemultiselect.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Form/Element/Editor.php b/lib/internal/Magento/Framework/Data/Form/Element/Editor.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Form/Element/Factory.php b/lib/internal/Magento/Framework/Data/Form/Element/Factory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Form/Element/Fieldset.php b/lib/internal/Magento/Framework/Data/Form/Element/Fieldset.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Form/Element/File.php b/lib/internal/Magento/Framework/Data/Form/Element/File.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Form/Element/Gallery.php b/lib/internal/Magento/Framework/Data/Form/Element/Gallery.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Form/Element/Hidden.php b/lib/internal/Magento/Framework/Data/Form/Element/Hidden.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Form/Element/Image.php b/lib/internal/Magento/Framework/Data/Form/Element/Image.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Form/Element/Imagefile.php b/lib/internal/Magento/Framework/Data/Form/Element/Imagefile.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Form/Element/Label.php b/lib/internal/Magento/Framework/Data/Form/Element/Label.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Form/Element/Link.php b/lib/internal/Magento/Framework/Data/Form/Element/Link.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Form/Element/Multiline.php b/lib/internal/Magento/Framework/Data/Form/Element/Multiline.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Form/Element/Multiselect.php b/lib/internal/Magento/Framework/Data/Form/Element/Multiselect.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Form/Element/Note.php b/lib/internal/Magento/Framework/Data/Form/Element/Note.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Form/Element/Obscure.php b/lib/internal/Magento/Framework/Data/Form/Element/Obscure.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Form/Element/Password.php b/lib/internal/Magento/Framework/Data/Form/Element/Password.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Form/Element/Radio.php b/lib/internal/Magento/Framework/Data/Form/Element/Radio.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Form/Element/Radios.php b/lib/internal/Magento/Framework/Data/Form/Element/Radios.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Form/Element/Renderer/RendererInterface.php b/lib/internal/Magento/Framework/Data/Form/Element/Renderer/RendererInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Form/Element/Reset.php b/lib/internal/Magento/Framework/Data/Form/Element/Reset.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Form/Element/Select.php b/lib/internal/Magento/Framework/Data/Form/Element/Select.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Form/Element/Submit.php b/lib/internal/Magento/Framework/Data/Form/Element/Submit.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Form/Element/Text.php b/lib/internal/Magento/Framework/Data/Form/Element/Text.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Form/Element/Textarea.php b/lib/internal/Magento/Framework/Data/Form/Element/Textarea.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Form/Element/Time.php b/lib/internal/Magento/Framework/Data/Form/Element/Time.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Form/ElementFactory.php b/lib/internal/Magento/Framework/Data/Form/ElementFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Form/Filter/Date.php b/lib/internal/Magento/Framework/Data/Form/Filter/Date.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Form/Filter/Escapehtml.php b/lib/internal/Magento/Framework/Data/Form/Filter/Escapehtml.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Form/Filter/FilterInterface.php b/lib/internal/Magento/Framework/Data/Form/Filter/FilterInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Form/Filter/Striptags.php b/lib/internal/Magento/Framework/Data/Form/Filter/Striptags.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Form/Filter/Trim.php b/lib/internal/Magento/Framework/Data/Form/Filter/Trim.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Form/FilterFactory.php b/lib/internal/Magento/Framework/Data/Form/FilterFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Form/FormKey.php b/lib/internal/Magento/Framework/Data/Form/FormKey.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Form/FormKey/Validator.php b/lib/internal/Magento/Framework/Data/Form/FormKey/Validator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/FormFactory.php b/lib/internal/Magento/Framework/Data/FormFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Graph.php b/lib/internal/Magento/Framework/Data/Graph.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Helper/PostHelper.php b/lib/internal/Magento/Framework/Data/Helper/PostHelper.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/ObjectFactory.php b/lib/internal/Magento/Framework/Data/ObjectFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/OptionSourceInterface.php b/lib/internal/Magento/Framework/Data/OptionSourceInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/README.md b/lib/internal/Magento/Framework/Data/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Schema.php b/lib/internal/Magento/Framework/Data/Schema.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/SearchResultInterface.php b/lib/internal/Magento/Framework/Data/SearchResultInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/SearchResultIterator.php b/lib/internal/Magento/Framework/Data/SearchResultIterator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/SearchResultIteratorFactory.php b/lib/internal/Magento/Framework/Data/SearchResultIteratorFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/SearchResultProcessor.php b/lib/internal/Magento/Framework/Data/SearchResultProcessor.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/SearchResultProcessorFactory.php b/lib/internal/Magento/Framework/Data/SearchResultProcessorFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/SearchResultProcessorInterface.php b/lib/internal/Magento/Framework/Data/SearchResultProcessorInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Structure.php b/lib/internal/Magento/Framework/Data/Structure.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/AbstractCriteriaTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/AbstractCriteriaTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/AbstractDataObjectTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/AbstractDataObjectTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/AbstractSearchResultTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/AbstractSearchResultTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Argument/Interpreter/ArrayTypeTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/Argument/Interpreter/ArrayTypeTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Argument/Interpreter/BooleanTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/Argument/Interpreter/BooleanTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Argument/Interpreter/CompositeTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/Argument/Interpreter/CompositeTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Argument/Interpreter/ConstantTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/Argument/Interpreter/ConstantTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Argument/Interpreter/NullTypeTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/Argument/Interpreter/NullTypeTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Argument/Interpreter/NumberTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/Argument/Interpreter/NumberTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Argument/XsdTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/Argument/XsdTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Argument/_files/typesInvalidArray.php b/lib/internal/Magento/Framework/Data/Test/Unit/Argument/_files/typesInvalidArray.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Argument/_files/types_schema.xsd b/lib/internal/Magento/Framework/Data/Test/Unit/Argument/_files/types_schema.xsd
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Argument/_files/types_valid.xml b/lib/internal/Magento/Framework/Data/Test/Unit/Argument/_files/types_valid.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Collection/Db/FetchStrategy/CacheTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/Collection/Db/FetchStrategy/CacheTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Collection/Db/FetchStrategy/QueryTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/Collection/Db/FetchStrategy/QueryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Collection/DbCollection.php b/lib/internal/Magento/Framework/Data/Test/Unit/Collection/DbCollection.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Collection/DbTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/Collection/DbTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Collection/FilesystemTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/Collection/FilesystemTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/CollectionTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Criteria/Sample.php b/lib/internal/Magento/Framework/Data/Test/Unit/Criteria/Sample.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Form/AbstractFormTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/Form/AbstractFormTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/AbstractElementTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/AbstractElementTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/ButtonTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/ButtonTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/CheckboxTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/CheckboxTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/CollectionFactoryTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/CollectionFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/ColumnTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/ColumnTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/DateTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/DateTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/EditablemultiselectTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/EditablemultiselectTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/EditorTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/EditorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/FactoryTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/FactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/FileTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/FileTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/HiddenTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/HiddenTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/ImageTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/ImageTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/ImagefileTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/ImagefileTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/LabelTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/LabelTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/LinkTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/LinkTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/MultilineTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/MultilineTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/MultiselectTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/MultiselectTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/NoteTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/NoteTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/ObscureTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/ObscureTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/PasswordTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/PasswordTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/RadioTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/RadioTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/ResetTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/ResetTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/SubmitTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/SubmitTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/TextTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/TextTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/TextareaTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/Form/Element/TextareaTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Form/FilterFactoryTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/Form/FilterFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Form/FormKey/ValidatorTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/Form/FormKey/ValidatorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Form/FormKeyTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/Form/FormKeyTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/FormFactoryTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/FormFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/FormTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/FormTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/GraphTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/GraphTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Helper/PostHelperTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/Helper/PostHelperTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/SearchCriteriaBuilderTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/SearchCriteriaBuilderTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/SearchResultProcessorTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/SearchResultProcessorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/StructureTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/StructureTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Stub/DataObject.php b/lib/internal/Magento/Framework/Data/Test/Unit/Stub/DataObject.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Stub/SearchCriteriaBuilder.php b/lib/internal/Magento/Framework/Data/Test/Unit/Stub/SearchCriteriaBuilder.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Stub/SearchResult.php b/lib/internal/Magento/Framework/Data/Test/Unit/Stub/SearchResult.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/Tree/Node/CollectionTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/Tree/Node/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Test/Unit/TreeTest.php b/lib/internal/Magento/Framework/Data/Test/Unit/TreeTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Tree.php b/lib/internal/Magento/Framework/Data/Tree.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Tree/Db.php b/lib/internal/Magento/Framework/Data/Tree/Db.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Tree/Dbp.php b/lib/internal/Magento/Framework/Data/Tree/Dbp.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Tree/Node.php b/lib/internal/Magento/Framework/Data/Tree/Node.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Tree/Node/Collection.php b/lib/internal/Magento/Framework/Data/Tree/Node/Collection.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Tree/NodeFactory.php b/lib/internal/Magento/Framework/Data/Tree/NodeFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/TreeFactory.php b/lib/internal/Magento/Framework/Data/TreeFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/ValueSourceInterface.php b/lib/internal/Magento/Framework/Data/ValueSourceInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/Wysiwyg/Normalizer.php b/lib/internal/Magento/Framework/Data/Wysiwyg/Normalizer.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Data/etc/argument/types.xsd b/lib/internal/Magento/Framework/Data/etc/argument/types.xsd
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DataObject.php b/lib/internal/Magento/Framework/DataObject.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DataObject/Cache.php b/lib/internal/Magento/Framework/DataObject/Cache.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DataObject/Copy.php b/lib/internal/Magento/Framework/DataObject/Copy.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DataObject/Copy/Config.php b/lib/internal/Magento/Framework/DataObject/Copy/Config.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DataObject/Copy/Config/Converter.php b/lib/internal/Magento/Framework/DataObject/Copy/Config/Converter.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DataObject/Copy/Config/Data.php b/lib/internal/Magento/Framework/DataObject/Copy/Config/Data.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DataObject/Copy/Config/Data/Proxy.php b/lib/internal/Magento/Framework/DataObject/Copy/Config/Data/Proxy.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DataObject/Copy/Config/Reader.php b/lib/internal/Magento/Framework/DataObject/Copy/Config/Reader.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DataObject/Copy/Config/SchemaLocator.php b/lib/internal/Magento/Framework/DataObject/Copy/Config/SchemaLocator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DataObject/Factory.php b/lib/internal/Magento/Framework/DataObject/Factory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DataObject/IdentityGeneratorInterface.php b/lib/internal/Magento/Framework/DataObject/IdentityGeneratorInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DataObject/IdentityInterface.php b/lib/internal/Magento/Framework/DataObject/IdentityInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DataObject/IdentityService.php b/lib/internal/Magento/Framework/DataObject/IdentityService.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DataObject/KeyValueObjectInterface.php b/lib/internal/Magento/Framework/DataObject/KeyValueObjectInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DataObject/Mapper.php b/lib/internal/Magento/Framework/DataObject/Mapper.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DataObject/README.md b/lib/internal/Magento/Framework/DataObject/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DataObject/Test/Unit/CacheTest.php b/lib/internal/Magento/Framework/DataObject/Test/Unit/CacheTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DataObject/Test/Unit/Copy/Config/ConverterTest.php b/lib/internal/Magento/Framework/DataObject/Test/Unit/Copy/Config/ConverterTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DataObject/Test/Unit/Copy/Config/SchemaLocatorTest.php b/lib/internal/Magento/Framework/DataObject/Test/Unit/Copy/Config/SchemaLocatorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DataObject/Test/Unit/Copy/Config/_files/fieldset.xml b/lib/internal/Magento/Framework/DataObject/Test/Unit/Copy/Config/_files/fieldset.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DataObject/Test/Unit/Copy/Config/_files/fieldset_config.php b/lib/internal/Magento/Framework/DataObject/Test/Unit/Copy/Config/_files/fieldset_config.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DataObject/Test/Unit/Copy/ConfigTest.php b/lib/internal/Magento/Framework/DataObject/Test/Unit/Copy/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DataObject/Test/Unit/CopyTest.php b/lib/internal/Magento/Framework/DataObject/Test/Unit/CopyTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DataObject/Test/Unit/MapperTest.php b/lib/internal/Magento/Framework/DataObject/Test/Unit/MapperTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DataObject/etc/fieldset.xsd b/lib/internal/Magento/Framework/DataObject/etc/fieldset.xsd
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DataObject/etc/fieldset_file.xsd b/lib/internal/Magento/Framework/DataObject/etc/fieldset_file.xsd
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Debug.php b/lib/internal/Magento/Framework/Debug.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/DomDocument/DomDocumentFactory.php b/lib/internal/Magento/Framework/DomDocument/DomDocumentFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Encryption/Crypt.php b/lib/internal/Magento/Framework/Encryption/Crypt.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Encryption/Encryptor.php b/lib/internal/Magento/Framework/Encryption/Encryptor.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Encryption/EncryptorInterface.php b/lib/internal/Magento/Framework/Encryption/EncryptorInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Encryption/Helper/Security.php b/lib/internal/Magento/Framework/Encryption/Helper/Security.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Encryption/README.md b/lib/internal/Magento/Framework/Encryption/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Encryption/Test/Unit/Crypt/_files/_cipher_info.php b/lib/internal/Magento/Framework/Encryption/Test/Unit/Crypt/_files/_cipher_info.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Encryption/Test/Unit/Crypt/_files/_crypt_fixtures.php b/lib/internal/Magento/Framework/Encryption/Test/Unit/Crypt/_files/_crypt_fixtures.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Encryption/Test/Unit/CryptTest.php b/lib/internal/Magento/Framework/Encryption/Test/Unit/CryptTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Encryption/Test/Unit/EncryptorTest.php b/lib/internal/Magento/Framework/Encryption/Test/Unit/EncryptorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Encryption/Test/Unit/Helper/SecurityTest.php b/lib/internal/Magento/Framework/Encryption/Test/Unit/Helper/SecurityTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Encryption/Test/Unit/UrlCoderTest.php b/lib/internal/Magento/Framework/Encryption/Test/Unit/UrlCoderTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Encryption/UrlCoder.php b/lib/internal/Magento/Framework/Encryption/UrlCoder.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/AbstractModelHydrator.php b/lib/internal/Magento/Framework/EntityManager/AbstractModelHydrator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/CallbackHandler.php b/lib/internal/Magento/Framework/EntityManager/CallbackHandler.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/CompositeMapper.php b/lib/internal/Magento/Framework/EntityManager/CompositeMapper.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Db/CreateRow.php b/lib/internal/Magento/Framework/EntityManager/Db/CreateRow.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Db/DeleteRow.php b/lib/internal/Magento/Framework/EntityManager/Db/DeleteRow.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Db/ReadRow.php b/lib/internal/Magento/Framework/EntityManager/Db/ReadRow.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Db/UpdateRow.php b/lib/internal/Magento/Framework/EntityManager/Db/UpdateRow.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/EntityManager.php b/lib/internal/Magento/Framework/EntityManager/EntityManager.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/EntityMetadata.php b/lib/internal/Magento/Framework/EntityManager/EntityMetadata.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/EntityMetadataInterface.php b/lib/internal/Magento/Framework/EntityManager/EntityMetadataInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/EventManager.php b/lib/internal/Magento/Framework/EntityManager/EventManager.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Hydrator.php b/lib/internal/Magento/Framework/EntityManager/Hydrator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/HydratorInterface.php b/lib/internal/Magento/Framework/EntityManager/HydratorInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/HydratorPool.php b/lib/internal/Magento/Framework/EntityManager/HydratorPool.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Mapper.php b/lib/internal/Magento/Framework/EntityManager/Mapper.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/MapperInterface.php b/lib/internal/Magento/Framework/EntityManager/MapperInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/MapperPool.php b/lib/internal/Magento/Framework/EntityManager/MapperPool.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/MetadataPool.php b/lib/internal/Magento/Framework/EntityManager/MetadataPool.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Observer/AfterEntityDelete.php b/lib/internal/Magento/Framework/EntityManager/Observer/AfterEntityDelete.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Observer/AfterEntityLoad.php b/lib/internal/Magento/Framework/EntityManager/Observer/AfterEntityLoad.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Observer/AfterEntitySave.php b/lib/internal/Magento/Framework/EntityManager/Observer/AfterEntitySave.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Observer/BeforeEntityDelete.php b/lib/internal/Magento/Framework/EntityManager/Observer/BeforeEntityDelete.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Observer/BeforeEntityLoad.php b/lib/internal/Magento/Framework/EntityManager/Observer/BeforeEntityLoad.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Observer/BeforeEntitySave.php b/lib/internal/Magento/Framework/EntityManager/Observer/BeforeEntitySave.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Operation/AttributeInterface.php b/lib/internal/Magento/Framework/EntityManager/Operation/AttributeInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Operation/AttributePool.php b/lib/internal/Magento/Framework/EntityManager/Operation/AttributePool.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Operation/CheckIfExists.php b/lib/internal/Magento/Framework/EntityManager/Operation/CheckIfExists.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Operation/CheckIfExistsInterface.php b/lib/internal/Magento/Framework/EntityManager/Operation/CheckIfExistsInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Operation/Create.php b/lib/internal/Magento/Framework/EntityManager/Operation/Create.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Operation/Create/CreateAttributes.php b/lib/internal/Magento/Framework/EntityManager/Operation/Create/CreateAttributes.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Operation/Create/CreateExtensions.php b/lib/internal/Magento/Framework/EntityManager/Operation/Create/CreateExtensions.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Operation/Create/CreateMain.php b/lib/internal/Magento/Framework/EntityManager/Operation/Create/CreateMain.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Operation/CreateInterface.php b/lib/internal/Magento/Framework/EntityManager/Operation/CreateInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Operation/Delete.php b/lib/internal/Magento/Framework/EntityManager/Operation/Delete.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Operation/Delete/DeleteAttributes.php b/lib/internal/Magento/Framework/EntityManager/Operation/Delete/DeleteAttributes.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Operation/Delete/DeleteExtensions.php b/lib/internal/Magento/Framework/EntityManager/Operation/Delete/DeleteExtensions.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Operation/Delete/DeleteMain.php b/lib/internal/Magento/Framework/EntityManager/Operation/Delete/DeleteMain.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Operation/DeleteInterface.php b/lib/internal/Magento/Framework/EntityManager/Operation/DeleteInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Operation/ExtensionInterface.php b/lib/internal/Magento/Framework/EntityManager/Operation/ExtensionInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Operation/ExtensionPool.php b/lib/internal/Magento/Framework/EntityManager/Operation/ExtensionPool.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Operation/Read.php b/lib/internal/Magento/Framework/EntityManager/Operation/Read.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Operation/Read/ReadAttributes.php b/lib/internal/Magento/Framework/EntityManager/Operation/Read/ReadAttributes.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Operation/Read/ReadExtensions.php b/lib/internal/Magento/Framework/EntityManager/Operation/Read/ReadExtensions.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Operation/Read/ReadMain.php b/lib/internal/Magento/Framework/EntityManager/Operation/Read/ReadMain.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Operation/ReadInterface.php b/lib/internal/Magento/Framework/EntityManager/Operation/ReadInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Operation/Update.php b/lib/internal/Magento/Framework/EntityManager/Operation/Update.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Operation/Update/UpdateAttributes.php b/lib/internal/Magento/Framework/EntityManager/Operation/Update/UpdateAttributes.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Operation/Update/UpdateExtensions.php b/lib/internal/Magento/Framework/EntityManager/Operation/Update/UpdateExtensions.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Operation/Update/UpdateMain.php b/lib/internal/Magento/Framework/EntityManager/Operation/Update/UpdateMain.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Operation/UpdateInterface.php b/lib/internal/Magento/Framework/EntityManager/Operation/UpdateInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Operation/ValidatorPool.php b/lib/internal/Magento/Framework/EntityManager/Operation/ValidatorPool.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/OperationInterface.php b/lib/internal/Magento/Framework/EntityManager/OperationInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/OperationPool.php b/lib/internal/Magento/Framework/EntityManager/OperationPool.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/README.md b/lib/internal/Magento/Framework/EntityManager/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Sequence/Sequence.php b/lib/internal/Magento/Framework/EntityManager/Sequence/Sequence.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Sequence/SequenceApplier.php b/lib/internal/Magento/Framework/EntityManager/Sequence/SequenceApplier.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Sequence/SequenceFactory.php b/lib/internal/Magento/Framework/EntityManager/Sequence/SequenceFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Sequence/SequenceManager.php b/lib/internal/Magento/Framework/EntityManager/Sequence/SequenceManager.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Sequence/SequenceRegistry.php b/lib/internal/Magento/Framework/EntityManager/Sequence/SequenceRegistry.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Test/Unit/Db/UpdateRowTest.php b/lib/internal/Magento/Framework/EntityManager/Test/Unit/Db/UpdateRowTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Test/Unit/MapperTest.php b/lib/internal/Magento/Framework/EntityManager/Test/Unit/MapperTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Test/Unit/Operation/CreateTest.php b/lib/internal/Magento/Framework/EntityManager/Test/Unit/Operation/CreateTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Test/Unit/Operation/UpdateTest.php b/lib/internal/Magento/Framework/EntityManager/Test/Unit/Operation/UpdateTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Test/Unit/OperationPoolTest.php b/lib/internal/Magento/Framework/EntityManager/Test/Unit/OperationPoolTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Test/Unit/Sequence/SequenceApplierTest.php b/lib/internal/Magento/Framework/EntityManager/Test/Unit/Sequence/SequenceApplierTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/Test/Unit/TypeResolverTest.php b/lib/internal/Magento/Framework/EntityManager/Test/Unit/TypeResolverTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EntityManager/TypeResolver.php b/lib/internal/Magento/Framework/EntityManager/TypeResolver.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Escaper.php b/lib/internal/Magento/Framework/Escaper.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Event.php b/lib/internal/Magento/Framework/Event.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Event/Collection.php b/lib/internal/Magento/Framework/Event/Collection.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Event/Config.php b/lib/internal/Magento/Framework/Event/Config.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Event/Config/Converter.php b/lib/internal/Magento/Framework/Event/Config/Converter.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Event/Config/Data.php b/lib/internal/Magento/Framework/Event/Config/Data.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Event/Config/Reader.php b/lib/internal/Magento/Framework/Event/Config/Reader.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Event/Config/SchemaLocator.php b/lib/internal/Magento/Framework/Event/Config/SchemaLocator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Event/ConfigInterface.php b/lib/internal/Magento/Framework/Event/ConfigInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Event/Invoker/InvokerDefault.php b/lib/internal/Magento/Framework/Event/Invoker/InvokerDefault.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Event/InvokerInterface.php b/lib/internal/Magento/Framework/Event/InvokerInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Event/Manager.php b/lib/internal/Magento/Framework/Event/Manager.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Event/ManagerInterface.php b/lib/internal/Magento/Framework/Event/ManagerInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Event/Observer.php b/lib/internal/Magento/Framework/Event/Observer.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Event/Observer/Collection.php b/lib/internal/Magento/Framework/Event/Observer/Collection.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Event/Observer/Cron.php b/lib/internal/Magento/Framework/Event/Observer/Cron.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Event/Observer/Regex.php b/lib/internal/Magento/Framework/Event/Observer/Regex.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Event/ObserverFactory.php b/lib/internal/Magento/Framework/Event/ObserverFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Event/ObserverInterface.php b/lib/internal/Magento/Framework/Event/ObserverInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Event/README.md b/lib/internal/Magento/Framework/Event/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Event/Test/Unit/CollectionTest.php b/lib/internal/Magento/Framework/Event/Test/Unit/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Event/Test/Unit/Config/ConverterTest.php b/lib/internal/Magento/Framework/Event/Test/Unit/Config/ConverterTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Event/Test/Unit/Config/SchemaLocatorTest.php b/lib/internal/Magento/Framework/Event/Test/Unit/Config/SchemaLocatorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Event/Test/Unit/Config/XsdTest.php b/lib/internal/Magento/Framework/Event/Test/Unit/Config/XsdTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Event/Test/Unit/Config/_files/event_config.php b/lib/internal/Magento/Framework/Event/Test/Unit/Config/_files/event_config.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Event/Test/Unit/Config/_files/event_config.xml b/lib/internal/Magento/Framework/Event/Test/Unit/Config/_files/event_config.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Event/Test/Unit/Config/_files/event_invalid_config.xml b/lib/internal/Magento/Framework/Event/Test/Unit/Config/_files/event_invalid_config.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Event/Test/Unit/Config/_files/invalidEventsXmlArray.php b/lib/internal/Magento/Framework/Event/Test/Unit/Config/_files/invalidEventsXmlArray.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Event/Test/Unit/Config/_files/valid_events.xml b/lib/internal/Magento/Framework/Event/Test/Unit/Config/_files/valid_events.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Event/Test/Unit/ConfigTest.php b/lib/internal/Magento/Framework/Event/Test/Unit/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Event/Test/Unit/Invoker/InvokerDefaultTest.php b/lib/internal/Magento/Framework/Event/Test/Unit/Invoker/InvokerDefaultTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Event/Test/Unit/Invoker/ObserverExample.php b/lib/internal/Magento/Framework/Event/Test/Unit/Invoker/ObserverExample.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Event/Test/Unit/ManagerStub.php b/lib/internal/Magento/Framework/Event/Test/Unit/ManagerStub.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Event/Test/Unit/ManagerTest.php b/lib/internal/Magento/Framework/Event/Test/Unit/ManagerTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Event/Test/Unit/Observer/CollectionTest.php b/lib/internal/Magento/Framework/Event/Test/Unit/Observer/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Event/Test/Unit/Observer/CronTest.php b/lib/internal/Magento/Framework/Event/Test/Unit/Observer/CronTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Event/Test/Unit/Observer/RegexTest.php b/lib/internal/Magento/Framework/Event/Test/Unit/Observer/RegexTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Event/Test/Unit/ObserverFactoryTest.php b/lib/internal/Magento/Framework/Event/Test/Unit/ObserverFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Event/Test/Unit/ObserverTest.php b/lib/internal/Magento/Framework/Event/Test/Unit/ObserverTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Event/Test/Unit/WrapperFactoryTest.php b/lib/internal/Magento/Framework/Event/Test/Unit/WrapperFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Event/WrapperFactory.php b/lib/internal/Magento/Framework/Event/WrapperFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Event/etc/events.xsd b/lib/internal/Magento/Framework/Event/etc/events.xsd
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/EventFactory.php b/lib/internal/Magento/Framework/EventFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Exception/AbstractAggregateException.php b/lib/internal/Magento/Framework/Exception/AbstractAggregateException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Exception/AlreadyExistsException.php b/lib/internal/Magento/Framework/Exception/AlreadyExistsException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Exception/AuthenticationException.php b/lib/internal/Magento/Framework/Exception/AuthenticationException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Exception/AuthorizationException.php b/lib/internal/Magento/Framework/Exception/AuthorizationException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Exception/ConfigurationMismatchException.php b/lib/internal/Magento/Framework/Exception/ConfigurationMismatchException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Exception/CouldNotDeleteException.php b/lib/internal/Magento/Framework/Exception/CouldNotDeleteException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Exception/CouldNotSaveException.php b/lib/internal/Magento/Framework/Exception/CouldNotSaveException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Exception/CronException.php b/lib/internal/Magento/Framework/Exception/CronException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Exception/EmailNotConfirmedException.php b/lib/internal/Magento/Framework/Exception/EmailNotConfirmedException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Exception/FileSystemException.php b/lib/internal/Magento/Framework/Exception/FileSystemException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Exception/InputException.php b/lib/internal/Magento/Framework/Exception/InputException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Exception/IntegrationException.php b/lib/internal/Magento/Framework/Exception/IntegrationException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Exception/InvalidEmailOrPasswordException.php b/lib/internal/Magento/Framework/Exception/InvalidEmailOrPasswordException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Exception/LocalizedException.php b/lib/internal/Magento/Framework/Exception/LocalizedException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Exception/MailException.php b/lib/internal/Magento/Framework/Exception/MailException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Exception/NoSuchEntityException.php b/lib/internal/Magento/Framework/Exception/NoSuchEntityException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Exception/NotFoundException.php b/lib/internal/Magento/Framework/Exception/NotFoundException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Exception/PaymentException.php b/lib/internal/Magento/Framework/Exception/PaymentException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Exception/Plugin/AuthenticationException.php b/lib/internal/Magento/Framework/Exception/Plugin/AuthenticationException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Exception/README.md b/lib/internal/Magento/Framework/Exception/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Exception/RemoteServiceUnavailableException.php b/lib/internal/Magento/Framework/Exception/RemoteServiceUnavailableException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Exception/RuntimeException.php b/lib/internal/Magento/Framework/Exception/RuntimeException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Exception/SecurityViolationException.php b/lib/internal/Magento/Framework/Exception/SecurityViolationException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Exception/SerializationException.php b/lib/internal/Magento/Framework/Exception/SerializationException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Exception/SessionException.php b/lib/internal/Magento/Framework/Exception/SessionException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Exception/State/ExpiredException.php b/lib/internal/Magento/Framework/Exception/State/ExpiredException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Exception/State/InitException.php b/lib/internal/Magento/Framework/Exception/State/InitException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Exception/State/InputMismatchException.php b/lib/internal/Magento/Framework/Exception/State/InputMismatchException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Exception/State/InvalidTransitionException.php b/lib/internal/Magento/Framework/Exception/State/InvalidTransitionException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Exception/State/UserLockedException.php b/lib/internal/Magento/Framework/Exception/State/UserLockedException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Exception/StateException.php b/lib/internal/Magento/Framework/Exception/StateException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Exception/TemporaryState/CouldNotSaveException.php b/lib/internal/Magento/Framework/Exception/TemporaryState/CouldNotSaveException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Exception/TemporaryStateExceptionInterface.php b/lib/internal/Magento/Framework/Exception/TemporaryStateExceptionInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Exception/Test/Unit/AuthenticationExceptionTest.php b/lib/internal/Magento/Framework/Exception/Test/Unit/AuthenticationExceptionTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Exception/Test/Unit/AuthorizationExceptionTest.php b/lib/internal/Magento/Framework/Exception/Test/Unit/AuthorizationExceptionTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Exception/Test/Unit/EmailNotConfirmedExceptionTest.php b/lib/internal/Magento/Framework/Exception/Test/Unit/EmailNotConfirmedExceptionTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Exception/Test/Unit/InputExceptionTest.php b/lib/internal/Magento/Framework/Exception/Test/Unit/InputExceptionTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Exception/Test/Unit/LocalizedExceptionTest.php b/lib/internal/Magento/Framework/Exception/Test/Unit/LocalizedExceptionTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Exception/Test/Unit/NoSuchEntityExceptionTest.php b/lib/internal/Magento/Framework/Exception/Test/Unit/NoSuchEntityExceptionTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Exception/Test/Unit/State/ExpiredExceptionTest.php b/lib/internal/Magento/Framework/Exception/Test/Unit/State/ExpiredExceptionTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Exception/Test/Unit/State/InputMismatchExceptionTest.php b/lib/internal/Magento/Framework/Exception/Test/Unit/State/InputMismatchExceptionTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Exception/Test/Unit/State/InvalidTransitionExceptionTest.php b/lib/internal/Magento/Framework/Exception/Test/Unit/State/InvalidTransitionExceptionTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Exception/Test/Unit/StateExceptionTest.php b/lib/internal/Magento/Framework/Exception/Test/Unit/StateExceptionTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Exception/ValidatorException.php b/lib/internal/Magento/Framework/Exception/ValidatorException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/File/Csv.php b/lib/internal/Magento/Framework/File/Csv.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/File/CsvMulty.php b/lib/internal/Magento/Framework/File/CsvMulty.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/File/Mime.php b/lib/internal/Magento/Framework/File/Mime.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/File/README.md b/lib/internal/Magento/Framework/File/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/File/Size.php b/lib/internal/Magento/Framework/File/Size.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/File/Test/Unit/CsvTest.php b/lib/internal/Magento/Framework/File/Test/Unit/CsvTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/File/Test/Unit/MimeTest.php b/lib/internal/Magento/Framework/File/Test/Unit/MimeTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/File/Test/Unit/Transfer/Adapter/HttpTest.php b/lib/internal/Magento/Framework/File/Test/Unit/Transfer/Adapter/HttpTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/File/Test/Unit/_files/UPPERCASE.WEIRD b/lib/internal/Magento/Framework/File/Test/Unit/_files/UPPERCASE.WEIRD
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/File/Test/Unit/_files/file.weird b/lib/internal/Magento/Framework/File/Test/Unit/_files/file.weird
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/File/Test/Unit/_files/javascript.js b/lib/internal/Magento/Framework/File/Test/Unit/_files/javascript.js
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/File/Transfer/Adapter/Http.php b/lib/internal/Magento/Framework/File/Transfer/Adapter/Http.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/File/Uploader.php b/lib/internal/Magento/Framework/File/Uploader.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/File/UploaderFactory.php b/lib/internal/Magento/Framework/File/UploaderFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filesystem.php b/lib/internal/Magento/Framework/Filesystem.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filesystem/Directory/Read.php b/lib/internal/Magento/Framework/Filesystem/Directory/Read.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filesystem/Directory/ReadFactory.php b/lib/internal/Magento/Framework/Filesystem/Directory/ReadFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filesystem/Directory/ReadInterface.php b/lib/internal/Magento/Framework/Filesystem/Directory/ReadInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filesystem/Directory/Write.php b/lib/internal/Magento/Framework/Filesystem/Directory/Write.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filesystem/Directory/WriteFactory.php b/lib/internal/Magento/Framework/Filesystem/Directory/WriteFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filesystem/Directory/WriteInterface.php b/lib/internal/Magento/Framework/Filesystem/Directory/WriteInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filesystem/DirectoryList.php b/lib/internal/Magento/Framework/Filesystem/DirectoryList.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filesystem/Driver/File.php b/lib/internal/Magento/Framework/Filesystem/Driver/File.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filesystem/Driver/Http.php b/lib/internal/Magento/Framework/Filesystem/Driver/Http.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filesystem/Driver/Https.php b/lib/internal/Magento/Framework/Filesystem/Driver/Https.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filesystem/Driver/Zlib.php b/lib/internal/Magento/Framework/Filesystem/Driver/Zlib.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filesystem/DriverInterface.php b/lib/internal/Magento/Framework/Filesystem/DriverInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filesystem/DriverPool.php b/lib/internal/Magento/Framework/Filesystem/DriverPool.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filesystem/File/Read.php b/lib/internal/Magento/Framework/Filesystem/File/Read.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filesystem/File/ReadFactory.php b/lib/internal/Magento/Framework/Filesystem/File/ReadFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filesystem/File/ReadInterface.php b/lib/internal/Magento/Framework/Filesystem/File/ReadInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filesystem/File/Write.php b/lib/internal/Magento/Framework/Filesystem/File/Write.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filesystem/File/WriteFactory.php b/lib/internal/Magento/Framework/Filesystem/File/WriteFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filesystem/File/WriteInterface.php b/lib/internal/Magento/Framework/Filesystem/File/WriteInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filesystem/FileResolver.php b/lib/internal/Magento/Framework/Filesystem/FileResolver.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filesystem/Filter/ExcludeFilter.php b/lib/internal/Magento/Framework/Filesystem/Filter/ExcludeFilter.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filesystem/Glob.php b/lib/internal/Magento/Framework/Filesystem/Glob.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filesystem/Io/AbstractIo.php b/lib/internal/Magento/Framework/Filesystem/Io/AbstractIo.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filesystem/Io/File.php b/lib/internal/Magento/Framework/Filesystem/Io/File.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filesystem/Io/Ftp.php b/lib/internal/Magento/Framework/Filesystem/Io/Ftp.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filesystem/Io/IoInterface.php b/lib/internal/Magento/Framework/Filesystem/Io/IoInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filesystem/Io/Sftp.php b/lib/internal/Magento/Framework/Filesystem/Io/Sftp.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filesystem/README.md b/lib/internal/Magento/Framework/Filesystem/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filesystem/Test/Unit/Directory/ReadTest.php b/lib/internal/Magento/Framework/Filesystem/Test/Unit/Directory/ReadTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filesystem/Test/Unit/Directory/WriteTest.php b/lib/internal/Magento/Framework/Filesystem/Test/Unit/Directory/WriteTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filesystem/Test/Unit/DirectoryListTest.php b/lib/internal/Magento/Framework/Filesystem/Test/Unit/DirectoryListTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filesystem/Test/Unit/Driver/FileTest.php b/lib/internal/Magento/Framework/Filesystem/Test/Unit/Driver/FileTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filesystem/Test/Unit/Driver/HttpTest.php b/lib/internal/Magento/Framework/Filesystem/Test/Unit/Driver/HttpTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filesystem/Test/Unit/Driver/HttpsTest.php b/lib/internal/Magento/Framework/Filesystem/Test/Unit/Driver/HttpsTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filesystem/Test/Unit/DriverPoolTest.php b/lib/internal/Magento/Framework/Filesystem/Test/Unit/DriverPoolTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filesystem/Test/Unit/File/ExcludeFilterTest.php b/lib/internal/Magento/Framework/Filesystem/Test/Unit/File/ExcludeFilterTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filesystem/Test/Unit/File/ReadFactoryTest.php b/lib/internal/Magento/Framework/Filesystem/Test/Unit/File/ReadFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filesystem/Test/Unit/File/ReadTest.php b/lib/internal/Magento/Framework/Filesystem/Test/Unit/File/ReadTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filesystem/Test/Unit/File/WriteFactoryTest.php b/lib/internal/Magento/Framework/Filesystem/Test/Unit/File/WriteFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filesystem/Test/Unit/File/WriteTest.php b/lib/internal/Magento/Framework/Filesystem/Test/Unit/File/WriteTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filesystem/Test/Unit/FileResolverTest.php b/lib/internal/Magento/Framework/Filesystem/Test/Unit/FileResolverTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filesystem/Test/Unit/_files/http_mock.php b/lib/internal/Magento/Framework/Filesystem/Test/Unit/_files/http_mock.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/AbstractFactory.php b/lib/internal/Magento/Framework/Filter/AbstractFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/ArrayFilter.php b/lib/internal/Magento/Framework/Filter/ArrayFilter.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/DataObject.php b/lib/internal/Magento/Framework/Filter/DataObject.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/DataObject/Grid.php b/lib/internal/Magento/Framework/Filter/DataObject/Grid.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/Decrypt.php b/lib/internal/Magento/Framework/Filter/Decrypt.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/Email.php b/lib/internal/Magento/Framework/Filter/Email.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/Encrypt.php b/lib/internal/Magento/Framework/Filter/Encrypt.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/Encrypt/AdapterInterface.php b/lib/internal/Magento/Framework/Filter/Encrypt/AdapterInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/Encrypt/Basic.php b/lib/internal/Magento/Framework/Filter/Encrypt/Basic.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/Factory.php b/lib/internal/Magento/Framework/Filter/Factory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/FactoryInterface.php b/lib/internal/Magento/Framework/Filter/FactoryInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/FilterManager.php b/lib/internal/Magento/Framework/Filter/FilterManager.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/FilterManager/Config.php b/lib/internal/Magento/Framework/Filter/FilterManager/Config.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/FilterManager/ConfigInterface.php b/lib/internal/Magento/Framework/Filter/FilterManager/ConfigInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/Input.php b/lib/internal/Magento/Framework/Filter/Input.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/Input/MaliciousCode.php b/lib/internal/Magento/Framework/Filter/Input/MaliciousCode.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/LocalizedToNormalized.php b/lib/internal/Magento/Framework/Filter/LocalizedToNormalized.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/Money.php b/lib/internal/Magento/Framework/Filter/Money.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/RemoveAccents.php b/lib/internal/Magento/Framework/Filter/RemoveAccents.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/RemoveTags.php b/lib/internal/Magento/Framework/Filter/RemoveTags.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/SplitWords.php b/lib/internal/Magento/Framework/Filter/SplitWords.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/Sprintf.php b/lib/internal/Magento/Framework/Filter/Sprintf.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/StripTags.php b/lib/internal/Magento/Framework/Filter/StripTags.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/Template.php b/lib/internal/Magento/Framework/Filter/Template.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/Template/Simple.php b/lib/internal/Magento/Framework/Filter/Template/Simple.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/Template/Tokenizer/AbstractTokenizer.php b/lib/internal/Magento/Framework/Filter/Template/Tokenizer/AbstractTokenizer.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/Template/Tokenizer/Parameter.php b/lib/internal/Magento/Framework/Filter/Template/Tokenizer/Parameter.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/Template/Tokenizer/Variable.php b/lib/internal/Magento/Framework/Filter/Template/Tokenizer/Variable.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/Test/Unit/AbstractFactoryTest.php b/lib/internal/Magento/Framework/Filter/Test/Unit/AbstractFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/Test/Unit/ArrayFilterTest.php b/lib/internal/Magento/Framework/Filter/Test/Unit/ArrayFilterTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/Test/Unit/DataObject/GridTest.php b/lib/internal/Magento/Framework/Filter/Test/Unit/DataObject/GridTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/Test/Unit/FilterManager/ConfigTest.php b/lib/internal/Magento/Framework/Filter/Test/Unit/FilterManager/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/Test/Unit/FilterManagerTest.php b/lib/internal/Magento/Framework/Filter/Test/Unit/FilterManagerTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/Test/Unit/Input/MaliciousCodeTest.php b/lib/internal/Magento/Framework/Filter/Test/Unit/Input/MaliciousCodeTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/Test/Unit/InputTest.php b/lib/internal/Magento/Framework/Filter/Test/Unit/InputTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/Test/Unit/RemoveAccentsTest.php b/lib/internal/Magento/Framework/Filter/Test/Unit/RemoveAccentsTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/Test/Unit/RemoveTagsTest.php b/lib/internal/Magento/Framework/Filter/Test/Unit/RemoveTagsTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/Test/Unit/SplitWordsTest.php b/lib/internal/Magento/Framework/Filter/Test/Unit/SplitWordsTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/Test/Unit/SprintfTest.php b/lib/internal/Magento/Framework/Filter/Test/Unit/SprintfTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/Test/Unit/StripTagsTest.php b/lib/internal/Magento/Framework/Filter/Test/Unit/StripTagsTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/Test/Unit/Template/SimpleTest.php b/lib/internal/Magento/Framework/Filter/Test/Unit/Template/SimpleTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/Test/Unit/Template/Tokenizer/ParameterTest.php b/lib/internal/Magento/Framework/Filter/Test/Unit/Template/Tokenizer/ParameterTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/Test/Unit/Template/Tokenizer/VariableTest.php b/lib/internal/Magento/Framework/Filter/Test/Unit/Template/Tokenizer/VariableTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/Test/Unit/TemplateTest.php b/lib/internal/Magento/Framework/Filter/Test/Unit/TemplateTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/Test/Unit/TranslitTest.php b/lib/internal/Magento/Framework/Filter/Test/Unit/TranslitTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/Test/Unit/TranslitUrlTest.php b/lib/internal/Magento/Framework/Filter/Test/Unit/TranslitUrlTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/Test/Unit/TruncateTest.php b/lib/internal/Magento/Framework/Filter/Test/Unit/TruncateTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/Translit.php b/lib/internal/Magento/Framework/Filter/Translit.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/TranslitUrl.php b/lib/internal/Magento/Framework/Filter/TranslitUrl.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/Truncate.php b/lib/internal/Magento/Framework/Filter/Truncate.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Filter/ZendFactory.php b/lib/internal/Magento/Framework/Filter/ZendFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Flag.php b/lib/internal/Magento/Framework/Flag.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Flag/FlagResource.php b/lib/internal/Magento/Framework/Flag/FlagResource.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Flag/README.md b/lib/internal/Magento/Framework/Flag/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/FlagFactory.php b/lib/internal/Magento/Framework/FlagFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/FlagManager.php b/lib/internal/Magento/Framework/FlagManager.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/HTTP/Adapter/Curl.php b/lib/internal/Magento/Framework/HTTP/Adapter/Curl.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/HTTP/Adapter/FileTransferFactory.php b/lib/internal/Magento/Framework/HTTP/Adapter/FileTransferFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/HTTP/Authentication.php b/lib/internal/Magento/Framework/HTTP/Authentication.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/HTTP/Client/Curl.php b/lib/internal/Magento/Framework/HTTP/Client/Curl.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/HTTP/Client/Socket.php b/lib/internal/Magento/Framework/HTTP/Client/Socket.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/HTTP/ClientFactory.php b/lib/internal/Magento/Framework/HTTP/ClientFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/HTTP/ClientInterface.php b/lib/internal/Magento/Framework/HTTP/ClientInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/HTTP/Header.php b/lib/internal/Magento/Framework/HTTP/Header.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/HTTP/PhpEnvironment/RemoteAddress.php b/lib/internal/Magento/Framework/HTTP/PhpEnvironment/RemoteAddress.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/HTTP/PhpEnvironment/Request.php b/lib/internal/Magento/Framework/HTTP/PhpEnvironment/Request.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/HTTP/PhpEnvironment/Response.php b/lib/internal/Magento/Framework/HTTP/PhpEnvironment/Response.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/HTTP/PhpEnvironment/ServerAddress.php b/lib/internal/Magento/Framework/HTTP/PhpEnvironment/ServerAddress.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/HTTP/Test/Unit/Adapter/CurlTest.php b/lib/internal/Magento/Framework/HTTP/Test/Unit/Adapter/CurlTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/HTTP/Test/Unit/Adapter/_files/curl_exec_mock.php b/lib/internal/Magento/Framework/HTTP/Test/Unit/Adapter/_files/curl_exec_mock.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/HTTP/Test/Unit/Adapter/_files/curl_response1.txt b/lib/internal/Magento/Framework/HTTP/Test/Unit/Adapter/_files/curl_response1.txt
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/HTTP/Test/Unit/Adapter/_files/curl_response2.txt b/lib/internal/Magento/Framework/HTTP/Test/Unit/Adapter/_files/curl_response2.txt
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/HTTP/Test/Unit/Adapter/_files/curl_response_expected.txt b/lib/internal/Magento/Framework/HTTP/Test/Unit/Adapter/_files/curl_response_expected.txt
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/HTTP/Test/Unit/AuthenticationTest.php b/lib/internal/Magento/Framework/HTTP/Test/Unit/AuthenticationTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/HTTP/Test/Unit/HeaderTest.php b/lib/internal/Magento/Framework/HTTP/Test/Unit/HeaderTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/HTTP/Test/Unit/PhpEnvironment/RemoteAddressTest.php b/lib/internal/Magento/Framework/HTTP/Test/Unit/PhpEnvironment/RemoteAddressTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/HTTP/Test/Unit/PhpEnvironment/RequestTest.php b/lib/internal/Magento/Framework/HTTP/Test/Unit/PhpEnvironment/RequestTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/HTTP/Test/Unit/PhpEnvironment/ResponseTest.php b/lib/internal/Magento/Framework/HTTP/Test/Unit/PhpEnvironment/ResponseTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/HTTP/Test/Unit/PhpEnvironment/ServerAddressTest.php b/lib/internal/Magento/Framework/HTTP/Test/Unit/PhpEnvironment/ServerAddressTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/HTTP/ZendClient.php b/lib/internal/Magento/Framework/HTTP/ZendClient.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Image.php b/lib/internal/Magento/Framework/Image.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Image/Adapter/AbstractAdapter.php b/lib/internal/Magento/Framework/Image/Adapter/AbstractAdapter.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Image/Adapter/AdapterInterface.php b/lib/internal/Magento/Framework/Image/Adapter/AdapterInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Image/Adapter/Config.php b/lib/internal/Magento/Framework/Image/Adapter/Config.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Image/Adapter/ConfigInterface.php b/lib/internal/Magento/Framework/Image/Adapter/ConfigInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Image/Adapter/Gd2.php b/lib/internal/Magento/Framework/Image/Adapter/Gd2.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Image/Adapter/ImageMagick.php b/lib/internal/Magento/Framework/Image/Adapter/ImageMagick.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Image/AdapterFactory.php b/lib/internal/Magento/Framework/Image/AdapterFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Image/Factory.php b/lib/internal/Magento/Framework/Image/Factory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Image/README.md b/lib/internal/Magento/Framework/Image/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Image/Test/Unit/Adapter/AbstractTest.php b/lib/internal/Magento/Framework/Image/Test/Unit/Adapter/AbstractTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Image/Test/Unit/Adapter/Gd2Test.php b/lib/internal/Magento/Framework/Image/Test/Unit/Adapter/Gd2Test.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Image/Test/Unit/Adapter/ImageMagickTest.php b/lib/internal/Magento/Framework/Image/Test/Unit/Adapter/ImageMagickTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Image/Test/Unit/Adapter/_files/global_php_mock.php b/lib/internal/Magento/Framework/Image/Test/Unit/Adapter/_files/global_php_mock.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Image/Test/Unit/Adapter/_files/invalid_image.jpg b/lib/internal/Magento/Framework/Image/Test/Unit/Adapter/_files/invalid_image.jpg
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Image/Test/Unit/AdapterFactoryTest.php b/lib/internal/Magento/Framework/Image/Test/Unit/AdapterFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/AbstractProcessor.php b/lib/internal/Magento/Framework/Indexer/AbstractProcessor.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/Action/Base.php b/lib/internal/Magento/Framework/Indexer/Action/Base.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/Action/Dummy.php b/lib/internal/Magento/Framework/Indexer/Action/Dummy.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/Action/Entity.php b/lib/internal/Magento/Framework/Indexer/Action/Entity.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/ActionFactory.php b/lib/internal/Magento/Framework/Indexer/ActionFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/ActionInterface.php b/lib/internal/Magento/Framework/Indexer/ActionInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/BatchProvider.php b/lib/internal/Magento/Framework/Indexer/BatchProvider.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/BatchProviderInterface.php b/lib/internal/Magento/Framework/Indexer/BatchProviderInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/BatchSizeManagement.php b/lib/internal/Magento/Framework/Indexer/BatchSizeManagement.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/BatchSizeManagementInterface.php b/lib/internal/Magento/Framework/Indexer/BatchSizeManagementInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/CacheContext.php b/lib/internal/Magento/Framework/Indexer/CacheContext.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/Config/Converter.php b/lib/internal/Magento/Framework/Indexer/Config/Converter.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/Config/DependencyInfoProvider.php b/lib/internal/Magento/Framework/Indexer/Config/DependencyInfoProvider.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/Config/DependencyInfoProviderInterface.php b/lib/internal/Magento/Framework/Indexer/Config/DependencyInfoProviderInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/Config/Reader.php b/lib/internal/Magento/Framework/Indexer/Config/Reader.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/Config/SchemaLocator.php b/lib/internal/Magento/Framework/Indexer/Config/SchemaLocator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/ConfigInterface.php b/lib/internal/Magento/Framework/Indexer/ConfigInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/FieldsetInterface.php b/lib/internal/Magento/Framework/Indexer/FieldsetInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/FieldsetPool.php b/lib/internal/Magento/Framework/Indexer/FieldsetPool.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/GridStructure.php b/lib/internal/Magento/Framework/Indexer/GridStructure.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/Handler/AttributeHandler.php b/lib/internal/Magento/Framework/Indexer/Handler/AttributeHandler.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/Handler/ConcatHandler.php b/lib/internal/Magento/Framework/Indexer/Handler/ConcatHandler.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/Handler/DefaultHandler.php b/lib/internal/Magento/Framework/Indexer/Handler/DefaultHandler.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/HandlerInterface.php b/lib/internal/Magento/Framework/Indexer/HandlerInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/HandlerPool.php b/lib/internal/Magento/Framework/Indexer/HandlerPool.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/IndexStructure.php b/lib/internal/Magento/Framework/Indexer/IndexStructure.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/IndexStructureInterface.php b/lib/internal/Magento/Framework/Indexer/IndexStructureInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/IndexTableRowSizeEstimator.php b/lib/internal/Magento/Framework/Indexer/IndexTableRowSizeEstimator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/IndexTableRowSizeEstimatorInterface.php b/lib/internal/Magento/Framework/Indexer/IndexTableRowSizeEstimatorInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/IndexerInterface.php b/lib/internal/Magento/Framework/Indexer/IndexerInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/IndexerRegistry.php b/lib/internal/Magento/Framework/Indexer/IndexerRegistry.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/README.md b/lib/internal/Magento/Framework/Indexer/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/SaveHandler/Batch.php b/lib/internal/Magento/Framework/Indexer/SaveHandler/Batch.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/SaveHandler/Grid.php b/lib/internal/Magento/Framework/Indexer/SaveHandler/Grid.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/SaveHandler/IndexerHandler.php b/lib/internal/Magento/Framework/Indexer/SaveHandler/IndexerHandler.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/SaveHandler/IndexerInterface.php b/lib/internal/Magento/Framework/Indexer/SaveHandler/IndexerInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/SaveHandlerFactory.php b/lib/internal/Magento/Framework/Indexer/SaveHandlerFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/ScopeResolver/FlatScopeResolver.php b/lib/internal/Magento/Framework/Indexer/ScopeResolver/FlatScopeResolver.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/ScopeResolver/IndexScopeResolver.php b/lib/internal/Magento/Framework/Indexer/ScopeResolver/IndexScopeResolver.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/StateInterface.php b/lib/internal/Magento/Framework/Indexer/StateInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/StructureFactory.php b/lib/internal/Magento/Framework/Indexer/StructureFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/Table/Strategy.php b/lib/internal/Magento/Framework/Indexer/Table/Strategy.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/Table/StrategyInterface.php b/lib/internal/Magento/Framework/Indexer/Table/StrategyInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/Test/Unit/ActionFactoryTest.php b/lib/internal/Magento/Framework/Indexer/Test/Unit/ActionFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/Test/Unit/BatchProviderTest.php b/lib/internal/Magento/Framework/Indexer/Test/Unit/BatchProviderTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/Test/Unit/BatchSizeManagementTest.php b/lib/internal/Magento/Framework/Indexer/Test/Unit/BatchSizeManagementTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/Test/Unit/BatchTest.php b/lib/internal/Magento/Framework/Indexer/Test/Unit/BatchTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/Test/Unit/Config/ConverterTest.php b/lib/internal/Magento/Framework/Indexer/Test/Unit/Config/ConverterTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/Test/Unit/Config/DependencyInfoProviderTest.php b/lib/internal/Magento/Framework/Indexer/Test/Unit/Config/DependencyInfoProviderTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/Test/Unit/Config/ReaderTest.php b/lib/internal/Magento/Framework/Indexer/Test/Unit/Config/ReaderTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/Test/Unit/Config/SchemaLocatorTest.php b/lib/internal/Magento/Framework/Indexer/Test/Unit/Config/SchemaLocatorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/Test/Unit/GridStructureTest.php b/lib/internal/Magento/Framework/Indexer/Test/Unit/GridStructureTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/Test/Unit/Handler/AttributeHandlerTest.php b/lib/internal/Magento/Framework/Indexer/Test/Unit/Handler/AttributeHandlerTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/Test/Unit/IndexStructureTest.php b/lib/internal/Magento/Framework/Indexer/Test/Unit/IndexStructureTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/Test/Unit/IndexTableRowSizeEstimatorTest.php b/lib/internal/Magento/Framework/Indexer/Test/Unit/IndexTableRowSizeEstimatorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/Test/Unit/IndexerRegistryTest.php b/lib/internal/Magento/Framework/Indexer/Test/Unit/IndexerRegistryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/Test/Unit/ScopeResolver/IndexScopeResolverTest.php b/lib/internal/Magento/Framework/Indexer/Test/Unit/ScopeResolver/IndexScopeResolverTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/Test/Unit/StrategyTest.php b/lib/internal/Magento/Framework/Indexer/Test/Unit/StrategyTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/Test/Unit/XsdTest.php b/lib/internal/Magento/Framework/Indexer/Test/Unit/XsdTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/Test/Unit/_files/indexer_config.php b/lib/internal/Magento/Framework/Indexer/Test/Unit/_files/indexer_config.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/Test/Unit/_files/indexer_merged_one.xml b/lib/internal/Magento/Framework/Indexer/Test/Unit/_files/indexer_merged_one.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/Test/Unit/_files/indexer_merged_two.xml b/lib/internal/Magento/Framework/Indexer/Test/Unit/_files/indexer_merged_two.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/Test/Unit/_files/indexer_one.xml b/lib/internal/Magento/Framework/Indexer/Test/Unit/_files/indexer_one.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/Test/Unit/_files/indexer_three.xml b/lib/internal/Magento/Framework/Indexer/Test/Unit/_files/indexer_three.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/Test/Unit/_files/indexer_two.xml b/lib/internal/Magento/Framework/Indexer/Test/Unit/_files/indexer_two.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/Test/Unit/_files/invalidIndexerXmlArray.php b/lib/internal/Magento/Framework/Indexer/Test/Unit/_files/invalidIndexerXmlArray.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/Test/Unit/_files/valid_indexer.xml b/lib/internal/Magento/Framework/Indexer/Test/Unit/_files/valid_indexer.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/etc/indexer.xsd b/lib/internal/Magento/Framework/Indexer/etc/indexer.xsd
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Indexer/etc/indexer_merged.xsd b/lib/internal/Magento/Framework/Indexer/etc/indexer_merged.xsd
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Interception/Code/Generator/Interceptor.php b/lib/internal/Magento/Framework/Interception/Code/Generator/Interceptor.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Interception/Code/InterfaceValidator.php b/lib/internal/Magento/Framework/Interception/Code/InterfaceValidator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Interception/Config/Config.php b/lib/internal/Magento/Framework/Interception/Config/Config.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Interception/ConfigInterface.php b/lib/internal/Magento/Framework/Interception/ConfigInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Interception/Definition/Runtime.php b/lib/internal/Magento/Framework/Interception/Definition/Runtime.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Interception/DefinitionInterface.php b/lib/internal/Magento/Framework/Interception/DefinitionInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Interception/Interceptor.php b/lib/internal/Magento/Framework/Interception/Interceptor.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Interception/InterceptorInterface.php b/lib/internal/Magento/Framework/Interception/InterceptorInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Interception/ObjectManager/Config/Compiled.php b/lib/internal/Magento/Framework/Interception/ObjectManager/Config/Compiled.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Interception/ObjectManager/Config/Developer.php b/lib/internal/Magento/Framework/Interception/ObjectManager/Config/Developer.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Interception/ObjectManager/ConfigInterface.php b/lib/internal/Magento/Framework/Interception/ObjectManager/ConfigInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Interception/PluginList/PluginList.php b/lib/internal/Magento/Framework/Interception/PluginList/PluginList.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Interception/PluginListInterface.php b/lib/internal/Magento/Framework/Interception/PluginListInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Interception/Test/Unit/Code/Generator/InterceptorTest.php b/lib/internal/Magento/Framework/Interception/Test/Unit/Code/Generator/InterceptorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Interception/Test/Unit/Code/Generator/_files/Interceptor.txt b/lib/internal/Magento/Framework/Interception/Test/Unit/Code/Generator/_files/Interceptor.txt
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Interception/Test/Unit/Code/Generator/_files/Sample.php b/lib/internal/Magento/Framework/Interception/Test/Unit/Code/Generator/_files/Sample.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Interception/Test/Unit/Code/Generator/_files/TInterceptor.txt b/lib/internal/Magento/Framework/Interception/Test/Unit/Code/Generator/_files/TInterceptor.txt
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Interception/Test/Unit/Code/Generator/_files/TSample.php b/lib/internal/Magento/Framework/Interception/Test/Unit/Code/Generator/_files/TSample.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Interception/Test/Unit/Code/InterfaceValidatorTest.php b/lib/internal/Magento/Framework/Interception/Test/Unit/Code/InterfaceValidatorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Interception/Test/Unit/Config/ConfigTest.php b/lib/internal/Magento/Framework/Interception/Test/Unit/Config/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/InterfaceValidator/Item.php b/lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/InterfaceValidator/Item.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/InterfaceValidator/ItemPlugin/ExtraParameters.php b/lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/InterfaceValidator/ItemPlugin/ExtraParameters.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/InterfaceValidator/ItemPlugin/IncompatibleArgumentsCount.php b/lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/InterfaceValidator/ItemPlugin/IncompatibleArgumentsCount.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/InterfaceValidator/ItemPlugin/IncompatibleArgumentsType.php b/lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/InterfaceValidator/ItemPlugin/IncompatibleArgumentsType.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/InterfaceValidator/ItemPlugin/IncompatibleInterface.php b/lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/InterfaceValidator/ItemPlugin/IncompatibleInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/InterfaceValidator/ItemPlugin/IncorrectSubject.php b/lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/InterfaceValidator/ItemPlugin/IncorrectSubject.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/InterfaceValidator/ItemPlugin/InvalidProceed.php b/lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/InterfaceValidator/ItemPlugin/InvalidProceed.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/InterfaceValidator/ItemPlugin/ValidPlugin.php b/lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/InterfaceValidator/ItemPlugin/ValidPlugin.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/InterfaceValidator/ItemWithArguments.php b/lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/InterfaceValidator/ItemWithArguments.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/Item.php b/lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/Item.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/Item/Enhanced.php b/lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/Item/Enhanced.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/ItemContainer.php b/lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/ItemContainer.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/ItemContainer/Enhanced.php b/lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/ItemContainer/Enhanced.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/ItemContainerPlugin/Simple.php b/lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/ItemContainerPlugin/Simple.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/ItemPlugin/Advanced.php b/lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/ItemPlugin/Advanced.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/ItemPlugin/Simple.php b/lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/ItemPlugin/Simple.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/StartingBackslash.php b/lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/StartingBackslash.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/StartingBackslash/Plugin.php b/lib/internal/Magento/Framework/Interception/Test/Unit/Custom/Module/Model/StartingBackslash/Plugin.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Interception/Test/Unit/ObjectManager/Config/DeveloperTest.php b/lib/internal/Magento/Framework/Interception/Test/Unit/ObjectManager/Config/DeveloperTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Interception/Test/Unit/PluginList/PluginListTest.php b/lib/internal/Magento/Framework/Interception/Test/Unit/PluginList/PluginListTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Interception/Test/Unit/_files/reader_mock_map.php b/lib/internal/Magento/Framework/Interception/Test/Unit/_files/reader_mock_map.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Intl/DateTimeFactory.php b/lib/internal/Magento/Framework/Intl/DateTimeFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Intl/README.md b/lib/internal/Magento/Framework/Intl/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Json/Decoder.php b/lib/internal/Magento/Framework/Json/Decoder.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Json/DecoderInterface.php b/lib/internal/Magento/Framework/Json/DecoderInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Json/Encoder.php b/lib/internal/Magento/Framework/Json/Encoder.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Json/EncoderInterface.php b/lib/internal/Magento/Framework/Json/EncoderInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Json/Helper/Data.php b/lib/internal/Magento/Framework/Json/Helper/Data.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Json/Test/Unit/Helper/DataTest.php b/lib/internal/Magento/Framework/Json/Test/Unit/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/LICENSE.txt b/lib/internal/Magento/Framework/LICENSE.txt
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/LICENSE_AFL.txt b/lib/internal/Magento/Framework/LICENSE_AFL.txt
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Locale/AvailableLocalesInterface.php b/lib/internal/Magento/Framework/Locale/AvailableLocalesInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Locale/Bundle/CurrencyBundle.php b/lib/internal/Magento/Framework/Locale/Bundle/CurrencyBundle.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Locale/Bundle/DataBundle.php b/lib/internal/Magento/Framework/Locale/Bundle/DataBundle.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Locale/Bundle/LanguageBundle.php b/lib/internal/Magento/Framework/Locale/Bundle/LanguageBundle.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Locale/Bundle/RegionBundle.php b/lib/internal/Magento/Framework/Locale/Bundle/RegionBundle.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Locale/Bundle/TimezoneBundle.php b/lib/internal/Magento/Framework/Locale/Bundle/TimezoneBundle.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Locale/Config.php b/lib/internal/Magento/Framework/Locale/Config.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Locale/ConfigInterface.php b/lib/internal/Magento/Framework/Locale/ConfigInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Locale/Currency.php b/lib/internal/Magento/Framework/Locale/Currency.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Locale/CurrencyInterface.php b/lib/internal/Magento/Framework/Locale/CurrencyInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Locale/Deployed/Codes.php b/lib/internal/Magento/Framework/Locale/Deployed/Codes.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Locale/Deployed/Options.php b/lib/internal/Magento/Framework/Locale/Deployed/Options.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Locale/Format.php b/lib/internal/Magento/Framework/Locale/Format.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Locale/FormatInterface.php b/lib/internal/Magento/Framework/Locale/FormatInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Locale/ListsInterface.php b/lib/internal/Magento/Framework/Locale/ListsInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Locale/OptionInterface.php b/lib/internal/Magento/Framework/Locale/OptionInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Locale/README.md b/lib/internal/Magento/Framework/Locale/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Locale/Resolver.php b/lib/internal/Magento/Framework/Locale/Resolver.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Locale/ResolverInterface.php b/lib/internal/Magento/Framework/Locale/ResolverInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Locale/Test/Unit/ConfigTest.php b/lib/internal/Magento/Framework/Locale/Test/Unit/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Locale/Test/Unit/CurrencyTest.php b/lib/internal/Magento/Framework/Locale/Test/Unit/CurrencyTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Locale/Test/Unit/Deployed/CodesTest.php b/lib/internal/Magento/Framework/Locale/Test/Unit/Deployed/CodesTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Locale/Test/Unit/Deployed/OptionsTest.php b/lib/internal/Magento/Framework/Locale/Test/Unit/Deployed/OptionsTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Locale/Test/Unit/FormatTest.php b/lib/internal/Magento/Framework/Locale/Test/Unit/FormatTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Locale/Test/Unit/TranslatedListsTest.php b/lib/internal/Magento/Framework/Locale/Test/Unit/TranslatedListsTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Locale/TranslatedLists.php b/lib/internal/Magento/Framework/Locale/TranslatedLists.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Logger/Handler/Base.php b/lib/internal/Magento/Framework/Logger/Handler/Base.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Logger/Handler/Debug.php b/lib/internal/Magento/Framework/Logger/Handler/Debug.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Logger/Handler/Exception.php b/lib/internal/Magento/Framework/Logger/Handler/Exception.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Logger/Handler/System.php b/lib/internal/Magento/Framework/Logger/Handler/System.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Logger/Monolog.php b/lib/internal/Magento/Framework/Logger/Monolog.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Logger/README.md b/lib/internal/Magento/Framework/Logger/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Logger/Test/Unit/Handler/BaseTest.php b/lib/internal/Magento/Framework/Logger/Test/Unit/Handler/BaseTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Logger/Test/Unit/Handler/SystemTest.php b/lib/internal/Magento/Framework/Logger/Test/Unit/Handler/SystemTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Logger/Test/Unit/MonologTest.php b/lib/internal/Magento/Framework/Logger/Test/Unit/MonologTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mail/Message.php b/lib/internal/Magento/Framework/Mail/Message.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mail/MessageInterface.php b/lib/internal/Magento/Framework/Mail/MessageInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mail/Template/ConfigInterface.php b/lib/internal/Magento/Framework/Mail/Template/ConfigInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mail/Template/Factory.php b/lib/internal/Magento/Framework/Mail/Template/Factory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mail/Template/FactoryInterface.php b/lib/internal/Magento/Framework/Mail/Template/FactoryInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mail/Template/SenderResolverInterface.php b/lib/internal/Magento/Framework/Mail/Template/SenderResolverInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mail/Template/TransportBuilder.php b/lib/internal/Magento/Framework/Mail/Template/TransportBuilder.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mail/Template/TransportBuilderByStore.php b/lib/internal/Magento/Framework/Mail/Template/TransportBuilderByStore.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mail/TemplateInterface.php b/lib/internal/Magento/Framework/Mail/TemplateInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mail/Test/Unit/MessageTest.php b/lib/internal/Magento/Framework/Mail/Test/Unit/MessageTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mail/Test/Unit/Template/FactoryTest.php b/lib/internal/Magento/Framework/Mail/Test/Unit/Template/FactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mail/Test/Unit/Template/TransportBuilderByStoreTest.php b/lib/internal/Magento/Framework/Mail/Test/Unit/Template/TransportBuilderByStoreTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mail/Test/Unit/Template/TransportBuilderTest.php b/lib/internal/Magento/Framework/Mail/Test/Unit/Template/TransportBuilderTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mail/Test/Unit/TransportTest.php b/lib/internal/Magento/Framework/Mail/Test/Unit/TransportTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mail/Transport.php b/lib/internal/Magento/Framework/Mail/Transport.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mail/TransportInterface.php b/lib/internal/Magento/Framework/Mail/TransportInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mail/TransportInterfaceFactory.php b/lib/internal/Magento/Framework/Mail/TransportInterfaceFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Math/Calculator.php b/lib/internal/Magento/Framework/Math/Calculator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Math/Division.php b/lib/internal/Magento/Framework/Math/Division.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Math/README.md b/lib/internal/Magento/Framework/Math/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Math/Random.php b/lib/internal/Magento/Framework/Math/Random.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Math/Test/Unit/CalculatorTest.php b/lib/internal/Magento/Framework/Math/Test/Unit/CalculatorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Math/Test/Unit/DivisionTest.php b/lib/internal/Magento/Framework/Math/Test/Unit/DivisionTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Math/Test/Unit/RandomTest.php b/lib/internal/Magento/Framework/Math/Test/Unit/RandomTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Message/AbstractMessage.php b/lib/internal/Magento/Framework/Message/AbstractMessage.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Message/Collection.php b/lib/internal/Magento/Framework/Message/Collection.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Message/CollectionFactory.php b/lib/internal/Magento/Framework/Message/CollectionFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Message/Error.php b/lib/internal/Magento/Framework/Message/Error.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Message/ExceptionMessageFactory.php b/lib/internal/Magento/Framework/Message/ExceptionMessageFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Message/ExceptionMessageFactoryInterface.php b/lib/internal/Magento/Framework/Message/ExceptionMessageFactoryInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Message/ExceptionMessageFactoryPool.php b/lib/internal/Magento/Framework/Message/ExceptionMessageFactoryPool.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Message/ExceptionMessageLookupFactory.php b/lib/internal/Magento/Framework/Message/ExceptionMessageLookupFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Message/Factory.php b/lib/internal/Magento/Framework/Message/Factory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Message/Manager.php b/lib/internal/Magento/Framework/Message/Manager.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Message/ManagerInterface.php b/lib/internal/Magento/Framework/Message/ManagerInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Message/MessageInterface.php b/lib/internal/Magento/Framework/Message/MessageInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Message/Notice.php b/lib/internal/Magento/Framework/Message/Notice.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Message/PhraseFactory.php b/lib/internal/Magento/Framework/Message/PhraseFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Message/README.md b/lib/internal/Magento/Framework/Message/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Message/Session.php b/lib/internal/Magento/Framework/Message/Session.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Message/Success.php b/lib/internal/Magento/Framework/Message/Success.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Message/Test/Unit/AbstractMessageTest.php b/lib/internal/Magento/Framework/Message/Test/Unit/AbstractMessageTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Message/Test/Unit/CollectionTest.php b/lib/internal/Magento/Framework/Message/Test/Unit/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Message/Test/Unit/ErrorTest.php b/lib/internal/Magento/Framework/Message/Test/Unit/ErrorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Message/Test/Unit/ExceptionMessageFactoryPoolTest.php b/lib/internal/Magento/Framework/Message/Test/Unit/ExceptionMessageFactoryPoolTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Message/Test/Unit/ExceptionMessageFactoryTest.php b/lib/internal/Magento/Framework/Message/Test/Unit/ExceptionMessageFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Message/Test/Unit/ExceptionMessageLookupFactoryTest.php b/lib/internal/Magento/Framework/Message/Test/Unit/ExceptionMessageLookupFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Message/Test/Unit/FactoryTest.php b/lib/internal/Magento/Framework/Message/Test/Unit/FactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Message/Test/Unit/ManagerTest.php b/lib/internal/Magento/Framework/Message/Test/Unit/ManagerTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Message/Test/Unit/NoticeTest.php b/lib/internal/Magento/Framework/Message/Test/Unit/NoticeTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Message/Test/Unit/SuccessTest.php b/lib/internal/Magento/Framework/Message/Test/Unit/SuccessTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Message/Test/Unit/TestingMessage.php b/lib/internal/Magento/Framework/Message/Test/Unit/TestingMessage.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Message/Test/Unit/WarningTest.php b/lib/internal/Magento/Framework/Message/Test/Unit/WarningTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Message/Warning.php b/lib/internal/Magento/Framework/Message/Warning.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/AbstractExtensibleModel.php b/lib/internal/Magento/Framework/Model/AbstractExtensibleModel.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/AbstractModel.php b/lib/internal/Magento/Framework/Model/AbstractModel.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/ActionValidator/RemoveAction.php b/lib/internal/Magento/Framework/Model/ActionValidator/RemoveAction.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/ActionValidator/RemoveAction/Allowed.php b/lib/internal/Magento/Framework/Model/ActionValidator/RemoveAction/Allowed.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/CallbackPool.php b/lib/internal/Magento/Framework/Model/CallbackPool.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/Context.php b/lib/internal/Magento/Framework/Model/Context.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/Entity/RepositoryFactory.php b/lib/internal/Magento/Framework/Model/Entity/RepositoryFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/Entity/Scope.php b/lib/internal/Magento/Framework/Model/Entity/Scope.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/Entity/ScopeFactory.php b/lib/internal/Magento/Framework/Model/Entity/ScopeFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/Entity/ScopeInterface.php b/lib/internal/Magento/Framework/Model/Entity/ScopeInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/Entity/ScopeProviderInterface.php b/lib/internal/Magento/Framework/Model/Entity/ScopeProviderInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/Entity/ScopeResolver.php b/lib/internal/Magento/Framework/Model/Entity/ScopeResolver.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/EntityRegistry.php b/lib/internal/Magento/Framework/Model/EntityRegistry.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/EntitySnapshot.php b/lib/internal/Magento/Framework/Model/EntitySnapshot.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/EntitySnapshot/AttributeProvider.php b/lib/internal/Magento/Framework/Model/EntitySnapshot/AttributeProvider.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/EntitySnapshot/AttributeProviderInterface.php b/lib/internal/Magento/Framework/Model/EntitySnapshot/AttributeProviderInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/Operation/ReadInterface.php b/lib/internal/Magento/Framework/Model/Operation/ReadInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/Operation/WriteInterface.php b/lib/internal/Magento/Framework/Model/Operation/WriteInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/README.md b/lib/internal/Magento/Framework/Model/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/ResourceModel/AbstractResource.php b/lib/internal/Magento/Framework/Model/ResourceModel/AbstractResource.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/ResourceModel/Db/AbstractDb.php b/lib/internal/Magento/Framework/Model/ResourceModel/Db/AbstractDb.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/ResourceModel/Db/Collection/AbstractCollection.php b/lib/internal/Magento/Framework/Model/ResourceModel/Db/Collection/AbstractCollection.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/ResourceModel/Db/Context.php b/lib/internal/Magento/Framework/Model/ResourceModel/Db/Context.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/ResourceModel/Db/ObjectRelationProcessor.php b/lib/internal/Magento/Framework/Model/ResourceModel/Db/ObjectRelationProcessor.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/ResourceModel/Db/Profiler.php b/lib/internal/Magento/Framework/Model/ResourceModel/Db/Profiler.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/ResourceModel/Db/ReadEntityRow.php b/lib/internal/Magento/Framework/Model/ResourceModel/Db/ReadEntityRow.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/ResourceModel/Db/Relation/ActionPool.php b/lib/internal/Magento/Framework/Model/ResourceModel/Db/Relation/ActionPool.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/ResourceModel/Db/TransactionManager.php b/lib/internal/Magento/Framework/Model/ResourceModel/Db/TransactionManager.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/ResourceModel/Db/TransactionManagerInterface.php b/lib/internal/Magento/Framework/Model/ResourceModel/Db/TransactionManagerInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/ResourceModel/Db/ValidateDataIntegrity.php b/lib/internal/Magento/Framework/Model/ResourceModel/Db/ValidateDataIntegrity.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/ResourceModel/Db/VersionControl/AbstractDb.php b/lib/internal/Magento/Framework/Model/ResourceModel/Db/VersionControl/AbstractDb.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/ResourceModel/Db/VersionControl/Collection.php b/lib/internal/Magento/Framework/Model/ResourceModel/Db/VersionControl/Collection.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/ResourceModel/Db/VersionControl/Metadata.php b/lib/internal/Magento/Framework/Model/ResourceModel/Db/VersionControl/Metadata.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/ResourceModel/Db/VersionControl/RelationComposite.php b/lib/internal/Magento/Framework/Model/ResourceModel/Db/VersionControl/RelationComposite.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/ResourceModel/Db/VersionControl/RelationInterface.php b/lib/internal/Magento/Framework/Model/ResourceModel/Db/VersionControl/RelationInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/ResourceModel/Db/VersionControl/Snapshot.php b/lib/internal/Magento/Framework/Model/ResourceModel/Db/VersionControl/Snapshot.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/ResourceModel/Entity/AbstractEntity.php b/lib/internal/Magento/Framework/Model/ResourceModel/Entity/AbstractEntity.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/ResourceModel/Entity/Table.php b/lib/internal/Magento/Framework/Model/ResourceModel/Entity/Table.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/ResourceModel/Iterator.php b/lib/internal/Magento/Framework/Model/ResourceModel/Iterator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/ResourceModel/Type/AbstractType.php b/lib/internal/Magento/Framework/Model/ResourceModel/Type/AbstractType.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/ResourceModel/Type/Db.php b/lib/internal/Magento/Framework/Model/ResourceModel/Type/Db.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/ResourceModel/Type/Db/ConnectionFactory.php b/lib/internal/Magento/Framework/Model/ResourceModel/Type/Db/ConnectionFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/ResourceModel/Type/Db/ConnectionFactoryInterface.php b/lib/internal/Magento/Framework/Model/ResourceModel/Type/Db/ConnectionFactoryInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/ResourceModel/Type/Db/Pdo/Mysql.php b/lib/internal/Magento/Framework/Model/ResourceModel/Type/Db/Pdo/Mysql.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/Test/Unit/AbstractExtensibleModelTest.php b/lib/internal/Magento/Framework/Model/Test/Unit/AbstractExtensibleModelTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/Test/Unit/AbstractModelTest.php b/lib/internal/Magento/Framework/Model/Test/Unit/AbstractModelTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/Test/Unit/ActionValidator/RemoveActionTest.php b/lib/internal/Magento/Framework/Model/Test/Unit/ActionValidator/RemoveActionTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/Test/Unit/EntitySnapshot/AttributeProviderTest.php b/lib/internal/Magento/Framework/Model/Test/Unit/EntitySnapshot/AttributeProviderTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/AbstractResourceStub.php b/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/AbstractResourceStub.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/AbstractResourceTest.php b/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/AbstractResourceTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/Db/AbstractDbTest.php b/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/Db/AbstractDbTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/Db/Collection/AbstractCollectionTest.php b/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/Db/Collection/AbstractCollectionTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/Db/Collection/Uut.php b/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/Db/Collection/Uut.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/Db/CreateEntityRowTest.php b/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/Db/CreateEntityRowTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/Db/DeleteEntityRowTest.php b/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/Db/DeleteEntityRowTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/Db/ReadEntityRowTest.php b/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/Db/ReadEntityRowTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/Db/Relation/ActionPoolTest.php b/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/Db/Relation/ActionPoolTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/Db/UpdateEntityRowTest.php b/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/Db/UpdateEntityRowTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/Db/VersionControl/MetadataTest.php b/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/Db/VersionControl/MetadataTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/Db/VersionControl/RelationCompositeTest.php b/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/Db/VersionControl/RelationCompositeTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/Db/VersionControl/SnapshotTest.php b/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/Db/VersionControl/SnapshotTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/Type/Db/ConnectionFactoryTest.php b/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/Type/Db/ConnectionFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/Type/Db/Pdo/MysqlTest.php b/lib/internal/Magento/Framework/Model/Test/Unit/ResourceModel/Type/Db/Pdo/MysqlTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/ConflictChecker.php b/lib/internal/Magento/Framework/Module/ConflictChecker.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/DbVersionInfo.php b/lib/internal/Magento/Framework/Module/DbVersionInfo.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/Declaration/Converter/Dom.php b/lib/internal/Magento/Framework/Module/Declaration/Converter/Dom.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/DependencyChecker.php b/lib/internal/Magento/Framework/Module/DependencyChecker.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/Dir.php b/lib/internal/Magento/Framework/Module/Dir.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/Dir/Reader.php b/lib/internal/Magento/Framework/Module/Dir/Reader.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/Dir/ReverseResolver.php b/lib/internal/Magento/Framework/Module/Dir/ReverseResolver.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/FullModuleList.php b/lib/internal/Magento/Framework/Module/FullModuleList.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/Manager.php b/lib/internal/Magento/Framework/Module/Manager.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/ModuleList.php b/lib/internal/Magento/Framework/Module/ModuleList.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/ModuleList/Loader.php b/lib/internal/Magento/Framework/Module/ModuleList/Loader.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/ModuleListInterface.php b/lib/internal/Magento/Framework/Module/ModuleListInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/ModuleResource.php b/lib/internal/Magento/Framework/Module/ModuleResource.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/Output/Config.php b/lib/internal/Magento/Framework/Module/Output/Config.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/Output/ConfigInterface.php b/lib/internal/Magento/Framework/Module/Output/ConfigInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/PackageInfo.php b/lib/internal/Magento/Framework/Module/PackageInfo.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/PackageInfoFactory.php b/lib/internal/Magento/Framework/Module/PackageInfoFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/Plugin/DbStatusValidator.php b/lib/internal/Magento/Framework/Module/Plugin/DbStatusValidator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/README.md b/lib/internal/Magento/Framework/Module/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/ResourceInterface.php b/lib/internal/Magento/Framework/Module/ResourceInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/Setup.php b/lib/internal/Magento/Framework/Module/Setup.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/Setup/Context.php b/lib/internal/Magento/Framework/Module/Setup/Context.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/Setup/Migration.php b/lib/internal/Magento/Framework/Module/Setup/Migration.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/Setup/MigrationData.php b/lib/internal/Magento/Framework/Module/Setup/MigrationData.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/Setup/MigrationFactory.php b/lib/internal/Magento/Framework/Module/Setup/MigrationFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/Status.php b/lib/internal/Magento/Framework/Module/Status.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/Test/Unit/ConflictCheckerTest.php b/lib/internal/Magento/Framework/Module/Test/Unit/ConflictCheckerTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/Test/Unit/DbVersionInfoTest.php b/lib/internal/Magento/Framework/Module/Test/Unit/DbVersionInfoTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/Test/Unit/Declaration/Converter/DomTest.php b/lib/internal/Magento/Framework/Module/Test/Unit/Declaration/Converter/DomTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/Test/Unit/Declaration/Converter/_files/converted_valid_module.php b/lib/internal/Magento/Framework/Module/Test/Unit/Declaration/Converter/_files/converted_valid_module.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/Test/Unit/Declaration/Converter/_files/valid_module.xml b/lib/internal/Magento/Framework/Module/Test/Unit/Declaration/Converter/_files/valid_module.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/Test/Unit/DependencyCheckerTest.php b/lib/internal/Magento/Framework/Module/Test/Unit/DependencyCheckerTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/Test/Unit/Dir/ReaderTest.php b/lib/internal/Magento/Framework/Module/Test/Unit/Dir/ReaderTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/Test/Unit/Dir/ReverseResolverTest.php b/lib/internal/Magento/Framework/Module/Test/Unit/Dir/ReverseResolverTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/Test/Unit/DirTest.php b/lib/internal/Magento/Framework/Module/Test/Unit/DirTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/Test/Unit/FullModuleListTest.php b/lib/internal/Magento/Framework/Module/Test/Unit/FullModuleListTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/Test/Unit/ManagerTest.php b/lib/internal/Magento/Framework/Module/Test/Unit/ManagerTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/Test/Unit/ModuleList/LoaderTest.php b/lib/internal/Magento/Framework/Module/Test/Unit/ModuleList/LoaderTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/Test/Unit/ModuleListTest.php b/lib/internal/Magento/Framework/Module/Test/Unit/ModuleListTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/Test/Unit/PackageInfoFactoryTest.php b/lib/internal/Magento/Framework/Module/Test/Unit/PackageInfoFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/Test/Unit/PackageInfoTest.php b/lib/internal/Magento/Framework/Module/Test/Unit/PackageInfoTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/Test/Unit/Plugin/DbStatusValidatorTest.php b/lib/internal/Magento/Framework/Module/Test/Unit/Plugin/DbStatusValidatorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/Test/Unit/Setup/MigrationTest.php b/lib/internal/Magento/Framework/Module/Test/Unit/Setup/MigrationTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/Test/Unit/Setup/_files/data_content_plain_model.php b/lib/internal/Magento/Framework/Module/Test/Unit/Setup/_files/data_content_plain_model.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/Test/Unit/Setup/_files/data_content_plain_pk_fields.php b/lib/internal/Magento/Framework/Module/Test/Unit/Setup/_files/data_content_plain_pk_fields.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/Test/Unit/Setup/_files/data_content_plain_resource.php b/lib/internal/Magento/Framework/Module/Test/Unit/Setup/_files/data_content_plain_resource.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/Test/Unit/Setup/_files/data_content_serialized.php b/lib/internal/Magento/Framework/Module/Test/Unit/Setup/_files/data_content_serialized.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/Test/Unit/Setup/_files/data_content_wiki.php b/lib/internal/Magento/Framework/Module/Test/Unit/Setup/_files/data_content_wiki.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/Test/Unit/Setup/_files/data_content_xml.php b/lib/internal/Magento/Framework/Module/Test/Unit/Setup/_files/data_content_xml.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/Test/Unit/SetupTest.php b/lib/internal/Magento/Framework/Module/Test/Unit/SetupTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/Test/Unit/StatusTest.php b/lib/internal/Magento/Framework/Module/Test/Unit/StatusTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/Test/Unit/_files/Module/data/module_first_setup/.gitignore b/lib/internal/Magento/Framework/Module/Test/Unit/_files/Module/data/module_first_setup/.gitignore
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/Test/Unit/_files/Module/data/module_second_setup/.gitignore b/lib/internal/Magento/Framework/Module/Test/Unit/_files/Module/data/module_second_setup/.gitignore
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/Test/Unit/_files/Module/sql/module_first_setup/.gitignore b/lib/internal/Magento/Framework/Module/Test/Unit/_files/Module/sql/module_first_setup/.gitignore
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Module/etc/module.xsd b/lib/internal/Magento/Framework/Module/etc/module.xsd
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mview/ActionFactory.php b/lib/internal/Magento/Framework/Mview/ActionFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mview/ActionInterface.php b/lib/internal/Magento/Framework/Mview/ActionInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mview/Config.php b/lib/internal/Magento/Framework/Mview/Config.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mview/Config/Converter.php b/lib/internal/Magento/Framework/Mview/Config/Converter.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mview/Config/Data.php b/lib/internal/Magento/Framework/Mview/Config/Data.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mview/Config/Data/Proxy.php b/lib/internal/Magento/Framework/Mview/Config/Data/Proxy.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mview/Config/Reader.php b/lib/internal/Magento/Framework/Mview/Config/Reader.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mview/Config/SchemaLocator.php b/lib/internal/Magento/Framework/Mview/Config/SchemaLocator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mview/ConfigInterface.php b/lib/internal/Magento/Framework/Mview/ConfigInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mview/Processor.php b/lib/internal/Magento/Framework/Mview/Processor.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mview/ProcessorInterface.php b/lib/internal/Magento/Framework/Mview/ProcessorInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mview/Test/Unit/ActionFactoryTest.php b/lib/internal/Magento/Framework/Mview/Test/Unit/ActionFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mview/Test/Unit/Config/ConverterTest.php b/lib/internal/Magento/Framework/Mview/Test/Unit/Config/ConverterTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mview/Test/Unit/Config/Data/ProxyTest.php b/lib/internal/Magento/Framework/Mview/Test/Unit/Config/Data/ProxyTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mview/Test/Unit/Config/DataTest.php b/lib/internal/Magento/Framework/Mview/Test/Unit/Config/DataTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mview/Test/Unit/Config/ReaderTest.php b/lib/internal/Magento/Framework/Mview/Test/Unit/Config/ReaderTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mview/Test/Unit/ConfigTest.php b/lib/internal/Magento/Framework/Mview/Test/Unit/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mview/Test/Unit/ProcessorTest.php b/lib/internal/Magento/Framework/Mview/Test/Unit/ProcessorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mview/Test/Unit/View/ChangelogTest.php b/lib/internal/Magento/Framework/Mview/Test/Unit/View/ChangelogTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mview/Test/Unit/View/CollectionTest.php b/lib/internal/Magento/Framework/Mview/Test/Unit/View/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mview/Test/Unit/View/SubscriptionFactoryTest.php b/lib/internal/Magento/Framework/Mview/Test/Unit/View/SubscriptionFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mview/Test/Unit/View/SubscriptionTest.php b/lib/internal/Magento/Framework/Mview/Test/Unit/View/SubscriptionTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mview/Test/Unit/ViewTest.php b/lib/internal/Magento/Framework/Mview/Test/Unit/ViewTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mview/Test/Unit/XsdTest.php b/lib/internal/Magento/Framework/Mview/Test/Unit/XsdTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mview/Test/Unit/_files/invalidMviewXmlArray.php b/lib/internal/Magento/Framework/Mview/Test/Unit/_files/invalidMviewXmlArray.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mview/Test/Unit/_files/mview_config.php b/lib/internal/Magento/Framework/Mview/Test/Unit/_files/mview_config.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mview/Test/Unit/_files/mview_merged_one.xml b/lib/internal/Magento/Framework/Mview/Test/Unit/_files/mview_merged_one.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mview/Test/Unit/_files/mview_merged_two.xml b/lib/internal/Magento/Framework/Mview/Test/Unit/_files/mview_merged_two.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mview/Test/Unit/_files/mview_one.xml b/lib/internal/Magento/Framework/Mview/Test/Unit/_files/mview_one.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mview/Test/Unit/_files/mview_three.xml b/lib/internal/Magento/Framework/Mview/Test/Unit/_files/mview_three.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mview/Test/Unit/_files/mview_two.xml b/lib/internal/Magento/Framework/Mview/Test/Unit/_files/mview_two.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mview/Test/Unit/_files/valid_mview.xml b/lib/internal/Magento/Framework/Mview/Test/Unit/_files/valid_mview.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mview/View.php b/lib/internal/Magento/Framework/Mview/View.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mview/View/AbstractFactory.php b/lib/internal/Magento/Framework/Mview/View/AbstractFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mview/View/Changelog.php b/lib/internal/Magento/Framework/Mview/View/Changelog.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mview/View/ChangelogInterface.php b/lib/internal/Magento/Framework/Mview/View/ChangelogInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mview/View/ChangelogTableNotExistsException.php b/lib/internal/Magento/Framework/Mview/View/ChangelogTableNotExistsException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mview/View/Collection.php b/lib/internal/Magento/Framework/Mview/View/Collection.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mview/View/CollectionFactory.php b/lib/internal/Magento/Framework/Mview/View/CollectionFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mview/View/CollectionInterface.php b/lib/internal/Magento/Framework/Mview/View/CollectionInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mview/View/State/CollectionFactory.php b/lib/internal/Magento/Framework/Mview/View/State/CollectionFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mview/View/State/CollectionInterface.php b/lib/internal/Magento/Framework/Mview/View/State/CollectionInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mview/View/StateInterface.php b/lib/internal/Magento/Framework/Mview/View/StateInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mview/View/Subscription.php b/lib/internal/Magento/Framework/Mview/View/Subscription.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mview/View/SubscriptionFactory.php b/lib/internal/Magento/Framework/Mview/View/SubscriptionFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mview/View/SubscriptionInterface.php b/lib/internal/Magento/Framework/Mview/View/SubscriptionInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mview/ViewInterface.php b/lib/internal/Magento/Framework/Mview/ViewInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Mview/etc/mview.xsd b/lib/internal/Magento/Framework/Mview/etc/mview.xsd
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Notification/MessageInterface.php b/lib/internal/Magento/Framework/Notification/MessageInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Notification/MessageList.php b/lib/internal/Magento/Framework/Notification/MessageList.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Notification/NotifierInterface.php b/lib/internal/Magento/Framework/Notification/NotifierInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Notification/NotifierList.php b/lib/internal/Magento/Framework/Notification/NotifierList.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Notification/NotifierPool.php b/lib/internal/Magento/Framework/Notification/NotifierPool.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Notification/Test/Unit/NotifierListTest.php b/lib/internal/Magento/Framework/Notification/Test/Unit/NotifierListTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Notification/Test/Unit/NotifierPoolTest.php b/lib/internal/Magento/Framework/Notification/Test/Unit/NotifierPoolTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Oauth/ConsumerInterface.php b/lib/internal/Magento/Framework/Oauth/ConsumerInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Oauth/Exception.php b/lib/internal/Magento/Framework/Oauth/Exception.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Oauth/Helper/Oauth.php b/lib/internal/Magento/Framework/Oauth/Helper/Oauth.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Oauth/Helper/Request.php b/lib/internal/Magento/Framework/Oauth/Helper/Request.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Oauth/NonceGeneratorInterface.php b/lib/internal/Magento/Framework/Oauth/NonceGeneratorInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Oauth/Oauth.php b/lib/internal/Magento/Framework/Oauth/Oauth.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Oauth/OauthInputException.php b/lib/internal/Magento/Framework/Oauth/OauthInputException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Oauth/OauthInterface.php b/lib/internal/Magento/Framework/Oauth/OauthInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Oauth/Test/Unit/Helper/RequestTest.php b/lib/internal/Magento/Framework/Oauth/Test/Unit/Helper/RequestTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Oauth/Test/Unit/OauthInputExceptionTest.php b/lib/internal/Magento/Framework/Oauth/Test/Unit/OauthInputExceptionTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Oauth/TokenProviderInterface.php b/lib/internal/Magento/Framework/Oauth/TokenProviderInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Code/Generator/Converter.php b/lib/internal/Magento/Framework/ObjectManager/Code/Generator/Converter.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Code/Generator/Factory.php b/lib/internal/Magento/Framework/ObjectManager/Code/Generator/Factory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Code/Generator/Persistor.php b/lib/internal/Magento/Framework/ObjectManager/Code/Generator/Persistor.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Code/Generator/Proxy.php b/lib/internal/Magento/Framework/ObjectManager/Code/Generator/Proxy.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Code/Generator/Repository.php b/lib/internal/Magento/Framework/ObjectManager/Code/Generator/Repository.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Config/Compiled.php b/lib/internal/Magento/Framework/ObjectManager/Config/Compiled.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Config/Config.php b/lib/internal/Magento/Framework/ObjectManager/Config/Config.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Config/Mapper/ArgumentParser.php b/lib/internal/Magento/Framework/ObjectManager/Config/Mapper/ArgumentParser.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Config/Mapper/Dom.php b/lib/internal/Magento/Framework/ObjectManager/Config/Mapper/Dom.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Config/Reader/Dom.php b/lib/internal/Magento/Framework/ObjectManager/Config/Reader/Dom.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Config/Reader/DomFactory.php b/lib/internal/Magento/Framework/ObjectManager/Config/Reader/DomFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Config/SchemaLocator.php b/lib/internal/Magento/Framework/ObjectManager/Config/SchemaLocator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/ConfigCacheInterface.php b/lib/internal/Magento/Framework/ObjectManager/ConfigCacheInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/ConfigInterface.php b/lib/internal/Magento/Framework/ObjectManager/ConfigInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/ConfigLoaderInterface.php b/lib/internal/Magento/Framework/ObjectManager/ConfigLoaderInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/ContextInterface.php b/lib/internal/Magento/Framework/ObjectManager/ContextInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Definition/Runtime.php b/lib/internal/Magento/Framework/ObjectManager/Definition/Runtime.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/DefinitionFactory.php b/lib/internal/Magento/Framework/ObjectManager/DefinitionFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/DefinitionInterface.php b/lib/internal/Magento/Framework/ObjectManager/DefinitionInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/DynamicConfigInterface.php b/lib/internal/Magento/Framework/ObjectManager/DynamicConfigInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Factory/AbstractFactory.php b/lib/internal/Magento/Framework/ObjectManager/Factory/AbstractFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Factory/Compiled.php b/lib/internal/Magento/Framework/ObjectManager/Factory/Compiled.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Factory/Dynamic/Developer.php b/lib/internal/Magento/Framework/ObjectManager/Factory/Dynamic/Developer.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Factory/Dynamic/Production.php b/lib/internal/Magento/Framework/ObjectManager/Factory/Dynamic/Production.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/FactoryInterface.php b/lib/internal/Magento/Framework/ObjectManager/FactoryInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Helper/Composite.php b/lib/internal/Magento/Framework/ObjectManager/Helper/Composite.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/InterceptableValidator.php b/lib/internal/Magento/Framework/ObjectManager/InterceptableValidator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/NoninterceptableInterface.php b/lib/internal/Magento/Framework/ObjectManager/NoninterceptableInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/ObjectManager.php b/lib/internal/Magento/Framework/ObjectManager/ObjectManager.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Profiler/Code/Generator/Logger.php b/lib/internal/Magento/Framework/ObjectManager/Profiler/Code/Generator/Logger.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Profiler/FactoryDecorator.php b/lib/internal/Magento/Framework/ObjectManager/Profiler/FactoryDecorator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Profiler/Log.php b/lib/internal/Magento/Framework/ObjectManager/Profiler/Log.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Profiler/Tree/Item.php b/lib/internal/Magento/Framework/ObjectManager/Profiler/Tree/Item.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/README.md b/lib/internal/Magento/Framework/ObjectManager/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Relations/Runtime.php b/lib/internal/Magento/Framework/ObjectManager/Relations/Runtime.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/RelationsInterface.php b/lib/internal/Magento/Framework/ObjectManager/RelationsInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/TMap.php b/lib/internal/Magento/Framework/ObjectManager/TMap.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/TMapFactory.php b/lib/internal/Magento/Framework/ObjectManager/TMapFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Code/Generator/ConverterTest.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Code/Generator/ConverterTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Code/Generator/FactoryTest.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Code/Generator/FactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Code/Generator/GenerateRepositoryTest.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Code/Generator/GenerateRepositoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Code/Generator/ProxyTest.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Code/Generator/ProxyTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Code/Generator/RepositoryTest.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Code/Generator/RepositoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Code/Generator/_files/Sample.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Code/Generator/_files/Sample.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Code/Generator/_files/SampleFactory.txt b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Code/Generator/_files/SampleFactory.txt
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Code/Generator/_files/SampleProxy.txt b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Code/Generator/_files/SampleProxy.txt
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Code/Generator/_files/SampleRepository.txt b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Code/Generator/_files/SampleRepository.txt
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Code/Generator/_files/SampleRepositoryInterface.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Code/Generator/_files/SampleRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Code/Generator/_files/TSampleInterface.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Code/Generator/_files/TSampleInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Code/Generator/_files/TSampleRepository.txt b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Code/Generator/_files/TSampleRepository.txt
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Code/Generator/_files/TSampleRepositoryInterface.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Code/Generator/_files/TSampleRepositoryInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Config/CompiledTest.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Config/CompiledTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Config/ConfigTest.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Config/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Config/Mapper/ArgumentParserTest.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Config/Mapper/ArgumentParserTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Config/Mapper/DomTest.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Config/Mapper/DomTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Config/Mapper/_files/argument_parser.xml b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Config/Mapper/_files/argument_parser.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Config/Mapper/_files/mapped_simple_di_config.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Config/Mapper/_files/mapped_simple_di_config.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Config/Mapper/_files/simple_di_config.xml b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Config/Mapper/_files/simple_di_config.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Config/Reader/DomFactoryTest.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Config/Reader/DomFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Config/Reader/DomTest.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Config/Reader/DomTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Config/Reader/_files/ConfigDomMock.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Config/Reader/_files/ConfigDomMock.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Config/SchemaLocatorTest.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Config/SchemaLocatorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Config/XsdTest.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Config/XsdTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Config/_files/invalidConfigXmlArray.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Config/_files/invalidConfigXmlArray.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Config/_files/valid_config.xml b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Config/_files/valid_config.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/DefinitionFactoryTest.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/DefinitionFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Factory/CompiledTest.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Factory/CompiledTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Factory/FactoryTest.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Factory/FactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Factory/Fixture/CircularOne.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Factory/Fixture/CircularOne.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Factory/Fixture/CircularThree.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Factory/Fixture/CircularThree.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Factory/Fixture/CircularTwo.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Factory/Fixture/CircularTwo.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Factory/Fixture/Compiled/DependencySharedTesting.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Factory/Fixture/Compiled/DependencySharedTesting.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Factory/Fixture/Compiled/DependencyTesting.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Factory/Fixture/Compiled/DependencyTesting.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Factory/Fixture/Compiled/SimpleClassTesting.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Factory/Fixture/Compiled/SimpleClassTesting.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Factory/Fixture/OneScalar.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Factory/Fixture/OneScalar.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Factory/Fixture/Polymorphous.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Factory/Fixture/Polymorphous.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Factory/Fixture/Two.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Factory/Fixture/Two.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Helper/CompositeTest.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Helper/CompositeTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/InterceptableValidatorTest.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/InterceptableValidatorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/ObjectManagerTest.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/ObjectManagerTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Profiler/FactoryDecoratorTest.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Profiler/FactoryDecoratorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Relations/RuntimeTest.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/Relations/RuntimeTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/TMapTest.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/TMapTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/Aggregate/AggregateInterface.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/Aggregate/AggregateInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/Aggregate/AggregateParent.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/Aggregate/AggregateParent.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/Aggregate/Child.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/Aggregate/Child.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/Aggregate/WithOptional.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/Aggregate/WithOptional.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/Child.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/Child.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/Child/A.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/Child/A.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/Child/Circular.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/Child/Circular.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/Child/Interceptor.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/Child/Interceptor.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/Child/Interceptor/A.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/Child/Interceptor/A.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/Child/Interceptor/B.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/Child/Interceptor/B.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/ChildInterface.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/ChildInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/DiInterface.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/DiInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/DiParent.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/DiParent.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/Proxy.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/Proxy.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/TMap/TClass.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/TMap/TClass.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/TMap/TInterface.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/TMap/TInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/logger_classes.php b/lib/internal/Magento/Framework/ObjectManager/Test/Unit/_files/logger_classes.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManager/etc/config.xsd b/lib/internal/Magento/Framework/ObjectManager/etc/config.xsd
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ObjectManagerInterface.php b/lib/internal/Magento/Framework/ObjectManagerInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Option/ArrayInterface.php b/lib/internal/Magento/Framework/Option/ArrayInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Option/ArrayPool.php b/lib/internal/Magento/Framework/Option/ArrayPool.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Option/README.md b/lib/internal/Magento/Framework/Option/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/OsInfo.php b/lib/internal/Magento/Framework/OsInfo.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Parse/Zip.php b/lib/internal/Magento/Framework/Parse/Zip.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Phrase.php b/lib/internal/Magento/Framework/Phrase.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Phrase/README.md b/lib/internal/Magento/Framework/Phrase/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Phrase/Renderer/Composite.php b/lib/internal/Magento/Framework/Phrase/Renderer/Composite.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Phrase/Renderer/Inline.php b/lib/internal/Magento/Framework/Phrase/Renderer/Inline.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Phrase/Renderer/Placeholder.php b/lib/internal/Magento/Framework/Phrase/Renderer/Placeholder.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Phrase/Renderer/Translate.php b/lib/internal/Magento/Framework/Phrase/Renderer/Translate.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Phrase/RendererInterface.php b/lib/internal/Magento/Framework/Phrase/RendererInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Phrase/Test/Unit/Renderer/CompositeTest.php b/lib/internal/Magento/Framework/Phrase/Test/Unit/Renderer/CompositeTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Phrase/Test/Unit/Renderer/InlineTest.php b/lib/internal/Magento/Framework/Phrase/Test/Unit/Renderer/InlineTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Phrase/Test/Unit/Renderer/PlaceholderTest.php b/lib/internal/Magento/Framework/Phrase/Test/Unit/Renderer/PlaceholderTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Phrase/Test/Unit/Renderer/TranslateTest.php b/lib/internal/Magento/Framework/Phrase/Test/Unit/Renderer/TranslateTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/Adjustment/AdjustmentInterface.php b/lib/internal/Magento/Framework/Pricing/Adjustment/AdjustmentInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/Adjustment/Calculator.php b/lib/internal/Magento/Framework/Pricing/Adjustment/Calculator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/Adjustment/CalculatorInterface.php b/lib/internal/Magento/Framework/Pricing/Adjustment/CalculatorInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/Adjustment/Collection.php b/lib/internal/Magento/Framework/Pricing/Adjustment/Collection.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/Adjustment/Factory.php b/lib/internal/Magento/Framework/Pricing/Adjustment/Factory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/Adjustment/Pool.php b/lib/internal/Magento/Framework/Pricing/Adjustment/Pool.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/Amount/AmountFactory.php b/lib/internal/Magento/Framework/Pricing/Amount/AmountFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/Amount/AmountInterface.php b/lib/internal/Magento/Framework/Pricing/Amount/AmountInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/Amount/Base.php b/lib/internal/Magento/Framework/Pricing/Amount/Base.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/Helper/Data.php b/lib/internal/Magento/Framework/Pricing/Helper/Data.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/Price/AbstractPrice.php b/lib/internal/Magento/Framework/Pricing/Price/AbstractPrice.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/Price/BasePriceProviderInterface.php b/lib/internal/Magento/Framework/Pricing/Price/BasePriceProviderInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/Price/Collection.php b/lib/internal/Magento/Framework/Pricing/Price/Collection.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/Price/Factory.php b/lib/internal/Magento/Framework/Pricing/Price/Factory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/Price/Pool.php b/lib/internal/Magento/Framework/Pricing/Price/Pool.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/Price/PriceInterface.php b/lib/internal/Magento/Framework/Pricing/Price/PriceInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/PriceComposite.php b/lib/internal/Magento/Framework/Pricing/PriceComposite.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/PriceCurrencyInterface.php b/lib/internal/Magento/Framework/Pricing/PriceCurrencyInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/PriceInfo/Base.php b/lib/internal/Magento/Framework/Pricing/PriceInfo/Base.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/PriceInfo/Factory.php b/lib/internal/Magento/Framework/Pricing/PriceInfo/Factory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/PriceInfoInterface.php b/lib/internal/Magento/Framework/Pricing/PriceInfoInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/Render.php b/lib/internal/Magento/Framework/Pricing/Render.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/Render/AbstractAdjustment.php b/lib/internal/Magento/Framework/Pricing/Render/AbstractAdjustment.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/Render/AdjustmentRenderInterface.php b/lib/internal/Magento/Framework/Pricing/Render/AdjustmentRenderInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/Render/Amount.php b/lib/internal/Magento/Framework/Pricing/Render/Amount.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/Render/AmountRenderInterface.php b/lib/internal/Magento/Framework/Pricing/Render/AmountRenderInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/Render/Layout.php b/lib/internal/Magento/Framework/Pricing/Render/Layout.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/Render/PriceBox.php b/lib/internal/Magento/Framework/Pricing/Render/PriceBox.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/Render/PriceBoxRenderInterface.php b/lib/internal/Magento/Framework/Pricing/Render/PriceBoxRenderInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/Render/RendererPool.php b/lib/internal/Magento/Framework/Pricing/Render/RendererPool.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/SaleableInterface.php b/lib/internal/Magento/Framework/Pricing/SaleableInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/Test/Unit/Adjustment/CalculatorTest.php b/lib/internal/Magento/Framework/Pricing/Test/Unit/Adjustment/CalculatorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/Test/Unit/Adjustment/CollectionTest.php b/lib/internal/Magento/Framework/Pricing/Test/Unit/Adjustment/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/Test/Unit/Adjustment/FactoryTest.php b/lib/internal/Magento/Framework/Pricing/Test/Unit/Adjustment/FactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/Test/Unit/Adjustment/PoolTest.php b/lib/internal/Magento/Framework/Pricing/Test/Unit/Adjustment/PoolTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/Test/Unit/Amount/AmountFactoryTest.php b/lib/internal/Magento/Framework/Pricing/Test/Unit/Amount/AmountFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/Test/Unit/Amount/BaseTest.php b/lib/internal/Magento/Framework/Pricing/Test/Unit/Amount/BaseTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/Test/Unit/Helper/DataTest.php b/lib/internal/Magento/Framework/Pricing/Test/Unit/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/Test/Unit/Price/AbstractPriceTest.php b/lib/internal/Magento/Framework/Pricing/Test/Unit/Price/AbstractPriceTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/Test/Unit/Price/CollectionTest.php b/lib/internal/Magento/Framework/Pricing/Test/Unit/Price/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/Test/Unit/Price/FactoryTest.php b/lib/internal/Magento/Framework/Pricing/Test/Unit/Price/FactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/Test/Unit/Price/PoolTest.php b/lib/internal/Magento/Framework/Pricing/Test/Unit/Price/PoolTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/Test/Unit/Price/Stub.php b/lib/internal/Magento/Framework/Pricing/Test/Unit/Price/Stub.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/Test/Unit/PriceInfo/BaseTest.php b/lib/internal/Magento/Framework/Pricing/Test/Unit/PriceInfo/BaseTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/Test/Unit/PriceInfo/FactoryTest.php b/lib/internal/Magento/Framework/Pricing/Test/Unit/PriceInfo/FactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/Test/Unit/Render/AbstractAdjustmentTest.php b/lib/internal/Magento/Framework/Pricing/Test/Unit/Render/AbstractAdjustmentTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/Test/Unit/Render/AmountTest.php b/lib/internal/Magento/Framework/Pricing/Test/Unit/Render/AmountTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/Test/Unit/Render/LayoutTest.php b/lib/internal/Magento/Framework/Pricing/Test/Unit/Render/LayoutTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/Test/Unit/Render/PriceBoxTest.php b/lib/internal/Magento/Framework/Pricing/Test/Unit/Render/PriceBoxTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/Test/Unit/Render/RendererPoolTest.php b/lib/internal/Magento/Framework/Pricing/Test/Unit/Render/RendererPoolTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Pricing/Test/Unit/RenderTest.php b/lib/internal/Magento/Framework/Pricing/Test/Unit/RenderTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Process/PhpExecutableFinderFactory.php b/lib/internal/Magento/Framework/Process/PhpExecutableFinderFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Process/README.md b/lib/internal/Magento/Framework/Process/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Profiler.php b/lib/internal/Magento/Framework/Profiler.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Profiler/Driver/Factory.php b/lib/internal/Magento/Framework/Profiler/Driver/Factory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Profiler/Driver/Standard.php b/lib/internal/Magento/Framework/Profiler/Driver/Standard.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Profiler/Driver/Standard/AbstractOutput.php b/lib/internal/Magento/Framework/Profiler/Driver/Standard/AbstractOutput.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Profiler/Driver/Standard/Output/Csvfile.php b/lib/internal/Magento/Framework/Profiler/Driver/Standard/Output/Csvfile.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Profiler/Driver/Standard/Output/Factory.php b/lib/internal/Magento/Framework/Profiler/Driver/Standard/Output/Factory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Profiler/Driver/Standard/Output/Html.php b/lib/internal/Magento/Framework/Profiler/Driver/Standard/Output/Html.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Profiler/Driver/Standard/OutputInterface.php b/lib/internal/Magento/Framework/Profiler/Driver/Standard/OutputInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Profiler/Driver/Standard/Stat.php b/lib/internal/Magento/Framework/Profiler/Driver/Standard/Stat.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Profiler/DriverInterface.php b/lib/internal/Magento/Framework/Profiler/DriverInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Profiler/README.md b/lib/internal/Magento/Framework/Profiler/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Profiler/Test/Unit/Driver/FactoryTest.php b/lib/internal/Magento/Framework/Profiler/Test/Unit/Driver/FactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Profiler/Test/Unit/Driver/Standard/Output/CsvfileTest.php b/lib/internal/Magento/Framework/Profiler/Test/Unit/Driver/Standard/Output/CsvfileTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Profiler/Test/Unit/Driver/Standard/Output/FactoryTest.php b/lib/internal/Magento/Framework/Profiler/Test/Unit/Driver/Standard/Output/FactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Profiler/Test/Unit/Driver/Standard/OutputAbstractTest.php b/lib/internal/Magento/Framework/Profiler/Test/Unit/Driver/Standard/OutputAbstractTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Profiler/Test/Unit/Driver/Standard/StatTest.php b/lib/internal/Magento/Framework/Profiler/Test/Unit/Driver/Standard/StatTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Profiler/Test/Unit/Driver/StandardTest.php b/lib/internal/Magento/Framework/Profiler/Test/Unit/Driver/StandardTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Reflection/AttributeTypeResolver.php b/lib/internal/Magento/Framework/Reflection/AttributeTypeResolver.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Reflection/CustomAttributesProcessor.php b/lib/internal/Magento/Framework/Reflection/CustomAttributesProcessor.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Reflection/DataObjectProcessor.php b/lib/internal/Magento/Framework/Reflection/DataObjectProcessor.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Reflection/ExtensionAttributesProcessor.php b/lib/internal/Magento/Framework/Reflection/ExtensionAttributesProcessor.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Reflection/FieldNamer.php b/lib/internal/Magento/Framework/Reflection/FieldNamer.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Reflection/MethodsMap.php b/lib/internal/Magento/Framework/Reflection/MethodsMap.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Reflection/NameFinder.php b/lib/internal/Magento/Framework/Reflection/NameFinder.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Reflection/Test/Unit/AttributeTypeResolverTest.php b/lib/internal/Magento/Framework/Reflection/Test/Unit/AttributeTypeResolverTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Reflection/Test/Unit/DataObject.php b/lib/internal/Magento/Framework/Reflection/Test/Unit/DataObject.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Reflection/Test/Unit/DataObjectProcessorTest.php b/lib/internal/Magento/Framework/Reflection/Test/Unit/DataObjectProcessorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Reflection/Test/Unit/ExtensionAttributesObject.php b/lib/internal/Magento/Framework/Reflection/Test/Unit/ExtensionAttributesObject.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Reflection/Test/Unit/ExtensionAttributesProcessorTest.php b/lib/internal/Magento/Framework/Reflection/Test/Unit/ExtensionAttributesProcessorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Reflection/Test/Unit/FieldNamerTest.php b/lib/internal/Magento/Framework/Reflection/Test/Unit/FieldNamerTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Reflection/Test/Unit/Fixture/TSample.php b/lib/internal/Magento/Framework/Reflection/Test/Unit/Fixture/TSample.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Reflection/Test/Unit/Fixture/TSampleInterface.php b/lib/internal/Magento/Framework/Reflection/Test/Unit/Fixture/TSampleInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Reflection/Test/Unit/MethodsMapTest.php b/lib/internal/Magento/Framework/Reflection/Test/Unit/MethodsMapTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Reflection/Test/Unit/NameFinderTest.php b/lib/internal/Magento/Framework/Reflection/Test/Unit/NameFinderTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Reflection/Test/Unit/TestDataInterface.php b/lib/internal/Magento/Framework/Reflection/Test/Unit/TestDataInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Reflection/Test/Unit/TestDataObject.php b/lib/internal/Magento/Framework/Reflection/Test/Unit/TestDataObject.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Reflection/Test/Unit/TypeCasterTest.php b/lib/internal/Magento/Framework/Reflection/Test/Unit/TypeCasterTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Reflection/Test/Unit/TypeProcessorTest.php b/lib/internal/Magento/Framework/Reflection/Test/Unit/TypeProcessorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Reflection/TypeCaster.php b/lib/internal/Magento/Framework/Reflection/TypeCaster.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Reflection/TypeProcessor.php b/lib/internal/Magento/Framework/Reflection/TypeProcessor.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Registry.php b/lib/internal/Magento/Framework/Registry.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/RequireJs/Config.php b/lib/internal/Magento/Framework/RequireJs/Config.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/RequireJs/Config/File/Collector/Aggregated.php b/lib/internal/Magento/Framework/RequireJs/Config/File/Collector/Aggregated.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/RequireJs/Test/Unit/ConfigTest.php b/lib/internal/Magento/Framework/RequireJs/Test/Unit/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/AbstractKeyValuePair.php b/lib/internal/Magento/Framework/Search/AbstractKeyValuePair.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Adapter/Aggregation/AggregationResolver.php b/lib/internal/Magento/Framework/Search/Adapter/Aggregation/AggregationResolver.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Adapter/Aggregation/AggregationResolverInterface.php b/lib/internal/Magento/Framework/Search/Adapter/Aggregation/AggregationResolverInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Adapter/Mysql/Adapter.php b/lib/internal/Magento/Framework/Search/Adapter/Mysql/Adapter.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Adapter/Mysql/Aggregation/Builder.php b/lib/internal/Magento/Framework/Search/Adapter/Mysql/Aggregation/Builder.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Adapter/Mysql/Aggregation/Builder/BucketInterface.php b/lib/internal/Magento/Framework/Search/Adapter/Mysql/Aggregation/Builder/BucketInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Adapter/Mysql/Aggregation/Builder/Container.php b/lib/internal/Magento/Framework/Search/Adapter/Mysql/Aggregation/Builder/Container.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Adapter/Mysql/Aggregation/Builder/Dynamic.php b/lib/internal/Magento/Framework/Search/Adapter/Mysql/Aggregation/Builder/Dynamic.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Adapter/Mysql/Aggregation/Builder/Metrics.php b/lib/internal/Magento/Framework/Search/Adapter/Mysql/Aggregation/Builder/Metrics.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Adapter/Mysql/Aggregation/Builder/Range.php b/lib/internal/Magento/Framework/Search/Adapter/Mysql/Aggregation/Builder/Range.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Adapter/Mysql/Aggregation/Builder/Term.php b/lib/internal/Magento/Framework/Search/Adapter/Mysql/Aggregation/Builder/Term.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Adapter/Mysql/Aggregation/DataProviderContainer.php b/lib/internal/Magento/Framework/Search/Adapter/Mysql/Aggregation/DataProviderContainer.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Adapter/Mysql/Aggregation/DataProviderInterface.php b/lib/internal/Magento/Framework/Search/Adapter/Mysql/Aggregation/DataProviderInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Adapter/Mysql/Aggregation/Interval.php b/lib/internal/Magento/Framework/Search/Adapter/Mysql/Aggregation/Interval.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Adapter/Mysql/AggregationFactory.php b/lib/internal/Magento/Framework/Search/Adapter/Mysql/AggregationFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Adapter/Mysql/ConditionManager.php b/lib/internal/Magento/Framework/Search/Adapter/Mysql/ConditionManager.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Adapter/Mysql/DocumentFactory.php b/lib/internal/Magento/Framework/Search/Adapter/Mysql/DocumentFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Adapter/Mysql/Field/Field.php b/lib/internal/Magento/Framework/Search/Adapter/Mysql/Field/Field.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Adapter/Mysql/Field/FieldFactory.php b/lib/internal/Magento/Framework/Search/Adapter/Mysql/Field/FieldFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Adapter/Mysql/Field/FieldInterface.php b/lib/internal/Magento/Framework/Search/Adapter/Mysql/Field/FieldInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Adapter/Mysql/Field/Resolver.php b/lib/internal/Magento/Framework/Search/Adapter/Mysql/Field/Resolver.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Adapter/Mysql/Field/ResolverInterface.php b/lib/internal/Magento/Framework/Search/Adapter/Mysql/Field/ResolverInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Adapter/Mysql/Filter/Builder.php b/lib/internal/Magento/Framework/Search/Adapter/Mysql/Filter/Builder.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Adapter/Mysql/Filter/Builder/FilterInterface.php b/lib/internal/Magento/Framework/Search/Adapter/Mysql/Filter/Builder/FilterInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Adapter/Mysql/Filter/Builder/Range.php b/lib/internal/Magento/Framework/Search/Adapter/Mysql/Filter/Builder/Range.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Adapter/Mysql/Filter/Builder/Term.php b/lib/internal/Magento/Framework/Search/Adapter/Mysql/Filter/Builder/Term.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Adapter/Mysql/Filter/Builder/Wildcard.php b/lib/internal/Magento/Framework/Search/Adapter/Mysql/Filter/Builder/Wildcard.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Adapter/Mysql/Filter/BuilderInterface.php b/lib/internal/Magento/Framework/Search/Adapter/Mysql/Filter/BuilderInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Adapter/Mysql/Filter/Preprocessor.php b/lib/internal/Magento/Framework/Search/Adapter/Mysql/Filter/Preprocessor.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Adapter/Mysql/Filter/PreprocessorInterface.php b/lib/internal/Magento/Framework/Search/Adapter/Mysql/Filter/PreprocessorInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Adapter/Mysql/IndexBuilderInterface.php b/lib/internal/Magento/Framework/Search/Adapter/Mysql/IndexBuilderInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Adapter/Mysql/Mapper.php b/lib/internal/Magento/Framework/Search/Adapter/Mysql/Mapper.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Adapter/Mysql/Query/Builder/Match.php b/lib/internal/Magento/Framework/Search/Adapter/Mysql/Query/Builder/Match.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Adapter/Mysql/Query/Builder/QueryInterface.php b/lib/internal/Magento/Framework/Search/Adapter/Mysql/Query/Builder/QueryInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Adapter/Mysql/Query/MatchContainer.php b/lib/internal/Magento/Framework/Search/Adapter/Mysql/Query/MatchContainer.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Adapter/Mysql/Query/MatchContainerFactory.php b/lib/internal/Magento/Framework/Search/Adapter/Mysql/Query/MatchContainerFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Adapter/Mysql/Query/QueryContainer.php b/lib/internal/Magento/Framework/Search/Adapter/Mysql/Query/QueryContainer.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Adapter/Mysql/Query/QueryContainerFactory.php b/lib/internal/Magento/Framework/Search/Adapter/Mysql/Query/QueryContainerFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Adapter/Mysql/ResponseFactory.php b/lib/internal/Magento/Framework/Search/Adapter/Mysql/ResponseFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Adapter/Mysql/ScoreBuilder.php b/lib/internal/Magento/Framework/Search/Adapter/Mysql/ScoreBuilder.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Adapter/Mysql/ScoreBuilderFactory.php b/lib/internal/Magento/Framework/Search/Adapter/Mysql/ScoreBuilderFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Adapter/Mysql/TemporaryStorage.php b/lib/internal/Magento/Framework/Search/Adapter/Mysql/TemporaryStorage.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Adapter/Mysql/TemporaryStorageFactory.php b/lib/internal/Magento/Framework/Search/Adapter/Mysql/TemporaryStorageFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Adapter/OptionsInterface.php b/lib/internal/Magento/Framework/Search/Adapter/OptionsInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Adapter/Preprocessor/PreprocessorInterface.php b/lib/internal/Magento/Framework/Search/Adapter/Preprocessor/PreprocessorInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/AdapterInterface.php b/lib/internal/Magento/Framework/Search/AdapterInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Dynamic/Algorithm.php b/lib/internal/Magento/Framework/Search/Dynamic/Algorithm.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Dynamic/Algorithm/AlgorithmInterface.php b/lib/internal/Magento/Framework/Search/Dynamic/Algorithm/AlgorithmInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Dynamic/Algorithm/Auto.php b/lib/internal/Magento/Framework/Search/Dynamic/Algorithm/Auto.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Dynamic/Algorithm/Improved.php b/lib/internal/Magento/Framework/Search/Dynamic/Algorithm/Improved.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Dynamic/Algorithm/Manual.php b/lib/internal/Magento/Framework/Search/Dynamic/Algorithm/Manual.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Dynamic/Algorithm/Repository.php b/lib/internal/Magento/Framework/Search/Dynamic/Algorithm/Repository.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Dynamic/DataProviderFactory.php b/lib/internal/Magento/Framework/Search/Dynamic/DataProviderFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Dynamic/DataProviderInterface.php b/lib/internal/Magento/Framework/Search/Dynamic/DataProviderInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Dynamic/EntityStorage.php b/lib/internal/Magento/Framework/Search/Dynamic/EntityStorage.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Dynamic/EntityStorageFactory.php b/lib/internal/Magento/Framework/Search/Dynamic/EntityStorageFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Dynamic/IntervalFactory.php b/lib/internal/Magento/Framework/Search/Dynamic/IntervalFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Dynamic/IntervalInterface.php b/lib/internal/Magento/Framework/Search/Dynamic/IntervalInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/EntityMetadata.php b/lib/internal/Magento/Framework/Search/EntityMetadata.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Request.php b/lib/internal/Magento/Framework/Search/Request.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Request/Aggregation/DynamicBucket.php b/lib/internal/Magento/Framework/Search/Request/Aggregation/DynamicBucket.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Request/Aggregation/Metric.php b/lib/internal/Magento/Framework/Search/Request/Aggregation/Metric.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Request/Aggregation/Range.php b/lib/internal/Magento/Framework/Search/Request/Aggregation/Range.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Request/Aggregation/RangeBucket.php b/lib/internal/Magento/Framework/Search/Request/Aggregation/RangeBucket.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Request/Aggregation/Status.php b/lib/internal/Magento/Framework/Search/Request/Aggregation/Status.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Request/Aggregation/StatusInterface.php b/lib/internal/Magento/Framework/Search/Request/Aggregation/StatusInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Request/Aggregation/TermBucket.php b/lib/internal/Magento/Framework/Search/Request/Aggregation/TermBucket.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Request/Binder.php b/lib/internal/Magento/Framework/Search/Request/Binder.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Request/BucketInterface.php b/lib/internal/Magento/Framework/Search/Request/BucketInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Request/Builder.php b/lib/internal/Magento/Framework/Search/Request/Builder.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Request/Cleaner.php b/lib/internal/Magento/Framework/Search/Request/Cleaner.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Request/Config.php b/lib/internal/Magento/Framework/Search/Request/Config.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Request/Config/Converter.php b/lib/internal/Magento/Framework/Search/Request/Config/Converter.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Request/Config/FilesystemReader.php b/lib/internal/Magento/Framework/Search/Request/Config/FilesystemReader.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Request/Config/SchemaLocator.php b/lib/internal/Magento/Framework/Search/Request/Config/SchemaLocator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Request/Dimension.php b/lib/internal/Magento/Framework/Search/Request/Dimension.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Request/EmptyRequestDataException.php b/lib/internal/Magento/Framework/Search/Request/EmptyRequestDataException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Request/Filter/BoolExpression.php b/lib/internal/Magento/Framework/Search/Request/Filter/BoolExpression.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Request/Filter/Range.php b/lib/internal/Magento/Framework/Search/Request/Filter/Range.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Request/Filter/Term.php b/lib/internal/Magento/Framework/Search/Request/Filter/Term.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Request/Filter/Wildcard.php b/lib/internal/Magento/Framework/Search/Request/Filter/Wildcard.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Request/FilterInterface.php b/lib/internal/Magento/Framework/Search/Request/FilterInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Request/IndexScopeResolverInterface.php b/lib/internal/Magento/Framework/Search/Request/IndexScopeResolverInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Request/Mapper.php b/lib/internal/Magento/Framework/Search/Request/Mapper.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Request/NonExistingRequestNameException.php b/lib/internal/Magento/Framework/Search/Request/NonExistingRequestNameException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Request/Query/BoolExpression.php b/lib/internal/Magento/Framework/Search/Request/Query/BoolExpression.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Request/Query/Filter.php b/lib/internal/Magento/Framework/Search/Request/Query/Filter.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Request/Query/Match.php b/lib/internal/Magento/Framework/Search/Request/Query/Match.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Request/QueryInterface.php b/lib/internal/Magento/Framework/Search/Request/QueryInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/RequestInterface.php b/lib/internal/Magento/Framework/Search/RequestInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Response/Aggregation.php b/lib/internal/Magento/Framework/Search/Response/Aggregation.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Response/Aggregation/Value.php b/lib/internal/Magento/Framework/Search/Response/Aggregation/Value.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Response/Bucket.php b/lib/internal/Magento/Framework/Search/Response/Bucket.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Response/QueryResponse.php b/lib/internal/Magento/Framework/Search/Response/QueryResponse.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/ResponseInterface.php b/lib/internal/Magento/Framework/Search/ResponseInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Search.php b/lib/internal/Magento/Framework/Search/Search.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/SearchEngine/Config/Converter.php b/lib/internal/Magento/Framework/Search/SearchEngine/Config/Converter.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/SearchEngine/Config/Reader.php b/lib/internal/Magento/Framework/Search/SearchEngine/Config/Reader.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/SearchEngine/Config/SchemaLocator.php b/lib/internal/Magento/Framework/Search/SearchEngine/Config/SchemaLocator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/SearchEngine/ConfigInterface.php b/lib/internal/Magento/Framework/Search/SearchEngine/ConfigInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/SearchEngineInterface.php b/lib/internal/Magento/Framework/Search/SearchEngineInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/SearchResponseBuilder.php b/lib/internal/Magento/Framework/Search/SearchResponseBuilder.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Aggregation/AggregationResolverTest.php b/lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Aggregation/AggregationResolverTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/AdapterTest.php b/lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/AdapterTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/Aggregation/Builder/ContainerTest.php b/lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/Aggregation/Builder/ContainerTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/Aggregation/Builder/MetricsTest.php b/lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/Aggregation/Builder/MetricsTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/Aggregation/Builder/RangeTest.php b/lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/Aggregation/Builder/RangeTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/Aggregation/Builder/TermTest.php b/lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/Aggregation/Builder/TermTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/Aggregation/BuilderTest.php b/lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/Aggregation/BuilderTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/Aggregation/DataProviderContainerTest.php b/lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/Aggregation/DataProviderContainerTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/ConditionManagerTest.php b/lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/ConditionManagerTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/Filter/Builder/RangeTest.php b/lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/Filter/Builder/RangeTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/Filter/Builder/TermTest.php b/lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/Filter/Builder/TermTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/Filter/Builder/WildcardTest.php b/lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/Filter/Builder/WildcardTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/Filter/BuilderTest.php b/lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/Filter/BuilderTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/MapperTest.php b/lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/MapperTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/Query/Builder/MatchTest.php b/lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/Query/Builder/MatchTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/Query/QueryContainerTest.php b/lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/Query/QueryContainerTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/ResponseFactoryTest.php b/lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/ResponseFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/ScoreBuilderTest.php b/lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/ScoreBuilderTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/TemporaryStorageTest.php b/lib/internal/Magento/Framework/Search/Test/Unit/Adapter/Mysql/TemporaryStorageTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Test/Unit/Dynamic/IntervalFactoryTest.php b/lib/internal/Magento/Framework/Search/Test/Unit/Dynamic/IntervalFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Test/Unit/Request/Aggregation/StatusTest.php b/lib/internal/Magento/Framework/Search/Test/Unit/Request/Aggregation/StatusTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Test/Unit/Request/BinderTest.php b/lib/internal/Magento/Framework/Search/Test/Unit/Request/BinderTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Test/Unit/Request/BuilderTest.php b/lib/internal/Magento/Framework/Search/Test/Unit/Request/BuilderTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Test/Unit/Request/CleanerTest.php b/lib/internal/Magento/Framework/Search/Test/Unit/Request/CleanerTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Test/Unit/Request/Config/SchemaLocatorTest.php b/lib/internal/Magento/Framework/Search/Test/Unit/Request/Config/SchemaLocatorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Test/Unit/Request/MapperTest.php b/lib/internal/Magento/Framework/Search/Test/Unit/Request/MapperTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Test/Unit/Response/AggregationTest.php b/lib/internal/Magento/Framework/Search/Test/Unit/Response/AggregationTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Test/Unit/Response/QueryResponseTest.php b/lib/internal/Magento/Framework/Search/Test/Unit/Response/QueryResponseTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Test/Unit/SearchEngine/Config/ConverterTest.php b/lib/internal/Magento/Framework/Search/Test/Unit/SearchEngine/Config/ConverterTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Test/Unit/SearchEngine/Config/SchemaLocatorTest.php b/lib/internal/Magento/Framework/Search/Test/Unit/SearchEngine/Config/SchemaLocatorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Test/Unit/SearchResponseBuilderTest.php b/lib/internal/Magento/Framework/Search/Test/Unit/SearchResponseBuilderTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Test/Unit/SearchTest.php b/lib/internal/Magento/Framework/Search/Test/Unit/SearchTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/Test/Unit/_files/search_engine.xml b/lib/internal/Magento/Framework/Search/Test/Unit/_files/search_engine.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/etc/requests.xsd b/lib/internal/Magento/Framework/Search/etc/requests.xsd
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/etc/search_engine.xsd b/lib/internal/Magento/Framework/Search/etc/search_engine.xsd
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/etc/search_request.xsd b/lib/internal/Magento/Framework/Search/etc/search_request.xsd
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Search/etc/search_request_merged.xsd b/lib/internal/Magento/Framework/Search/etc/search_request_merged.xsd
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Serialize/JsonConverter.php b/lib/internal/Magento/Framework/Serialize/JsonConverter.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Serialize/JsonValidator.php b/lib/internal/Magento/Framework/Serialize/JsonValidator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Serialize/README.md b/lib/internal/Magento/Framework/Serialize/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Serialize/Serializer/Base64Json.php b/lib/internal/Magento/Framework/Serialize/Serializer/Base64Json.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Serialize/Serializer/Json.php b/lib/internal/Magento/Framework/Serialize/Serializer/Json.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Serialize/Serializer/Serialize.php b/lib/internal/Magento/Framework/Serialize/Serializer/Serialize.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Serialize/SerializerInterface.php b/lib/internal/Magento/Framework/Serialize/SerializerInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Serialize/Test/Unit/JsonValidatorTest.php b/lib/internal/Magento/Framework/Serialize/Test/Unit/JsonValidatorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Serialize/Test/Unit/Serializer/Base64JsonTest.php b/lib/internal/Magento/Framework/Serialize/Test/Unit/Serializer/Base64JsonTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Serialize/Test/Unit/Serializer/JsonConverterTest.php b/lib/internal/Magento/Framework/Serialize/Test/Unit/Serializer/JsonConverterTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Serialize/Test/Unit/Serializer/JsonTest.php b/lib/internal/Magento/Framework/Serialize/Test/Unit/Serializer/JsonTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Serialize/Test/Unit/Serializer/SerializeTest.php b/lib/internal/Magento/Framework/Serialize/Test/Unit/Serializer/SerializeTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Session/Config.php b/lib/internal/Magento/Framework/Session/Config.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Session/Config/ConfigInterface.php b/lib/internal/Magento/Framework/Session/Config/ConfigInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Session/Config/Validator/CookieDomainValidator.php b/lib/internal/Magento/Framework/Session/Config/Validator/CookieDomainValidator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Session/Config/Validator/CookieLifetimeValidator.php b/lib/internal/Magento/Framework/Session/Config/Validator/CookieLifetimeValidator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Session/Config/Validator/CookiePathValidator.php b/lib/internal/Magento/Framework/Session/Config/Validator/CookiePathValidator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Session/Generic.php b/lib/internal/Magento/Framework/Session/Generic.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Session/README.md b/lib/internal/Magento/Framework/Session/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Session/SaveHandler.php b/lib/internal/Magento/Framework/Session/SaveHandler.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Session/SaveHandler/DbTable.php b/lib/internal/Magento/Framework/Session/SaveHandler/DbTable.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Session/SaveHandler/Native.php b/lib/internal/Magento/Framework/Session/SaveHandler/Native.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Session/SaveHandler/Redis.php b/lib/internal/Magento/Framework/Session/SaveHandler/Redis.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Session/SaveHandler/Redis/Config.php b/lib/internal/Magento/Framework/Session/SaveHandler/Redis/Config.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Session/SaveHandler/Redis/Logger.php b/lib/internal/Magento/Framework/Session/SaveHandler/Redis/Logger.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Session/SaveHandlerFactory.php b/lib/internal/Magento/Framework/Session/SaveHandlerFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Session/SaveHandlerInterface.php b/lib/internal/Magento/Framework/Session/SaveHandlerInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Session/SessionManager.php b/lib/internal/Magento/Framework/Session/SessionManager.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Session/SessionManagerInterface.php b/lib/internal/Magento/Framework/Session/SessionManagerInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Session/SidResolver.php b/lib/internal/Magento/Framework/Session/SidResolver.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Session/SidResolverInterface.php b/lib/internal/Magento/Framework/Session/SidResolverInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Session/Storage.php b/lib/internal/Magento/Framework/Session/Storage.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Session/StorageInterface.php b/lib/internal/Magento/Framework/Session/StorageInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Session/Test/Unit/ConfigTest.php b/lib/internal/Magento/Framework/Session/Test/Unit/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Session/Test/Unit/SaveHandler/DbTableTest.php b/lib/internal/Magento/Framework/Session/Test/Unit/SaveHandler/DbTableTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Session/Test/Unit/SaveHandler/Redis/ConfigTest.php b/lib/internal/Magento/Framework/Session/Test/Unit/SaveHandler/Redis/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Session/Test/Unit/SaveHandler/Redis/LoggerTest.php b/lib/internal/Magento/Framework/Session/Test/Unit/SaveHandler/Redis/LoggerTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Session/Test/Unit/SaveHandlerFactoryTest.php b/lib/internal/Magento/Framework/Session/Test/Unit/SaveHandlerFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Session/Test/Unit/SessionManagerTest.php b/lib/internal/Magento/Framework/Session/Test/Unit/SessionManagerTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Session/Test/Unit/_files/mock_ini_set.php b/lib/internal/Magento/Framework/Session/Test/Unit/_files/mock_ini_set.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Session/Test/Unit/_files/mock_session_regenerate_id.php b/lib/internal/Magento/Framework/Session/Test/Unit/_files/mock_session_regenerate_id.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Session/Validator.php b/lib/internal/Magento/Framework/Session/Validator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Session/ValidatorInterface.php b/lib/internal/Magento/Framework/Session/ValidatorInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Setup/BackendFrontnameGenerator.php b/lib/internal/Magento/Framework/Setup/BackendFrontnameGenerator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Setup/BackupRollback.php b/lib/internal/Magento/Framework/Setup/BackupRollback.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Setup/BackupRollbackFactory.php b/lib/internal/Magento/Framework/Setup/BackupRollbackFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Setup/ConfigOptionsListInterface.php b/lib/internal/Magento/Framework/Setup/ConfigOptionsListInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Setup/ConsoleLogger.php b/lib/internal/Magento/Framework/Setup/ConsoleLogger.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Setup/DataCacheInterface.php b/lib/internal/Magento/Framework/Setup/DataCacheInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Setup/ExternalFKSetup.php b/lib/internal/Magento/Framework/Setup/ExternalFKSetup.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Setup/FilePermissions.php b/lib/internal/Magento/Framework/Setup/FilePermissions.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Setup/InstallDataInterface.php b/lib/internal/Magento/Framework/Setup/InstallDataInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Setup/InstallSchemaInterface.php b/lib/internal/Magento/Framework/Setup/InstallSchemaInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Setup/Lists.php b/lib/internal/Magento/Framework/Setup/Lists.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Setup/LoggerInterface.php b/lib/internal/Magento/Framework/Setup/LoggerInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Setup/ModuleContextInterface.php b/lib/internal/Magento/Framework/Setup/ModuleContextInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Setup/ModuleDataSetupInterface.php b/lib/internal/Magento/Framework/Setup/ModuleDataSetupInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Setup/Option/AbstractConfigOption.php b/lib/internal/Magento/Framework/Setup/Option/AbstractConfigOption.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Setup/Option/FlagConfigOption.php b/lib/internal/Magento/Framework/Setup/Option/FlagConfigOption.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Setup/Option/MultiSelectConfigOption.php b/lib/internal/Magento/Framework/Setup/Option/MultiSelectConfigOption.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Setup/Option/SelectConfigOption.php b/lib/internal/Magento/Framework/Setup/Option/SelectConfigOption.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Setup/Option/TextConfigOption.php b/lib/internal/Magento/Framework/Setup/Option/TextConfigOption.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Setup/README.md b/lib/internal/Magento/Framework/Setup/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Setup/SampleData/Context.php b/lib/internal/Magento/Framework/Setup/SampleData/Context.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Setup/SampleData/Executor.php b/lib/internal/Magento/Framework/Setup/SampleData/Executor.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Setup/SampleData/FixtureManager.php b/lib/internal/Magento/Framework/Setup/SampleData/FixtureManager.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Setup/SampleData/InstallerInterface.php b/lib/internal/Magento/Framework/Setup/SampleData/InstallerInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Setup/SampleData/State.php b/lib/internal/Magento/Framework/Setup/SampleData/State.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Setup/SampleData/StateInterface.php b/lib/internal/Magento/Framework/Setup/SampleData/StateInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Setup/SchemaSetupInterface.php b/lib/internal/Magento/Framework/Setup/SchemaSetupInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Setup/SetupInterface.php b/lib/internal/Magento/Framework/Setup/SetupInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Setup/Test/Unit/BackendFrontnameGeneratorTest.php b/lib/internal/Magento/Framework/Setup/Test/Unit/BackendFrontnameGeneratorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Setup/Test/Unit/BackupRollbackFactoryTest.php b/lib/internal/Magento/Framework/Setup/Test/Unit/BackupRollbackFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Setup/Test/Unit/BackupRollbackTest.php b/lib/internal/Magento/Framework/Setup/Test/Unit/BackupRollbackTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Setup/Test/Unit/ConsoleLoggerTest.php b/lib/internal/Magento/Framework/Setup/Test/Unit/ConsoleLoggerTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Setup/Test/Unit/FilePermissionsTest.php b/lib/internal/Magento/Framework/Setup/Test/Unit/FilePermissionsTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Setup/Test/Unit/ListsTest.php b/lib/internal/Magento/Framework/Setup/Test/Unit/ListsTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Setup/Test/Unit/Option/FlagConfigOptionTest.php b/lib/internal/Magento/Framework/Setup/Test/Unit/Option/FlagConfigOptionTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Setup/Test/Unit/Option/MultiSelectConfigOptionTest.php b/lib/internal/Magento/Framework/Setup/Test/Unit/Option/MultiSelectConfigOptionTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Setup/Test/Unit/Option/SelectConfigOptionTest.php b/lib/internal/Magento/Framework/Setup/Test/Unit/Option/SelectConfigOptionTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Setup/Test/Unit/Option/TextConfigOptionTest.php b/lib/internal/Magento/Framework/Setup/Test/Unit/Option/TextConfigOptionTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Setup/Test/Unit/SampleData/StateTest.php b/lib/internal/Magento/Framework/Setup/Test/Unit/SampleData/StateTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Setup/UninstallInterface.php b/lib/internal/Magento/Framework/Setup/UninstallInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Setup/UpgradeDataInterface.php b/lib/internal/Magento/Framework/Setup/UpgradeDataInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Setup/UpgradeSchemaInterface.php b/lib/internal/Magento/Framework/Setup/UpgradeSchemaInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Shell.php b/lib/internal/Magento/Framework/Shell.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Shell/CommandRenderer.php b/lib/internal/Magento/Framework/Shell/CommandRenderer.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Shell/CommandRendererBackground.php b/lib/internal/Magento/Framework/Shell/CommandRendererBackground.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Shell/CommandRendererInterface.php b/lib/internal/Magento/Framework/Shell/CommandRendererInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Shell/ComplexParameter.php b/lib/internal/Magento/Framework/Shell/ComplexParameter.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Shell/Driver.php b/lib/internal/Magento/Framework/Shell/Driver.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Shell/README.md b/lib/internal/Magento/Framework/Shell/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Shell/Response.php b/lib/internal/Magento/Framework/Shell/Response.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Shell/Test/Unit/CommandRendererBackgroundTest.php b/lib/internal/Magento/Framework/Shell/Test/Unit/CommandRendererBackgroundTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Shell/Test/Unit/CommandRendererTest.php b/lib/internal/Magento/Framework/Shell/Test/Unit/CommandRendererTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Shell/Test/Unit/ComplexParameterTest.php b/lib/internal/Magento/Framework/Shell/Test/Unit/ComplexParameterTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ShellInterface.php b/lib/internal/Magento/Framework/ShellInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Simplexml/Config.php b/lib/internal/Magento/Framework/Simplexml/Config.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Simplexml/Element.php b/lib/internal/Magento/Framework/Simplexml/Element.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Simplexml/Test/Unit/ConfigTest.php b/lib/internal/Magento/Framework/Simplexml/Test/Unit/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Simplexml/Test/Unit/ElementTest.php b/lib/internal/Magento/Framework/Simplexml/Test/Unit/ElementTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Simplexml/Test/Unit/_files/data.xml b/lib/internal/Magento/Framework/Simplexml/Test/Unit/_files/data.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Simplexml/Test/Unit/_files/extend_data.xml b/lib/internal/Magento/Framework/Simplexml/Test/Unit/_files/extend_data.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Simplexml/Test/Unit/_files/mixed_data.xml b/lib/internal/Magento/Framework/Simplexml/Test/Unit/_files/mixed_data.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Stdlib/ArrayManager.php b/lib/internal/Magento/Framework/Stdlib/ArrayManager.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Stdlib/ArrayUtils.php b/lib/internal/Magento/Framework/Stdlib/ArrayUtils.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Stdlib/BooleanUtils.php b/lib/internal/Magento/Framework/Stdlib/BooleanUtils.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Stdlib/Cookie/CookieMetadata.php b/lib/internal/Magento/Framework/Stdlib/Cookie/CookieMetadata.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Stdlib/Cookie/CookieMetadataFactory.php b/lib/internal/Magento/Framework/Stdlib/Cookie/CookieMetadataFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Stdlib/Cookie/CookieReaderInterface.php b/lib/internal/Magento/Framework/Stdlib/Cookie/CookieReaderInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Stdlib/Cookie/CookieScope.php b/lib/internal/Magento/Framework/Stdlib/Cookie/CookieScope.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Stdlib/Cookie/CookieScopeInterface.php b/lib/internal/Magento/Framework/Stdlib/Cookie/CookieScopeInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Stdlib/Cookie/CookieSizeLimitReachedException.php b/lib/internal/Magento/Framework/Stdlib/Cookie/CookieSizeLimitReachedException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Stdlib/Cookie/FailureToSendException.php b/lib/internal/Magento/Framework/Stdlib/Cookie/FailureToSendException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Stdlib/Cookie/PhpCookieManager.php b/lib/internal/Magento/Framework/Stdlib/Cookie/PhpCookieManager.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Stdlib/Cookie/PhpCookieReader.php b/lib/internal/Magento/Framework/Stdlib/Cookie/PhpCookieReader.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Stdlib/Cookie/PublicCookieMetadata.php b/lib/internal/Magento/Framework/Stdlib/Cookie/PublicCookieMetadata.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Stdlib/Cookie/SensitiveCookieMetadata.php b/lib/internal/Magento/Framework/Stdlib/Cookie/SensitiveCookieMetadata.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Stdlib/CookieManagerInterface.php b/lib/internal/Magento/Framework/Stdlib/CookieManagerInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Stdlib/DateTime.php b/lib/internal/Magento/Framework/Stdlib/DateTime.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Stdlib/DateTime/DateTime.php b/lib/internal/Magento/Framework/Stdlib/DateTime/DateTime.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Stdlib/DateTime/DateTimeFormatter.php b/lib/internal/Magento/Framework/Stdlib/DateTime/DateTimeFormatter.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Stdlib/DateTime/DateTimeFormatterInterface.php b/lib/internal/Magento/Framework/Stdlib/DateTime/DateTimeFormatterInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Stdlib/DateTime/Filter/Date.php b/lib/internal/Magento/Framework/Stdlib/DateTime/Filter/Date.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Stdlib/DateTime/Filter/DateTime.php b/lib/internal/Magento/Framework/Stdlib/DateTime/Filter/DateTime.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Stdlib/DateTime/Timezone.php b/lib/internal/Magento/Framework/Stdlib/DateTime/Timezone.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Stdlib/DateTime/Timezone/Validator.php b/lib/internal/Magento/Framework/Stdlib/DateTime/Timezone/Validator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Stdlib/DateTime/TimezoneInterface.php b/lib/internal/Magento/Framework/Stdlib/DateTime/TimezoneInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Stdlib/README.md b/lib/internal/Magento/Framework/Stdlib/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Stdlib/StringUtils.php b/lib/internal/Magento/Framework/Stdlib/StringUtils.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Stdlib/Test/Unit/ArrayManagerTest.php b/lib/internal/Magento/Framework/Stdlib/Test/Unit/ArrayManagerTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Stdlib/Test/Unit/ArrayUtilsTest.php b/lib/internal/Magento/Framework/Stdlib/Test/Unit/ArrayUtilsTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Stdlib/Test/Unit/BooleanUtilsTest.php b/lib/internal/Magento/Framework/Stdlib/Test/Unit/BooleanUtilsTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Stdlib/Test/Unit/Cookie/CookieScopeTest.php b/lib/internal/Magento/Framework/Stdlib/Test/Unit/Cookie/CookieScopeTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Stdlib/Test/Unit/Cookie/PhpCookieManagerTest.php b/lib/internal/Magento/Framework/Stdlib/Test/Unit/Cookie/PhpCookieManagerTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Stdlib/Test/Unit/Cookie/PublicCookieMetadataTest.php b/lib/internal/Magento/Framework/Stdlib/Test/Unit/Cookie/PublicCookieMetadataTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Stdlib/Test/Unit/Cookie/SensitiveCookieMetadataTest.php b/lib/internal/Magento/Framework/Stdlib/Test/Unit/Cookie/SensitiveCookieMetadataTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Stdlib/Test/Unit/Cookie/_files/setcookie_mock.php b/lib/internal/Magento/Framework/Stdlib/Test/Unit/Cookie/_files/setcookie_mock.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Stdlib/Test/Unit/DateTime/DateTimeFormatterTest.php b/lib/internal/Magento/Framework/Stdlib/Test/Unit/DateTime/DateTimeFormatterTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Stdlib/Test/Unit/DateTime/DateTimeTest.php b/lib/internal/Magento/Framework/Stdlib/Test/Unit/DateTime/DateTimeTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Stdlib/Test/Unit/DateTime/Filter/DateTest.php b/lib/internal/Magento/Framework/Stdlib/Test/Unit/DateTime/Filter/DateTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Stdlib/Test/Unit/DateTime/Timezone/ValidatorTest.php b/lib/internal/Magento/Framework/Stdlib/Test/Unit/DateTime/Timezone/ValidatorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Stdlib/Test/Unit/DateTime/TimezoneTest.php b/lib/internal/Magento/Framework/Stdlib/Test/Unit/DateTime/TimezoneTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Stdlib/Test/Unit/StringUtilsTest.php b/lib/internal/Magento/Framework/Stdlib/Test/Unit/StringUtilsTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Stdlib/Test/Unit/_files/gmdate_mock.php b/lib/internal/Magento/Framework/Stdlib/Test/Unit/_files/gmdate_mock.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/System/Dirs.php b/lib/internal/Magento/Framework/System/Dirs.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/System/Ftp.php b/lib/internal/Magento/Framework/System/Ftp.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Test/Unit/App/ResourceConnectionTest.php b/lib/internal/Magento/Framework/Test/Unit/App/ResourceConnectionTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Test/Unit/App/Scope/SourceTest.php b/lib/internal/Magento/Framework/Test/Unit/App/Scope/SourceTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Test/Unit/ArchiveTest.php b/lib/internal/Magento/Framework/Test/Unit/ArchiveTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Test/Unit/AuthorizationTest.php b/lib/internal/Magento/Framework/Test/Unit/AuthorizationTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Test/Unit/CurrencyTest.php b/lib/internal/Magento/Framework/Test/Unit/CurrencyTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Test/Unit/DB/AggregatedFieldDataConverterTest.php b/lib/internal/Magento/Framework/Test/Unit/DB/AggregatedFieldDataConverterTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Test/Unit/DB/Query/BatchIteratorTest.php b/lib/internal/Magento/Framework/Test/Unit/DB/Query/BatchIteratorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Test/Unit/DB/Query/BatchRangeIteratorTest.php b/lib/internal/Magento/Framework/Test/Unit/DB/Query/BatchRangeIteratorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Test/Unit/DB/Query/GeneratorTest.php b/lib/internal/Magento/Framework/Test/Unit/DB/Query/GeneratorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Test/Unit/Data/CollectionTest.php b/lib/internal/Magento/Framework/Test/Unit/Data/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Test/Unit/DataObjectTest.php b/lib/internal/Magento/Framework/Test/Unit/DataObjectTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Test/Unit/DomDocument/DomDocumentFactoryTest.php b/lib/internal/Magento/Framework/Test/Unit/DomDocument/DomDocumentFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Test/Unit/EscaperTest.php b/lib/internal/Magento/Framework/Test/Unit/EscaperTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Test/Unit/EventFactoryTest.php b/lib/internal/Magento/Framework/Test/Unit/EventFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Test/Unit/EventTest.php b/lib/internal/Magento/Framework/Test/Unit/EventTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Test/Unit/FilesystemTest.php b/lib/internal/Magento/Framework/Test/Unit/FilesystemTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Test/Unit/FlagManagerTest.php b/lib/internal/Magento/Framework/Test/Unit/FlagManagerTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Test/Unit/FlagTest.php b/lib/internal/Magento/Framework/Test/Unit/FlagTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Test/Unit/Interception/InterceptorTest.php b/lib/internal/Magento/Framework/Test/Unit/Interception/InterceptorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Test/Unit/Interception/Sample/Entity.php b/lib/internal/Magento/Framework/Test/Unit/Interception/Sample/Entity.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Test/Unit/Interception/Sample/Interceptor.php b/lib/internal/Magento/Framework/Test/Unit/Interception/Sample/Interceptor.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Test/Unit/Interception/Sample/Plugin1.php b/lib/internal/Magento/Framework/Test/Unit/Interception/Sample/Plugin1.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Test/Unit/Interception/Sample/Plugin2.php b/lib/internal/Magento/Framework/Test/Unit/Interception/Sample/Plugin2.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Test/Unit/Interception/Sample/Plugin3.php b/lib/internal/Magento/Framework/Test/Unit/Interception/Sample/Plugin3.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Test/Unit/Interception/Sample/Plugin4.php b/lib/internal/Magento/Framework/Test/Unit/Interception/Sample/Plugin4.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Test/Unit/Message/PhraseFactoryTest.php b/lib/internal/Magento/Framework/Test/Unit/Message/PhraseFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Test/Unit/Module/Plugin/DbStatusValidatorTest.php b/lib/internal/Magento/Framework/Test/Unit/Module/Plugin/DbStatusValidatorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Test/Unit/PhraseTest.php b/lib/internal/Magento/Framework/Test/Unit/PhraseTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Test/Unit/ProfilerTest.php b/lib/internal/Magento/Framework/Test/Unit/ProfilerTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Test/Unit/RegistryTest.php b/lib/internal/Magento/Framework/Test/Unit/RegistryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Test/Unit/ShellTest.php b/lib/internal/Magento/Framework/Test/Unit/ShellTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Test/Unit/Translate/Js/ConfigTest.php b/lib/internal/Magento/Framework/Test/Unit/Translate/Js/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Test/Unit/TranslateTest.php b/lib/internal/Magento/Framework/Test/Unit/TranslateTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Test/Unit/UrlTest.php b/lib/internal/Magento/Framework/Test/Unit/UrlTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Test/Unit/UtilTest.php b/lib/internal/Magento/Framework/Test/Unit/UtilTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Test/Unit/ValidatorFactoryTest.php b/lib/internal/Magento/Framework/Test/Unit/ValidatorFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Test/Unit/ValidatorTest.php b/lib/internal/Magento/Framework/Test/Unit/ValidatorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Test/Unit/View/Design/Theme/Label/OptionsTest.php b/lib/internal/Magento/Framework/Test/Unit/View/Design/Theme/Label/OptionsTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Test/Unit/_files/archives/.gitignore b/lib/internal/Magento/Framework/Test/Unit/_files/archives/.gitignore
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Test/Unit/_files/source.txt b/lib/internal/Magento/Framework/Test/Unit/_files/source.txt
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/TestFramework/README.md b/lib/internal/Magento/Framework/TestFramework/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/TestFramework/Test/Unit/Autoloader/ExtensionAttributesGeneratorTest.php b/lib/internal/Magento/Framework/TestFramework/Test/Unit/Autoloader/ExtensionAttributesGeneratorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/TestFramework/Test/Unit/Autoloader/ExtensionAttributesInterfaceGeneratorTest.php b/lib/internal/Magento/Framework/TestFramework/Test/Unit/Autoloader/ExtensionAttributesInterfaceGeneratorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/TestFramework/Test/Unit/Autoloader/FactoryGeneratorTest.php b/lib/internal/Magento/Framework/TestFramework/Test/Unit/Autoloader/FactoryGeneratorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/TestFramework/Test/Unit/Unit/Helper/ProxyTestingTest.php b/lib/internal/Magento/Framework/TestFramework/Test/Unit/Unit/Helper/ProxyTestingTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/TestFramework/Test/Unit/Unit/Matcher/MethodInvokedAtIndexTest.php b/lib/internal/Magento/Framework/TestFramework/Test/Unit/Unit/Matcher/MethodInvokedAtIndexTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/TestFramework/Test/Unit/Unit/Utility/XsdValidatorTest.php b/lib/internal/Magento/Framework/TestFramework/Test/Unit/Unit/Utility/XsdValidatorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/TestFramework/Test/Unit/Unit/Utility/_files/invalid.xml b/lib/internal/Magento/Framework/TestFramework/Test/Unit/Unit/Utility/_files/invalid.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/TestFramework/Test/Unit/Unit/Utility/_files/valid.xml b/lib/internal/Magento/Framework/TestFramework/Test/Unit/Unit/Utility/_files/valid.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/TestFramework/Test/Unit/Unit/Utility/_files/valid.xsd b/lib/internal/Magento/Framework/TestFramework/Test/Unit/Unit/Utility/_files/valid.xsd
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/TestFramework/Unit/AbstractFactoryTestCase.php b/lib/internal/Magento/Framework/TestFramework/Unit/AbstractFactoryTestCase.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/TestFramework/Unit/Autoloader/ExtensionAttributesGenerator.php b/lib/internal/Magento/Framework/TestFramework/Unit/Autoloader/ExtensionAttributesGenerator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/TestFramework/Unit/Autoloader/ExtensionAttributesInterfaceGenerator.php b/lib/internal/Magento/Framework/TestFramework/Unit/Autoloader/ExtensionAttributesInterfaceGenerator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/TestFramework/Unit/Autoloader/FactoryGenerator.php b/lib/internal/Magento/Framework/TestFramework/Unit/Autoloader/FactoryGenerator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/TestFramework/Unit/Autoloader/GeneratedClassesAutoloader.php b/lib/internal/Magento/Framework/TestFramework/Unit/Autoloader/GeneratedClassesAutoloader.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/TestFramework/Unit/Autoloader/GeneratorInterface.php b/lib/internal/Magento/Framework/TestFramework/Unit/Autoloader/GeneratorInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/TestFramework/Unit/BaseTestCase.php b/lib/internal/Magento/Framework/TestFramework/Unit/BaseTestCase.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/TestFramework/Unit/Block/Adminhtml.php b/lib/internal/Magento/Framework/TestFramework/Unit/Block/Adminhtml.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/TestFramework/Unit/Helper/ObjectManager.php b/lib/internal/Magento/Framework/TestFramework/Unit/Helper/ObjectManager.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/TestFramework/Unit/Helper/ProxyTesting.php b/lib/internal/Magento/Framework/TestFramework/Unit/Helper/ProxyTesting.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/TestFramework/Unit/Helper/SelectRendererTrait.php b/lib/internal/Magento/Framework/TestFramework/Unit/Helper/SelectRendererTrait.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/TestFramework/Unit/Listener/GarbageCleanup.php b/lib/internal/Magento/Framework/TestFramework/Unit/Listener/GarbageCleanup.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/TestFramework/Unit/Listener/ReplaceObjectManager.php b/lib/internal/Magento/Framework/TestFramework/Unit/Listener/ReplaceObjectManager.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/TestFramework/Unit/Matcher/MethodInvokedAtIndex.php b/lib/internal/Magento/Framework/TestFramework/Unit/Matcher/MethodInvokedAtIndex.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/TestFramework/Unit/Module/Config.php b/lib/internal/Magento/Framework/TestFramework/Unit/Module/Config.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/TestFramework/Unit/Utility/XsdValidator.php b/lib/internal/Magento/Framework/TestFramework/Unit/Utility/XsdValidator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Translate.php b/lib/internal/Magento/Framework/Translate.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Translate/AbstractAdapter.php b/lib/internal/Magento/Framework/Translate/AbstractAdapter.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Translate/Adapter.php b/lib/internal/Magento/Framework/Translate/Adapter.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Translate/AdapterInterface.php b/lib/internal/Magento/Framework/Translate/AdapterInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Translate/Inline.php b/lib/internal/Magento/Framework/Translate/Inline.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Translate/Inline/ConfigInterface.php b/lib/internal/Magento/Framework/Translate/Inline/ConfigInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Translate/Inline/ParserFactory.php b/lib/internal/Magento/Framework/Translate/Inline/ParserFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Translate/Inline/ParserInterface.php b/lib/internal/Magento/Framework/Translate/Inline/ParserInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Translate/Inline/Provider.php b/lib/internal/Magento/Framework/Translate/Inline/Provider.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Translate/Inline/ProviderInterface.php b/lib/internal/Magento/Framework/Translate/Inline/ProviderInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Translate/Inline/Proxy.php b/lib/internal/Magento/Framework/Translate/Inline/Proxy.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Translate/Inline/State.php b/lib/internal/Magento/Framework/Translate/Inline/State.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Translate/Inline/StateInterface.php b/lib/internal/Magento/Framework/Translate/Inline/StateInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Translate/InlineInterface.php b/lib/internal/Magento/Framework/Translate/InlineInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Translate/Js/Config.php b/lib/internal/Magento/Framework/Translate/Js/Config.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Translate/Locale/Resolver/Plugin.php b/lib/internal/Magento/Framework/Translate/Locale/Resolver/Plugin.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Translate/README.md b/lib/internal/Magento/Framework/Translate/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Translate/ResourceInterface.php b/lib/internal/Magento/Framework/Translate/ResourceInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Translate/Test/Unit/AdapterAbstractTest.php b/lib/internal/Magento/Framework/Translate/Test/Unit/AdapterAbstractTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Translate/Test/Unit/AdapterTest.php b/lib/internal/Magento/Framework/Translate/Test/Unit/AdapterTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Translate/Test/Unit/Inline/ProxyTest.php b/lib/internal/Magento/Framework/Translate/Test/Unit/Inline/ProxyTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Translate/Test/Unit/Inline/StateTest.php b/lib/internal/Magento/Framework/Translate/Test/Unit/Inline/StateTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Translate/Test/Unit/InlineTest.php b/lib/internal/Magento/Framework/Translate/Test/Unit/InlineTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/TranslateInterface.php b/lib/internal/Magento/Framework/TranslateInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Unserialize/README.md b/lib/internal/Magento/Framework/Unserialize/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Unserialize/Test/Unit/UnserializeTest.php b/lib/internal/Magento/Framework/Unserialize/Test/Unit/UnserializeTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Unserialize/Unserialize.php b/lib/internal/Magento/Framework/Unserialize/Unserialize.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Url.php b/lib/internal/Magento/Framework/Url.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Url/Decoder.php b/lib/internal/Magento/Framework/Url/Decoder.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Url/DecoderInterface.php b/lib/internal/Magento/Framework/Url/DecoderInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Url/Encoder.php b/lib/internal/Magento/Framework/Url/Encoder.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Url/EncoderInterface.php b/lib/internal/Magento/Framework/Url/EncoderInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Url/Helper/Data.php b/lib/internal/Magento/Framework/Url/Helper/Data.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Url/HostChecker.php b/lib/internal/Magento/Framework/Url/HostChecker.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Url/ModifierComposite.php b/lib/internal/Magento/Framework/Url/ModifierComposite.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Url/ModifierInterface.php b/lib/internal/Magento/Framework/Url/ModifierInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Url/QueryParamsResolver.php b/lib/internal/Magento/Framework/Url/QueryParamsResolver.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Url/QueryParamsResolverInterface.php b/lib/internal/Magento/Framework/Url/QueryParamsResolverInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Url/RouteParamsPreprocessorComposite.php b/lib/internal/Magento/Framework/Url/RouteParamsPreprocessorComposite.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Url/RouteParamsPreprocessorInterface.php b/lib/internal/Magento/Framework/Url/RouteParamsPreprocessorInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Url/RouteParamsResolver.php b/lib/internal/Magento/Framework/Url/RouteParamsResolver.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Url/RouteParamsResolverFactory.php b/lib/internal/Magento/Framework/Url/RouteParamsResolverFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Url/RouteParamsResolverInterface.php b/lib/internal/Magento/Framework/Url/RouteParamsResolverInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Url/ScopeInterface.php b/lib/internal/Magento/Framework/Url/ScopeInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Url/ScopeResolver.php b/lib/internal/Magento/Framework/Url/ScopeResolver.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Url/ScopeResolverInterface.php b/lib/internal/Magento/Framework/Url/ScopeResolverInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Url/SecurityInfo.php b/lib/internal/Magento/Framework/Url/SecurityInfo.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Url/SecurityInfoInterface.php b/lib/internal/Magento/Framework/Url/SecurityInfoInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Url/Test/Unit/DecoderTest.php b/lib/internal/Magento/Framework/Url/Test/Unit/DecoderTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Url/Test/Unit/Helper/DataTest.php b/lib/internal/Magento/Framework/Url/Test/Unit/Helper/DataTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Url/Test/Unit/HostCheckerTest.php b/lib/internal/Magento/Framework/Url/Test/Unit/HostCheckerTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Url/Test/Unit/QueryParamsResolverTest.php b/lib/internal/Magento/Framework/Url/Test/Unit/QueryParamsResolverTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Url/Test/Unit/RouteParamsResolverFactoryTest.php b/lib/internal/Magento/Framework/Url/Test/Unit/RouteParamsResolverFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Url/Test/Unit/ScopeResolverTest.php b/lib/internal/Magento/Framework/Url/Test/Unit/ScopeResolverTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Url/Test/Unit/SecurityInfoTest.php b/lib/internal/Magento/Framework/Url/Test/Unit/SecurityInfoTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Url/Test/Unit/ValidatorTest.php b/lib/internal/Magento/Framework/Url/Test/Unit/ValidatorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Url/Validator.php b/lib/internal/Magento/Framework/Url/Validator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/UrlFactory.php b/lib/internal/Magento/Framework/UrlFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/UrlInterface.php b/lib/internal/Magento/Framework/UrlInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Util.php b/lib/internal/Magento/Framework/Util.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator.php b/lib/internal/Magento/Framework/Validator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/AbstractValidator.php b/lib/internal/Magento/Framework/Validator/AbstractValidator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/AllowedProtocols.php b/lib/internal/Magento/Framework/Validator/AllowedProtocols.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Alnum.php b/lib/internal/Magento/Framework/Validator/Alnum.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Builder.php b/lib/internal/Magento/Framework/Validator/Builder.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Config.php b/lib/internal/Magento/Framework/Validator/Config.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Constraint.php b/lib/internal/Magento/Framework/Validator/Constraint.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Constraint/Option.php b/lib/internal/Magento/Framework/Validator/Constraint/Option.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Constraint/Option/Callback.php b/lib/internal/Magento/Framework/Validator/Constraint/Option/Callback.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Constraint/OptionInterface.php b/lib/internal/Magento/Framework/Validator/Constraint/OptionInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Constraint/Property.php b/lib/internal/Magento/Framework/Validator/Constraint/Property.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/ConstraintFactory.php b/lib/internal/Magento/Framework/Validator/ConstraintFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Currency.php b/lib/internal/Magento/Framework/Validator/Currency.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/DataObject.php b/lib/internal/Magento/Framework/Validator/DataObject.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/EmailAddress.php b/lib/internal/Magento/Framework/Validator/EmailAddress.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Entity/Properties.php b/lib/internal/Magento/Framework/Validator/Entity/Properties.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Exception.php b/lib/internal/Magento/Framework/Validator/Exception.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Factory.php b/lib/internal/Magento/Framework/Validator/Factory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/File/Extension.php b/lib/internal/Magento/Framework/Validator/File/Extension.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/File/ImageSize.php b/lib/internal/Magento/Framework/Validator/File/ImageSize.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/File/IsImage.php b/lib/internal/Magento/Framework/Validator/File/IsImage.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/File/Size.php b/lib/internal/Magento/Framework/Validator/File/Size.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/FloatUtils.php b/lib/internal/Magento/Framework/Validator/FloatUtils.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/IntUtils.php b/lib/internal/Magento/Framework/Validator/IntUtils.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Ip.php b/lib/internal/Magento/Framework/Validator/Ip.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Locale.php b/lib/internal/Magento/Framework/Validator/Locale.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/NotEmpty.php b/lib/internal/Magento/Framework/Validator/NotEmpty.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/README.md b/lib/internal/Magento/Framework/Validator/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Regex.php b/lib/internal/Magento/Framework/Validator/Regex.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/StringLength.php b/lib/internal/Magento/Framework/Validator/StringLength.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Test/Unit/BuilderTest.php b/lib/internal/Magento/Framework/Validator/Test/Unit/BuilderTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Test/Unit/ConfigTest.php b/lib/internal/Magento/Framework/Validator/Test/Unit/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Test/Unit/Constraint/Option/CallbackTest.php b/lib/internal/Magento/Framework/Validator/Test/Unit/Constraint/Option/CallbackTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Test/Unit/Constraint/OptionTest.php b/lib/internal/Magento/Framework/Validator/Test/Unit/Constraint/OptionTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Test/Unit/Constraint/PropertyTest.php b/lib/internal/Magento/Framework/Validator/Test/Unit/Constraint/PropertyTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Test/Unit/ConstraintTest.php b/lib/internal/Magento/Framework/Validator/Test/Unit/ConstraintTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Test/Unit/CurrencyTest.php b/lib/internal/Magento/Framework/Validator/Test/Unit/CurrencyTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Test/Unit/EmailAddressTest.php b/lib/internal/Magento/Framework/Validator/Test/Unit/EmailAddressTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Test/Unit/Entity/PropertiesTest.php b/lib/internal/Magento/Framework/Validator/Test/Unit/Entity/PropertiesTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Test/Unit/ExceptionTest.php b/lib/internal/Magento/Framework/Validator/Test/Unit/ExceptionTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Test/Unit/FactoryTest.php b/lib/internal/Magento/Framework/Validator/Test/Unit/FactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Test/Unit/LocaleTest.php b/lib/internal/Magento/Framework/Validator/Test/Unit/LocaleTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Test/Unit/ObjectTest.php b/lib/internal/Magento/Framework/Validator/Test/Unit/ObjectTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Test/Unit/StringLengthTest.php b/lib/internal/Magento/Framework/Validator/Test/Unit/StringLengthTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Test/Unit/Test/Alnum.php b/lib/internal/Magento/Framework/Validator/Test/Unit/Test/Alnum.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Test/Unit/Test/Callback.php b/lib/internal/Magento/Framework/Validator/Test/Unit/Test/Callback.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Test/Unit/Test/IsInt.php b/lib/internal/Magento/Framework/Validator/Test/Unit/Test/IsInt.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Test/Unit/Test/IsTrue.php b/lib/internal/Magento/Framework/Validator/Test/Unit/Test/IsTrue.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Test/Unit/Test/NotEmpty.php b/lib/internal/Magento/Framework/Validator/Test/Unit/Test/NotEmpty.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Test/Unit/Test/StringLength.php b/lib/internal/Magento/Framework/Validator/Test/Unit/Test/StringLength.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Test/Unit/TimezoneTest.php b/lib/internal/Magento/Framework/Validator/Test/Unit/TimezoneTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Test/Unit/UrlTest.php b/lib/internal/Magento/Framework/Validator/Test/Unit/UrlTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Test/Unit/ValidatorAbstractTest.php b/lib/internal/Magento/Framework/Validator/Test/Unit/ValidatorAbstractTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/negative/invalid_builder_class.xml b/lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/negative/invalid_builder_class.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/negative/invalid_builder_instance.xml b/lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/negative/invalid_builder_instance.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/negative/invalid_child_for_option.xml b/lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/negative/invalid_child_for_option.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/negative/invalid_constraint.xml b/lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/negative/invalid_constraint.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/negative/invalid_content_for_callback.xml b/lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/negative/invalid_content_for_callback.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/negative/invalid_entity_callback.xml b/lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/negative/invalid_entity_callback.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/negative/invalid_method.xml b/lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/negative/invalid_method.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/negative/invalid_method_callback.xml b/lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/negative/invalid_method_callback.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/negative/multiple_callback_in_argument.xml b/lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/negative/multiple_callback_in_argument.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/negative/no_class_for_constraint.xml b/lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/negative/no_class_for_constraint.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/negative/no_constraint.xml b/lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/negative/no_constraint.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/negative/no_name_for_entity.xml b/lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/negative/no_name_for_entity.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/negative/no_name_for_group.xml b/lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/negative/no_name_for_group.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/negative/no_name_for_rule.xml b/lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/negative/no_name_for_rule.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/negative/no_rule_for_reference.xml b/lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/negative/no_rule_for_reference.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/negative/not_unique_use.xml b/lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/negative/not_unique_use.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/positive/builder/validation.xml b/lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/positive/builder/validation.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/positive/module_a/validation.xml b/lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/positive/module_a/validation.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/positive/module_b/validation.xml b/lib/internal/Magento/Framework/Validator/Test/Unit/_files/validation/positive/module_b/validation.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Timezone.php b/lib/internal/Magento/Framework/Validator/Timezone.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/UniversalFactory.php b/lib/internal/Magento/Framework/Validator/UniversalFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/Url.php b/lib/internal/Magento/Framework/Validator/Url.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/ValidatorInterface.php b/lib/internal/Magento/Framework/Validator/ValidatorInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Validator/etc/validation.xsd b/lib/internal/Magento/Framework/Validator/etc/validation.xsd
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ValidatorFactory.php b/lib/internal/Magento/Framework/ValidatorFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset.php b/lib/internal/Magento/Framework/View/Asset.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/AssetInterface.php b/lib/internal/Magento/Framework/View/Asset/AssetInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/Bundle.php b/lib/internal/Magento/Framework/View/Asset/Bundle.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/Bundle/Config.php b/lib/internal/Magento/Framework/View/Asset/Bundle/Config.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/Bundle/ConfigInterface.php b/lib/internal/Magento/Framework/View/Asset/Bundle/ConfigInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/Bundle/Manager.php b/lib/internal/Magento/Framework/View/Asset/Bundle/Manager.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/Collection.php b/lib/internal/Magento/Framework/View/Asset/Collection.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/Config.php b/lib/internal/Magento/Framework/View/Asset/Config.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/ConfigInterface.php b/lib/internal/Magento/Framework/View/Asset/ConfigInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/ContentProcessorException.php b/lib/internal/Magento/Framework/View/Asset/ContentProcessorException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/ContentProcessorInterface.php b/lib/internal/Magento/Framework/View/Asset/ContentProcessorInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/ContextInterface.php b/lib/internal/Magento/Framework/View/Asset/ContextInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/File.php b/lib/internal/Magento/Framework/View/Asset/File.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/File/Context.php b/lib/internal/Magento/Framework/View/Asset/File/Context.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/File/ContextFactory.php b/lib/internal/Magento/Framework/View/Asset/File/ContextFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/File/FallbackContext.php b/lib/internal/Magento/Framework/View/Asset/File/FallbackContext.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/File/FallbackContextFactory.php b/lib/internal/Magento/Framework/View/Asset/File/FallbackContextFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/File/NotFoundException.php b/lib/internal/Magento/Framework/View/Asset/File/NotFoundException.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/FileFactory.php b/lib/internal/Magento/Framework/View/Asset/FileFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/GroupedCollection.php b/lib/internal/Magento/Framework/View/Asset/GroupedCollection.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/LocalInterface.php b/lib/internal/Magento/Framework/View/Asset/LocalInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/LockerProcess.php b/lib/internal/Magento/Framework/View/Asset/LockerProcess.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/LockerProcessInterface.php b/lib/internal/Magento/Framework/View/Asset/LockerProcessInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/MergeService.php b/lib/internal/Magento/Framework/View/Asset/MergeService.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/MergeStrategy/Checksum.php b/lib/internal/Magento/Framework/View/Asset/MergeStrategy/Checksum.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/MergeStrategy/Direct.php b/lib/internal/Magento/Framework/View/Asset/MergeStrategy/Direct.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/MergeStrategy/FileExists.php b/lib/internal/Magento/Framework/View/Asset/MergeStrategy/FileExists.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/MergeStrategyInterface.php b/lib/internal/Magento/Framework/View/Asset/MergeStrategyInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/MergeableInterface.php b/lib/internal/Magento/Framework/View/Asset/MergeableInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/Merged.php b/lib/internal/Magento/Framework/View/Asset/Merged.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/Minification.php b/lib/internal/Magento/Framework/View/Asset/Minification.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/NotationResolver/Module.php b/lib/internal/Magento/Framework/View/Asset/NotationResolver/Module.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/NotationResolver/Variable.php b/lib/internal/Magento/Framework/View/Asset/NotationResolver/Variable.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/PreProcessor/AlternativeSource.php b/lib/internal/Magento/Framework/View/Asset/PreProcessor/AlternativeSource.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/PreProcessor/AlternativeSource/AssetBuilder.php b/lib/internal/Magento/Framework/View/Asset/PreProcessor/AlternativeSource/AssetBuilder.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/PreProcessor/AlternativeSourceInterface.php b/lib/internal/Magento/Framework/View/Asset/PreProcessor/AlternativeSourceInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/PreProcessor/Chain.php b/lib/internal/Magento/Framework/View/Asset/PreProcessor/Chain.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/PreProcessor/ChainFactory.php b/lib/internal/Magento/Framework/View/Asset/PreProcessor/ChainFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/PreProcessor/ChainFactoryInterface.php b/lib/internal/Magento/Framework/View/Asset/PreProcessor/ChainFactoryInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/PreProcessor/FileNameResolver.php b/lib/internal/Magento/Framework/View/Asset/PreProcessor/FileNameResolver.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/PreProcessor/FilenameResolverInterface.php b/lib/internal/Magento/Framework/View/Asset/PreProcessor/FilenameResolverInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/PreProcessor/Helper/Sort.php b/lib/internal/Magento/Framework/View/Asset/PreProcessor/Helper/Sort.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/PreProcessor/Helper/SortInterface.php b/lib/internal/Magento/Framework/View/Asset/PreProcessor/Helper/SortInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/PreProcessor/MinificationFilenameResolver.php b/lib/internal/Magento/Framework/View/Asset/PreProcessor/MinificationFilenameResolver.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/PreProcessor/Minify.php b/lib/internal/Magento/Framework/View/Asset/PreProcessor/Minify.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/PreProcessor/ModuleNotation.php b/lib/internal/Magento/Framework/View/Asset/PreProcessor/ModuleNotation.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/PreProcessor/Passthrough.php b/lib/internal/Magento/Framework/View/Asset/PreProcessor/Passthrough.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/PreProcessor/Pool.php b/lib/internal/Magento/Framework/View/Asset/PreProcessor/Pool.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/PreProcessor/VariableNotation.php b/lib/internal/Magento/Framework/View/Asset/PreProcessor/VariableNotation.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/PreProcessorInterface.php b/lib/internal/Magento/Framework/View/Asset/PreProcessorInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/PropertyGroup.php b/lib/internal/Magento/Framework/View/Asset/PropertyGroup.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/PropertyGroupFactory.php b/lib/internal/Magento/Framework/View/Asset/PropertyGroupFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/Remote.php b/lib/internal/Magento/Framework/View/Asset/Remote.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/RemoteFactory.php b/lib/internal/Magento/Framework/View/Asset/RemoteFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/Repository.php b/lib/internal/Magento/Framework/View/Asset/Repository.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/RepositoryMap.php b/lib/internal/Magento/Framework/View/Asset/RepositoryMap.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/Source.php b/lib/internal/Magento/Framework/View/Asset/Source.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/SourceFileGeneratorInterface.php b/lib/internal/Magento/Framework/View/Asset/SourceFileGeneratorInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Asset/SourceFileGeneratorPool.php b/lib/internal/Magento/Framework/View/Asset/SourceFileGeneratorPool.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/BlockPool.php b/lib/internal/Magento/Framework/View/BlockPool.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Config.php b/lib/internal/Magento/Framework/View/Config.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/ConfigInterface.php b/lib/internal/Magento/Framework/View/ConfigInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Context.php b/lib/internal/Magento/Framework/View/Context.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/DataSourcePool.php b/lib/internal/Magento/Framework/View/DataSourcePool.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/Fallback/Rule/Composite.php b/lib/internal/Magento/Framework/View/Design/Fallback/Rule/Composite.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/Fallback/Rule/ModularSwitch.php b/lib/internal/Magento/Framework/View/Design/Fallback/Rule/ModularSwitch.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/Fallback/Rule/ModularSwitchFactory.php b/lib/internal/Magento/Framework/View/Design/Fallback/Rule/ModularSwitchFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/Fallback/Rule/Module.php b/lib/internal/Magento/Framework/View/Design/Fallback/Rule/Module.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/Fallback/Rule/ModuleFactory.php b/lib/internal/Magento/Framework/View/Design/Fallback/Rule/ModuleFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/Fallback/Rule/RuleInterface.php b/lib/internal/Magento/Framework/View/Design/Fallback/Rule/RuleInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/Fallback/Rule/Simple.php b/lib/internal/Magento/Framework/View/Design/Fallback/Rule/Simple.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/Fallback/Rule/SimpleFactory.php b/lib/internal/Magento/Framework/View/Design/Fallback/Rule/SimpleFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/Fallback/Rule/Theme.php b/lib/internal/Magento/Framework/View/Design/Fallback/Rule/Theme.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/Fallback/Rule/ThemeFactory.php b/lib/internal/Magento/Framework/View/Design/Fallback/Rule/ThemeFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/Fallback/RulePool.php b/lib/internal/Magento/Framework/View/Design/Fallback/RulePool.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/FileResolution/Fallback/EmailTemplateFile.php b/lib/internal/Magento/Framework/View/Design/FileResolution/Fallback/EmailTemplateFile.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/FileResolution/Fallback/File.php b/lib/internal/Magento/Framework/View/Design/FileResolution/Fallback/File.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/FileResolution/Fallback/LocaleFile.php b/lib/internal/Magento/Framework/View/Design/FileResolution/Fallback/LocaleFile.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/FileResolution/Fallback/Resolver/Alternative.php b/lib/internal/Magento/Framework/View/Design/FileResolution/Fallback/Resolver/Alternative.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/FileResolution/Fallback/Resolver/Minification.php b/lib/internal/Magento/Framework/View/Design/FileResolution/Fallback/Resolver/Minification.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/FileResolution/Fallback/Resolver/Simple.php b/lib/internal/Magento/Framework/View/Design/FileResolution/Fallback/Resolver/Simple.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/FileResolution/Fallback/ResolverInterface.php b/lib/internal/Magento/Framework/View/Design/FileResolution/Fallback/ResolverInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/FileResolution/Fallback/StaticFile.php b/lib/internal/Magento/Framework/View/Design/FileResolution/Fallback/StaticFile.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/FileResolution/Fallback/TemplateFile.php b/lib/internal/Magento/Framework/View/Design/FileResolution/Fallback/TemplateFile.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/Theme/Customization.php b/lib/internal/Magento/Framework/View/Design/Theme/Customization.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/Theme/Customization/AbstractFile.php b/lib/internal/Magento/Framework/View/Design/Theme/Customization/AbstractFile.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/Theme/Customization/ConfigInterface.php b/lib/internal/Magento/Framework/View/Design/Theme/Customization/ConfigInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/Theme/Customization/File/Css.php b/lib/internal/Magento/Framework/View/Design/Theme/Customization/File/Css.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/Theme/Customization/File/Js.php b/lib/internal/Magento/Framework/View/Design/Theme/Customization/File/Js.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/Theme/Customization/FileAssetInterface.php b/lib/internal/Magento/Framework/View/Design/Theme/Customization/FileAssetInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/Theme/Customization/FileInterface.php b/lib/internal/Magento/Framework/View/Design/Theme/Customization/FileInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/Theme/Customization/FileServiceFactory.php b/lib/internal/Magento/Framework/View/Design/Theme/Customization/FileServiceFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/Theme/Customization/Path.php b/lib/internal/Magento/Framework/View/Design/Theme/Customization/Path.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/Theme/CustomizationInterface.php b/lib/internal/Magento/Framework/View/Design/Theme/CustomizationInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/Theme/Domain/Factory.php b/lib/internal/Magento/Framework/View/Design/Theme/Domain/Factory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/Theme/Domain/PhysicalInterface.php b/lib/internal/Magento/Framework/View/Design/Theme/Domain/PhysicalInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/Theme/Domain/StagingInterface.php b/lib/internal/Magento/Framework/View/Design/Theme/Domain/StagingInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/Theme/Domain/VirtualInterface.php b/lib/internal/Magento/Framework/View/Design/Theme/Domain/VirtualInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/Theme/File/CollectionInterface.php b/lib/internal/Magento/Framework/View/Design/Theme/File/CollectionInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/Theme/FileFactory.php b/lib/internal/Magento/Framework/View/Design/Theme/FileFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/Theme/FileInterface.php b/lib/internal/Magento/Framework/View/Design/Theme/FileInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/Theme/FileProviderInterface.php b/lib/internal/Magento/Framework/View/Design/Theme/FileProviderInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/Theme/FlyweightFactory.php b/lib/internal/Magento/Framework/View/Design/Theme/FlyweightFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/Theme/Image.php b/lib/internal/Magento/Framework/View/Design/Theme/Image.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/Theme/Image/PathInterface.php b/lib/internal/Magento/Framework/View/Design/Theme/Image/PathInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/Theme/Image/Uploader.php b/lib/internal/Magento/Framework/View/Design/Theme/Image/Uploader.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/Theme/ImageFactory.php b/lib/internal/Magento/Framework/View/Design/Theme/ImageFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/Theme/Label.php b/lib/internal/Magento/Framework/View/Design/Theme/Label.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/Theme/Label/ListInterface.php b/lib/internal/Magento/Framework/View/Design/Theme/Label/ListInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/Theme/Label/Options.php b/lib/internal/Magento/Framework/View/Design/Theme/Label/Options.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/Theme/LabelFactory.php b/lib/internal/Magento/Framework/View/Design/Theme/LabelFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/Theme/ListInterface.php b/lib/internal/Magento/Framework/View/Design/Theme/ListInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/Theme/ResolverInterface.php b/lib/internal/Magento/Framework/View/Design/Theme/ResolverInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/Theme/ThemeList.php b/lib/internal/Magento/Framework/View/Design/Theme/ThemeList.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/Theme/ThemePackage.php b/lib/internal/Magento/Framework/View/Design/Theme/ThemePackage.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/Theme/ThemePackageFactory.php b/lib/internal/Magento/Framework/View/Design/Theme/ThemePackageFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/Theme/ThemePackageList.php b/lib/internal/Magento/Framework/View/Design/Theme/ThemePackageList.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/Theme/ThemeProvider.php b/lib/internal/Magento/Framework/View/Design/Theme/ThemeProvider.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/Theme/ThemeProviderInterface.php b/lib/internal/Magento/Framework/View/Design/Theme/ThemeProviderInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/Theme/Validator.php b/lib/internal/Magento/Framework/View/Design/Theme/Validator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/ThemeFactory.php b/lib/internal/Magento/Framework/View/Design/ThemeFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Design/ThemeInterface.php b/lib/internal/Magento/Framework/View/Design/ThemeInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/DesignExceptions.php b/lib/internal/Magento/Framework/View/DesignExceptions.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/DesignInterface.php b/lib/internal/Magento/Framework/View/DesignInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/DesignLoader.php b/lib/internal/Magento/Framework/View/DesignLoader.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/AbstractBlock.php b/lib/internal/Magento/Framework/View/Element/AbstractBlock.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/Block/ArgumentInterface.php b/lib/internal/Magento/Framework/View/Element/Block/ArgumentInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/BlockFactory.php b/lib/internal/Magento/Framework/View/Element/BlockFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/BlockInterface.php b/lib/internal/Magento/Framework/View/Element/BlockInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/Context.php b/lib/internal/Magento/Framework/View/Element/Context.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/ExceptionHandlerBlock.php b/lib/internal/Magento/Framework/View/Element/ExceptionHandlerBlock.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/ExceptionHandlerBlockFactory.php b/lib/internal/Magento/Framework/View/Element/ExceptionHandlerBlockFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/FormKey.php b/lib/internal/Magento/Framework/View/Element/FormKey.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/Html/Calendar.php b/lib/internal/Magento/Framework/View/Element/Html/Calendar.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/Html/Date.php b/lib/internal/Magento/Framework/View/Element/Html/Date.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/Html/Link.php b/lib/internal/Magento/Framework/View/Element/Html/Link.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/Html/Link/Current.php b/lib/internal/Magento/Framework/View/Element/Html/Link/Current.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/Html/Links.php b/lib/internal/Magento/Framework/View/Element/Html/Links.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/Html/Select.php b/lib/internal/Magento/Framework/View/Element/Html/Select.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/Js/Components.php b/lib/internal/Magento/Framework/View/Element/Js/Components.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/Js/Cookie.php b/lib/internal/Magento/Framework/View/Element/Js/Cookie.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/Message/InterpretationMediator.php b/lib/internal/Magento/Framework/View/Element/Message/InterpretationMediator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/Message/InterpretationStrategy.php b/lib/internal/Magento/Framework/View/Element/Message/InterpretationStrategy.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/Message/InterpretationStrategyInterface.php b/lib/internal/Magento/Framework/View/Element/Message/InterpretationStrategyInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/Message/MessageConfigurationsPool.php b/lib/internal/Magento/Framework/View/Element/Message/MessageConfigurationsPool.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/Message/Renderer/BlockRenderer.php b/lib/internal/Magento/Framework/View/Element/Message/Renderer/BlockRenderer.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/Message/Renderer/BlockRenderer/Template.php b/lib/internal/Magento/Framework/View/Element/Message/Renderer/BlockRenderer/Template.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/Message/Renderer/EscapeRenderer.php b/lib/internal/Magento/Framework/View/Element/Message/Renderer/EscapeRenderer.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/Message/Renderer/PoolInterface.php b/lib/internal/Magento/Framework/View/Element/Message/Renderer/PoolInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/Message/Renderer/RendererInterface.php b/lib/internal/Magento/Framework/View/Element/Message/Renderer/RendererInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/Message/Renderer/RenderersPool.php b/lib/internal/Magento/Framework/View/Element/Message/Renderer/RenderersPool.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/Messages.php b/lib/internal/Magento/Framework/View/Element/Messages.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/Redirect.php b/lib/internal/Magento/Framework/View/Element/Redirect.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/RendererInterface.php b/lib/internal/Magento/Framework/View/Element/RendererInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/RendererList.php b/lib/internal/Magento/Framework/View/Element/RendererList.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/Template.php b/lib/internal/Magento/Framework/View/Element/Template.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/Template/Context.php b/lib/internal/Magento/Framework/View/Element/Template/Context.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/Template/File/Resolver.php b/lib/internal/Magento/Framework/View/Element/Template/File/Resolver.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/Template/File/Validator.php b/lib/internal/Magento/Framework/View/Element/Template/File/Validator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/Text.php b/lib/internal/Magento/Framework/View/Element/Text.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/Text/ListText.php b/lib/internal/Magento/Framework/View/Element/Text/ListText.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/Text/TextList/Item.php b/lib/internal/Magento/Framework/View/Element/Text/TextList/Item.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/Text/TextList/Link.php b/lib/internal/Magento/Framework/View/Element/Text/TextList/Link.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/Argument/Interpreter/ConfigurableObject.php b/lib/internal/Magento/Framework/View/Element/UiComponent/Argument/Interpreter/ConfigurableObject.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/ArrayObjectFactory.php b/lib/internal/Magento/Framework/View/Element/UiComponent/ArrayObjectFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/BlockWrapperInterface.php b/lib/internal/Magento/Framework/View/Element/UiComponent/BlockWrapperInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/Config/Converter.php b/lib/internal/Magento/Framework/View/Element/UiComponent/Config/Converter.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/Config/DomMerger.php b/lib/internal/Magento/Framework/View/Element/UiComponent/Config/DomMerger.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/Config/DomMergerInterface.php b/lib/internal/Magento/Framework/View/Element/UiComponent/Config/DomMergerInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/Config/FileCollector/AggregatedFileCollector.php b/lib/internal/Magento/Framework/View/Element/UiComponent/Config/FileCollector/AggregatedFileCollector.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/Config/FileCollector/AggregatedFileCollectorFactory.php b/lib/internal/Magento/Framework/View/Element/UiComponent/Config/FileCollector/AggregatedFileCollectorFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/Config/FileCollectorInterface.php b/lib/internal/Magento/Framework/View/Element/UiComponent/Config/FileCollectorInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/Config/ManagerInterface.php b/lib/internal/Magento/Framework/View/Element/UiComponent/Config/ManagerInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/Config/Provider/Component/Definition.php b/lib/internal/Magento/Framework/View/Element/UiComponent/Config/Provider/Component/Definition.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/Config/Provider/Template.php b/lib/internal/Magento/Framework/View/Element/UiComponent/Config/Provider/Template.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/Config/Reader.php b/lib/internal/Magento/Framework/View/Element/UiComponent/Config/Reader.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/Config/ReaderFactory.php b/lib/internal/Magento/Framework/View/Element/UiComponent/Config/ReaderFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/Config/UiReaderInterface.php b/lib/internal/Magento/Framework/View/Element/UiComponent/Config/UiReaderInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/ContainerInterface.php b/lib/internal/Magento/Framework/View/Element/UiComponent/ContainerInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/ContentType/AbstractContentType.php b/lib/internal/Magento/Framework/View/Element/UiComponent/ContentType/AbstractContentType.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/ContentType/ContentTypeFactory.php b/lib/internal/Magento/Framework/View/Element/UiComponent/ContentType/ContentTypeFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/ContentType/ContentTypeInterface.php b/lib/internal/Magento/Framework/View/Element/UiComponent/ContentType/ContentTypeInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/ContentType/Html.php b/lib/internal/Magento/Framework/View/Element/UiComponent/ContentType/Html.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/ContentType/Json.php b/lib/internal/Magento/Framework/View/Element/UiComponent/ContentType/Json.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/ContentType/Xml.php b/lib/internal/Magento/Framework/View/Element/UiComponent/ContentType/Xml.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/Context.php b/lib/internal/Magento/Framework/View/Element/UiComponent/Context.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/ContextFactory.php b/lib/internal/Magento/Framework/View/Element/UiComponent/ContextFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/ContextInterface.php b/lib/internal/Magento/Framework/View/Element/UiComponent/ContextInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/Control/ActionPoolFactory.php b/lib/internal/Magento/Framework/View/Element/UiComponent/Control/ActionPoolFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/Control/ActionPoolInterface.php b/lib/internal/Magento/Framework/View/Element/UiComponent/Control/ActionPoolInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/Control/ButtonProviderFactory.php b/lib/internal/Magento/Framework/View/Element/UiComponent/Control/ButtonProviderFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/Control/ButtonProviderInterface.php b/lib/internal/Magento/Framework/View/Element/UiComponent/Control/ButtonProviderInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/Control/ControlInterface.php b/lib/internal/Magento/Framework/View/Element/UiComponent/Control/ControlInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/Control/DummyButton.php b/lib/internal/Magento/Framework/View/Element/UiComponent/Control/DummyButton.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/DataProvider/CollectionFactory.php b/lib/internal/Magento/Framework/View/Element/UiComponent/DataProvider/CollectionFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/DataProvider/DataProvider.php b/lib/internal/Magento/Framework/View/Element/UiComponent/DataProvider/DataProvider.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/DataProvider/DataProviderInterface.php b/lib/internal/Magento/Framework/View/Element/UiComponent/DataProvider/DataProviderInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/DataProvider/Document.php b/lib/internal/Magento/Framework/View/Element/UiComponent/DataProvider/Document.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/DataProvider/FilterApplierInterface.php b/lib/internal/Magento/Framework/View/Element/UiComponent/DataProvider/FilterApplierInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/DataProvider/FilterPool.php b/lib/internal/Magento/Framework/View/Element/UiComponent/DataProvider/FilterPool.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/DataProvider/FulltextFilter.php b/lib/internal/Magento/Framework/View/Element/UiComponent/DataProvider/FulltextFilter.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/DataProvider/RegularFilter.php b/lib/internal/Magento/Framework/View/Element/UiComponent/DataProvider/RegularFilter.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/DataProvider/Reporting.php b/lib/internal/Magento/Framework/View/Element/UiComponent/DataProvider/Reporting.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/DataProvider/SearchResult.php b/lib/internal/Magento/Framework/View/Element/UiComponent/DataProvider/SearchResult.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/DataSourceInterface.php b/lib/internal/Magento/Framework/View/Element/UiComponent/DataSourceInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/Factory/ComponentFactoryInterface.php b/lib/internal/Magento/Framework/View/Element/UiComponent/Factory/ComponentFactoryInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/Factory/HtmlContentFactory.php b/lib/internal/Magento/Framework/View/Element/UiComponent/Factory/HtmlContentFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/JsConfigInterface.php b/lib/internal/Magento/Framework/View/Element/UiComponent/JsConfigInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/LayoutInterface.php b/lib/internal/Magento/Framework/View/Element/UiComponent/LayoutInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/ObserverInterface.php b/lib/internal/Magento/Framework/View/Element/UiComponent/ObserverInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/PoolInterface.php b/lib/internal/Magento/Framework/View/Element/UiComponent/PoolInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/Processor.php b/lib/internal/Magento/Framework/View/Element/UiComponent/Processor.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponent/SubjectInterface.php b/lib/internal/Magento/Framework/View/Element/UiComponent/SubjectInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Element/UiComponentInterface.php b/lib/internal/Magento/Framework/View/Element/UiComponentInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/EntitySpecificHandlesList.php b/lib/internal/Magento/Framework/View/EntitySpecificHandlesList.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/File.php b/lib/internal/Magento/Framework/View/File.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/File/Collector/Base.php b/lib/internal/Magento/Framework/View/File/Collector/Base.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/File/Collector/Decorator/ModuleDependency.php b/lib/internal/Magento/Framework/View/File/Collector/Decorator/ModuleDependency.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/File/Collector/Decorator/ModuleOutput.php b/lib/internal/Magento/Framework/View/File/Collector/Decorator/ModuleOutput.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/File/Collector/Override/Base.php b/lib/internal/Magento/Framework/View/File/Collector/Override/Base.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/File/Collector/Override/ThemeModular.php b/lib/internal/Magento/Framework/View/File/Collector/Override/ThemeModular.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/File/Collector/Theme.php b/lib/internal/Magento/Framework/View/File/Collector/Theme.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/File/Collector/ThemeModular.php b/lib/internal/Magento/Framework/View/File/Collector/ThemeModular.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/File/CollectorInterface.php b/lib/internal/Magento/Framework/View/File/CollectorInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/File/Factory.php b/lib/internal/Magento/Framework/View/File/Factory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/File/FileList.php b/lib/internal/Magento/Framework/View/File/FileList.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/File/FileList/CollateInterface.php b/lib/internal/Magento/Framework/View/File/FileList/CollateInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/File/FileList/Collator.php b/lib/internal/Magento/Framework/View/File/FileList/Collator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/File/FileList/Factory.php b/lib/internal/Magento/Framework/View/File/FileList/Factory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/FileSystem.php b/lib/internal/Magento/Framework/View/FileSystem.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Helper/Js.php b/lib/internal/Magento/Framework/View/Helper/Js.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Helper/PathPattern.php b/lib/internal/Magento/Framework/View/Helper/PathPattern.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/AclCondition.php b/lib/internal/Magento/Framework/View/Layout/AclCondition.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/Argument/Interpreter/DataObject.php b/lib/internal/Magento/Framework/View/Layout/Argument/Interpreter/DataObject.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/Argument/Interpreter/Decorator/Updater.php b/lib/internal/Magento/Framework/View/Layout/Argument/Interpreter/Decorator/Updater.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/Argument/Interpreter/HelperMethod.php b/lib/internal/Magento/Framework/View/Layout/Argument/Interpreter/HelperMethod.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/Argument/Interpreter/NamedParams.php b/lib/internal/Magento/Framework/View/Layout/Argument/Interpreter/NamedParams.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/Argument/Interpreter/Options.php b/lib/internal/Magento/Framework/View/Layout/Argument/Interpreter/Options.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/Argument/Interpreter/Passthrough.php b/lib/internal/Magento/Framework/View/Layout/Argument/Interpreter/Passthrough.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/Argument/Interpreter/Url.php b/lib/internal/Magento/Framework/View/Layout/Argument/Interpreter/Url.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/Argument/Parser.php b/lib/internal/Magento/Framework/View/Layout/Argument/Parser.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/Argument/UpdaterInterface.php b/lib/internal/Magento/Framework/View/Layout/Argument/UpdaterInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/Builder.php b/lib/internal/Magento/Framework/View/Layout/Builder.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/BuilderFactory.php b/lib/internal/Magento/Framework/View/Layout/BuilderFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/BuilderInterface.php b/lib/internal/Magento/Framework/View/Layout/BuilderInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/Condition/Condition.php b/lib/internal/Magento/Framework/View/Layout/Condition/Condition.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/Condition/ConditionFactory.php b/lib/internal/Magento/Framework/View/Layout/Condition/ConditionFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/Condition/VisibilityConditionInterface.php b/lib/internal/Magento/Framework/View/Layout/Condition/VisibilityConditionInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/ConfigCondition.php b/lib/internal/Magento/Framework/View/Layout/ConfigCondition.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/Data/Structure.php b/lib/internal/Magento/Framework/View/Layout/Data/Structure.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/Element.php b/lib/internal/Magento/Framework/View/Layout/Element.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/File/Collector/Aggregated.php b/lib/internal/Magento/Framework/View/Layout/File/Collector/Aggregated.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/Generator/Container.php b/lib/internal/Magento/Framework/View/Layout/Generator/Container.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/Generator/Context.php b/lib/internal/Magento/Framework/View/Layout/Generator/Context.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/Generator/ContextFactory.php b/lib/internal/Magento/Framework/View/Layout/Generator/ContextFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/Generator/Structure.php b/lib/internal/Magento/Framework/View/Layout/Generator/Structure.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/Generator/UiComponent.php b/lib/internal/Magento/Framework/View/Layout/Generator/UiComponent.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/GeneratorInterface.php b/lib/internal/Magento/Framework/View/Layout/GeneratorInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/GeneratorPool.php b/lib/internal/Magento/Framework/View/Layout/GeneratorPool.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/Generic.php b/lib/internal/Magento/Framework/View/Layout/Generic.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/PageType/Config.php b/lib/internal/Magento/Framework/View/Layout/PageType/Config.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/PageType/Config/Converter.php b/lib/internal/Magento/Framework/View/Layout/PageType/Config/Converter.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/PageType/Config/Reader.php b/lib/internal/Magento/Framework/View/Layout/PageType/Config/Reader.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/PageType/Config/SchemaLocator.php b/lib/internal/Magento/Framework/View/Layout/PageType/Config/SchemaLocator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/Pool.php b/lib/internal/Magento/Framework/View/Layout/Pool.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/ProcessorFactory.php b/lib/internal/Magento/Framework/View/Layout/ProcessorFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/ProcessorInterface.php b/lib/internal/Magento/Framework/View/Layout/ProcessorInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/Proxy.php b/lib/internal/Magento/Framework/View/Layout/Proxy.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/Reader/Context.php b/lib/internal/Magento/Framework/View/Layout/Reader/Context.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/Reader/ContextFactory.php b/lib/internal/Magento/Framework/View/Layout/Reader/ContextFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/Reader/Move.php b/lib/internal/Magento/Framework/View/Layout/Reader/Move.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/Reader/UiComponent.php b/lib/internal/Magento/Framework/View/Layout/Reader/UiComponent.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/Reader/Visibility/Condition.php b/lib/internal/Magento/Framework/View/Layout/Reader/Visibility/Condition.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/ReaderFactory.php b/lib/internal/Magento/Framework/View/Layout/ReaderFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/ReaderInterface.php b/lib/internal/Magento/Framework/View/Layout/ReaderInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/ReaderPool.php b/lib/internal/Magento/Framework/View/Layout/ReaderPool.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/ScheduledStructure.php b/lib/internal/Magento/Framework/View/Layout/ScheduledStructure.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/ScheduledStructure/Helper.php b/lib/internal/Magento/Framework/View/Layout/ScheduledStructure/Helper.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/etc/head.xsd b/lib/internal/Magento/Framework/View/Layout/etc/head.xsd
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/etc/html.xsd b/lib/internal/Magento/Framework/View/Layout/etc/html.xsd
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/etc/layout_merged.xsd b/lib/internal/Magento/Framework/View/Layout/etc/layout_merged.xsd
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/etc/page_configuration.xsd b/lib/internal/Magento/Framework/View/Layout/etc/page_configuration.xsd
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Layout/etc/page_types.xsd b/lib/internal/Magento/Framework/View/Layout/etc/page_types.xsd
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/LayoutFactory.php b/lib/internal/Magento/Framework/View/LayoutFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/LayoutInterface.php b/lib/internal/Magento/Framework/View/LayoutInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Model/Layout/Merge.php b/lib/internal/Magento/Framework/View/Model/Layout/Merge.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Model/Layout/Translator.php b/lib/internal/Magento/Framework/View/Model/Layout/Translator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Model/Layout/Update/Validator.php b/lib/internal/Magento/Framework/View/Model/Layout/Update/Validator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Model/PageLayout/Config/BuilderInterface.php b/lib/internal/Magento/Framework/View/Model/PageLayout/Config/BuilderInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Page/Builder.php b/lib/internal/Magento/Framework/View/Page/Builder.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Page/Config.php b/lib/internal/Magento/Framework/View/Page/Config.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Page/Config/Generator/Body.php b/lib/internal/Magento/Framework/View/Page/Config/Generator/Body.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Page/Config/Generator/Head.php b/lib/internal/Magento/Framework/View/Page/Config/Generator/Head.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Page/Config/Reader/Body.php b/lib/internal/Magento/Framework/View/Page/Config/Reader/Body.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Page/Config/Reader/Head.php b/lib/internal/Magento/Framework/View/Page/Config/Reader/Head.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Page/Config/Reader/Html.php b/lib/internal/Magento/Framework/View/Page/Config/Reader/Html.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Page/Config/Renderer.php b/lib/internal/Magento/Framework/View/Page/Config/Renderer.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Page/Config/RendererFactory.php b/lib/internal/Magento/Framework/View/Page/Config/RendererFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Page/Config/RendererInterface.php b/lib/internal/Magento/Framework/View/Page/Config/RendererInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Page/Config/Structure.php b/lib/internal/Magento/Framework/View/Page/Config/Structure.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Page/ConfigFactory.php b/lib/internal/Magento/Framework/View/Page/ConfigFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Page/FaviconInterface.php b/lib/internal/Magento/Framework/View/Page/FaviconInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Page/Layout/Reader.php b/lib/internal/Magento/Framework/View/Page/Layout/Reader.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Page/Title.php b/lib/internal/Magento/Framework/View/Page/Title.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/PageLayout/Config.php b/lib/internal/Magento/Framework/View/PageLayout/Config.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/PageLayout/File/Collector/Aggregated.php b/lib/internal/Magento/Framework/View/PageLayout/File/Collector/Aggregated.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/PageLayout/etc/layouts.xsd b/lib/internal/Magento/Framework/View/PageLayout/etc/layouts.xsd
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/README.md b/lib/internal/Magento/Framework/View/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Render/RenderFactory.php b/lib/internal/Magento/Framework/View/Render/RenderFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/RenderInterface.php b/lib/internal/Magento/Framework/View/RenderInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Result/Layout.php b/lib/internal/Magento/Framework/View/Result/Layout.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Result/LayoutFactory.php b/lib/internal/Magento/Framework/View/Result/LayoutFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Result/Page.php b/lib/internal/Magento/Framework/View/Result/Page.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Result/PageFactory.php b/lib/internal/Magento/Framework/View/Result/PageFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Template/Html/Minifier.php b/lib/internal/Magento/Framework/View/Template/Html/Minifier.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Template/Html/MinifierInterface.php b/lib/internal/Magento/Framework/View/Template/Html/MinifierInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/TemplateEngine/Php.php b/lib/internal/Magento/Framework/View/TemplateEngine/Php.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/TemplateEngine/Xhtml.php b/lib/internal/Magento/Framework/View/TemplateEngine/Xhtml.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/Compiler.php b/lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/Compiler.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/Compiler/Attribute.php b/lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/Compiler/Attribute.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/Compiler/AttributeInterface.php b/lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/Compiler/AttributeInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/Compiler/Cdata.php b/lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/Compiler/Cdata.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/Compiler/CdataInterface.php b/lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/Compiler/CdataInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/Compiler/Comment.php b/lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/Compiler/Comment.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/Compiler/CommentInterface.php b/lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/Compiler/CommentInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/Compiler/Directive/CallableMethod.php b/lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/Compiler/Directive/CallableMethod.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/Compiler/Directive/DirectiveInterface.php b/lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/Compiler/Directive/DirectiveInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/Compiler/Directive/Variable.php b/lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/Compiler/Directive/Variable.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/Compiler/Element/ElementInterface.php b/lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/Compiler/Element/ElementInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/Compiler/Text.php b/lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/Compiler/Text.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/Compiler/TextInterface.php b/lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/Compiler/TextInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/CompilerFactory.php b/lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/CompilerFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/CompilerInterface.php b/lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/CompilerInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/ResultFactory.php b/lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/ResultFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/ResultInterface.php b/lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/ResultInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/Template.php b/lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/Template.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/TemplateFactory.php b/lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/TemplateFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/TemplateEngineFactory.php b/lib/internal/Magento/Framework/View/TemplateEngineFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/TemplateEngineInterface.php b/lib/internal/Magento/Framework/View/TemplateEngineInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/TemplateEnginePool.php b/lib/internal/Magento/Framework/View/TemplateEnginePool.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Asset/Bundle/ManagerTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Asset/Bundle/ManagerTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Asset/BundleTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Asset/BundleTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Asset/CollectionTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Asset/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Asset/ConfigTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Asset/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Asset/File/FallbackContextTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Asset/File/FallbackContextTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Asset/FileTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Asset/FileTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Asset/GroupedCollectionTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Asset/GroupedCollectionTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Asset/LockerProcessTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Asset/LockerProcessTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Asset/MergeServiceTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Asset/MergeServiceTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Asset/MergeStrategy/ChecksumTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Asset/MergeStrategy/ChecksumTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Asset/MergeStrategy/DirectTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Asset/MergeStrategy/DirectTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Asset/MergeStrategy/FileExistsTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Asset/MergeStrategy/FileExistsTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Asset/MergedTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Asset/MergedTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Asset/MinificationTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Asset/MinificationTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Asset/NotationResolver/ModuleTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Asset/NotationResolver/ModuleTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Asset/NotationResolver/VariableTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Asset/NotationResolver/VariableTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Asset/PreProcessor/AlternativeSourceTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Asset/PreProcessor/AlternativeSourceTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Asset/PreProcessor/ChainTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Asset/PreProcessor/ChainTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Asset/PreProcessor/Helper/SortTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Asset/PreProcessor/Helper/SortTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Asset/PreProcessor/MinificationFilenameResolverTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Asset/PreProcessor/MinificationFilenameResolverTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Asset/PreProcessor/MinifyTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Asset/PreProcessor/MinifyTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Asset/PreProcessor/PoolTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Asset/PreProcessor/PoolTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Asset/PropertyGroupTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Asset/PropertyGroupTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Asset/RemoteTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Asset/RemoteTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Asset/RepositoryTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Asset/RepositoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Asset/SourceTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Asset/SourceTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/BlockPoolTest.php b/lib/internal/Magento/Framework/View/Test/Unit/BlockPoolTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/BlockPoolTestBlock.php b/lib/internal/Magento/Framework/View/Test/Unit/BlockPoolTestBlock.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/ConfigTest.php b/lib/internal/Magento/Framework/View/Test/Unit/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/ContextTest.php b/lib/internal/Magento/Framework/View/Test/Unit/ContextTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/DataSourcePoolTest.php b/lib/internal/Magento/Framework/View/Test/Unit/DataSourcePoolTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/DataSourcePoolTestBlock.php b/lib/internal/Magento/Framework/View/Test/Unit/DataSourcePoolTestBlock.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Design/Fallback/Rule/CompositeTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Design/Fallback/Rule/CompositeTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Design/Fallback/Rule/ModularSwitchTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Design/Fallback/Rule/ModularSwitchTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Design/Fallback/Rule/ModuleTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Design/Fallback/Rule/ModuleTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Design/Fallback/Rule/SimpleTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Design/Fallback/Rule/SimpleTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Design/Fallback/Rule/ThemeTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Design/Fallback/Rule/ThemeTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Design/Fallback/RulePoolTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Design/Fallback/RulePoolTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Design/FileResolution/Fallback/FileTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Design/FileResolution/Fallback/FileTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Design/FileResolution/Fallback/LocaleFileTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Design/FileResolution/Fallback/LocaleFileTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Design/FileResolution/Fallback/Resolver/AlternativeTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Design/FileResolution/Fallback/Resolver/AlternativeTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Design/FileResolution/Fallback/Resolver/MinificationTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Design/FileResolution/Fallback/Resolver/MinificationTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Design/FileResolution/Fallback/Resolver/SimpleTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Design/FileResolution/Fallback/Resolver/SimpleTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Design/FileResolution/Fallback/StaticFileTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Design/FileResolution/Fallback/StaticFileTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Design/FileResolution/Fallback/TemplateFileTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Design/FileResolution/Fallback/TemplateFileTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Design/Theme/Customization/AbstractFileTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Design/Theme/Customization/AbstractFileTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Design/Theme/Customization/PathTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Design/Theme/Customization/PathTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Design/Theme/CustomizationTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Design/Theme/CustomizationTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Design/Theme/Domain/FactoryTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Design/Theme/Domain/FactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Design/Theme/FlyweightFactoryTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Design/Theme/FlyweightFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Design/Theme/Image/UploaderTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Design/Theme/Image/UploaderTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Design/Theme/ImageTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Design/Theme/ImageTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Design/Theme/LabelTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Design/Theme/LabelTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Design/Theme/ThemePackageListTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Design/Theme/ThemePackageListTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Design/Theme/ThemePackageTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Design/Theme/ThemePackageTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/DesignExceptionsTest.php b/lib/internal/Magento/Framework/View/Test/Unit/DesignExceptionsTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/DesignLoaderTest.php b/lib/internal/Magento/Framework/View/Test/Unit/DesignLoaderTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Element/AbstractBlockTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Element/AbstractBlockTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Element/BlockFactoryTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Element/BlockFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Element/FormKeyTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Element/FormKeyTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Element/Html/CalendarTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Element/Html/CalendarTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Element/Html/Link/CurrentTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Element/Html/Link/CurrentTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Element/Html/LinkTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Element/Html/LinkTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Element/Html/LinksTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Element/Html/LinksTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Element/Html/SelectTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Element/Html/SelectTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Element/Js/CookieTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Element/Js/CookieTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Element/Message/InterpretationMediatorTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Element/Message/InterpretationMediatorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Element/Message/InterpretationStrategyTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Element/Message/InterpretationStrategyTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Element/Message/MessageConfigurationsPoolTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Element/Message/MessageConfigurationsPoolTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Element/Message/Renderer/BlockRenderer/TemplateTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Element/Message/Renderer/BlockRenderer/TemplateTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Element/Message/Renderer/BlockRendererTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Element/Message/Renderer/BlockRendererTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Element/Message/Renderer/EscapeRendererTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Element/Message/Renderer/EscapeRendererTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Element/Message/Renderer/RenderersPoolTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Element/Message/Renderer/RenderersPoolTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Element/MessagesTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Element/MessagesTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Element/RendererListTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Element/RendererListTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Element/Template/File/ResolverTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Element/Template/File/ResolverTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Element/Template/File/ValidatorTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Element/Template/File/ValidatorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Element/TemplateTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Element/TemplateTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Element/Text/TextList/ItemTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Element/Text/TextList/ItemTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Element/Text/TextList/LinkTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Element/Text/TextList/LinkTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Element/TextTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Element/TextTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Element/UiComponent/ContextTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Element/UiComponent/ContextTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Element/UiComponent/Control/DummyButtonTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Element/UiComponent/Control/DummyButtonTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Element/UiComponent/DataProvider/FulltextFilterTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Element/UiComponent/DataProvider/FulltextFilterTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Element/UiComponent/ProcessorTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Element/UiComponent/ProcessorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/EntitySpecificHandlesListTest.php b/lib/internal/Magento/Framework/View/Test/Unit/EntitySpecificHandlesListTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/File/Collector/BaseTest.php b/lib/internal/Magento/Framework/View/Test/Unit/File/Collector/BaseTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/File/Collector/Decorator/ModuleDependencyTest.php b/lib/internal/Magento/Framework/View/Test/Unit/File/Collector/Decorator/ModuleDependencyTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/File/Collector/Decorator/ModuleOutputTest.php b/lib/internal/Magento/Framework/View/Test/Unit/File/Collector/Decorator/ModuleOutputTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/File/Collector/Override/BaseTest.php b/lib/internal/Magento/Framework/View/Test/Unit/File/Collector/Override/BaseTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/File/Collector/Override/ThemeModularTest.php b/lib/internal/Magento/Framework/View/Test/Unit/File/Collector/Override/ThemeModularTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/File/Collector/ThemeModularTest.php b/lib/internal/Magento/Framework/View/Test/Unit/File/Collector/ThemeModularTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/File/Collector/ThemeTest.php b/lib/internal/Magento/Framework/View/Test/Unit/File/Collector/ThemeTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/File/FactoryTest.php b/lib/internal/Magento/Framework/View/Test/Unit/File/FactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/File/FileList/CollatorTest.php b/lib/internal/Magento/Framework/View/Test/Unit/File/FileList/CollatorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/File/FileList/FactoryTest.php b/lib/internal/Magento/Framework/View/Test/Unit/File/FileList/FactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/File/FileListTest.php b/lib/internal/Magento/Framework/View/Test/Unit/File/FileListTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/FileSystemTest.php b/lib/internal/Magento/Framework/View/Test/Unit/FileSystemTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/FileTest.php b/lib/internal/Magento/Framework/View/Test/Unit/FileTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Helper/JsTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Helper/JsTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Helper/PathPatternTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Helper/PathPatternTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Layout/Argument/Interpreter/Decorator/UpdaterTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Layout/Argument/Interpreter/Decorator/UpdaterTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Layout/Argument/Interpreter/HelperMethodTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Layout/Argument/Interpreter/HelperMethodTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Layout/Argument/Interpreter/NamedParamsTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Layout/Argument/Interpreter/NamedParamsTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Layout/Argument/Interpreter/ObjectTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Layout/Argument/Interpreter/ObjectTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Layout/Argument/Interpreter/OptionsTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Layout/Argument/Interpreter/OptionsTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Layout/Argument/Interpreter/PassthroughTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Layout/Argument/Interpreter/PassthroughTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Layout/Argument/Interpreter/UrlTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Layout/Argument/Interpreter/UrlTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Layout/Argument/ParserTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Layout/Argument/ParserTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Layout/Argument/_files/arguments.xml b/lib/internal/Magento/Framework/View/Test/Unit/Layout/Argument/_files/arguments.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Layout/BuilderFactoryTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Layout/BuilderFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Layout/BuilderTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Layout/BuilderTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Layout/Condition/AclConditionTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Layout/Condition/AclConditionTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Layout/Data/StructureTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Layout/Data/StructureTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Layout/ElementTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Layout/ElementTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Layout/File/Collector/AggregateTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Layout/File/Collector/AggregateTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Layout/Generator/BlockTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Layout/Generator/BlockTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Layout/Generator/ContainerTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Layout/Generator/ContainerTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Layout/Generator/UiComponentTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Layout/Generator/UiComponentTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Layout/GeneratorPoolTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Layout/GeneratorPoolTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Layout/Reader/FactoryTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Layout/Reader/FactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Layout/Reader/MoveTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Layout/Reader/MoveTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Layout/Reader/UiComponentTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Layout/Reader/UiComponentTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Layout/ScheduledStructure/HelperTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Layout/ScheduledStructure/HelperTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Layout/ScheduledStructureTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Layout/ScheduledStructureTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Layout/XsdTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Layout/XsdTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Layout/_files/action.xml b/lib/internal/Magento/Framework/View/Test/Unit/Layout/_files/action.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Layout/_files/arguments.xml b/lib/internal/Magento/Framework/View/Test/Unit/Layout/_files/arguments.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Layout/_files/invalidLayoutArgumentsXmlArray.php b/lib/internal/Magento/Framework/View/Test/Unit/Layout/_files/invalidLayoutArgumentsXmlArray.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/LayoutFactoryTest.php b/lib/internal/Magento/Framework/View/Test/Unit/LayoutFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Model/Layout/MergeTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Model/Layout/MergeTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Model/Layout/TranslatorTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Model/Layout/TranslatorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Model/Layout/Update/ValidatorTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Model/Layout/Update/ValidatorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Page/BuilderTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Page/BuilderTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Page/Config/Generator/BodyTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Page/Config/Generator/BodyTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Page/Config/Generator/HeadTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Page/Config/Generator/HeadTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Page/Config/Reader/HeadTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Page/Config/Reader/HeadTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Page/Config/RendererTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Page/Config/RendererTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Page/Config/StructureTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Page/Config/StructureTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Page/Config/_files/template_body.xml b/lib/internal/Magento/Framework/View/Test/Unit/Page/Config/_files/template_body.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Page/Config/_files/template_head.xml b/lib/internal/Magento/Framework/View/Test/Unit/Page/Config/_files/template_head.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Page/Config/_files/template_html.xml b/lib/internal/Magento/Framework/View/Test/Unit/Page/Config/_files/template_html.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Page/ConfigTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Page/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Page/Layout/ReaderTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Page/Layout/ReaderTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Page/TitleTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Page/TitleTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/PageLayout/ConfigTest.php b/lib/internal/Magento/Framework/View/Test/Unit/PageLayout/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/PageLayout/_files/layouts_one.xml b/lib/internal/Magento/Framework/View/Test/Unit/PageLayout/_files/layouts_one.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/PageLayout/_files/layouts_two.xml b/lib/internal/Magento/Framework/View/Test/Unit/PageLayout/_files/layouts_two.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Render/RenderFactoryTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Render/RenderFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Result/LayoutTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Result/LayoutTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Result/PageFactoryTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Result/PageFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Result/PageTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Result/PageTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Template/Html/MinifierTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Template/Html/MinifierTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/TemplateEngine/PhpTest.php b/lib/internal/Magento/Framework/View/Test/Unit/TemplateEngine/PhpTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/TemplateEngine/_files/simple.phtml b/lib/internal/Magento/Framework/View/Test/Unit/TemplateEngine/_files/simple.phtml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/TemplateEngineFactoryTest.php b/lib/internal/Magento/Framework/View/Test/Unit/TemplateEngineFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/TemplateEnginePoolTest.php b/lib/internal/Magento/Framework/View/Test/Unit/TemplateEnginePoolTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/UiComponent/Factory/HtmlContentFactoryTest.php b/lib/internal/Magento/Framework/View/Test/Unit/UiComponent/Factory/HtmlContentFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Url/ConfigTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Url/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Url/CssResolverTest.php b/lib/internal/Magento/Framework/View/Test/Unit/Url/CssResolverTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Url/_files/result.css b/lib/internal/Magento/Framework/View/Test/Unit/Url/_files/result.css
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Url/_files/resultImport.css b/lib/internal/Magento/Framework/View/Test/Unit/Url/_files/resultImport.css
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Url/_files/resultNormalized.css b/lib/internal/Magento/Framework/View/Test/Unit/Url/_files/resultNormalized.css
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Url/_files/source.css b/lib/internal/Magento/Framework/View/Test/Unit/Url/_files/source.css
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Test/Unit/Url/_files/sourceImport.css b/lib/internal/Magento/Framework/View/Test/Unit/Url/_files/sourceImport.css
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Url/Config.php b/lib/internal/Magento/Framework/View/Url/Config.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Url/ConfigInterface.php b/lib/internal/Magento/Framework/View/Url/ConfigInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Url/CssResolver.php b/lib/internal/Magento/Framework/View/Url/CssResolver.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Xsd/Media/TypeDataExtractorInterface.php b/lib/internal/Magento/Framework/View/Xsd/Media/TypeDataExtractorInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/View/Xsd/Media/TypeDataExtractorPool.php b/lib/internal/Magento/Framework/View/Xsd/Media/TypeDataExtractorPool.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Webapi/Authorization.php b/lib/internal/Magento/Framework/Webapi/Authorization.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Webapi/CustomAttributeTypeLocatorInterface.php b/lib/internal/Magento/Framework/Webapi/CustomAttributeTypeLocatorInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Webapi/ErrorProcessor.php b/lib/internal/Magento/Framework/Webapi/ErrorProcessor.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Webapi/Exception.php b/lib/internal/Magento/Framework/Webapi/Exception.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Webapi/README.md b/lib/internal/Magento/Framework/Webapi/README.md
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Webapi/Request.php b/lib/internal/Magento/Framework/Webapi/Request.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Webapi/Response.php b/lib/internal/Magento/Framework/Webapi/Response.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Webapi/Rest/Request.php b/lib/internal/Magento/Framework/Webapi/Rest/Request.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Webapi/Rest/Request/Deserializer/Json.php b/lib/internal/Magento/Framework/Webapi/Rest/Request/Deserializer/Json.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Webapi/Rest/Request/Deserializer/Xml.php b/lib/internal/Magento/Framework/Webapi/Rest/Request/Deserializer/Xml.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Webapi/Rest/Request/DeserializerFactory.php b/lib/internal/Magento/Framework/Webapi/Rest/Request/DeserializerFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Webapi/Rest/Request/DeserializerInterface.php b/lib/internal/Magento/Framework/Webapi/Rest/Request/DeserializerInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Webapi/Rest/Request/ParamOverriderInterface.php b/lib/internal/Magento/Framework/Webapi/Rest/Request/ParamOverriderInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Webapi/Rest/Response.php b/lib/internal/Magento/Framework/Webapi/Rest/Response.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Webapi/Rest/Response/FieldsFilter.php b/lib/internal/Magento/Framework/Webapi/Rest/Response/FieldsFilter.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Webapi/Rest/Response/Renderer/Json.php b/lib/internal/Magento/Framework/Webapi/Rest/Response/Renderer/Json.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Webapi/Rest/Response/Renderer/Xml.php b/lib/internal/Magento/Framework/Webapi/Rest/Response/Renderer/Xml.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Webapi/Rest/Response/RendererFactory.php b/lib/internal/Magento/Framework/Webapi/Rest/Response/RendererFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Webapi/Rest/Response/RendererInterface.php b/lib/internal/Magento/Framework/Webapi/Rest/Response/RendererInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Webapi/ServiceInputProcessor.php b/lib/internal/Magento/Framework/Webapi/ServiceInputProcessor.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Webapi/ServiceOutputProcessor.php b/lib/internal/Magento/Framework/Webapi/ServiceOutputProcessor.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Webapi/ServicePayloadConverterInterface.php b/lib/internal/Magento/Framework/Webapi/ServicePayloadConverterInterface.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Webapi/Soap/ClientFactory.php b/lib/internal/Magento/Framework/Webapi/Soap/ClientFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Webapi/Test/Unit/ErrorProcessorTest.php b/lib/internal/Magento/Framework/Webapi/Test/Unit/ErrorProcessorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Webapi/Test/Unit/RequestTest.php b/lib/internal/Magento/Framework/Webapi/Test/Unit/RequestTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Webapi/Test/Unit/ResponseTest.php b/lib/internal/Magento/Framework/Webapi/Test/Unit/ResponseTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Webapi/Test/Unit/Rest/Request/Deserializer/JsonTest.php b/lib/internal/Magento/Framework/Webapi/Test/Unit/Rest/Request/Deserializer/JsonTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Webapi/Test/Unit/Rest/Request/Deserializer/XmlTest.php b/lib/internal/Magento/Framework/Webapi/Test/Unit/Rest/Request/Deserializer/XmlTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Webapi/Test/Unit/Rest/Request/DeserializerFactoryTest.php b/lib/internal/Magento/Framework/Webapi/Test/Unit/Rest/Request/DeserializerFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Webapi/Test/Unit/Rest/RequestTest.php b/lib/internal/Magento/Framework/Webapi/Test/Unit/Rest/RequestTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Webapi/Test/Unit/Rest/Response/FieldsFilterTest.php b/lib/internal/Magento/Framework/Webapi/Test/Unit/Rest/Response/FieldsFilterTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Webapi/Test/Unit/Rest/Response/Renderer/JsonTest.php b/lib/internal/Magento/Framework/Webapi/Test/Unit/Rest/Response/Renderer/JsonTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Webapi/Test/Unit/Rest/Response/Renderer/XmlTest.php b/lib/internal/Magento/Framework/Webapi/Test/Unit/Rest/Response/Renderer/XmlTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Webapi/Test/Unit/Rest/Response/RendererFactoryTest.php b/lib/internal/Magento/Framework/Webapi/Test/Unit/Rest/Response/RendererFactoryTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Webapi/Test/Unit/Rest/ResponseTest.php b/lib/internal/Magento/Framework/Webapi/Test/Unit/Rest/ResponseTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Webapi/Test/Unit/ServiceInputProcessor/AssociativeArray.php b/lib/internal/Magento/Framework/Webapi/Test/Unit/ServiceInputProcessor/AssociativeArray.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Webapi/Test/Unit/ServiceInputProcessor/DataArray.php b/lib/internal/Magento/Framework/Webapi/Test/Unit/ServiceInputProcessor/DataArray.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Webapi/Test/Unit/ServiceInputProcessor/Nested.php b/lib/internal/Magento/Framework/Webapi/Test/Unit/ServiceInputProcessor/Nested.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Webapi/Test/Unit/ServiceInputProcessor/ObjectWithCustomAttributes.php b/lib/internal/Magento/Framework/Webapi/Test/Unit/ServiceInputProcessor/ObjectWithCustomAttributes.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Webapi/Test/Unit/ServiceInputProcessor/Simple.php b/lib/internal/Magento/Framework/Webapi/Test/Unit/ServiceInputProcessor/Simple.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Webapi/Test/Unit/ServiceInputProcessor/SimpleArray.php b/lib/internal/Magento/Framework/Webapi/Test/Unit/ServiceInputProcessor/SimpleArray.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Webapi/Test/Unit/ServiceInputProcessor/TestService.php b/lib/internal/Magento/Framework/Webapi/Test/Unit/ServiceInputProcessor/TestService.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Webapi/Test/Unit/ServiceInputProcessorTest.php b/lib/internal/Magento/Framework/Webapi/Test/Unit/ServiceInputProcessorTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Xml/Generator.php b/lib/internal/Magento/Framework/Xml/Generator.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Xml/Parser.php b/lib/internal/Magento/Framework/Xml/Parser.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Xml/Security.php b/lib/internal/Magento/Framework/Xml/Security.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Xml/Test/Unit/ParserTest.php b/lib/internal/Magento/Framework/Xml/Test/Unit/ParserTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Xml/Test/Unit/SecurityTest.php b/lib/internal/Magento/Framework/Xml/Test/Unit/SecurityTest.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/Xml/Test/Unit/_files/data.xml b/lib/internal/Magento/Framework/Xml/Test/Unit/_files/data.xml
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/XsltProcessor/XsltProcessorFactory.php b/lib/internal/Magento/Framework/XsltProcessor/XsltProcessorFactory.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/ZendEscaper.php b/lib/internal/Magento/Framework/ZendEscaper.php
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/composer.json b/lib/internal/Magento/Framework/composer.json
old mode 100644
new mode 100755
diff --git a/lib/internal/Magento/Framework/registration.php b/lib/internal/Magento/Framework/registration.php
old mode 100644
new mode 100755
diff --git a/lib/web/FormData.js b/lib/web/FormData.js
old mode 100644
new mode 100755
diff --git a/lib/web/MutationObserver.js b/lib/web/MutationObserver.js
old mode 100644
new mode 100755
diff --git a/lib/web/blank.html b/lib/web/blank.html
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/actions-toolbar.html b/lib/web/css/docs/actions-toolbar.html
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/breadcrumbs.html b/lib/web/css/docs/breadcrumbs.html
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/buttons.html b/lib/web/css/docs/buttons.html
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/components.html b/lib/web/css/docs/components.html
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/docs.css b/lib/web/css/docs/docs.css
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/docs.html b/lib/web/css/docs/docs.html
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/dropdowns.html b/lib/web/css/docs/dropdowns.html
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/forms.html b/lib/web/css/docs/forms.html
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/icons.html b/lib/web/css/docs/icons.html
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/index.html b/lib/web/css/docs/index.html
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/layout.html b/lib/web/css/docs/layout.html
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/lib.html b/lib/web/css/docs/lib.html
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/loaders.html b/lib/web/css/docs/loaders.html
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/messages.html b/lib/web/css/docs/messages.html
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/pages.html b/lib/web/css/docs/pages.html
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/popups.html b/lib/web/css/docs/popups.html
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/rating.html b/lib/web/css/docs/rating.html
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/resets.html b/lib/web/css/docs/resets.html
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/responsive.html b/lib/web/css/docs/responsive.html
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/sections.html b/lib/web/css/docs/sections.html
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/source/README.md b/lib/web/css/docs/source/README.md
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/source/_actions-toolbar.less b/lib/web/css/docs/source/_actions-toolbar.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/source/_breadcrumbs.less b/lib/web/css/docs/source/_breadcrumbs.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/source/_buttons.less b/lib/web/css/docs/source/_buttons.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/source/_components.less b/lib/web/css/docs/source/_components.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/source/_dropdowns.less b/lib/web/css/docs/source/_dropdowns.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/source/_forms.less b/lib/web/css/docs/source/_forms.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/source/_icons.less b/lib/web/css/docs/source/_icons.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/source/_layout.less b/lib/web/css/docs/source/_layout.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/source/_lib.less b/lib/web/css/docs/source/_lib.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/source/_loaders.less b/lib/web/css/docs/source/_loaders.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/source/_messages.less b/lib/web/css/docs/source/_messages.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/source/_pages.less b/lib/web/css/docs/source/_pages.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/source/_popups.less b/lib/web/css/docs/source/_popups.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/source/_rating.less b/lib/web/css/docs/source/_rating.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/source/_resets.less b/lib/web/css/docs/source/_resets.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/source/_responsive.less b/lib/web/css/docs/source/_responsive.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/source/_sections.less b/lib/web/css/docs/source/_sections.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/source/_tables.less b/lib/web/css/docs/source/_tables.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/source/_tooltips.less b/lib/web/css/docs/source/_tooltips.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/source/_typography.less b/lib/web/css/docs/source/_typography.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/source/_utilities.less b/lib/web/css/docs/source/_utilities.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/source/_variables.less b/lib/web/css/docs/source/_variables.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/source/docs.less b/lib/web/css/docs/source/docs.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/source/js/dropdown.js b/lib/web/css/docs/source/js/dropdown.js
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/tables.html b/lib/web/css/docs/tables.html
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/tooltips.html b/lib/web/css/docs/tooltips.html
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/typography.html b/lib/web/css/docs/typography.html
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/utilities.html b/lib/web/css/docs/utilities.html
old mode 100644
new mode 100755
diff --git a/lib/web/css/docs/variables.html b/lib/web/css/docs/variables.html
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/_email-variables.less b/lib/web/css/source/_email-variables.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/_extend.less b/lib/web/css/source/_extend.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/_theme.less b/lib/web/css/source/_theme.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/_variables.less b/lib/web/css/source/_variables.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/_widgets.less b/lib/web/css/source/_widgets.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/components/_modals.less b/lib/web/css/source/components/_modals.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/lib/_actions-toolbar.less b/lib/web/css/source/lib/_actions-toolbar.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/lib/_breadcrumbs.less b/lib/web/css/source/lib/_breadcrumbs.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/lib/_buttons.less b/lib/web/css/source/lib/_buttons.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/lib/_dropdowns.less b/lib/web/css/source/lib/_dropdowns.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/lib/_forms.less b/lib/web/css/source/lib/_forms.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/lib/_grids.less b/lib/web/css/source/lib/_grids.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/lib/_icons.less b/lib/web/css/source/lib/_icons.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/lib/_layout.less b/lib/web/css/source/lib/_layout.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/lib/_lib.less b/lib/web/css/source/lib/_lib.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/lib/_loaders.less b/lib/web/css/source/lib/_loaders.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/lib/_messages.less b/lib/web/css/source/lib/_messages.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/lib/_navigation.less b/lib/web/css/source/lib/_navigation.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/lib/_pages.less b/lib/web/css/source/lib/_pages.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/lib/_popups.less b/lib/web/css/source/lib/_popups.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/lib/_rating.less b/lib/web/css/source/lib/_rating.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/lib/_resets.less b/lib/web/css/source/lib/_resets.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/lib/_responsive.less b/lib/web/css/source/lib/_responsive.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/lib/_sections.less b/lib/web/css/source/lib/_sections.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/lib/_tables.less b/lib/web/css/source/lib/_tables.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/lib/_tooltips.less b/lib/web/css/source/lib/_tooltips.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/lib/_typography.less b/lib/web/css/source/lib/_typography.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/lib/_utilities.less b/lib/web/css/source/lib/_utilities.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/lib/_variables.less b/lib/web/css/source/lib/_variables.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/lib/variables/_actions-toolbar.less b/lib/web/css/source/lib/variables/_actions-toolbar.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/lib/variables/_breadcrumbs.less b/lib/web/css/source/lib/variables/_breadcrumbs.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/lib/variables/_buttons.less b/lib/web/css/source/lib/variables/_buttons.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/lib/variables/_colors.less b/lib/web/css/source/lib/variables/_colors.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/lib/variables/_components.less b/lib/web/css/source/lib/variables/_components.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/lib/variables/_dropdowns.less b/lib/web/css/source/lib/variables/_dropdowns.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/lib/variables/_email.less b/lib/web/css/source/lib/variables/_email.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/lib/variables/_forms.less b/lib/web/css/source/lib/variables/_forms.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/lib/variables/_icons.less b/lib/web/css/source/lib/variables/_icons.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/lib/variables/_layout.less b/lib/web/css/source/lib/variables/_layout.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/lib/variables/_loaders.less b/lib/web/css/source/lib/variables/_loaders.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/lib/variables/_messages.less b/lib/web/css/source/lib/variables/_messages.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/lib/variables/_navigation.less b/lib/web/css/source/lib/variables/_navigation.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/lib/variables/_pages.less b/lib/web/css/source/lib/variables/_pages.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/lib/variables/_popups.less b/lib/web/css/source/lib/variables/_popups.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/lib/variables/_rating.less b/lib/web/css/source/lib/variables/_rating.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/lib/variables/_responsive.less b/lib/web/css/source/lib/variables/_responsive.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/lib/variables/_sections.less b/lib/web/css/source/lib/variables/_sections.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/lib/variables/_structure.less b/lib/web/css/source/lib/variables/_structure.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/lib/variables/_tables.less b/lib/web/css/source/lib/variables/_tables.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/lib/variables/_tooltips.less b/lib/web/css/source/lib/variables/_tooltips.less
old mode 100644
new mode 100755
diff --git a/lib/web/css/source/lib/variables/_typography.less b/lib/web/css/source/lib/variables/_typography.less
old mode 100644
new mode 100755
diff --git a/lib/web/es6-collections.js b/lib/web/es6-collections.js
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/defaults.js b/lib/web/extjs/defaults.js
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/ext-tree-checkbox.js b/lib/web/extjs/ext-tree-checkbox.js
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/ext-tree.js b/lib/web/extjs/ext-tree.js
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/css/README.txt b/lib/web/extjs/resources/css/README.txt
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/css/ext-all.css b/lib/web/extjs/resources/css/ext-all.css
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/css/ytheme-magento.css b/lib/web/extjs/resources/css/ytheme-magento.css
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/basic-dialog/aero-close-over.gif b/lib/web/extjs/resources/images/aero/basic-dialog/aero-close-over.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/basic-dialog/aero-close.gif b/lib/web/extjs/resources/images/aero/basic-dialog/aero-close.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/basic-dialog/bg-center.gif b/lib/web/extjs/resources/images/aero/basic-dialog/bg-center.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/basic-dialog/bg-left.gif b/lib/web/extjs/resources/images/aero/basic-dialog/bg-left.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/basic-dialog/bg-right.gif b/lib/web/extjs/resources/images/aero/basic-dialog/bg-right.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/basic-dialog/close.gif b/lib/web/extjs/resources/images/aero/basic-dialog/close.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/basic-dialog/collapse-over.gif b/lib/web/extjs/resources/images/aero/basic-dialog/collapse-over.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/basic-dialog/collapse.gif b/lib/web/extjs/resources/images/aero/basic-dialog/collapse.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/basic-dialog/e-handle.gif b/lib/web/extjs/resources/images/aero/basic-dialog/e-handle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/basic-dialog/expand-over.gif b/lib/web/extjs/resources/images/aero/basic-dialog/expand-over.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/basic-dialog/expand.gif b/lib/web/extjs/resources/images/aero/basic-dialog/expand.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/basic-dialog/hd-sprite.gif b/lib/web/extjs/resources/images/aero/basic-dialog/hd-sprite.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/basic-dialog/s-handle.gif b/lib/web/extjs/resources/images/aero/basic-dialog/s-handle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/basic-dialog/se-handle.gif b/lib/web/extjs/resources/images/aero/basic-dialog/se-handle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/basic-dialog/w-handle.gif b/lib/web/extjs/resources/images/aero/basic-dialog/w-handle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/gradient-bg.gif b/lib/web/extjs/resources/images/aero/gradient-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/grid/grid-blue-split.gif b/lib/web/extjs/resources/images/aero/grid/grid-blue-split.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/grid/grid-hrow.gif b/lib/web/extjs/resources/images/aero/grid/grid-hrow.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/grid/grid-split.gif b/lib/web/extjs/resources/images/aero/grid/grid-split.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/grid/grid-vista-hd.gif b/lib/web/extjs/resources/images/aero/grid/grid-vista-hd.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/grid/pspbrwse.jbf b/lib/web/extjs/resources/images/aero/grid/pspbrwse.jbf
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/grid/sort-col-bg.gif b/lib/web/extjs/resources/images/aero/grid/sort-col-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/grid/sort_asc.gif b/lib/web/extjs/resources/images/aero/grid/sort_asc.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/grid/sort_desc.gif b/lib/web/extjs/resources/images/aero/grid/sort_desc.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/layout/collapse.gif b/lib/web/extjs/resources/images/aero/layout/collapse.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/layout/expand.gif b/lib/web/extjs/resources/images/aero/layout/expand.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/layout/gradient-bg.gif b/lib/web/extjs/resources/images/aero/layout/gradient-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/layout/ns-collapse.gif b/lib/web/extjs/resources/images/aero/layout/ns-collapse.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/layout/ns-expand.gif b/lib/web/extjs/resources/images/aero/layout/ns-expand.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/layout/panel-close.gif b/lib/web/extjs/resources/images/aero/layout/panel-close.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/layout/panel-title-bg.gif b/lib/web/extjs/resources/images/aero/layout/panel-title-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/layout/panel-title-light-bg.gif b/lib/web/extjs/resources/images/aero/layout/panel-title-light-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/layout/tab-close-on.gif b/lib/web/extjs/resources/images/aero/layout/tab-close-on.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/layout/tab-close.gif b/lib/web/extjs/resources/images/aero/layout/tab-close.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/menu/checked.gif b/lib/web/extjs/resources/images/aero/menu/checked.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/menu/item-over.gif b/lib/web/extjs/resources/images/aero/menu/item-over.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/menu/menu.gif b/lib/web/extjs/resources/images/aero/menu/menu.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/menu/unchecked.gif b/lib/web/extjs/resources/images/aero/menu/unchecked.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/qtip/bg.gif b/lib/web/extjs/resources/images/aero/qtip/bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/s.gif b/lib/web/extjs/resources/images/aero/s.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/sizer/e-handle-dark.gif b/lib/web/extjs/resources/images/aero/sizer/e-handle-dark.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/sizer/e-handle.gif b/lib/web/extjs/resources/images/aero/sizer/e-handle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/sizer/ne-handle-dark.gif b/lib/web/extjs/resources/images/aero/sizer/ne-handle-dark.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/sizer/ne-handle.gif b/lib/web/extjs/resources/images/aero/sizer/ne-handle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/sizer/nw-handle-dark.gif b/lib/web/extjs/resources/images/aero/sizer/nw-handle-dark.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/sizer/nw-handle.gif b/lib/web/extjs/resources/images/aero/sizer/nw-handle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/sizer/s-handle-dark.gif b/lib/web/extjs/resources/images/aero/sizer/s-handle-dark.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/sizer/s-handle.gif b/lib/web/extjs/resources/images/aero/sizer/s-handle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/sizer/se-handle-dark.gif b/lib/web/extjs/resources/images/aero/sizer/se-handle-dark.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/sizer/se-handle.gif b/lib/web/extjs/resources/images/aero/sizer/se-handle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/sizer/sw-handle-dark.gif b/lib/web/extjs/resources/images/aero/sizer/sw-handle-dark.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/sizer/sw-handle.gif b/lib/web/extjs/resources/images/aero/sizer/sw-handle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/tabs/tab-btm-inactive-left-bg.gif b/lib/web/extjs/resources/images/aero/tabs/tab-btm-inactive-left-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/tabs/tab-btm-inactive-right-bg.gif b/lib/web/extjs/resources/images/aero/tabs/tab-btm-inactive-right-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/tabs/tab-btm-left-bg.gif b/lib/web/extjs/resources/images/aero/tabs/tab-btm-left-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/tabs/tab-btm-right-bg.gif b/lib/web/extjs/resources/images/aero/tabs/tab-btm-right-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/tabs/tab-sprite.gif b/lib/web/extjs/resources/images/aero/tabs/tab-sprite.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/tabs/tab-strip-bg.gif b/lib/web/extjs/resources/images/aero/tabs/tab-strip-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/tabs/tab-strip-bg.png b/lib/web/extjs/resources/images/aero/tabs/tab-strip-bg.png
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/tabs/tab-strip-btm-bg.gif b/lib/web/extjs/resources/images/aero/tabs/tab-strip-btm-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/toolbar/bg.gif b/lib/web/extjs/resources/images/aero/toolbar/bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/aero/toolbar/tb-btn-sprite.gif b/lib/web/extjs/resources/images/aero/toolbar/tb-btn-sprite.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/basic-dialog/btn-arrow.gif b/lib/web/extjs/resources/images/default/basic-dialog/btn-arrow.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/basic-dialog/btn-sprite.gif b/lib/web/extjs/resources/images/default/basic-dialog/btn-sprite.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/basic-dialog/close.gif b/lib/web/extjs/resources/images/default/basic-dialog/close.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/basic-dialog/collapse.gif b/lib/web/extjs/resources/images/default/basic-dialog/collapse.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/basic-dialog/e-handle.gif b/lib/web/extjs/resources/images/default/basic-dialog/e-handle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/basic-dialog/expand.gif b/lib/web/extjs/resources/images/default/basic-dialog/expand.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/basic-dialog/hd-sprite.gif b/lib/web/extjs/resources/images/default/basic-dialog/hd-sprite.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/basic-dialog/progress.gif b/lib/web/extjs/resources/images/default/basic-dialog/progress.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/basic-dialog/progress2.gif b/lib/web/extjs/resources/images/default/basic-dialog/progress2.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/basic-dialog/s-handle.gif b/lib/web/extjs/resources/images/default/basic-dialog/s-handle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/basic-dialog/se-handle.gif b/lib/web/extjs/resources/images/default/basic-dialog/se-handle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/box/corners-blue.gif b/lib/web/extjs/resources/images/default/box/corners-blue.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/box/corners.gif b/lib/web/extjs/resources/images/default/box/corners.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/box/l-blue.gif b/lib/web/extjs/resources/images/default/box/l-blue.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/box/l.gif b/lib/web/extjs/resources/images/default/box/l.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/box/r-blue.gif b/lib/web/extjs/resources/images/default/box/r-blue.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/box/r.gif b/lib/web/extjs/resources/images/default/box/r.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/box/tb-blue.gif b/lib/web/extjs/resources/images/default/box/tb-blue.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/box/tb.gif b/lib/web/extjs/resources/images/default/box/tb.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/dd/drop-add.gif b/lib/web/extjs/resources/images/default/dd/drop-add.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/dd/drop-no.gif b/lib/web/extjs/resources/images/default/dd/drop-no.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/dd/drop-yes.gif b/lib/web/extjs/resources/images/default/dd/drop-yes.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/editor/tb-sprite.gif b/lib/web/extjs/resources/images/default/editor/tb-sprite.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/form/clear-trigger.gif b/lib/web/extjs/resources/images/default/form/clear-trigger.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/form/date-trigger.gif b/lib/web/extjs/resources/images/default/form/date-trigger.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/form/error-tip-corners.gif b/lib/web/extjs/resources/images/default/form/error-tip-corners.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/form/exclamation.gif b/lib/web/extjs/resources/images/default/form/exclamation.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/form/search-trigger.gif b/lib/web/extjs/resources/images/default/form/search-trigger.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/form/text-bg.gif b/lib/web/extjs/resources/images/default/form/text-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/form/trigger-tpl.gif b/lib/web/extjs/resources/images/default/form/trigger-tpl.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/form/trigger.gif b/lib/web/extjs/resources/images/default/form/trigger.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/gradient-bg.gif b/lib/web/extjs/resources/images/default/gradient-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/grid/arrow-left-white.gif b/lib/web/extjs/resources/images/default/grid/arrow-left-white.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/grid/arrow-right-white.gif b/lib/web/extjs/resources/images/default/grid/arrow-right-white.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/grid/col-move-bottom.gif b/lib/web/extjs/resources/images/default/grid/col-move-bottom.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/grid/col-move-top.gif b/lib/web/extjs/resources/images/default/grid/col-move-top.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/grid/dirty.gif b/lib/web/extjs/resources/images/default/grid/dirty.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/grid/done.gif b/lib/web/extjs/resources/images/default/grid/done.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/grid/drop-no.gif b/lib/web/extjs/resources/images/default/grid/drop-no.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/grid/drop-yes.gif b/lib/web/extjs/resources/images/default/grid/drop-yes.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/grid/footer-bg.gif b/lib/web/extjs/resources/images/default/grid/footer-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/grid/grid-blue-hd.gif b/lib/web/extjs/resources/images/default/grid/grid-blue-hd.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/grid/grid-blue-split.gif b/lib/web/extjs/resources/images/default/grid/grid-blue-split.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/grid/grid-hrow.gif b/lib/web/extjs/resources/images/default/grid/grid-hrow.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/grid/grid-loading.gif b/lib/web/extjs/resources/images/default/grid/grid-loading.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/grid/grid-split.gif b/lib/web/extjs/resources/images/default/grid/grid-split.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/grid/grid-vista-hd.gif b/lib/web/extjs/resources/images/default/grid/grid-vista-hd.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/grid/grid3-hd-btn.gif b/lib/web/extjs/resources/images/default/grid/grid3-hd-btn.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/grid/grid3-hrow-over.gif b/lib/web/extjs/resources/images/default/grid/grid3-hrow-over.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/grid/grid3-hrow.gif b/lib/web/extjs/resources/images/default/grid/grid3-hrow.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/grid/grid3-special-col-bg.gif b/lib/web/extjs/resources/images/default/grid/grid3-special-col-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/grid/grid3-special-col-sel-bg.gif b/lib/web/extjs/resources/images/default/grid/grid3-special-col-sel-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/grid/hd-pop.gif b/lib/web/extjs/resources/images/default/grid/hd-pop.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/grid/hmenu-asc.gif b/lib/web/extjs/resources/images/default/grid/hmenu-asc.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/grid/hmenu-desc.gif b/lib/web/extjs/resources/images/default/grid/hmenu-desc.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/grid/hmenu-lock.gif b/lib/web/extjs/resources/images/default/grid/hmenu-lock.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/grid/hmenu-lock.png b/lib/web/extjs/resources/images/default/grid/hmenu-lock.png
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/grid/hmenu-unlock.gif b/lib/web/extjs/resources/images/default/grid/hmenu-unlock.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/grid/hmenu-unlock.png b/lib/web/extjs/resources/images/default/grid/hmenu-unlock.png
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/grid/invalid_line.gif b/lib/web/extjs/resources/images/default/grid/invalid_line.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/grid/loading.gif b/lib/web/extjs/resources/images/default/grid/loading.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/grid/mso-hd.gif b/lib/web/extjs/resources/images/default/grid/mso-hd.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/grid/nowait.gif b/lib/web/extjs/resources/images/default/grid/nowait.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/grid/page-first-disabled.gif b/lib/web/extjs/resources/images/default/grid/page-first-disabled.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/grid/page-first.gif b/lib/web/extjs/resources/images/default/grid/page-first.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/grid/page-last-disabled.gif b/lib/web/extjs/resources/images/default/grid/page-last-disabled.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/grid/page-last.gif b/lib/web/extjs/resources/images/default/grid/page-last.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/grid/page-next-disabled.gif b/lib/web/extjs/resources/images/default/grid/page-next-disabled.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/grid/page-next.gif b/lib/web/extjs/resources/images/default/grid/page-next.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/grid/page-prev-disabled.gif b/lib/web/extjs/resources/images/default/grid/page-prev-disabled.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/grid/page-prev.gif b/lib/web/extjs/resources/images/default/grid/page-prev.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/grid/pick-button.gif b/lib/web/extjs/resources/images/default/grid/pick-button.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/grid/refresh.gif b/lib/web/extjs/resources/images/default/grid/refresh.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/grid/row-check-sprite.gif b/lib/web/extjs/resources/images/default/grid/row-check-sprite.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/grid/row-expand-sprite.gif b/lib/web/extjs/resources/images/default/grid/row-expand-sprite.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/grid/row-over.gif b/lib/web/extjs/resources/images/default/grid/row-over.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/grid/row-sel.gif b/lib/web/extjs/resources/images/default/grid/row-sel.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/grid/sort_asc.gif b/lib/web/extjs/resources/images/default/grid/sort_asc.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/grid/sort_desc.gif b/lib/web/extjs/resources/images/default/grid/sort_desc.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/grid/wait.gif b/lib/web/extjs/resources/images/default/grid/wait.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/layout/collapse.gif b/lib/web/extjs/resources/images/default/layout/collapse.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/layout/expand.gif b/lib/web/extjs/resources/images/default/layout/expand.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/layout/gradient-bg.gif b/lib/web/extjs/resources/images/default/layout/gradient-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/layout/ns-collapse.gif b/lib/web/extjs/resources/images/default/layout/ns-collapse.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/layout/ns-expand.gif b/lib/web/extjs/resources/images/default/layout/ns-expand.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/layout/panel-close.gif b/lib/web/extjs/resources/images/default/layout/panel-close.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/layout/panel-title-bg.gif b/lib/web/extjs/resources/images/default/layout/panel-title-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/layout/panel-title-light-bg.gif b/lib/web/extjs/resources/images/default/layout/panel-title-light-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/layout/stick.gif b/lib/web/extjs/resources/images/default/layout/stick.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/layout/stuck.gif b/lib/web/extjs/resources/images/default/layout/stuck.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/layout/tab-close-on.gif b/lib/web/extjs/resources/images/default/layout/tab-close-on.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/layout/tab-close.gif b/lib/web/extjs/resources/images/default/layout/tab-close.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/menu/checked.gif b/lib/web/extjs/resources/images/default/menu/checked.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/menu/group-checked.gif b/lib/web/extjs/resources/images/default/menu/group-checked.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/menu/menu-parent.gif b/lib/web/extjs/resources/images/default/menu/menu-parent.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/menu/menu.gif b/lib/web/extjs/resources/images/default/menu/menu.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/menu/unchecked.gif b/lib/web/extjs/resources/images/default/menu/unchecked.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/panel/corners-sprite.gif b/lib/web/extjs/resources/images/default/panel/corners-sprite.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/panel/left-right.gif b/lib/web/extjs/resources/images/default/panel/left-right.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/panel/tool-sprite-tpl.gif b/lib/web/extjs/resources/images/default/panel/tool-sprite-tpl.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/panel/tool-sprites.gif b/lib/web/extjs/resources/images/default/panel/tool-sprites.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/panel/top-bottom.gif b/lib/web/extjs/resources/images/default/panel/top-bottom.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/panel/white-corners-sprite.gif b/lib/web/extjs/resources/images/default/panel/white-corners-sprite.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/panel/white-left-right.gif b/lib/web/extjs/resources/images/default/panel/white-left-right.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/panel/white-top-bottom.gif b/lib/web/extjs/resources/images/default/panel/white-top-bottom.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/qtip/bg.gif b/lib/web/extjs/resources/images/default/qtip/bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/qtip/close.gif b/lib/web/extjs/resources/images/default/qtip/close.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/qtip/tip-sprite.gif b/lib/web/extjs/resources/images/default/qtip/tip-sprite.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/s.gif b/lib/web/extjs/resources/images/default/s.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/shadow-c.png b/lib/web/extjs/resources/images/default/shadow-c.png
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/shadow-lr.png b/lib/web/extjs/resources/images/default/shadow-lr.png
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/shadow.png b/lib/web/extjs/resources/images/default/shadow.png
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/shared/calendar.gif b/lib/web/extjs/resources/images/default/shared/calendar.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/shared/glass-bg.gif b/lib/web/extjs/resources/images/default/shared/glass-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/shared/left-btn.gif b/lib/web/extjs/resources/images/default/shared/left-btn.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/shared/right-btn.gif b/lib/web/extjs/resources/images/default/shared/right-btn.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/shared/warning.gif b/lib/web/extjs/resources/images/default/shared/warning.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/sizer/e-handle-dark.gif b/lib/web/extjs/resources/images/default/sizer/e-handle-dark.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/sizer/e-handle.gif b/lib/web/extjs/resources/images/default/sizer/e-handle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/sizer/ne-handle-dark.gif b/lib/web/extjs/resources/images/default/sizer/ne-handle-dark.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/sizer/ne-handle.gif b/lib/web/extjs/resources/images/default/sizer/ne-handle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/sizer/nw-handle-dark.gif b/lib/web/extjs/resources/images/default/sizer/nw-handle-dark.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/sizer/nw-handle.gif b/lib/web/extjs/resources/images/default/sizer/nw-handle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/sizer/s-handle-dark.gif b/lib/web/extjs/resources/images/default/sizer/s-handle-dark.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/sizer/s-handle.gif b/lib/web/extjs/resources/images/default/sizer/s-handle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/sizer/se-handle-dark.gif b/lib/web/extjs/resources/images/default/sizer/se-handle-dark.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/sizer/se-handle.gif b/lib/web/extjs/resources/images/default/sizer/se-handle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/sizer/square.gif b/lib/web/extjs/resources/images/default/sizer/square.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/sizer/sw-handle-dark.gif b/lib/web/extjs/resources/images/default/sizer/sw-handle-dark.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/sizer/sw-handle.gif b/lib/web/extjs/resources/images/default/sizer/sw-handle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/tabs/tab-btm-inactive-left-bg.gif b/lib/web/extjs/resources/images/default/tabs/tab-btm-inactive-left-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/tabs/tab-btm-inactive-right-bg.gif b/lib/web/extjs/resources/images/default/tabs/tab-btm-inactive-right-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/tabs/tab-btm-left-bg.gif b/lib/web/extjs/resources/images/default/tabs/tab-btm-left-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/tabs/tab-btm-right-bg.gif b/lib/web/extjs/resources/images/default/tabs/tab-btm-right-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/tabs/tab-sprite.gif b/lib/web/extjs/resources/images/default/tabs/tab-sprite.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/toolbar/btn-arrow-light.gif b/lib/web/extjs/resources/images/default/toolbar/btn-arrow-light.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/toolbar/btn-arrow.gif b/lib/web/extjs/resources/images/default/toolbar/btn-arrow.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/toolbar/btn-over-bg.gif b/lib/web/extjs/resources/images/default/toolbar/btn-over-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/toolbar/gray-bg.gif b/lib/web/extjs/resources/images/default/toolbar/gray-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/toolbar/tb-bg.gif b/lib/web/extjs/resources/images/default/toolbar/tb-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/toolbar/tb-btn-sprite.gif b/lib/web/extjs/resources/images/default/toolbar/tb-btn-sprite.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/tree/drop-add.gif b/lib/web/extjs/resources/images/default/tree/drop-add.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/tree/drop-between.gif b/lib/web/extjs/resources/images/default/tree/drop-between.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/tree/drop-no.gif b/lib/web/extjs/resources/images/default/tree/drop-no.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/tree/drop-over.gif b/lib/web/extjs/resources/images/default/tree/drop-over.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/tree/drop-under.gif b/lib/web/extjs/resources/images/default/tree/drop-under.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/tree/drop-yes.gif b/lib/web/extjs/resources/images/default/tree/drop-yes.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/tree/elbow-end-minus-nl.gif b/lib/web/extjs/resources/images/default/tree/elbow-end-minus-nl.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/tree/elbow-end-minus.gif b/lib/web/extjs/resources/images/default/tree/elbow-end-minus.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/tree/elbow-end-plus-nl.gif b/lib/web/extjs/resources/images/default/tree/elbow-end-plus-nl.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/tree/elbow-end-plus.gif b/lib/web/extjs/resources/images/default/tree/elbow-end-plus.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/tree/elbow-end.gif b/lib/web/extjs/resources/images/default/tree/elbow-end.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/tree/elbow-line.gif b/lib/web/extjs/resources/images/default/tree/elbow-line.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/tree/elbow-minus-nl.gif b/lib/web/extjs/resources/images/default/tree/elbow-minus-nl.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/tree/elbow-minus.gif b/lib/web/extjs/resources/images/default/tree/elbow-minus.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/tree/elbow-plus-nl.gif b/lib/web/extjs/resources/images/default/tree/elbow-plus-nl.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/tree/elbow-plus.gif b/lib/web/extjs/resources/images/default/tree/elbow-plus.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/tree/elbow.gif b/lib/web/extjs/resources/images/default/tree/elbow.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/tree/folder-open.gif b/lib/web/extjs/resources/images/default/tree/folder-open.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/tree/folder.gif b/lib/web/extjs/resources/images/default/tree/folder.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/tree/leaf.gif b/lib/web/extjs/resources/images/default/tree/leaf.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/tree/loading.gif b/lib/web/extjs/resources/images/default/tree/loading.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/tree/s.gif b/lib/web/extjs/resources/images/default/tree/s.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/window/corners-sprite.gif b/lib/web/extjs/resources/images/default/window/corners-sprite.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/window/left-right.gif b/lib/web/extjs/resources/images/default/window/left-right.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/default/window/top-bottom.gif b/lib/web/extjs/resources/images/default/window/top-bottom.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/basic-dialog/close-over.gif b/lib/web/extjs/resources/images/galdaka/basic-dialog/close-over.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/basic-dialog/close.gif b/lib/web/extjs/resources/images/galdaka/basic-dialog/close.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/basic-dialog/collapse-over.gif b/lib/web/extjs/resources/images/galdaka/basic-dialog/collapse-over.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/basic-dialog/collapse.gif b/lib/web/extjs/resources/images/galdaka/basic-dialog/collapse.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/basic-dialog/e-handle.gif b/lib/web/extjs/resources/images/galdaka/basic-dialog/e-handle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/basic-dialog/expand-over.gif b/lib/web/extjs/resources/images/galdaka/basic-dialog/expand-over.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/basic-dialog/expand.gif b/lib/web/extjs/resources/images/galdaka/basic-dialog/expand.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/basic-dialog/gradient-bg.gif b/lib/web/extjs/resources/images/galdaka/basic-dialog/gradient-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/basic-dialog/hd-sprite.gif b/lib/web/extjs/resources/images/galdaka/basic-dialog/hd-sprite.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/basic-dialog/s-handle.gif b/lib/web/extjs/resources/images/galdaka/basic-dialog/s-handle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/basic-dialog/se-handle.gif b/lib/web/extjs/resources/images/galdaka/basic-dialog/se-handle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/basic-dialog/sw-handle.gif b/lib/web/extjs/resources/images/galdaka/basic-dialog/sw-handle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/form/choose-trigger.gif b/lib/web/extjs/resources/images/galdaka/form/choose-trigger.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/form/date-trigger.gif b/lib/web/extjs/resources/images/galdaka/form/date-trigger.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/form/trigger.gif b/lib/web/extjs/resources/images/galdaka/form/trigger.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/grid/col-move-bottom.gif b/lib/web/extjs/resources/images/galdaka/grid/col-move-bottom.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/grid/col-move-top.gif b/lib/web/extjs/resources/images/galdaka/grid/col-move-top.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/grid/done.gif b/lib/web/extjs/resources/images/galdaka/grid/done.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/grid/fondoCabeceraHover.gif b/lib/web/extjs/resources/images/galdaka/grid/fondoCabeceraHover.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/grid/grid-hrow.gif b/lib/web/extjs/resources/images/galdaka/grid/grid-hrow.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/grid/loading.gif b/lib/web/extjs/resources/images/galdaka/grid/loading.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/grid/page-first.gif b/lib/web/extjs/resources/images/galdaka/grid/page-first.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/grid/page-last.gif b/lib/web/extjs/resources/images/galdaka/grid/page-last.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/grid/page-next.gif b/lib/web/extjs/resources/images/galdaka/grid/page-next.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/grid/page-prev.gif b/lib/web/extjs/resources/images/galdaka/grid/page-prev.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/layout/collapse.gif b/lib/web/extjs/resources/images/galdaka/layout/collapse.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/layout/e-handle.gif b/lib/web/extjs/resources/images/galdaka/layout/e-handle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/layout/expand.gif b/lib/web/extjs/resources/images/galdaka/layout/expand.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/layout/gradient-bg.gif b/lib/web/extjs/resources/images/galdaka/layout/gradient-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/layout/ns-collapse.gif b/lib/web/extjs/resources/images/galdaka/layout/ns-collapse.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/layout/ns-expand.gif b/lib/web/extjs/resources/images/galdaka/layout/ns-expand.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/layout/panel-close.gif b/lib/web/extjs/resources/images/galdaka/layout/panel-close.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/layout/panel-title-light-bg.gif b/lib/web/extjs/resources/images/galdaka/layout/panel-title-light-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/layout/s-handle.gif b/lib/web/extjs/resources/images/galdaka/layout/s-handle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/layout/stick.gif b/lib/web/extjs/resources/images/galdaka/layout/stick.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/layout/tab-close-on.gif b/lib/web/extjs/resources/images/galdaka/layout/tab-close-on.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/layout/tab-close.gif b/lib/web/extjs/resources/images/galdaka/layout/tab-close.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/menu/checked.gif b/lib/web/extjs/resources/images/galdaka/menu/checked.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/menu/group-checked.gif b/lib/web/extjs/resources/images/galdaka/menu/group-checked.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/menu/menu-parent.gif b/lib/web/extjs/resources/images/galdaka/menu/menu-parent.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/menu/menu.gif b/lib/web/extjs/resources/images/galdaka/menu/menu.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/menu/unchecked.gif b/lib/web/extjs/resources/images/galdaka/menu/unchecked.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/qtip/tip-sprite.gif b/lib/web/extjs/resources/images/galdaka/qtip/tip-sprite.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/shared/left-btn.gif b/lib/web/extjs/resources/images/galdaka/shared/left-btn.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/shared/right-btn.gif b/lib/web/extjs/resources/images/galdaka/shared/right-btn.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/sizer/ne-handle.gif b/lib/web/extjs/resources/images/galdaka/sizer/ne-handle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/sizer/nw-handle.gif b/lib/web/extjs/resources/images/galdaka/sizer/nw-handle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/sizer/s-handle.gif b/lib/web/extjs/resources/images/galdaka/sizer/s-handle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/sizer/se-handle.gif b/lib/web/extjs/resources/images/galdaka/sizer/se-handle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/sizer/sw-handle.gif b/lib/web/extjs/resources/images/galdaka/sizer/sw-handle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/tabs/tab-btm-inactive-left-bg.gif b/lib/web/extjs/resources/images/galdaka/tabs/tab-btm-inactive-left-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/tabs/tab-btm-inactive-right-bg.gif b/lib/web/extjs/resources/images/galdaka/tabs/tab-btm-inactive-right-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/tabs/tab-btm-left-bg.gif b/lib/web/extjs/resources/images/galdaka/tabs/tab-btm-left-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/tabs/tab-btm-right-bg.gif b/lib/web/extjs/resources/images/galdaka/tabs/tab-btm-right-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/tabs/tab-sprite.gif b/lib/web/extjs/resources/images/galdaka/tabs/tab-sprite.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/toolbar/btn-arrow.gif b/lib/web/extjs/resources/images/galdaka/toolbar/btn-arrow.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/toolbar/btn-over-bg.gif b/lib/web/extjs/resources/images/galdaka/toolbar/btn-over-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/toolbar/fondoToolbar.gif b/lib/web/extjs/resources/images/galdaka/toolbar/fondoToolbar.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/galdaka/toolbar/tb-btn-sprite.gif b/lib/web/extjs/resources/images/galdaka/toolbar/tb-btn-sprite.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/gray/basic-dialog/close.gif b/lib/web/extjs/resources/images/gray/basic-dialog/close.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/gray/basic-dialog/collapse.gif b/lib/web/extjs/resources/images/gray/basic-dialog/collapse.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/gray/basic-dialog/dlg-bg.gif b/lib/web/extjs/resources/images/gray/basic-dialog/dlg-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/gray/basic-dialog/e-handle.gif b/lib/web/extjs/resources/images/gray/basic-dialog/e-handle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/gray/basic-dialog/expand.gif b/lib/web/extjs/resources/images/gray/basic-dialog/expand.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/gray/basic-dialog/hd-sprite.gif b/lib/web/extjs/resources/images/gray/basic-dialog/hd-sprite.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/gray/basic-dialog/s-handle.gif b/lib/web/extjs/resources/images/gray/basic-dialog/s-handle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/gray/basic-dialog/se-handle.gif b/lib/web/extjs/resources/images/gray/basic-dialog/se-handle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/gray/gradient-bg.gif b/lib/web/extjs/resources/images/gray/gradient-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/gray/grid/grid-hrow.gif b/lib/web/extjs/resources/images/gray/grid/grid-hrow.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/gray/layout/collapse.gif b/lib/web/extjs/resources/images/gray/layout/collapse.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/gray/layout/expand.gif b/lib/web/extjs/resources/images/gray/layout/expand.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/gray/layout/gradient-bg.gif b/lib/web/extjs/resources/images/gray/layout/gradient-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/gray/layout/ns-collapse.gif b/lib/web/extjs/resources/images/gray/layout/ns-collapse.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/gray/layout/ns-expand.gif b/lib/web/extjs/resources/images/gray/layout/ns-expand.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/gray/layout/panel-close.gif b/lib/web/extjs/resources/images/gray/layout/panel-close.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/gray/layout/panel-title-bg.gif b/lib/web/extjs/resources/images/gray/layout/panel-title-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/gray/layout/panel-title-light-bg.gif b/lib/web/extjs/resources/images/gray/layout/panel-title-light-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/gray/layout/stick.gif b/lib/web/extjs/resources/images/gray/layout/stick.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/gray/layout/tab-close-on.gif b/lib/web/extjs/resources/images/gray/layout/tab-close-on.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/gray/layout/tab-close.gif b/lib/web/extjs/resources/images/gray/layout/tab-close.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/gray/menu/checked.gif b/lib/web/extjs/resources/images/gray/menu/checked.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/gray/menu/group-checked.gif b/lib/web/extjs/resources/images/gray/menu/group-checked.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/gray/menu/menu-parent.gif b/lib/web/extjs/resources/images/gray/menu/menu-parent.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/gray/menu/menu.gif b/lib/web/extjs/resources/images/gray/menu/menu.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/gray/menu/unchecked.gif b/lib/web/extjs/resources/images/gray/menu/unchecked.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/gray/qtip/bg.gif b/lib/web/extjs/resources/images/gray/qtip/bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/gray/qtip/tip-sprite.gif b/lib/web/extjs/resources/images/gray/qtip/tip-sprite.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/gray/s.gif b/lib/web/extjs/resources/images/gray/s.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/gray/sizer/e-handle-dark.gif b/lib/web/extjs/resources/images/gray/sizer/e-handle-dark.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/gray/sizer/e-handle.gif b/lib/web/extjs/resources/images/gray/sizer/e-handle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/gray/sizer/ne-handle-dark.gif b/lib/web/extjs/resources/images/gray/sizer/ne-handle-dark.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/gray/sizer/ne-handle.gif b/lib/web/extjs/resources/images/gray/sizer/ne-handle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/gray/sizer/nw-handle-dark.gif b/lib/web/extjs/resources/images/gray/sizer/nw-handle-dark.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/gray/sizer/nw-handle.gif b/lib/web/extjs/resources/images/gray/sizer/nw-handle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/gray/sizer/s-handle-dark.gif b/lib/web/extjs/resources/images/gray/sizer/s-handle-dark.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/gray/sizer/s-handle.gif b/lib/web/extjs/resources/images/gray/sizer/s-handle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/gray/sizer/se-handle-dark.gif b/lib/web/extjs/resources/images/gray/sizer/se-handle-dark.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/gray/sizer/se-handle.gif b/lib/web/extjs/resources/images/gray/sizer/se-handle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/gray/sizer/sw-handle-dark.gif b/lib/web/extjs/resources/images/gray/sizer/sw-handle-dark.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/gray/sizer/sw-handle.gif b/lib/web/extjs/resources/images/gray/sizer/sw-handle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/gray/tabs/tab-btm-inactive-left-bg.gif b/lib/web/extjs/resources/images/gray/tabs/tab-btm-inactive-left-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/gray/tabs/tab-btm-inactive-right-bg.gif b/lib/web/extjs/resources/images/gray/tabs/tab-btm-inactive-right-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/gray/tabs/tab-btm-left-bg.gif b/lib/web/extjs/resources/images/gray/tabs/tab-btm-left-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/gray/tabs/tab-btm-right-bg.gif b/lib/web/extjs/resources/images/gray/tabs/tab-btm-right-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/gray/tabs/tab-sprite.gif b/lib/web/extjs/resources/images/gray/tabs/tab-sprite.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/gray/toolbar/gray-bg.gif b/lib/web/extjs/resources/images/gray/toolbar/gray-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/gray/toolbar/tb-btn-sprite.gif b/lib/web/extjs/resources/images/gray/toolbar/tb-btn-sprite.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/magento/basic-dialog/collapse-on.gif b/lib/web/extjs/resources/images/magento/basic-dialog/collapse-on.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/magento/basic-dialog/collapse.gif b/lib/web/extjs/resources/images/magento/basic-dialog/collapse.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/magento/basic-dialog/expand-on.gif b/lib/web/extjs/resources/images/magento/basic-dialog/expand-on.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/magento/basic-dialog/expand.gif b/lib/web/extjs/resources/images/magento/basic-dialog/expand.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/magento/basic-dialog/hd-sprite.gif b/lib/web/extjs/resources/images/magento/basic-dialog/hd-sprite.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/magento/basic-dialog/ns-collapse-on.gif b/lib/web/extjs/resources/images/magento/basic-dialog/ns-collapse-on.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/magento/basic-dialog/ns-collapse.gif b/lib/web/extjs/resources/images/magento/basic-dialog/ns-collapse.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/magento/basic-dialog/ns-expand-on.gif b/lib/web/extjs/resources/images/magento/basic-dialog/ns-expand-on.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/magento/basic-dialog/ns-expand.gif b/lib/web/extjs/resources/images/magento/basic-dialog/ns-expand.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/magento/basic-dialog/panel_close.gif b/lib/web/extjs/resources/images/magento/basic-dialog/panel_close.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/magento/basic-dialog/pop_close.gif b/lib/web/extjs/resources/images/magento/basic-dialog/pop_close.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/magento/basic-dialog/pop_collapse.gif b/lib/web/extjs/resources/images/magento/basic-dialog/pop_collapse.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/magento/grid/grid-body-bg.gif b/lib/web/extjs/resources/images/magento/grid/grid-body-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/magento/grid/grid-split.gif b/lib/web/extjs/resources/images/magento/grid/grid-split.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/magento/layout/checkered-bg.gif b/lib/web/extjs/resources/images/magento/layout/checkered-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/magento/layout/icon-catalog.gif b/lib/web/extjs/resources/images/magento/layout/icon-catalog.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/magento/layout/icon-category.gif b/lib/web/extjs/resources/images/magento/layout/icon-category.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/magento/layout/icon-my-tasks.gif b/lib/web/extjs/resources/images/magento/layout/icon-my-tasks.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/magento/layout/icon-product.gif b/lib/web/extjs/resources/images/magento/layout/icon-product.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/magento/loading_bg.gif b/lib/web/extjs/resources/images/magento/loading_bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/magento/tabs/tab-sprite.gif b/lib/web/extjs/resources/images/magento/tabs/tab-sprite.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/magento/toolbar/btn-arrow.gif b/lib/web/extjs/resources/images/magento/toolbar/btn-arrow.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/magento/toolbar/header_bg.gif b/lib/web/extjs/resources/images/magento/toolbar/header_bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/magento/toolbar/toolbar-bg.gif b/lib/web/extjs/resources/images/magento/toolbar/toolbar-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/magento/tree/elbow-end-minus-nl.gif b/lib/web/extjs/resources/images/magento/tree/elbow-end-minus-nl.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/magento/tree/elbow-end-minus.gif b/lib/web/extjs/resources/images/magento/tree/elbow-end-minus.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/magento/tree/elbow-end-plus-nl.gif b/lib/web/extjs/resources/images/magento/tree/elbow-end-plus-nl.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/magento/tree/elbow-end-plus.gif b/lib/web/extjs/resources/images/magento/tree/elbow-end-plus.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/magento/tree/elbow-end.gif b/lib/web/extjs/resources/images/magento/tree/elbow-end.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/magento/tree/elbow-line.gif b/lib/web/extjs/resources/images/magento/tree/elbow-line.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/magento/tree/elbow-minus-nl.gif b/lib/web/extjs/resources/images/magento/tree/elbow-minus-nl.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/magento/tree/elbow-minus.gif b/lib/web/extjs/resources/images/magento/tree/elbow-minus.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/magento/tree/elbow-plus-nl.gif b/lib/web/extjs/resources/images/magento/tree/elbow-plus-nl.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/magento/tree/elbow-plus.gif b/lib/web/extjs/resources/images/magento/tree/elbow-plus.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/magento/tree/elbow.gif b/lib/web/extjs/resources/images/magento/tree/elbow.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/magento/tree/folder-open.gif b/lib/web/extjs/resources/images/magento/tree/folder-open.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/magento/tree/folder.gif b/lib/web/extjs/resources/images/magento/tree/folder.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/magento/tree/leaf.gif b/lib/web/extjs/resources/images/magento/tree/leaf.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/magento/tree/s.gif b/lib/web/extjs/resources/images/magento/tree/s.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/vista/basic-dialog/bg-center.gif b/lib/web/extjs/resources/images/vista/basic-dialog/bg-center.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/vista/basic-dialog/bg-left.gif b/lib/web/extjs/resources/images/vista/basic-dialog/bg-left.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/vista/basic-dialog/bg-right.gif b/lib/web/extjs/resources/images/vista/basic-dialog/bg-right.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/vista/basic-dialog/close.gif b/lib/web/extjs/resources/images/vista/basic-dialog/close.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/vista/basic-dialog/collapse.gif b/lib/web/extjs/resources/images/vista/basic-dialog/collapse.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/vista/basic-dialog/dlg-bg.gif b/lib/web/extjs/resources/images/vista/basic-dialog/dlg-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/vista/basic-dialog/e-handle.gif b/lib/web/extjs/resources/images/vista/basic-dialog/e-handle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/vista/basic-dialog/expand.gif b/lib/web/extjs/resources/images/vista/basic-dialog/expand.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/vista/basic-dialog/hd-sprite.gif b/lib/web/extjs/resources/images/vista/basic-dialog/hd-sprite.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/vista/basic-dialog/s-handle.gif b/lib/web/extjs/resources/images/vista/basic-dialog/s-handle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/vista/basic-dialog/se-handle.gif b/lib/web/extjs/resources/images/vista/basic-dialog/se-handle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/vista/basic-dialog/w-handle.gif b/lib/web/extjs/resources/images/vista/basic-dialog/w-handle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/vista/gradient-bg.gif b/lib/web/extjs/resources/images/vista/gradient-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/vista/grid/grid-split.gif b/lib/web/extjs/resources/images/vista/grid/grid-split.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/vista/grid/grid-vista-hd.gif b/lib/web/extjs/resources/images/vista/grid/grid-vista-hd.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/vista/layout/collapse.gif b/lib/web/extjs/resources/images/vista/layout/collapse.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/vista/layout/expand.gif b/lib/web/extjs/resources/images/vista/layout/expand.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/vista/layout/gradient-bg.gif b/lib/web/extjs/resources/images/vista/layout/gradient-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/vista/layout/ns-collapse.gif b/lib/web/extjs/resources/images/vista/layout/ns-collapse.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/vista/layout/ns-expand.gif b/lib/web/extjs/resources/images/vista/layout/ns-expand.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/vista/layout/panel-close.gif b/lib/web/extjs/resources/images/vista/layout/panel-close.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/vista/layout/panel-title-bg.gif b/lib/web/extjs/resources/images/vista/layout/panel-title-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/vista/layout/panel-title-light-bg.gif b/lib/web/extjs/resources/images/vista/layout/panel-title-light-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/vista/layout/stick.gif b/lib/web/extjs/resources/images/vista/layout/stick.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/vista/layout/tab-close-on.gif b/lib/web/extjs/resources/images/vista/layout/tab-close-on.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/vista/layout/tab-close.gif b/lib/web/extjs/resources/images/vista/layout/tab-close.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/vista/qtip/bg.gif b/lib/web/extjs/resources/images/vista/qtip/bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/vista/qtip/tip-sprite.gif b/lib/web/extjs/resources/images/vista/qtip/tip-sprite.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/vista/s.gif b/lib/web/extjs/resources/images/vista/s.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/vista/sizer/e-handle-dark.gif b/lib/web/extjs/resources/images/vista/sizer/e-handle-dark.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/vista/sizer/e-handle.gif b/lib/web/extjs/resources/images/vista/sizer/e-handle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/vista/sizer/ne-handle-dark.gif b/lib/web/extjs/resources/images/vista/sizer/ne-handle-dark.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/vista/sizer/ne-handle.gif b/lib/web/extjs/resources/images/vista/sizer/ne-handle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/vista/sizer/nw-handle-dark.gif b/lib/web/extjs/resources/images/vista/sizer/nw-handle-dark.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/vista/sizer/nw-handle.gif b/lib/web/extjs/resources/images/vista/sizer/nw-handle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/vista/sizer/s-handle-dark.gif b/lib/web/extjs/resources/images/vista/sizer/s-handle-dark.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/vista/sizer/s-handle.gif b/lib/web/extjs/resources/images/vista/sizer/s-handle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/vista/sizer/se-handle-dark.gif b/lib/web/extjs/resources/images/vista/sizer/se-handle-dark.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/vista/sizer/se-handle.gif b/lib/web/extjs/resources/images/vista/sizer/se-handle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/vista/sizer/sw-handle-dark.gif b/lib/web/extjs/resources/images/vista/sizer/sw-handle-dark.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/vista/sizer/sw-handle.gif b/lib/web/extjs/resources/images/vista/sizer/sw-handle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/vista/tabs/tab-btm-inactive-left-bg.gif b/lib/web/extjs/resources/images/vista/tabs/tab-btm-inactive-left-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/vista/tabs/tab-btm-inactive-right-bg.gif b/lib/web/extjs/resources/images/vista/tabs/tab-btm-inactive-right-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/vista/tabs/tab-btm-left-bg.gif b/lib/web/extjs/resources/images/vista/tabs/tab-btm-left-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/vista/tabs/tab-btm-right-bg.gif b/lib/web/extjs/resources/images/vista/tabs/tab-btm-right-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/vista/tabs/tab-sprite.gif b/lib/web/extjs/resources/images/vista/tabs/tab-sprite.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/vista/toolbar/gray-bg.gif b/lib/web/extjs/resources/images/vista/toolbar/gray-bg.gif
old mode 100644
new mode 100755
diff --git a/lib/web/extjs/resources/images/vista/toolbar/tb-btn-sprite.gif b/lib/web/extjs/resources/images/vista/toolbar/tb-btn-sprite.gif
old mode 100644
new mode 100755
diff --git a/lib/web/fonts/Blank-Theme-Icons/Blank-Theme-Icons.eot b/lib/web/fonts/Blank-Theme-Icons/Blank-Theme-Icons.eot
old mode 100644
new mode 100755
diff --git a/lib/web/fonts/Blank-Theme-Icons/Blank-Theme-Icons.svg b/lib/web/fonts/Blank-Theme-Icons/Blank-Theme-Icons.svg
old mode 100644
new mode 100755
diff --git a/lib/web/fonts/Blank-Theme-Icons/Blank-Theme-Icons.ttf b/lib/web/fonts/Blank-Theme-Icons/Blank-Theme-Icons.ttf
old mode 100644
new mode 100755
diff --git a/lib/web/fonts/Blank-Theme-Icons/Blank-Theme-Icons.woff b/lib/web/fonts/Blank-Theme-Icons/Blank-Theme-Icons.woff
old mode 100644
new mode 100755
diff --git a/lib/web/fonts/Blank-Theme-Icons/Blank-Theme-Icons.woff2 b/lib/web/fonts/Blank-Theme-Icons/Blank-Theme-Icons.woff2
old mode 100644
new mode 100755
diff --git a/lib/web/fonts/Blank-Theme-Icons/selection.json b/lib/web/fonts/Blank-Theme-Icons/selection.json
old mode 100644
new mode 100755
diff --git a/lib/web/fonts/MUI-Icons/MUI-Icons.eot b/lib/web/fonts/MUI-Icons/MUI-Icons.eot
old mode 100644
new mode 100755
diff --git a/lib/web/fonts/MUI-Icons/MUI-Icons.svg b/lib/web/fonts/MUI-Icons/MUI-Icons.svg
old mode 100644
new mode 100755
diff --git a/lib/web/fonts/MUI-Icons/MUI-Icons.ttf b/lib/web/fonts/MUI-Icons/MUI-Icons.ttf
old mode 100644
new mode 100755
diff --git a/lib/web/fonts/MUI-Icons/MUI-Icons.woff b/lib/web/fonts/MUI-Icons/MUI-Icons.woff
old mode 100644
new mode 100755
diff --git a/lib/web/fonts/MUI-Icons/MUI-Icons.woff2 b/lib/web/fonts/MUI-Icons/MUI-Icons.woff2
old mode 100644
new mode 100755
diff --git a/lib/web/fonts/UX-Icons/UX-Icons.eot b/lib/web/fonts/UX-Icons/UX-Icons.eot
old mode 100644
new mode 100755
diff --git a/lib/web/fonts/UX-Icons/UX-Icons.svg b/lib/web/fonts/UX-Icons/UX-Icons.svg
old mode 100644
new mode 100755
diff --git a/lib/web/fonts/UX-Icons/UX-Icons.ttf b/lib/web/fonts/UX-Icons/UX-Icons.ttf
old mode 100644
new mode 100755
diff --git a/lib/web/fonts/UX-Icons/UX-Icons.woff b/lib/web/fonts/UX-Icons/UX-Icons.woff
old mode 100644
new mode 100755
diff --git a/lib/web/fonts/opensans/bold/opensans-700.eot b/lib/web/fonts/opensans/bold/opensans-700.eot
old mode 100644
new mode 100755
diff --git a/lib/web/fonts/opensans/bold/opensans-700.svg b/lib/web/fonts/opensans/bold/opensans-700.svg
old mode 100644
new mode 100755
diff --git a/lib/web/fonts/opensans/bold/opensans-700.ttf b/lib/web/fonts/opensans/bold/opensans-700.ttf
old mode 100644
new mode 100755
diff --git a/lib/web/fonts/opensans/bold/opensans-700.woff b/lib/web/fonts/opensans/bold/opensans-700.woff
old mode 100644
new mode 100755
diff --git a/lib/web/fonts/opensans/bold/opensans-700.woff2 b/lib/web/fonts/opensans/bold/opensans-700.woff2
old mode 100644
new mode 100755
diff --git a/lib/web/fonts/opensans/light/opensans-300.eot b/lib/web/fonts/opensans/light/opensans-300.eot
old mode 100644
new mode 100755
diff --git a/lib/web/fonts/opensans/light/opensans-300.svg b/lib/web/fonts/opensans/light/opensans-300.svg
old mode 100644
new mode 100755
diff --git a/lib/web/fonts/opensans/light/opensans-300.ttf b/lib/web/fonts/opensans/light/opensans-300.ttf
old mode 100644
new mode 100755
diff --git a/lib/web/fonts/opensans/light/opensans-300.woff b/lib/web/fonts/opensans/light/opensans-300.woff
old mode 100644
new mode 100755
diff --git a/lib/web/fonts/opensans/light/opensans-300.woff2 b/lib/web/fonts/opensans/light/opensans-300.woff2
old mode 100644
new mode 100755
diff --git a/lib/web/fonts/opensans/regular/opensans-400.eot b/lib/web/fonts/opensans/regular/opensans-400.eot
old mode 100644
new mode 100755
diff --git a/lib/web/fonts/opensans/regular/opensans-400.svg b/lib/web/fonts/opensans/regular/opensans-400.svg
old mode 100644
new mode 100755
diff --git a/lib/web/fonts/opensans/regular/opensans-400.ttf b/lib/web/fonts/opensans/regular/opensans-400.ttf
old mode 100644
new mode 100755
diff --git a/lib/web/fonts/opensans/regular/opensans-400.woff b/lib/web/fonts/opensans/regular/opensans-400.woff
old mode 100644
new mode 100755
diff --git a/lib/web/fonts/opensans/regular/opensans-400.woff2 b/lib/web/fonts/opensans/regular/opensans-400.woff2
old mode 100644
new mode 100755
diff --git a/lib/web/fonts/opensans/semibold/opensans-600.eot b/lib/web/fonts/opensans/semibold/opensans-600.eot
old mode 100644
new mode 100755
diff --git a/lib/web/fonts/opensans/semibold/opensans-600.svg b/lib/web/fonts/opensans/semibold/opensans-600.svg
old mode 100644
new mode 100755
diff --git a/lib/web/fonts/opensans/semibold/opensans-600.ttf b/lib/web/fonts/opensans/semibold/opensans-600.ttf
old mode 100644
new mode 100755
diff --git a/lib/web/fonts/opensans/semibold/opensans-600.woff b/lib/web/fonts/opensans/semibold/opensans-600.woff
old mode 100644
new mode 100755
diff --git a/lib/web/fonts/opensans/semibold/opensans-600.woff2 b/lib/web/fonts/opensans/semibold/opensans-600.woff2
old mode 100644
new mode 100755
diff --git a/lib/web/fotorama/fotorama.js b/lib/web/fotorama/fotorama.js
old mode 100644
new mode 100755
diff --git a/lib/web/fotorama/fotorama.min.js b/lib/web/fotorama/fotorama.min.js
old mode 100644
new mode 100755
diff --git a/lib/web/i18n/en_US.csv b/lib/web/i18n/en_US.csv
old mode 100644
new mode 100755
diff --git a/lib/web/images/bkg_gallery_thumbs.png b/lib/web/images/bkg_gallery_thumbs.png
old mode 100644
new mode 100755
diff --git a/lib/web/images/blank-theme-icons.png b/lib/web/images/blank-theme-icons.png
old mode 100644
new mode 100755
diff --git a/lib/web/images/cards.png b/lib/web/images/cards.png
old mode 100644
new mode 100755
diff --git a/lib/web/images/debug_bkg.png b/lib/web/images/debug_bkg.png
old mode 100644
new mode 100755
diff --git a/lib/web/images/loader-1.gif b/lib/web/images/loader-1.gif
old mode 100644
new mode 100755
diff --git a/lib/web/images/loader-2.gif b/lib/web/images/loader-2.gif
old mode 100644
new mode 100755
diff --git a/lib/web/images/logo.svg b/lib/web/images/logo.svg
old mode 100644
new mode 100755
diff --git a/lib/web/images/magento-logo.svg b/lib/web/images/magento-logo.svg
old mode 100644
new mode 100755
diff --git a/lib/web/images/spacer.gif b/lib/web/images/spacer.gif
old mode 100644
new mode 100755
diff --git a/lib/web/images/sprite-gallery.png b/lib/web/images/sprite-gallery.png
old mode 100644
new mode 100755
diff --git a/lib/web/images/sprite-gallery.svg b/lib/web/images/sprite-gallery.svg
old mode 100644
new mode 100755
diff --git a/lib/web/jquery.js b/lib/web/jquery.js
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/colorpicker/css/colorpicker.css b/lib/web/jquery/colorpicker/css/colorpicker.css
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/colorpicker/images/blank.gif b/lib/web/jquery/colorpicker/images/blank.gif
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/colorpicker/images/colorpicker_background.png b/lib/web/jquery/colorpicker/images/colorpicker_background.png
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/colorpicker/images/colorpicker_hex.png b/lib/web/jquery/colorpicker/images/colorpicker_hex.png
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/colorpicker/images/colorpicker_hsb_b.png b/lib/web/jquery/colorpicker/images/colorpicker_hsb_b.png
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/colorpicker/images/colorpicker_hsb_h.png b/lib/web/jquery/colorpicker/images/colorpicker_hsb_h.png
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/colorpicker/images/colorpicker_hsb_s.png b/lib/web/jquery/colorpicker/images/colorpicker_hsb_s.png
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/colorpicker/images/colorpicker_indic.gif b/lib/web/jquery/colorpicker/images/colorpicker_indic.gif
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/colorpicker/images/colorpicker_overlay.png b/lib/web/jquery/colorpicker/images/colorpicker_overlay.png
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/colorpicker/images/colorpicker_rgb_b.png b/lib/web/jquery/colorpicker/images/colorpicker_rgb_b.png
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/colorpicker/images/colorpicker_rgb_g.png b/lib/web/jquery/colorpicker/images/colorpicker_rgb_g.png
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/colorpicker/images/colorpicker_rgb_r.png b/lib/web/jquery/colorpicker/images/colorpicker_rgb_r.png
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/colorpicker/images/colorpicker_select.gif b/lib/web/jquery/colorpicker/images/colorpicker_select.gif
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/colorpicker/images/colorpicker_submit.png b/lib/web/jquery/colorpicker/images/colorpicker_submit.png
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/colorpicker/images/custom_background.png b/lib/web/jquery/colorpicker/images/custom_background.png
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/colorpicker/images/custom_hex.png b/lib/web/jquery/colorpicker/images/custom_hex.png
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/colorpicker/images/custom_hsb_b.png b/lib/web/jquery/colorpicker/images/custom_hsb_b.png
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/colorpicker/images/custom_hsb_h.png b/lib/web/jquery/colorpicker/images/custom_hsb_h.png
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/colorpicker/images/custom_hsb_s.png b/lib/web/jquery/colorpicker/images/custom_hsb_s.png
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/colorpicker/images/custom_indic.gif b/lib/web/jquery/colorpicker/images/custom_indic.gif
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/colorpicker/images/custom_rgb_b.png b/lib/web/jquery/colorpicker/images/custom_rgb_b.png
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/colorpicker/images/custom_rgb_g.png b/lib/web/jquery/colorpicker/images/custom_rgb_g.png
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/colorpicker/images/custom_rgb_r.png b/lib/web/jquery/colorpicker/images/custom_rgb_r.png
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/colorpicker/images/custom_submit.png b/lib/web/jquery/colorpicker/images/custom_submit.png
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/colorpicker/images/select.png b/lib/web/jquery/colorpicker/images/select.png
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/colorpicker/images/select2.png b/lib/web/jquery/colorpicker/images/select2.png
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/colorpicker/images/slider.png b/lib/web/jquery/colorpicker/images/slider.png
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/colorpicker/js/colorpicker.js b/lib/web/jquery/colorpicker/js/colorpicker.js
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/editableMultiselect/css/jquery.multiselect.css b/lib/web/jquery/editableMultiselect/css/jquery.multiselect.css
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/editableMultiselect/js/jquery.editable.js b/lib/web/jquery/editableMultiselect/js/jquery.editable.js
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/editableMultiselect/js/jquery.multiselect.js b/lib/web/jquery/editableMultiselect/js/jquery.multiselect.js
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/fileUploader/canvas-to-blob.js b/lib/web/jquery/fileUploader/canvas-to-blob.js
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/fileUploader/cors/jquery.postmessage-transport.js b/lib/web/jquery/fileUploader/cors/jquery.postmessage-transport.js
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/fileUploader/cors/jquery.xdr-transport.js b/lib/web/jquery/fileUploader/cors/jquery.xdr-transport.js
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/fileUploader/css/jquery.fileupload-ui.css b/lib/web/jquery/fileUploader/css/jquery.fileupload-ui.css
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/fileUploader/img/loading.gif b/lib/web/jquery/fileUploader/img/loading.gif
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/fileUploader/img/progressbar.gif b/lib/web/jquery/fileUploader/img/progressbar.gif
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/fileUploader/jquery.fileupload-fp.js b/lib/web/jquery/fileUploader/jquery.fileupload-fp.js
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/fileUploader/jquery.fileupload-ui.js b/lib/web/jquery/fileUploader/jquery.fileupload-ui.js
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/fileUploader/jquery.fileupload.js b/lib/web/jquery/fileUploader/jquery.fileupload.js
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/fileUploader/jquery.iframe-transport.js b/lib/web/jquery/fileUploader/jquery.iframe-transport.js
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/fileUploader/load-image.js b/lib/web/jquery/fileUploader/load-image.js
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/fileUploader/locale.js b/lib/web/jquery/fileUploader/locale.js
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/fileUploader/main.js b/lib/web/jquery/fileUploader/main.js
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/fileUploader/vendor/jquery.ui.widget.js b/lib/web/jquery/fileUploader/vendor/jquery.ui.widget.js
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/jquery-migrate.js b/lib/web/jquery/jquery-migrate.js
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/jquery-ui-1.9.2.js b/lib/web/jquery/jquery-ui-1.9.2.js
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/jquery-ui-timepicker-addon.js b/lib/web/jquery/jquery-ui-timepicker-addon.js
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/jquery-ui.js b/lib/web/jquery/jquery-ui.js
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/jquery.ba-hashchange.min.js b/lib/web/jquery/jquery.ba-hashchange.min.js
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/jquery.cookie.js b/lib/web/jquery/jquery.cookie.js
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/jquery.details.js b/lib/web/jquery/jquery.details.js
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/jquery.hoverIntent.js b/lib/web/jquery/jquery.hoverIntent.js
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/jquery.metadata.js b/lib/web/jquery/jquery.metadata.js
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/jquery.min.js b/lib/web/jquery/jquery.min.js
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/jquery.mobile.custom.js b/lib/web/jquery/jquery.mobile.custom.js
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/jquery.parsequery.js b/lib/web/jquery/jquery.parsequery.js
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/jquery.storageapi.min.js b/lib/web/jquery/jquery.storageapi.min.js
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/jquery.tabs.js b/lib/web/jquery/jquery.tabs.js
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/jquery.validate.js b/lib/web/jquery/jquery.validate.js
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/jstree/jquery.hotkeys.js b/lib/web/jquery/jstree/jquery.hotkeys.js
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/jstree/jquery.jstree.js b/lib/web/jquery/jstree/jquery.jstree.js
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/jstree/themes/apple/bg.jpg b/lib/web/jquery/jstree/themes/apple/bg.jpg
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/jstree/themes/apple/d.png b/lib/web/jquery/jstree/themes/apple/d.png
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/jstree/themes/apple/dot_for_ie.gif b/lib/web/jquery/jstree/themes/apple/dot_for_ie.gif
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/jstree/themes/apple/style.css b/lib/web/jquery/jstree/themes/apple/style.css
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/jstree/themes/apple/throbber.gif b/lib/web/jquery/jstree/themes/apple/throbber.gif
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/jstree/themes/classic/d.gif b/lib/web/jquery/jstree/themes/classic/d.gif
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/jstree/themes/classic/d.png b/lib/web/jquery/jstree/themes/classic/d.png
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/jstree/themes/classic/dot_for_ie.gif b/lib/web/jquery/jstree/themes/classic/dot_for_ie.gif
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/jstree/themes/classic/style.css b/lib/web/jquery/jstree/themes/classic/style.css
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/jstree/themes/classic/throbber.gif b/lib/web/jquery/jstree/themes/classic/throbber.gif
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/jstree/themes/default-rtl/d.gif b/lib/web/jquery/jstree/themes/default-rtl/d.gif
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/jstree/themes/default-rtl/d.png b/lib/web/jquery/jstree/themes/default-rtl/d.png
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/jstree/themes/default-rtl/dots.gif b/lib/web/jquery/jstree/themes/default-rtl/dots.gif
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/jstree/themes/default-rtl/style.css b/lib/web/jquery/jstree/themes/default-rtl/style.css
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/jstree/themes/default-rtl/throbber.gif b/lib/web/jquery/jstree/themes/default-rtl/throbber.gif
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/jstree/themes/default/d.gif b/lib/web/jquery/jstree/themes/default/d.gif
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/jstree/themes/default/d.png b/lib/web/jquery/jstree/themes/default/d.png
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/jstree/themes/default/style.css b/lib/web/jquery/jstree/themes/default/style.css
old mode 100644
new mode 100755
diff --git a/lib/web/jquery/jstree/themes/default/throbber.gif b/lib/web/jquery/jstree/themes/default/throbber.gif
old mode 100644
new mode 100755
diff --git a/lib/web/knockoutjs/knockout-es5.js b/lib/web/knockoutjs/knockout-es5.js
old mode 100644
new mode 100755
diff --git a/lib/web/knockoutjs/knockout-fast-foreach.js b/lib/web/knockoutjs/knockout-fast-foreach.js
old mode 100644
new mode 100755
diff --git a/lib/web/knockoutjs/knockout-repeat.js b/lib/web/knockoutjs/knockout-repeat.js
old mode 100644
new mode 100755
diff --git a/lib/web/knockoutjs/knockout.js b/lib/web/knockoutjs/knockout.js
old mode 100644
new mode 100755
diff --git a/lib/web/legacy-build.min.js b/lib/web/legacy-build.min.js
old mode 100644
new mode 100755
diff --git a/lib/web/less/config.less.js b/lib/web/less/config.less.js
old mode 100644
new mode 100755
diff --git a/lib/web/less/less.min.js b/lib/web/less/less.min.js
old mode 100644
new mode 100755
diff --git a/lib/web/lib/ccard.js b/lib/web/lib/ccard.js
old mode 100644
new mode 100755
diff --git a/lib/web/lib/storage.js b/lib/web/lib/storage.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/accordion.js b/lib/web/mage/accordion.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/adminhtml/accordion.js b/lib/web/mage/adminhtml/accordion.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/adminhtml/backup.js b/lib/web/mage/adminhtml/backup.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/adminhtml/browser.js b/lib/web/mage/adminhtml/browser.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/adminhtml/events.js b/lib/web/mage/adminhtml/events.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/adminhtml/form.js b/lib/web/mage/adminhtml/form.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/adminhtml/globals.js b/lib/web/mage/adminhtml/globals.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/adminhtml/grid.js b/lib/web/mage/adminhtml/grid.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/adminhtml/tools.js b/lib/web/mage/adminhtml/tools.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/adminhtml/varienLoader.js b/lib/web/mage/adminhtml/varienLoader.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/adminhtml/wysiwyg/tiny_mce/html5-schema.js b/lib/web/mage/adminhtml/wysiwyg/tiny_mce/html5-schema.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/adminhtml/wysiwyg/tiny_mce/plugins/magentovariable/editor_plugin.js b/lib/web/mage/adminhtml/wysiwyg/tiny_mce/plugins/magentovariable/editor_plugin.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/adminhtml/wysiwyg/tiny_mce/plugins/magentovariable/img/icon.gif b/lib/web/mage/adminhtml/wysiwyg/tiny_mce/plugins/magentovariable/img/icon.gif
old mode 100644
new mode 100755
diff --git a/lib/web/mage/adminhtml/wysiwyg/tiny_mce/plugins/magentowidget/editor_plugin.js b/lib/web/mage/adminhtml/wysiwyg/tiny_mce/plugins/magentowidget/editor_plugin.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/adminhtml/wysiwyg/tiny_mce/plugins/magentowidget/img/icon.gif b/lib/web/mage/adminhtml/wysiwyg/tiny_mce/plugins/magentowidget/img/icon.gif
old mode 100644
new mode 100755
diff --git a/lib/web/mage/adminhtml/wysiwyg/tiny_mce/themes/advanced/skins/default/content.css b/lib/web/mage/adminhtml/wysiwyg/tiny_mce/themes/advanced/skins/default/content.css
old mode 100644
new mode 100755
diff --git a/lib/web/mage/adminhtml/wysiwyg/tiny_mce/themes/advanced/skins/default/dialog.css b/lib/web/mage/adminhtml/wysiwyg/tiny_mce/themes/advanced/skins/default/dialog.css
old mode 100644
new mode 100755
diff --git a/lib/web/mage/adminhtml/wysiwyg/widget.js b/lib/web/mage/adminhtml/wysiwyg/widget.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/app/config.js b/lib/web/mage/app/config.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/apply/main.js b/lib/web/mage/apply/main.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/apply/scripts.js b/lib/web/mage/apply/scripts.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/backend/action-link.js b/lib/web/mage/backend/action-link.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/backend/bootstrap.js b/lib/web/mage/backend/bootstrap.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/backend/button.js b/lib/web/mage/backend/button.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/backend/editablemultiselect.js b/lib/web/mage/backend/editablemultiselect.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/backend/floating-header.js b/lib/web/mage/backend/floating-header.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/backend/form.js b/lib/web/mage/backend/form.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/backend/jstree-mixin.js b/lib/web/mage/backend/jstree-mixin.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/backend/menu.js b/lib/web/mage/backend/menu.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/backend/notification.js b/lib/web/mage/backend/notification.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/backend/suggest.js b/lib/web/mage/backend/suggest.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/backend/tabs.js b/lib/web/mage/backend/tabs.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/backend/tree-suggest.js b/lib/web/mage/backend/tree-suggest.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/backend/validation.js b/lib/web/mage/backend/validation.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/bootstrap.js b/lib/web/mage/bootstrap.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/calendar.css b/lib/web/mage/calendar.css
old mode 100644
new mode 100755
diff --git a/lib/web/mage/calendar.js b/lib/web/mage/calendar.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/captcha.js b/lib/web/mage/captcha.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/collapsible.js b/lib/web/mage/collapsible.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/common.js b/lib/web/mage/common.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/cookies.js b/lib/web/mage/cookies.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/dataPost.js b/lib/web/mage/dataPost.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/decorate.js b/lib/web/mage/decorate.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/deletable-item.js b/lib/web/mage/deletable-item.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/dialog.js b/lib/web/mage/dialog.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/dropdown.js b/lib/web/mage/dropdown.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/dropdown_old.js b/lib/web/mage/dropdown_old.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/dropdowns.js b/lib/web/mage/dropdowns.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/edit-trigger.js b/lib/web/mage/edit-trigger.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/fieldset-controls.js b/lib/web/mage/fieldset-controls.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/gallery/gallery.html b/lib/web/mage/gallery/gallery.html
old mode 100644
new mode 100755
diff --git a/lib/web/mage/gallery/gallery.js b/lib/web/mage/gallery/gallery.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/gallery/gallery.less b/lib/web/mage/gallery/gallery.less
old mode 100644
new mode 100755
diff --git a/lib/web/mage/gallery/gallery.png b/lib/web/mage/gallery/gallery.png
old mode 100644
new mode 100755
diff --git a/lib/web/mage/gallery/module/_extends.less b/lib/web/mage/gallery/module/_extends.less
old mode 100644
new mode 100755
diff --git a/lib/web/mage/gallery/module/_focus.less b/lib/web/mage/gallery/module/_focus.less
old mode 100644
new mode 100755
diff --git a/lib/web/mage/gallery/module/_fullscreen.less b/lib/web/mage/gallery/module/_fullscreen.less
old mode 100644
new mode 100755
diff --git a/lib/web/mage/gallery/module/_mixins.less b/lib/web/mage/gallery/module/_mixins.less
old mode 100644
new mode 100755
diff --git a/lib/web/mage/gallery/module/_variables.less b/lib/web/mage/gallery/module/_variables.less
old mode 100644
new mode 100755
diff --git a/lib/web/mage/ie-class-fixer.js b/lib/web/mage/ie-class-fixer.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/item-table.js b/lib/web/mage/item-table.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/layout.js b/lib/web/mage/layout.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/list.js b/lib/web/mage/list.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/loader.js b/lib/web/mage/loader.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/loader_old.js b/lib/web/mage/loader_old.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/mage.js b/lib/web/mage/mage.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/menu.js b/lib/web/mage/menu.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/multiselect.html b/lib/web/mage/multiselect.html
old mode 100644
new mode 100755
diff --git a/lib/web/mage/multiselect.js b/lib/web/mage/multiselect.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/popup-window.js b/lib/web/mage/popup-window.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/redirect-url.js b/lib/web/mage/redirect-url.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/requirejs/baseUrlResolver.js b/lib/web/mage/requirejs/baseUrlResolver.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/requirejs/mixins.js b/lib/web/mage/requirejs/mixins.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/requirejs/resolver.js b/lib/web/mage/requirejs/resolver.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/requirejs/static.js b/lib/web/mage/requirejs/static.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/requirejs/text.js b/lib/web/mage/requirejs/text.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/smart-keyboard-handler.js b/lib/web/mage/smart-keyboard-handler.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/sticky.js b/lib/web/mage/sticky.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/storage.js b/lib/web/mage/storage.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/tabs.js b/lib/web/mage/tabs.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/template.js b/lib/web/mage/template.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/terms.js b/lib/web/mage/terms.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/toggle.js b/lib/web/mage/toggle.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/tooltip.js b/lib/web/mage/tooltip.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/translate-inline-vde.css b/lib/web/mage/translate-inline-vde.css
old mode 100644
new mode 100755
diff --git a/lib/web/mage/translate-inline-vde.js b/lib/web/mage/translate-inline-vde.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/translate-inline.css b/lib/web/mage/translate-inline.css
old mode 100644
new mode 100755
diff --git a/lib/web/mage/translate-inline.js b/lib/web/mage/translate-inline.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/translate.js b/lib/web/mage/translate.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/url.js b/lib/web/mage/url.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/utils/arrays.js b/lib/web/mage/utils/arrays.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/utils/compare.js b/lib/web/mage/utils/compare.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/utils/main.js b/lib/web/mage/utils/main.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/utils/misc.js b/lib/web/mage/utils/misc.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/utils/objects.js b/lib/web/mage/utils/objects.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/utils/strings.js b/lib/web/mage/utils/strings.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/utils/template.js b/lib/web/mage/utils/template.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/utils/wrapper.js b/lib/web/mage/utils/wrapper.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/validation.js b/lib/web/mage/validation.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/validation/url.js b/lib/web/mage/validation/url.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/validation/validation.js b/lib/web/mage/validation/validation.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/view/composite.js b/lib/web/mage/view/composite.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/webapi.js b/lib/web/mage/webapi.js
old mode 100644
new mode 100755
diff --git a/lib/web/mage/zoom.js b/lib/web/mage/zoom.js
old mode 100644
new mode 100755
diff --git a/lib/web/magnifier/magnifier.js b/lib/web/magnifier/magnifier.js
old mode 100644
new mode 100755
diff --git a/lib/web/magnifier/magnify.js b/lib/web/magnifier/magnify.js
old mode 100644
new mode 100755
diff --git a/lib/web/matchMedia.js b/lib/web/matchMedia.js
old mode 100644
new mode 100755
diff --git a/lib/web/modernizr/modernizr.2.0.6.js b/lib/web/modernizr/modernizr.2.0.6.js
old mode 100644
new mode 100755
diff --git a/lib/web/modernizr/modernizr.details.js b/lib/web/modernizr/modernizr.details.js
old mode 100644
new mode 100755
diff --git a/lib/web/modernizr/modernizr.js b/lib/web/modernizr/modernizr.js
old mode 100644
new mode 100755
diff --git a/lib/web/moment-timezone-with-data.js b/lib/web/moment-timezone-with-data.js
old mode 100644
new mode 100755
diff --git a/lib/web/moment.js b/lib/web/moment.js
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/prototype-amd.js b/lib/web/prototype/prototype-amd.js
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/prototype.js b/lib/web/prototype/prototype.js
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/validation.js b/lib/web/prototype/validation.js
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/window.js b/lib/web/prototype/window.js
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/window_readme.txt b/lib/web/prototype/window_readme.txt
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/MIT-LICENSE b/lib/web/prototype/windows/MIT-LICENSE
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/README b/lib/web/prototype/windows/README
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/alert.css b/lib/web/prototype/windows/themes/alert.css
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/alert/bottom.gif b/lib/web/prototype/windows/themes/alert/bottom.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/alert/bottom_left.gif b/lib/web/prototype/windows/themes/alert/bottom_left.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/alert/bottom_right.gif b/lib/web/prototype/windows/themes/alert/bottom_right.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/alert/left.gif b/lib/web/prototype/windows/themes/alert/left.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/alert/overlay.png b/lib/web/prototype/windows/themes/alert/overlay.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/alert/progress.gif b/lib/web/prototype/windows/themes/alert/progress.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/alert/right.gif b/lib/web/prototype/windows/themes/alert/right.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/alert/top.gif b/lib/web/prototype/windows/themes/alert/top.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/alert/top_left.gif b/lib/web/prototype/windows/themes/alert/top_left.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/alert/top_right.gif b/lib/web/prototype/windows/themes/alert/top_right.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/alert_lite.css b/lib/web/prototype/windows/themes/alert_lite.css
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/alphacube.css b/lib/web/prototype/windows/themes/alphacube.css
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/alphacube/bottom-left-c.gif b/lib/web/prototype/windows/themes/alphacube/bottom-left-c.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/alphacube/bottom-middle.gif b/lib/web/prototype/windows/themes/alphacube/bottom-middle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/alphacube/bottom-right-c.gif b/lib/web/prototype/windows/themes/alphacube/bottom-right-c.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/alphacube/button-close-focus.gif b/lib/web/prototype/windows/themes/alphacube/button-close-focus.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/alphacube/button-max-focus.gif b/lib/web/prototype/windows/themes/alphacube/button-max-focus.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/alphacube/button-min-focus.gif b/lib/web/prototype/windows/themes/alphacube/button-min-focus.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/alphacube/frame-left.gif b/lib/web/prototype/windows/themes/alphacube/frame-left.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/alphacube/frame-right.gif b/lib/web/prototype/windows/themes/alphacube/frame-right.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/alphacube/left-top.gif b/lib/web/prototype/windows/themes/alphacube/left-top.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/alphacube/right-top.gif b/lib/web/prototype/windows/themes/alphacube/right-top.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/alphacube/top-middle.gif b/lib/web/prototype/windows/themes/alphacube/top-middle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/behavior.htc b/lib/web/prototype/windows/themes/behavior.htc
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/darkX.css b/lib/web/prototype/windows/themes/darkX.css
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/darkX/button-close-focused.png b/lib/web/prototype/windows/themes/darkX/button-close-focused.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/darkX/button-maximize-focused.png b/lib/web/prototype/windows/themes/darkX/button-maximize-focused.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/darkX/button-minimize-focused.png b/lib/web/prototype/windows/themes/darkX/button-minimize-focused.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/darkX/frame-bottom-left-focused.png b/lib/web/prototype/windows/themes/darkX/frame-bottom-left-focused.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/darkX/frame-bottom-mid-focused.png b/lib/web/prototype/windows/themes/darkX/frame-bottom-mid-focused.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/darkX/frame-bottom-right-focused.png b/lib/web/prototype/windows/themes/darkX/frame-bottom-right-focused.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/darkX/frame-left-focused.png b/lib/web/prototype/windows/themes/darkX/frame-left-focused.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/darkX/frame-right-focused.png b/lib/web/prototype/windows/themes/darkX/frame-right-focused.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/darkX/titlebar-left-focused.png b/lib/web/prototype/windows/themes/darkX/titlebar-left-focused.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/darkX/titlebar-mid-focused.png b/lib/web/prototype/windows/themes/darkX/titlebar-mid-focused.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/darkX/titlebar-right-focused.png b/lib/web/prototype/windows/themes/darkX/titlebar-right-focused.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/debug.css b/lib/web/prototype/windows/themes/debug.css
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/default.css b/lib/web/prototype/windows/themes/default.css
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/default/bottom_left.gif b/lib/web/prototype/windows/themes/default/bottom_left.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/default/bottom_mid.gif b/lib/web/prototype/windows/themes/default/bottom_mid.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/default/bottom_right.gif b/lib/web/prototype/windows/themes/default/bottom_right.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/default/bottom_right_resize.gif b/lib/web/prototype/windows/themes/default/bottom_right_resize.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/default/center_left.gif b/lib/web/prototype/windows/themes/default/center_left.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/default/center_right.gif b/lib/web/prototype/windows/themes/default/center_right.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/default/clear.gif b/lib/web/prototype/windows/themes/default/clear.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/default/close.gif b/lib/web/prototype/windows/themes/default/close.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/default/inspect.gif b/lib/web/prototype/windows/themes/default/inspect.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/default/maximize.gif b/lib/web/prototype/windows/themes/default/maximize.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/default/minimize.gif b/lib/web/prototype/windows/themes/default/minimize.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/default/overlay.png b/lib/web/prototype/windows/themes/default/overlay.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/default/resize.gif b/lib/web/prototype/windows/themes/default/resize.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/default/sizer.gif b/lib/web/prototype/windows/themes/default/sizer.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/default/top_left.gif b/lib/web/prototype/windows/themes/default/top_left.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/default/top_mid.gif b/lib/web/prototype/windows/themes/default/top_mid.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/default/top_right.gif b/lib/web/prototype/windows/themes/default/top_right.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/iefix/blank.gif b/lib/web/prototype/windows/themes/iefix/blank.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/iefix/iepngfix.css b/lib/web/prototype/windows/themes/iefix/iepngfix.css
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/iefix/iepngfix.htc b/lib/web/prototype/windows/themes/iefix/iepngfix.htc
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/lighting.css b/lib/web/prototype/windows/themes/lighting.css
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/lighting/background_buttons.gif b/lib/web/prototype/windows/themes/lighting/background_buttons.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/lighting/bottom-left-blue.png b/lib/web/prototype/windows/themes/lighting/bottom-left-blue.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/lighting/bottom-left-darkblue.png b/lib/web/prototype/windows/themes/lighting/bottom-left-darkblue.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/lighting/bottom-left-green.png b/lib/web/prototype/windows/themes/lighting/bottom-left-green.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/lighting/bottom-left-grey.png b/lib/web/prototype/windows/themes/lighting/bottom-left-grey.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/lighting/bottom-middle-blue.png b/lib/web/prototype/windows/themes/lighting/bottom-middle-blue.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/lighting/bottom-middle-darkblue.png b/lib/web/prototype/windows/themes/lighting/bottom-middle-darkblue.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/lighting/bottom-middle-green.png b/lib/web/prototype/windows/themes/lighting/bottom-middle-green.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/lighting/bottom-middle-grey.png b/lib/web/prototype/windows/themes/lighting/bottom-middle-grey.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/lighting/bottom-right-blue.png b/lib/web/prototype/windows/themes/lighting/bottom-right-blue.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/lighting/bottom-right-darkblue.png b/lib/web/prototype/windows/themes/lighting/bottom-right-darkblue.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/lighting/bottom-right-green.png b/lib/web/prototype/windows/themes/lighting/bottom-right-green.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/lighting/bottom-right-grey.png b/lib/web/prototype/windows/themes/lighting/bottom-right-grey.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/lighting/button-close-blue.png b/lib/web/prototype/windows/themes/lighting/button-close-blue.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/lighting/button-close-darkblue.png b/lib/web/prototype/windows/themes/lighting/button-close-darkblue.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/lighting/button-close-green.png b/lib/web/prototype/windows/themes/lighting/button-close-green.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/lighting/button-close-grey.png b/lib/web/prototype/windows/themes/lighting/button-close-grey.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/lighting/button-maximize-blue.png b/lib/web/prototype/windows/themes/lighting/button-maximize-blue.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/lighting/button-maximize-darkblue.png b/lib/web/prototype/windows/themes/lighting/button-maximize-darkblue.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/lighting/button-maximize-green.png b/lib/web/prototype/windows/themes/lighting/button-maximize-green.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/lighting/button-maximize-grey.png b/lib/web/prototype/windows/themes/lighting/button-maximize-grey.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/lighting/button-minimize-blue.png b/lib/web/prototype/windows/themes/lighting/button-minimize-blue.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/lighting/button-minimize-darkblue.png b/lib/web/prototype/windows/themes/lighting/button-minimize-darkblue.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/lighting/button-minimize-green.png b/lib/web/prototype/windows/themes/lighting/button-minimize-green.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/lighting/button-minimize-grey.png b/lib/web/prototype/windows/themes/lighting/button-minimize-grey.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/lighting/left-blue.png b/lib/web/prototype/windows/themes/lighting/left-blue.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/lighting/left-darkblue.png b/lib/web/prototype/windows/themes/lighting/left-darkblue.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/lighting/left-green.png b/lib/web/prototype/windows/themes/lighting/left-green.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/lighting/left-grey.png b/lib/web/prototype/windows/themes/lighting/left-grey.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/lighting/pngbehavior.htc b/lib/web/prototype/windows/themes/lighting/pngbehavior.htc
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/lighting/right-blue.png b/lib/web/prototype/windows/themes/lighting/right-blue.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/lighting/right-darkblue.png b/lib/web/prototype/windows/themes/lighting/right-darkblue.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/lighting/right-green.png b/lib/web/prototype/windows/themes/lighting/right-green.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/lighting/right-grey.png b/lib/web/prototype/windows/themes/lighting/right-grey.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/lighting/spinner.gif b/lib/web/prototype/windows/themes/lighting/spinner.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/lighting/top-left-blue.png b/lib/web/prototype/windows/themes/lighting/top-left-blue.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/lighting/top-left-darkblue.png b/lib/web/prototype/windows/themes/lighting/top-left-darkblue.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/lighting/top-left-green.png b/lib/web/prototype/windows/themes/lighting/top-left-green.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/lighting/top-left-grey.png b/lib/web/prototype/windows/themes/lighting/top-left-grey.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/lighting/top-middle-blue.png b/lib/web/prototype/windows/themes/lighting/top-middle-blue.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/lighting/top-middle-darkblue.png b/lib/web/prototype/windows/themes/lighting/top-middle-darkblue.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/lighting/top-middle-green.png b/lib/web/prototype/windows/themes/lighting/top-middle-green.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/lighting/top-middle-grey.png b/lib/web/prototype/windows/themes/lighting/top-middle-grey.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/lighting/top-right-blue.png b/lib/web/prototype/windows/themes/lighting/top-right-blue.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/lighting/top-right-darkblue.png b/lib/web/prototype/windows/themes/lighting/top-right-darkblue.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/lighting/top-right-green.png b/lib/web/prototype/windows/themes/lighting/top-right-green.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/lighting/top-right-grey.png b/lib/web/prototype/windows/themes/lighting/top-right-grey.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/mac_os_x.css b/lib/web/prototype/windows/themes/mac_os_x.css
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/mac_os_x_dialog.css b/lib/web/prototype/windows/themes/mac_os_x_dialog.css
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/nuncio.css b/lib/web/prototype/windows/themes/nuncio.css
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/nuncio/bottom_left.png b/lib/web/prototype/windows/themes/nuncio/bottom_left.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/nuncio/bottom_mid.png b/lib/web/prototype/windows/themes/nuncio/bottom_mid.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/nuncio/bottom_right.png b/lib/web/prototype/windows/themes/nuncio/bottom_right.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/nuncio/center_left.png b/lib/web/prototype/windows/themes/nuncio/center_left.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/nuncio/center_right.png b/lib/web/prototype/windows/themes/nuncio/center_right.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/nuncio/close.png b/lib/web/prototype/windows/themes/nuncio/close.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/nuncio/minimize.png b/lib/web/prototype/windows/themes/nuncio/minimize.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/nuncio/overlay.png b/lib/web/prototype/windows/themes/nuncio/overlay.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/nuncio/top_left.png b/lib/web/prototype/windows/themes/nuncio/top_left.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/nuncio/top_mid.png b/lib/web/prototype/windows/themes/nuncio/top_mid.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/nuncio/top_right.png b/lib/web/prototype/windows/themes/nuncio/top_right.png
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/spread.css b/lib/web/prototype/windows/themes/spread.css
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/spread/.gif b/lib/web/prototype/windows/themes/spread/.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/spread/bottom-left-c.gif b/lib/web/prototype/windows/themes/spread/bottom-left-c.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/spread/bottom-middle.gif b/lib/web/prototype/windows/themes/spread/bottom-middle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/spread/bottom-right-c.gif b/lib/web/prototype/windows/themes/spread/bottom-right-c.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/spread/button-close-focus.gif b/lib/web/prototype/windows/themes/spread/button-close-focus.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/spread/button-max-focus.gif b/lib/web/prototype/windows/themes/spread/button-max-focus.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/spread/button-min-focus.gif b/lib/web/prototype/windows/themes/spread/button-min-focus.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/spread/frame-left.gif b/lib/web/prototype/windows/themes/spread/frame-left.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/spread/frame-right.gif b/lib/web/prototype/windows/themes/spread/frame-right.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/spread/left-top.gif b/lib/web/prototype/windows/themes/spread/left-top.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/spread/right-top.gif b/lib/web/prototype/windows/themes/spread/right-top.gif
old mode 100644
new mode 100755
diff --git a/lib/web/prototype/windows/themes/spread/top-middle.gif b/lib/web/prototype/windows/themes/spread/top-middle.gif
old mode 100644
new mode 100755
diff --git a/lib/web/requirejs/domReady.js b/lib/web/requirejs/domReady.js
old mode 100644
new mode 100755
diff --git a/lib/web/requirejs/require.js b/lib/web/requirejs/require.js
old mode 100644
new mode 100755
diff --git a/lib/web/requirejs/text.js b/lib/web/requirejs/text.js
old mode 100644
new mode 100755
diff --git a/lib/web/scriptaculous/builder.js b/lib/web/scriptaculous/builder.js
old mode 100644
new mode 100755
diff --git a/lib/web/scriptaculous/effects.js b/lib/web/scriptaculous/effects.js
old mode 100644
new mode 100755
diff --git a/lib/web/spacer.gif b/lib/web/spacer.gif
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/AddOnManager.js b/lib/web/tiny_mce/classes/AddOnManager.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/ControlManager.js b/lib/web/tiny_mce/classes/ControlManager.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/Editor.js b/lib/web/tiny_mce/classes/Editor.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/EditorCommands.js b/lib/web/tiny_mce/classes/EditorCommands.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/EditorManager.js b/lib/web/tiny_mce/classes/EditorManager.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/ForceBlocks.js b/lib/web/tiny_mce/classes/ForceBlocks.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/Formatter.js b/lib/web/tiny_mce/classes/Formatter.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/LegacyInput.js b/lib/web/tiny_mce/classes/LegacyInput.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/Popup.js b/lib/web/tiny_mce/classes/Popup.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/UndoManager.js b/lib/web/tiny_mce/classes/UndoManager.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/WindowManager.js b/lib/web/tiny_mce/classes/WindowManager.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/adapter/jquery/adapter.js b/lib/web/tiny_mce/classes/adapter/jquery/adapter.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/adapter/jquery/jquery.tinymce.js b/lib/web/tiny_mce/classes/adapter/jquery/jquery.tinymce.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/adapter/prototype/adapter.js b/lib/web/tiny_mce/classes/adapter/prototype/adapter.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/dom/DOMUtils.js b/lib/web/tiny_mce/classes/dom/DOMUtils.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/dom/Element.js b/lib/web/tiny_mce/classes/dom/Element.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/dom/EventUtils.js b/lib/web/tiny_mce/classes/dom/EventUtils.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/dom/Range.js b/lib/web/tiny_mce/classes/dom/Range.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/dom/RangeUtils.js b/lib/web/tiny_mce/classes/dom/RangeUtils.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/dom/ScriptLoader.js b/lib/web/tiny_mce/classes/dom/ScriptLoader.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/dom/Selection.js b/lib/web/tiny_mce/classes/dom/Selection.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/dom/Serializer.js b/lib/web/tiny_mce/classes/dom/Serializer.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/dom/Sizzle.js b/lib/web/tiny_mce/classes/dom/Sizzle.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/dom/TreeWalker.js b/lib/web/tiny_mce/classes/dom/TreeWalker.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/dom/TridentSelection.js b/lib/web/tiny_mce/classes/dom/TridentSelection.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/firebug/FIREBUG.LICENSE b/lib/web/tiny_mce/classes/firebug/FIREBUG.LICENSE
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/firebug/firebug-lite.js b/lib/web/tiny_mce/classes/firebug/firebug-lite.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/html/DomParser.js b/lib/web/tiny_mce/classes/html/DomParser.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/html/Entities.js b/lib/web/tiny_mce/classes/html/Entities.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/html/Node.js b/lib/web/tiny_mce/classes/html/Node.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/html/SaxParser.js b/lib/web/tiny_mce/classes/html/SaxParser.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/html/Schema.js b/lib/web/tiny_mce/classes/html/Schema.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/html/Serializer.js b/lib/web/tiny_mce/classes/html/Serializer.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/html/Styles.js b/lib/web/tiny_mce/classes/html/Styles.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/html/Writer.js b/lib/web/tiny_mce/classes/html/Writer.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/tinymce.js b/lib/web/tiny_mce/classes/tinymce.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/ui/Button.js b/lib/web/tiny_mce/classes/ui/Button.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/ui/ColorSplitButton.js b/lib/web/tiny_mce/classes/ui/ColorSplitButton.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/ui/Container.js b/lib/web/tiny_mce/classes/ui/Container.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/ui/Control.js b/lib/web/tiny_mce/classes/ui/Control.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/ui/DropMenu.js b/lib/web/tiny_mce/classes/ui/DropMenu.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/ui/KeyboardNavigation.js b/lib/web/tiny_mce/classes/ui/KeyboardNavigation.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/ui/ListBox.js b/lib/web/tiny_mce/classes/ui/ListBox.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/ui/Menu.js b/lib/web/tiny_mce/classes/ui/Menu.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/ui/MenuButton.js b/lib/web/tiny_mce/classes/ui/MenuButton.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/ui/MenuItem.js b/lib/web/tiny_mce/classes/ui/MenuItem.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/ui/NativeListBox.js b/lib/web/tiny_mce/classes/ui/NativeListBox.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/ui/Separator.js b/lib/web/tiny_mce/classes/ui/Separator.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/ui/SplitButton.js b/lib/web/tiny_mce/classes/ui/SplitButton.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/ui/Toolbar.js b/lib/web/tiny_mce/classes/ui/Toolbar.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/ui/ToolbarGroup.js b/lib/web/tiny_mce/classes/ui/ToolbarGroup.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/util/Cookie.js b/lib/web/tiny_mce/classes/util/Cookie.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/util/Dispatcher.js b/lib/web/tiny_mce/classes/util/Dispatcher.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/util/JSON.js b/lib/web/tiny_mce/classes/util/JSON.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/util/JSONP.js b/lib/web/tiny_mce/classes/util/JSONP.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/util/JSONRequest.js b/lib/web/tiny_mce/classes/util/JSONRequest.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/util/Quirks.js b/lib/web/tiny_mce/classes/util/Quirks.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/util/URI.js b/lib/web/tiny_mce/classes/util/URI.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/util/VK.js b/lib/web/tiny_mce/classes/util/VK.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/util/XHR.js b/lib/web/tiny_mce/classes/util/XHR.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/classes/xml/Parser.js b/lib/web/tiny_mce/classes/xml/Parser.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/jquery.tinymce.js b/lib/web/tiny_mce/jquery.tinymce.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/langs/en.js b/lib/web/tiny_mce/langs/en.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/license.txt b/lib/web/tiny_mce/license.txt
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/advhr/css/advhr.css b/lib/web/tiny_mce/plugins/advhr/css/advhr.css
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/advhr/editor_plugin.js b/lib/web/tiny_mce/plugins/advhr/editor_plugin.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/advhr/editor_plugin_src.js b/lib/web/tiny_mce/plugins/advhr/editor_plugin_src.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/advhr/js/rule.js b/lib/web/tiny_mce/plugins/advhr/js/rule.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/advhr/langs/en_dlg.js b/lib/web/tiny_mce/plugins/advhr/langs/en_dlg.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/advhr/rule.htm b/lib/web/tiny_mce/plugins/advhr/rule.htm
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/advimage/css/advimage.css b/lib/web/tiny_mce/plugins/advimage/css/advimage.css
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/advimage/editor_plugin.js b/lib/web/tiny_mce/plugins/advimage/editor_plugin.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/advimage/editor_plugin_src.js b/lib/web/tiny_mce/plugins/advimage/editor_plugin_src.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/advimage/image.htm b/lib/web/tiny_mce/plugins/advimage/image.htm
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/advimage/img/sample.gif b/lib/web/tiny_mce/plugins/advimage/img/sample.gif
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/advimage/js/image.js b/lib/web/tiny_mce/plugins/advimage/js/image.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/advimage/langs/en_dlg.js b/lib/web/tiny_mce/plugins/advimage/langs/en_dlg.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/advlink/css/advlink.css b/lib/web/tiny_mce/plugins/advlink/css/advlink.css
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/advlink/editor_plugin.js b/lib/web/tiny_mce/plugins/advlink/editor_plugin.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/advlink/editor_plugin_src.js b/lib/web/tiny_mce/plugins/advlink/editor_plugin_src.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/advlink/js/advlink.js b/lib/web/tiny_mce/plugins/advlink/js/advlink.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/advlink/langs/en_dlg.js b/lib/web/tiny_mce/plugins/advlink/langs/en_dlg.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/advlink/link.htm b/lib/web/tiny_mce/plugins/advlink/link.htm
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/advlist/editor_plugin.js b/lib/web/tiny_mce/plugins/advlist/editor_plugin.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/advlist/editor_plugin_src.js b/lib/web/tiny_mce/plugins/advlist/editor_plugin_src.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/autolink/editor_plugin.js b/lib/web/tiny_mce/plugins/autolink/editor_plugin.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/autolink/editor_plugin_src.js b/lib/web/tiny_mce/plugins/autolink/editor_plugin_src.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/autoresize/editor_plugin.js b/lib/web/tiny_mce/plugins/autoresize/editor_plugin.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/autoresize/editor_plugin_src.js b/lib/web/tiny_mce/plugins/autoresize/editor_plugin_src.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/autosave/editor_plugin.js b/lib/web/tiny_mce/plugins/autosave/editor_plugin.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/autosave/editor_plugin_src.js b/lib/web/tiny_mce/plugins/autosave/editor_plugin_src.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/autosave/langs/en.js b/lib/web/tiny_mce/plugins/autosave/langs/en.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/bbcode/editor_plugin.js b/lib/web/tiny_mce/plugins/bbcode/editor_plugin.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/bbcode/editor_plugin_src.js b/lib/web/tiny_mce/plugins/bbcode/editor_plugin_src.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/contextmenu/editor_plugin.js b/lib/web/tiny_mce/plugins/contextmenu/editor_plugin.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/contextmenu/editor_plugin_src.js b/lib/web/tiny_mce/plugins/contextmenu/editor_plugin_src.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/directionality/editor_plugin.js b/lib/web/tiny_mce/plugins/directionality/editor_plugin.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/directionality/editor_plugin_src.js b/lib/web/tiny_mce/plugins/directionality/editor_plugin_src.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/emotions/editor_plugin.js b/lib/web/tiny_mce/plugins/emotions/editor_plugin.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/emotions/editor_plugin_src.js b/lib/web/tiny_mce/plugins/emotions/editor_plugin_src.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/emotions/emotions.htm b/lib/web/tiny_mce/plugins/emotions/emotions.htm
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/emotions/img/smiley-cool.gif b/lib/web/tiny_mce/plugins/emotions/img/smiley-cool.gif
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/emotions/img/smiley-cry.gif b/lib/web/tiny_mce/plugins/emotions/img/smiley-cry.gif
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/emotions/img/smiley-embarassed.gif b/lib/web/tiny_mce/plugins/emotions/img/smiley-embarassed.gif
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif b/lib/web/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/emotions/img/smiley-frown.gif b/lib/web/tiny_mce/plugins/emotions/img/smiley-frown.gif
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/emotions/img/smiley-innocent.gif b/lib/web/tiny_mce/plugins/emotions/img/smiley-innocent.gif
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/emotions/img/smiley-kiss.gif b/lib/web/tiny_mce/plugins/emotions/img/smiley-kiss.gif
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/emotions/img/smiley-laughing.gif b/lib/web/tiny_mce/plugins/emotions/img/smiley-laughing.gif
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif b/lib/web/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/emotions/img/smiley-sealed.gif b/lib/web/tiny_mce/plugins/emotions/img/smiley-sealed.gif
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/emotions/img/smiley-smile.gif b/lib/web/tiny_mce/plugins/emotions/img/smiley-smile.gif
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/emotions/img/smiley-surprised.gif b/lib/web/tiny_mce/plugins/emotions/img/smiley-surprised.gif
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif b/lib/web/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/emotions/img/smiley-undecided.gif b/lib/web/tiny_mce/plugins/emotions/img/smiley-undecided.gif
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/emotions/img/smiley-wink.gif b/lib/web/tiny_mce/plugins/emotions/img/smiley-wink.gif
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/emotions/img/smiley-yell.gif b/lib/web/tiny_mce/plugins/emotions/img/smiley-yell.gif
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/emotions/js/emotions.js b/lib/web/tiny_mce/plugins/emotions/js/emotions.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/emotions/langs/en_dlg.js b/lib/web/tiny_mce/plugins/emotions/langs/en_dlg.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/example/dialog.htm b/lib/web/tiny_mce/plugins/example/dialog.htm
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/example/editor_plugin.js b/lib/web/tiny_mce/plugins/example/editor_plugin.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/example/editor_plugin_src.js b/lib/web/tiny_mce/plugins/example/editor_plugin_src.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/example/img/example.gif b/lib/web/tiny_mce/plugins/example/img/example.gif
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/example/js/dialog.js b/lib/web/tiny_mce/plugins/example/js/dialog.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/example/langs/en.js b/lib/web/tiny_mce/plugins/example/langs/en.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/example/langs/en_dlg.js b/lib/web/tiny_mce/plugins/example/langs/en_dlg.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/example_dependency/editor_plugin.js b/lib/web/tiny_mce/plugins/example_dependency/editor_plugin.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/example_dependency/editor_plugin_src.js b/lib/web/tiny_mce/plugins/example_dependency/editor_plugin_src.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/fullpage/css/fullpage.css b/lib/web/tiny_mce/plugins/fullpage/css/fullpage.css
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/fullpage/editor_plugin.js b/lib/web/tiny_mce/plugins/fullpage/editor_plugin.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/fullpage/editor_plugin_src.js b/lib/web/tiny_mce/plugins/fullpage/editor_plugin_src.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/fullpage/fullpage.htm b/lib/web/tiny_mce/plugins/fullpage/fullpage.htm
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/fullpage/js/fullpage.js b/lib/web/tiny_mce/plugins/fullpage/js/fullpage.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/fullpage/langs/en_dlg.js b/lib/web/tiny_mce/plugins/fullpage/langs/en_dlg.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/fullscreen/editor_plugin.js b/lib/web/tiny_mce/plugins/fullscreen/editor_plugin.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/fullscreen/editor_plugin_src.js b/lib/web/tiny_mce/plugins/fullscreen/editor_plugin_src.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/fullscreen/fullscreen.htm b/lib/web/tiny_mce/plugins/fullscreen/fullscreen.htm
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/iespell/editor_plugin.js b/lib/web/tiny_mce/plugins/iespell/editor_plugin.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/iespell/editor_plugin_src.js b/lib/web/tiny_mce/plugins/iespell/editor_plugin_src.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/inlinepopups/editor_plugin.js b/lib/web/tiny_mce/plugins/inlinepopups/editor_plugin.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/inlinepopups/editor_plugin_src.js b/lib/web/tiny_mce/plugins/inlinepopups/editor_plugin_src.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif b/lib/web/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/button.gif b/lib/web/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/button.gif
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif b/lib/web/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif b/lib/web/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif b/lib/web/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif b/lib/web/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif b/lib/web/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/inlinepopups/skins/clearlooks2/window.css b/lib/web/tiny_mce/plugins/inlinepopups/skins/clearlooks2/window.css
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/inlinepopups/template.htm b/lib/web/tiny_mce/plugins/inlinepopups/template.htm
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/insertdatetime/editor_plugin.js b/lib/web/tiny_mce/plugins/insertdatetime/editor_plugin.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/insertdatetime/editor_plugin_src.js b/lib/web/tiny_mce/plugins/insertdatetime/editor_plugin_src.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/layer/editor_plugin.js b/lib/web/tiny_mce/plugins/layer/editor_plugin.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/layer/editor_plugin_src.js b/lib/web/tiny_mce/plugins/layer/editor_plugin_src.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/legacyoutput/editor_plugin.js b/lib/web/tiny_mce/plugins/legacyoutput/editor_plugin.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/legacyoutput/editor_plugin_src.js b/lib/web/tiny_mce/plugins/legacyoutput/editor_plugin_src.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/lists/editor_plugin.js b/lib/web/tiny_mce/plugins/lists/editor_plugin.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/lists/editor_plugin_src.js b/lib/web/tiny_mce/plugins/lists/editor_plugin_src.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/media/css/media.css b/lib/web/tiny_mce/plugins/media/css/media.css
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/media/editor_plugin.js b/lib/web/tiny_mce/plugins/media/editor_plugin.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/media/editor_plugin_src.js b/lib/web/tiny_mce/plugins/media/editor_plugin_src.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/media/img/flash.gif b/lib/web/tiny_mce/plugins/media/img/flash.gif
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/media/img/quicktime.gif b/lib/web/tiny_mce/plugins/media/img/quicktime.gif
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/media/img/realmedia.gif b/lib/web/tiny_mce/plugins/media/img/realmedia.gif
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/media/img/shockwave.gif b/lib/web/tiny_mce/plugins/media/img/shockwave.gif
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/media/img/trans.gif b/lib/web/tiny_mce/plugins/media/img/trans.gif
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/media/img/windowsmedia.gif b/lib/web/tiny_mce/plugins/media/img/windowsmedia.gif
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/media/js/embed.js b/lib/web/tiny_mce/plugins/media/js/embed.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/media/js/media.js b/lib/web/tiny_mce/plugins/media/js/media.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/media/langs/en_dlg.js b/lib/web/tiny_mce/plugins/media/langs/en_dlg.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/media/media.htm b/lib/web/tiny_mce/plugins/media/media.htm
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/media/moxieplayer.swf b/lib/web/tiny_mce/plugins/media/moxieplayer.swf
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/nonbreaking/editor_plugin.js b/lib/web/tiny_mce/plugins/nonbreaking/editor_plugin.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/nonbreaking/editor_plugin_src.js b/lib/web/tiny_mce/plugins/nonbreaking/editor_plugin_src.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/noneditable/editor_plugin.js b/lib/web/tiny_mce/plugins/noneditable/editor_plugin.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/noneditable/editor_plugin_src.js b/lib/web/tiny_mce/plugins/noneditable/editor_plugin_src.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/pagebreak/css/content.css b/lib/web/tiny_mce/plugins/pagebreak/css/content.css
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/pagebreak/editor_plugin.js b/lib/web/tiny_mce/plugins/pagebreak/editor_plugin.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/pagebreak/editor_plugin_src.js b/lib/web/tiny_mce/plugins/pagebreak/editor_plugin_src.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/pagebreak/img/pagebreak.gif b/lib/web/tiny_mce/plugins/pagebreak/img/pagebreak.gif
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/pagebreak/img/trans.gif b/lib/web/tiny_mce/plugins/pagebreak/img/trans.gif
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/paste/editor_plugin.js b/lib/web/tiny_mce/plugins/paste/editor_plugin.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/paste/editor_plugin_src.js b/lib/web/tiny_mce/plugins/paste/editor_plugin_src.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/paste/js/pastetext.js b/lib/web/tiny_mce/plugins/paste/js/pastetext.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/paste/js/pasteword.js b/lib/web/tiny_mce/plugins/paste/js/pasteword.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/paste/langs/en_dlg.js b/lib/web/tiny_mce/plugins/paste/langs/en_dlg.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/paste/pastetext.htm b/lib/web/tiny_mce/plugins/paste/pastetext.htm
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/paste/pasteword.htm b/lib/web/tiny_mce/plugins/paste/pasteword.htm
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/preview/editor_plugin.js b/lib/web/tiny_mce/plugins/preview/editor_plugin.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/preview/editor_plugin_src.js b/lib/web/tiny_mce/plugins/preview/editor_plugin_src.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/preview/example.html b/lib/web/tiny_mce/plugins/preview/example.html
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/preview/jscripts/embed.js b/lib/web/tiny_mce/plugins/preview/jscripts/embed.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/preview/preview.html b/lib/web/tiny_mce/plugins/preview/preview.html
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/print/editor_plugin.js b/lib/web/tiny_mce/plugins/print/editor_plugin.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/print/editor_plugin_src.js b/lib/web/tiny_mce/plugins/print/editor_plugin_src.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/save/editor_plugin.js b/lib/web/tiny_mce/plugins/save/editor_plugin.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/save/editor_plugin_src.js b/lib/web/tiny_mce/plugins/save/editor_plugin_src.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/searchreplace/css/searchreplace.css b/lib/web/tiny_mce/plugins/searchreplace/css/searchreplace.css
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/searchreplace/editor_plugin.js b/lib/web/tiny_mce/plugins/searchreplace/editor_plugin.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/searchreplace/editor_plugin_src.js b/lib/web/tiny_mce/plugins/searchreplace/editor_plugin_src.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/searchreplace/js/searchreplace.js b/lib/web/tiny_mce/plugins/searchreplace/js/searchreplace.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/searchreplace/langs/en_dlg.js b/lib/web/tiny_mce/plugins/searchreplace/langs/en_dlg.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/searchreplace/searchreplace.htm b/lib/web/tiny_mce/plugins/searchreplace/searchreplace.htm
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/spellchecker/css/content.css b/lib/web/tiny_mce/plugins/spellchecker/css/content.css
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/spellchecker/editor_plugin.js b/lib/web/tiny_mce/plugins/spellchecker/editor_plugin.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/spellchecker/editor_plugin_src.js b/lib/web/tiny_mce/plugins/spellchecker/editor_plugin_src.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/spellchecker/img/wline.gif b/lib/web/tiny_mce/plugins/spellchecker/img/wline.gif
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/style/css/props.css b/lib/web/tiny_mce/plugins/style/css/props.css
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/style/editor_plugin.js b/lib/web/tiny_mce/plugins/style/editor_plugin.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/style/editor_plugin_src.js b/lib/web/tiny_mce/plugins/style/editor_plugin_src.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/style/js/props.js b/lib/web/tiny_mce/plugins/style/js/props.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/style/langs/en_dlg.js b/lib/web/tiny_mce/plugins/style/langs/en_dlg.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/style/props.htm b/lib/web/tiny_mce/plugins/style/props.htm
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/tabfocus/editor_plugin.js b/lib/web/tiny_mce/plugins/tabfocus/editor_plugin.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/tabfocus/editor_plugin_src.js b/lib/web/tiny_mce/plugins/tabfocus/editor_plugin_src.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/table/cell.htm b/lib/web/tiny_mce/plugins/table/cell.htm
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/table/css/cell.css b/lib/web/tiny_mce/plugins/table/css/cell.css
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/table/css/row.css b/lib/web/tiny_mce/plugins/table/css/row.css
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/table/css/table.css b/lib/web/tiny_mce/plugins/table/css/table.css
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/table/editor_plugin.js b/lib/web/tiny_mce/plugins/table/editor_plugin.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/table/editor_plugin_src.js b/lib/web/tiny_mce/plugins/table/editor_plugin_src.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/table/js/cell.js b/lib/web/tiny_mce/plugins/table/js/cell.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/table/js/merge_cells.js b/lib/web/tiny_mce/plugins/table/js/merge_cells.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/table/js/row.js b/lib/web/tiny_mce/plugins/table/js/row.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/table/js/table.js b/lib/web/tiny_mce/plugins/table/js/table.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/table/langs/en_dlg.js b/lib/web/tiny_mce/plugins/table/langs/en_dlg.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/table/merge_cells.htm b/lib/web/tiny_mce/plugins/table/merge_cells.htm
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/table/row.htm b/lib/web/tiny_mce/plugins/table/row.htm
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/table/table.htm b/lib/web/tiny_mce/plugins/table/table.htm
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/template/blank.htm b/lib/web/tiny_mce/plugins/template/blank.htm
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/template/css/template.css b/lib/web/tiny_mce/plugins/template/css/template.css
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/template/editor_plugin.js b/lib/web/tiny_mce/plugins/template/editor_plugin.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/template/editor_plugin_src.js b/lib/web/tiny_mce/plugins/template/editor_plugin_src.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/template/js/template.js b/lib/web/tiny_mce/plugins/template/js/template.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/template/langs/en_dlg.js b/lib/web/tiny_mce/plugins/template/langs/en_dlg.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/template/template.htm b/lib/web/tiny_mce/plugins/template/template.htm
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/visualchars/editor_plugin.js b/lib/web/tiny_mce/plugins/visualchars/editor_plugin.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/visualchars/editor_plugin_src.js b/lib/web/tiny_mce/plugins/visualchars/editor_plugin_src.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/wordcount/editor_plugin.js b/lib/web/tiny_mce/plugins/wordcount/editor_plugin.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/wordcount/editor_plugin_src.js b/lib/web/tiny_mce/plugins/wordcount/editor_plugin_src.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/xhtmlxtras/abbr.htm b/lib/web/tiny_mce/plugins/xhtmlxtras/abbr.htm
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/xhtmlxtras/acronym.htm b/lib/web/tiny_mce/plugins/xhtmlxtras/acronym.htm
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/xhtmlxtras/attributes.htm b/lib/web/tiny_mce/plugins/xhtmlxtras/attributes.htm
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/xhtmlxtras/cite.htm b/lib/web/tiny_mce/plugins/xhtmlxtras/cite.htm
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/xhtmlxtras/css/attributes.css b/lib/web/tiny_mce/plugins/xhtmlxtras/css/attributes.css
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/xhtmlxtras/css/popup.css b/lib/web/tiny_mce/plugins/xhtmlxtras/css/popup.css
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/xhtmlxtras/del.htm b/lib/web/tiny_mce/plugins/xhtmlxtras/del.htm
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/xhtmlxtras/editor_plugin.js b/lib/web/tiny_mce/plugins/xhtmlxtras/editor_plugin.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/xhtmlxtras/editor_plugin_src.js b/lib/web/tiny_mce/plugins/xhtmlxtras/editor_plugin_src.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/xhtmlxtras/ins.htm b/lib/web/tiny_mce/plugins/xhtmlxtras/ins.htm
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/xhtmlxtras/js/abbr.js b/lib/web/tiny_mce/plugins/xhtmlxtras/js/abbr.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/xhtmlxtras/js/acronym.js b/lib/web/tiny_mce/plugins/xhtmlxtras/js/acronym.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/xhtmlxtras/js/attributes.js b/lib/web/tiny_mce/plugins/xhtmlxtras/js/attributes.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/xhtmlxtras/js/cite.js b/lib/web/tiny_mce/plugins/xhtmlxtras/js/cite.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/xhtmlxtras/js/del.js b/lib/web/tiny_mce/plugins/xhtmlxtras/js/del.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/xhtmlxtras/js/element_common.js b/lib/web/tiny_mce/plugins/xhtmlxtras/js/element_common.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/xhtmlxtras/js/ins.js b/lib/web/tiny_mce/plugins/xhtmlxtras/js/ins.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/plugins/xhtmlxtras/langs/en_dlg.js b/lib/web/tiny_mce/plugins/xhtmlxtras/langs/en_dlg.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/about.htm b/lib/web/tiny_mce/themes/advanced/about.htm
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/anchor.htm b/lib/web/tiny_mce/themes/advanced/anchor.htm
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/charmap.htm b/lib/web/tiny_mce/themes/advanced/charmap.htm
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/color_picker.htm b/lib/web/tiny_mce/themes/advanced/color_picker.htm
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/editor_template.js b/lib/web/tiny_mce/themes/advanced/editor_template.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/editor_template_src.js b/lib/web/tiny_mce/themes/advanced/editor_template_src.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/image.htm b/lib/web/tiny_mce/themes/advanced/image.htm
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/img/colorpicker.jpg b/lib/web/tiny_mce/themes/advanced/img/colorpicker.jpg
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/img/flash.gif b/lib/web/tiny_mce/themes/advanced/img/flash.gif
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/img/icons.png b/lib/web/tiny_mce/themes/advanced/img/icons.png
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/img/iframe.gif b/lib/web/tiny_mce/themes/advanced/img/iframe.gif
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/img/pagebreak.gif b/lib/web/tiny_mce/themes/advanced/img/pagebreak.gif
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/img/quicktime.gif b/lib/web/tiny_mce/themes/advanced/img/quicktime.gif
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/img/realmedia.gif b/lib/web/tiny_mce/themes/advanced/img/realmedia.gif
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/img/shockwave.gif b/lib/web/tiny_mce/themes/advanced/img/shockwave.gif
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/img/trans.gif b/lib/web/tiny_mce/themes/advanced/img/trans.gif
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/img/video.gif b/lib/web/tiny_mce/themes/advanced/img/video.gif
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/img/windowsmedia.gif b/lib/web/tiny_mce/themes/advanced/img/windowsmedia.gif
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/js/about.js b/lib/web/tiny_mce/themes/advanced/js/about.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/js/anchor.js b/lib/web/tiny_mce/themes/advanced/js/anchor.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/js/charmap.js b/lib/web/tiny_mce/themes/advanced/js/charmap.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/js/color_picker.js b/lib/web/tiny_mce/themes/advanced/js/color_picker.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/js/image.js b/lib/web/tiny_mce/themes/advanced/js/image.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/js/link.js b/lib/web/tiny_mce/themes/advanced/js/link.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/js/source_editor.js b/lib/web/tiny_mce/themes/advanced/js/source_editor.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/langs/en.js b/lib/web/tiny_mce/themes/advanced/langs/en.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/langs/en_dlg.js b/lib/web/tiny_mce/themes/advanced/langs/en_dlg.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/link.htm b/lib/web/tiny_mce/themes/advanced/link.htm
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/shortcuts.htm b/lib/web/tiny_mce/themes/advanced/shortcuts.htm
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/skins/default/content.css b/lib/web/tiny_mce/themes/advanced/skins/default/content.css
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/skins/default/dialog.css b/lib/web/tiny_mce/themes/advanced/skins/default/dialog.css
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/skins/default/img/buttons.png b/lib/web/tiny_mce/themes/advanced/skins/default/img/buttons.png
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/skins/default/img/items.gif b/lib/web/tiny_mce/themes/advanced/skins/default/img/items.gif
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif b/lib/web/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/skins/default/img/menu_check.gif b/lib/web/tiny_mce/themes/advanced/skins/default/img/menu_check.gif
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/skins/default/img/progress.gif b/lib/web/tiny_mce/themes/advanced/skins/default/img/progress.gif
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/skins/default/img/tabs.gif b/lib/web/tiny_mce/themes/advanced/skins/default/img/tabs.gif
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/skins/default/ui.css b/lib/web/tiny_mce/themes/advanced/skins/default/ui.css
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/skins/highcontrast/content.css b/lib/web/tiny_mce/themes/advanced/skins/highcontrast/content.css
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/skins/highcontrast/dialog.css b/lib/web/tiny_mce/themes/advanced/skins/highcontrast/dialog.css
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/skins/highcontrast/ui.css b/lib/web/tiny_mce/themes/advanced/skins/highcontrast/ui.css
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/skins/o2k7/content.css b/lib/web/tiny_mce/themes/advanced/skins/o2k7/content.css
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/skins/o2k7/dialog.css b/lib/web/tiny_mce/themes/advanced/skins/o2k7/dialog.css
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png b/lib/web/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png b/lib/web/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_silver.png b/lib/web/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_silver.png
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/skins/o2k7/ui.css b/lib/web/tiny_mce/themes/advanced/skins/o2k7/ui.css
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/skins/o2k7/ui_black.css b/lib/web/tiny_mce/themes/advanced/skins/o2k7/ui_black.css
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/skins/o2k7/ui_silver.css b/lib/web/tiny_mce/themes/advanced/skins/o2k7/ui_silver.css
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/advanced/source_editor.htm b/lib/web/tiny_mce/themes/advanced/source_editor.htm
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/simple/editor_template.js b/lib/web/tiny_mce/themes/simple/editor_template.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/simple/editor_template_src.js b/lib/web/tiny_mce/themes/simple/editor_template_src.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/simple/img/icons.png b/lib/web/tiny_mce/themes/simple/img/icons.png
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/simple/langs/en.js b/lib/web/tiny_mce/themes/simple/langs/en.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/simple/skins/default/content.css b/lib/web/tiny_mce/themes/simple/skins/default/content.css
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/simple/skins/default/ui.css b/lib/web/tiny_mce/themes/simple/skins/default/ui.css
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/simple/skins/o2k7/content.css b/lib/web/tiny_mce/themes/simple/skins/o2k7/content.css
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png b/lib/web/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/themes/simple/skins/o2k7/ui.css b/lib/web/tiny_mce/themes/simple/skins/o2k7/ui.css
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/tiny_mce.js b/lib/web/tiny_mce/tiny_mce.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/tiny_mce_dev.js b/lib/web/tiny_mce/tiny_mce_dev.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/tiny_mce_jquery.js b/lib/web/tiny_mce/tiny_mce_jquery.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/tiny_mce_jquery_src.js b/lib/web/tiny_mce/tiny_mce_jquery_src.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/tiny_mce_popup.js b/lib/web/tiny_mce/tiny_mce_popup.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/tiny_mce_prototype.js b/lib/web/tiny_mce/tiny_mce_prototype.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/tiny_mce_prototype_src.js b/lib/web/tiny_mce/tiny_mce_prototype_src.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/tiny_mce_src.js b/lib/web/tiny_mce/tiny_mce_src.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/utils/editable_selects.js b/lib/web/tiny_mce/utils/editable_selects.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/utils/form_utils.js b/lib/web/tiny_mce/utils/form_utils.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/utils/mctabs.js b/lib/web/tiny_mce/utils/mctabs.js
old mode 100644
new mode 100755
diff --git a/lib/web/tiny_mce/utils/validate.js b/lib/web/tiny_mce/utils/validate.js
old mode 100644
new mode 100755
diff --git a/lib/web/underscore.js b/lib/web/underscore.js
old mode 100644
new mode 100755
diff --git a/lib/web/varien/form.js b/lib/web/varien/form.js
old mode 100644
new mode 100755
diff --git a/lib/web/varien/js.js b/lib/web/varien/js.js
old mode 100644
new mode 100755
diff --git a/nginx.conf.sample b/nginx.conf.sample
old mode 100644
new mode 100755
diff --git a/package.json.sample b/package.json.sample
old mode 100644
new mode 100755
diff --git a/php.ini.sample b/php.ini.sample
old mode 100644
new mode 100755
diff --git a/phpserver/.htaccess b/phpserver/.htaccess
old mode 100644
new mode 100755
diff --git a/phpserver/README.md b/phpserver/README.md
old mode 100644
new mode 100755
diff --git a/phpserver/router.php b/phpserver/router.php
old mode 100644
new mode 100755
diff --git a/pub/.htaccess b/pub/.htaccess
old mode 100644
new mode 100755
diff --git a/pub/.user.ini b/pub/.user.ini
old mode 100644
new mode 100755
diff --git a/pub/cron.php b/pub/cron.php
old mode 100644
new mode 100755
diff --git a/pub/errors/.htaccess b/pub/errors/.htaccess
old mode 100644
new mode 100755
diff --git a/pub/errors/404.php b/pub/errors/404.php
old mode 100644
new mode 100755
diff --git a/pub/errors/503.php b/pub/errors/503.php
old mode 100644
new mode 100755
diff --git a/pub/errors/default/404.phtml b/pub/errors/default/404.phtml
old mode 100644
new mode 100755
diff --git a/pub/errors/default/503.phtml b/pub/errors/default/503.phtml
old mode 100644
new mode 100755
diff --git a/pub/errors/default/css/styles.css b/pub/errors/default/css/styles.css
old mode 100644
new mode 100755
diff --git a/pub/errors/default/images/favicon.ico b/pub/errors/default/images/favicon.ico
old mode 100644
new mode 100755
diff --git a/pub/errors/default/images/i_msg-error.gif b/pub/errors/default/images/i_msg-error.gif
old mode 100644
new mode 100755
diff --git a/pub/errors/default/images/i_msg-note.gif b/pub/errors/default/images/i_msg-note.gif
old mode 100644
new mode 100755
diff --git a/pub/errors/default/images/i_msg-success.gif b/pub/errors/default/images/i_msg-success.gif
old mode 100644
new mode 100755
diff --git a/pub/errors/default/images/logo.gif b/pub/errors/default/images/logo.gif
old mode 100644
new mode 100755
diff --git a/pub/errors/default/nocache.phtml b/pub/errors/default/nocache.phtml
old mode 100644
new mode 100755
diff --git a/pub/errors/default/page.phtml b/pub/errors/default/page.phtml
old mode 100644
new mode 100755
diff --git a/pub/errors/default/report.phtml b/pub/errors/default/report.phtml
old mode 100644
new mode 100755
diff --git a/pub/errors/design.xml b/pub/errors/design.xml
old mode 100644
new mode 100755
diff --git a/pub/errors/local.xml.sample b/pub/errors/local.xml.sample
old mode 100644
new mode 100755
diff --git a/pub/errors/noCache.php b/pub/errors/noCache.php
old mode 100644
new mode 100755
diff --git a/pub/errors/processor.php b/pub/errors/processor.php
old mode 100644
new mode 100755
diff --git a/pub/errors/processorFactory.php b/pub/errors/processorFactory.php
old mode 100644
new mode 100755
diff --git a/pub/errors/report.php b/pub/errors/report.php
old mode 100644
new mode 100755
diff --git a/pub/get.php b/pub/get.php
old mode 100644
new mode 100755
diff --git a/pub/health_check.php b/pub/health_check.php
old mode 100644
new mode 100755
diff --git a/pub/index.php b/pub/index.php
old mode 100644
new mode 100755
diff --git a/pub/media/.htaccess b/pub/media/.htaccess
old mode 100644
new mode 100755
diff --git a/pub/media/customer/.htaccess b/pub/media/customer/.htaccess
old mode 100644
new mode 100755
diff --git a/pub/media/downloadable/.htaccess b/pub/media/downloadable/.htaccess
old mode 100644
new mode 100755
diff --git a/pub/media/import/.htaccess b/pub/media/import/.htaccess
old mode 100644
new mode 100755
diff --git a/pub/media/theme_customization/.htaccess b/pub/media/theme_customization/.htaccess
old mode 100644
new mode 100755
diff --git a/pub/opt/magento/var/resource_config.json b/pub/opt/magento/var/resource_config.json
old mode 100644
new mode 100755
diff --git a/pub/static.php b/pub/static.php
old mode 100644
new mode 100755
diff --git a/pub/static/.htaccess b/pub/static/.htaccess
old mode 100644
new mode 100755
diff --git a/setup/.htaccess b/setup/.htaccess
old mode 100644
new mode 100755
diff --git a/setup/config/.htaccess b/setup/config/.htaccess
old mode 100644
new mode 100755
diff --git a/setup/config/application.config.php b/setup/config/application.config.php
old mode 100644
new mode 100755
diff --git a/setup/config/autoload/global.php b/setup/config/autoload/global.php
old mode 100644
new mode 100755
diff --git a/setup/config/di.config.php b/setup/config/di.config.php
old mode 100644
new mode 100755
diff --git a/setup/config/languages.config.php b/setup/config/languages.config.php
old mode 100644
new mode 100755
diff --git a/setup/config/marketplace.config.php b/setup/config/marketplace.config.php
old mode 100644
new mode 100755
diff --git a/setup/config/module.config.php b/setup/config/module.config.php
old mode 100644
new mode 100755
diff --git a/setup/config/router.config.php b/setup/config/router.config.php
old mode 100644
new mode 100755
diff --git a/setup/config/states.disable.config.php b/setup/config/states.disable.config.php
old mode 100644
new mode 100755
diff --git a/setup/config/states.enable.config.php b/setup/config/states.enable.config.php
old mode 100644
new mode 100755
diff --git a/setup/config/states.extensionManager.config.php b/setup/config/states.extensionManager.config.php
old mode 100644
new mode 100755
diff --git a/setup/config/states.home.config.php b/setup/config/states.home.config.php
old mode 100644
new mode 100755
diff --git a/setup/config/states.install.config.php b/setup/config/states.install.config.php
old mode 100644
new mode 100755
diff --git a/setup/config/states.uninstall.config.php b/setup/config/states.uninstall.config.php
old mode 100644
new mode 100755
diff --git a/setup/config/states.update.config.php b/setup/config/states.update.config.php
old mode 100644
new mode 100755
diff --git a/setup/config/states.upgrade.config.php b/setup/config/states.upgrade.config.php
old mode 100644
new mode 100755
diff --git a/setup/index.php b/setup/index.php
old mode 100644
new mode 100755
diff --git a/setup/performance-toolkit/.htaccess b/setup/performance-toolkit/.htaccess
old mode 100644
new mode 100755
diff --git a/setup/performance-toolkit/README.md b/setup/performance-toolkit/README.md
old mode 100644
new mode 100755
diff --git a/setup/performance-toolkit/benchmark.jmx b/setup/performance-toolkit/benchmark.jmx
old mode 100644
new mode 100755
diff --git a/setup/performance-toolkit/benchmark_2015.jmx b/setup/performance-toolkit/benchmark_2015.jmx
old mode 100644
new mode 100755
diff --git a/setup/performance-toolkit/config/attributeSets.xml b/setup/performance-toolkit/config/attributeSets.xml
old mode 100644
new mode 100755
diff --git a/setup/performance-toolkit/config/customerConfig.xml b/setup/performance-toolkit/config/customerConfig.xml
old mode 100644
new mode 100755
diff --git a/setup/performance-toolkit/config/description.xml b/setup/performance-toolkit/config/description.xml
old mode 100644
new mode 100755
diff --git a/setup/performance-toolkit/config/di.xml b/setup/performance-toolkit/config/di.xml
old mode 100644
new mode 100755
diff --git a/setup/performance-toolkit/config/searchConfig.xml b/setup/performance-toolkit/config/searchConfig.xml
old mode 100644
new mode 100755
diff --git a/setup/performance-toolkit/config/searchTerms.xml b/setup/performance-toolkit/config/searchTerms.xml
old mode 100644
new mode 100755
diff --git a/setup/performance-toolkit/config/searchTermsLarge.xml b/setup/performance-toolkit/config/searchTermsLarge.xml
old mode 100644
new mode 100755
diff --git a/setup/performance-toolkit/config/shortDescription.xml b/setup/performance-toolkit/config/shortDescription.xml
old mode 100644
new mode 100755
diff --git a/setup/performance-toolkit/files/downloadable_original.txt b/setup/performance-toolkit/files/downloadable_original.txt
old mode 100644
new mode 100755
diff --git a/setup/performance-toolkit/files/downloadable_sample.txt b/setup/performance-toolkit/files/downloadable_sample.txt
old mode 100644
new mode 100755
diff --git a/setup/performance-toolkit/files/search_terms.csv b/setup/performance-toolkit/files/search_terms.csv
old mode 100644
new mode 100755
diff --git a/setup/performance-toolkit/profiles/ce/extra_large.xml b/setup/performance-toolkit/profiles/ce/extra_large.xml
old mode 100644
new mode 100755
diff --git a/setup/performance-toolkit/profiles/ce/large.xml b/setup/performance-toolkit/profiles/ce/large.xml
old mode 100644
new mode 100755
diff --git a/setup/performance-toolkit/profiles/ce/medium.xml b/setup/performance-toolkit/profiles/ce/medium.xml
old mode 100644
new mode 100755
diff --git a/setup/performance-toolkit/profiles/ce/medium_msite.xml b/setup/performance-toolkit/profiles/ce/medium_msite.xml
old mode 100644
new mode 100755
diff --git a/setup/performance-toolkit/profiles/ce/small.xml b/setup/performance-toolkit/profiles/ce/small.xml
old mode 100644
new mode 100755
diff --git a/setup/pub/.htaccess b/setup/pub/.htaccess
old mode 100644
new mode 100755
diff --git a/setup/pub/angular-clickout/angular-clickout.min.js b/setup/pub/angular-clickout/angular-clickout.min.js
old mode 100644
new mode 100755
diff --git a/setup/pub/angular-ng-dialog/angular-ng-dialog.min.js b/setup/pub/angular-ng-dialog/angular-ng-dialog.min.js
old mode 100644
new mode 100755
diff --git a/setup/pub/angular-ng-storage/angular-ng-storage.min.js b/setup/pub/angular-ng-storage/angular-ng-storage.min.js
old mode 100644
new mode 100755
diff --git a/setup/pub/angular-sanitize/angular-sanitize.js b/setup/pub/angular-sanitize/angular-sanitize.js
old mode 100644
new mode 100755
diff --git a/setup/pub/angular-sanitize/angular-sanitize.min.js b/setup/pub/angular-sanitize/angular-sanitize.min.js
old mode 100644
new mode 100755
diff --git a/setup/pub/angular-sanitize/angular-sanitize.min.js.map b/setup/pub/angular-sanitize/angular-sanitize.min.js.map
old mode 100644
new mode 100755
diff --git a/setup/pub/angular-ui-bootstrap/angular-ui-bootstrap.min.js b/setup/pub/angular-ui-bootstrap/angular-ui-bootstrap.min.js
old mode 100644
new mode 100755
diff --git a/setup/pub/angular-ui-router/angular-ui-router.min.js b/setup/pub/angular-ui-router/angular-ui-router.min.js
old mode 100644
new mode 100755
diff --git a/setup/pub/angular/angular.js b/setup/pub/angular/angular.js
old mode 100644
new mode 100755
diff --git a/setup/pub/angular/angular.min.js b/setup/pub/angular/angular.min.js
old mode 100644
new mode 100755
diff --git a/setup/pub/angular/angular.min.js.map b/setup/pub/angular/angular.min.js.map
old mode 100644
new mode 100755
diff --git a/setup/pub/bootstrap/js/bootstrap.js b/setup/pub/bootstrap/js/bootstrap.js
old mode 100644
new mode 100755
diff --git a/setup/pub/bootstrap/js/bootstrap.min.js b/setup/pub/bootstrap/js/bootstrap.min.js
old mode 100644
new mode 100755
diff --git a/setup/pub/fonts/icons/icons.eot b/setup/pub/fonts/icons/icons.eot
old mode 100644
new mode 100755
diff --git a/setup/pub/fonts/icons/icons.svg b/setup/pub/fonts/icons/icons.svg
old mode 100644
new mode 100755
diff --git a/setup/pub/fonts/icons/icons.ttf b/setup/pub/fonts/icons/icons.ttf
old mode 100644
new mode 100755
diff --git a/setup/pub/fonts/icons/icons.woff b/setup/pub/fonts/icons/icons.woff
old mode 100644
new mode 100755
diff --git a/setup/pub/fonts/icons/icons.woff2 b/setup/pub/fonts/icons/icons.woff2
old mode 100644
new mode 100755
diff --git a/setup/pub/fonts/icons/selection.json b/setup/pub/fonts/icons/selection.json
old mode 100644
new mode 100755
diff --git a/setup/pub/fonts/opensans/bold/opensans-700.eot b/setup/pub/fonts/opensans/bold/opensans-700.eot
old mode 100644
new mode 100755
diff --git a/setup/pub/fonts/opensans/bold/opensans-700.svg b/setup/pub/fonts/opensans/bold/opensans-700.svg
old mode 100644
new mode 100755
diff --git a/setup/pub/fonts/opensans/bold/opensans-700.ttf b/setup/pub/fonts/opensans/bold/opensans-700.ttf
old mode 100644
new mode 100755
diff --git a/setup/pub/fonts/opensans/bold/opensans-700.woff b/setup/pub/fonts/opensans/bold/opensans-700.woff
old mode 100644
new mode 100755
diff --git a/setup/pub/fonts/opensans/bold/opensans-700.woff2 b/setup/pub/fonts/opensans/bold/opensans-700.woff2
old mode 100644
new mode 100755
diff --git a/setup/pub/fonts/opensans/light/opensans-300.eot b/setup/pub/fonts/opensans/light/opensans-300.eot
old mode 100644
new mode 100755
diff --git a/setup/pub/fonts/opensans/light/opensans-300.svg b/setup/pub/fonts/opensans/light/opensans-300.svg
old mode 100644
new mode 100755
diff --git a/setup/pub/fonts/opensans/light/opensans-300.ttf b/setup/pub/fonts/opensans/light/opensans-300.ttf
old mode 100644
new mode 100755
diff --git a/setup/pub/fonts/opensans/light/opensans-300.woff b/setup/pub/fonts/opensans/light/opensans-300.woff
old mode 100644
new mode 100755
diff --git a/setup/pub/fonts/opensans/light/opensans-300.woff2 b/setup/pub/fonts/opensans/light/opensans-300.woff2
old mode 100644
new mode 100755
diff --git a/setup/pub/fonts/opensans/regular/opensans-400.eot b/setup/pub/fonts/opensans/regular/opensans-400.eot
old mode 100644
new mode 100755
diff --git a/setup/pub/fonts/opensans/regular/opensans-400.svg b/setup/pub/fonts/opensans/regular/opensans-400.svg
old mode 100644
new mode 100755
diff --git a/setup/pub/fonts/opensans/regular/opensans-400.ttf b/setup/pub/fonts/opensans/regular/opensans-400.ttf
old mode 100644
new mode 100755
diff --git a/setup/pub/fonts/opensans/regular/opensans-400.woff b/setup/pub/fonts/opensans/regular/opensans-400.woff
old mode 100644
new mode 100755
diff --git a/setup/pub/fonts/opensans/regular/opensans-400.woff2 b/setup/pub/fonts/opensans/regular/opensans-400.woff2
old mode 100644
new mode 100755
diff --git a/setup/pub/fonts/opensans/semibold/opensans-600.eot b/setup/pub/fonts/opensans/semibold/opensans-600.eot
old mode 100644
new mode 100755
diff --git a/setup/pub/fonts/opensans/semibold/opensans-600.svg b/setup/pub/fonts/opensans/semibold/opensans-600.svg
old mode 100644
new mode 100755
diff --git a/setup/pub/fonts/opensans/semibold/opensans-600.ttf b/setup/pub/fonts/opensans/semibold/opensans-600.ttf
old mode 100644
new mode 100755
diff --git a/setup/pub/fonts/opensans/semibold/opensans-600.woff b/setup/pub/fonts/opensans/semibold/opensans-600.woff
old mode 100644
new mode 100755
diff --git a/setup/pub/fonts/opensans/semibold/opensans-600.woff2 b/setup/pub/fonts/opensans/semibold/opensans-600.woff2
old mode 100644
new mode 100755
diff --git a/setup/pub/images/ajax-loader.gif b/setup/pub/images/ajax-loader.gif
old mode 100644
new mode 100755
diff --git a/setup/pub/images/arrows-bg.svg b/setup/pub/images/arrows-bg.svg
old mode 100644
new mode 100755
diff --git a/setup/pub/images/favicon/favicon-16x16.png b/setup/pub/images/favicon/favicon-16x16.png
old mode 100644
new mode 100755
diff --git a/setup/pub/images/favicon/favicon-32x32.png b/setup/pub/images/favicon/favicon-32x32.png
old mode 100644
new mode 100755
diff --git a/setup/pub/images/favicon/favicon-96x96.png b/setup/pub/images/favicon/favicon-96x96.png
old mode 100644
new mode 100755
diff --git a/setup/pub/images/favicon/favicon.ico b/setup/pub/images/favicon/favicon.ico
old mode 100644
new mode 100755
diff --git a/setup/pub/images/loader-1.gif b/setup/pub/images/loader-1.gif
old mode 100644
new mode 100755
diff --git a/setup/pub/images/loader-2.gif b/setup/pub/images/loader-2.gif
old mode 100644
new mode 100755
diff --git a/setup/pub/images/logo.svg b/setup/pub/images/logo.svg
old mode 100644
new mode 100755
diff --git a/setup/pub/images/magento-icon.svg b/setup/pub/images/magento-icon.svg
old mode 100644
new mode 100755
diff --git a/setup/pub/images/magento-logo.svg b/setup/pub/images/magento-logo.svg
old mode 100644
new mode 100755
diff --git a/setup/pub/magento/setup/add-database.js b/setup/pub/magento/setup/add-database.js
old mode 100644
new mode 100755
diff --git a/setup/pub/magento/setup/app.js b/setup/pub/magento/setup/app.js
old mode 100644
new mode 100755
diff --git a/setup/pub/magento/setup/auth-dialog.js b/setup/pub/magento/setup/auth-dialog.js
old mode 100644
new mode 100755
diff --git a/setup/pub/magento/setup/complete-backup.js b/setup/pub/magento/setup/complete-backup.js
old mode 100644
new mode 100755
diff --git a/setup/pub/magento/setup/create-admin-account.js b/setup/pub/magento/setup/create-admin-account.js
old mode 100644
new mode 100755
diff --git a/setup/pub/magento/setup/create-backup.js b/setup/pub/magento/setup/create-backup.js
old mode 100644
new mode 100755
diff --git a/setup/pub/magento/setup/customize-your-store.js b/setup/pub/magento/setup/customize-your-store.js
old mode 100644
new mode 100755
diff --git a/setup/pub/magento/setup/data-option.js b/setup/pub/magento/setup/data-option.js
old mode 100644
new mode 100755
diff --git a/setup/pub/magento/setup/extension-grid.js b/setup/pub/magento/setup/extension-grid.js
old mode 100644
new mode 100755
diff --git a/setup/pub/magento/setup/home.js b/setup/pub/magento/setup/home.js
old mode 100644
new mode 100755
diff --git a/setup/pub/magento/setup/install-extension-grid.js b/setup/pub/magento/setup/install-extension-grid.js
old mode 100644
new mode 100755
diff --git a/setup/pub/magento/setup/install.js b/setup/pub/magento/setup/install.js
old mode 100644
new mode 100755
diff --git a/setup/pub/magento/setup/landing.js b/setup/pub/magento/setup/landing.js
old mode 100644
new mode 100755
diff --git a/setup/pub/magento/setup/main.js b/setup/pub/magento/setup/main.js
old mode 100644
new mode 100755
diff --git a/setup/pub/magento/setup/marketplace-credentials.js b/setup/pub/magento/setup/marketplace-credentials.js
old mode 100644
new mode 100755
diff --git a/setup/pub/magento/setup/module-grid.js b/setup/pub/magento/setup/module-grid.js
old mode 100644
new mode 100755
diff --git a/setup/pub/magento/setup/readiness-check.js b/setup/pub/magento/setup/readiness-check.js
old mode 100644
new mode 100755
diff --git a/setup/pub/magento/setup/remove-dialog.js b/setup/pub/magento/setup/remove-dialog.js
old mode 100644
new mode 100755
diff --git a/setup/pub/magento/setup/select-version.js b/setup/pub/magento/setup/select-version.js
old mode 100644
new mode 100755
diff --git a/setup/pub/magento/setup/start-updater.js b/setup/pub/magento/setup/start-updater.js
old mode 100644
new mode 100755
diff --git a/setup/pub/magento/setup/success.js b/setup/pub/magento/setup/success.js
old mode 100644
new mode 100755
diff --git a/setup/pub/magento/setup/system-config.js b/setup/pub/magento/setup/system-config.js
old mode 100644
new mode 100755
diff --git a/setup/pub/magento/setup/update-extension-grid.js b/setup/pub/magento/setup/update-extension-grid.js
old mode 100644
new mode 100755
diff --git a/setup/pub/magento/setup/updater-success.js b/setup/pub/magento/setup/updater-success.js
old mode 100644
new mode 100755
diff --git a/setup/pub/magento/setup/view/pagination.html b/setup/pub/magento/setup/view/pagination.html
old mode 100644
new mode 100755
diff --git a/setup/pub/magento/setup/web-configuration.js b/setup/pub/magento/setup/web-configuration.js
old mode 100644
new mode 100755
diff --git a/setup/pub/styles/setup.css b/setup/pub/styles/setup.css
old mode 100644
new mode 100755
diff --git a/setup/src/.htaccess b/setup/src/.htaccess
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Application.php b/setup/src/Magento/Setup/Application.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Console/Command/AbstractDependenciesCommand.php b/setup/src/Magento/Setup/Console/Command/AbstractDependenciesCommand.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Console/Command/AbstractMaintenanceCommand.php b/setup/src/Magento/Setup/Console/Command/AbstractMaintenanceCommand.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Console/Command/AbstractModuleCommand.php b/setup/src/Magento/Setup/Console/Command/AbstractModuleCommand.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Console/Command/AbstractModuleManageCommand.php b/setup/src/Magento/Setup/Console/Command/AbstractModuleManageCommand.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Console/Command/AbstractSetupCommand.php b/setup/src/Magento/Setup/Console/Command/AbstractSetupCommand.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Console/Command/AdminUserCreateCommand.php b/setup/src/Magento/Setup/Console/Command/AdminUserCreateCommand.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Console/Command/BackupCommand.php b/setup/src/Magento/Setup/Console/Command/BackupCommand.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Console/Command/ConfigSetCommand.php b/setup/src/Magento/Setup/Console/Command/ConfigSetCommand.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Console/Command/CronRunCommand.php b/setup/src/Magento/Setup/Console/Command/CronRunCommand.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Console/Command/DbDataUpgradeCommand.php b/setup/src/Magento/Setup/Console/Command/DbDataUpgradeCommand.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Console/Command/DbSchemaUpgradeCommand.php b/setup/src/Magento/Setup/Console/Command/DbSchemaUpgradeCommand.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Console/Command/DbStatusCommand.php b/setup/src/Magento/Setup/Console/Command/DbStatusCommand.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Console/Command/DependenciesShowFrameworkCommand.php b/setup/src/Magento/Setup/Console/Command/DependenciesShowFrameworkCommand.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Console/Command/DependenciesShowModulesCircularCommand.php b/setup/src/Magento/Setup/Console/Command/DependenciesShowModulesCircularCommand.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Console/Command/DependenciesShowModulesCommand.php b/setup/src/Magento/Setup/Console/Command/DependenciesShowModulesCommand.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Console/Command/DeployStaticContentCommand.php b/setup/src/Magento/Setup/Console/Command/DeployStaticContentCommand.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Console/Command/DiCompileCommand.php b/setup/src/Magento/Setup/Console/Command/DiCompileCommand.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Console/Command/GenerateFixturesCommand.php b/setup/src/Magento/Setup/Console/Command/GenerateFixturesCommand.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Console/Command/I18nCollectPhrasesCommand.php b/setup/src/Magento/Setup/Console/Command/I18nCollectPhrasesCommand.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Console/Command/I18nPackCommand.php b/setup/src/Magento/Setup/Console/Command/I18nPackCommand.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Console/Command/InfoAdminUriCommand.php b/setup/src/Magento/Setup/Console/Command/InfoAdminUriCommand.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Console/Command/InfoBackupsListCommand.php b/setup/src/Magento/Setup/Console/Command/InfoBackupsListCommand.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Console/Command/InfoCurrencyListCommand.php b/setup/src/Magento/Setup/Console/Command/InfoCurrencyListCommand.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Console/Command/InfoLanguageListCommand.php b/setup/src/Magento/Setup/Console/Command/InfoLanguageListCommand.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Console/Command/InfoTimezoneListCommand.php b/setup/src/Magento/Setup/Console/Command/InfoTimezoneListCommand.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Console/Command/InstallCommand.php b/setup/src/Magento/Setup/Console/Command/InstallCommand.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Console/Command/InstallStoreConfigurationCommand.php b/setup/src/Magento/Setup/Console/Command/InstallStoreConfigurationCommand.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Console/Command/MaintenanceAllowIpsCommand.php b/setup/src/Magento/Setup/Console/Command/MaintenanceAllowIpsCommand.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Console/Command/MaintenanceDisableCommand.php b/setup/src/Magento/Setup/Console/Command/MaintenanceDisableCommand.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Console/Command/MaintenanceEnableCommand.php b/setup/src/Magento/Setup/Console/Command/MaintenanceEnableCommand.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Console/Command/MaintenanceStatusCommand.php b/setup/src/Magento/Setup/Console/Command/MaintenanceStatusCommand.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Console/Command/ModuleDisableCommand.php b/setup/src/Magento/Setup/Console/Command/ModuleDisableCommand.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Console/Command/ModuleEnableCommand.php b/setup/src/Magento/Setup/Console/Command/ModuleEnableCommand.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Console/Command/ModuleStatusCommand.php b/setup/src/Magento/Setup/Console/Command/ModuleStatusCommand.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Console/Command/ModuleUninstallCommand.php b/setup/src/Magento/Setup/Console/Command/ModuleUninstallCommand.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Console/Command/RollbackCommand.php b/setup/src/Magento/Setup/Console/Command/RollbackCommand.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Console/Command/UninstallCommand.php b/setup/src/Magento/Setup/Console/Command/UninstallCommand.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Console/Command/UpgradeCommand.php b/setup/src/Magento/Setup/Console/Command/UpgradeCommand.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Console/CommandList.php b/setup/src/Magento/Setup/Console/CommandList.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Console/CompilerPreparation.php b/setup/src/Magento/Setup/Console/CompilerPreparation.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Controller/AddDatabase.php b/setup/src/Magento/Setup/Controller/AddDatabase.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Controller/BackupActionItems.php b/setup/src/Magento/Setup/Controller/BackupActionItems.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Controller/CompleteBackup.php b/setup/src/Magento/Setup/Controller/CompleteBackup.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Controller/CreateAdminAccount.php b/setup/src/Magento/Setup/Controller/CreateAdminAccount.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Controller/CreateBackup.php b/setup/src/Magento/Setup/Controller/CreateBackup.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Controller/CustomizeYourStore.php b/setup/src/Magento/Setup/Controller/CustomizeYourStore.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Controller/DataOption.php b/setup/src/Magento/Setup/Controller/DataOption.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Controller/DatabaseCheck.php b/setup/src/Magento/Setup/Controller/DatabaseCheck.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Controller/DependencyCheck.php b/setup/src/Magento/Setup/Controller/DependencyCheck.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Controller/Environment.php b/setup/src/Magento/Setup/Controller/Environment.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Controller/ExtensionGrid.php b/setup/src/Magento/Setup/Controller/ExtensionGrid.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Controller/Home.php b/setup/src/Magento/Setup/Controller/Home.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Controller/Index.php b/setup/src/Magento/Setup/Controller/Index.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Controller/Install.php b/setup/src/Magento/Setup/Controller/Install.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Controller/InstallExtensionGrid.php b/setup/src/Magento/Setup/Controller/InstallExtensionGrid.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Controller/LandingInstaller.php b/setup/src/Magento/Setup/Controller/LandingInstaller.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Controller/LandingUpdater.php b/setup/src/Magento/Setup/Controller/LandingUpdater.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Controller/License.php b/setup/src/Magento/Setup/Controller/License.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Controller/Maintenance.php b/setup/src/Magento/Setup/Controller/Maintenance.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Controller/Marketplace.php b/setup/src/Magento/Setup/Controller/Marketplace.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Controller/MarketplaceCredentials.php b/setup/src/Magento/Setup/Controller/MarketplaceCredentials.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Controller/ModuleGrid.php b/setup/src/Magento/Setup/Controller/ModuleGrid.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Controller/Modules.php b/setup/src/Magento/Setup/Controller/Modules.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Controller/Navigation.php b/setup/src/Magento/Setup/Controller/Navigation.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Controller/OtherComponentsGrid.php b/setup/src/Magento/Setup/Controller/OtherComponentsGrid.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Controller/ReadinessCheckInstaller.php b/setup/src/Magento/Setup/Controller/ReadinessCheckInstaller.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Controller/ReadinessCheckUpdater.php b/setup/src/Magento/Setup/Controller/ReadinessCheckUpdater.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Controller/ResponseTypeInterface.php b/setup/src/Magento/Setup/Controller/ResponseTypeInterface.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Controller/SelectVersion.php b/setup/src/Magento/Setup/Controller/SelectVersion.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Controller/Session.php b/setup/src/Magento/Setup/Controller/Session.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Controller/StartUpdater.php b/setup/src/Magento/Setup/Controller/StartUpdater.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Controller/Success.php b/setup/src/Magento/Setup/Controller/Success.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Controller/SystemConfig.php b/setup/src/Magento/Setup/Controller/SystemConfig.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Controller/UpdateExtensionGrid.php b/setup/src/Magento/Setup/Controller/UpdateExtensionGrid.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Controller/UpdaterSuccess.php b/setup/src/Magento/Setup/Controller/UpdaterSuccess.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Controller/UrlCheck.php b/setup/src/Magento/Setup/Controller/UrlCheck.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Controller/ValidateAdminCredentials.php b/setup/src/Magento/Setup/Controller/ValidateAdminCredentials.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Controller/WebConfiguration.php b/setup/src/Magento/Setup/Controller/WebConfiguration.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Exception.php b/setup/src/Magento/Setup/Exception.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Fixtures/AdminUsersFixture.php b/setup/src/Magento/Setup/Fixtures/AdminUsersFixture.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Fixtures/AttributeSet/AttributeSetFixture.php b/setup/src/Magento/Setup/Fixtures/AttributeSet/AttributeSetFixture.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Fixtures/AttributeSet/Pattern.php b/setup/src/Magento/Setup/Fixtures/AttributeSet/Pattern.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Fixtures/AttributeSet/SwatchesGenerator.php b/setup/src/Magento/Setup/Fixtures/AttributeSet/SwatchesGenerator.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Fixtures/AttributeSetsFixture.php b/setup/src/Magento/Setup/Fixtures/AttributeSetsFixture.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Fixtures/BundleProductsFixture.php b/setup/src/Magento/Setup/Fixtures/BundleProductsFixture.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Fixtures/CatalogPriceRulesFixture.php b/setup/src/Magento/Setup/Fixtures/CatalogPriceRulesFixture.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Fixtures/CategoriesFixture.php b/setup/src/Magento/Setup/Fixtures/CategoriesFixture.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Fixtures/CategoryResolver.php b/setup/src/Magento/Setup/Fixtures/CategoryResolver.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Fixtures/ConfigsApplyFixture.php b/setup/src/Magento/Setup/Fixtures/ConfigsApplyFixture.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Fixtures/ConfigurableProductsFixture.php b/setup/src/Magento/Setup/Fixtures/ConfigurableProductsFixture.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Fixtures/CustomerGroupsFixture.php b/setup/src/Magento/Setup/Fixtures/CustomerGroupsFixture.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Fixtures/CustomersFixture.php b/setup/src/Magento/Setup/Fixtures/CustomersFixture.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Fixtures/EavVariationsFixture.php b/setup/src/Magento/Setup/Fixtures/EavVariationsFixture.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Fixtures/Fixture.php b/setup/src/Magento/Setup/Fixtures/Fixture.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Fixtures/FixtureConfig.php b/setup/src/Magento/Setup/Fixtures/FixtureConfig.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Fixtures/FixtureModel.php b/setup/src/Magento/Setup/Fixtures/FixtureModel.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Fixtures/ImagesFixture.php b/setup/src/Magento/Setup/Fixtures/ImagesFixture.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Fixtures/ImagesGenerator/ImagesGenerator.php b/setup/src/Magento/Setup/Fixtures/ImagesGenerator/ImagesGenerator.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Fixtures/IndexersStatesApplyFixture.php b/setup/src/Magento/Setup/Fixtures/IndexersStatesApplyFixture.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Fixtures/OrdersFixture.php b/setup/src/Magento/Setup/Fixtures/OrdersFixture.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Fixtures/PriceProvider.php b/setup/src/Magento/Setup/Fixtures/PriceProvider.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Fixtures/ProductsAmountProvider.php b/setup/src/Magento/Setup/Fixtures/ProductsAmountProvider.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Fixtures/Quote/QuoteConfiguration.php b/setup/src/Magento/Setup/Fixtures/Quote/QuoteConfiguration.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Fixtures/Quote/QuoteGenerator.php b/setup/src/Magento/Setup/Fixtures/Quote/QuoteGenerator.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Fixtures/Quote/QuoteGeneratorFactory.php b/setup/src/Magento/Setup/Fixtures/Quote/QuoteGeneratorFactory.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Fixtures/SimpleProductsFixture.php b/setup/src/Magento/Setup/Fixtures/SimpleProductsFixture.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Fixtures/StoresFixture.php b/setup/src/Magento/Setup/Fixtures/StoresFixture.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Fixtures/TaxRatesFixture.php b/setup/src/Magento/Setup/Fixtures/TaxRatesFixture.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Fixtures/TaxRulesFixture.php b/setup/src/Magento/Setup/Fixtures/TaxRulesFixture.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Fixtures/WebsiteCategoryProvider.php b/setup/src/Magento/Setup/Fixtures/WebsiteCategoryProvider.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Fixtures/_files/dictionary.csv b/setup/src/Magento/Setup/Fixtures/_files/dictionary.csv
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Fixtures/_files/orders_fixture_data.json b/setup/src/Magento/Setup/Fixtures/_files/orders_fixture_data.json
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Fixtures/_files/tax_rates.csv b/setup/src/Magento/Setup/Fixtures/_files/tax_rates.csv
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Fixtures/_files/tax_rates_small.csv b/setup/src/Magento/Setup/Fixtures/_files/tax_rates_small.csv
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/Address/AddressDataGenerator.php b/setup/src/Magento/Setup/Model/Address/AddressDataGenerator.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/AdminAccount.php b/setup/src/Magento/Setup/Model/AdminAccount.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/AdminAccountFactory.php b/setup/src/Magento/Setup/Model/AdminAccountFactory.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/BasePackageInfo.php b/setup/src/Magento/Setup/Model/BasePackageInfo.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/BatchInsert.php b/setup/src/Magento/Setup/Model/BatchInsert.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/Bootstrap.php b/setup/src/Magento/Setup/Model/Bootstrap.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/Complex/Generator.php b/setup/src/Magento/Setup/Model/Complex/Generator.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/Complex/Pattern.php b/setup/src/Magento/Setup/Model/Complex/Pattern.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/ConfigGenerator.php b/setup/src/Magento/Setup/Model/ConfigGenerator.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/ConfigModel.php b/setup/src/Magento/Setup/Model/ConfigModel.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/ConfigOptionsList.php b/setup/src/Magento/Setup/Model/ConfigOptionsList.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/ConfigOptionsList/Cache.php b/setup/src/Magento/Setup/Model/ConfigOptionsList/Cache.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/ConfigOptionsList/PageCache.php b/setup/src/Magento/Setup/Model/ConfigOptionsList/PageCache.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/ConfigOptionsList/Session.php b/setup/src/Magento/Setup/Model/ConfigOptionsList/Session.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/ConfigOptionsListCollector.php b/setup/src/Magento/Setup/Model/ConfigOptionsListCollector.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/Cron/AbstractJob.php b/setup/src/Magento/Setup/Model/Cron/AbstractJob.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/Cron/Helper/ModuleUninstall.php b/setup/src/Magento/Setup/Model/Cron/Helper/ModuleUninstall.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/Cron/Helper/ThemeUninstall.php b/setup/src/Magento/Setup/Model/Cron/Helper/ThemeUninstall.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/Cron/JobComponentUninstall.php b/setup/src/Magento/Setup/Model/Cron/JobComponentUninstall.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/Cron/JobDbRollback.php b/setup/src/Magento/Setup/Model/Cron/JobDbRollback.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/Cron/JobFactory.php b/setup/src/Magento/Setup/Model/Cron/JobFactory.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/Cron/JobModule.php b/setup/src/Magento/Setup/Model/Cron/JobModule.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/Cron/JobSetCache.php b/setup/src/Magento/Setup/Model/Cron/JobSetCache.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/Cron/JobSetMaintenanceMode.php b/setup/src/Magento/Setup/Model/Cron/JobSetMaintenanceMode.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/Cron/JobStaticRegenerate.php b/setup/src/Magento/Setup/Model/Cron/JobStaticRegenerate.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/Cron/JobUpgrade.php b/setup/src/Magento/Setup/Model/Cron/JobUpgrade.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/Cron/MultipleStreamOutput.php b/setup/src/Magento/Setup/Model/Cron/MultipleStreamOutput.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/Cron/Queue.php b/setup/src/Magento/Setup/Model/Cron/Queue.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/Cron/Queue/Reader.php b/setup/src/Magento/Setup/Model/Cron/Queue/Reader.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/Cron/Queue/Writer.php b/setup/src/Magento/Setup/Model/Cron/Queue/Writer.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/Cron/ReadinessCheck.php b/setup/src/Magento/Setup/Model/Cron/ReadinessCheck.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/Cron/SetupLoggerFactory.php b/setup/src/Magento/Setup/Model/Cron/SetupLoggerFactory.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/Cron/SetupStreamHandler.php b/setup/src/Magento/Setup/Model/Cron/SetupStreamHandler.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/Cron/Status.php b/setup/src/Magento/Setup/Model/Cron/Status.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/CronScriptReadinessCheck.php b/setup/src/Magento/Setup/Model/CronScriptReadinessCheck.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/CryptKeyGenerator.php b/setup/src/Magento/Setup/Model/CryptKeyGenerator.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/CryptKeyGeneratorInterface.php b/setup/src/Magento/Setup/Model/CryptKeyGeneratorInterface.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/Customer/CustomerDataGenerator.php b/setup/src/Magento/Setup/Model/Customer/CustomerDataGenerator.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/Customer/CustomerDataGeneratorFactory.php b/setup/src/Magento/Setup/Model/Customer/CustomerDataGeneratorFactory.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/DataGenerator.php b/setup/src/Magento/Setup/Model/DataGenerator.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/DateTime/DateTimeProvider.php b/setup/src/Magento/Setup/Model/DateTime/DateTimeProvider.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/DateTime/TimeZoneProvider.php b/setup/src/Magento/Setup/Model/DateTime/TimeZoneProvider.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/DefaultDescriptionGenerator.php b/setup/src/Magento/Setup/Model/DefaultDescriptionGenerator.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/DependencyReadinessCheck.php b/setup/src/Magento/Setup/Model/DependencyReadinessCheck.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/Description/DescriptionGenerator.php b/setup/src/Magento/Setup/Model/Description/DescriptionGenerator.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/Description/DescriptionParagraphGenerator.php b/setup/src/Magento/Setup/Model/Description/DescriptionParagraphGenerator.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/Description/DescriptionSentenceGenerator.php b/setup/src/Magento/Setup/Model/Description/DescriptionSentenceGenerator.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/Description/Mixin/BoldMixin.php b/setup/src/Magento/Setup/Model/Description/Mixin/BoldMixin.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/Description/Mixin/BrakeMixin.php b/setup/src/Magento/Setup/Model/Description/Mixin/BrakeMixin.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/Description/Mixin/DescriptionMixinInterface.php b/setup/src/Magento/Setup/Model/Description/Mixin/DescriptionMixinInterface.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/Description/Mixin/HeaderMixin.php b/setup/src/Magento/Setup/Model/Description/Mixin/HeaderMixin.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/Description/Mixin/Helper/RandomWordSelector.php b/setup/src/Magento/Setup/Model/Description/Mixin/Helper/RandomWordSelector.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/Description/Mixin/Helper/WordWrapper.php b/setup/src/Magento/Setup/Model/Description/Mixin/Helper/WordWrapper.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/Description/Mixin/ItalicMixin.php b/setup/src/Magento/Setup/Model/Description/Mixin/ItalicMixin.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/Description/Mixin/MixinFactory.php b/setup/src/Magento/Setup/Model/Description/Mixin/MixinFactory.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/Description/Mixin/ParagraphMixin.php b/setup/src/Magento/Setup/Model/Description/Mixin/ParagraphMixin.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/Description/Mixin/SpanMixin.php b/setup/src/Magento/Setup/Model/Description/Mixin/SpanMixin.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/Description/MixinManager.php b/setup/src/Magento/Setup/Model/Description/MixinManager.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/DescriptionGeneratorInterface.php b/setup/src/Magento/Setup/Model/DescriptionGeneratorInterface.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/Dictionary.php b/setup/src/Magento/Setup/Model/Dictionary.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/FixtureGenerator/AutoIncrement.php b/setup/src/Magento/Setup/Model/FixtureGenerator/AutoIncrement.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/FixtureGenerator/BundleProductGenerator.php b/setup/src/Magento/Setup/Model/FixtureGenerator/BundleProductGenerator.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/FixtureGenerator/BundleProductTemplateGenerator.php b/setup/src/Magento/Setup/Model/FixtureGenerator/BundleProductTemplateGenerator.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/FixtureGenerator/ConfigurableProductGenerator.php b/setup/src/Magento/Setup/Model/FixtureGenerator/ConfigurableProductGenerator.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/FixtureGenerator/ConfigurableProductTemplateGenerator.php b/setup/src/Magento/Setup/Model/FixtureGenerator/ConfigurableProductTemplateGenerator.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/FixtureGenerator/CustomerGenerator.php b/setup/src/Magento/Setup/Model/FixtureGenerator/CustomerGenerator.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/FixtureGenerator/CustomerTemplateGenerator.php b/setup/src/Magento/Setup/Model/FixtureGenerator/CustomerTemplateGenerator.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/FixtureGenerator/EntityGenerator.php b/setup/src/Magento/Setup/Model/FixtureGenerator/EntityGenerator.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/FixtureGenerator/ProductGenerator.php b/setup/src/Magento/Setup/Model/FixtureGenerator/ProductGenerator.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/FixtureGenerator/ProductTemplateGeneratorFactory.php b/setup/src/Magento/Setup/Model/FixtureGenerator/ProductTemplateGeneratorFactory.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/FixtureGenerator/SimpleProductTemplateGenerator.php b/setup/src/Magento/Setup/Model/FixtureGenerator/SimpleProductTemplateGenerator.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/FixtureGenerator/SqlCollector.php b/setup/src/Magento/Setup/Model/FixtureGenerator/SqlCollector.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/FixtureGenerator/TemplateEntityGeneratorInterface.php b/setup/src/Magento/Setup/Model/FixtureGenerator/TemplateEntityGeneratorInterface.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/Generator.php b/setup/src/Magento/Setup/Model/Generator.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/Grid/Extension.php b/setup/src/Magento/Setup/Model/Grid/Extension.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/Grid/Module.php b/setup/src/Magento/Setup/Model/Grid/Module.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/Grid/TypeMapper.php b/setup/src/Magento/Setup/Model/Grid/TypeMapper.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/Installer.php b/setup/src/Magento/Setup/Model/Installer.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/Installer/Progress.php b/setup/src/Magento/Setup/Model/Installer/Progress.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/Installer/ProgressFactory.php b/setup/src/Magento/Setup/Model/Installer/ProgressFactory.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/InstallerFactory.php b/setup/src/Magento/Setup/Model/InstallerFactory.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/License.php b/setup/src/Magento/Setup/Model/License.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/ModuleContext.php b/setup/src/Magento/Setup/Model/ModuleContext.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/ModuleRegistryUninstaller.php b/setup/src/Magento/Setup/Model/ModuleRegistryUninstaller.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/ModuleStatus.php b/setup/src/Magento/Setup/Model/ModuleStatus.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/ModuleStatusFactory.php b/setup/src/Magento/Setup/Model/ModuleStatusFactory.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/ModuleUninstaller.php b/setup/src/Magento/Setup/Model/ModuleUninstaller.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/Navigation.php b/setup/src/Magento/Setup/Model/Navigation.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/ObjectManagerProvider.php b/setup/src/Magento/Setup/Model/ObjectManagerProvider.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/PackagesAuth.php b/setup/src/Magento/Setup/Model/PackagesAuth.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/PackagesData.php b/setup/src/Magento/Setup/Model/PackagesData.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/PayloadValidator.php b/setup/src/Magento/Setup/Model/PayloadValidator.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/PhpInformation.php b/setup/src/Magento/Setup/Model/PhpInformation.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/PhpReadinessCheck.php b/setup/src/Magento/Setup/Model/PhpReadinessCheck.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/RequestDataConverter.php b/setup/src/Magento/Setup/Model/RequestDataConverter.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/SearchTermDescriptionGenerator.php b/setup/src/Magento/Setup/Model/SearchTermDescriptionGenerator.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/SearchTermDescriptionGeneratorFactory.php b/setup/src/Magento/Setup/Model/SearchTermDescriptionGeneratorFactory.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/SearchTermManager.php b/setup/src/Magento/Setup/Model/SearchTermManager.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/StoreConfigurationDataMapper.php b/setup/src/Magento/Setup/Model/StoreConfigurationDataMapper.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/ThemeDependencyCheckerFactory.php b/setup/src/Magento/Setup/Model/ThemeDependencyCheckerFactory.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/UninstallCollector.php b/setup/src/Magento/Setup/Model/UninstallCollector.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/UninstallDependencyCheck.php b/setup/src/Magento/Setup/Model/UninstallDependencyCheck.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/Updater.php b/setup/src/Magento/Setup/Model/Updater.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/UpdaterTaskCreator.php b/setup/src/Magento/Setup/Model/UpdaterTaskCreator.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Model/WebLogger.php b/setup/src/Magento/Setup/Model/WebLogger.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module.php b/setup/src/Magento/Setup/Module.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/ConnectionFactory.php b/setup/src/Magento/Setup/Module/ConnectionFactory.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/DataSetup.php b/setup/src/Magento/Setup/Module/DataSetup.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/DataSetupFactory.php b/setup/src/Magento/Setup/Module/DataSetupFactory.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Dependency/Circular.php b/setup/src/Magento/Setup/Module/Dependency/Circular.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Dependency/Parser/Code.php b/setup/src/Magento/Setup/Module/Dependency/Parser/Code.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Dependency/Parser/Composer/Json.php b/setup/src/Magento/Setup/Module/Dependency/Parser/Composer/Json.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Dependency/Parser/Config/Xml.php b/setup/src/Magento/Setup/Module/Dependency/Parser/Config/Xml.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Dependency/ParserInterface.php b/setup/src/Magento/Setup/Module/Dependency/ParserInterface.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Dependency/Report/Builder/AbstractBuilder.php b/setup/src/Magento/Setup/Module/Dependency/Report/Builder/AbstractBuilder.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Dependency/Report/BuilderInterface.php b/setup/src/Magento/Setup/Module/Dependency/Report/BuilderInterface.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Dependency/Report/Circular/Builder.php b/setup/src/Magento/Setup/Module/Dependency/Report/Circular/Builder.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Dependency/Report/Circular/Data/Chain.php b/setup/src/Magento/Setup/Module/Dependency/Report/Circular/Data/Chain.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Dependency/Report/Circular/Data/Config.php b/setup/src/Magento/Setup/Module/Dependency/Report/Circular/Data/Config.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Dependency/Report/Circular/Data/Module.php b/setup/src/Magento/Setup/Module/Dependency/Report/Circular/Data/Module.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Dependency/Report/Circular/Writer.php b/setup/src/Magento/Setup/Module/Dependency/Report/Circular/Writer.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Dependency/Report/Data/Config/AbstractConfig.php b/setup/src/Magento/Setup/Module/Dependency/Report/Data/Config/AbstractConfig.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Dependency/Report/Data/ConfigInterface.php b/setup/src/Magento/Setup/Module/Dependency/Report/Data/ConfigInterface.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Dependency/Report/Dependency/Builder.php b/setup/src/Magento/Setup/Module/Dependency/Report/Dependency/Builder.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Dependency/Report/Dependency/Data/Config.php b/setup/src/Magento/Setup/Module/Dependency/Report/Dependency/Data/Config.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Dependency/Report/Dependency/Data/Dependency.php b/setup/src/Magento/Setup/Module/Dependency/Report/Dependency/Data/Dependency.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Dependency/Report/Dependency/Data/Module.php b/setup/src/Magento/Setup/Module/Dependency/Report/Dependency/Data/Module.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Dependency/Report/Dependency/Writer.php b/setup/src/Magento/Setup/Module/Dependency/Report/Dependency/Writer.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Dependency/Report/Framework/Builder.php b/setup/src/Magento/Setup/Module/Dependency/Report/Framework/Builder.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Dependency/Report/Framework/Data/Config.php b/setup/src/Magento/Setup/Module/Dependency/Report/Framework/Data/Config.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Dependency/Report/Framework/Data/Dependency.php b/setup/src/Magento/Setup/Module/Dependency/Report/Framework/Data/Dependency.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Dependency/Report/Framework/Data/Module.php b/setup/src/Magento/Setup/Module/Dependency/Report/Framework/Data/Module.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Dependency/Report/Framework/Writer.php b/setup/src/Magento/Setup/Module/Dependency/Report/Framework/Writer.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Dependency/Report/Writer/Csv/AbstractWriter.php b/setup/src/Magento/Setup/Module/Dependency/Report/Writer/Csv/AbstractWriter.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Dependency/Report/WriterInterface.php b/setup/src/Magento/Setup/Module/Dependency/Report/WriterInterface.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Dependency/ServiceLocator.php b/setup/src/Magento/Setup/Module/Dependency/ServiceLocator.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/App/Task/Manager.php b/setup/src/Magento/Setup/Module/Di/App/Task/Manager.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/App/Task/Operation/ApplicationCodeGenerator.php b/setup/src/Magento/Setup/Module/Di/App/Task/Operation/ApplicationCodeGenerator.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/App/Task/Operation/Area.php b/setup/src/Magento/Setup/Module/Di/App/Task/Operation/Area.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/App/Task/Operation/Interception.php b/setup/src/Magento/Setup/Module/Di/App/Task/Operation/Interception.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/App/Task/Operation/InterceptionCache.php b/setup/src/Magento/Setup/Module/Di/App/Task/Operation/InterceptionCache.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/App/Task/Operation/ProxyGenerator.php b/setup/src/Magento/Setup/Module/Di/App/Task/Operation/ProxyGenerator.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/App/Task/Operation/RepositoryGenerator.php b/setup/src/Magento/Setup/Module/Di/App/Task/Operation/RepositoryGenerator.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/App/Task/Operation/ServiceDataAttributesGenerator.php b/setup/src/Magento/Setup/Module/Di/App/Task/Operation/ServiceDataAttributesGenerator.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/App/Task/OperationException.php b/setup/src/Magento/Setup/Module/Di/App/Task/OperationException.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/App/Task/OperationFactory.php b/setup/src/Magento/Setup/Module/Di/App/Task/OperationFactory.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/App/Task/OperationInterface.php b/setup/src/Magento/Setup/Module/Di/App/Task/OperationInterface.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/Code/Generator.php b/setup/src/Magento/Setup/Module/Di/Code/Generator.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/Code/Generator/InterceptionConfigurationBuilder.php b/setup/src/Magento/Setup/Module/Di/Code/Generator/InterceptionConfigurationBuilder.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/Code/Generator/Interceptor.php b/setup/src/Magento/Setup/Module/Di/Code/Generator/Interceptor.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/Code/Generator/PluginList.php b/setup/src/Magento/Setup/Module/Di/Code/Generator/PluginList.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/Code/GeneratorFactory.php b/setup/src/Magento/Setup/Module/Di/Code/GeneratorFactory.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/Code/Reader/ClassReaderDecorator.php b/setup/src/Magento/Setup/Module/Di/Code/Reader/ClassReaderDecorator.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/Code/Reader/ClassesScanner.php b/setup/src/Magento/Setup/Module/Di/Code/Reader/ClassesScanner.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/Code/Reader/ClassesScannerInterface.php b/setup/src/Magento/Setup/Module/Di/Code/Reader/ClassesScannerInterface.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/Code/Reader/Decorator/Area.php b/setup/src/Magento/Setup/Module/Di/Code/Reader/Decorator/Area.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/Code/Reader/Decorator/Directory.php b/setup/src/Magento/Setup/Module/Di/Code/Reader/Decorator/Directory.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/Code/Reader/Decorator/Interceptions.php b/setup/src/Magento/Setup/Module/Di/Code/Reader/Decorator/Interceptions.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/Code/Reader/FileClassScanner.php b/setup/src/Magento/Setup/Module/Di/Code/Reader/FileClassScanner.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/Code/Reader/FileScanner.php b/setup/src/Magento/Setup/Module/Di/Code/Reader/FileScanner.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/Code/Reader/InvalidFileException.php b/setup/src/Magento/Setup/Module/Di/Code/Reader/InvalidFileException.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/Code/Reader/Type.php b/setup/src/Magento/Setup/Module/Di/Code/Reader/Type.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/Code/Scanner/ArrayScanner.php b/setup/src/Magento/Setup/Module/Di/Code/Scanner/ArrayScanner.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/Code/Scanner/CompositeScanner.php b/setup/src/Magento/Setup/Module/Di/Code/Scanner/CompositeScanner.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/Code/Scanner/ConfigurationScanner.php b/setup/src/Magento/Setup/Module/Di/Code/Scanner/ConfigurationScanner.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/Code/Scanner/DirectoryScanner.php b/setup/src/Magento/Setup/Module/Di/Code/Scanner/DirectoryScanner.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/Code/Scanner/InheritanceInterceptorScanner.php b/setup/src/Magento/Setup/Module/Di/Code/Scanner/InheritanceInterceptorScanner.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/Code/Scanner/InterceptedInstancesScanner.php b/setup/src/Magento/Setup/Module/Di/Code/Scanner/InterceptedInstancesScanner.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/Code/Scanner/PhpScanner.php b/setup/src/Magento/Setup/Module/Di/Code/Scanner/PhpScanner.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/Code/Scanner/PluginScanner.php b/setup/src/Magento/Setup/Module/Di/Code/Scanner/PluginScanner.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/Code/Scanner/RepositoryScanner.php b/setup/src/Magento/Setup/Module/Di/Code/Scanner/RepositoryScanner.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/Code/Scanner/ScannerInterface.php b/setup/src/Magento/Setup/Module/Di/Code/Scanner/ScannerInterface.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/Code/Scanner/ServiceDataAttributesScanner.php b/setup/src/Magento/Setup/Module/Di/Code/Scanner/ServiceDataAttributesScanner.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/Code/Scanner/XmlInterceptorScanner.php b/setup/src/Magento/Setup/Module/Di/Code/Scanner/XmlInterceptorScanner.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/Code/Scanner/XmlScanner.php b/setup/src/Magento/Setup/Module/Di/Code/Scanner/XmlScanner.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/Compiler/ArgumentsResolver.php b/setup/src/Magento/Setup/Module/Di/Compiler/ArgumentsResolver.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/Compiler/ArgumentsResolverFactory.php b/setup/src/Magento/Setup/Module/Di/Compiler/ArgumentsResolverFactory.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/Compiler/Config/Chain/ArgumentsSerialization.php b/setup/src/Magento/Setup/Module/Di/Compiler/Config/Chain/ArgumentsSerialization.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/Compiler/Config/Chain/BackslashTrim.php b/setup/src/Magento/Setup/Module/Di/Compiler/Config/Chain/BackslashTrim.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/Compiler/Config/Chain/InterceptorSubstitution.php b/setup/src/Magento/Setup/Module/Di/Compiler/Config/Chain/InterceptorSubstitution.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/Compiler/Config/Chain/PreferencesResolving.php b/setup/src/Magento/Setup/Module/Di/Compiler/Config/Chain/PreferencesResolving.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/Compiler/Config/ModificationChain.php b/setup/src/Magento/Setup/Module/Di/Compiler/Config/ModificationChain.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/Compiler/Config/ModificationInterface.php b/setup/src/Magento/Setup/Module/Di/Compiler/Config/ModificationInterface.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/Compiler/Config/Reader.php b/setup/src/Magento/Setup/Module/Di/Compiler/Config/Reader.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/Compiler/Config/Writer/Filesystem.php b/setup/src/Magento/Setup/Module/Di/Compiler/Config/Writer/Filesystem.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/Compiler/Config/WriterInterface.php b/setup/src/Magento/Setup/Module/Di/Compiler/Config/WriterInterface.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/Compiler/ConstructorArgument.php b/setup/src/Magento/Setup/Module/Di/Compiler/ConstructorArgument.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/Compiler/Log/Log.php b/setup/src/Magento/Setup/Module/Di/Compiler/Log/Log.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/Compiler/Log/Writer/Console.php b/setup/src/Magento/Setup/Module/Di/Compiler/Log/Writer/Console.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Di/Definition/Collection.php b/setup/src/Magento/Setup/Module/Di/Definition/Collection.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/I18n/Context.php b/setup/src/Magento/Setup/Module/I18n/Context.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/I18n/Dictionary.php b/setup/src/Magento/Setup/Module/I18n/Dictionary.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/I18n/Dictionary/Generator.php b/setup/src/Magento/Setup/Module/I18n/Dictionary/Generator.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/I18n/Dictionary/Loader/File/AbstractFile.php b/setup/src/Magento/Setup/Module/I18n/Dictionary/Loader/File/AbstractFile.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/I18n/Dictionary/Loader/File/Csv.php b/setup/src/Magento/Setup/Module/I18n/Dictionary/Loader/File/Csv.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/I18n/Dictionary/Loader/FileInterface.php b/setup/src/Magento/Setup/Module/I18n/Dictionary/Loader/FileInterface.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/I18n/Dictionary/Options/Resolver.php b/setup/src/Magento/Setup/Module/I18n/Dictionary/Options/Resolver.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/I18n/Dictionary/Options/ResolverFactory.php b/setup/src/Magento/Setup/Module/I18n/Dictionary/Options/ResolverFactory.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/I18n/Dictionary/Options/ResolverInterface.php b/setup/src/Magento/Setup/Module/I18n/Dictionary/Options/ResolverInterface.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/I18n/Dictionary/Phrase.php b/setup/src/Magento/Setup/Module/I18n/Dictionary/Phrase.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/I18n/Dictionary/Writer/Csv.php b/setup/src/Magento/Setup/Module/I18n/Dictionary/Writer/Csv.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/I18n/Dictionary/Writer/Csv/Stdo.php b/setup/src/Magento/Setup/Module/I18n/Dictionary/Writer/Csv/Stdo.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/I18n/Dictionary/WriterInterface.php b/setup/src/Magento/Setup/Module/I18n/Dictionary/WriterInterface.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/I18n/Factory.php b/setup/src/Magento/Setup/Module/I18n/Factory.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/I18n/FilesCollector.php b/setup/src/Magento/Setup/Module/I18n/FilesCollector.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/I18n/Locale.php b/setup/src/Magento/Setup/Module/I18n/Locale.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/I18n/Pack/Generator.php b/setup/src/Magento/Setup/Module/I18n/Pack/Generator.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/I18n/Pack/Writer/File/AbstractFile.php b/setup/src/Magento/Setup/Module/I18n/Pack/Writer/File/AbstractFile.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/I18n/Pack/Writer/File/Csv.php b/setup/src/Magento/Setup/Module/I18n/Pack/Writer/File/Csv.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/I18n/Pack/WriterInterface.php b/setup/src/Magento/Setup/Module/I18n/Pack/WriterInterface.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/I18n/Parser/AbstractParser.php b/setup/src/Magento/Setup/Module/I18n/Parser/AbstractParser.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/I18n/Parser/Adapter/AbstractAdapter.php b/setup/src/Magento/Setup/Module/I18n/Parser/Adapter/AbstractAdapter.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/I18n/Parser/Adapter/Html.php b/setup/src/Magento/Setup/Module/I18n/Parser/Adapter/Html.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/I18n/Parser/Adapter/Js.php b/setup/src/Magento/Setup/Module/I18n/Parser/Adapter/Js.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/I18n/Parser/Adapter/Php.php b/setup/src/Magento/Setup/Module/I18n/Parser/Adapter/Php.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/I18n/Parser/Adapter/Php/Tokenizer.php b/setup/src/Magento/Setup/Module/I18n/Parser/Adapter/Php/Tokenizer.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/I18n/Parser/Adapter/Php/Tokenizer/PhraseCollector.php b/setup/src/Magento/Setup/Module/I18n/Parser/Adapter/Php/Tokenizer/PhraseCollector.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/I18n/Parser/Adapter/Php/Tokenizer/Token.php b/setup/src/Magento/Setup/Module/I18n/Parser/Adapter/Php/Tokenizer/Token.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/I18n/Parser/Adapter/Php/Tokenizer/Translate/MethodCollector.php b/setup/src/Magento/Setup/Module/I18n/Parser/Adapter/Php/Tokenizer/Translate/MethodCollector.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/I18n/Parser/Adapter/Xml.php b/setup/src/Magento/Setup/Module/I18n/Parser/Adapter/Xml.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/I18n/Parser/AdapterInterface.php b/setup/src/Magento/Setup/Module/I18n/Parser/AdapterInterface.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/I18n/Parser/Contextual.php b/setup/src/Magento/Setup/Module/I18n/Parser/Contextual.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/I18n/Parser/Parser.php b/setup/src/Magento/Setup/Module/I18n/Parser/Parser.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/I18n/ParserInterface.php b/setup/src/Magento/Setup/Module/I18n/ParserInterface.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/I18n/ServiceLocator.php b/setup/src/Magento/Setup/Module/I18n/ServiceLocator.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/ResourceFactory.php b/setup/src/Magento/Setup/Module/ResourceFactory.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Setup.php b/setup/src/Magento/Setup/Module/Setup.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Setup/ResourceConfig.php b/setup/src/Magento/Setup/Module/Setup/ResourceConfig.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/Setup/SetupCache.php b/setup/src/Magento/Setup/Module/Setup/SetupCache.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Module/SetupFactory.php b/setup/src/Magento/Setup/Module/SetupFactory.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Mvc/Bootstrap/InitParamListener.php b/setup/src/Magento/Setup/Mvc/Bootstrap/InitParamListener.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Mvc/View/Http/InjectTemplateListener.php b/setup/src/Magento/Setup/Mvc/View/Http/InjectTemplateListener.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Console/Command/AdminUserCreateCommandTest.php b/setup/src/Magento/Setup/Test/Unit/Console/Command/AdminUserCreateCommandTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Console/Command/BackupCommandTest.php b/setup/src/Magento/Setup/Test/Unit/Console/Command/BackupCommandTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Console/Command/ConfigSetCommandTest.php b/setup/src/Magento/Setup/Test/Unit/Console/Command/ConfigSetCommandTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Console/Command/CronRunCommandTest.php b/setup/src/Magento/Setup/Test/Unit/Console/Command/CronRunCommandTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Console/Command/DbDataUpgradeCommandTest.php b/setup/src/Magento/Setup/Test/Unit/Console/Command/DbDataUpgradeCommandTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Console/Command/DbSchemaUpgradeCommandTest.php b/setup/src/Magento/Setup/Test/Unit/Console/Command/DbSchemaUpgradeCommandTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Console/Command/DbStatusCommandTest.php b/setup/src/Magento/Setup/Test/Unit/Console/Command/DbStatusCommandTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Console/Command/DeployStaticContentCommandTest.php b/setup/src/Magento/Setup/Test/Unit/Console/Command/DeployStaticContentCommandTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Console/Command/DiCompileCommandTest.php b/setup/src/Magento/Setup/Test/Unit/Console/Command/DiCompileCommandTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Console/Command/FunctionExistMock.php b/setup/src/Magento/Setup/Test/Unit/Console/Command/FunctionExistMock.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Console/Command/GenerateFixturesCommandTest.php b/setup/src/Magento/Setup/Test/Unit/Console/Command/GenerateFixturesCommandTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Console/Command/InfoAdminUriCommandTest.php b/setup/src/Magento/Setup/Test/Unit/Console/Command/InfoAdminUriCommandTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Console/Command/InfoBackupsListCommandTest.php b/setup/src/Magento/Setup/Test/Unit/Console/Command/InfoBackupsListCommandTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Console/Command/InfoCurrencyListCommandTest.php b/setup/src/Magento/Setup/Test/Unit/Console/Command/InfoCurrencyListCommandTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Console/Command/InfoLanguageListCommandTest.php b/setup/src/Magento/Setup/Test/Unit/Console/Command/InfoLanguageListCommandTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Console/Command/InfoTimezoneListCommandTest.php b/setup/src/Magento/Setup/Test/Unit/Console/Command/InfoTimezoneListCommandTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Console/Command/InstallCommandTest.php b/setup/src/Magento/Setup/Test/Unit/Console/Command/InstallCommandTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Console/Command/InstallStoreConfigurationCommandTest.php b/setup/src/Magento/Setup/Test/Unit/Console/Command/InstallStoreConfigurationCommandTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Console/Command/MaintenanceAllowIpsCommandTest.php b/setup/src/Magento/Setup/Test/Unit/Console/Command/MaintenanceAllowIpsCommandTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Console/Command/MaintenanceDisableCommandTest.php b/setup/src/Magento/Setup/Test/Unit/Console/Command/MaintenanceDisableCommandTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Console/Command/MaintenanceEnableCommandTest.php b/setup/src/Magento/Setup/Test/Unit/Console/Command/MaintenanceEnableCommandTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Console/Command/MaintenanceStatusCommandTest.php b/setup/src/Magento/Setup/Test/Unit/Console/Command/MaintenanceStatusCommandTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Console/Command/ModuleEnableDisableCommandTest.php b/setup/src/Magento/Setup/Test/Unit/Console/Command/ModuleEnableDisableCommandTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Console/Command/ModuleStatusCommandTest.php b/setup/src/Magento/Setup/Test/Unit/Console/Command/ModuleStatusCommandTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Console/Command/ModuleUninstallCommandTest.php b/setup/src/Magento/Setup/Test/Unit/Console/Command/ModuleUninstallCommandTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Console/Command/RollbackCommandTest.php b/setup/src/Magento/Setup/Test/Unit/Console/Command/RollbackCommandTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Console/Command/UninstallCommandTest.php b/setup/src/Magento/Setup/Test/Unit/Console/Command/UninstallCommandTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Console/Command/UpgradeCommandTest.php b/setup/src/Magento/Setup/Test/Unit/Console/Command/UpgradeCommandTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Console/CommandListTest.php b/setup/src/Magento/Setup/Test/Unit/Console/CommandListTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Console/CompilerPreparationTest.php b/setup/src/Magento/Setup/Test/Unit/Console/CompilerPreparationTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Controller/AddDatabaseTest.php b/setup/src/Magento/Setup/Test/Unit/Controller/AddDatabaseTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Controller/BackupActionItemsTest.php b/setup/src/Magento/Setup/Test/Unit/Controller/BackupActionItemsTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Controller/CompleteBackupTest.php b/setup/src/Magento/Setup/Test/Unit/Controller/CompleteBackupTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Controller/CreateAdminAccountTest.php b/setup/src/Magento/Setup/Test/Unit/Controller/CreateAdminAccountTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Controller/CreateBackupTest.php b/setup/src/Magento/Setup/Test/Unit/Controller/CreateBackupTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Controller/CustomizeYourStoreTest.php b/setup/src/Magento/Setup/Test/Unit/Controller/CustomizeYourStoreTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Controller/DataOptionTest.php b/setup/src/Magento/Setup/Test/Unit/Controller/DataOptionTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Controller/EnvironmentTest.php b/setup/src/Magento/Setup/Test/Unit/Controller/EnvironmentTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Controller/ExtensionGridTest.php b/setup/src/Magento/Setup/Test/Unit/Controller/ExtensionGridTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Controller/IndexTest.php b/setup/src/Magento/Setup/Test/Unit/Controller/IndexTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Controller/InstallExtensionGridTest.php b/setup/src/Magento/Setup/Test/Unit/Controller/InstallExtensionGridTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Controller/InstallTest.php b/setup/src/Magento/Setup/Test/Unit/Controller/InstallTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Controller/LandingInstallerTest.php b/setup/src/Magento/Setup/Test/Unit/Controller/LandingInstallerTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Controller/LandingUpdaterTest.php b/setup/src/Magento/Setup/Test/Unit/Controller/LandingUpdaterTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Controller/LicenseTest.php b/setup/src/Magento/Setup/Test/Unit/Controller/LicenseTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Controller/MaintenanceTest.php b/setup/src/Magento/Setup/Test/Unit/Controller/MaintenanceTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Controller/MarketplaceTest.php b/setup/src/Magento/Setup/Test/Unit/Controller/MarketplaceTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Controller/ModuleGridTest.php b/setup/src/Magento/Setup/Test/Unit/Controller/ModuleGridTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Controller/ModulesTest.php b/setup/src/Magento/Setup/Test/Unit/Controller/ModulesTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Controller/NavigationTest.php b/setup/src/Magento/Setup/Test/Unit/Controller/NavigationTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Controller/OtherComponentsGridTest.php b/setup/src/Magento/Setup/Test/Unit/Controller/OtherComponentsGridTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Controller/ReadinessCheckInstallerTest.php b/setup/src/Magento/Setup/Test/Unit/Controller/ReadinessCheckInstallerTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Controller/ReadinessCheckUpdaterTest.php b/setup/src/Magento/Setup/Test/Unit/Controller/ReadinessCheckUpdaterTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Controller/SelectVersionTest.php b/setup/src/Magento/Setup/Test/Unit/Controller/SelectVersionTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Controller/SessionTest.php b/setup/src/Magento/Setup/Test/Unit/Controller/SessionTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Controller/StartUpdaterTest.php b/setup/src/Magento/Setup/Test/Unit/Controller/StartUpdaterTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Controller/SuccessTest.php b/setup/src/Magento/Setup/Test/Unit/Controller/SuccessTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Controller/SystemConfigTest.php b/setup/src/Magento/Setup/Test/Unit/Controller/SystemConfigTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Controller/UpdateExtensionGridTest.php b/setup/src/Magento/Setup/Test/Unit/Controller/UpdateExtensionGridTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Controller/UpdaterSuccessTest.php b/setup/src/Magento/Setup/Test/Unit/Controller/UpdaterSuccessTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Controller/UrlCheckTest.php b/setup/src/Magento/Setup/Test/Unit/Controller/UrlCheckTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Controller/WebConfigurationTest.php b/setup/src/Magento/Setup/Test/Unit/Controller/WebConfigurationTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Fixtures/AttributeSet/AttributeSetFixtureTest.php b/setup/src/Magento/Setup/Test/Unit/Fixtures/AttributeSet/AttributeSetFixtureTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Fixtures/AttributeSet/PatternTest.php b/setup/src/Magento/Setup/Test/Unit/Fixtures/AttributeSet/PatternTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Fixtures/AttributeSet/SwatchesGeneratorTest.php b/setup/src/Magento/Setup/Test/Unit/Fixtures/AttributeSet/SwatchesGeneratorTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Fixtures/AttributeSetsFixtureTest.php b/setup/src/Magento/Setup/Test/Unit/Fixtures/AttributeSetsFixtureTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Fixtures/CatalogPriceRulesFixtureTest.php b/setup/src/Magento/Setup/Test/Unit/Fixtures/CatalogPriceRulesFixtureTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Fixtures/CategoriesFixtureTest.php b/setup/src/Magento/Setup/Test/Unit/Fixtures/CategoriesFixtureTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Fixtures/ConfigsApplyFixtureTest.php b/setup/src/Magento/Setup/Test/Unit/Fixtures/ConfigsApplyFixtureTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Fixtures/ConfigurableProductsFixtureTest.php b/setup/src/Magento/Setup/Test/Unit/Fixtures/ConfigurableProductsFixtureTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Fixtures/CustomerGroupsFixtureTest.php b/setup/src/Magento/Setup/Test/Unit/Fixtures/CustomerGroupsFixtureTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Fixtures/CustomersFixtureTest.php b/setup/src/Magento/Setup/Test/Unit/Fixtures/CustomersFixtureTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Fixtures/EavVariationsFixtureTest.php b/setup/src/Magento/Setup/Test/Unit/Fixtures/EavVariationsFixtureTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Fixtures/FixtureConfigTest.php b/setup/src/Magento/Setup/Test/Unit/Fixtures/FixtureConfigTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Fixtures/FixtureModelTest.php b/setup/src/Magento/Setup/Test/Unit/Fixtures/FixtureModelTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Fixtures/IndexersStatesApplyFixtureTest.php b/setup/src/Magento/Setup/Test/Unit/Fixtures/IndexersStatesApplyFixtureTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Fixtures/OrdersFixtureTest.php b/setup/src/Magento/Setup/Test/Unit/Fixtures/OrdersFixtureTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Fixtures/Quote/QuoteConfigurationTest.php b/setup/src/Magento/Setup/Test/Unit/Fixtures/Quote/QuoteConfigurationTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Fixtures/Quote/QuoteGeneratorFactoryTest.php b/setup/src/Magento/Setup/Test/Unit/Fixtures/Quote/QuoteGeneratorFactoryTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Fixtures/Quote/QuoteGeneratorTest.php b/setup/src/Magento/Setup/Test/Unit/Fixtures/Quote/QuoteGeneratorTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Fixtures/StoresFixtureTest.php b/setup/src/Magento/Setup/Test/Unit/Fixtures/StoresFixtureTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Fixtures/TaxRatesFixtureTest.php b/setup/src/Magento/Setup/Test/Unit/Fixtures/TaxRatesFixtureTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Fixtures/TaxRulesFixtureTest.php b/setup/src/Magento/Setup/Test/Unit/Fixtures/TaxRulesFixtureTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/Address/AddressDataGeneratorTest.php b/setup/src/Magento/Setup/Test/Unit/Model/Address/AddressDataGeneratorTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/AdminAccountFactoryTest.php b/setup/src/Magento/Setup/Test/Unit/Model/AdminAccountFactoryTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/AdminAccountTest.php b/setup/src/Magento/Setup/Test/Unit/Model/AdminAccountTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/BasePackageInfoTest.php b/setup/src/Magento/Setup/Test/Unit/Model/BasePackageInfoTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/Complex/ComplexGeneratorTest.php b/setup/src/Magento/Setup/Test/Unit/Model/Complex/ComplexGeneratorTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/Complex/PatternTest.php b/setup/src/Magento/Setup/Test/Unit/Model/Complex/PatternTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/ConfigGeneratorTest.php b/setup/src/Magento/Setup/Test/Unit/Model/ConfigGeneratorTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/ConfigModelTest.php b/setup/src/Magento/Setup/Test/Unit/Model/ConfigModelTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/ConfigOptionsList/CacheTest.php b/setup/src/Magento/Setup/Test/Unit/Model/ConfigOptionsList/CacheTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/ConfigOptionsList/PageCacheTest.php b/setup/src/Magento/Setup/Test/Unit/Model/ConfigOptionsList/PageCacheTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/ConfigOptionsList/SessionTest.php b/setup/src/Magento/Setup/Test/Unit/Model/ConfigOptionsList/SessionTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/ConfigOptionsListTest.php b/setup/src/Magento/Setup/Test/Unit/Model/ConfigOptionsListTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/Cron/Helper/ModuleUninstallTest.php b/setup/src/Magento/Setup/Test/Unit/Model/Cron/Helper/ModuleUninstallTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/Cron/Helper/ThemeUninstallTest.php b/setup/src/Magento/Setup/Test/Unit/Model/Cron/Helper/ThemeUninstallTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/Cron/JobComponentUninstallTest.php b/setup/src/Magento/Setup/Test/Unit/Model/Cron/JobComponentUninstallTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/Cron/JobDbRollbackTest.php b/setup/src/Magento/Setup/Test/Unit/Model/Cron/JobDbRollbackTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/Cron/JobFactoryTest.php b/setup/src/Magento/Setup/Test/Unit/Model/Cron/JobFactoryTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/Cron/JobModuleTest.php b/setup/src/Magento/Setup/Test/Unit/Model/Cron/JobModuleTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/Cron/JobSetCacheTest.php b/setup/src/Magento/Setup/Test/Unit/Model/Cron/JobSetCacheTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/Cron/JobSetMaintenanceModeTest.php b/setup/src/Magento/Setup/Test/Unit/Model/Cron/JobSetMaintenanceModeTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/Cron/JobStaticRegenerateTest.php b/setup/src/Magento/Setup/Test/Unit/Model/Cron/JobStaticRegenerateTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/Cron/JobUpgradeTest.php b/setup/src/Magento/Setup/Test/Unit/Model/Cron/JobUpgradeTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/Cron/Queue/ReaderTest.php b/setup/src/Magento/Setup/Test/Unit/Model/Cron/Queue/ReaderTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/Cron/Queue/WriterTest.php b/setup/src/Magento/Setup/Test/Unit/Model/Cron/Queue/WriterTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/Cron/QueueTest.php b/setup/src/Magento/Setup/Test/Unit/Model/Cron/QueueTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/Cron/ReadinessCheckTest.php b/setup/src/Magento/Setup/Test/Unit/Model/Cron/ReadinessCheckTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/Cron/StatusTest.php b/setup/src/Magento/Setup/Test/Unit/Model/Cron/StatusTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/CronScriptReadinessCheckTest.php b/setup/src/Magento/Setup/Test/Unit/Model/CronScriptReadinessCheckTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/CryptKeyGeneratorTest.php b/setup/src/Magento/Setup/Test/Unit/Model/CryptKeyGeneratorTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/Customer/CustomerDataGeneratorTest.php b/setup/src/Magento/Setup/Test/Unit/Model/Customer/CustomerDataGeneratorTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/DataGeneratorTest.php b/setup/src/Magento/Setup/Test/Unit/Model/DataGeneratorTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/DateTime/DateTimeProviderTest.php b/setup/src/Magento/Setup/Test/Unit/Model/DateTime/DateTimeProviderTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/DateTime/TimeZoneProviderTest.php b/setup/src/Magento/Setup/Test/Unit/Model/DateTime/TimeZoneProviderTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/DependencyReadinessCheckTest.php b/setup/src/Magento/Setup/Test/Unit/Model/DependencyReadinessCheckTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/Description/DescriptionGeneratorTest.php b/setup/src/Magento/Setup/Test/Unit/Model/Description/DescriptionGeneratorTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/Description/DescriptionParagraphGeneratorTest.php b/setup/src/Magento/Setup/Test/Unit/Model/Description/DescriptionParagraphGeneratorTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/Description/DescriptionSentenceGeneratorTest.php b/setup/src/Magento/Setup/Test/Unit/Model/Description/DescriptionSentenceGeneratorTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/Description/Mixin/BoldMixinTest.php b/setup/src/Magento/Setup/Test/Unit/Model/Description/Mixin/BoldMixinTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/Description/Mixin/BrakeMixinTest.php b/setup/src/Magento/Setup/Test/Unit/Model/Description/Mixin/BrakeMixinTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/Description/Mixin/HeaderMixinTest.php b/setup/src/Magento/Setup/Test/Unit/Model/Description/Mixin/HeaderMixinTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/Description/Mixin/Helper/RandomWordSelectorTest.php b/setup/src/Magento/Setup/Test/Unit/Model/Description/Mixin/Helper/RandomWordSelectorTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/Description/Mixin/Helper/WordWrapperTest.php b/setup/src/Magento/Setup/Test/Unit/Model/Description/Mixin/Helper/WordWrapperTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/Description/Mixin/ItalicMixinTest.php b/setup/src/Magento/Setup/Test/Unit/Model/Description/Mixin/ItalicMixinTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/Description/Mixin/ParagraphMixinTest.php b/setup/src/Magento/Setup/Test/Unit/Model/Description/Mixin/ParagraphMixinTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/Description/Mixin/SpanMixinTest.php b/setup/src/Magento/Setup/Test/Unit/Model/Description/Mixin/SpanMixinTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/Description/MixinManagerTest.php b/setup/src/Magento/Setup/Test/Unit/Model/Description/MixinManagerTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/DictionaryTest.php b/setup/src/Magento/Setup/Test/Unit/Model/DictionaryTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/FixtureGenerator/SqlCollectorTest.php b/setup/src/Magento/Setup/Test/Unit/Model/FixtureGenerator/SqlCollectorTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/GeneratorTest.php b/setup/src/Magento/Setup/Test/Unit/Model/GeneratorTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/Grid/ExtensionTest.php b/setup/src/Magento/Setup/Test/Unit/Model/Grid/ExtensionTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/Grid/ModuleTest.php b/setup/src/Magento/Setup/Test/Unit/Model/Grid/ModuleTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/Grid/TypeMapperTest.php b/setup/src/Magento/Setup/Test/Unit/Model/Grid/TypeMapperTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/Installer/ProgressFactoryTest.php b/setup/src/Magento/Setup/Test/Unit/Model/Installer/ProgressFactoryTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/Installer/ProgressTest.php b/setup/src/Magento/Setup/Test/Unit/Model/Installer/ProgressTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/InstallerFactoryTest.php b/setup/src/Magento/Setup/Test/Unit/Model/InstallerFactoryTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/InstallerTest.php b/setup/src/Magento/Setup/Test/Unit/Model/InstallerTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/LicenseTest.php b/setup/src/Magento/Setup/Test/Unit/Model/LicenseTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/ModuleContextTest.php b/setup/src/Magento/Setup/Test/Unit/Model/ModuleContextTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/ModuleRegistryUninstallerTest.php b/setup/src/Magento/Setup/Test/Unit/Model/ModuleRegistryUninstallerTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/ModuleStatusFactoryTest.php b/setup/src/Magento/Setup/Test/Unit/Model/ModuleStatusFactoryTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/ModuleStatusTest.php b/setup/src/Magento/Setup/Test/Unit/Model/ModuleStatusTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/ModuleUninstallerTest.php b/setup/src/Magento/Setup/Test/Unit/Model/ModuleUninstallerTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/NavigationTest.php b/setup/src/Magento/Setup/Test/Unit/Model/NavigationTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/ObjectManagerProviderTest.php b/setup/src/Magento/Setup/Test/Unit/Model/ObjectManagerProviderTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/PackagesAuthTest.php b/setup/src/Magento/Setup/Test/Unit/Model/PackagesAuthTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/PackagesDataTest.php b/setup/src/Magento/Setup/Test/Unit/Model/PackagesDataTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/PayloadValidatorTest.php b/setup/src/Magento/Setup/Test/Unit/Model/PayloadValidatorTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/PhpInformationTest.php b/setup/src/Magento/Setup/Test/Unit/Model/PhpInformationTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/PhpReadinessCheckTest.php b/setup/src/Magento/Setup/Test/Unit/Model/PhpReadinessCheckTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/SearchTermDescriptionGeneratorTest.php b/setup/src/Magento/Setup/Test/Unit/Model/SearchTermDescriptionGeneratorTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/SearchTermManagerTest.php b/setup/src/Magento/Setup/Test/Unit/Model/SearchTermManagerTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/StoreConfigurationDataMapperTest.php b/setup/src/Magento/Setup/Test/Unit/Model/StoreConfigurationDataMapperTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/SystemPackageTest.php b/setup/src/Magento/Setup/Test/Unit/Model/SystemPackageTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/ThemeDependencyCheckerFactoryTest.php b/setup/src/Magento/Setup/Test/Unit/Model/ThemeDependencyCheckerFactoryTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/UninstallCollectorTest.php b/setup/src/Magento/Setup/Test/Unit/Model/UninstallCollectorTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/UninstallDependencyCheckTest.php b/setup/src/Magento/Setup/Test/Unit/Model/UninstallDependencyCheckTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/UpdaterTaskCreatorTest.php b/setup/src/Magento/Setup/Test/Unit/Model/UpdaterTaskCreatorTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/UpdaterTest.php b/setup/src/Magento/Setup/Test/Unit/Model/UpdaterTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/WebLoggerTest.php b/setup/src/Magento/Setup/Test/Unit/Model/WebLoggerTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Model/_files/dictionary.csv b/setup/src/Magento/Setup/Test/Unit/Model/_files/dictionary.csv
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/ConfigGeneratorTest.php b/setup/src/Magento/Setup/Test/Unit/Module/ConfigGeneratorTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/ConnectionFactoryTest.php b/setup/src/Magento/Setup/Test/Unit/Module/ConnectionFactoryTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/DataSetupFactoryTest.php b/setup/src/Magento/Setup/Test/Unit/Module/DataSetupFactoryTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Dependency/Parser/CodeTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Dependency/Parser/CodeTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Dependency/Parser/Composer/JsonTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Dependency/Parser/Composer/JsonTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Dependency/Parser/Config/XmlTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Dependency/Parser/Config/XmlTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Dependency/Report/Builder/AbstractBuilderTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Dependency/Report/Builder/AbstractBuilderTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Dependency/Report/Circular/Data/ChainTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Dependency/Report/Circular/Data/ChainTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Dependency/Report/Circular/Data/ConfigTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Dependency/Report/Circular/Data/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Dependency/Report/Circular/Data/ModuleTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Dependency/Report/Circular/Data/ModuleTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Dependency/Report/Data/Config/AbstractConfigTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Dependency/Report/Data/Config/AbstractConfigTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Dependency/Report/Dependency/Data/ConfigTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Dependency/Report/Dependency/Data/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Dependency/Report/Dependency/Data/DependencyTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Dependency/Report/Dependency/Data/DependencyTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Dependency/Report/Dependency/Data/ModuleTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Dependency/Report/Dependency/Data/ModuleTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Dependency/Report/Framework/BuilderTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Dependency/Report/Framework/BuilderTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Dependency/Report/Framework/Data/ConfigTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Dependency/Report/Framework/Data/ConfigTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Dependency/Report/Framework/Data/DependencyTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Dependency/Report/Framework/Data/DependencyTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Dependency/Report/Framework/Data/ModuleTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Dependency/Report/Framework/Data/ModuleTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Dependency/Report/Writer/Csv/AbstractWriterTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Dependency/Report/Writer/Csv/AbstractWriterTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/App/Task/ApplicationCodeGeneratorTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Di/App/Task/ApplicationCodeGeneratorTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/App/Task/AreaTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Di/App/Task/AreaTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/App/Task/InterceptionCacheTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Di/App/Task/InterceptionCacheTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/App/Task/OperationFactoryTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Di/App/Task/OperationFactoryTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/App/Task/ProxyGeneratorTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Di/App/Task/ProxyGeneratorTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/App/Task/RepositoryGeneratorTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Di/App/Task/RepositoryGeneratorTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/App/Task/ServiceDataAttributesGeneratorTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Di/App/Task/ServiceDataAttributesGeneratorTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Generator/InterceptionConfigurationBuilderTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Generator/InterceptionConfigurationBuilderTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Reader/ClassReaderDecoratorTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Reader/ClassReaderDecoratorTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Reader/ClassesScannerTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Reader/ClassesScannerTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Reader/FileClassScannerTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Reader/FileClassScannerTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Reader/FileScannerTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Reader/FileScannerTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Reader/InstancesNamesList/AreaTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Reader/InstancesNamesList/AreaTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Reader/InstancesNamesList/DirectoryTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Reader/InstancesNamesList/DirectoryTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Reader/InstancesNamesList/InterceptionsTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Reader/InstancesNamesList/InterceptionsTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Reader/_files/classes.php b/setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Reader/_files/classes.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Scanner/ArrayScannerTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Scanner/ArrayScannerTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Scanner/CompositeScannerTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Scanner/CompositeScannerTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Scanner/ConfigurationScannerTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Scanner/ConfigurationScannerTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Scanner/DirectoryScannerTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Scanner/DirectoryScannerTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Scanner/PhpScannerTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Scanner/PhpScannerTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Scanner/PluginScannerTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Scanner/PluginScannerTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Scanner/ServiceDataAttributesScannerTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Scanner/ServiceDataAttributesScannerTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Scanner/XmlInterceptorScannerTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Scanner/XmlInterceptorScannerTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Scanner/XmlScannerTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Di/Code/Scanner/XmlScannerTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/Compiler/ArgumentsResolverTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Di/Compiler/ArgumentsResolverTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/Compiler/Config/Chain/ArgumentsSerializationTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Di/Compiler/Config/Chain/ArgumentsSerializationTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/Compiler/Config/Chain/BackslashTrimTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Di/Compiler/Config/Chain/BackslashTrimTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/Compiler/Config/Chain/InterceptorSubstitutionTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Di/Compiler/Config/Chain/InterceptorSubstitutionTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/Compiler/Config/Chain/PreferencesResolvingTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Di/Compiler/Config/Chain/PreferencesResolvingTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/Compiler/Config/ModificationChainTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Di/Compiler/Config/ModificationChainTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/Compiler/Config/ReaderTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Di/Compiler/Config/ReaderTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/Compiler/ConstructorArgumentTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Di/Compiler/ConstructorArgumentTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/Definition/CollectionTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Di/Definition/CollectionTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/_files/additional.php b/setup/src/Magento/Setup/Test/Unit/Module/Di/_files/additional.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/_files/app/bootstrap.php b/setup/src/Magento/Setup/Test/Unit/Module/Di/_files/app/bootstrap.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/_files/app/code/Magento/SomeModule/Api/Data/SomeInterface.php b/setup/src/Magento/Setup/Test/Unit/Module/Di/_files/app/code/Magento/SomeModule/Api/Data/SomeInterface.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/_files/app/code/Magento/SomeModule/Element.php b/setup/src/Magento/Setup/Test/Unit/Module/Di/_files/app/code/Magento/SomeModule/Element.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/_files/app/code/Magento/SomeModule/ElementFactory.php b/setup/src/Magento/Setup/Test/Unit/Module/Di/_files/app/code/Magento/SomeModule/ElementFactory.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/_files/app/code/Magento/SomeModule/Helper/Test.php b/setup/src/Magento/Setup/Test/Unit/Module/Di/_files/app/code/Magento/SomeModule/Helper/Test.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/_files/app/code/Magento/SomeModule/Model/DoubleColon.php b/setup/src/Magento/Setup/Test/Unit/Module/Di/_files/app/code/Magento/SomeModule/Model/DoubleColon.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/_files/app/code/Magento/SomeModule/Model/Test.php b/setup/src/Magento/Setup/Test/Unit/Module/Di/_files/app/code/Magento/SomeModule/Model/Test.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/_files/app/code/Magento/SomeModule/etc/adminhtml/system.xml b/setup/src/Magento/Setup/Test/Unit/Module/Di/_files/app/code/Magento/SomeModule/etc/adminhtml/system.xml
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/_files/app/code/Magento/SomeModule/etc/di.xml b/setup/src/Magento/Setup/Test/Unit/Module/Di/_files/app/code/Magento/SomeModule/etc/di.xml
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/_files/app/code/Magento/SomeModule/etc/source/PhpExt.php/content b/setup/src/Magento/Setup/Test/Unit/Module/Di/_files/app/code/Magento/SomeModule/etc/source/PhpExt.php/content
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/_files/app/code/Magento/SomeModule/view/frontend/default.xml b/setup/src/Magento/Setup/Test/Unit/Module/Di/_files/app/code/Magento/SomeModule/view/frontend/default.xml
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/_files/app/design/adminhtml/default/backend/layout.xml b/setup/src/Magento/Setup/Test/Unit/Module/Di/_files/app/design/adminhtml/default/backend/layout.xml
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/_files/app/etc/additional.xml b/setup/src/Magento/Setup/Test/Unit/Module/Di/_files/app/etc/additional.xml
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/_files/app/etc/config.xml b/setup/src/Magento/Setup/Test/Unit/Module/Di/_files/app/etc/config.xml
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/_files/app/etc/di/config.xml b/setup/src/Magento/Setup/Test/Unit/Module/Di/_files/app/etc/di/config.xml
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/_files/extension_attributes.xml b/setup/src/Magento/Setup/Test/Unit/Module/Di/_files/extension_attributes.xml
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Di/_files/var/generation/.keep b/setup/src/Magento/Setup/Test/Unit/Module/Di/_files/var/generation/.keep
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/I18n/ContextTest.php b/setup/src/Magento/Setup/Test/Unit/Module/I18n/ContextTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/I18n/Dictionary/GeneratorTest.php b/setup/src/Magento/Setup/Test/Unit/Module/I18n/Dictionary/GeneratorTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/I18n/Dictionary/Loader/File/AbstractFileTest.php b/setup/src/Magento/Setup/Test/Unit/Module/I18n/Dictionary/Loader/File/AbstractFileTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/I18n/Dictionary/Options/ResolverFactoryTest.php b/setup/src/Magento/Setup/Test/Unit/Module/I18n/Dictionary/Options/ResolverFactoryTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/I18n/Dictionary/Options/ResolverTest.php b/setup/src/Magento/Setup/Test/Unit/Module/I18n/Dictionary/Options/ResolverTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/I18n/Dictionary/Options/_files/source/app/code/module1/.gitignore b/setup/src/Magento/Setup/Test/Unit/Module/I18n/Dictionary/Options/_files/source/app/code/module1/.gitignore
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/I18n/Dictionary/Options/_files/source/app/code/module2/.gitignore b/setup/src/Magento/Setup/Test/Unit/Module/I18n/Dictionary/Options/_files/source/app/code/module2/.gitignore
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/I18n/Dictionary/Options/_files/source/app/design/.gitignore b/setup/src/Magento/Setup/Test/Unit/Module/I18n/Dictionary/Options/_files/source/app/design/.gitignore
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/I18n/Dictionary/Options/_files/source/lib/web/mage/.gitignore b/setup/src/Magento/Setup/Test/Unit/Module/I18n/Dictionary/Options/_files/source/lib/web/mage/.gitignore
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/I18n/Dictionary/Options/_files/source/lib/web/varien/.gitignore b/setup/src/Magento/Setup/Test/Unit/Module/I18n/Dictionary/Options/_files/source/lib/web/varien/.gitignore
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/I18n/Dictionary/PhraseTest.php b/setup/src/Magento/Setup/Test/Unit/Module/I18n/Dictionary/PhraseTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/I18n/Dictionary/Writer/Csv/StdoTest.php b/setup/src/Magento/Setup/Test/Unit/Module/I18n/Dictionary/Writer/Csv/StdoTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/I18n/Dictionary/Writer/CsvTest.php b/setup/src/Magento/Setup/Test/Unit/Module/I18n/Dictionary/Writer/CsvTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/I18n/Dictionary/Writer/_files/.gitignore b/setup/src/Magento/Setup/Test/Unit/Module/I18n/Dictionary/Writer/_files/.gitignore
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/I18n/DictionaryTest.php b/setup/src/Magento/Setup/Test/Unit/Module/I18n/DictionaryTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/I18n/FactoryTest.php b/setup/src/Magento/Setup/Test/Unit/Module/I18n/FactoryTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/I18n/FilesCollectorTest.php b/setup/src/Magento/Setup/Test/Unit/Module/I18n/FilesCollectorTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/I18n/LocaleTest.php b/setup/src/Magento/Setup/Test/Unit/Module/I18n/LocaleTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/I18n/Pack/GeneratorTest.php b/setup/src/Magento/Setup/Test/Unit/Module/I18n/Pack/GeneratorTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/I18n/Pack/Writer/File/CsvTest.php b/setup/src/Magento/Setup/Test/Unit/Module/I18n/Pack/Writer/File/CsvTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/I18n/Pack/Writer/File/_files/ioMock.php b/setup/src/Magento/Setup/Test/Unit/Module/I18n/Pack/Writer/File/_files/ioMock.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/I18n/Parser/AbstractParserTest.php b/setup/src/Magento/Setup/Test/Unit/Module/I18n/Parser/AbstractParserTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/I18n/Parser/Adapter/AbstractAdapterTest.php b/setup/src/Magento/Setup/Test/Unit/Module/I18n/Parser/Adapter/AbstractAdapterTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/I18n/Parser/Adapter/HtmlTest.php b/setup/src/Magento/Setup/Test/Unit/Module/I18n/Parser/Adapter/HtmlTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/I18n/Parser/Adapter/JsTest.php b/setup/src/Magento/Setup/Test/Unit/Module/I18n/Parser/Adapter/JsTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/I18n/Parser/Adapter/Php/Tokenizer/PhraseCollectorTest.php b/setup/src/Magento/Setup/Test/Unit/Module/I18n/Parser/Adapter/Php/Tokenizer/PhraseCollectorTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/I18n/Parser/Adapter/Php/Tokenizer/TokenTest.php b/setup/src/Magento/Setup/Test/Unit/Module/I18n/Parser/Adapter/Php/Tokenizer/TokenTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/I18n/Parser/Adapter/Php/TokenizerTest.php b/setup/src/Magento/Setup/Test/Unit/Module/I18n/Parser/Adapter/Php/TokenizerTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/I18n/Parser/Adapter/Php/_files/objectsCode.php.txt b/setup/src/Magento/Setup/Test/Unit/Module/I18n/Parser/Adapter/Php/_files/objectsCode.php.txt
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/I18n/Parser/Adapter/PhpTest.php b/setup/src/Magento/Setup/Test/Unit/Module/I18n/Parser/Adapter/PhpTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/I18n/Parser/Adapter/XmlTest.php b/setup/src/Magento/Setup/Test/Unit/Module/I18n/Parser/Adapter/XmlTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/I18n/Parser/Adapter/_files/default.xml b/setup/src/Magento/Setup/Test/Unit/Module/I18n/Parser/Adapter/_files/default.xml
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/I18n/Parser/Adapter/_files/default_di.xml b/setup/src/Magento/Setup/Test/Unit/Module/I18n/Parser/Adapter/_files/default_di.xml
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/I18n/Parser/Adapter/_files/email.html b/setup/src/Magento/Setup/Test/Unit/Module/I18n/Parser/Adapter/_files/email.html
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/I18n/Parser/Adapter/_files/file.js b/setup/src/Magento/Setup/Test/Unit/Module/I18n/Parser/Adapter/_files/file.js
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/I18n/Parser/ParserTest.php b/setup/src/Magento/Setup/Test/Unit/Module/I18n/Parser/ParserTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/I18n/_files/files_collector/default.xml b/setup/src/Magento/Setup/Test/Unit/Module/I18n/_files/files_collector/default.xml
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/I18n/_files/files_collector/file.js b/setup/src/Magento/Setup/Test/Unit/Module/I18n/_files/files_collector/file.js
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/ResourceFactoryTest.php b/setup/src/Magento/Setup/Test/Unit/Module/ResourceFactoryTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Setup/ResourceConfigTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Setup/ResourceConfigTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/Setup/SetupCacheTest.php b/setup/src/Magento/Setup/Test/Unit/Module/Setup/SetupCacheTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/SetupFactoryTest.php b/setup/src/Magento/Setup/Test/Unit/Module/SetupFactoryTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Module/SetupTest.php b/setup/src/Magento/Setup/Test/Unit/Module/SetupTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Mvc/Bootstrap/InitParamListenerTest.php b/setup/src/Magento/Setup/Test/Unit/Mvc/Bootstrap/InitParamListenerTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Validator/DbValidatorTest.php b/setup/src/Magento/Setup/Test/Unit/Validator/DbValidatorTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Test/Unit/Validator/IpValidatorTest.php b/setup/src/Magento/Setup/Test/Unit/Validator/IpValidatorTest.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Validator/AdminCredentialsValidator.php b/setup/src/Magento/Setup/Validator/AdminCredentialsValidator.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Validator/DbValidator.php b/setup/src/Magento/Setup/Validator/DbValidator.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Validator/IpValidator.php b/setup/src/Magento/Setup/Validator/IpValidator.php
old mode 100644
new mode 100755
diff --git a/setup/src/Magento/Setup/Validator/RedisConnectionValidator.php b/setup/src/Magento/Setup/Validator/RedisConnectionValidator.php
old mode 100644
new mode 100755
diff --git a/setup/view/.htaccess b/setup/view/.htaccess
old mode 100644
new mode 100755
diff --git a/setup/view/error/401.phtml b/setup/view/error/401.phtml
old mode 100644
new mode 100755
diff --git a/setup/view/error/404.phtml b/setup/view/error/404.phtml
old mode 100644
new mode 100755
diff --git a/setup/view/error/index.phtml b/setup/view/error/index.phtml
old mode 100644
new mode 100755
diff --git a/setup/view/layout/layout.phtml b/setup/view/layout/layout.phtml
old mode 100644
new mode 100755
diff --git a/setup/view/magento/setup/add-database.phtml b/setup/view/magento/setup/add-database.phtml
old mode 100644
new mode 100755
diff --git a/setup/view/magento/setup/complete-backup/progress.phtml b/setup/view/magento/setup/complete-backup/progress.phtml
old mode 100644
new mode 100755
diff --git a/setup/view/magento/setup/create-admin-account.phtml b/setup/view/magento/setup/create-admin-account.phtml
old mode 100644
new mode 100755
diff --git a/setup/view/magento/setup/create-backup.phtml b/setup/view/magento/setup/create-backup.phtml
old mode 100644
new mode 100755
diff --git a/setup/view/magento/setup/customize-your-store.phtml b/setup/view/magento/setup/customize-your-store.phtml
old mode 100644
new mode 100755
diff --git a/setup/view/magento/setup/data-option.phtml b/setup/view/magento/setup/data-option.phtml
old mode 100644
new mode 100755
diff --git a/setup/view/magento/setup/extension-grid.phtml b/setup/view/magento/setup/extension-grid.phtml
old mode 100644
new mode 100755
diff --git a/setup/view/magento/setup/home.phtml b/setup/view/magento/setup/home.phtml
old mode 100644
new mode 100755
diff --git a/setup/view/magento/setup/index.phtml b/setup/view/magento/setup/index.phtml
old mode 100644
new mode 100755
diff --git a/setup/view/magento/setup/install-extension-grid.phtml b/setup/view/magento/setup/install-extension-grid.phtml
old mode 100644
new mode 100755
diff --git a/setup/view/magento/setup/install.phtml b/setup/view/magento/setup/install.phtml
old mode 100644
new mode 100755
diff --git a/setup/view/magento/setup/landing.phtml b/setup/view/magento/setup/landing.phtml
old mode 100644
new mode 100755
diff --git a/setup/view/magento/setup/license.phtml b/setup/view/magento/setup/license.phtml
old mode 100644
new mode 100755
diff --git a/setup/view/magento/setup/marketplace-credentials.phtml b/setup/view/magento/setup/marketplace-credentials.phtml
old mode 100644
new mode 100755
diff --git a/setup/view/magento/setup/module-grid.phtml b/setup/view/magento/setup/module-grid.phtml
old mode 100644
new mode 100755
diff --git a/setup/view/magento/setup/navigation/header-bar.phtml b/setup/view/magento/setup/navigation/header-bar.phtml
old mode 100644
new mode 100755
diff --git a/setup/view/magento/setup/navigation/menu.phtml b/setup/view/magento/setup/navigation/menu.phtml
old mode 100644
new mode 100755
diff --git a/setup/view/magento/setup/navigation/side-menu.phtml b/setup/view/magento/setup/navigation/side-menu.phtml
old mode 100644
new mode 100755
diff --git a/setup/view/magento/setup/popupauth.phtml b/setup/view/magento/setup/popupauth.phtml
old mode 100644
new mode 100755
diff --git a/setup/view/magento/setup/readiness-check.phtml b/setup/view/magento/setup/readiness-check.phtml
old mode 100644
new mode 100755
diff --git a/setup/view/magento/setup/select-version.phtml b/setup/view/magento/setup/select-version.phtml
old mode 100644
new mode 100755
diff --git a/setup/view/magento/setup/start-updater.phtml b/setup/view/magento/setup/start-updater.phtml
old mode 100644
new mode 100755
diff --git a/setup/view/magento/setup/success.phtml b/setup/view/magento/setup/success.phtml
old mode 100644
new mode 100755
diff --git a/setup/view/magento/setup/system-config.phtml b/setup/view/magento/setup/system-config.phtml
old mode 100644
new mode 100755
diff --git a/setup/view/magento/setup/update-extension-grid.phtml b/setup/view/magento/setup/update-extension-grid.phtml
old mode 100644
new mode 100755
diff --git a/setup/view/magento/setup/updater-success.phtml b/setup/view/magento/setup/updater-success.phtml
old mode 100644
new mode 100755
diff --git a/setup/view/magento/setup/web-configuration.phtml b/setup/view/magento/setup/web-configuration.phtml
old mode 100644
new mode 100755
diff --git a/setup/view/styles/lib/variables/_buttons.less b/setup/view/styles/lib/variables/_buttons.less
old mode 100644
new mode 100755
diff --git a/setup/view/styles/lib/variables/_colors.less b/setup/view/styles/lib/variables/_colors.less
old mode 100644
new mode 100755
diff --git a/setup/view/styles/lib/variables/_typography.less b/setup/view/styles/lib/variables/_typography.less
old mode 100644
new mode 100755
diff --git a/vendor/.htaccess b/vendor/.htaccess
old mode 100644
new mode 100755
-- 
GitLab


From 564e7b09a58b6c315c2075352a4a8ec33f9f5581 Mon Sep 17 00:00:00 2001
From: dewitast <dewitast20@gmail.com>
Date: Thu, 8 Feb 2018 04:26:58 +0700
Subject: [PATCH 05/19] add firebase script

---
 .../frontend/layout/messaging_index_index.xml |   6 +-
 .../view/frontend/templates/messaging.phtml   |  54 ++-
 .../Messaging/view/frontend/web/js/angular.js | 332 ------------------
 .../Messaging/view/frontend/web/js/chat.js    |  26 +-
 .../view/frontend/web/js/firebase.js          |   9 +
 .../view/frontend/web/js/firebaselib.js       |  20 ++
 .../Messaging/view/frontend/web/js/jquery.js  |   6 -
 7 files changed, 75 insertions(+), 378 deletions(-)
 delete mode 100644 app/code/Magento/Messaging/view/frontend/web/js/angular.js
 create mode 100644 app/code/Magento/Messaging/view/frontend/web/js/firebase.js
 create mode 100644 app/code/Magento/Messaging/view/frontend/web/js/firebaselib.js
 delete mode 100644 app/code/Magento/Messaging/view/frontend/web/js/jquery.js

diff --git a/app/code/Magento/Messaging/view/frontend/layout/messaging_index_index.xml b/app/code/Magento/Messaging/view/frontend/layout/messaging_index_index.xml
index d61a1e1a573..09125c78958 100644
--- a/app/code/Magento/Messaging/view/frontend/layout/messaging_index_index.xml
+++ b/app/code/Magento/Messaging/view/frontend/layout/messaging_index_index.xml
@@ -3,10 +3,10 @@
 		<title>Messaging</title>
 		<css src="Magento_Messaging::css/chat.css" />
 		<script src="Magento_Messaging::js/chat.js" />
-		<script src="Magento_Messaging::js/angular.js" />
-		<script src="Magento_Messaging::js/jquery.js" />
+		<script src="Magento_Messaging::js/firebaselib.js" />
+		<script src="Magento_Messaging::js/firebase.js" />
 	</head>
-    <body ng-app="chatlistbox" ng-controller="controller">
+    <body>
         <referenceContainer name="content">
             <block class="Magento\Messaging\Block\Messaging" name="messaging" template="messaging.phtml" />
         </referenceContainer>
diff --git a/app/code/Magento/Messaging/view/frontend/templates/messaging.phtml b/app/code/Magento/Messaging/view/frontend/templates/messaging.phtml
index 6094746e846..49c133589ff 100644
--- a/app/code/Magento/Messaging/view/frontend/templates/messaging.phtml
+++ b/app/code/Magento/Messaging/view/frontend/templates/messaging.phtml
@@ -3,26 +3,48 @@
 		<span class="name">Chats</span>
 	</div>
 	<div class = "chat-search">
-		<form ng-submit="submit1()">
+		<form >
             <input type="text" name="chattext" placeholder="Search name" class="search-name">
             <input type="submit" name="search" value="Cari" class="search-button">
         </form>
 	</div>
-	<div class="chat-list" ng-repeat="chatroom in chatrooms">
-		<div class="chatroom-item">
-			<div class="chatroom-username">
-				<span>{{chatroom.username}}</span>
-			<div class="chatroom-lastmessage">
-				<span>{{chatroom.lastmessage}}</span>
-			</div>
-		</div>
+	<div id="chatlist" class="chat-list">
+		<!-- <div class="chatroom-item">
+		</div> -->
 	</div>
 </div>
+	<script>
+	var startListening = function() {
+		console.log("startListening");
+        firebase.database().ref().on('child_added', function(snapshot) {
+            var chatrooms = snapshot.val();
+            
+            if (chatrooms.sender=="person1"){
+            	console.log("yeay");
+	            var chatroom_item = document.createElement("div");
+	            chatroom_item.classList.add('chatroom-item');
 
-<script type="text/javascript">
-require(['jquery'],function($){
-    $(document).ready(function() {
-    	alert('hai');
-    });
-});
-</script>
\ No newline at end of file
+	            var chatroom_username = document.createElement("div");
+	            chatroom_username.classList.add('chatroom-username');
+
+	            var chatroom_lastmessage = document.createElement("div");
+	            chatroom_lastmessage.classList.add('chatroom-lastmessage');
+
+	            var chatroom_username_span = document.createElement("span");
+	            chatroom_username_span.textContent = chatrooms.receiver;
+	            chatroom_username.appendChild(chatroom_username_span);
+	            var chatroom_lastmessage_span = document.createElement("span");
+	            chatroom_lastmessage_span.textContent = chatrooms.message;
+	            chatroom_lastmessage.appendChild(chatroom_lastmessage_span);
+
+	            chatroom_item.appendChild(chatroom_username);
+				chatroom_item.appendChild(chatroom_lastmessage);
+	            var chatlist = document.getElementById("chatlist");
+	           
+            	chatlist.appendChild(chatroom_item);
+            } 
+        });
+    }
+    startListening();
+
+  	</script>
\ No newline at end of file
diff --git a/app/code/Magento/Messaging/view/frontend/web/js/angular.js b/app/code/Magento/Messaging/view/frontend/web/js/angular.js
deleted file mode 100644
index 57e6eddb699..00000000000
--- a/app/code/Magento/Messaging/view/frontend/web/js/angular.js
+++ /dev/null
@@ -1,332 +0,0 @@
-/*
- AngularJS v1.6.4
- (c) 2010-2017 Google, Inc. http://angularjs.org
- License: MIT
-*/
-(function(x){'use strict';function L(a,b){b=b||Error;return function(){var d=arguments[0],c;c="["+(a?a+":":"")+d+"] http://errors.angularjs.org/1.6.4/"+(a?a+"/":"")+d;for(d=1;d<arguments.length;d++){c=c+(1==d?"?":"&")+"p"+(d-1)+"=";var e=encodeURIComponent,f;f=arguments[d];f="function"==typeof f?f.toString().replace(/ \{[\s\S]*$/,""):"undefined"==typeof f?"undefined":"string"!=typeof f?JSON.stringify(f):f;c+=e(f)}return new b(c)}}function me(a){if(C(a))u(a.objectMaxDepth)&&(Ic.objectMaxDepth=Sb(a.objectMaxDepth)?
-a.objectMaxDepth:NaN);else return Ic}function Sb(a){return ba(a)&&0<a}function qa(a){if(null==a||Wa(a))return!1;if(H(a)||F(a)||B&&a instanceof B)return!0;var b="length"in Object(a)&&a.length;return ba(b)&&(0<=b&&(b-1 in a||a instanceof Array)||"function"===typeof a.item)}function q(a,b,d){var c,e;if(a)if(D(a))for(c in a)"prototype"!==c&&"length"!==c&&"name"!==c&&a.hasOwnProperty(c)&&b.call(d,a[c],c,a);else if(H(a)||qa(a)){var f="object"!==typeof a;c=0;for(e=a.length;c<e;c++)(f||c in a)&&b.call(d,
-a[c],c,a)}else if(a.forEach&&a.forEach!==q)a.forEach(b,d,a);else if(Jc(a))for(c in a)b.call(d,a[c],c,a);else if("function"===typeof a.hasOwnProperty)for(c in a)a.hasOwnProperty(c)&&b.call(d,a[c],c,a);else for(c in a)ua.call(a,c)&&b.call(d,a[c],c,a);return a}function Kc(a,b,d){for(var c=Object.keys(a).sort(),e=0;e<c.length;e++)b.call(d,a[c[e]],c[e]);return c}function Lc(a){return function(b,d){a(d,b)}}function ne(){return++qb}function Tb(a,b,d){for(var c=a.$$hashKey,e=0,f=b.length;e<f;++e){var g=b[e];
-if(C(g)||D(g))for(var h=Object.keys(g),k=0,l=h.length;k<l;k++){var m=h[k],n=g[m];d&&C(n)?ga(n)?a[m]=new Date(n.valueOf()):Xa(n)?a[m]=new RegExp(n):n.nodeName?a[m]=n.cloneNode(!0):Ub(n)?a[m]=n.clone():(C(a[m])||(a[m]=H(n)?[]:{}),Tb(a[m],[n],!0)):a[m]=n}}c?a.$$hashKey=c:delete a.$$hashKey;return a}function S(a){return Tb(a,va.call(arguments,1),!1)}function oe(a){return Tb(a,va.call(arguments,1),!0)}function Z(a){return parseInt(a,10)}function Vb(a,b){return S(Object.create(a),b)}function z(){}function Ya(a){return a}
-function la(a){return function(){return a}}function Wb(a){return D(a.toString)&&a.toString!==ma}function w(a){return"undefined"===typeof a}function u(a){return"undefined"!==typeof a}function C(a){return null!==a&&"object"===typeof a}function Jc(a){return null!==a&&"object"===typeof a&&!Mc(a)}function F(a){return"string"===typeof a}function ba(a){return"number"===typeof a}function ga(a){return"[object Date]"===ma.call(a)}function D(a){return"function"===typeof a}function Xa(a){return"[object RegExp]"===
-ma.call(a)}function Wa(a){return a&&a.window===a}function Za(a){return a&&a.$evalAsync&&a.$watch}function Ha(a){return"boolean"===typeof a}function pe(a){return a&&ba(a.length)&&qe.test(ma.call(a))}function Ub(a){return!(!a||!(a.nodeName||a.prop&&a.attr&&a.find))}function re(a){var b={};a=a.split(",");var d;for(d=0;d<a.length;d++)b[a[d]]=!0;return b}function wa(a){return Q(a.nodeName||a[0]&&a[0].nodeName)}function $a(a,b){var d=a.indexOf(b);0<=d&&a.splice(d,1);return d}function ra(a,b,d){function c(a,
-b,c){c--;if(0>c)return"...";var d=b.$$hashKey,f;if(H(a)){f=0;for(var g=a.length;f<g;f++)b.push(e(a[f],c))}else if(Jc(a))for(f in a)b[f]=e(a[f],c);else if(a&&"function"===typeof a.hasOwnProperty)for(f in a)a.hasOwnProperty(f)&&(b[f]=e(a[f],c));else for(f in a)ua.call(a,f)&&(b[f]=e(a[f],c));d?b.$$hashKey=d:delete b.$$hashKey;return b}function e(a,b){if(!C(a))return a;var d=g.indexOf(a);if(-1!==d)return h[d];if(Wa(a)||Za(a))throw Fa("cpws");var d=!1,e=f(a);void 0===e&&(e=H(a)?[]:Object.create(Mc(a)),
-d=!0);g.push(a);h.push(e);return d?c(a,e,b):e}function f(a){switch(ma.call(a)){case "[object Int8Array]":case "[object Int16Array]":case "[object Int32Array]":case "[object Float32Array]":case "[object Float64Array]":case "[object Uint8Array]":case "[object Uint8ClampedArray]":case "[object Uint16Array]":case "[object Uint32Array]":return new a.constructor(e(a.buffer),a.byteOffset,a.length);case "[object ArrayBuffer]":if(!a.slice){var b=new ArrayBuffer(a.byteLength);(new Uint8Array(b)).set(new Uint8Array(a));
-return b}return a.slice(0);case "[object Boolean]":case "[object Number]":case "[object String]":case "[object Date]":return new a.constructor(a.valueOf());case "[object RegExp]":return b=new RegExp(a.source,a.toString().match(/[^/]*$/)[0]),b.lastIndex=a.lastIndex,b;case "[object Blob]":return new a.constructor([a],{type:a.type})}if(D(a.cloneNode))return a.cloneNode(!0)}var g=[],h=[];d=Sb(d)?d:NaN;if(b){if(pe(b)||"[object ArrayBuffer]"===ma.call(b))throw Fa("cpta");if(a===b)throw Fa("cpi");H(b)?b.length=
-0:q(b,function(a,c){"$$hashKey"!==c&&delete b[c]});g.push(a);h.push(b);return c(a,b,d)}return e(a,d)}function Xb(a,b){return a===b||a!==a&&b!==b}function sa(a,b){if(a===b)return!0;if(null===a||null===b)return!1;if(a!==a&&b!==b)return!0;var d=typeof a,c;if(d===typeof b&&"object"===d)if(H(a)){if(!H(b))return!1;if((d=a.length)===b.length){for(c=0;c<d;c++)if(!sa(a[c],b[c]))return!1;return!0}}else{if(ga(a))return ga(b)?Xb(a.getTime(),b.getTime()):!1;if(Xa(a))return Xa(b)?a.toString()===b.toString():!1;
-if(Za(a)||Za(b)||Wa(a)||Wa(b)||H(b)||ga(b)||Xa(b))return!1;d=V();for(c in a)if("$"!==c.charAt(0)&&!D(a[c])){if(!sa(a[c],b[c]))return!1;d[c]=!0}for(c in b)if(!(c in d)&&"$"!==c.charAt(0)&&u(b[c])&&!D(b[c]))return!1;return!0}return!1}function ab(a,b,d){return a.concat(va.call(b,d))}function bb(a,b){var d=2<arguments.length?va.call(arguments,2):[];return!D(b)||b instanceof RegExp?b:d.length?function(){return arguments.length?b.apply(a,ab(d,arguments,0)):b.apply(a,d)}:function(){return arguments.length?
-b.apply(a,arguments):b.call(a)}}function Nc(a,b){var d=b;"string"===typeof a&&"$"===a.charAt(0)&&"$"===a.charAt(1)?d=void 0:Wa(b)?d="$WINDOW":b&&x.document===b?d="$DOCUMENT":Za(b)&&(d="$SCOPE");return d}function cb(a,b){if(!w(a))return ba(b)||(b=b?2:null),JSON.stringify(a,Nc,b)}function Oc(a){return F(a)?JSON.parse(a):a}function Pc(a,b){a=a.replace(se,"");var d=Date.parse("Jan 01, 1970 00:00:00 "+a)/6E4;return da(d)?b:d}function Yb(a,b,d){d=d?-1:1;var c=a.getTimezoneOffset();b=Pc(b,c);d*=b-c;a=new Date(a.getTime());
-a.setMinutes(a.getMinutes()+d);return a}function xa(a){a=B(a).clone();try{a.empty()}catch(b){}var d=B("<div>").append(a).html();try{return a[0].nodeType===Ia?Q(d):d.match(/^(<[^>]+>)/)[1].replace(/^<([\w-]+)/,function(a,b){return"<"+Q(b)})}catch(c){return Q(d)}}function Qc(a){try{return decodeURIComponent(a)}catch(b){}}function Rc(a){var b={};q((a||"").split("&"),function(a){var c,e,f;a&&(e=a=a.replace(/\+/g,"%20"),c=a.indexOf("="),-1!==c&&(e=a.substring(0,c),f=a.substring(c+1)),e=Qc(e),u(e)&&(f=
-u(f)?Qc(f):!0,ua.call(b,e)?H(b[e])?b[e].push(f):b[e]=[b[e],f]:b[e]=f))});return b}function Zb(a){var b=[];q(a,function(a,c){H(a)?q(a,function(a){b.push($(c,!0)+(!0===a?"":"="+$(a,!0)))}):b.push($(c,!0)+(!0===a?"":"="+$(a,!0)))});return b.length?b.join("&"):""}function db(a){return $(a,!0).replace(/%26/gi,"&").replace(/%3D/gi,"=").replace(/%2B/gi,"+")}function $(a,b){return encodeURIComponent(a).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%3B/gi,";").replace(/%20/g,
-b?"%20":"+")}function te(a,b){var d,c,e=Ja.length;for(c=0;c<e;++c)if(d=Ja[c]+b,F(d=a.getAttribute(d)))return d;return null}function ue(a,b){var d,c,e={};q(Ja,function(b){b+="app";!d&&a.hasAttribute&&a.hasAttribute(b)&&(d=a,c=a.getAttribute(b))});q(Ja,function(b){b+="app";var e;!d&&(e=a.querySelector("["+b.replace(":","\\:")+"]"))&&(d=e,c=e.getAttribute(b))});d&&(ve?(e.strictDi=null!==te(d,"strict-di"),b(d,c?[c]:[],e)):x.console.error("Angular: disabling automatic bootstrap. <script> protocol indicates an extension, document.location.href does not match."))}
-function Sc(a,b,d){C(d)||(d={});d=S({strictDi:!1},d);var c=function(){a=B(a);if(a.injector()){var c=a[0]===x.document?"document":xa(a);throw Fa("btstrpd",c.replace(/</,"&lt;").replace(/>/,"&gt;"));}b=b||[];b.unshift(["$provide",function(b){b.value("$rootElement",a)}]);d.debugInfoEnabled&&b.push(["$compileProvider",function(a){a.debugInfoEnabled(!0)}]);b.unshift("ng");c=eb(b,d.strictDi);c.invoke(["$rootScope","$rootElement","$compile","$injector",function(a,b,c,d){a.$apply(function(){b.data("$injector",
-d);c(b)(a)})}]);return c},e=/^NG_ENABLE_DEBUG_INFO!/,f=/^NG_DEFER_BOOTSTRAP!/;x&&e.test(x.name)&&(d.debugInfoEnabled=!0,x.name=x.name.replace(e,""));if(x&&!f.test(x.name))return c();x.name=x.name.replace(f,"");ea.resumeBootstrap=function(a){q(a,function(a){b.push(a)});return c()};D(ea.resumeDeferredBootstrap)&&ea.resumeDeferredBootstrap()}function we(){x.name="NG_ENABLE_DEBUG_INFO!"+x.name;x.location.reload()}function xe(a){a=ea.element(a).injector();if(!a)throw Fa("test");return a.get("$$testability")}
-function Tc(a,b){b=b||"_";return a.replace(ye,function(a,c){return(c?b:"")+a.toLowerCase()})}function ze(){var a;if(!Uc){var b=rb();(na=w(b)?x.jQuery:b?x[b]:void 0)&&na.fn.on?(B=na,S(na.fn,{scope:Na.scope,isolateScope:Na.isolateScope,controller:Na.controller,injector:Na.injector,inheritedData:Na.inheritedData}),a=na.cleanData,na.cleanData=function(b){for(var c,e=0,f;null!=(f=b[e]);e++)(c=na._data(f,"events"))&&c.$destroy&&na(f).triggerHandler("$destroy");a(b)}):B=W;ea.element=B;Uc=!0}}function fb(a,
-b,d){if(!a)throw Fa("areq",b||"?",d||"required");return a}function sb(a,b,d){d&&H(a)&&(a=a[a.length-1]);fb(D(a),b,"not a function, got "+(a&&"object"===typeof a?a.constructor.name||"Object":typeof a));return a}function Ka(a,b){if("hasOwnProperty"===a)throw Fa("badname",b);}function Vc(a,b,d){if(!b)return a;b=b.split(".");for(var c,e=a,f=b.length,g=0;g<f;g++)c=b[g],a&&(a=(e=a)[c]);return!d&&D(a)?bb(e,a):a}function tb(a){for(var b=a[0],d=a[a.length-1],c,e=1;b!==d&&(b=b.nextSibling);e++)if(c||a[e]!==
-b)c||(c=B(va.call(a,0,e))),c.push(b);return c||a}function V(){return Object.create(null)}function $b(a){if(null==a)return"";switch(typeof a){case "string":break;case "number":a=""+a;break;default:a=!Wb(a)||H(a)||ga(a)?cb(a):a.toString()}return a}function Ae(a){function b(a,b,c){return a[b]||(a[b]=c())}var d=L("$injector"),c=L("ng");a=b(a,"angular",Object);a.$$minErr=a.$$minErr||L;return b(a,"module",function(){var a={};return function(f,g,h){var k={};if("hasOwnProperty"===f)throw c("badname","module");
-g&&a.hasOwnProperty(f)&&(a[f]=null);return b(a,f,function(){function a(b,c,d,f){f||(f=e);return function(){f[d||"push"]([b,c,arguments]);return v}}function b(a,c,d){d||(d=e);return function(b,e){e&&D(e)&&(e.$$moduleName=f);d.push([a,c,arguments]);return v}}if(!g)throw d("nomod",f);var e=[],p=[],r=[],J=a("$injector","invoke","push",p),v={_invokeQueue:e,_configBlocks:p,_runBlocks:r,info:function(a){if(u(a)){if(!C(a))throw c("aobj","value");k=a;return this}return k},requires:g,name:f,provider:b("$provide",
-"provider"),factory:b("$provide","factory"),service:b("$provide","service"),value:a("$provide","value"),constant:a("$provide","constant","unshift"),decorator:b("$provide","decorator",p),animation:b("$animateProvider","register"),filter:b("$filterProvider","register"),controller:b("$controllerProvider","register"),directive:b("$compileProvider","directive"),component:b("$compileProvider","component"),config:J,run:function(a){r.push(a);return this}};h&&J(h);return v})}})}function pa(a,b){if(H(a)){b=
-b||[];for(var d=0,c=a.length;d<c;d++)b[d]=a[d]}else if(C(a))for(d in b=b||{},a)if("$"!==d.charAt(0)||"$"!==d.charAt(1))b[d]=a[d];return b||a}function Be(a,b){var d=[];Sb(b)&&(a=ra(a,null,b));return JSON.stringify(a,function(a,b){b=Nc(a,b);if(C(b)){if(0<=d.indexOf(b))return"...";d.push(b)}return b})}function Ce(a){S(a,{errorHandlingConfig:me,bootstrap:Sc,copy:ra,extend:S,merge:oe,equals:sa,element:B,forEach:q,injector:eb,noop:z,bind:bb,toJson:cb,fromJson:Oc,identity:Ya,isUndefined:w,isDefined:u,isString:F,
-isFunction:D,isObject:C,isNumber:ba,isElement:Ub,isArray:H,version:De,isDate:ga,lowercase:Q,uppercase:ub,callbacks:{$$counter:0},getTestability:xe,reloadWithDebugInfo:we,$$minErr:L,$$csp:Ga,$$encodeUriSegment:db,$$encodeUriQuery:$,$$stringify:$b});ac=Ae(x);ac("ng",["ngLocale"],["$provide",function(a){a.provider({$$sanitizeUri:Ee});a.provider("$compile",Wc).directive({a:Fe,input:Xc,textarea:Xc,form:Ge,script:He,select:Ie,option:Je,ngBind:Ke,ngBindHtml:Le,ngBindTemplate:Me,ngClass:Ne,ngClassEven:Oe,
-ngClassOdd:Pe,ngCloak:Qe,ngController:Re,ngForm:Se,ngHide:Te,ngIf:Ue,ngInclude:Ve,ngInit:We,ngNonBindable:Xe,ngPluralize:Ye,ngRepeat:Ze,ngShow:$e,ngStyle:af,ngSwitch:bf,ngSwitchWhen:cf,ngSwitchDefault:df,ngOptions:ef,ngTransclude:ff,ngModel:gf,ngList:hf,ngChange:jf,pattern:Yc,ngPattern:Yc,required:Zc,ngRequired:Zc,minlength:$c,ngMinlength:$c,maxlength:ad,ngMaxlength:ad,ngValue:kf,ngModelOptions:lf}).directive({ngInclude:mf}).directive(vb).directive(bd);a.provider({$anchorScroll:nf,$animate:of,$animateCss:pf,
-$$animateJs:qf,$$animateQueue:rf,$$AnimateRunner:sf,$$animateAsyncRun:tf,$browser:uf,$cacheFactory:vf,$controller:wf,$document:xf,$$isDocumentHidden:yf,$exceptionHandler:zf,$filter:cd,$$forceReflow:Af,$interpolate:Bf,$interval:Cf,$http:Df,$httpParamSerializer:Ef,$httpParamSerializerJQLike:Ff,$httpBackend:Gf,$xhrFactory:Hf,$jsonpCallbacks:If,$location:Jf,$log:Kf,$parse:Lf,$rootScope:Mf,$q:Nf,$$q:Of,$sce:Pf,$sceDelegate:Qf,$sniffer:Rf,$templateCache:Sf,$templateRequest:Tf,$$testability:Uf,$timeout:Vf,
-$window:Wf,$$rAF:Xf,$$jqLite:Yf,$$Map:Zf,$$cookieReader:$f})}]).info({angularVersion:"1.6.4"})}function gb(a,b){return b.toUpperCase()}function wb(a){return a.replace(ag,gb)}function bc(a){a=a.nodeType;return 1===a||!a||9===a}function dd(a,b){var d,c,e=b.createDocumentFragment(),f=[];if(cc.test(a)){d=e.appendChild(b.createElement("div"));c=(bg.exec(a)||["",""])[1].toLowerCase();c=ha[c]||ha._default;d.innerHTML=c[1]+a.replace(cg,"<$1></$2>")+c[2];for(c=c[0];c--;)d=d.lastChild;f=ab(f,d.childNodes);
-d=e.firstChild;d.textContent=""}else f.push(b.createTextNode(a));e.textContent="";e.innerHTML="";q(f,function(a){e.appendChild(a)});return e}function W(a){if(a instanceof W)return a;var b;F(a)&&(a=T(a),b=!0);if(!(this instanceof W)){if(b&&"<"!==a.charAt(0))throw dc("nosel");return new W(a)}if(b){b=x.document;var d;a=(d=dg.exec(a))?[b.createElement(d[1])]:(d=dd(a,b))?d.childNodes:[];ec(this,a)}else D(a)?ed(a):ec(this,a)}function fc(a){return a.cloneNode(!0)}function xb(a,b){!b&&bc(a)&&B.cleanData([a]);
-a.querySelectorAll&&B.cleanData(a.querySelectorAll("*"))}function fd(a,b,d,c){if(u(c))throw dc("offargs");var e=(c=yb(a))&&c.events,f=c&&c.handle;if(f)if(b){var g=function(b){var c=e[b];u(d)&&$a(c||[],d);u(d)&&c&&0<c.length||(a.removeEventListener(b,f),delete e[b])};q(b.split(" "),function(a){g(a);zb[a]&&g(zb[a])})}else for(b in e)"$destroy"!==b&&a.removeEventListener(b,f),delete e[b]}function gc(a,b){var d=a.ng339,c=d&&hb[d];c&&(b?delete c.data[b]:(c.handle&&(c.events.$destroy&&c.handle({},"$destroy"),
-fd(a)),delete hb[d],a.ng339=void 0))}function yb(a,b){var d=a.ng339,d=d&&hb[d];b&&!d&&(a.ng339=d=++eg,d=hb[d]={events:{},data:{},handle:void 0});return d}function hc(a,b,d){if(bc(a)){var c,e=u(d),f=!e&&b&&!C(b),g=!b;a=(a=yb(a,!f))&&a.data;if(e)a[wb(b)]=d;else{if(g)return a;if(f)return a&&a[wb(b)];for(c in b)a[wb(c)]=b[c]}}}function Ab(a,b){return a.getAttribute?-1<(" "+(a.getAttribute("class")||"")+" ").replace(/[\n\t]/g," ").indexOf(" "+b+" "):!1}function Bb(a,b){b&&a.setAttribute&&q(b.split(" "),
-function(b){a.setAttribute("class",T((" "+(a.getAttribute("class")||"")+" ").replace(/[\n\t]/g," ").replace(" "+T(b)+" "," ")))})}function Cb(a,b){if(b&&a.setAttribute){var d=(" "+(a.getAttribute("class")||"")+" ").replace(/[\n\t]/g," ");q(b.split(" "),function(a){a=T(a);-1===d.indexOf(" "+a+" ")&&(d+=a+" ")});a.setAttribute("class",T(d))}}function ec(a,b){if(b)if(b.nodeType)a[a.length++]=b;else{var d=b.length;if("number"===typeof d&&b.window!==b){if(d)for(var c=0;c<d;c++)a[a.length++]=b[c]}else a[a.length++]=
-b}}function gd(a,b){return Db(a,"$"+(b||"ngController")+"Controller")}function Db(a,b,d){9===a.nodeType&&(a=a.documentElement);for(b=H(b)?b:[b];a;){for(var c=0,e=b.length;c<e;c++)if(u(d=B.data(a,b[c])))return d;a=a.parentNode||11===a.nodeType&&a.host}}function hd(a){for(xb(a,!0);a.firstChild;)a.removeChild(a.firstChild)}function Eb(a,b){b||xb(a);var d=a.parentNode;d&&d.removeChild(a)}function fg(a,b){b=b||x;if("complete"===b.document.readyState)b.setTimeout(a);else B(b).on("load",a)}function ed(a){function b(){x.document.removeEventListener("DOMContentLoaded",
-b);x.removeEventListener("load",b);a()}"complete"===x.document.readyState?x.setTimeout(a):(x.document.addEventListener("DOMContentLoaded",b),x.addEventListener("load",b))}function id(a,b){var d=Fb[b.toLowerCase()];return d&&jd[wa(a)]&&d}function gg(a,b){var d=function(c,d){c.isDefaultPrevented=function(){return c.defaultPrevented};var f=b[d||c.type],g=f?f.length:0;if(g){if(w(c.immediatePropagationStopped)){var h=c.stopImmediatePropagation;c.stopImmediatePropagation=function(){c.immediatePropagationStopped=
-!0;c.stopPropagation&&c.stopPropagation();h&&h.call(c)}}c.isImmediatePropagationStopped=function(){return!0===c.immediatePropagationStopped};var k=f.specialHandlerWrapper||hg;1<g&&(f=pa(f));for(var l=0;l<g;l++)c.isImmediatePropagationStopped()||k(a,c,f[l])}};d.elem=a;return d}function hg(a,b,d){d.call(a,b)}function ig(a,b,d){var c=b.relatedTarget;c&&(c===a||jg.call(a,c))||d.call(a,b)}function Yf(){this.$get=function(){return S(W,{hasClass:function(a,b){a.attr&&(a=a[0]);return Ab(a,b)},addClass:function(a,
-b){a.attr&&(a=a[0]);return Cb(a,b)},removeClass:function(a,b){a.attr&&(a=a[0]);return Bb(a,b)}})}}function Pa(a,b){var d=a&&a.$$hashKey;if(d)return"function"===typeof d&&(d=a.$$hashKey()),d;d=typeof a;return d="function"===d||"object"===d&&null!==a?a.$$hashKey=d+":"+(b||ne)():d+":"+a}function kd(){this._keys=[];this._values=[];this._lastKey=NaN;this._lastIndex=-1}function ld(a){a=Function.prototype.toString.call(a).replace(kg,"");return a.match(lg)||a.match(mg)}function ng(a){return(a=ld(a))?"function("+
-(a[1]||"").replace(/[\s\r\n]+/," ")+")":"fn"}function eb(a,b){function d(a){return function(b,c){if(C(b))q(b,Lc(a));else return a(b,c)}}function c(a,b){Ka(a,"service");if(D(b)||H(b))b=p.instantiate(b);if(!b.$get)throw ya("pget",a);return n[a+"Provider"]=b}function e(a,b){return function(){var c=v.invoke(b,this);if(w(c))throw ya("undef",a);return c}}function f(a,b,d){return c(a,{$get:!1!==d?e(a,b):b})}function g(a){fb(w(a)||H(a),"modulesToLoad","not an array");var b=[],c;q(a,function(a){function d(a){var b,
-c;b=0;for(c=a.length;b<c;b++){var e=a[b],f=p.get(e[0]);f[e[1]].apply(f,e[2])}}if(!m.get(a)){m.set(a,!0);try{F(a)?(c=ac(a),v.modules[a]=c,b=b.concat(g(c.requires)).concat(c._runBlocks),d(c._invokeQueue),d(c._configBlocks)):D(a)?b.push(p.invoke(a)):H(a)?b.push(p.invoke(a)):sb(a,"module")}catch(e){throw H(a)&&(a=a[a.length-1]),e.message&&e.stack&&-1===e.stack.indexOf(e.message)&&(e=e.message+"\n"+e.stack),ya("modulerr",a,e.stack||e.message||e);}}});return b}function h(a,c){function d(b,e){if(a.hasOwnProperty(b)){if(a[b]===
-k)throw ya("cdep",b+" <- "+l.join(" <- "));return a[b]}try{return l.unshift(b),a[b]=k,a[b]=c(b,e),a[b]}catch(f){throw a[b]===k&&delete a[b],f;}finally{l.shift()}}function e(a,c,f){var g=[];a=eb.$$annotate(a,b,f);for(var k=0,h=a.length;k<h;k++){var l=a[k];if("string"!==typeof l)throw ya("itkn",l);g.push(c&&c.hasOwnProperty(l)?c[l]:d(l,f))}return g}return{invoke:function(a,b,c,d){"string"===typeof c&&(d=c,c=null);c=e(a,c,d);H(a)&&(a=a[a.length-1]);d=a;if(za||"function"!==typeof d)d=!1;else{var f=d.$$ngIsClass;
-Ha(f)||(f=d.$$ngIsClass=/^(?:class\b|constructor\()/.test(Function.prototype.toString.call(d)));d=f}return d?(c.unshift(null),new (Function.prototype.bind.apply(a,c))):a.apply(b,c)},instantiate:function(a,b,c){var d=H(a)?a[a.length-1]:a;a=e(a,b,c);a.unshift(null);return new (Function.prototype.bind.apply(d,a))},get:d,annotate:eb.$$annotate,has:function(b){return n.hasOwnProperty(b+"Provider")||a.hasOwnProperty(b)}}}b=!0===b;var k={},l=[],m=new Gb,n={$provide:{provider:d(c),factory:d(f),service:d(function(a,
-b){return f(a,["$injector",function(a){return a.instantiate(b)}])}),value:d(function(a,b){return f(a,la(b),!1)}),constant:d(function(a,b){Ka(a,"constant");n[a]=b;r[a]=b}),decorator:function(a,b){var c=p.get(a+"Provider"),d=c.$get;c.$get=function(){var a=v.invoke(d,c);return v.invoke(b,null,{$delegate:a})}}}},p=n.$injector=h(n,function(a,b){ea.isString(b)&&l.push(b);throw ya("unpr",l.join(" <- "));}),r={},J=h(r,function(a,b){var c=p.get(a+"Provider",b);return v.invoke(c.$get,c,void 0,a)}),v=J;n.$injectorProvider=
-{$get:la(J)};v.modules=p.modules=V();var t=g(a),v=J.get("$injector");v.strictDi=b;q(t,function(a){a&&v.invoke(a)});return v}function nf(){var a=!0;this.disableAutoScrolling=function(){a=!1};this.$get=["$window","$location","$rootScope",function(b,d,c){function e(a){var b=null;Array.prototype.some.call(a,function(a){if("a"===wa(a))return b=a,!0});return b}function f(a){if(a){a.scrollIntoView();var c;c=g.yOffset;D(c)?c=c():Ub(c)?(c=c[0],c="fixed"!==b.getComputedStyle(c).position?0:c.getBoundingClientRect().bottom):
-ba(c)||(c=0);c&&(a=a.getBoundingClientRect().top,b.scrollBy(0,a-c))}else b.scrollTo(0,0)}function g(a){a=F(a)?a:ba(a)?a.toString():d.hash();var b;a?(b=h.getElementById(a))?f(b):(b=e(h.getElementsByName(a)))?f(b):"top"===a&&f(null):f(null)}var h=b.document;a&&c.$watch(function(){return d.hash()},function(a,b){a===b&&""===a||fg(function(){c.$evalAsync(g)})});return g}]}function ib(a,b){if(!a&&!b)return"";if(!a)return b;if(!b)return a;H(a)&&(a=a.join(" "));H(b)&&(b=b.join(" "));return a+" "+b}function og(a){F(a)&&
-(a=a.split(" "));var b=V();q(a,function(a){a.length&&(b[a]=!0)});return b}function ia(a){return C(a)?a:{}}function pg(a,b,d,c){function e(a){try{a.apply(null,va.call(arguments,1))}finally{if(J--,0===J)for(;v.length;)try{v.pop()()}catch(b){d.error(b)}}}function f(){Oa=null;h()}function g(){t=I();t=w(t)?null:t;sa(t,G)&&(t=G);M=G=t}function h(){var a=M;g();if(N!==k.url()||a!==t)N=k.url(),M=t,q(K,function(a){a(k.url(),t)})}var k=this,l=a.location,m=a.history,n=a.setTimeout,p=a.clearTimeout,r={};k.isMock=
-!1;var J=0,v=[];k.$$completeOutstandingRequest=e;k.$$incOutstandingRequestCount=function(){J++};k.notifyWhenNoOutstandingRequests=function(a){0===J?a():v.push(a)};var t,M,N=l.href,A=b.find("base"),Oa=null,I=c.history?function(){try{return m.state}catch(a){}}:z;g();k.url=function(b,d,e){w(e)&&(e=null);l!==a.location&&(l=a.location);m!==a.history&&(m=a.history);if(b){var f=M===e;if(N===b&&(!c.history||f))return k;var h=N&&Aa(N)===Aa(b);N=b;M=e;!c.history||h&&f?(h||(Oa=b),d?l.replace(b):h?(d=l,e=b.indexOf("#"),
-e=-1===e?"":b.substr(e),d.hash=e):l.href=b,l.href!==b&&(Oa=b)):(m[d?"replaceState":"pushState"](e,"",b),g());Oa&&(Oa=b);return k}return Oa||l.href.replace(/%27/g,"'")};k.state=function(){return t};var K=[],E=!1,G=null;k.onUrlChange=function(b){if(!E){if(c.history)B(a).on("popstate",f);B(a).on("hashchange",f);E=!0}K.push(b);return b};k.$$applicationDestroyed=function(){B(a).off("hashchange popstate",f)};k.$$checkUrlChange=h;k.baseHref=function(){var a=A.attr("href");return a?a.replace(/^(https?:)?\/\/[^/]*/,
-""):""};k.defer=function(a,b){var c;J++;c=n(function(){delete r[c];e(a)},b||0);r[c]=!0;return c};k.defer.cancel=function(a){return r[a]?(delete r[a],p(a),e(z),!0):!1}}function uf(){this.$get=["$window","$log","$sniffer","$document",function(a,b,d,c){return new pg(a,c,b,d)}]}function vf(){this.$get=function(){function a(a,c){function e(a){a!==n&&(p?p===a&&(p=a.n):p=a,f(a.n,a.p),f(a,n),n=a,n.n=null)}function f(a,b){a!==b&&(a&&(a.p=b),b&&(b.n=a))}if(a in b)throw L("$cacheFactory")("iid",a);var g=0,h=
-S({},c,{id:a}),k=V(),l=c&&c.capacity||Number.MAX_VALUE,m=V(),n=null,p=null;return b[a]={put:function(a,b){if(!w(b)){if(l<Number.MAX_VALUE){var c=m[a]||(m[a]={key:a});e(c)}a in k||g++;k[a]=b;g>l&&this.remove(p.key);return b}},get:function(a){if(l<Number.MAX_VALUE){var b=m[a];if(!b)return;e(b)}return k[a]},remove:function(a){if(l<Number.MAX_VALUE){var b=m[a];if(!b)return;b===n&&(n=b.p);b===p&&(p=b.n);f(b.n,b.p);delete m[a]}a in k&&(delete k[a],g--)},removeAll:function(){k=V();g=0;m=V();n=p=null},destroy:function(){m=
-h=k=null;delete b[a]},info:function(){return S({},h,{size:g})}}}var b={};a.info=function(){var a={};q(b,function(b,e){a[e]=b.info()});return a};a.get=function(a){return b[a]};return a}}function Sf(){this.$get=["$cacheFactory",function(a){return a("templates")}]}function Wc(a,b){function d(a,b,c){var d=/^\s*([@&<]|=(\*?))(\??)\s*([\w$]*)\s*$/,e=V();q(a,function(a,f){if(a in n)e[f]=n[a];else{var g=a.match(d);if(!g)throw fa("iscp",b,f,a,c?"controller bindings definition":"isolate scope definition");
-e[f]={mode:g[1][0],collection:"*"===g[2],optional:"?"===g[3],attrName:g[4]||f};g[4]&&(n[a]=e[f])}});return e}function c(a){var b=a.charAt(0);if(!b||b!==Q(b))throw fa("baddir",a);if(a!==a.trim())throw fa("baddir",a);}function e(a){var b=a.require||a.controller&&a.name;!H(b)&&C(b)&&q(b,function(a,c){var d=a.match(l);a.substring(d[0].length)||(b[c]=d[0]+c)});return b}var f={},g=/^\s*directive:\s*([\w-]+)\s+(.*)$/,h=/(([\w-]+)(?::([^;]+))?;?)/,k=re("ngSrc,ngSrcset,src,srcset"),l=/^(?:(\^\^?)?(\?)?(\^\^?)?)?/,
-m=/^(on[a-z]+|formaction)$/,n=V();this.directive=function N(b,d){fb(b,"name");Ka(b,"directive");F(b)?(c(b),fb(d,"directiveFactory"),f.hasOwnProperty(b)||(f[b]=[],a.factory(b+"Directive",["$injector","$exceptionHandler",function(a,c){var d=[];q(f[b],function(f,g){try{var h=a.invoke(f);D(h)?h={compile:la(h)}:!h.compile&&h.link&&(h.compile=la(h.link));h.priority=h.priority||0;h.index=g;h.name=h.name||b;h.require=e(h);var k=h,l=h.restrict;if(l&&(!F(l)||!/[EACM]/.test(l)))throw fa("badrestrict",l,b);k.restrict=
-l||"EA";h.$$moduleName=f.$$moduleName;d.push(h)}catch(m){c(m)}});return d}])),f[b].push(d)):q(b,Lc(N));return this};this.component=function(a,b){function c(a){function e(b){return D(b)||H(b)?function(c,d){return a.invoke(b,this,{$element:c,$attrs:d})}:b}var f=b.template||b.templateUrl?b.template:"",g={controller:d,controllerAs:qg(b.controller)||b.controllerAs||"$ctrl",template:e(f),templateUrl:e(b.templateUrl),transclude:b.transclude,scope:{},bindToController:b.bindings||{},restrict:"E",require:b.require};
-q(b,function(a,b){"$"===b.charAt(0)&&(g[b]=a)});return g}var d=b.controller||function(){};q(b,function(a,b){"$"===b.charAt(0)&&(c[b]=a,D(d)&&(d[b]=a))});c.$inject=["$injector"];return this.directive(a,c)};this.aHrefSanitizationWhitelist=function(a){return u(a)?(b.aHrefSanitizationWhitelist(a),this):b.aHrefSanitizationWhitelist()};this.imgSrcSanitizationWhitelist=function(a){return u(a)?(b.imgSrcSanitizationWhitelist(a),this):b.imgSrcSanitizationWhitelist()};var p=!0;this.debugInfoEnabled=function(a){return u(a)?
-(p=a,this):p};var r=!1;this.preAssignBindingsEnabled=function(a){return u(a)?(r=a,this):r};var J=10;this.onChangesTtl=function(a){return arguments.length?(J=a,this):J};var v=!0;this.commentDirectivesEnabled=function(a){return arguments.length?(v=a,this):v};var t=!0;this.cssClassDirectivesEnabled=function(a){return arguments.length?(t=a,this):t};this.$get=["$injector","$interpolate","$exceptionHandler","$templateRequest","$parse","$controller","$rootScope","$sce","$animate","$$sanitizeUri",function(a,
-b,c,e,n,E,G,y,O,X){function P(){try{if(!--ya)throw ia=void 0,fa("infchng",J);G.$apply(function(){for(var a=[],b=0,c=ia.length;b<c;++b)try{ia[b]()}catch(d){a.push(d)}ia=void 0;if(a.length)throw a;})}finally{ya++}}function s(a,b){if(b){var c=Object.keys(b),d,e,f;d=0;for(e=c.length;d<e;d++)f=c[d],this[f]=b[f]}else this.$attr={};this.$$element=a}function R(a,b,c){ta.innerHTML="<span "+b+">";b=ta.firstChild.attributes;var d=b[0];b.removeNamedItem(d.name);d.value=c;a.attributes.setNamedItem(d)}function La(a,
-b){try{a.addClass(b)}catch(c){}}function ca(a,b,c,d,e){a instanceof B||(a=B(a));var f=Ma(a,b,a,c,d,e);ca.$$addScopeClass(a);var g=null;return function(b,c,d){if(!a)throw fa("multilink");fb(b,"scope");e&&e.needsNewScope&&(b=b.$parent.$new());d=d||{};var h=d.parentBoundTranscludeFn,k=d.transcludeControllers;d=d.futureParentElement;h&&h.$$boundTransclude&&(h=h.$$boundTransclude);g||(g=(d=d&&d[0])?"foreignobject"!==wa(d)&&ma.call(d).match(/SVG/)?"svg":"html":"html");d="html"!==g?B(ha(g,B("<div>").append(a).html())):
-c?Na.clone.call(a):a;if(k)for(var l in k)d.data("$"+l+"Controller",k[l].instance);ca.$$addScopeInfo(d,b);c&&c(d,b);f&&f(b,d,d,h);c||(a=f=null);return d}}function Ma(a,b,c,d,e,f){function g(a,c,d,e){var f,k,l,m,n,p,r;if(K)for(r=Array(c.length),m=0;m<h.length;m+=3)f=h[m],r[f]=c[f];else r=c;m=0;for(n=h.length;m<n;)k=r[h[m++]],c=h[m++],f=h[m++],c?(c.scope?(l=a.$new(),ca.$$addScopeInfo(B(k),l)):l=a,p=c.transcludeOnThisElement?ja(a,c.transclude,e):!c.templateOnThisElement&&e?e:!e&&b?ja(a,b):null,c(f,l,
-k,d,p)):f&&f(a,k.childNodes,void 0,e)}for(var h=[],k=H(a)||a instanceof B,l,m,n,p,K,r=0;r<a.length;r++){l=new s;11===za&&L(a,r,k);m=jc(a[r],[],l,0===r?d:void 0,e);(f=m.length?W(m,a[r],l,b,c,null,[],[],f):null)&&f.scope&&ca.$$addScopeClass(l.$$element);l=f&&f.terminal||!(n=a[r].childNodes)||!n.length?null:Ma(n,f?(f.transcludeOnThisElement||!f.templateOnThisElement)&&f.transclude:b);if(f||l)h.push(r,f,l),p=!0,K=K||f;f=null}return p?g:null}function L(a,b,c){var d=a[b],e=d.parentNode,f;if(d.nodeType===
-Ia)for(;;){f=e?d.nextSibling:a[b+1];if(!f||f.nodeType!==Ia)break;d.nodeValue+=f.nodeValue;f.parentNode&&f.parentNode.removeChild(f);c&&f===a[b+1]&&a.splice(b+1,1)}}function ja(a,b,c){function d(e,f,g,h,k){e||(e=a.$new(!1,k),e.$$transcluded=!0);return b(e,f,{parentBoundTranscludeFn:c,transcludeControllers:g,futureParentElement:h})}var e=d.$$slots=V(),f;for(f in b.$$slots)e[f]=b.$$slots[f]?ja(a,b.$$slots[f],c):null;return d}function jc(a,b,c,d,e){var f=c.$attr,g;switch(a.nodeType){case 1:g=wa(a);Y(b,
-Ba(g),"E",d,e);for(var k,l,m,n,p=a.attributes,K=0,r=p&&p.length;K<r;K++){var G=!1,E=!1;k=p[K];l=k.name;m=k.value;k=Ba(l);(n=Ja.test(k))&&(l=l.replace(md,"").substr(8).replace(/_(.)/g,function(a,b){return b.toUpperCase()}));(k=k.match(Ka))&&Z(k[1])&&(G=l,E=l.substr(0,l.length-5)+"end",l=l.substr(0,l.length-6));k=Ba(l.toLowerCase());f[k]=l;if(n||!c.hasOwnProperty(k))c[k]=m,id(a,k)&&(c[k]=!0);pa(a,b,m,k,n);Y(b,k,"A",d,e,G,E)}"input"===g&&"hidden"===a.getAttribute("type")&&a.setAttribute("autocomplete",
-"off");if(!Ga)break;f=a.className;C(f)&&(f=f.animVal);if(F(f)&&""!==f)for(;a=h.exec(f);)k=Ba(a[2]),Y(b,k,"C",d,e)&&(c[k]=T(a[3])),f=f.substr(a.index+a[0].length);break;case Ia:la(b,a.nodeValue);break;case 8:if(!Fa)break;jb(a,b,c,d,e)}b.sort(ea);return b}function jb(a,b,c,d,e){try{var f=g.exec(a.nodeValue);if(f){var h=Ba(f[1]);Y(b,h,"M",d,e)&&(c[h]=T(f[2]))}}catch(k){}}function nd(a,b,c){var d=[],e=0;if(b&&a.hasAttribute&&a.hasAttribute(b)){do{if(!a)throw fa("uterdir",b,c);1===a.nodeType&&(a.hasAttribute(b)&&
-e++,a.hasAttribute(c)&&e--);d.push(a);a=a.nextSibling}while(0<e)}else d.push(a);return B(d)}function od(a,b,c){return function(d,e,f,g,h){e=nd(e[0],b,c);return a(d,e,f,g,h)}}function kc(a,b,c,d,e,f){var g;return a?ca(b,c,d,e,f):function(){g||(g=ca(b,c,d,e,f),b=c=f=null);return g.apply(this,arguments)}}function W(a,b,d,e,f,g,h,k,l){function m(a,b,c,d){if(a){c&&(a=od(a,c,d));a.require=y.require;a.directiveName=P;if(E===y||y.$$isolateScope)a=qa(a,{isolateScope:!0});h.push(a)}if(b){c&&(b=od(b,c,d));b.require=
-y.require;b.directiveName=P;if(E===y||y.$$isolateScope)b=qa(b,{isolateScope:!0});k.push(b)}}function n(a,e,f,g,l){function m(a,b,c,d){var e;Za(a)||(d=c,c=b,b=a,a=void 0);X&&(e=O);c||(c=X?P.parent():P);if(d){var f=l.$$slots[d];if(f)return f(a,b,e,c,R);if(w(f))throw fa("noslot",d,xa(P));}else return l(a,b,e,c,R)}var p,y,t,v,J,O,N,P;b===f?(g=d,P=d.$$element):(P=B(f),g=new s(P,d));J=e;E?v=e.$new(!0):K&&(J=e.$parent);l&&(N=m,N.$$boundTransclude=l,N.isSlotFilled=function(a){return!!l.$$slots[a]});G&&(O=
-ba(P,g,N,G,v,e,E));E&&(ca.$$addScopeInfo(P,v,!0,!(I&&(I===E||I===E.$$originalDirective))),ca.$$addScopeClass(P,!0),v.$$isolateBindings=E.$$isolateBindings,y=na(e,g,v,v.$$isolateBindings,E),y.removeWatches&&v.$on("$destroy",y.removeWatches));for(p in O){y=G[p];t=O[p];var Hb=y.$$bindings.bindToController;if(r){t.bindingInfo=Hb?na(J,g,t.instance,Hb,y):{};var A=t();A!==t.instance&&(t.instance=A,P.data("$"+y.name+"Controller",A),t.bindingInfo.removeWatches&&t.bindingInfo.removeWatches(),t.bindingInfo=
-na(J,g,t.instance,Hb,y))}else t.instance=t(),P.data("$"+y.name+"Controller",t.instance),t.bindingInfo=na(J,g,t.instance,Hb,y)}q(G,function(a,b){var c=a.require;a.bindToController&&!H(c)&&C(c)&&S(O[b].instance,U(b,c,P,O))});q(O,function(a){var b=a.instance;if(D(b.$onChanges))try{b.$onChanges(a.bindingInfo.initialChanges)}catch(d){c(d)}if(D(b.$onInit))try{b.$onInit()}catch(e){c(e)}D(b.$doCheck)&&(J.$watch(function(){b.$doCheck()}),b.$doCheck());D(b.$onDestroy)&&J.$on("$destroy",function(){b.$onDestroy()})});
-p=0;for(y=h.length;p<y;p++)t=h[p],ra(t,t.isolateScope?v:e,P,g,t.require&&U(t.directiveName,t.require,P,O),N);var R=e;E&&(E.template||null===E.templateUrl)&&(R=v);a&&a(R,f.childNodes,void 0,l);for(p=k.length-1;0<=p;p--)t=k[p],ra(t,t.isolateScope?v:e,P,g,t.require&&U(t.directiveName,t.require,P,O),N);q(O,function(a){a=a.instance;D(a.$postLink)&&a.$postLink()})}l=l||{};for(var p=-Number.MAX_VALUE,K=l.newScopeDirective,G=l.controllerDirectives,E=l.newIsolateScopeDirective,I=l.templateDirective,t=l.nonTlbTranscludeDirective,
-J=!1,O=!1,X=l.hasElementTranscludeDirective,v=d.$$element=B(b),y,P,N,A=e,R,u=!1,La=!1,x,z=0,F=a.length;z<F;z++){y=a[z];var Ma=y.$$start,L=y.$$end;Ma&&(v=nd(b,Ma,L));N=void 0;if(p>y.priority)break;if(x=y.scope)y.templateUrl||(C(x)?($("new/isolated scope",E||K,y,v),E=y):$("new/isolated scope",E,y,v)),K=K||y;P=y.name;if(!u&&(y.replace&&(y.templateUrl||y.template)||y.transclude&&!y.$$tlb)){for(x=z+1;u=a[x++];)if(u.transclude&&!u.$$tlb||u.replace&&(u.templateUrl||u.template)){La=!0;break}u=!0}!y.templateUrl&&
-y.controller&&(G=G||V(),$("'"+P+"' controller",G[P],y,v),G[P]=y);if(x=y.transclude)if(J=!0,y.$$tlb||($("transclusion",t,y,v),t=y),"element"===x)X=!0,p=y.priority,N=v,v=d.$$element=B(ca.$$createComment(P,d[P])),b=v[0],ka(f,va.call(N,0),b),N[0].$$parentNode=N[0].parentNode,A=kc(La,N,e,p,g&&g.name,{nonTlbTranscludeDirective:t});else{var ja=V();if(C(x)){N=[];var Q=V(),jb=V();q(x,function(a,b){var c="?"===a.charAt(0);a=c?a.substring(1):a;Q[a]=b;ja[b]=null;jb[b]=c});q(v.contents(),function(a){var b=Q[Ba(wa(a))];
-b?(jb[b]=!0,ja[b]=ja[b]||[],ja[b].push(a)):N.push(a)});q(jb,function(a,b){if(!a)throw fa("reqslot",b);});for(var ic in ja)ja[ic]&&(ja[ic]=kc(La,ja[ic],e))}else N=B(fc(b)).contents();v.empty();A=kc(La,N,e,void 0,void 0,{needsNewScope:y.$$isolateScope||y.$$newScope});A.$$slots=ja}if(y.template)if(O=!0,$("template",I,y,v),I=y,x=D(y.template)?y.template(v,d):y.template,x=Ea(x),y.replace){g=y;N=cc.test(x)?pd(ha(y.templateNamespace,T(x))):[];b=N[0];if(1!==N.length||1!==b.nodeType)throw fa("tplrt",P,"");
-ka(f,v,b);F={$attr:{}};x=jc(b,[],F);var Y=a.splice(z+1,a.length-(z+1));(E||K)&&aa(x,E,K);a=a.concat(x).concat(Y);da(d,F);F=a.length}else v.html(x);if(y.templateUrl)O=!0,$("template",I,y,v),I=y,y.replace&&(g=y),n=ga(a.splice(z,a.length-z),v,d,f,J&&A,h,k,{controllerDirectives:G,newScopeDirective:K!==y&&K,newIsolateScopeDirective:E,templateDirective:I,nonTlbTranscludeDirective:t}),F=a.length;else if(y.compile)try{R=y.compile(v,d,A);var Z=y.$$originalDirective||y;D(R)?m(null,bb(Z,R),Ma,L):R&&m(bb(Z,R.pre),
-bb(Z,R.post),Ma,L)}catch(ea){c(ea,xa(v))}y.terminal&&(n.terminal=!0,p=Math.max(p,y.priority))}n.scope=K&&!0===K.scope;n.transcludeOnThisElement=J;n.templateOnThisElement=O;n.transclude=A;l.hasElementTranscludeDirective=X;return n}function U(a,b,c,d){var e;if(F(b)){var f=b.match(l);b=b.substring(f[0].length);var g=f[1]||f[3],f="?"===f[2];"^^"===g?c=c.parent():e=(e=d&&d[b])&&e.instance;if(!e){var h="$"+b+"Controller";e=g?c.inheritedData(h):c.data(h)}if(!e&&!f)throw fa("ctreq",b,a);}else if(H(b))for(e=
-[],g=0,f=b.length;g<f;g++)e[g]=U(a,b[g],c,d);else C(b)&&(e={},q(b,function(b,f){e[f]=U(a,b,c,d)}));return e||null}function ba(a,b,c,d,e,f,g){var h=V(),k;for(k in d){var l=d[k],m={$scope:l===g||l.$$isolateScope?e:f,$element:a,$attrs:b,$transclude:c},n=l.controller;"@"===n&&(n=b[l.name]);m=E(n,m,!0,l.controllerAs);h[l.name]=m;a.data("$"+l.name+"Controller",m.instance)}return h}function aa(a,b,c){for(var d=0,e=a.length;d<e;d++)a[d]=Vb(a[d],{$$isolateScope:b,$$newScope:c})}function Y(b,c,e,g,h,k,l){if(c===
-h)return null;var m=null;if(f.hasOwnProperty(c)){h=a.get(c+"Directive");for(var n=0,p=h.length;n<p;n++)if(c=h[n],(w(g)||g>c.priority)&&-1!==c.restrict.indexOf(e)){k&&(c=Vb(c,{$$start:k,$$end:l}));if(!c.$$bindings){var K=m=c,r=c.name,t={isolateScope:null,bindToController:null};C(K.scope)&&(!0===K.bindToController?(t.bindToController=d(K.scope,r,!0),t.isolateScope={}):t.isolateScope=d(K.scope,r,!1));C(K.bindToController)&&(t.bindToController=d(K.bindToController,r,!0));if(t.bindToController&&!K.controller)throw fa("noctrl",
-r);m=m.$$bindings=t;C(m.isolateScope)&&(c.$$isolateBindings=m.isolateScope)}b.push(c);m=c}}return m}function Z(b){if(f.hasOwnProperty(b))for(var c=a.get(b+"Directive"),d=0,e=c.length;d<e;d++)if(b=c[d],b.multiElement)return!0;return!1}function da(a,b){var c=b.$attr,d=a.$attr;q(a,function(d,e){"$"!==e.charAt(0)&&(b[e]&&b[e]!==d&&(d=d.length?d+(("style"===e?";":" ")+b[e]):b[e]),a.$set(e,d,!0,c[e]))});q(b,function(b,e){a.hasOwnProperty(e)||"$"===e.charAt(0)||(a[e]=b,"class"!==e&&"style"!==e&&(d[e]=c[e]))})}
-function ga(a,b,d,f,g,h,k,l){var m=[],n,p,K=b[0],r=a.shift(),t=Vb(r,{templateUrl:null,transclude:null,replace:null,$$originalDirective:r}),y=D(r.templateUrl)?r.templateUrl(b,d):r.templateUrl,E=r.templateNamespace;b.empty();e(y).then(function(c){var e,G;c=Ea(c);if(r.replace){c=cc.test(c)?pd(ha(E,T(c))):[];e=c[0];if(1!==c.length||1!==e.nodeType)throw fa("tplrt",r.name,y);c={$attr:{}};ka(f,b,e);var I=jc(e,[],c);C(r.scope)&&aa(I,!0);a=I.concat(a);da(d,c)}else e=K,b.html(c);a.unshift(t);n=W(a,e,d,g,b,
-r,h,k,l);q(f,function(a,c){a===e&&(f[c]=b[0])});for(p=Ma(b[0].childNodes,g);m.length;){c=m.shift();G=m.shift();var v=m.shift(),J=m.shift(),I=b[0];if(!c.$$destroyed){if(G!==K){var O=G.className;l.hasElementTranscludeDirective&&r.replace||(I=fc(e));ka(v,B(G),I);La(B(I),O)}G=n.transcludeOnThisElement?ja(c,n.transclude,J):J;n(p,c,I,f,G)}}m=null}).catch(function(a){a instanceof Error&&c(a)});return function(a,b,c,d,e){a=e;b.$$destroyed||(m?m.push(b,c,d,a):(n.transcludeOnThisElement&&(a=ja(b,n.transclude,
-e)),n(p,b,c,d,a)))}}function ea(a,b){var c=b.priority-a.priority;return 0!==c?c:a.name!==b.name?a.name<b.name?-1:1:a.index-b.index}function $(a,b,c,d){function e(a){return a?" (module: "+a+")":""}if(b)throw fa("multidir",b.name,e(b.$$moduleName),c.name,e(c.$$moduleName),a,xa(d));}function la(a,c){var d=b(c,!0);d&&a.push({priority:0,compile:function(a){a=a.parent();var b=!!a.length;b&&ca.$$addBindingClass(a);return function(a,c){var e=c.parent();b||ca.$$addBindingClass(e);ca.$$addBindingInfo(e,d.expressions);
-a.$watch(d,function(a){c[0].nodeValue=a})}}})}function ha(a,b){a=Q(a||"html");switch(a){case "svg":case "math":var c=x.document.createElement("div");c.innerHTML="<"+a+">"+b+"</"+a+">";return c.childNodes[0].childNodes;default:return b}}function oa(a,b){if("srcdoc"===b)return y.HTML;var c=wa(a);if("src"===b||"ngSrc"===b){if(-1===["img","video","audio","source","track"].indexOf(c))return y.RESOURCE_URL}else if("xlinkHref"===b||"form"===c&&"action"===b||"link"===c&&"href"===b)return y.RESOURCE_URL}function pa(a,
-c,d,e,f){var g=oa(a,e),h=k[e]||f,l=b(d,!f,g,h);if(l){if("multiple"===e&&"select"===wa(a))throw fa("selmulti",xa(a));if(m.test(e))throw fa("nodomevents");c.push({priority:100,compile:function(){return{pre:function(a,c,f){c=f.$$observers||(f.$$observers=V());var k=f[e];k!==d&&(l=k&&b(k,!0,g,h),d=k);l&&(f[e]=l(a),(c[e]||(c[e]=[])).$$inter=!0,(f.$$observers&&f.$$observers[e].$$scope||a).$watch(l,function(a,b){"class"===e&&a!==b?f.$updateClass(a,b):f.$set(e,a)}))}}}})}}function ka(a,b,c){var d=b[0],e=
-b.length,f=d.parentNode,g,h;if(a)for(g=0,h=a.length;g<h;g++)if(a[g]===d){a[g++]=c;h=g+e-1;for(var k=a.length;g<k;g++,h++)h<k?a[g]=a[h]:delete a[g];a.length-=e-1;a.context===d&&(a.context=c);break}f&&f.replaceChild(c,d);a=x.document.createDocumentFragment();for(g=0;g<e;g++)a.appendChild(b[g]);B.hasData(d)&&(B.data(c,B.data(d)),B(d).off("$destroy"));B.cleanData(a.querySelectorAll("*"));for(g=1;g<e;g++)delete b[g];b[0]=c;b.length=1}function qa(a,b){return S(function(){return a.apply(null,arguments)},
-a,b)}function ra(a,b,d,e,f,g){try{a(b,d,e,f,g)}catch(h){c(h,xa(d))}}function na(a,c,d,e,f){function g(b,c,e){D(d.$onChanges)&&!Xb(c,e)&&(ia||(a.$$postDigest(P),ia=[]),m||(m={},ia.push(h)),m[b]&&(e=m[b].previousValue),m[b]=new Ib(e,c))}function h(){d.$onChanges(m);m=void 0}var k=[],l={},m;q(e,function(e,h){var m=e.attrName,p=e.optional,r,t,y,G;switch(e.mode){case "@":p||ua.call(c,m)||(d[h]=c[m]=void 0);p=c.$observe(m,function(a){if(F(a)||Ha(a))g(h,a,d[h]),d[h]=a});c.$$observers[m].$$scope=a;r=c[m];
-F(r)?d[h]=b(r)(a):Ha(r)&&(d[h]=r);l[h]=new Ib(lc,d[h]);k.push(p);break;case "=":if(!ua.call(c,m)){if(p)break;c[m]=void 0}if(p&&!c[m])break;t=n(c[m]);G=t.literal?sa:Xb;y=t.assign||function(){r=d[h]=t(a);throw fa("nonassign",c[m],m,f.name);};r=d[h]=t(a);p=function(b){G(b,d[h])||(G(b,r)?y(a,b=d[h]):d[h]=b);return r=b};p.$stateful=!0;p=e.collection?a.$watchCollection(c[m],p):a.$watch(n(c[m],p),null,t.literal);k.push(p);break;case "<":if(!ua.call(c,m)){if(p)break;c[m]=void 0}if(p&&!c[m])break;t=n(c[m]);
-var E=t.literal,I=d[h]=t(a);l[h]=new Ib(lc,d[h]);p=a.$watch(t,function(a,b){if(b===a){if(b===I||E&&sa(b,I))return;b=I}g(h,a,b);d[h]=a},E);k.push(p);break;case "&":t=c.hasOwnProperty(m)?n(c[m]):z;if(t===z&&p)break;d[h]=function(b){return t(a,b)}}});return{initialChanges:l,removeWatches:k.length&&function(){for(var a=0,b=k.length;a<b;++a)k[a]()}}}var Ca=/^\w/,ta=x.document.createElement("div"),Fa=v,Ga=t,ya=J,ia;s.prototype={$normalize:Ba,$addClass:function(a){a&&0<a.length&&O.addClass(this.$$element,
-a)},$removeClass:function(a){a&&0<a.length&&O.removeClass(this.$$element,a)},$updateClass:function(a,b){var c=qd(a,b);c&&c.length&&O.addClass(this.$$element,c);(c=qd(b,a))&&c.length&&O.removeClass(this.$$element,c)},$set:function(a,b,d,e){var f=id(this.$$element[0],a),g=rd[a],h=a;f?(this.$$element.prop(a,b),e=f):g&&(this[g]=b,h=g);this[a]=b;e?this.$attr[a]=e:(e=this.$attr[a])||(this.$attr[a]=e=Tc(a,"-"));f=wa(this.$$element);if("a"===f&&("href"===a||"xlinkHref"===a)||"img"===f&&"src"===a)this[a]=
-b=X(b,"src"===a);else if("img"===f&&"srcset"===a&&u(b)){for(var f="",g=T(b),k=/(\s+\d+x\s*,|\s+\d+w\s*,|\s+,|,\s+)/,k=/\s/.test(g)?k:/(,)/,g=g.split(k),k=Math.floor(g.length/2),l=0;l<k;l++)var m=2*l,f=f+X(T(g[m]),!0),f=f+(" "+T(g[m+1]));g=T(g[2*l]).split(/\s/);f+=X(T(g[0]),!0);2===g.length&&(f+=" "+T(g[1]));this[a]=b=f}!1!==d&&(null===b||w(b)?this.$$element.removeAttr(e):Ca.test(e)?this.$$element.attr(e,b):R(this.$$element[0],e,b));(a=this.$$observers)&&q(a[h],function(a){try{a(b)}catch(d){c(d)}})},
-$observe:function(a,b){var c=this,d=c.$$observers||(c.$$observers=V()),e=d[a]||(d[a]=[]);e.push(b);G.$evalAsync(function(){e.$$inter||!c.hasOwnProperty(a)||w(c[a])||b(c[a])});return function(){$a(e,b)}}};var Aa=b.startSymbol(),Da=b.endSymbol(),Ea="{{"===Aa&&"}}"===Da?Ya:function(a){return a.replace(/\{\{/g,Aa).replace(/}}/g,Da)},Ja=/^ngAttr[A-Z]/,Ka=/^(.+)Start$/;ca.$$addBindingInfo=p?function(a,b){var c=a.data("$binding")||[];H(b)?c=c.concat(b):c.push(b);a.data("$binding",c)}:z;ca.$$addBindingClass=
-p?function(a){La(a,"ng-binding")}:z;ca.$$addScopeInfo=p?function(a,b,c,d){a.data(c?d?"$isolateScopeNoTemplate":"$isolateScope":"$scope",b)}:z;ca.$$addScopeClass=p?function(a,b){La(a,b?"ng-isolate-scope":"ng-scope")}:z;ca.$$createComment=function(a,b){var c="";p&&(c=" "+(a||"")+": ",b&&(c+=b+" "));return x.document.createComment(c)};return ca}]}function Ib(a,b){this.previousValue=a;this.currentValue=b}function Ba(a){return a.replace(md,"").replace(rg,gb)}function qd(a,b){var d="",c=a.split(/\s+/),
-e=b.split(/\s+/),f=0;a:for(;f<c.length;f++){for(var g=c[f],h=0;h<e.length;h++)if(g===e[h])continue a;d+=(0<d.length?" ":"")+g}return d}function pd(a){a=B(a);var b=a.length;if(1>=b)return a;for(;b--;){var d=a[b];(8===d.nodeType||d.nodeType===Ia&&""===d.nodeValue.trim())&&sg.call(a,b,1)}return a}function qg(a,b){if(b&&F(b))return b;if(F(a)){var d=sd.exec(a);if(d)return d[3]}}function wf(){var a={},b=!1;this.has=function(b){return a.hasOwnProperty(b)};this.register=function(b,c){Ka(b,"controller");C(b)?
-S(a,b):a[b]=c};this.allowGlobals=function(){b=!0};this.$get=["$injector","$window",function(d,c){function e(a,b,c,d){if(!a||!C(a.$scope))throw L("$controller")("noscp",d,b);a.$scope[b]=c}return function(f,g,h,k){var l,m,n;h=!0===h;k&&F(k)&&(n=k);if(F(f)){k=f.match(sd);if(!k)throw td("ctrlfmt",f);m=k[1];n=n||k[3];f=a.hasOwnProperty(m)?a[m]:Vc(g.$scope,m,!0)||(b?Vc(c,m,!0):void 0);if(!f)throw td("ctrlreg",m);sb(f,m,!0)}if(h)return h=(H(f)?f[f.length-1]:f).prototype,l=Object.create(h||null),n&&e(g,n,
-l,m||f.name),S(function(){var a=d.invoke(f,l,g,m);a!==l&&(C(a)||D(a))&&(l=a,n&&e(g,n,l,m||f.name));return l},{instance:l,identifier:n});l=d.instantiate(f,g,m);n&&e(g,n,l,m||f.name);return l}}]}function xf(){this.$get=["$window",function(a){return B(a.document)}]}function yf(){this.$get=["$document","$rootScope",function(a,b){function d(){e=c.hidden}var c=a[0],e=c&&c.hidden;a.on("visibilitychange",d);b.$on("$destroy",function(){a.off("visibilitychange",d)});return function(){return e}}]}function zf(){this.$get=
-["$log",function(a){return function(b,d){a.error.apply(a,arguments)}}]}function mc(a){return C(a)?ga(a)?a.toISOString():cb(a):a}function Ef(){this.$get=function(){return function(a){if(!a)return"";var b=[];Kc(a,function(a,c){null===a||w(a)||(H(a)?q(a,function(a){b.push($(c)+"="+$(mc(a)))}):b.push($(c)+"="+$(mc(a))))});return b.join("&")}}}function Ff(){this.$get=function(){return function(a){function b(a,e,f){null===a||w(a)||(H(a)?q(a,function(a,c){b(a,e+"["+(C(a)?c:"")+"]")}):C(a)&&!ga(a)?Kc(a,function(a,
-c){b(a,e+(f?"":"[")+c+(f?"":"]"))}):d.push($(e)+"="+$(mc(a))))}if(!a)return"";var d=[];b(a,"",!0);return d.join("&")}}}function nc(a,b){if(F(a)){var d=a.replace(tg,"").trim();if(d){var c=b("Content-Type");(c=c&&0===c.indexOf(ud))||(c=(c=d.match(ug))&&vg[c[0]].test(d));if(c)try{a=Oc(d)}catch(e){throw oc("baddata",a,e);}}}return a}function vd(a){var b=V(),d;F(a)?q(a.split("\n"),function(a){d=a.indexOf(":");var e=Q(T(a.substr(0,d)));a=T(a.substr(d+1));e&&(b[e]=b[e]?b[e]+", "+a:a)}):C(a)&&q(a,function(a,
-d){var f=Q(d),g=T(a);f&&(b[f]=b[f]?b[f]+", "+g:g)});return b}function wd(a){var b;return function(d){b||(b=vd(a));return d?(d=b[Q(d)],void 0===d&&(d=null),d):b}}function xd(a,b,d,c){if(D(c))return c(a,b,d);q(c,function(c){a=c(a,b,d)});return a}function Df(){var a=this.defaults={transformResponse:[nc],transformRequest:[function(a){return C(a)&&"[object File]"!==ma.call(a)&&"[object Blob]"!==ma.call(a)&&"[object FormData]"!==ma.call(a)?cb(a):a}],headers:{common:{Accept:"application/json, text/plain, */*"},
-post:pa(pc),put:pa(pc),patch:pa(pc)},xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",paramSerializer:"$httpParamSerializer",jsonpCallbackParam:"callback"},b=!1;this.useApplyAsync=function(a){return u(a)?(b=!!a,this):b};var d=this.interceptors=[];this.$get=["$browser","$httpBackend","$$cookieReader","$cacheFactory","$rootScope","$q","$injector","$sce",function(c,e,f,g,h,k,l,m){function n(b){function d(a,b){for(var c=0,e=b.length;c<e;){var f=b[c++],g=b[c++];a=a.then(f,g)}b.length=0;return a}
-function e(a,b){var c,d={};q(a,function(a,e){D(a)?(c=a(b),null!=c&&(d[e]=c)):d[e]=a});return d}function f(a){var b=S({},a);b.data=xd(a.data,a.headers,a.status,g.transformResponse);a=a.status;return 200<=a&&300>a?b:k.reject(b)}if(!C(b))throw L("$http")("badreq",b);if(!F(m.valueOf(b.url)))throw L("$http")("badreq",b.url);var g=S({method:"get",transformRequest:a.transformRequest,transformResponse:a.transformResponse,paramSerializer:a.paramSerializer,jsonpCallbackParam:a.jsonpCallbackParam},b);g.headers=
-function(b){var c=a.headers,d=S({},b.headers),f,g,h,c=S({},c.common,c[Q(b.method)]);a:for(f in c){g=Q(f);for(h in d)if(Q(h)===g)continue a;d[f]=c[f]}return e(d,pa(b))}(b);g.method=ub(g.method);g.paramSerializer=F(g.paramSerializer)?l.get(g.paramSerializer):g.paramSerializer;c.$$incOutstandingRequestCount();var h=[],n=[];b=k.resolve(g);q(t,function(a){(a.request||a.requestError)&&h.unshift(a.request,a.requestError);(a.response||a.responseError)&&n.push(a.response,a.responseError)});b=d(b,h);b=b.then(function(b){var c=
-b.headers,d=xd(b.data,wd(c),void 0,b.transformRequest);w(d)&&q(c,function(a,b){"content-type"===Q(b)&&delete c[b]});w(b.withCredentials)&&!w(a.withCredentials)&&(b.withCredentials=a.withCredentials);return p(b,d).then(f,f)});b=d(b,n);return b=b.finally(function(){c.$$completeOutstandingRequest(z)})}function p(c,d){function g(a){if(a){var c={};q(a,function(a,d){c[d]=function(c){function d(){a(c)}b?h.$applyAsync(d):h.$$phase?d():h.$apply(d)}});return c}}function l(a,c,d,e){function f(){p(c,a,d,e)}O&&
-(200<=a&&300>a?O.put(R,[a,c,vd(d),e]):O.remove(R));b?h.$applyAsync(f):(f(),h.$$phase||h.$apply())}function p(a,b,d,e){b=-1<=b?b:0;(200<=b&&300>b?G.resolve:G.reject)({data:a,status:b,headers:wd(d),config:c,statusText:e})}function K(a){p(a.data,a.status,pa(a.headers()),a.statusText)}function t(){var a=n.pendingRequests.indexOf(c);-1!==a&&n.pendingRequests.splice(a,1)}var G=k.defer(),y=G.promise,O,X,P=c.headers,s="jsonp"===Q(c.method),R=c.url;s?R=m.getTrustedResourceUrl(R):F(R)||(R=m.valueOf(R));R=r(R,
-c.paramSerializer(c.params));s&&(R=J(R,c.jsonpCallbackParam));n.pendingRequests.push(c);y.then(t,t);!c.cache&&!a.cache||!1===c.cache||"GET"!==c.method&&"JSONP"!==c.method||(O=C(c.cache)?c.cache:C(a.cache)?a.cache:v);O&&(X=O.get(R),u(X)?X&&D(X.then)?X.then(K,K):H(X)?p(X[1],X[0],pa(X[2]),X[3]):p(X,200,{},"OK"):O.put(R,y));w(X)&&((X=yd(c.url)?f()[c.xsrfCookieName||a.xsrfCookieName]:void 0)&&(P[c.xsrfHeaderName||a.xsrfHeaderName]=X),e(c.method,R,d,l,P,c.timeout,c.withCredentials,c.responseType,g(c.eventHandlers),
-g(c.uploadEventHandlers)));return y}function r(a,b){0<b.length&&(a+=(-1===a.indexOf("?")?"?":"&")+b);return a}function J(a,b){if(/[&?][^=]+=JSON_CALLBACK/.test(a))throw oc("badjsonp",a);if((new RegExp("[&?]"+b+"=")).test(a))throw oc("badjsonp",b,a);return a+=(-1===a.indexOf("?")?"?":"&")+b+"=JSON_CALLBACK"}var v=g("$http");a.paramSerializer=F(a.paramSerializer)?l.get(a.paramSerializer):a.paramSerializer;var t=[];q(d,function(a){t.unshift(F(a)?l.get(a):l.invoke(a))});n.pendingRequests=[];(function(a){q(arguments,
-function(a){n[a]=function(b,c){return n(S({},c||{},{method:a,url:b}))}})})("get","delete","head","jsonp");(function(a){q(arguments,function(a){n[a]=function(b,c,d){return n(S({},d||{},{method:a,url:b,data:c}))}})})("post","put","patch");n.defaults=a;return n}]}function Hf(){this.$get=function(){return function(){return new x.XMLHttpRequest}}}function Gf(){this.$get=["$browser","$jsonpCallbacks","$document","$xhrFactory",function(a,b,d,c){return wg(a,c,a.defer,b,d[0])}]}function wg(a,b,d,c,e){function f(a,
-b,d){a=a.replace("JSON_CALLBACK",b);var f=e.createElement("script"),m=null;f.type="text/javascript";f.src=a;f.async=!0;m=function(a){f.removeEventListener("load",m);f.removeEventListener("error",m);e.body.removeChild(f);f=null;var g=-1,r="unknown";a&&("load"!==a.type||c.wasCalled(b)||(a={type:"error"}),r=a.type,g="error"===a.type?404:200);d&&d(g,r)};f.addEventListener("load",m);f.addEventListener("error",m);e.body.appendChild(f);return m}return function(e,h,k,l,m,n,p,r,J,v){function t(){N&&N();A&&
-A.abort()}h=h||a.url();if("jsonp"===Q(e))var M=c.createCallback(h),N=f(h,M,function(a,b){var e=200===a&&c.getResponse(M);u(I)&&d.cancel(I);N=A=null;l(a,e,"",b);c.removeCallback(M)});else{var A=b(e,h);A.open(e,h,!0);q(m,function(a,b){u(a)&&A.setRequestHeader(b,a)});A.onload=function(){var a=A.statusText||"",b="response"in A?A.response:A.responseText,c=1223===A.status?204:A.status;0===c&&(c=b?200:"file"===Ca(h).protocol?404:0);var e=A.getAllResponseHeaders();u(I)&&d.cancel(I);N=A=null;l(c,b,e,a)};e=
-function(){u(I)&&d.cancel(I);N=A=null;l(-1,null,null,"")};A.onerror=e;A.onabort=e;A.ontimeout=e;q(J,function(a,b){A.addEventListener(b,a)});q(v,function(a,b){A.upload.addEventListener(b,a)});p&&(A.withCredentials=!0);if(r)try{A.responseType=r}catch(s){if("json"!==r)throw s;}A.send(w(k)?null:k)}if(0<n)var I=d(t,n);else n&&D(n.then)&&n.then(t)}}function Bf(){var a="{{",b="}}";this.startSymbol=function(b){return b?(a=b,this):a};this.endSymbol=function(a){return a?(b=a,this):b};this.$get=["$parse","$exceptionHandler",
-"$sce",function(d,c,e){function f(a){return"\\\\\\"+a}function g(c){return c.replace(n,a).replace(p,b)}function h(a,b,c,d){var e=a.$watch(function(a){e();return d(a)},b,c);return e}function k(f,k,n,p){function M(a){try{var b=a;a=n?e.getTrusted(n,b):e.valueOf(b);return p&&!u(a)?a:$b(a)}catch(d){c(Da.interr(f,d))}}if(!f.length||-1===f.indexOf(a)){var q;k||(k=g(f),q=la(k),q.exp=f,q.expressions=[],q.$$watchDelegate=h);return q}p=!!p;var A,s,I=0,K=[],E=[];q=f.length;for(var G=[],y=[];I<q;)if(-1!==(A=f.indexOf(a,
-I))&&-1!==(s=f.indexOf(b,A+l)))I!==A&&G.push(g(f.substring(I,A))),I=f.substring(A+l,s),K.push(I),E.push(d(I,M)),I=s+m,y.push(G.length),G.push("");else{I!==q&&G.push(g(f.substring(I)));break}n&&1<G.length&&Da.throwNoconcat(f);if(!k||K.length){var O=function(a){for(var b=0,c=K.length;b<c;b++){if(p&&w(a[b]))return;G[y[b]]=a[b]}return G.join("")};return S(function(a){var b=0,d=K.length,e=Array(d);try{for(;b<d;b++)e[b]=E[b](a);return O(e)}catch(g){c(Da.interr(f,g))}},{exp:f,expressions:K,$$watchDelegate:function(a,
-b){var c;return a.$watchGroup(E,function(d,e){var f=O(d);D(b)&&b.call(this,f,d!==e?c:f,a);c=f})}})}}var l=a.length,m=b.length,n=new RegExp(a.replace(/./g,f),"g"),p=new RegExp(b.replace(/./g,f),"g");k.startSymbol=function(){return a};k.endSymbol=function(){return b};return k}]}function Cf(){this.$get=["$rootScope","$window","$q","$$q","$browser",function(a,b,d,c,e){function f(f,k,l,m){function n(){p?f.apply(null,r):f(t)}var p=4<arguments.length,r=p?va.call(arguments,4):[],J=b.setInterval,v=b.clearInterval,
-t=0,M=u(m)&&!m,q=(M?c:d).defer(),A=q.promise;l=u(l)?l:0;A.$$intervalId=J(function(){M?e.defer(n):a.$evalAsync(n);q.notify(t++);0<l&&t>=l&&(q.resolve(t),v(A.$$intervalId),delete g[A.$$intervalId]);M||a.$apply()},k);g[A.$$intervalId]=q;return A}var g={};f.cancel=function(a){return a&&a.$$intervalId in g?(g[a.$$intervalId].promise.catch(z),g[a.$$intervalId].reject("canceled"),b.clearInterval(a.$$intervalId),delete g[a.$$intervalId],!0):!1};return f}]}function qc(a){a=a.split("/");for(var b=a.length;b--;)a[b]=
-db(a[b]);return a.join("/")}function zd(a,b){var d=Ca(a);b.$$protocol=d.protocol;b.$$host=d.hostname;b.$$port=Z(d.port)||xg[d.protocol]||null}function Ad(a,b){if(yg.test(a))throw kb("badpath",a);var d="/"!==a.charAt(0);d&&(a="/"+a);var c=Ca(a);b.$$path=decodeURIComponent(d&&"/"===c.pathname.charAt(0)?c.pathname.substring(1):c.pathname);b.$$search=Rc(c.search);b.$$hash=decodeURIComponent(c.hash);b.$$path&&"/"!==b.$$path.charAt(0)&&(b.$$path="/"+b.$$path)}function rc(a,b){return a.slice(0,b.length)===
-b}function ka(a,b){if(rc(b,a))return b.substr(a.length)}function Aa(a){var b=a.indexOf("#");return-1===b?a:a.substr(0,b)}function lb(a){return a.replace(/(#.+)|#$/,"$1")}function sc(a,b,d){this.$$html5=!0;d=d||"";zd(a,this);this.$$parse=function(a){var d=ka(b,a);if(!F(d))throw kb("ipthprfx",a,b);Ad(d,this);this.$$path||(this.$$path="/");this.$$compose()};this.$$compose=function(){var a=Zb(this.$$search),d=this.$$hash?"#"+db(this.$$hash):"";this.$$url=qc(this.$$path)+(a?"?"+a:"")+d;this.$$absUrl=b+
-this.$$url.substr(1);this.$$urlUpdatedByLocation=!0};this.$$parseLinkUrl=function(c,e){if(e&&"#"===e[0])return this.hash(e.slice(1)),!0;var f,g;u(f=ka(a,c))?(g=f,g=d&&u(f=ka(d,f))?b+(ka("/",f)||f):a+g):u(f=ka(b,c))?g=b+f:b===c+"/"&&(g=b);g&&this.$$parse(g);return!!g}}function tc(a,b,d){zd(a,this);this.$$parse=function(c){var e=ka(a,c)||ka(b,c),f;w(e)||"#"!==e.charAt(0)?this.$$html5?f=e:(f="",w(e)&&(a=c,this.replace())):(f=ka(d,e),w(f)&&(f=e));Ad(f,this);c=this.$$path;var e=a,g=/^\/[A-Z]:(\/.*)/;rc(f,
-e)&&(f=f.replace(e,""));g.exec(f)||(c=(f=g.exec(c))?f[1]:c);this.$$path=c;this.$$compose()};this.$$compose=function(){var b=Zb(this.$$search),e=this.$$hash?"#"+db(this.$$hash):"";this.$$url=qc(this.$$path)+(b?"?"+b:"")+e;this.$$absUrl=a+(this.$$url?d+this.$$url:"");this.$$urlUpdatedByLocation=!0};this.$$parseLinkUrl=function(b,d){return Aa(a)===Aa(b)?(this.$$parse(b),!0):!1}}function Bd(a,b,d){this.$$html5=!0;tc.apply(this,arguments);this.$$parseLinkUrl=function(c,e){if(e&&"#"===e[0])return this.hash(e.slice(1)),
-!0;var f,g;a===Aa(c)?f=c:(g=ka(b,c))?f=a+d+g:b===c+"/"&&(f=b);f&&this.$$parse(f);return!!f};this.$$compose=function(){var b=Zb(this.$$search),e=this.$$hash?"#"+db(this.$$hash):"";this.$$url=qc(this.$$path)+(b?"?"+b:"")+e;this.$$absUrl=a+d+this.$$url;this.$$urlUpdatedByLocation=!0}}function Jb(a){return function(){return this[a]}}function Cd(a,b){return function(d){if(w(d))return this[a];this[a]=b(d);this.$$compose();return this}}function Jf(){var a="!",b={enabled:!1,requireBase:!0,rewriteLinks:!0};
-this.hashPrefix=function(b){return u(b)?(a=b,this):a};this.html5Mode=function(a){if(Ha(a))return b.enabled=a,this;if(C(a)){Ha(a.enabled)&&(b.enabled=a.enabled);Ha(a.requireBase)&&(b.requireBase=a.requireBase);if(Ha(a.rewriteLinks)||F(a.rewriteLinks))b.rewriteLinks=a.rewriteLinks;return this}return b};this.$get=["$rootScope","$browser","$sniffer","$rootElement","$window",function(d,c,e,f,g){function h(a,b,d){var e=l.url(),f=l.$$state;try{c.url(a,b,d),l.$$state=c.state()}catch(g){throw l.url(e),l.$$state=
-f,g;}}function k(a,b){d.$broadcast("$locationChangeSuccess",l.absUrl(),a,l.$$state,b)}var l,m;m=c.baseHref();var n=c.url(),p;if(b.enabled){if(!m&&b.requireBase)throw kb("nobase");p=n.substring(0,n.indexOf("/",n.indexOf("//")+2))+(m||"/");m=e.history?sc:Bd}else p=Aa(n),m=tc;var r=p.substr(0,Aa(p).lastIndexOf("/")+1);l=new m(p,r,"#"+a);l.$$parseLinkUrl(n,n);l.$$state=c.state();var J=/^\s*(javascript|mailto):/i;f.on("click",function(a){var e=b.rewriteLinks;if(e&&!a.ctrlKey&&!a.metaKey&&!a.shiftKey&&
-2!==a.which&&2!==a.button){for(var h=B(a.target);"a"!==wa(h[0]);)if(h[0]===f[0]||!(h=h.parent())[0])return;if(!F(e)||!w(h.attr(e))){var e=h.prop("href"),k=h.attr("href")||h.attr("xlink:href");C(e)&&"[object SVGAnimatedString]"===e.toString()&&(e=Ca(e.animVal).href);J.test(e)||!e||h.attr("target")||a.isDefaultPrevented()||!l.$$parseLinkUrl(e,k)||(a.preventDefault(),l.absUrl()!==c.url()&&(d.$apply(),g.angular["ff-684208-preventDefault"]=!0))}}});lb(l.absUrl())!==lb(n)&&c.url(l.absUrl(),!0);var v=!0;
-c.onUrlChange(function(a,b){rc(a,r)?(d.$evalAsync(function(){var c=l.absUrl(),e=l.$$state,f;a=lb(a);l.$$parse(a);l.$$state=b;f=d.$broadcast("$locationChangeStart",a,c,b,e).defaultPrevented;l.absUrl()===a&&(f?(l.$$parse(c),l.$$state=e,h(c,!1,e)):(v=!1,k(c,e)))}),d.$$phase||d.$digest()):g.location.href=a});d.$watch(function(){if(v||l.$$urlUpdatedByLocation){l.$$urlUpdatedByLocation=!1;var a=lb(c.url()),b=lb(l.absUrl()),f=c.state(),g=l.$$replace,m=a!==b||l.$$html5&&e.history&&f!==l.$$state;if(v||m)v=
-!1,d.$evalAsync(function(){var b=l.absUrl(),c=d.$broadcast("$locationChangeStart",b,a,l.$$state,f).defaultPrevented;l.absUrl()===b&&(c?(l.$$parse(a),l.$$state=f):(m&&h(b,g,f===l.$$state?null:l.$$state),k(a,f)))})}l.$$replace=!1});return l}]}function Kf(){var a=!0,b=this;this.debugEnabled=function(b){return u(b)?(a=b,this):a};this.$get=["$window",function(d){function c(a){a instanceof Error&&(a.stack&&f?a=a.message&&-1===a.stack.indexOf(a.message)?"Error: "+a.message+"\n"+a.stack:a.stack:a.sourceURL&&
-(a=a.message+"\n"+a.sourceURL+":"+a.line));return a}function e(a){var b=d.console||{},e=b[a]||b.log||z;a=!1;try{a=!!e.apply}catch(f){}return a?function(){var a=[];q(arguments,function(b){a.push(c(b))});return e.apply(b,a)}:function(a,b){e(a,null==b?"":b)}}var f=za||/\bEdge\//.test(d.navigator&&d.navigator.userAgent);return{log:e("log"),info:e("info"),warn:e("warn"),error:e("error"),debug:function(){var c=e("debug");return function(){a&&c.apply(b,arguments)}}()}}]}function zg(a){return a+""}function Ag(a,
-b){return"undefined"!==typeof a?a:b}function Dd(a,b){return"undefined"===typeof a?b:"undefined"===typeof b?a:a+b}function U(a,b){var d,c,e;switch(a.type){case s.Program:d=!0;q(a.body,function(a){U(a.expression,b);d=d&&a.expression.constant});a.constant=d;break;case s.Literal:a.constant=!0;a.toWatch=[];break;case s.UnaryExpression:U(a.argument,b);a.constant=a.argument.constant;a.toWatch=a.argument.toWatch;break;case s.BinaryExpression:U(a.left,b);U(a.right,b);a.constant=a.left.constant&&a.right.constant;
-a.toWatch=a.left.toWatch.concat(a.right.toWatch);break;case s.LogicalExpression:U(a.left,b);U(a.right,b);a.constant=a.left.constant&&a.right.constant;a.toWatch=a.constant?[]:[a];break;case s.ConditionalExpression:U(a.test,b);U(a.alternate,b);U(a.consequent,b);a.constant=a.test.constant&&a.alternate.constant&&a.consequent.constant;a.toWatch=a.constant?[]:[a];break;case s.Identifier:a.constant=!1;a.toWatch=[a];break;case s.MemberExpression:U(a.object,b);a.computed&&U(a.property,b);a.constant=a.object.constant&&
-(!a.computed||a.property.constant);a.toWatch=[a];break;case s.CallExpression:d=e=a.filter?!b(a.callee.name).$stateful:!1;c=[];q(a.arguments,function(a){U(a,b);d=d&&a.constant;a.constant||c.push.apply(c,a.toWatch)});a.constant=d;a.toWatch=e?c:[a];break;case s.AssignmentExpression:U(a.left,b);U(a.right,b);a.constant=a.left.constant&&a.right.constant;a.toWatch=[a];break;case s.ArrayExpression:d=!0;c=[];q(a.elements,function(a){U(a,b);d=d&&a.constant;a.constant||c.push.apply(c,a.toWatch)});a.constant=
-d;a.toWatch=c;break;case s.ObjectExpression:d=!0;c=[];q(a.properties,function(a){U(a.value,b);d=d&&a.value.constant&&!a.computed;a.value.constant||c.push.apply(c,a.value.toWatch);a.computed&&(U(a.key,b),a.key.constant||c.push.apply(c,a.key.toWatch))});a.constant=d;a.toWatch=c;break;case s.ThisExpression:a.constant=!1;a.toWatch=[];break;case s.LocalsExpression:a.constant=!1,a.toWatch=[]}}function Ed(a){if(1===a.length){a=a[0].expression;var b=a.toWatch;return 1!==b.length?b:b[0]!==a?b:void 0}}function Fd(a){return a.type===
-s.Identifier||a.type===s.MemberExpression}function Gd(a){if(1===a.body.length&&Fd(a.body[0].expression))return{type:s.AssignmentExpression,left:a.body[0].expression,right:{type:s.NGValueParameter},operator:"="}}function Hd(a){this.$filter=a}function Id(a){this.$filter=a}function uc(a,b,d){this.ast=new s(a,d);this.astCompiler=d.csp?new Id(b):new Hd(b)}function vc(a){return D(a.valueOf)?a.valueOf():Bg.call(a)}function Lf(){var a=V(),b={"true":!0,"false":!1,"null":null,undefined:void 0},d,c;this.addLiteral=
-function(a,c){b[a]=c};this.setIdentifierFns=function(a,b){d=a;c=b;return this};this.$get=["$filter",function(e){function f(a,b,c){return null==a||null==b?a===b:"object"!==typeof a||(a=vc(a),"object"!==typeof a||c)?a===b||a!==a&&b!==b:!1}function g(a,b,c,d,e){var g=d.inputs,h;if(1===g.length){var k=f,g=g[0];return a.$watch(function(a){var b=g(a);f(b,k,d.literal)||(h=d(a,void 0,void 0,[b]),k=b&&vc(b));return h},b,c,e)}for(var l=[],m=[],n=0,E=g.length;n<E;n++)l[n]=f,m[n]=null;return a.$watch(function(a){for(var b=
-!1,c=0,e=g.length;c<e;c++){var k=g[c](a);if(b||(b=!f(k,l[c],d.literal)))m[c]=k,l[c]=k&&vc(k)}b&&(h=d(a,void 0,void 0,m));return h},b,c,e)}function h(a,b,c,d,e){function f(a){return d(a)}function h(a,c,d){n=a;D(b)&&b(a,c,d);l(a)&&d.$$postDigest(function(){l(n)&&m()})}var l=d.literal?k:u,m,n;return m=d.inputs?g(a,h,c,d,e):a.$watch(f,h,c)}function k(a){var b=!0;q(a,function(a){u(a)||(b=!1)});return b}function l(a,b,c,d){var e=a.$watch(function(a){e();return d(a)},b,c);return e}function m(a,b){function c(d,
-e,g,h){g=f&&h?h[0]:a(d,e,g,h);return b(g,d,e)}function d(c,e,g,k){g=f&&k?k[0]:a(c,e,g,k);c=b(g,c,e);return h(g)?c:g}if(!b)return a;var e=a.$$watchDelegate,f=!1,h=a.literal?k:u,l=a.oneTime?d:c;l.literal=a.literal;l.oneTime=a.oneTime;f=!a.inputs;e&&e!==g?(l.$$watchDelegate=e,l.inputs=a.inputs):b.$stateful||(l.$$watchDelegate=g,l.inputs=a.inputs?a.inputs:[a]);return l}var n={csp:Ga().noUnsafeEval,literals:ra(b),isIdentifierStart:D(d)&&d,isIdentifierContinue:D(c)&&c};return function(b,c){var d,f,k;switch(typeof b){case "string":return k=
-b=b.trim(),d=a[k],d||(":"===b.charAt(0)&&":"===b.charAt(1)&&(f=!0,b=b.substring(2)),d=new wc(n),d=(new uc(d,e,n)).parse(b),d.constant?d.$$watchDelegate=l:f?(d.oneTime=!0,d.$$watchDelegate=h):d.inputs&&(d.$$watchDelegate=g),a[k]=d),m(d,c);case "function":return m(b,c);default:return m(z,c)}}}]}function Nf(){var a=!0;this.$get=["$rootScope","$exceptionHandler",function(b,d){return Jd(function(a){b.$evalAsync(a)},d,a)}];this.errorOnUnhandledRejections=function(b){return u(b)?(a=b,this):a}}function Of(){var a=
-!0;this.$get=["$browser","$exceptionHandler",function(b,d){return Jd(function(a){b.defer(a)},d,a)}];this.errorOnUnhandledRejections=function(b){return u(b)?(a=b,this):a}}function Jd(a,b,d){function c(){return new e}function e(){var a=this.promise=new f;this.resolve=function(b){k(a,b)};this.reject=function(b){m(a,b)};this.notify=function(b){p(a,b)}}function f(){this.$$state={status:0}}function g(){for(;!s&&A.length;){var a=A.shift();if(!a.pur){a.pur=!0;var c=a.value,c="Possibly unhandled rejection: "+
-("function"===typeof c?c.toString().replace(/ \{[\s\S]*$/,""):w(c)?"undefined":"string"!==typeof c?Be(c,void 0):c);a.value instanceof Error?b(a.value,c):b(c)}}}function h(b){!d||b.pending||2!==b.status||b.pur||(0===s&&0===A.length&&a(g),A.push(b));!b.processScheduled&&b.pending&&(b.processScheduled=!0,++s,a(function(){var c,e,f;f=b.pending;b.processScheduled=!1;b.pending=void 0;try{for(var h=0,l=f.length;h<l;++h){b.pur=!0;e=f[h][0];c=f[h][b.status];try{D(c)?k(e,c(b.value)):1===b.status?k(e,b.value):
-m(e,b.value)}catch(n){m(e,n)}}}finally{--s,d&&0===s&&a(g)}}))}function k(a,b){a.$$state.status||(b===a?n(a,M("qcycle",b)):l(a,b))}function l(a,b){function c(b){g||(g=!0,l(a,b))}function d(b){g||(g=!0,n(a,b))}function e(b){p(a,b)}var f,g=!1;try{if(C(b)||D(b))f=b.then;D(f)?(a.$$state.status=-1,f.call(b,c,d,e)):(a.$$state.value=b,a.$$state.status=1,h(a.$$state))}catch(k){d(k)}}function m(a,b){a.$$state.status||n(a,b)}function n(a,b){a.$$state.value=b;a.$$state.status=2;h(a.$$state)}function p(c,d){var e=
-c.$$state.pending;0>=c.$$state.status&&e&&e.length&&a(function(){for(var a,c,f=0,g=e.length;f<g;f++){c=e[f][0];a=e[f][3];try{p(c,D(a)?a(d):d)}catch(h){b(h)}}})}function r(a){var b=new f;m(b,a);return b}function J(a,b,c){var d=null;try{D(c)&&(d=c())}catch(e){return r(e)}return d&&D(d.then)?d.then(function(){return b(a)},r):b(a)}function v(a,b,c,d){var e=new f;k(e,a);return e.then(b,c,d)}function t(a){if(!D(a))throw M("norslvr",a);var b=new f;a(function(a){k(b,a)},function(a){m(b,a)});return b}var M=
-L("$q",TypeError),s=0,A=[];S(f.prototype,{then:function(a,b,c){if(w(a)&&w(b)&&w(c))return this;var d=new f;this.$$state.pending=this.$$state.pending||[];this.$$state.pending.push([d,a,b,c]);0<this.$$state.status&&h(this.$$state);return d},"catch":function(a){return this.then(null,a)},"finally":function(a,b){return this.then(function(b){return J(b,u,a)},function(b){return J(b,r,a)},b)}});var u=v;t.prototype=f.prototype;t.defer=c;t.reject=r;t.when=v;t.resolve=u;t.all=function(a){var b=new f,c=0,d=H(a)?
-[]:{};q(a,function(a,e){c++;v(a).then(function(a){d[e]=a;--c||k(b,d)},function(a){m(b,a)})});0===c&&k(b,d);return b};t.race=function(a){var b=c();q(a,function(a){v(a).then(b.resolve,b.reject)});return b.promise};return t}function Xf(){this.$get=["$window","$timeout",function(a,b){var d=a.requestAnimationFrame||a.webkitRequestAnimationFrame,c=a.cancelAnimationFrame||a.webkitCancelAnimationFrame||a.webkitCancelRequestAnimationFrame,e=!!d,f=e?function(a){var b=d(a);return function(){c(b)}}:function(a){var c=
-b(a,16.66,!1);return function(){b.cancel(c)}};f.supported=e;return f}]}function Mf(){function a(a){function b(){this.$$watchers=this.$$nextSibling=this.$$childHead=this.$$childTail=null;this.$$listeners={};this.$$listenerCount={};this.$$watchersCount=0;this.$id=++qb;this.$$ChildScope=null}b.prototype=a;return b}var b=10,d=L("$rootScope"),c=null,e=null;this.digestTtl=function(a){arguments.length&&(b=a);return b};this.$get=["$exceptionHandler","$parse","$browser",function(f,g,h){function k(a){a.currentScope.$$destroyed=
-!0}function l(a){9===za&&(a.$$childHead&&l(a.$$childHead),a.$$nextSibling&&l(a.$$nextSibling));a.$parent=a.$$nextSibling=a.$$prevSibling=a.$$childHead=a.$$childTail=a.$root=a.$$watchers=null}function m(){this.$id=++qb;this.$$phase=this.$parent=this.$$watchers=this.$$nextSibling=this.$$prevSibling=this.$$childHead=this.$$childTail=null;this.$root=this;this.$$destroyed=!1;this.$$listeners={};this.$$listenerCount={};this.$$watchersCount=0;this.$$isolateBindings=null}function n(a){if(M.$$phase)throw d("inprog",
-M.$$phase);M.$$phase=a}function p(a,b){do a.$$watchersCount+=b;while(a=a.$parent)}function r(a,b,c){do a.$$listenerCount[c]-=b,0===a.$$listenerCount[c]&&delete a.$$listenerCount[c];while(a=a.$parent)}function J(){}function v(){for(;u.length;)try{u.shift()()}catch(a){f(a)}e=null}function t(){null===e&&(e=h.defer(function(){M.$apply(v)}))}m.prototype={constructor:m,$new:function(b,c){var d;c=c||this;b?(d=new m,d.$root=this.$root):(this.$$ChildScope||(this.$$ChildScope=a(this)),d=new this.$$ChildScope);
-d.$parent=c;d.$$prevSibling=c.$$childTail;c.$$childHead?(c.$$childTail.$$nextSibling=d,c.$$childTail=d):c.$$childHead=c.$$childTail=d;(b||c!==this)&&d.$on("$destroy",k);return d},$watch:function(a,b,d,e){var f=g(a);if(f.$$watchDelegate)return f.$$watchDelegate(this,b,d,f,a);var h=this,k=h.$$watchers,l={fn:b,last:J,get:f,exp:e||a,eq:!!d};c=null;D(b)||(l.fn=z);k||(k=h.$$watchers=[],k.$$digestWatchIndex=-1);k.unshift(l);k.$$digestWatchIndex++;p(this,1);return function(){var a=$a(k,l);0<=a&&(p(h,-1),
-a<k.$$digestWatchIndex&&k.$$digestWatchIndex--);c=null}},$watchGroup:function(a,b){function c(){h=!1;k?(k=!1,b(e,e,g)):b(e,d,g)}var d=Array(a.length),e=Array(a.length),f=[],g=this,h=!1,k=!0;if(!a.length){var l=!0;g.$evalAsync(function(){l&&b(e,e,g)});return function(){l=!1}}if(1===a.length)return this.$watch(a[0],function(a,c,f){e[0]=a;d[0]=c;b(e,a===c?e:d,f)});q(a,function(a,b){var k=g.$watch(a,function(a,f){e[b]=a;d[b]=f;h||(h=!0,g.$evalAsync(c))});f.push(k)});return function(){for(;f.length;)f.shift()()}},
-$watchCollection:function(a,b){function c(a){e=a;var b,d,g,h;if(!w(e)){if(C(e))if(qa(e))for(f!==n&&(f=n,t=f.length=0,l++),a=e.length,t!==a&&(l++,f.length=t=a),b=0;b<a;b++)h=f[b],g=e[b],d=h!==h&&g!==g,d||h===g||(l++,f[b]=g);else{f!==p&&(f=p={},t=0,l++);a=0;for(b in e)ua.call(e,b)&&(a++,g=e[b],h=f[b],b in f?(d=h!==h&&g!==g,d||h===g||(l++,f[b]=g)):(t++,f[b]=g,l++));if(t>a)for(b in l++,f)ua.call(e,b)||(t--,delete f[b])}else f!==e&&(f=e,l++);return l}}c.$stateful=!0;var d=this,e,f,h,k=1<b.length,l=0,m=
-g(a,c),n=[],p={},r=!0,t=0;return this.$watch(m,function(){r?(r=!1,b(e,e,d)):b(e,h,d);if(k)if(C(e))if(qa(e)){h=Array(e.length);for(var a=0;a<e.length;a++)h[a]=e[a]}else for(a in h={},e)ua.call(e,a)&&(h[a]=e[a]);else h=e})},$digest:function(){var a,g,k,l,m,p,r,t=b,q,u=[],w,x;n("$digest");h.$$checkUrlChange();this===M&&null!==e&&(h.defer.cancel(e),v());c=null;do{r=!1;q=this;for(p=0;p<s.length;p++){try{x=s[p],l=x.fn,l(x.scope,x.locals)}catch(z){f(z)}c=null}s.length=0;a:do{if(p=q.$$watchers)for(p.$$digestWatchIndex=
-p.length;p.$$digestWatchIndex--;)try{if(a=p[p.$$digestWatchIndex])if(m=a.get,(g=m(q))!==(k=a.last)&&!(a.eq?sa(g,k):da(g)&&da(k)))r=!0,c=a,a.last=a.eq?ra(g,null):g,l=a.fn,l(g,k===J?g:k,q),5>t&&(w=4-t,u[w]||(u[w]=[]),u[w].push({msg:D(a.exp)?"fn: "+(a.exp.name||a.exp.toString()):a.exp,newVal:g,oldVal:k}));else if(a===c){r=!1;break a}}catch(B){f(B)}if(!(p=q.$$watchersCount&&q.$$childHead||q!==this&&q.$$nextSibling))for(;q!==this&&!(p=q.$$nextSibling);)q=q.$parent}while(q=p);if((r||s.length)&&!t--)throw M.$$phase=
-null,d("infdig",b,u);}while(r||s.length);for(M.$$phase=null;I<A.length;)try{A[I++]()}catch(F){f(F)}A.length=I=0;h.$$checkUrlChange()},$destroy:function(){if(!this.$$destroyed){var a=this.$parent;this.$broadcast("$destroy");this.$$destroyed=!0;this===M&&h.$$applicationDestroyed();p(this,-this.$$watchersCount);for(var b in this.$$listenerCount)r(this,this.$$listenerCount[b],b);a&&a.$$childHead===this&&(a.$$childHead=this.$$nextSibling);a&&a.$$childTail===this&&(a.$$childTail=this.$$prevSibling);this.$$prevSibling&&
-(this.$$prevSibling.$$nextSibling=this.$$nextSibling);this.$$nextSibling&&(this.$$nextSibling.$$prevSibling=this.$$prevSibling);this.$destroy=this.$digest=this.$apply=this.$evalAsync=this.$applyAsync=z;this.$on=this.$watch=this.$watchGroup=function(){return z};this.$$listeners={};this.$$nextSibling=null;l(this)}},$eval:function(a,b){return g(a)(this,b)},$evalAsync:function(a,b){M.$$phase||s.length||h.defer(function(){s.length&&M.$digest()});s.push({scope:this,fn:g(a),locals:b})},$$postDigest:function(a){A.push(a)},
-$apply:function(a){try{n("$apply");try{return this.$eval(a)}finally{M.$$phase=null}}catch(b){f(b)}finally{try{M.$digest()}catch(c){throw f(c),c;}}},$applyAsync:function(a){function b(){c.$eval(a)}var c=this;a&&u.push(b);a=g(a);t()},$on:function(a,b){var c=this.$$listeners[a];c||(this.$$listeners[a]=c=[]);c.push(b);var d=this;do d.$$listenerCount[a]||(d.$$listenerCount[a]=0),d.$$listenerCount[a]++;while(d=d.$parent);var e=this;return function(){var d=c.indexOf(b);-1!==d&&(c[d]=null,r(e,1,a))}},$emit:function(a,
-b){var c=[],d,e=this,g=!1,h={name:a,targetScope:e,stopPropagation:function(){g=!0},preventDefault:function(){h.defaultPrevented=!0},defaultPrevented:!1},k=ab([h],arguments,1),l,m;do{d=e.$$listeners[a]||c;h.currentScope=e;l=0;for(m=d.length;l<m;l++)if(d[l])try{d[l].apply(null,k)}catch(n){f(n)}else d.splice(l,1),l--,m--;if(g)return h.currentScope=null,h;e=e.$parent}while(e);h.currentScope=null;return h},$broadcast:function(a,b){var c=this,d=this,e={name:a,targetScope:this,preventDefault:function(){e.defaultPrevented=
-!0},defaultPrevented:!1};if(!this.$$listenerCount[a])return e;for(var g=ab([e],arguments,1),h,k;c=d;){e.currentScope=c;d=c.$$listeners[a]||[];h=0;for(k=d.length;h<k;h++)if(d[h])try{d[h].apply(null,g)}catch(l){f(l)}else d.splice(h,1),h--,k--;if(!(d=c.$$listenerCount[a]&&c.$$childHead||c!==this&&c.$$nextSibling))for(;c!==this&&!(d=c.$$nextSibling);)c=c.$parent}e.currentScope=null;return e}};var M=new m,s=M.$$asyncQueue=[],A=M.$$postDigestQueue=[],u=M.$$applyAsyncQueue=[],I=0;return M}]}function Ee(){var a=
-/^\s*(https?|ftp|mailto|tel|file):/,b=/^\s*((https?|ftp|file|blob):|data:image\/)/;this.aHrefSanitizationWhitelist=function(b){return u(b)?(a=b,this):a};this.imgSrcSanitizationWhitelist=function(a){return u(a)?(b=a,this):b};this.$get=function(){return function(d,c){var e=c?b:a,f;f=Ca(d).href;return""===f||f.match(e)?d:"unsafe:"+f}}}function Cg(a){if("self"===a)return a;if(F(a)){if(-1<a.indexOf("***"))throw ta("iwcard",a);a=Kd(a).replace(/\\\*\\\*/g,".*").replace(/\\\*/g,"[^:/.?&;]*");return new RegExp("^"+
-a+"$")}if(Xa(a))return new RegExp("^"+a.source+"$");throw ta("imatcher");}function Ld(a){var b=[];u(a)&&q(a,function(a){b.push(Cg(a))});return b}function Qf(){this.SCE_CONTEXTS=oa;var a=["self"],b=[];this.resourceUrlWhitelist=function(b){arguments.length&&(a=Ld(b));return a};this.resourceUrlBlacklist=function(a){arguments.length&&(b=Ld(a));return b};this.$get=["$injector",function(d){function c(a,b){return"self"===a?yd(b):!!a.exec(b.href)}function e(a){var b=function(a){this.$$unwrapTrustedValue=
-function(){return a}};a&&(b.prototype=new a);b.prototype.valueOf=function(){return this.$$unwrapTrustedValue()};b.prototype.toString=function(){return this.$$unwrapTrustedValue().toString()};return b}var f=function(a){throw ta("unsafe");};d.has("$sanitize")&&(f=d.get("$sanitize"));var g=e(),h={};h[oa.HTML]=e(g);h[oa.CSS]=e(g);h[oa.URL]=e(g);h[oa.JS]=e(g);h[oa.RESOURCE_URL]=e(h[oa.URL]);return{trustAs:function(a,b){var c=h.hasOwnProperty(a)?h[a]:null;if(!c)throw ta("icontext",a,b);if(null===b||w(b)||
-""===b)return b;if("string"!==typeof b)throw ta("itype",a);return new c(b)},getTrusted:function(d,e){if(null===e||w(e)||""===e)return e;var g=h.hasOwnProperty(d)?h[d]:null;if(g&&e instanceof g)return e.$$unwrapTrustedValue();if(d===oa.RESOURCE_URL){var g=Ca(e.toString()),n,p,r=!1;n=0;for(p=a.length;n<p;n++)if(c(a[n],g)){r=!0;break}if(r)for(n=0,p=b.length;n<p;n++)if(c(b[n],g)){r=!1;break}if(r)return e;throw ta("insecurl",e.toString());}if(d===oa.HTML)return f(e);throw ta("unsafe");},valueOf:function(a){return a instanceof
-g?a.$$unwrapTrustedValue():a}}}]}function Pf(){var a=!0;this.enabled=function(b){arguments.length&&(a=!!b);return a};this.$get=["$parse","$sceDelegate",function(b,d){if(a&&8>za)throw ta("iequirks");var c=pa(oa);c.isEnabled=function(){return a};c.trustAs=d.trustAs;c.getTrusted=d.getTrusted;c.valueOf=d.valueOf;a||(c.trustAs=c.getTrusted=function(a,b){return b},c.valueOf=Ya);c.parseAs=function(a,d){var e=b(d);return e.literal&&e.constant?e:b(d,function(b){return c.getTrusted(a,b)})};var e=c.parseAs,
-f=c.getTrusted,g=c.trustAs;q(oa,function(a,b){var d=Q(b);c[("parse_as_"+d).replace(xc,gb)]=function(b){return e(a,b)};c[("get_trusted_"+d).replace(xc,gb)]=function(b){return f(a,b)};c[("trust_as_"+d).replace(xc,gb)]=function(b){return g(a,b)}});return c}]}function Rf(){this.$get=["$window","$document",function(a,b){var d={},c=!((!a.nw||!a.nw.process)&&a.chrome&&(a.chrome.app&&a.chrome.app.runtime||!a.chrome.app&&a.chrome.runtime&&a.chrome.runtime.id))&&a.history&&a.history.pushState,e=Z((/android (\d+)/.exec(Q((a.navigator||
-{}).userAgent))||[])[1]),f=/Boxee/i.test((a.navigator||{}).userAgent),g=b[0]||{},h=g.body&&g.body.style,k=!1,l=!1;h&&(k=!!("transition"in h||"webkitTransition"in h),l=!!("animation"in h||"webkitAnimation"in h));return{history:!(!c||4>e||f),hasEvent:function(a){if("input"===a&&za)return!1;if(w(d[a])){var b=g.createElement("div");d[a]="on"+a in b}return d[a]},csp:Ga(),transitions:k,animations:l,android:e}}]}function Tf(){var a;this.httpOptions=function(b){return b?(a=b,this):a};this.$get=["$exceptionHandler",
-"$templateCache","$http","$q","$sce",function(b,d,c,e,f){function g(h,k){g.totalPendingRequests++;if(!F(h)||w(d.get(h)))h=f.getTrustedResourceUrl(h);var l=c.defaults&&c.defaults.transformResponse;H(l)?l=l.filter(function(a){return a!==nc}):l===nc&&(l=null);return c.get(h,S({cache:d,transformResponse:l},a)).finally(function(){g.totalPendingRequests--}).then(function(a){d.put(h,a.data);return a.data},function(a){k||(a=Dg("tpload",h,a.status,a.statusText),b(a));return e.reject(a)})}g.totalPendingRequests=
-0;return g}]}function Uf(){this.$get=["$rootScope","$browser","$location",function(a,b,d){return{findBindings:function(a,b,d){a=a.getElementsByClassName("ng-binding");var g=[];q(a,function(a){var c=ea.element(a).data("$binding");c&&q(c,function(c){d?(new RegExp("(^|\\s)"+Kd(b)+"(\\s|\\||$)")).test(c)&&g.push(a):-1!==c.indexOf(b)&&g.push(a)})});return g},findModels:function(a,b,d){for(var g=["ng-","data-ng-","ng\\:"],h=0;h<g.length;++h){var k=a.querySelectorAll("["+g[h]+"model"+(d?"=":"*=")+'"'+b+
-'"]');if(k.length)return k}},getLocation:function(){return d.url()},setLocation:function(b){b!==d.url()&&(d.url(b),a.$digest())},whenStable:function(a){b.notifyWhenNoOutstandingRequests(a)}}}]}function Vf(){this.$get=["$rootScope","$browser","$q","$$q","$exceptionHandler",function(a,b,d,c,e){function f(f,k,l){D(f)||(l=k,k=f,f=z);var m=va.call(arguments,3),n=u(l)&&!l,p=(n?c:d).defer(),r=p.promise,q;q=b.defer(function(){try{p.resolve(f.apply(null,m))}catch(b){p.reject(b),e(b)}finally{delete g[r.$$timeoutId]}n||
-a.$apply()},k);r.$$timeoutId=q;g[q]=p;return r}var g={};f.cancel=function(a){return a&&a.$$timeoutId in g?(g[a.$$timeoutId].promise.catch(z),g[a.$$timeoutId].reject("canceled"),delete g[a.$$timeoutId],b.defer.cancel(a.$$timeoutId)):!1};return f}]}function Ca(a){za&&(aa.setAttribute("href",a),a=aa.href);aa.setAttribute("href",a);return{href:aa.href,protocol:aa.protocol?aa.protocol.replace(/:$/,""):"",host:aa.host,search:aa.search?aa.search.replace(/^\?/,""):"",hash:aa.hash?aa.hash.replace(/^#/,""):
-"",hostname:aa.hostname,port:aa.port,pathname:"/"===aa.pathname.charAt(0)?aa.pathname:"/"+aa.pathname}}function yd(a){a=F(a)?Ca(a):a;return a.protocol===Md.protocol&&a.host===Md.host}function Wf(){this.$get=la(x)}function Nd(a){function b(a){try{return decodeURIComponent(a)}catch(b){return a}}var d=a[0]||{},c={},e="";return function(){var a,g,h,k,l;try{a=d.cookie||""}catch(m){a=""}if(a!==e)for(e=a,a=e.split("; "),c={},h=0;h<a.length;h++)g=a[h],k=g.indexOf("="),0<k&&(l=b(g.substring(0,k)),w(c[l])&&
-(c[l]=b(g.substring(k+1))));return c}}function $f(){this.$get=Nd}function cd(a){function b(d,c){if(C(d)){var e={};q(d,function(a,c){e[c]=b(c,a)});return e}return a.factory(d+"Filter",c)}this.register=b;this.$get=["$injector",function(a){return function(b){return a.get(b+"Filter")}}];b("currency",Od);b("date",Pd);b("filter",Eg);b("json",Fg);b("limitTo",Gg);b("lowercase",Hg);b("number",Qd);b("orderBy",Rd);b("uppercase",Ig)}function Eg(){return function(a,b,d,c){if(!qa(a)){if(null==a)return a;throw L("filter")("notarray",
-a);}c=c||"$";var e;switch(yc(b)){case "function":break;case "boolean":case "null":case "number":case "string":e=!0;case "object":b=Jg(b,d,c,e);break;default:return a}return Array.prototype.filter.call(a,b)}}function Jg(a,b,d,c){var e=C(a)&&d in a;!0===b?b=sa:D(b)||(b=function(a,b){if(w(a))return!1;if(null===a||null===b)return a===b;if(C(b)||C(a)&&!Wb(a))return!1;a=Q(""+a);b=Q(""+b);return-1!==a.indexOf(b)});return function(f){return e&&!C(f)?Ea(f,a[d],b,d,!1):Ea(f,a,b,d,c)}}function Ea(a,b,d,c,e,
-f){var g=yc(a),h=yc(b);if("string"===h&&"!"===b.charAt(0))return!Ea(a,b.substring(1),d,c,e);if(H(a))return a.some(function(a){return Ea(a,b,d,c,e)});switch(g){case "object":var k;if(e){for(k in a)if(k.charAt&&"$"!==k.charAt(0)&&Ea(a[k],b,d,c,!0))return!0;return f?!1:Ea(a,b,d,c,!1)}if("object"===h){for(k in b)if(f=b[k],!D(f)&&!w(f)&&(g=k===c,!Ea(g?a:a[k],f,d,c,g,g)))return!1;return!0}return d(a,b);case "function":return!1;default:return d(a,b)}}function yc(a){return null===a?"null":typeof a}function Od(a){var b=
-a.NUMBER_FORMATS;return function(a,c,e){w(c)&&(c=b.CURRENCY_SYM);w(e)&&(e=b.PATTERNS[1].maxFrac);return null==a?a:Sd(a,b.PATTERNS[1],b.GROUP_SEP,b.DECIMAL_SEP,e).replace(/\u00A4/g,c)}}function Qd(a){var b=a.NUMBER_FORMATS;return function(a,c){return null==a?a:Sd(a,b.PATTERNS[0],b.GROUP_SEP,b.DECIMAL_SEP,c)}}function Kg(a){var b=0,d,c,e,f,g;-1<(c=a.indexOf(Td))&&(a=a.replace(Td,""));0<(e=a.search(/e/i))?(0>c&&(c=e),c+=+a.slice(e+1),a=a.substring(0,e)):0>c&&(c=a.length);for(e=0;a.charAt(e)===zc;e++);
-if(e===(g=a.length))d=[0],c=1;else{for(g--;a.charAt(g)===zc;)g--;c-=e;d=[];for(f=0;e<=g;e++,f++)d[f]=+a.charAt(e)}c>Ud&&(d=d.splice(0,Ud-1),b=c-1,c=1);return{d:d,e:b,i:c}}function Lg(a,b,d,c){var e=a.d,f=e.length-a.i;b=w(b)?Math.min(Math.max(d,f),c):+b;d=b+a.i;c=e[d];if(0<d){e.splice(Math.max(a.i,d));for(var g=d;g<e.length;g++)e[g]=0}else for(f=Math.max(0,f),a.i=1,e.length=Math.max(1,d=b+1),e[0]=0,g=1;g<d;g++)e[g]=0;if(5<=c)if(0>d-1){for(c=0;c>d;c--)e.unshift(0),a.i++;e.unshift(1);a.i++}else e[d-
-1]++;for(;f<Math.max(0,b);f++)e.push(0);if(b=e.reduceRight(function(a,b,c,d){b+=a;d[c]=b%10;return Math.floor(b/10)},0))e.unshift(b),a.i++}function Sd(a,b,d,c,e){if(!F(a)&&!ba(a)||isNaN(a))return"";var f=!isFinite(a),g=!1,h=Math.abs(a)+"",k="";if(f)k="\u221e";else{g=Kg(h);Lg(g,e,b.minFrac,b.maxFrac);k=g.d;h=g.i;e=g.e;f=[];for(g=k.reduce(function(a,b){return a&&!b},!0);0>h;)k.unshift(0),h++;0<h?f=k.splice(h,k.length):(f=k,k=[0]);h=[];for(k.length>=b.lgSize&&h.unshift(k.splice(-b.lgSize,k.length).join(""));k.length>
-b.gSize;)h.unshift(k.splice(-b.gSize,k.length).join(""));k.length&&h.unshift(k.join(""));k=h.join(d);f.length&&(k+=c+f.join(""));e&&(k+="e+"+e)}return 0>a&&!g?b.negPre+k+b.negSuf:b.posPre+k+b.posSuf}function Kb(a,b,d,c){var e="";if(0>a||c&&0>=a)c?a=-a+1:(a=-a,e="-");for(a=""+a;a.length<b;)a=zc+a;d&&(a=a.substr(a.length-b));return e+a}function Y(a,b,d,c,e){d=d||0;return function(f){f=f["get"+a]();if(0<d||f>-d)f+=d;0===f&&-12===d&&(f=12);return Kb(f,b,c,e)}}function mb(a,b,d){return function(c,e){var f=
-c["get"+a](),g=ub((d?"STANDALONE":"")+(b?"SHORT":"")+a);return e[g][f]}}function Vd(a){var b=(new Date(a,0,1)).getDay();return new Date(a,0,(4>=b?5:12)-b)}function Wd(a){return function(b){var d=Vd(b.getFullYear());b=+new Date(b.getFullYear(),b.getMonth(),b.getDate()+(4-b.getDay()))-+d;b=1+Math.round(b/6048E5);return Kb(b,a)}}function Ac(a,b){return 0>=a.getFullYear()?b.ERAS[0]:b.ERAS[1]}function Pd(a){function b(a){var b;if(b=a.match(d)){a=new Date(0);var f=0,g=0,h=b[8]?a.setUTCFullYear:a.setFullYear,
-k=b[8]?a.setUTCHours:a.setHours;b[9]&&(f=Z(b[9]+b[10]),g=Z(b[9]+b[11]));h.call(a,Z(b[1]),Z(b[2])-1,Z(b[3]));f=Z(b[4]||0)-f;g=Z(b[5]||0)-g;h=Z(b[6]||0);b=Math.round(1E3*parseFloat("0."+(b[7]||0)));k.call(a,f,g,h,b)}return a}var d=/^(\d{4})-?(\d\d)-?(\d\d)(?:T(\d\d)(?::?(\d\d)(?::?(\d\d)(?:\.(\d+))?)?)?(Z|([+-])(\d\d):?(\d\d))?)?$/;return function(c,d,f){var g="",h=[],k,l;d=d||"mediumDate";d=a.DATETIME_FORMATS[d]||d;F(c)&&(c=Mg.test(c)?Z(c):b(c));ba(c)&&(c=new Date(c));if(!ga(c)||!isFinite(c.getTime()))return c;
-for(;d;)(l=Ng.exec(d))?(h=ab(h,l,1),d=h.pop()):(h.push(d),d=null);var m=c.getTimezoneOffset();f&&(m=Pc(f,m),c=Yb(c,f,!0));q(h,function(b){k=Og[b];g+=k?k(c,a.DATETIME_FORMATS,m):"''"===b?"'":b.replace(/(^'|'$)/g,"").replace(/''/g,"'")});return g}}function Fg(){return function(a,b){w(b)&&(b=2);return cb(a,b)}}function Gg(){return function(a,b,d){b=Infinity===Math.abs(Number(b))?Number(b):Z(b);if(da(b))return a;ba(a)&&(a=a.toString());if(!qa(a))return a;d=!d||isNaN(d)?0:Z(d);d=0>d?Math.max(0,a.length+
-d):d;return 0<=b?Bc(a,d,d+b):0===d?Bc(a,b,a.length):Bc(a,Math.max(0,d+b),d)}}function Bc(a,b,d){return F(a)?a.slice(b,d):va.call(a,b,d)}function Rd(a){function b(b){return b.map(function(b){var c=1,d=Ya;if(D(b))d=b;else if(F(b)){if("+"===b.charAt(0)||"-"===b.charAt(0))c="-"===b.charAt(0)?-1:1,b=b.substring(1);if(""!==b&&(d=a(b),d.constant))var e=d(),d=function(a){return a[e]}}return{get:d,descending:c}})}function d(a){switch(typeof a){case "number":case "boolean":case "string":return!0;default:return!1}}
-function c(a,b){var c=0,d=a.type,k=b.type;if(d===k){var k=a.value,l=b.value;"string"===d?(k=k.toLowerCase(),l=l.toLowerCase()):"object"===d&&(C(k)&&(k=a.index),C(l)&&(l=b.index));k!==l&&(c=k<l?-1:1)}else c=d<k?-1:1;return c}return function(a,f,g,h){if(null==a)return a;if(!qa(a))throw L("orderBy")("notarray",a);H(f)||(f=[f]);0===f.length&&(f=["+"]);var k=b(f),l=g?-1:1,m=D(h)?h:c;a=Array.prototype.map.call(a,function(a,b){return{value:a,tieBreaker:{value:b,type:"number",index:b},predicateValues:k.map(function(c){var e=
-c.get(a);c=typeof e;if(null===e)c="string",e="null";else if("object"===c)a:{if(D(e.valueOf)&&(e=e.valueOf(),d(e)))break a;Wb(e)&&(e=e.toString(),d(e))}return{value:e,type:c,index:b}})}});a.sort(function(a,b){for(var c=0,d=k.length;c<d;c++){var e=m(a.predicateValues[c],b.predicateValues[c]);if(e)return e*k[c].descending*l}return m(a.tieBreaker,b.tieBreaker)*l});return a=a.map(function(a){return a.value})}}function Qa(a){D(a)&&(a={link:a});a.restrict=a.restrict||"AC";return la(a)}function Lb(a,b,d,
-c,e){this.$$controls=[];this.$error={};this.$$success={};this.$pending=void 0;this.$name=e(b.name||b.ngForm||"")(d);this.$dirty=!1;this.$valid=this.$pristine=!0;this.$submitted=this.$invalid=!1;this.$$parentForm=Mb;this.$$element=a;this.$$animate=c;Xd(this)}function Xd(a){a.$$classCache={};a.$$classCache[Yd]=!(a.$$classCache[nb]=a.$$element.hasClass(nb))}function Zd(a){function b(a,b,c){c&&!a.$$classCache[b]?(a.$$animate.addClass(a.$$element,b),a.$$classCache[b]=!0):!c&&a.$$classCache[b]&&(a.$$animate.removeClass(a.$$element,
-b),a.$$classCache[b]=!1)}function d(a,c,d){c=c?"-"+Tc(c,"-"):"";b(a,nb+c,!0===d);b(a,Yd+c,!1===d)}var c=a.set,e=a.unset;a.clazz.prototype.$setValidity=function(a,g,h){w(g)?(this.$pending||(this.$pending={}),c(this.$pending,a,h)):(this.$pending&&e(this.$pending,a,h),$d(this.$pending)&&(this.$pending=void 0));Ha(g)?g?(e(this.$error,a,h),c(this.$$success,a,h)):(c(this.$error,a,h),e(this.$$success,a,h)):(e(this.$error,a,h),e(this.$$success,a,h));this.$pending?(b(this,"ng-pending",!0),this.$valid=this.$invalid=
-void 0,d(this,"",null)):(b(this,"ng-pending",!1),this.$valid=$d(this.$error),this.$invalid=!this.$valid,d(this,"",this.$valid));g=this.$pending&&this.$pending[a]?void 0:this.$error[a]?!1:this.$$success[a]?!0:null;d(this,a,g);this.$$parentForm.$setValidity(a,g,this)}}function $d(a){if(a)for(var b in a)if(a.hasOwnProperty(b))return!1;return!0}function Cc(a){a.$formatters.push(function(b){return a.$isEmpty(b)?b:b.toString()})}function Ra(a,b,d,c,e,f){var g=Q(b[0].type);if(!e.android){var h=!1;b.on("compositionstart",
-function(){h=!0});b.on("compositionend",function(){h=!1;l()})}var k,l=function(a){k&&(f.defer.cancel(k),k=null);if(!h){var e=b.val();a=a&&a.type;"password"===g||d.ngTrim&&"false"===d.ngTrim||(e=T(e));(c.$viewValue!==e||""===e&&c.$$hasNativeValidators)&&c.$setViewValue(e,a)}};if(e.hasEvent("input"))b.on("input",l);else{var m=function(a,b,c){k||(k=f.defer(function(){k=null;b&&b.value===c||l(a)}))};b.on("keydown",function(a){var b=a.keyCode;91===b||15<b&&19>b||37<=b&&40>=b||m(a,this,this.value)});if(e.hasEvent("paste"))b.on("paste cut",
-m)}b.on("change",l);if(ae[g]&&c.$$hasNativeValidators&&g===d.type)b.on("keydown wheel mousedown",function(a){if(!k){var b=this.validity,c=b.badInput,d=b.typeMismatch;k=f.defer(function(){k=null;b.badInput===c&&b.typeMismatch===d||l(a)})}});c.$render=function(){var a=c.$isEmpty(c.$viewValue)?"":c.$viewValue;b.val()!==a&&b.val(a)}}function Nb(a,b){return function(d,c){var e,f;if(ga(d))return d;if(F(d)){'"'===d.charAt(0)&&'"'===d.charAt(d.length-1)&&(d=d.substring(1,d.length-1));if(Pg.test(d))return new Date(d);
-a.lastIndex=0;if(e=a.exec(d))return e.shift(),f=c?{yyyy:c.getFullYear(),MM:c.getMonth()+1,dd:c.getDate(),HH:c.getHours(),mm:c.getMinutes(),ss:c.getSeconds(),sss:c.getMilliseconds()/1E3}:{yyyy:1970,MM:1,dd:1,HH:0,mm:0,ss:0,sss:0},q(e,function(a,c){c<b.length&&(f[b[c]]=+a)}),new Date(f.yyyy,f.MM-1,f.dd,f.HH,f.mm,f.ss||0,1E3*f.sss||0)}return NaN}}function ob(a,b,d,c){return function(e,f,g,h,k,l,m){function n(a){return a&&!(a.getTime&&a.getTime()!==a.getTime())}function p(a){return u(a)&&!ga(a)?d(a)||
-void 0:a}Dc(e,f,g,h);Ra(e,f,g,h,k,l);var r=h&&h.$options.getOption("timezone"),q;h.$$parserName=a;h.$parsers.push(function(a){if(h.$isEmpty(a))return null;if(b.test(a))return a=d(a,q),r&&(a=Yb(a,r)),a});h.$formatters.push(function(a){if(a&&!ga(a))throw pb("datefmt",a);if(n(a))return(q=a)&&r&&(q=Yb(q,r,!0)),m("date")(a,c,r);q=null;return""});if(u(g.min)||g.ngMin){var v;h.$validators.min=function(a){return!n(a)||w(v)||d(a)>=v};g.$observe("min",function(a){v=p(a);h.$validate()})}if(u(g.max)||g.ngMax){var t;
-h.$validators.max=function(a){return!n(a)||w(t)||d(a)<=t};g.$observe("max",function(a){t=p(a);h.$validate()})}}}function Dc(a,b,d,c){(c.$$hasNativeValidators=C(b[0].validity))&&c.$parsers.push(function(a){var c=b.prop("validity")||{};return c.badInput||c.typeMismatch?void 0:a})}function be(a){a.$$parserName="number";a.$parsers.push(function(b){if(a.$isEmpty(b))return null;if(Qg.test(b))return parseFloat(b)});a.$formatters.push(function(b){if(!a.$isEmpty(b)){if(!ba(b))throw pb("numfmt",b);b=b.toString()}return b})}
-function Sa(a){u(a)&&!ba(a)&&(a=parseFloat(a));return da(a)?void 0:a}function Ec(a){var b=a.toString(),d=b.indexOf(".");return-1===d?-1<a&&1>a&&(a=/e-(\d+)$/.exec(b))?Number(a[1]):0:b.length-d-1}function ce(a,b,d){a=Number(a);var c=(a|0)!==a,e=(b|0)!==b,f=(d|0)!==d;if(c||e||f){var g=c?Ec(a):0,h=e?Ec(b):0,k=f?Ec(d):0,g=Math.max(g,h,k),g=Math.pow(10,g);a*=g;b*=g;d*=g;c&&(a=Math.round(a));e&&(b=Math.round(b));f&&(d=Math.round(d))}return 0===(a-b)%d}function de(a,b,d,c,e){if(u(c)){a=a(c);if(!a.constant)throw pb("constexpr",
-d,c);return a(b)}return e}function Fc(a,b){function d(a,b){if(!a||!a.length)return[];if(!b||!b.length)return a;var c=[],d=0;a:for(;d<a.length;d++){for(var e=a[d],m=0;m<b.length;m++)if(e===b[m])continue a;c.push(e)}return c}function c(a){var b=a;H(a)?b=a.map(c).join(" "):C(a)&&(b=Object.keys(a).filter(function(b){return a[b]}).join(" "));return b}a="ngClass"+a;var e;return["$parse",function(f){return{restrict:"AC",link:function(g,h,k){function l(a,b){var c=[];q(a,function(a){if(0<b||n[a])n[a]=(n[a]||
-0)+b,n[a]===+(0<b)&&c.push(a)});return c.join(" ")}function m(a){if(a===b){var c=r,c=l(c&&c.split(" "),1);k.$addClass(c)}else c=r,c=l(c&&c.split(" "),-1),k.$removeClass(c);p=a}var n=h.data("$classCounts"),p=!0,r;n||(n=V(),h.data("$classCounts",n));"ngClass"!==a&&(e||(e=f("$index",function(a){return a&1})),g.$watch(e,m));g.$watch(f(k[a],c),function(a){F(a)||(a=c(a));if(p===b){var e=a,f=r&&r.split(" "),g=e&&e.split(" "),e=d(f,g),f=d(g,f),e=l(e,-1),f=l(f,1);k.$addClass(f);k.$removeClass(e)}r=a})}}}]}
-function Ob(a,b,d,c,e,f,g,h,k){this.$modelValue=this.$viewValue=Number.NaN;this.$$rawModelValue=void 0;this.$validators={};this.$asyncValidators={};this.$parsers=[];this.$formatters=[];this.$viewChangeListeners=[];this.$untouched=!0;this.$touched=!1;this.$pristine=!0;this.$dirty=!1;this.$valid=!0;this.$invalid=!1;this.$error={};this.$$success={};this.$pending=void 0;this.$name=k(d.name||"",!1)(a);this.$$parentForm=Mb;this.$options=Pb;this.$$parsedNgModel=e(d.ngModel);this.$$parsedNgModelAssign=this.$$parsedNgModel.assign;
-this.$$ngModelGet=this.$$parsedNgModel;this.$$ngModelSet=this.$$parsedNgModelAssign;this.$$pendingDebounce=null;this.$$parserValid=void 0;this.$$currentValidationRunId=0;Object.defineProperty(this,"$$scope",{value:a});this.$$attr=d;this.$$element=c;this.$$animate=f;this.$$timeout=g;this.$$parse=e;this.$$q=h;this.$$exceptionHandler=b;Xd(this);Rg(this)}function Rg(a){a.$$scope.$watch(function(b){b=a.$$ngModelGet(b);if(b!==a.$modelValue&&(a.$modelValue===a.$modelValue||b===b)){a.$modelValue=a.$$rawModelValue=
-b;a.$$parserValid=void 0;for(var d=a.$formatters,c=d.length,e=b;c--;)e=d[c](e);a.$viewValue!==e&&(a.$$updateEmptyClasses(e),a.$viewValue=a.$$lastCommittedViewValue=e,a.$render(),a.$$runValidators(a.$modelValue,a.$viewValue,z))}return b})}function Gc(a){this.$$options=a}function ee(a,b){q(b,function(b,c){u(a[c])||(a[c]=b)})}function Ta(a,b){a.prop("selected",b);a.attr("selected",b)}var Sg=/^\/(.+)\/([a-z]*)$/,ua=Object.prototype.hasOwnProperty,Ic={objectMaxDepth:5},Q=function(a){return F(a)?a.toLowerCase():
-a},ub=function(a){return F(a)?a.toUpperCase():a},za,B,na,va=[].slice,sg=[].splice,Tg=[].push,ma=Object.prototype.toString,Mc=Object.getPrototypeOf,Fa=L("ng"),ea=x.angular||(x.angular={}),ac,qb=0;za=x.document.documentMode;var da=Number.isNaN||function(a){return a!==a};z.$inject=[];Ya.$inject=[];var H=Array.isArray,qe=/^\[object (?:Uint8|Uint8Clamped|Uint16|Uint32|Int8|Int16|Int32|Float32|Float64)Array]$/,T=function(a){return F(a)?a.trim():a},Kd=function(a){return a.replace(/([-()[\]{}+?*.$^|,:#<!\\])/g,
-"\\$1").replace(/\x08/g,"\\x08")},Ga=function(){if(!u(Ga.rules)){var a=x.document.querySelector("[ng-csp]")||x.document.querySelector("[data-ng-csp]");if(a){var b=a.getAttribute("ng-csp")||a.getAttribute("data-ng-csp");Ga.rules={noUnsafeEval:!b||-1!==b.indexOf("no-unsafe-eval"),noInlineStyle:!b||-1!==b.indexOf("no-inline-style")}}else{a=Ga;try{new Function(""),b=!1}catch(d){b=!0}a.rules={noUnsafeEval:b,noInlineStyle:!1}}}return Ga.rules},rb=function(){if(u(rb.name_))return rb.name_;var a,b,d=Ja.length,
-c,e;for(b=0;b<d;++b)if(c=Ja[b],a=x.document.querySelector("["+c.replace(":","\\:")+"jq]")){e=a.getAttribute(c+"jq");break}return rb.name_=e},se=/:/g,Ja=["ng-","data-ng-","ng:","x-ng-"],ve=function(a){var b=a.currentScript;if(!b)return!0;if(!(b instanceof x.HTMLScriptElement||b instanceof x.SVGScriptElement))return!1;b=b.attributes;return[b.getNamedItem("src"),b.getNamedItem("href"),b.getNamedItem("xlink:href")].every(function(b){if(!b)return!0;if(!b.value)return!1;var c=a.createElement("a");c.href=
-b.value;if(a.location.origin===c.origin)return!0;switch(c.protocol){case "http:":case "https:":case "ftp:":case "blob:":case "file:":case "data:":return!0;default:return!1}})}(x.document),ye=/[A-Z]/g,Uc=!1,Ia=3,De={full:"1.6.4",major:1,minor:6,dot:4,codeName:"phenomenal-footnote"};W.expando="ng339";var hb=W.cache={},eg=1;W._data=function(a){return this.cache[a[this.expando]]||{}};var ag=/-([a-z])/g,Ug=/^-ms-/,zb={mouseleave:"mouseout",mouseenter:"mouseover"},dc=L("jqLite"),dg=/^<([\w-]+)\s*\/?>(?:<\/\1>|)$/,
-cc=/<|&#?\w+;/,bg=/<([\w:-]+)/,cg=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:-]+)[^>]*)\/>/gi,ha={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,"",""]};ha.optgroup=ha.option;ha.tbody=ha.tfoot=ha.colgroup=ha.caption=ha.thead;ha.th=ha.td;var jg=x.Node.prototype.contains||function(a){return!!(this.compareDocumentPosition(a)&
-16)},Na=W.prototype={ready:ed,toString:function(){var a=[];q(this,function(b){a.push(""+b)});return"["+a.join(", ")+"]"},eq:function(a){return 0<=a?B(this[a]):B(this[this.length+a])},length:0,push:Tg,sort:[].sort,splice:[].splice},Fb={};q("multiple selected checked disabled readOnly required open".split(" "),function(a){Fb[Q(a)]=a});var jd={};q("input select option textarea button form details".split(" "),function(a){jd[a]=!0});var rd={ngMinlength:"minlength",ngMaxlength:"maxlength",ngMin:"min",ngMax:"max",
-ngPattern:"pattern",ngStep:"step"};q({data:hc,removeData:gc,hasData:function(a){for(var b in hb[a.ng339])return!0;return!1},cleanData:function(a){for(var b=0,d=a.length;b<d;b++)gc(a[b])}},function(a,b){W[b]=a});q({data:hc,inheritedData:Db,scope:function(a){return B.data(a,"$scope")||Db(a.parentNode||a,["$isolateScope","$scope"])},isolateScope:function(a){return B.data(a,"$isolateScope")||B.data(a,"$isolateScopeNoTemplate")},controller:gd,injector:function(a){return Db(a,"$injector")},removeAttr:function(a,
-b){a.removeAttribute(b)},hasClass:Ab,css:function(a,b,d){b=wb(b.replace(Ug,"ms-"));if(u(d))a.style[b]=d;else return a.style[b]},attr:function(a,b,d){var c=a.nodeType;if(c!==Ia&&2!==c&&8!==c&&a.getAttribute){var c=Q(b),e=Fb[c];if(u(d))null===d||!1===d&&e?a.removeAttribute(b):a.setAttribute(b,e?c:d);else return a=a.getAttribute(b),e&&null!==a&&(a=c),null===a?void 0:a}},prop:function(a,b,d){if(u(d))a[b]=d;else return a[b]},text:function(){function a(a,d){if(w(d)){var c=a.nodeType;return 1===c||c===Ia?
-a.textContent:""}a.textContent=d}a.$dv="";return a}(),val:function(a,b){if(w(b)){if(a.multiple&&"select"===wa(a)){var d=[];q(a.options,function(a){a.selected&&d.push(a.value||a.text)});return d}return a.value}a.value=b},html:function(a,b){if(w(b))return a.innerHTML;xb(a,!0);a.innerHTML=b},empty:hd},function(a,b){W.prototype[b]=function(b,c){var e,f,g=this.length;if(a!==hd&&w(2===a.length&&a!==Ab&&a!==gd?b:c)){if(C(b)){for(e=0;e<g;e++)if(a===hc)a(this[e],b);else for(f in b)a(this[e],f,b[f]);return this}e=
-a.$dv;g=w(e)?Math.min(g,1):g;for(f=0;f<g;f++){var h=a(this[f],b,c);e=e?e+h:h}return e}for(e=0;e<g;e++)a(this[e],b,c);return this}});q({removeData:gc,on:function(a,b,d,c){if(u(c))throw dc("onargs");if(bc(a)){c=yb(a,!0);var e=c.events,f=c.handle;f||(f=c.handle=gg(a,e));c=0<=b.indexOf(" ")?b.split(" "):[b];for(var g=c.length,h=function(b,c,g){var h=e[b];h||(h=e[b]=[],h.specialHandlerWrapper=c,"$destroy"===b||g||a.addEventListener(b,f));h.push(d)};g--;)b=c[g],zb[b]?(h(zb[b],ig),h(b,void 0,!0)):h(b)}},
-off:fd,one:function(a,b,d){a=B(a);a.on(b,function e(){a.off(b,d);a.off(b,e)});a.on(b,d)},replaceWith:function(a,b){var d,c=a.parentNode;xb(a);q(new W(b),function(b){d?c.insertBefore(b,d.nextSibling):c.replaceChild(b,a);d=b})},children:function(a){var b=[];q(a.childNodes,function(a){1===a.nodeType&&b.push(a)});return b},contents:function(a){return a.contentDocument||a.childNodes||[]},append:function(a,b){var d=a.nodeType;if(1===d||11===d){b=new W(b);for(var d=0,c=b.length;d<c;d++)a.appendChild(b[d])}},
-prepend:function(a,b){if(1===a.nodeType){var d=a.firstChild;q(new W(b),function(b){a.insertBefore(b,d)})}},wrap:function(a,b){var d=B(b).eq(0).clone()[0],c=a.parentNode;c&&c.replaceChild(d,a);d.appendChild(a)},remove:Eb,detach:function(a){Eb(a,!0)},after:function(a,b){var d=a,c=a.parentNode;if(c){b=new W(b);for(var e=0,f=b.length;e<f;e++){var g=b[e];c.insertBefore(g,d.nextSibling);d=g}}},addClass:Cb,removeClass:Bb,toggleClass:function(a,b,d){b&&q(b.split(" "),function(b){var e=d;w(e)&&(e=!Ab(a,b));
-(e?Cb:Bb)(a,b)})},parent:function(a){return(a=a.parentNode)&&11!==a.nodeType?a:null},next:function(a){return a.nextElementSibling},find:function(a,b){return a.getElementsByTagName?a.getElementsByTagName(b):[]},clone:fc,triggerHandler:function(a,b,d){var c,e,f=b.type||b,g=yb(a);if(g=(g=g&&g.events)&&g[f])c={preventDefault:function(){this.defaultPrevented=!0},isDefaultPrevented:function(){return!0===this.defaultPrevented},stopImmediatePropagation:function(){this.immediatePropagationStopped=!0},isImmediatePropagationStopped:function(){return!0===
-this.immediatePropagationStopped},stopPropagation:z,type:f,target:a},b.type&&(c=S(c,b)),b=pa(g),e=d?[c].concat(d):[c],q(b,function(b){c.isImmediatePropagationStopped()||b.apply(a,e)})}},function(a,b){W.prototype[b]=function(b,c,e){for(var f,g=0,h=this.length;g<h;g++)w(f)?(f=a(this[g],b,c,e),u(f)&&(f=B(f))):ec(f,a(this[g],b,c,e));return u(f)?f:this}});W.prototype.bind=W.prototype.on;W.prototype.unbind=W.prototype.off;var Vg=Object.create(null);kd.prototype={_idx:function(a){if(a===this._lastKey)return this._lastIndex;
-this._lastKey=a;return this._lastIndex=this._keys.indexOf(a)},_transformKey:function(a){return da(a)?Vg:a},get:function(a){a=this._transformKey(a);a=this._idx(a);if(-1!==a)return this._values[a]},set:function(a,b){a=this._transformKey(a);var d=this._idx(a);-1===d&&(d=this._lastIndex=this._keys.length);this._keys[d]=a;this._values[d]=b},delete:function(a){a=this._transformKey(a);a=this._idx(a);if(-1===a)return!1;this._keys.splice(a,1);this._values.splice(a,1);this._lastKey=NaN;this._lastIndex=-1;return!0}};
-var Gb=kd,Zf=[function(){this.$get=[function(){return Gb}]}],lg=/^([^(]+?)=>/,mg=/^[^(]*\(\s*([^)]*)\)/m,Wg=/,/,Xg=/^\s*(_?)(\S+?)\1\s*$/,kg=/((\/\/.*$)|(\/\*[\s\S]*?\*\/))/mg,ya=L("$injector");eb.$$annotate=function(a,b,d){var c;if("function"===typeof a){if(!(c=a.$inject)){c=[];if(a.length){if(b)throw F(d)&&d||(d=a.name||ng(a)),ya("strictdi",d);b=ld(a);q(b[1].split(Wg),function(a){a.replace(Xg,function(a,b,d){c.push(d)})})}a.$inject=c}}else H(a)?(b=a.length-1,sb(a[b],"fn"),c=a.slice(0,b)):sb(a,"fn",
-!0);return c};var fe=L("$animate"),qf=function(){this.$get=z},rf=function(){var a=new Gb,b=[];this.$get=["$$AnimateRunner","$rootScope",function(d,c){function e(a,b,c){var d=!1;b&&(b=F(b)?b.split(" "):H(b)?b:[],q(b,function(b){b&&(d=!0,a[b]=c)}));return d}function f(){q(b,function(b){var c=a.get(b);if(c){var d=og(b.attr("class")),e="",f="";q(c,function(a,b){a!==!!d[b]&&(a?e+=(e.length?" ":"")+b:f+=(f.length?" ":"")+b)});q(b,function(a){e&&Cb(a,e);f&&Bb(a,f)});a.delete(b)}});b.length=0}return{enabled:z,
-on:z,off:z,pin:z,push:function(g,h,k,l){l&&l();k=k||{};k.from&&g.css(k.from);k.to&&g.css(k.to);if(k.addClass||k.removeClass)if(h=k.addClass,l=k.removeClass,k=a.get(g)||{},h=e(k,h,!0),l=e(k,l,!1),h||l)a.set(g,k),b.push(g),1===b.length&&c.$$postDigest(f);g=new d;g.complete();return g}}}]},of=["$provide",function(a){var b=this,d=null;this.$$registeredAnimations=Object.create(null);this.register=function(c,d){if(c&&"."!==c.charAt(0))throw fe("notcsel",c);var f=c+"-animation";b.$$registeredAnimations[c.substr(1)]=
-f;a.factory(f,d)};this.classNameFilter=function(a){if(1===arguments.length&&(d=a instanceof RegExp?a:null)&&/[(\s|\/)]ng-animate[(\s|\/)]/.test(d.toString()))throw d=null,fe("nongcls","ng-animate");return d};this.$get=["$$animateQueue",function(a){function b(a,c,d){if(d){var e;a:{for(e=0;e<d.length;e++){var l=d[e];if(1===l.nodeType){e=l;break a}}e=void 0}!e||e.parentNode||e.previousElementSibling||(d=null)}d?d.after(a):c.prepend(a)}return{on:a.on,off:a.off,pin:a.pin,enabled:a.enabled,cancel:function(a){a.end&&
-a.end()},enter:function(d,g,h,k){g=g&&B(g);h=h&&B(h);g=g||h.parent();b(d,g,h);return a.push(d,"enter",ia(k))},move:function(d,g,h,k){g=g&&B(g);h=h&&B(h);g=g||h.parent();b(d,g,h);return a.push(d,"move",ia(k))},leave:function(b,d){return a.push(b,"leave",ia(d),function(){b.remove()})},addClass:function(b,d,e){e=ia(e);e.addClass=ib(e.addclass,d);return a.push(b,"addClass",e)},removeClass:function(b,d,e){e=ia(e);e.removeClass=ib(e.removeClass,d);return a.push(b,"removeClass",e)},setClass:function(b,d,
-e,k){k=ia(k);k.addClass=ib(k.addClass,d);k.removeClass=ib(k.removeClass,e);return a.push(b,"setClass",k)},animate:function(b,d,e,k,l){l=ia(l);l.from=l.from?S(l.from,d):d;l.to=l.to?S(l.to,e):e;l.tempClasses=ib(l.tempClasses,k||"ng-inline-animate");return a.push(b,"animate",l)}}}]}],tf=function(){this.$get=["$$rAF",function(a){function b(b){d.push(b);1<d.length||a(function(){for(var a=0;a<d.length;a++)d[a]();d=[]})}var d=[];return function(){var a=!1;b(function(){a=!0});return function(d){a?d():b(d)}}}]},
-sf=function(){this.$get=["$q","$sniffer","$$animateAsyncRun","$$isDocumentHidden","$timeout",function(a,b,d,c,e){function f(a){this.setHost(a);var b=d();this._doneCallbacks=[];this._tick=function(a){c()?e(a,0,!1):b(a)};this._state=0}f.chain=function(a,b){function c(){if(d===a.length)b(!0);else a[d](function(a){!1===a?b(!1):(d++,c())})}var d=0;c()};f.all=function(a,b){function c(f){e=e&&f;++d===a.length&&b(e)}var d=0,e=!0;q(a,function(a){a.done(c)})};f.prototype={setHost:function(a){this.host=a||{}},
-done:function(a){2===this._state?a():this._doneCallbacks.push(a)},progress:z,getPromise:function(){if(!this.promise){var b=this;this.promise=a(function(a,c){b.done(function(b){!1===b?c():a()})})}return this.promise},then:function(a,b){return this.getPromise().then(a,b)},"catch":function(a){return this.getPromise()["catch"](a)},"finally":function(a){return this.getPromise()["finally"](a)},pause:function(){this.host.pause&&this.host.pause()},resume:function(){this.host.resume&&this.host.resume()},end:function(){this.host.end&&
-this.host.end();this._resolve(!0)},cancel:function(){this.host.cancel&&this.host.cancel();this._resolve(!1)},complete:function(a){var b=this;0===b._state&&(b._state=1,b._tick(function(){b._resolve(a)}))},_resolve:function(a){2!==this._state&&(q(this._doneCallbacks,function(b){b(a)}),this._doneCallbacks.length=0,this._state=2)}};return f}]},pf=function(){this.$get=["$$rAF","$q","$$AnimateRunner",function(a,b,d){return function(b,e){function f(){a(function(){g.addClass&&(b.addClass(g.addClass),g.addClass=
-null);g.removeClass&&(b.removeClass(g.removeClass),g.removeClass=null);g.to&&(b.css(g.to),g.to=null);h||k.complete();h=!0});return k}var g=e||{};g.$$prepared||(g=ra(g));g.cleanupStyles&&(g.from=g.to=null);g.from&&(b.css(g.from),g.from=null);var h,k=new d;return{start:f,end:f}}}]},fa=L("$compile"),lc=new function(){};Wc.$inject=["$provide","$$sanitizeUriProvider"];Ib.prototype.isFirstChange=function(){return this.previousValue===lc};var md=/^((?:x|data)[:\-_])/i,rg=/[:\-_]+(.)/g,td=L("$controller"),
-sd=/^(\S+)(\s+as\s+([\w$]+))?$/,Af=function(){this.$get=["$document",function(a){return function(b){b?!b.nodeType&&b instanceof B&&(b=b[0]):b=a[0].body;return b.offsetWidth+1}}]},ud="application/json",pc={"Content-Type":ud+";charset=utf-8"},ug=/^\[|^\{(?!\{)/,vg={"[":/]$/,"{":/}$/},tg=/^\)]\}',?\n/,oc=L("$http"),Da=ea.$interpolateMinErr=L("$interpolate");Da.throwNoconcat=function(a){throw Da("noconcat",a);};Da.interr=function(a,b){return Da("interr",a,b.toString())};var If=function(){this.$get=function(){function a(a){var b=
-function(a){b.data=a;b.called=!0};b.id=a;return b}var b=ea.callbacks,d={};return{createCallback:function(c){c="_"+(b.$$counter++).toString(36);var e="angular.callbacks."+c,f=a(c);d[e]=b[c]=f;return e},wasCalled:function(a){return d[a].called},getResponse:function(a){return d[a].data},removeCallback:function(a){delete b[d[a].id];delete d[a]}}}},Yg=/^([^?#]*)(\?([^#]*))?(#(.*))?$/,xg={http:80,https:443,ftp:21},kb=L("$location"),yg=/^\s*[\\/]{2,}/,Zg={$$absUrl:"",$$html5:!1,$$replace:!1,absUrl:Jb("$$absUrl"),
-url:function(a){if(w(a))return this.$$url;var b=Yg.exec(a);(b[1]||""===a)&&this.path(decodeURIComponent(b[1]));(b[2]||b[1]||""===a)&&this.search(b[3]||"");this.hash(b[5]||"");return this},protocol:Jb("$$protocol"),host:Jb("$$host"),port:Jb("$$port"),path:Cd("$$path",function(a){a=null!==a?a.toString():"";return"/"===a.charAt(0)?a:"/"+a}),search:function(a,b){switch(arguments.length){case 0:return this.$$search;case 1:if(F(a)||ba(a))a=a.toString(),this.$$search=Rc(a);else if(C(a))a=ra(a,{}),q(a,function(b,
-c){null==b&&delete a[c]}),this.$$search=a;else throw kb("isrcharg");break;default:w(b)||null===b?delete this.$$search[a]:this.$$search[a]=b}this.$$compose();return this},hash:Cd("$$hash",function(a){return null!==a?a.toString():""}),replace:function(){this.$$replace=!0;return this}};q([Bd,tc,sc],function(a){a.prototype=Object.create(Zg);a.prototype.state=function(b){if(!arguments.length)return this.$$state;if(a!==sc||!this.$$html5)throw kb("nostate");this.$$state=w(b)?null:b;this.$$urlUpdatedByLocation=
-!0;return this}});var Ua=L("$parse"),Bg={}.constructor.prototype.valueOf,Qb=V();q("+ - * / % === !== == != < > <= >= && || ! = |".split(" "),function(a){Qb[a]=!0});var $g={n:"\n",f:"\f",r:"\r",t:"\t",v:"\v","'":"'",'"':'"'},wc=function(a){this.options=a};wc.prototype={constructor:wc,lex:function(a){this.text=a;this.index=0;for(this.tokens=[];this.index<this.text.length;)if(a=this.text.charAt(this.index),'"'===a||"'"===a)this.readString(a);else if(this.isNumber(a)||"."===a&&this.isNumber(this.peek()))this.readNumber();
-else if(this.isIdentifierStart(this.peekMultichar()))this.readIdent();else if(this.is(a,"(){}[].,;:?"))this.tokens.push({index:this.index,text:a}),this.index++;else if(this.isWhitespace(a))this.index++;else{var b=a+this.peek(),d=b+this.peek(2),c=Qb[b],e=Qb[d];Qb[a]||c||e?(a=e?d:c?b:a,this.tokens.push({index:this.index,text:a,operator:!0}),this.index+=a.length):this.throwError("Unexpected next character ",this.index,this.index+1)}return this.tokens},is:function(a,b){return-1!==b.indexOf(a)},peek:function(a){a=
-a||1;return this.index+a<this.text.length?this.text.charAt(this.index+a):!1},isNumber:function(a){return"0"<=a&&"9">=a&&"string"===typeof a},isWhitespace:function(a){return" "===a||"\r"===a||"\t"===a||"\n"===a||"\v"===a||"\u00a0"===a},isIdentifierStart:function(a){return this.options.isIdentifierStart?this.options.isIdentifierStart(a,this.codePointAt(a)):this.isValidIdentifierStart(a)},isValidIdentifierStart:function(a){return"a"<=a&&"z">=a||"A"<=a&&"Z">=a||"_"===a||"$"===a},isIdentifierContinue:function(a){return this.options.isIdentifierContinue?
-this.options.isIdentifierContinue(a,this.codePointAt(a)):this.isValidIdentifierContinue(a)},isValidIdentifierContinue:function(a,b){return this.isValidIdentifierStart(a,b)||this.isNumber(a)},codePointAt:function(a){return 1===a.length?a.charCodeAt(0):(a.charCodeAt(0)<<10)+a.charCodeAt(1)-56613888},peekMultichar:function(){var a=this.text.charAt(this.index),b=this.peek();if(!b)return a;var d=a.charCodeAt(0),c=b.charCodeAt(0);return 55296<=d&&56319>=d&&56320<=c&&57343>=c?a+b:a},isExpOperator:function(a){return"-"===
-a||"+"===a||this.isNumber(a)},throwError:function(a,b,d){d=d||this.index;b=u(b)?"s "+b+"-"+this.index+" ["+this.text.substring(b,d)+"]":" "+d;throw Ua("lexerr",a,b,this.text);},readNumber:function(){for(var a="",b=this.index;this.index<this.text.length;){var d=Q(this.text.charAt(this.index));if("."===d||this.isNumber(d))a+=d;else{var c=this.peek();if("e"===d&&this.isExpOperator(c))a+=d;else if(this.isExpOperator(d)&&c&&this.isNumber(c)&&"e"===a.charAt(a.length-1))a+=d;else if(!this.isExpOperator(d)||
-c&&this.isNumber(c)||"e"!==a.charAt(a.length-1))break;else this.throwError("Invalid exponent")}this.index++}this.tokens.push({index:b,text:a,constant:!0,value:Number(a)})},readIdent:function(){var a=this.index;for(this.index+=this.peekMultichar().length;this.index<this.text.length;){var b=this.peekMultichar();if(!this.isIdentifierContinue(b))break;this.index+=b.length}this.tokens.push({index:a,text:this.text.slice(a,this.index),identifier:!0})},readString:function(a){var b=this.index;this.index++;
-for(var d="",c=a,e=!1;this.index<this.text.length;){var f=this.text.charAt(this.index),c=c+f;if(e)"u"===f?(e=this.text.substring(this.index+1,this.index+5),e.match(/[\da-f]{4}/i)||this.throwError("Invalid unicode escape [\\u"+e+"]"),this.index+=4,d+=String.fromCharCode(parseInt(e,16))):d+=$g[f]||f,e=!1;else if("\\"===f)e=!0;else{if(f===a){this.index++;this.tokens.push({index:b,text:c,constant:!0,value:d});return}d+=f}this.index++}this.throwError("Unterminated quote",b)}};var s=function(a,b){this.lexer=
-a;this.options=b};s.Program="Program";s.ExpressionStatement="ExpressionStatement";s.AssignmentExpression="AssignmentExpression";s.ConditionalExpression="ConditionalExpression";s.LogicalExpression="LogicalExpression";s.BinaryExpression="BinaryExpression";s.UnaryExpression="UnaryExpression";s.CallExpression="CallExpression";s.MemberExpression="MemberExpression";s.Identifier="Identifier";s.Literal="Literal";s.ArrayExpression="ArrayExpression";s.Property="Property";s.ObjectExpression="ObjectExpression";
-s.ThisExpression="ThisExpression";s.LocalsExpression="LocalsExpression";s.NGValueParameter="NGValueParameter";s.prototype={ast:function(a){this.text=a;this.tokens=this.lexer.lex(a);a=this.program();0!==this.tokens.length&&this.throwError("is an unexpected token",this.tokens[0]);return a},program:function(){for(var a=[];;)if(0<this.tokens.length&&!this.peek("}",")",";","]")&&a.push(this.expressionStatement()),!this.expect(";"))return{type:s.Program,body:a}},expressionStatement:function(){return{type:s.ExpressionStatement,
-expression:this.filterChain()}},filterChain:function(){for(var a=this.expression();this.expect("|");)a=this.filter(a);return a},expression:function(){return this.assignment()},assignment:function(){var a=this.ternary();if(this.expect("=")){if(!Fd(a))throw Ua("lval");a={type:s.AssignmentExpression,left:a,right:this.assignment(),operator:"="}}return a},ternary:function(){var a=this.logicalOR(),b,d;return this.expect("?")&&(b=this.expression(),this.consume(":"))?(d=this.expression(),{type:s.ConditionalExpression,
-test:a,alternate:b,consequent:d}):a},logicalOR:function(){for(var a=this.logicalAND();this.expect("||");)a={type:s.LogicalExpression,operator:"||",left:a,right:this.logicalAND()};return a},logicalAND:function(){for(var a=this.equality();this.expect("&&");)a={type:s.LogicalExpression,operator:"&&",left:a,right:this.equality()};return a},equality:function(){for(var a=this.relational(),b;b=this.expect("==","!=","===","!==");)a={type:s.BinaryExpression,operator:b.text,left:a,right:this.relational()};
-return a},relational:function(){for(var a=this.additive(),b;b=this.expect("<",">","<=",">=");)a={type:s.BinaryExpression,operator:b.text,left:a,right:this.additive()};return a},additive:function(){for(var a=this.multiplicative(),b;b=this.expect("+","-");)a={type:s.BinaryExpression,operator:b.text,left:a,right:this.multiplicative()};return a},multiplicative:function(){for(var a=this.unary(),b;b=this.expect("*","/","%");)a={type:s.BinaryExpression,operator:b.text,left:a,right:this.unary()};return a},
-unary:function(){var a;return(a=this.expect("+","-","!"))?{type:s.UnaryExpression,operator:a.text,prefix:!0,argument:this.unary()}:this.primary()},primary:function(){var a;this.expect("(")?(a=this.filterChain(),this.consume(")")):this.expect("[")?a=this.arrayDeclaration():this.expect("{")?a=this.object():this.selfReferential.hasOwnProperty(this.peek().text)?a=ra(this.selfReferential[this.consume().text]):this.options.literals.hasOwnProperty(this.peek().text)?a={type:s.Literal,value:this.options.literals[this.consume().text]}:
-this.peek().identifier?a=this.identifier():this.peek().constant?a=this.constant():this.throwError("not a primary expression",this.peek());for(var b;b=this.expect("(","[",".");)"("===b.text?(a={type:s.CallExpression,callee:a,arguments:this.parseArguments()},this.consume(")")):"["===b.text?(a={type:s.MemberExpression,object:a,property:this.expression(),computed:!0},this.consume("]")):"."===b.text?a={type:s.MemberExpression,object:a,property:this.identifier(),computed:!1}:this.throwError("IMPOSSIBLE");
-return a},filter:function(a){a=[a];for(var b={type:s.CallExpression,callee:this.identifier(),arguments:a,filter:!0};this.expect(":");)a.push(this.expression());return b},parseArguments:function(){var a=[];if(")"!==this.peekToken().text){do a.push(this.filterChain());while(this.expect(","))}return a},identifier:function(){var a=this.consume();a.identifier||this.throwError("is not a valid identifier",a);return{type:s.Identifier,name:a.text}},constant:function(){return{type:s.Literal,value:this.consume().value}},
-arrayDeclaration:function(){var a=[];if("]"!==this.peekToken().text){do{if(this.peek("]"))break;a.push(this.expression())}while(this.expect(","))}this.consume("]");return{type:s.ArrayExpression,elements:a}},object:function(){var a=[],b;if("}"!==this.peekToken().text){do{if(this.peek("}"))break;b={type:s.Property,kind:"init"};this.peek().constant?(b.key=this.constant(),b.computed=!1,this.consume(":"),b.value=this.expression()):this.peek().identifier?(b.key=this.identifier(),b.computed=!1,this.peek(":")?
-(this.consume(":"),b.value=this.expression()):b.value=b.key):this.peek("[")?(this.consume("["),b.key=this.expression(),this.consume("]"),b.computed=!0,this.consume(":"),b.value=this.expression()):this.throwError("invalid key",this.peek());a.push(b)}while(this.expect(","))}this.consume("}");return{type:s.ObjectExpression,properties:a}},throwError:function(a,b){throw Ua("syntax",b.text,a,b.index+1,this.text,this.text.substring(b.index));},consume:function(a){if(0===this.tokens.length)throw Ua("ueoe",
-this.text);var b=this.expect(a);b||this.throwError("is unexpected, expecting ["+a+"]",this.peek());return b},peekToken:function(){if(0===this.tokens.length)throw Ua("ueoe",this.text);return this.tokens[0]},peek:function(a,b,d,c){return this.peekAhead(0,a,b,d,c)},peekAhead:function(a,b,d,c,e){if(this.tokens.length>a){a=this.tokens[a];var f=a.text;if(f===b||f===d||f===c||f===e||!(b||d||c||e))return a}return!1},expect:function(a,b,d,c){return(a=this.peek(a,b,d,c))?(this.tokens.shift(),a):!1},selfReferential:{"this":{type:s.ThisExpression},
-$locals:{type:s.LocalsExpression}}};Hd.prototype={compile:function(a){var b=this;this.state={nextId:0,filters:{},fn:{vars:[],body:[],own:{}},assign:{vars:[],body:[],own:{}},inputs:[]};U(a,b.$filter);var d="",c;this.stage="assign";if(c=Gd(a))this.state.computing="assign",d=this.nextId(),this.recurse(c,d),this.return_(d),d="fn.assign="+this.generateFunction("assign","s,v,l");c=Ed(a.body);b.stage="inputs";q(c,function(a,c){var d="fn"+c;b.state[d]={vars:[],body:[],own:{}};b.state.computing=d;var h=b.nextId();
-b.recurse(a,h);b.return_(h);b.state.inputs.push(d);a.watchId=c});this.state.computing="fn";this.stage="main";this.recurse(a);a='"'+this.USE+" "+this.STRICT+'";\n'+this.filterPrefix()+"var fn="+this.generateFunction("fn","s,l,a,i")+d+this.watchFns()+"return fn;";a=(new Function("$filter","getStringValue","ifDefined","plus",a))(this.$filter,zg,Ag,Dd);this.state=this.stage=void 0;return a},USE:"use",STRICT:"strict",watchFns:function(){var a=[],b=this.state.inputs,d=this;q(b,function(b){a.push("var "+
-b+"="+d.generateFunction(b,"s"))});b.length&&a.push("fn.inputs=["+b.join(",")+"];");return a.join("")},generateFunction:function(a,b){return"function("+b+"){"+this.varsPrefix(a)+this.body(a)+"};"},filterPrefix:function(){var a=[],b=this;q(this.state.filters,function(d,c){a.push(d+"=$filter("+b.escape(c)+")")});return a.length?"var "+a.join(",")+";":""},varsPrefix:function(a){return this.state[a].vars.length?"var "+this.state[a].vars.join(",")+";":""},body:function(a){return this.state[a].body.join("")},
-recurse:function(a,b,d,c,e,f){var g,h,k=this,l,m,n;c=c||z;if(!f&&u(a.watchId))b=b||this.nextId(),this.if_("i",this.lazyAssign(b,this.computedMember("i",a.watchId)),this.lazyRecurse(a,b,d,c,e,!0));else switch(a.type){case s.Program:q(a.body,function(b,c){k.recurse(b.expression,void 0,void 0,function(a){h=a});c!==a.body.length-1?k.current().body.push(h,";"):k.return_(h)});break;case s.Literal:m=this.escape(a.value);this.assign(b,m);c(b||m);break;case s.UnaryExpression:this.recurse(a.argument,void 0,
-void 0,function(a){h=a});m=a.operator+"("+this.ifDefined(h,0)+")";this.assign(b,m);c(m);break;case s.BinaryExpression:this.recurse(a.left,void 0,void 0,function(a){g=a});this.recurse(a.right,void 0,void 0,function(a){h=a});m="+"===a.operator?this.plus(g,h):"-"===a.operator?this.ifDefined(g,0)+a.operator+this.ifDefined(h,0):"("+g+")"+a.operator+"("+h+")";this.assign(b,m);c(m);break;case s.LogicalExpression:b=b||this.nextId();k.recurse(a.left,b);k.if_("&&"===a.operator?b:k.not(b),k.lazyRecurse(a.right,
-b));c(b);break;case s.ConditionalExpression:b=b||this.nextId();k.recurse(a.test,b);k.if_(b,k.lazyRecurse(a.alternate,b),k.lazyRecurse(a.consequent,b));c(b);break;case s.Identifier:b=b||this.nextId();d&&(d.context="inputs"===k.stage?"s":this.assign(this.nextId(),this.getHasOwnProperty("l",a.name)+"?l:s"),d.computed=!1,d.name=a.name);k.if_("inputs"===k.stage||k.not(k.getHasOwnProperty("l",a.name)),function(){k.if_("inputs"===k.stage||"s",function(){e&&1!==e&&k.if_(k.isNull(k.nonComputedMember("s",a.name)),
-k.lazyAssign(k.nonComputedMember("s",a.name),"{}"));k.assign(b,k.nonComputedMember("s",a.name))})},b&&k.lazyAssign(b,k.nonComputedMember("l",a.name)));c(b);break;case s.MemberExpression:g=d&&(d.context=this.nextId())||this.nextId();b=b||this.nextId();k.recurse(a.object,g,void 0,function(){k.if_(k.notNull(g),function(){a.computed?(h=k.nextId(),k.recurse(a.property,h),k.getStringValue(h),e&&1!==e&&k.if_(k.not(k.computedMember(g,h)),k.lazyAssign(k.computedMember(g,h),"{}")),m=k.computedMember(g,h),k.assign(b,
-m),d&&(d.computed=!0,d.name=h)):(e&&1!==e&&k.if_(k.isNull(k.nonComputedMember(g,a.property.name)),k.lazyAssign(k.nonComputedMember(g,a.property.name),"{}")),m=k.nonComputedMember(g,a.property.name),k.assign(b,m),d&&(d.computed=!1,d.name=a.property.name))},function(){k.assign(b,"undefined")});c(b)},!!e);break;case s.CallExpression:b=b||this.nextId();a.filter?(h=k.filter(a.callee.name),l=[],q(a.arguments,function(a){var b=k.nextId();k.recurse(a,b);l.push(b)}),m=h+"("+l.join(",")+")",k.assign(b,m),c(b)):
-(h=k.nextId(),g={},l=[],k.recurse(a.callee,h,g,function(){k.if_(k.notNull(h),function(){q(a.arguments,function(b){k.recurse(b,a.constant?void 0:k.nextId(),void 0,function(a){l.push(a)})});m=g.name?k.member(g.context,g.name,g.computed)+"("+l.join(",")+")":h+"("+l.join(",")+")";k.assign(b,m)},function(){k.assign(b,"undefined")});c(b)}));break;case s.AssignmentExpression:h=this.nextId();g={};this.recurse(a.left,void 0,g,function(){k.if_(k.notNull(g.context),function(){k.recurse(a.right,h);m=k.member(g.context,
-g.name,g.computed)+a.operator+h;k.assign(b,m);c(b||m)})},1);break;case s.ArrayExpression:l=[];q(a.elements,function(b){k.recurse(b,a.constant?void 0:k.nextId(),void 0,function(a){l.push(a)})});m="["+l.join(",")+"]";this.assign(b,m);c(b||m);break;case s.ObjectExpression:l=[];n=!1;q(a.properties,function(a){a.computed&&(n=!0)});n?(b=b||this.nextId(),this.assign(b,"{}"),q(a.properties,function(a){a.computed?(g=k.nextId(),k.recurse(a.key,g)):g=a.key.type===s.Identifier?a.key.name:""+a.key.value;h=k.nextId();
-k.recurse(a.value,h);k.assign(k.member(b,g,a.computed),h)})):(q(a.properties,function(b){k.recurse(b.value,a.constant?void 0:k.nextId(),void 0,function(a){l.push(k.escape(b.key.type===s.Identifier?b.key.name:""+b.key.value)+":"+a)})}),m="{"+l.join(",")+"}",this.assign(b,m));c(b||m);break;case s.ThisExpression:this.assign(b,"s");c(b||"s");break;case s.LocalsExpression:this.assign(b,"l");c(b||"l");break;case s.NGValueParameter:this.assign(b,"v"),c(b||"v")}},getHasOwnProperty:function(a,b){var d=a+"."+
-b,c=this.current().own;c.hasOwnProperty(d)||(c[d]=this.nextId(!1,a+"&&("+this.escape(b)+" in "+a+")"));return c[d]},assign:function(a,b){if(a)return this.current().body.push(a,"=",b,";"),a},filter:function(a){this.state.filters.hasOwnProperty(a)||(this.state.filters[a]=this.nextId(!0));return this.state.filters[a]},ifDefined:function(a,b){return"ifDefined("+a+","+this.escape(b)+")"},plus:function(a,b){return"plus("+a+","+b+")"},return_:function(a){this.current().body.push("return ",a,";")},if_:function(a,
-b,d){if(!0===a)b();else{var c=this.current().body;c.push("if(",a,"){");b();c.push("}");d&&(c.push("else{"),d(),c.push("}"))}},not:function(a){return"!("+a+")"},isNull:function(a){return a+"==null"},notNull:function(a){return a+"!=null"},nonComputedMember:function(a,b){var d=/[^$_a-zA-Z0-9]/g;return/^[$_a-zA-Z][$_a-zA-Z0-9]*$/.test(b)?a+"."+b:a+'["'+b.replace(d,this.stringEscapeFn)+'"]'},computedMember:function(a,b){return a+"["+b+"]"},member:function(a,b,d){return d?this.computedMember(a,b):this.nonComputedMember(a,
-b)},getStringValue:function(a){this.assign(a,"getStringValue("+a+")")},lazyRecurse:function(a,b,d,c,e,f){var g=this;return function(){g.recurse(a,b,d,c,e,f)}},lazyAssign:function(a,b){var d=this;return function(){d.assign(a,b)}},stringEscapeRegex:/[^ a-zA-Z0-9]/g,stringEscapeFn:function(a){return"\\u"+("0000"+a.charCodeAt(0).toString(16)).slice(-4)},escape:function(a){if(F(a))return"'"+a.replace(this.stringEscapeRegex,this.stringEscapeFn)+"'";if(ba(a))return a.toString();if(!0===a)return"true";if(!1===
-a)return"false";if(null===a)return"null";if("undefined"===typeof a)return"undefined";throw Ua("esc");},nextId:function(a,b){var d="v"+this.state.nextId++;a||this.current().vars.push(d+(b?"="+b:""));return d},current:function(){return this.state[this.state.computing]}};Id.prototype={compile:function(a){var b=this;U(a,b.$filter);var d,c;if(d=Gd(a))c=this.recurse(d);d=Ed(a.body);var e;d&&(e=[],q(d,function(a,c){var d=b.recurse(a);a.input=d;e.push(d);a.watchId=c}));var f=[];q(a.body,function(a){f.push(b.recurse(a.expression))});
-a=0===a.body.length?z:1===a.body.length?f[0]:function(a,b){var c;q(f,function(d){c=d(a,b)});return c};c&&(a.assign=function(a,b,d){return c(a,d,b)});e&&(a.inputs=e);return a},recurse:function(a,b,d){var c,e,f=this,g;if(a.input)return this.inputs(a.input,a.watchId);switch(a.type){case s.Literal:return this.value(a.value,b);case s.UnaryExpression:return e=this.recurse(a.argument),this["unary"+a.operator](e,b);case s.BinaryExpression:return c=this.recurse(a.left),e=this.recurse(a.right),this["binary"+
-a.operator](c,e,b);case s.LogicalExpression:return c=this.recurse(a.left),e=this.recurse(a.right),this["binary"+a.operator](c,e,b);case s.ConditionalExpression:return this["ternary?:"](this.recurse(a.test),this.recurse(a.alternate),this.recurse(a.consequent),b);case s.Identifier:return f.identifier(a.name,b,d);case s.MemberExpression:return c=this.recurse(a.object,!1,!!d),a.computed||(e=a.property.name),a.computed&&(e=this.recurse(a.property)),a.computed?this.computedMember(c,e,b,d):this.nonComputedMember(c,
-e,b,d);case s.CallExpression:return g=[],q(a.arguments,function(a){g.push(f.recurse(a))}),a.filter&&(e=this.$filter(a.callee.name)),a.filter||(e=this.recurse(a.callee,!0)),a.filter?function(a,c,d,f){for(var n=[],p=0;p<g.length;++p)n.push(g[p](a,c,d,f));a=e.apply(void 0,n,f);return b?{context:void 0,name:void 0,value:a}:a}:function(a,c,d,f){var n=e(a,c,d,f),p;if(null!=n.value){p=[];for(var r=0;r<g.length;++r)p.push(g[r](a,c,d,f));p=n.value.apply(n.context,p)}return b?{value:p}:p};case s.AssignmentExpression:return c=
-this.recurse(a.left,!0,1),e=this.recurse(a.right),function(a,d,f,g){var n=c(a,d,f,g);a=e(a,d,f,g);n.context[n.name]=a;return b?{value:a}:a};case s.ArrayExpression:return g=[],q(a.elements,function(a){g.push(f.recurse(a))}),function(a,c,d,e){for(var f=[],p=0;p<g.length;++p)f.push(g[p](a,c,d,e));return b?{value:f}:f};case s.ObjectExpression:return g=[],q(a.properties,function(a){a.computed?g.push({key:f.recurse(a.key),computed:!0,value:f.recurse(a.value)}):g.push({key:a.key.type===s.Identifier?a.key.name:
-""+a.key.value,computed:!1,value:f.recurse(a.value)})}),function(a,c,d,e){for(var f={},p=0;p<g.length;++p)g[p].computed?f[g[p].key(a,c,d,e)]=g[p].value(a,c,d,e):f[g[p].key]=g[p].value(a,c,d,e);return b?{value:f}:f};case s.ThisExpression:return function(a){return b?{value:a}:a};case s.LocalsExpression:return function(a,c){return b?{value:c}:c};case s.NGValueParameter:return function(a,c,d){return b?{value:d}:d}}},"unary+":function(a,b){return function(d,c,e,f){d=a(d,c,e,f);d=u(d)?+d:0;return b?{value:d}:
-d}},"unary-":function(a,b){return function(d,c,e,f){d=a(d,c,e,f);d=u(d)?-d:-0;return b?{value:d}:d}},"unary!":function(a,b){return function(d,c,e,f){d=!a(d,c,e,f);return b?{value:d}:d}},"binary+":function(a,b,d){return function(c,e,f,g){var h=a(c,e,f,g);c=b(c,e,f,g);h=Dd(h,c);return d?{value:h}:h}},"binary-":function(a,b,d){return function(c,e,f,g){var h=a(c,e,f,g);c=b(c,e,f,g);h=(u(h)?h:0)-(u(c)?c:0);return d?{value:h}:h}},"binary*":function(a,b,d){return function(c,e,f,g){c=a(c,e,f,g)*b(c,e,f,g);
-return d?{value:c}:c}},"binary/":function(a,b,d){return function(c,e,f,g){c=a(c,e,f,g)/b(c,e,f,g);return d?{value:c}:c}},"binary%":function(a,b,d){return function(c,e,f,g){c=a(c,e,f,g)%b(c,e,f,g);return d?{value:c}:c}},"binary===":function(a,b,d){return function(c,e,f,g){c=a(c,e,f,g)===b(c,e,f,g);return d?{value:c}:c}},"binary!==":function(a,b,d){return function(c,e,f,g){c=a(c,e,f,g)!==b(c,e,f,g);return d?{value:c}:c}},"binary==":function(a,b,d){return function(c,e,f,g){c=a(c,e,f,g)==b(c,e,f,g);return d?
-{value:c}:c}},"binary!=":function(a,b,d){return function(c,e,f,g){c=a(c,e,f,g)!=b(c,e,f,g);return d?{value:c}:c}},"binary<":function(a,b,d){return function(c,e,f,g){c=a(c,e,f,g)<b(c,e,f,g);return d?{value:c}:c}},"binary>":function(a,b,d){return function(c,e,f,g){c=a(c,e,f,g)>b(c,e,f,g);return d?{value:c}:c}},"binary<=":function(a,b,d){return function(c,e,f,g){c=a(c,e,f,g)<=b(c,e,f,g);return d?{value:c}:c}},"binary>=":function(a,b,d){return function(c,e,f,g){c=a(c,e,f,g)>=b(c,e,f,g);return d?{value:c}:
-c}},"binary&&":function(a,b,d){return function(c,e,f,g){c=a(c,e,f,g)&&b(c,e,f,g);return d?{value:c}:c}},"binary||":function(a,b,d){return function(c,e,f,g){c=a(c,e,f,g)||b(c,e,f,g);return d?{value:c}:c}},"ternary?:":function(a,b,d,c){return function(e,f,g,h){e=a(e,f,g,h)?b(e,f,g,h):d(e,f,g,h);return c?{value:e}:e}},value:function(a,b){return function(){return b?{context:void 0,name:void 0,value:a}:a}},identifier:function(a,b,d){return function(c,e,f,g){c=e&&a in e?e:c;d&&1!==d&&c&&null==c[a]&&(c[a]=
-{});e=c?c[a]:void 0;return b?{context:c,name:a,value:e}:e}},computedMember:function(a,b,d,c){return function(e,f,g,h){var k=a(e,f,g,h),l,m;null!=k&&(l=b(e,f,g,h),l+="",c&&1!==c&&k&&!k[l]&&(k[l]={}),m=k[l]);return d?{context:k,name:l,value:m}:m}},nonComputedMember:function(a,b,d,c){return function(e,f,g,h){e=a(e,f,g,h);c&&1!==c&&e&&null==e[b]&&(e[b]={});f=null!=e?e[b]:void 0;return d?{context:e,name:b,value:f}:f}},inputs:function(a,b){return function(d,c,e,f){return f?f[b]:a(d,c,e)}}};uc.prototype=
-{constructor:uc,parse:function(a){a=this.ast.ast(a);var b=this.astCompiler.compile(a);b.literal=0===a.body.length||1===a.body.length&&(a.body[0].expression.type===s.Literal||a.body[0].expression.type===s.ArrayExpression||a.body[0].expression.type===s.ObjectExpression);b.constant=a.constant;return b}};var ta=L("$sce"),oa={HTML:"html",CSS:"css",URL:"url",RESOURCE_URL:"resourceUrl",JS:"js"},xc=/_([a-z])/g,Dg=L("$compile"),aa=x.document.createElement("a"),Md=Ca(x.location.href);Nd.$inject=["$document"];
-cd.$inject=["$provide"];var Ud=22,Td=".",zc="0";Od.$inject=["$locale"];Qd.$inject=["$locale"];var Og={yyyy:Y("FullYear",4,0,!1,!0),yy:Y("FullYear",2,0,!0,!0),y:Y("FullYear",1,0,!1,!0),MMMM:mb("Month"),MMM:mb("Month",!0),MM:Y("Month",2,1),M:Y("Month",1,1),LLLL:mb("Month",!1,!0),dd:Y("Date",2),d:Y("Date",1),HH:Y("Hours",2),H:Y("Hours",1),hh:Y("Hours",2,-12),h:Y("Hours",1,-12),mm:Y("Minutes",2),m:Y("Minutes",1),ss:Y("Seconds",2),s:Y("Seconds",1),sss:Y("Milliseconds",3),EEEE:mb("Day"),EEE:mb("Day",!0),
-a:function(a,b){return 12>a.getHours()?b.AMPMS[0]:b.AMPMS[1]},Z:function(a,b,d){a=-1*d;return a=(0<=a?"+":"")+(Kb(Math[0<a?"floor":"ceil"](a/60),2)+Kb(Math.abs(a%60),2))},ww:Wd(2),w:Wd(1),G:Ac,GG:Ac,GGG:Ac,GGGG:function(a,b){return 0>=a.getFullYear()?b.ERANAMES[0]:b.ERANAMES[1]}},Ng=/((?:[^yMLdHhmsaZEwG']+)|(?:'(?:[^']|'')*')|(?:E+|y+|M+|L+|d+|H+|h+|m+|s+|a|Z|G+|w+))([\s\S]*)/,Mg=/^-?\d+$/;Pd.$inject=["$locale"];var Hg=la(Q),Ig=la(ub);Rd.$inject=["$parse"];var Fe=la({restrict:"E",compile:function(a,
-b){if(!b.href&&!b.xlinkHref)return function(a,b){if("a"===b[0].nodeName.toLowerCase()){var e="[object SVGAnimatedString]"===ma.call(b.prop("href"))?"xlink:href":"href";b.on("click",function(a){b.attr(e)||a.preventDefault()})}}}}),vb={};q(Fb,function(a,b){function d(a,d,e){a.$watch(e[c],function(a){e.$set(b,!!a)})}if("multiple"!==a){var c=Ba("ng-"+b),e=d;"checked"===a&&(e=function(a,b,e){e.ngModel!==e[c]&&d(a,b,e)});vb[c]=function(){return{restrict:"A",priority:100,link:e}}}});q(rd,function(a,b){vb[b]=
-function(){return{priority:100,link:function(a,c,e){if("ngPattern"===b&&"/"===e.ngPattern.charAt(0)&&(c=e.ngPattern.match(Sg))){e.$set("ngPattern",new RegExp(c[1],c[2]));return}a.$watch(e[b],function(a){e.$set(b,a)})}}}});q(["src","srcset","href"],function(a){var b=Ba("ng-"+a);vb[b]=function(){return{priority:99,link:function(d,c,e){var f=a,g=a;"href"===a&&"[object SVGAnimatedString]"===ma.call(c.prop("href"))&&(g="xlinkHref",e.$attr[g]="xlink:href",f=null);e.$observe(b,function(b){b?(e.$set(g,b),
-za&&f&&c.prop(f,e[g])):"href"===a&&e.$set(g,null)})}}}});var Mb={$addControl:z,$$renameControl:function(a,b){a.$name=b},$removeControl:z,$setValidity:z,$setDirty:z,$setPristine:z,$setSubmitted:z};Lb.$inject=["$element","$attrs","$scope","$animate","$interpolate"];Lb.prototype={$rollbackViewValue:function(){q(this.$$controls,function(a){a.$rollbackViewValue()})},$commitViewValue:function(){q(this.$$controls,function(a){a.$commitViewValue()})},$addControl:function(a){Ka(a.$name,"input");this.$$controls.push(a);
-a.$name&&(this[a.$name]=a);a.$$parentForm=this},$$renameControl:function(a,b){var d=a.$name;this[d]===a&&delete this[d];this[b]=a;a.$name=b},$removeControl:function(a){a.$name&&this[a.$name]===a&&delete this[a.$name];q(this.$pending,function(b,d){this.$setValidity(d,null,a)},this);q(this.$error,function(b,d){this.$setValidity(d,null,a)},this);q(this.$$success,function(b,d){this.$setValidity(d,null,a)},this);$a(this.$$controls,a);a.$$parentForm=Mb},$setDirty:function(){this.$$animate.removeClass(this.$$element,
-Va);this.$$animate.addClass(this.$$element,Rb);this.$dirty=!0;this.$pristine=!1;this.$$parentForm.$setDirty()},$setPristine:function(){this.$$animate.setClass(this.$$element,Va,Rb+" ng-submitted");this.$dirty=!1;this.$pristine=!0;this.$submitted=!1;q(this.$$controls,function(a){a.$setPristine()})},$setUntouched:function(){q(this.$$controls,function(a){a.$setUntouched()})},$setSubmitted:function(){this.$$animate.addClass(this.$$element,"ng-submitted");this.$submitted=!0;this.$$parentForm.$setSubmitted()}};
-Zd({clazz:Lb,set:function(a,b,d){var c=a[b];c?-1===c.indexOf(d)&&c.push(d):a[b]=[d]},unset:function(a,b,d){var c=a[b];c&&($a(c,d),0===c.length&&delete a[b])}});var ge=function(a){return["$timeout","$parse",function(b,d){function c(a){return""===a?d('this[""]').assign:d(a).assign||z}return{name:"form",restrict:a?"EAC":"E",require:["form","^^?form"],controller:Lb,compile:function(d,f){d.addClass(Va).addClass(nb);var g=f.name?"name":a&&f.ngForm?"ngForm":!1;return{pre:function(a,d,e,f){var n=f[0];if(!("action"in
-e)){var p=function(b){a.$apply(function(){n.$commitViewValue();n.$setSubmitted()});b.preventDefault()};d[0].addEventListener("submit",p);d.on("$destroy",function(){b(function(){d[0].removeEventListener("submit",p)},0,!1)})}(f[1]||n.$$parentForm).$addControl(n);var r=g?c(n.$name):z;g&&(r(a,n),e.$observe(g,function(b){n.$name!==b&&(r(a,void 0),n.$$parentForm.$$renameControl(n,b),r=c(n.$name),r(a,n))}));d.on("$destroy",function(){n.$$parentForm.$removeControl(n);r(a,void 0);S(n,Mb)})}}}}}]},Ge=ge(),
-Se=ge(!0),Pg=/^\d{4,}-[01]\d-[0-3]\dT[0-2]\d:[0-5]\d:[0-5]\d\.\d+(?:[+-][0-2]\d:[0-5]\d|Z)$/,ah=/^[a-z][a-z\d.+-]*:\/*(?:[^:@]+(?::[^@]+)?@)?(?:[^\s:/?#]+|\[[a-f\d:]+])(?::\d+)?(?:\/[^?#]*)?(?:\?[^#]*)?(?:#.*)?$/i,bh=/^(?=.{1,254}$)(?=.{1,64}@)[-!#$%&'*+/0-9=?A-Z^_`a-z{|}~]+(\.[-!#$%&'*+/0-9=?A-Z^_`a-z{|}~]+)*@[A-Za-z0-9]([A-Za-z0-9-]{0,61}[A-Za-z0-9])?(\.[A-Za-z0-9]([A-Za-z0-9-]{0,61}[A-Za-z0-9])?)*$/,Qg=/^\s*(-|\+)?(\d+|(\d*(\.\d*)))([eE][+-]?\d+)?\s*$/,he=/^(\d{4,})-(\d{2})-(\d{2})$/,ie=/^(\d{4,})-(\d\d)-(\d\d)T(\d\d):(\d\d)(?::(\d\d)(\.\d{1,3})?)?$/,
-Hc=/^(\d{4,})-W(\d\d)$/,je=/^(\d{4,})-(\d\d)$/,ke=/^(\d\d):(\d\d)(?::(\d\d)(\.\d{1,3})?)?$/,ae=V();q(["date","datetime-local","month","time","week"],function(a){ae[a]=!0});var le={text:function(a,b,d,c,e,f){Ra(a,b,d,c,e,f);Cc(c)},date:ob("date",he,Nb(he,["yyyy","MM","dd"]),"yyyy-MM-dd"),"datetime-local":ob("datetimelocal",ie,Nb(ie,"yyyy MM dd HH mm ss sss".split(" ")),"yyyy-MM-ddTHH:mm:ss.sss"),time:ob("time",ke,Nb(ke,["HH","mm","ss","sss"]),"HH:mm:ss.sss"),week:ob("week",Hc,function(a,b){if(ga(a))return a;
-if(F(a)){Hc.lastIndex=0;var d=Hc.exec(a);if(d){var c=+d[1],e=+d[2],f=d=0,g=0,h=0,k=Vd(c),e=7*(e-1);b&&(d=b.getHours(),f=b.getMinutes(),g=b.getSeconds(),h=b.getMilliseconds());return new Date(c,0,k.getDate()+e,d,f,g,h)}}return NaN},"yyyy-Www"),month:ob("month",je,Nb(je,["yyyy","MM"]),"yyyy-MM"),number:function(a,b,d,c,e,f){Dc(a,b,d,c);be(c);Ra(a,b,d,c,e,f);var g,h;if(u(d.min)||d.ngMin)c.$validators.min=function(a){return c.$isEmpty(a)||w(g)||a>=g},d.$observe("min",function(a){g=Sa(a);c.$validate()});
-if(u(d.max)||d.ngMax)c.$validators.max=function(a){return c.$isEmpty(a)||w(h)||a<=h},d.$observe("max",function(a){h=Sa(a);c.$validate()});if(u(d.step)||d.ngStep){var k;c.$validators.step=function(a,b){return c.$isEmpty(b)||w(k)||ce(b,g||0,k)};d.$observe("step",function(a){k=Sa(a);c.$validate()})}},url:function(a,b,d,c,e,f){Ra(a,b,d,c,e,f);Cc(c);c.$$parserName="url";c.$validators.url=function(a,b){var d=a||b;return c.$isEmpty(d)||ah.test(d)}},email:function(a,b,d,c,e,f){Ra(a,b,d,c,e,f);Cc(c);c.$$parserName=
-"email";c.$validators.email=function(a,b){var d=a||b;return c.$isEmpty(d)||bh.test(d)}},radio:function(a,b,d,c){var e=!d.ngTrim||"false"!==T(d.ngTrim);w(d.name)&&b.attr("name",++qb);b.on("click",function(a){var g;b[0].checked&&(g=d.value,e&&(g=T(g)),c.$setViewValue(g,a&&a.type))});c.$render=function(){var a=d.value;e&&(a=T(a));b[0].checked=a===c.$viewValue};d.$observe("value",c.$render)},range:function(a,b,d,c,e,f){function g(a,c){b.attr(a,d[a]);d.$observe(a,c)}function h(a){n=Sa(a);da(c.$modelValue)||
-(m?(a=b.val(),n>a&&(a=n,b.val(a)),c.$setViewValue(a)):c.$validate())}function k(a){p=Sa(a);da(c.$modelValue)||(m?(a=b.val(),p<a&&(b.val(p),a=p<n?n:p),c.$setViewValue(a)):c.$validate())}function l(a){r=Sa(a);da(c.$modelValue)||(m&&c.$viewValue!==b.val()?c.$setViewValue(b.val()):c.$validate())}Dc(a,b,d,c);be(c);Ra(a,b,d,c,e,f);var m=c.$$hasNativeValidators&&"range"===b[0].type,n=m?0:void 0,p=m?100:void 0,r=m?1:void 0,q=b[0].validity;a=u(d.min);e=u(d.max);f=u(d.step);var s=c.$render;c.$render=m&&u(q.rangeUnderflow)&&
-u(q.rangeOverflow)?function(){s();c.$setViewValue(b.val())}:s;a&&(c.$validators.min=m?function(){return!0}:function(a,b){return c.$isEmpty(b)||w(n)||b>=n},g("min",h));e&&(c.$validators.max=m?function(){return!0}:function(a,b){return c.$isEmpty(b)||w(p)||b<=p},g("max",k));f&&(c.$validators.step=m?function(){return!q.stepMismatch}:function(a,b){return c.$isEmpty(b)||w(r)||ce(b,n||0,r)},g("step",l))},checkbox:function(a,b,d,c,e,f,g,h){var k=de(h,a,"ngTrueValue",d.ngTrueValue,!0),l=de(h,a,"ngFalseValue",
-d.ngFalseValue,!1);b.on("click",function(a){c.$setViewValue(b[0].checked,a&&a.type)});c.$render=function(){b[0].checked=c.$viewValue};c.$isEmpty=function(a){return!1===a};c.$formatters.push(function(a){return sa(a,k)});c.$parsers.push(function(a){return a?k:l})},hidden:z,button:z,submit:z,reset:z,file:z},Xc=["$browser","$sniffer","$filter","$parse",function(a,b,d,c){return{restrict:"E",require:["?ngModel"],link:{pre:function(e,f,g,h){h[0]&&(le[Q(g.type)]||le.text)(e,f,g,h[0],b,a,d,c)}}}}],ch=/^(true|false|\d+)$/,
-kf=function(){function a(a,d,c){var e=u(c)?c:9===za?"":null;a.prop("value",e);d.$set("value",c)}return{restrict:"A",priority:100,compile:function(b,d){return ch.test(d.ngValue)?function(b,d,f){b=b.$eval(f.ngValue);a(d,f,b)}:function(b,d,f){b.$watch(f.ngValue,function(b){a(d,f,b)})}}}},Ke=["$compile",function(a){return{restrict:"AC",compile:function(b){a.$$addBindingClass(b);return function(b,c,e){a.$$addBindingInfo(c,e.ngBind);c=c[0];b.$watch(e.ngBind,function(a){c.textContent=$b(a)})}}}}],Me=["$interpolate",
-"$compile",function(a,b){return{compile:function(d){b.$$addBindingClass(d);return function(c,d,f){c=a(d.attr(f.$attr.ngBindTemplate));b.$$addBindingInfo(d,c.expressions);d=d[0];f.$observe("ngBindTemplate",function(a){d.textContent=w(a)?"":a})}}}}],Le=["$sce","$parse","$compile",function(a,b,d){return{restrict:"A",compile:function(c,e){var f=b(e.ngBindHtml),g=b(e.ngBindHtml,function(b){return a.valueOf(b)});d.$$addBindingClass(c);return function(b,c,e){d.$$addBindingInfo(c,e.ngBindHtml);b.$watch(g,
-function(){var d=f(b);c.html(a.getTrustedHtml(d)||"")})}}}}],jf=la({restrict:"A",require:"ngModel",link:function(a,b,d,c){c.$viewChangeListeners.push(function(){a.$eval(d.ngChange)})}}),Ne=Fc("",!0),Pe=Fc("Odd",0),Oe=Fc("Even",1),Qe=Qa({compile:function(a,b){b.$set("ngCloak",void 0);a.removeClass("ng-cloak")}}),Re=[function(){return{restrict:"A",scope:!0,controller:"@",priority:500}}],bd={},dh={blur:!0,focus:!0};q("click dblclick mousedown mouseup mouseover mouseout mousemove mouseenter mouseleave keydown keyup keypress submit focus blur copy cut paste".split(" "),
-function(a){var b=Ba("ng-"+a);bd[b]=["$parse","$rootScope",function(d,c){return{restrict:"A",compile:function(e,f){var g=d(f[b]);return function(b,d){d.on(a,function(d){var e=function(){g(b,{$event:d})};dh[a]&&c.$$phase?b.$evalAsync(e):b.$apply(e)})}}}}]});var Ue=["$animate","$compile",function(a,b){return{multiElement:!0,transclude:"element",priority:600,terminal:!0,restrict:"A",$$tlb:!0,link:function(d,c,e,f,g){var h,k,l;d.$watch(e.ngIf,function(d){d?k||g(function(d,f){k=f;d[d.length++]=b.$$createComment("end ngIf",
-e.ngIf);h={clone:d};a.enter(d,c.parent(),c)}):(l&&(l.remove(),l=null),k&&(k.$destroy(),k=null),h&&(l=tb(h.clone),a.leave(l).done(function(a){!1!==a&&(l=null)}),h=null))})}}}],Ve=["$templateRequest","$anchorScroll","$animate",function(a,b,d){return{restrict:"ECA",priority:400,terminal:!0,transclude:"element",controller:ea.noop,compile:function(c,e){var f=e.ngInclude||e.src,g=e.onload||"",h=e.autoscroll;return function(c,e,m,n,p){var r=0,q,s,t,w=function(){s&&(s.remove(),s=null);q&&(q.$destroy(),q=
-null);t&&(d.leave(t).done(function(a){!1!==a&&(s=null)}),s=t,t=null)};c.$watch(f,function(f){var m=function(a){!1===a||!u(h)||h&&!c.$eval(h)||b()},s=++r;f?(a(f,!0).then(function(a){if(!c.$$destroyed&&s===r){var b=c.$new();n.template=a;a=p(b,function(a){w();d.enter(a,null,e).done(m)});q=b;t=a;q.$emit("$includeContentLoaded",f);c.$eval(g)}},function(){c.$$destroyed||s!==r||(w(),c.$emit("$includeContentError",f))}),c.$emit("$includeContentRequested",f)):(w(),n.template=null)})}}}}],mf=["$compile",function(a){return{restrict:"ECA",
-priority:-400,require:"ngInclude",link:function(b,d,c,e){ma.call(d[0]).match(/SVG/)?(d.empty(),a(dd(e.template,x.document).childNodes)(b,function(a){d.append(a)},{futureParentElement:d})):(d.html(e.template),a(d.contents())(b))}}}],We=Qa({priority:450,compile:function(){return{pre:function(a,b,d){a.$eval(d.ngInit)}}}}),hf=function(){return{restrict:"A",priority:100,require:"ngModel",link:function(a,b,d,c){var e=d.ngList||", ",f="false"!==d.ngTrim,g=f?T(e):e;c.$parsers.push(function(a){if(!w(a)){var b=
-[];a&&q(a.split(g),function(a){a&&b.push(f?T(a):a)});return b}});c.$formatters.push(function(a){if(H(a))return a.join(e)});c.$isEmpty=function(a){return!a||!a.length}}}},nb="ng-valid",Yd="ng-invalid",Va="ng-pristine",Rb="ng-dirty",pb=L("ngModel");Ob.$inject="$scope $exceptionHandler $attrs $element $parse $animate $timeout $q $interpolate".split(" ");Ob.prototype={$$initGetterSetters:function(){if(this.$options.getOption("getterSetter")){var a=this.$$parse(this.$$attr.ngModel+"()"),b=this.$$parse(this.$$attr.ngModel+
-"($$$p)");this.$$ngModelGet=function(b){var c=this.$$parsedNgModel(b);D(c)&&(c=a(b));return c};this.$$ngModelSet=function(a,c){D(this.$$parsedNgModel(a))?b(a,{$$$p:c}):this.$$parsedNgModelAssign(a,c)}}else if(!this.$$parsedNgModel.assign)throw pb("nonassign",this.$$attr.ngModel,xa(this.$$element));},$render:z,$isEmpty:function(a){return w(a)||""===a||null===a||a!==a},$$updateEmptyClasses:function(a){this.$isEmpty(a)?(this.$$animate.removeClass(this.$$element,"ng-not-empty"),this.$$animate.addClass(this.$$element,
-"ng-empty")):(this.$$animate.removeClass(this.$$element,"ng-empty"),this.$$animate.addClass(this.$$element,"ng-not-empty"))},$setPristine:function(){this.$dirty=!1;this.$pristine=!0;this.$$animate.removeClass(this.$$element,Rb);this.$$animate.addClass(this.$$element,Va)},$setDirty:function(){this.$dirty=!0;this.$pristine=!1;this.$$animate.removeClass(this.$$element,Va);this.$$animate.addClass(this.$$element,Rb);this.$$parentForm.$setDirty()},$setUntouched:function(){this.$touched=!1;this.$untouched=
-!0;this.$$animate.setClass(this.$$element,"ng-untouched","ng-touched")},$setTouched:function(){this.$touched=!0;this.$untouched=!1;this.$$animate.setClass(this.$$element,"ng-touched","ng-untouched")},$rollbackViewValue:function(){this.$$timeout.cancel(this.$$pendingDebounce);this.$viewValue=this.$$lastCommittedViewValue;this.$render()},$validate:function(){if(!da(this.$modelValue)){var a=this.$$lastCommittedViewValue,b=this.$$rawModelValue,d=this.$valid,c=this.$modelValue,e=this.$options.getOption("allowInvalid"),
-f=this;this.$$runValidators(b,a,function(a){e||d===a||(f.$modelValue=a?b:void 0,f.$modelValue!==c&&f.$$writeModelToScope())})}},$$runValidators:function(a,b,d){function c(){var c=!0;q(k.$validators,function(d,e){var g=Boolean(d(a,b));c=c&&g;f(e,g)});return c?!0:(q(k.$asyncValidators,function(a,b){f(b,null)}),!1)}function e(){var c=[],d=!0;q(k.$asyncValidators,function(e,g){var k=e(a,b);if(!k||!D(k.then))throw pb("nopromise",k);f(g,void 0);c.push(k.then(function(){f(g,!0)},function(){d=!1;f(g,!1)}))});
-c.length?k.$$q.all(c).then(function(){g(d)},z):g(!0)}function f(a,b){h===k.$$currentValidationRunId&&k.$setValidity(a,b)}function g(a){h===k.$$currentValidationRunId&&d(a)}this.$$currentValidationRunId++;var h=this.$$currentValidationRunId,k=this;(function(){var a=k.$$parserName||"parse";if(w(k.$$parserValid))f(a,null);else return k.$$parserValid||(q(k.$validators,function(a,b){f(b,null)}),q(k.$asyncValidators,function(a,b){f(b,null)})),f(a,k.$$parserValid),k.$$parserValid;return!0})()?c()?e():g(!1):
-g(!1)},$commitViewValue:function(){var a=this.$viewValue;this.$$timeout.cancel(this.$$pendingDebounce);if(this.$$lastCommittedViewValue!==a||""===a&&this.$$hasNativeValidators)this.$$updateEmptyClasses(a),this.$$lastCommittedViewValue=a,this.$pristine&&this.$setDirty(),this.$$parseAndValidate()},$$parseAndValidate:function(){var a=this.$$lastCommittedViewValue,b=this;if(this.$$parserValid=w(a)?void 0:!0)for(var d=0;d<this.$parsers.length;d++)if(a=this.$parsers[d](a),w(a)){this.$$parserValid=!1;break}da(this.$modelValue)&&
-(this.$modelValue=this.$$ngModelGet(this.$$scope));var c=this.$modelValue,e=this.$options.getOption("allowInvalid");this.$$rawModelValue=a;e&&(this.$modelValue=a,b.$modelValue!==c&&b.$$writeModelToScope());this.$$runValidators(a,this.$$lastCommittedViewValue,function(d){e||(b.$modelValue=d?a:void 0,b.$modelValue!==c&&b.$$writeModelToScope())})},$$writeModelToScope:function(){this.$$ngModelSet(this.$$scope,this.$modelValue);q(this.$viewChangeListeners,function(a){try{a()}catch(b){this.$$exceptionHandler(b)}},
-this)},$setViewValue:function(a,b){this.$viewValue=a;this.$options.getOption("updateOnDefault")&&this.$$debounceViewValueCommit(b)},$$debounceViewValueCommit:function(a){var b=this.$options.getOption("debounce");ba(b[a])?b=b[a]:ba(b["default"])&&(b=b["default"]);this.$$timeout.cancel(this.$$pendingDebounce);var d=this;0<b?this.$$pendingDebounce=this.$$timeout(function(){d.$commitViewValue()},b):this.$$scope.$root.$$phase?this.$commitViewValue():this.$$scope.$apply(function(){d.$commitViewValue()})},
-$overrideModelOptions:function(a){this.$options=this.$options.createChild(a)}};Zd({clazz:Ob,set:function(a,b){a[b]=!0},unset:function(a,b){delete a[b]}});var gf=["$rootScope",function(a){return{restrict:"A",require:["ngModel","^?form","^?ngModelOptions"],controller:Ob,priority:1,compile:function(b){b.addClass(Va).addClass("ng-untouched").addClass(nb);return{pre:function(a,b,e,f){var g=f[0];b=f[1]||g.$$parentForm;if(f=f[2])g.$options=f.$options;g.$$initGetterSetters();b.$addControl(g);e.$observe("name",
-function(a){g.$name!==a&&g.$$parentForm.$$renameControl(g,a)});a.$on("$destroy",function(){g.$$parentForm.$removeControl(g)})},post:function(b,c,e,f){function g(){h.$setTouched()}var h=f[0];if(h.$options.getOption("updateOn"))c.on(h.$options.getOption("updateOn"),function(a){h.$$debounceViewValueCommit(a&&a.type)});c.on("blur",function(){h.$touched||(a.$$phase?b.$evalAsync(g):b.$apply(g))})}}}}}],Pb,eh=/(\s+|^)default(\s+|$)/;Gc.prototype={getOption:function(a){return this.$$options[a]},createChild:function(a){var b=
-!1;a=S({},a);q(a,function(d,c){"$inherit"===d?"*"===c?b=!0:(a[c]=this.$$options[c],"updateOn"===c&&(a.updateOnDefault=this.$$options.updateOnDefault)):"updateOn"===c&&(a.updateOnDefault=!1,a[c]=T(d.replace(eh,function(){a.updateOnDefault=!0;return" "})))},this);b&&(delete a["*"],ee(a,this.$$options));ee(a,Pb.$$options);return new Gc(a)}};Pb=new Gc({updateOn:"",updateOnDefault:!0,debounce:0,getterSetter:!1,allowInvalid:!1,timezone:null});var lf=function(){function a(a,d){this.$$attrs=a;this.$$scope=
-d}a.$inject=["$attrs","$scope"];a.prototype={$onInit:function(){var a=this.parentCtrl?this.parentCtrl.$options:Pb,d=this.$$scope.$eval(this.$$attrs.ngModelOptions);this.$options=a.createChild(d)}};return{restrict:"A",priority:10,require:{parentCtrl:"?^^ngModelOptions"},bindToController:!0,controller:a}},Xe=Qa({terminal:!0,priority:1E3}),fh=L("ngOptions"),gh=/^\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]+?))?$/,
-ef=["$compile","$document","$parse",function(a,b,d){function c(a,b,c){function e(a,b,c,d,f){this.selectValue=a;this.viewValue=b;this.label=c;this.group=d;this.disabled=f}function f(a){var b;if(!q&&qa(a))b=a;else{b=[];for(var c in a)a.hasOwnProperty(c)&&"$"!==c.charAt(0)&&b.push(c)}return b}var n=a.match(gh);if(!n)throw fh("iexp",a,xa(b));var p=n[5]||n[7],q=n[6];a=/ as /.test(n[0])&&n[1];var s=n[9];b=d(n[2]?n[1]:p);var v=a&&d(a)||b,t=s&&d(s),u=s?function(a,b){return t(c,b)}:function(a){return Pa(a)},
-w=function(a,b){return u(a,G(a,b))},A=d(n[2]||n[1]),x=d(n[3]||""),I=d(n[4]||""),K=d(n[8]),E={},G=q?function(a,b){E[q]=b;E[p]=a;return E}:function(a){E[p]=a;return E};return{trackBy:s,getTrackByValue:w,getWatchables:d(K,function(a){var b=[];a=a||[];for(var d=f(a),e=d.length,g=0;g<e;g++){var h=a===d?g:d[g],l=a[h],h=G(l,h),l=u(l,h);b.push(l);if(n[2]||n[1])l=A(c,h),b.push(l);n[4]&&(h=I(c,h),b.push(h))}return b}),getOptions:function(){for(var a=[],b={},d=K(c)||[],g=f(d),h=g.length,n=0;n<h;n++){var p=d===
-g?n:g[n],q=G(d[p],p),r=v(c,q),p=u(r,q),t=A(c,q),E=x(c,q),q=I(c,q),r=new e(p,r,t,E,q);a.push(r);b[p]=r}return{items:a,selectValueMap:b,getOptionFromViewValue:function(a){return b[w(a)]},getViewValueFromOption:function(a){return s?ra(a.viewValue):a.viewValue}}}}}var e=x.document.createElement("option"),f=x.document.createElement("optgroup");return{restrict:"A",terminal:!0,require:["select","ngModel"],link:{pre:function(a,b,c,d){d[0].registerOption=z},post:function(d,h,k,l){function m(a){var b=(a=A.getOptionFromViewValue(a))&&
-a.element;b&&!b.selected&&(b.selected=!0);return a}function n(a,b){a.element=b;b.disabled=a.disabled;a.label!==b.label&&(b.label=a.label,b.textContent=a.label);b.value=a.selectValue}function p(){var a=A&&r.readValue();if(A)for(var b=A.items.length-1;0<=b;b--){var c=A.items[b];u(c.group)?Eb(c.element.parentNode):Eb(c.element)}A=z.getOptions();var d={};x&&h.prepend(r.emptyOption);A.items.forEach(function(a){var b;if(u(a.group)){b=d[a.group];b||(b=f.cloneNode(!1),I.appendChild(b),b.label=null===a.group?
-"null":a.group,d[a.group]=b);var c=e.cloneNode(!1)}else b=I,c=e.cloneNode(!1);b.appendChild(c);n(a,c)});h[0].appendChild(I);s.$render();s.$isEmpty(a)||(b=r.readValue(),(z.trackBy||v?sa(a,b):a===b)||(s.$setViewValue(b),s.$render()))}var r=l[0],s=l[1],v=k.multiple;l=0;for(var t=h.children(),w=t.length;l<w;l++)if(""===t[l].value){r.hasEmptyOption=!0;r.emptyOption=t.eq(l);break}var x=!!r.emptyOption;B(e.cloneNode(!1)).val("?");var A,z=c(k.ngOptions,h,d),I=b[0].createDocumentFragment();r.generateUnknownOptionValue=
-function(a){return"?"};v?(r.writeValue=function(a){var b=a&&a.map(m)||[];A.items.forEach(function(a){a.element.selected&&-1===Array.prototype.indexOf.call(b,a)&&(a.element.selected=!1)})},r.readValue=function(){var a=h.val()||[],b=[];q(a,function(a){(a=A.selectValueMap[a])&&!a.disabled&&b.push(A.getViewValueFromOption(a))});return b},z.trackBy&&d.$watchCollection(function(){if(H(s.$viewValue))return s.$viewValue.map(function(a){return z.getTrackByValue(a)})},function(){s.$render()})):(r.writeValue=
-function(a){var b=A.selectValueMap[h.val()],c=A.getOptionFromViewValue(a);b&&b.element.removeAttribute("selected");c?(h[0].value!==c.selectValue&&(r.removeUnknownOption(),r.unselectEmptyOption(),h[0].value=c.selectValue,c.element.selected=!0),c.element.setAttribute("selected","selected")):x?r.selectEmptyOption():r.unknownOption.parent().length?r.updateUnknownOption(a):r.renderUnknownOption(a)},r.readValue=function(){var a=A.selectValueMap[h.val()];return a&&!a.disabled?(r.unselectEmptyOption(),r.removeUnknownOption(),
-A.getViewValueFromOption(a)):null},z.trackBy&&d.$watch(function(){return z.getTrackByValue(s.$viewValue)},function(){s.$render()}));x&&(r.emptyOption.remove(),a(r.emptyOption)(d),8===r.emptyOption[0].nodeType?(r.hasEmptyOption=!1,r.registerOption=function(a,b){""===b.val()&&(r.hasEmptyOption=!0,r.emptyOption=b,r.emptyOption.removeClass("ng-scope"),s.$render(),b.on("$destroy",function(){r.hasEmptyOption=!1;r.emptyOption=void 0}))}):r.emptyOption.removeClass("ng-scope"));h.empty();p();d.$watchCollection(z.getWatchables,
-p)}}}}],Ye=["$locale","$interpolate","$log",function(a,b,d){var c=/{}/g,e=/^when(Minus)?(.+)$/;return{link:function(f,g,h){function k(a){g.text(a||"")}var l=h.count,m=h.$attr.when&&g.attr(h.$attr.when),n=h.offset||0,p=f.$eval(m)||{},r={},s=b.startSymbol(),v=b.endSymbol(),t=s+l+"-"+n+v,u=ea.noop,x;q(h,function(a,b){var c=e.exec(b);c&&(c=(c[1]?"-":"")+Q(c[2]),p[c]=g.attr(h.$attr[b]))});q(p,function(a,d){r[d]=b(a.replace(c,t))});f.$watch(l,function(b){var c=parseFloat(b),e=da(c);e||c in p||(c=a.pluralCat(c-
-n));c===x||e&&da(x)||(u(),e=r[c],w(e)?(null!=b&&d.debug("ngPluralize: no rule defined for '"+c+"' in "+m),u=z,k()):u=f.$watch(e,k),x=c)})}}}],Ze=["$parse","$animate","$compile",function(a,b,d){var c=L("ngRepeat"),e=function(a,b,c,d,e,m,n){a[c]=d;e&&(a[e]=m);a.$index=b;a.$first=0===b;a.$last=b===n-1;a.$middle=!(a.$first||a.$last);a.$odd=!(a.$even=0===(b&1))};return{restrict:"A",multiElement:!0,transclude:"element",priority:1E3,terminal:!0,$$tlb:!0,compile:function(f,g){var h=g.ngRepeat,k=d.$$createComment("end ngRepeat",
-h),l=h.match(/^\s*([\s\S]+?)\s+in\s+([\s\S]+?)(?:\s+as\s+([\s\S]+?))?(?:\s+track\s+by\s+([\s\S]+?))?\s*$/);if(!l)throw c("iexp",h);var m=l[1],n=l[2],p=l[3],r=l[4],l=m.match(/^(?:(\s*[$\w]+)|\(\s*([$\w]+)\s*,\s*([$\w]+)\s*\))$/);if(!l)throw c("iidexp",m);var s=l[3]||l[1],v=l[2];if(p&&(!/^[$a-zA-Z_][$a-zA-Z0-9_]*$/.test(p)||/^(null|undefined|this|\$index|\$first|\$middle|\$last|\$even|\$odd|\$parent|\$root|\$id)$/.test(p)))throw c("badident",p);var t,u,w,x,z={$id:Pa};r?t=a(r):(w=function(a,b){return Pa(b)},
-x=function(a){return a});return function(a,d,f,g,l){t&&(u=function(b,c,d){v&&(z[v]=b);z[s]=c;z.$index=d;return t(a,z)});var m=V();a.$watchCollection(n,function(f){var g,n,r=d[0],t,z=V(),B,D,F,C,G,E,H;p&&(a[p]=f);if(qa(f))G=f,n=u||w;else for(H in n=u||x,G=[],f)ua.call(f,H)&&"$"!==H.charAt(0)&&G.push(H);B=G.length;H=Array(B);for(g=0;g<B;g++)if(D=f===G?g:G[g],F=f[D],C=n(D,F,g),m[C])E=m[C],delete m[C],z[C]=E,H[g]=E;else{if(z[C])throw q(H,function(a){a&&a.scope&&(m[a.id]=a)}),c("dupes",h,C,F);H[g]={id:C,
-scope:void 0,clone:void 0};z[C]=!0}for(t in m){E=m[t];C=tb(E.clone);b.leave(C);if(C[0].parentNode)for(g=0,n=C.length;g<n;g++)C[g].$$NG_REMOVED=!0;E.scope.$destroy()}for(g=0;g<B;g++)if(D=f===G?g:G[g],F=f[D],E=H[g],E.scope){t=r;do t=t.nextSibling;while(t&&t.$$NG_REMOVED);E.clone[0]!==t&&b.move(tb(E.clone),null,r);r=E.clone[E.clone.length-1];e(E.scope,g,s,F,v,D,B)}else l(function(a,c){E.scope=c;var d=k.cloneNode(!1);a[a.length++]=d;b.enter(a,null,r);r=d;E.clone=a;z[E.id]=E;e(E.scope,g,s,F,v,D,B)});m=
-z})}}}}],$e=["$animate",function(a){return{restrict:"A",multiElement:!0,link:function(b,d,c){b.$watch(c.ngShow,function(b){a[b?"removeClass":"addClass"](d,"ng-hide",{tempClasses:"ng-hide-animate"})})}}}],Te=["$animate",function(a){return{restrict:"A",multiElement:!0,link:function(b,d,c){b.$watch(c.ngHide,function(b){a[b?"addClass":"removeClass"](d,"ng-hide",{tempClasses:"ng-hide-animate"})})}}}],af=Qa(function(a,b,d){a.$watch(d.ngStyle,function(a,d){d&&a!==d&&q(d,function(a,c){b.css(c,"")});a&&b.css(a)},
-!0)}),bf=["$animate","$compile",function(a,b){return{require:"ngSwitch",controller:["$scope",function(){this.cases={}}],link:function(d,c,e,f){var g=[],h=[],k=[],l=[],m=function(a,b){return function(c){!1!==c&&a.splice(b,1)}};d.$watch(e.ngSwitch||e.on,function(c){for(var d,e;k.length;)a.cancel(k.pop());d=0;for(e=l.length;d<e;++d){var s=tb(h[d].clone);l[d].$destroy();(k[d]=a.leave(s)).done(m(k,d))}h.length=0;l.length=0;(g=f.cases["!"+c]||f.cases["?"])&&q(g,function(c){c.transclude(function(d,e){l.push(e);
-var f=c.element;d[d.length++]=b.$$createComment("end ngSwitchWhen");h.push({clone:d});a.enter(d,f.parent(),f)})})})}}}],cf=Qa({transclude:"element",priority:1200,require:"^ngSwitch",multiElement:!0,link:function(a,b,d,c,e){a=d.ngSwitchWhen.split(d.ngSwitchWhenSeparator).sort().filter(function(a,b,c){return c[b-1]!==a});q(a,function(a){c.cases["!"+a]=c.cases["!"+a]||[];c.cases["!"+a].push({transclude:e,element:b})})}}),df=Qa({transclude:"element",priority:1200,require:"^ngSwitch",multiElement:!0,link:function(a,
-b,d,c,e){c.cases["?"]=c.cases["?"]||[];c.cases["?"].push({transclude:e,element:b})}}),hh=L("ngTransclude"),ff=["$compile",function(a){return{restrict:"EAC",terminal:!0,compile:function(b){var d=a(b.contents());b.empty();return function(a,b,f,g,h){function k(){d(a,function(a){b.append(a)})}if(!h)throw hh("orphan",xa(b));f.ngTransclude===f.$attr.ngTransclude&&(f.ngTransclude="");f=f.ngTransclude||f.ngTranscludeSlot;h(function(a,c){var d;if(d=a.length)a:{d=0;for(var f=a.length;d<f;d++){var g=a[d];if(g.nodeType!==
-Ia||g.nodeValue.trim()){d=!0;break a}}d=void 0}d?b.append(a):(k(),c.$destroy())},null,f);f&&!h.isSlotFilled(f)&&k()}}}}],He=["$templateCache",function(a){return{restrict:"E",terminal:!0,compile:function(b,d){"text/ng-template"===d.type&&a.put(d.id,b[0].text)}}}],ih={$setViewValue:z,$render:z},jh=["$element","$scope",function(a,b){function d(){g||(g=!0,b.$$postDigest(function(){g=!1;e.ngModelCtrl.$render()}))}function c(a){h||(h=!0,b.$$postDigest(function(){b.$$destroyed||(h=!1,e.ngModelCtrl.$setViewValue(e.readValue()),
-a&&e.ngModelCtrl.$render())}))}var e=this,f=new Gb;e.selectValueMap={};e.ngModelCtrl=ih;e.multiple=!1;e.unknownOption=B(x.document.createElement("option"));e.hasEmptyOption=!1;e.emptyOption=void 0;e.renderUnknownOption=function(b){b=e.generateUnknownOptionValue(b);e.unknownOption.val(b);a.prepend(e.unknownOption);Ta(e.unknownOption,!0);a.val(b)};e.updateUnknownOption=function(b){b=e.generateUnknownOptionValue(b);e.unknownOption.val(b);Ta(e.unknownOption,!0);a.val(b)};e.generateUnknownOptionValue=
-function(a){return"? "+Pa(a)+" ?"};e.removeUnknownOption=function(){e.unknownOption.parent()&&e.unknownOption.remove()};e.selectEmptyOption=function(){e.emptyOption&&(a.val(""),Ta(e.emptyOption,!0))};e.unselectEmptyOption=function(){e.hasEmptyOption&&e.emptyOption.removeAttr("selected")};b.$on("$destroy",function(){e.renderUnknownOption=z});e.readValue=function(){var b=a.val(),b=b in e.selectValueMap?e.selectValueMap[b]:b;return e.hasOption(b)?b:null};e.writeValue=function(b){var c=a[0].options[a[0].selectedIndex];
-c&&Ta(B(c),!1);e.hasOption(b)?(e.removeUnknownOption(),c=Pa(b),a.val(c in e.selectValueMap?c:b),Ta(B(a[0].options[a[0].selectedIndex]),!0)):null==b&&e.emptyOption?(e.removeUnknownOption(),e.selectEmptyOption()):e.unknownOption.parent().length?e.updateUnknownOption(b):e.renderUnknownOption(b)};e.addOption=function(a,b){if(8!==b[0].nodeType){Ka(a,'"option value"');""===a&&(e.hasEmptyOption=!0,e.emptyOption=b);var c=f.get(a)||0;f.set(a,c+1);d()}};e.removeOption=function(a){var b=f.get(a);b&&(1===b?(f.delete(a),
-""===a&&(e.hasEmptyOption=!1,e.emptyOption=void 0)):f.set(a,b-1))};e.hasOption=function(a){return!!f.get(a)};var g=!1,h=!1;e.registerOption=function(a,b,f,g,h){if(f.$attr.ngValue){var q,s=NaN;f.$observe("value",function(a){var d,f=b.prop("selected");u(s)&&(e.removeOption(q),delete e.selectValueMap[s],d=!0);s=Pa(a);q=a;e.selectValueMap[s]=a;e.addOption(a,b);b.attr("value",s);d&&f&&c()})}else g?f.$observe("value",function(a){e.readValue();var d,f=b.prop("selected");u(q)&&(e.removeOption(q),d=!0);q=
-a;e.addOption(a,b);d&&f&&c()}):h?a.$watch(h,function(a,d){f.$set("value",a);var g=b.prop("selected");d!==a&&e.removeOption(d);e.addOption(a,b);d&&g&&c()}):e.addOption(f.value,b);f.$observe("disabled",function(a){if("true"===a||a&&b.prop("selected"))e.multiple?c(!0):(e.ngModelCtrl.$setViewValue(null),e.ngModelCtrl.$render())});b.on("$destroy",function(){var a=e.readValue(),b=f.value;e.removeOption(b);d();(e.multiple&&a&&-1!==a.indexOf(b)||a===b)&&c(!0)})}}],Ie=function(){return{restrict:"E",require:["select",
-"?ngModel"],controller:jh,priority:1,link:{pre:function(a,b,d,c){var e=c[0],f=c[1];if(f){if(e.ngModelCtrl=f,b.on("change",function(){e.removeUnknownOption();a.$apply(function(){f.$setViewValue(e.readValue())})}),d.multiple){e.multiple=!0;e.readValue=function(){var a=[];q(b.find("option"),function(b){b.selected&&!b.disabled&&(b=b.value,a.push(b in e.selectValueMap?e.selectValueMap[b]:b))});return a};e.writeValue=function(a){q(b.find("option"),function(b){var c=!!a&&(-1!==Array.prototype.indexOf.call(a,
-b.value)||-1!==Array.prototype.indexOf.call(a,e.selectValueMap[b.value]));c!==b.selected&&Ta(B(b),c)})};var g,h=NaN;a.$watch(function(){h!==f.$viewValue||sa(g,f.$viewValue)||(g=pa(f.$viewValue),f.$render());h=f.$viewValue});f.$isEmpty=function(a){return!a||0===a.length}}}else e.registerOption=z},post:function(a,b,d,c){var e=c[1];if(e){var f=c[0];e.$render=function(){f.writeValue(e.$viewValue)}}}}}},Je=["$interpolate",function(a){return{restrict:"E",priority:100,compile:function(b,d){var c,e;u(d.ngValue)||
-(u(d.value)?c=a(d.value,!0):(e=a(b.text(),!0))||d.$set("value",b.text()));return function(a,b,d){var k=b.parent();(k=k.data("$selectController")||k.parent().data("$selectController"))&&k.registerOption(a,b,d,c,e)}}}}],Zc=function(){return{restrict:"A",require:"?ngModel",link:function(a,b,d,c){c&&(d.required=!0,c.$validators.required=function(a,b){return!d.required||!c.$isEmpty(b)},d.$observe("required",function(){c.$validate()}))}}},Yc=function(){return{restrict:"A",require:"?ngModel",link:function(a,
-b,d,c){if(c){var e,f=d.ngPattern||d.pattern;d.$observe("pattern",function(a){F(a)&&0<a.length&&(a=new RegExp("^"+a+"$"));if(a&&!a.test)throw L("ngPattern")("noregexp",f,a,xa(b));e=a||void 0;c.$validate()});c.$validators.pattern=function(a,b){return c.$isEmpty(b)||w(e)||e.test(b)}}}}},ad=function(){return{restrict:"A",require:"?ngModel",link:function(a,b,d,c){if(c){var e=-1;d.$observe("maxlength",function(a){a=Z(a);e=da(a)?-1:a;c.$validate()});c.$validators.maxlength=function(a,b){return 0>e||c.$isEmpty(b)||
-b.length<=e}}}}},$c=function(){return{restrict:"A",require:"?ngModel",link:function(a,b,d,c){if(c){var e=0;d.$observe("minlength",function(a){e=Z(a)||0;c.$validate()});c.$validators.minlength=function(a,b){return c.$isEmpty(b)||b.length>=e}}}}};x.angular.bootstrap?x.console&&console.log("WARNING: Tried to load angular more than once."):(ze(),Ce(ea),ea.module("ngLocale",[],["$provide",function(a){function b(a){a+="";var b=a.indexOf(".");return-1==b?0:a.length-b-1}a.value("$locale",{DATETIME_FORMATS:{AMPMS:["AM",
-"PM"],DAY:"Sunday Monday Tuesday Wednesday Thursday Friday Saturday".split(" "),ERANAMES:["Before Christ","Anno Domini"],ERAS:["BC","AD"],FIRSTDAYOFWEEK:6,MONTH:"January February March April May June July August September October November December".split(" "),SHORTDAY:"Sun Mon Tue Wed Thu Fri Sat".split(" "),SHORTMONTH:"Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec".split(" "),STANDALONEMONTH:"January February March April May June July August September October November December".split(" "),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",localeID:"en_US",pluralCat:function(a,
-c){var e=a|0,f=c;void 0===f&&(f=Math.min(b(a),3));Math.pow(10,f);return 1==e&&0==f?"one":"other"}})}]),B(function(){ue(x.document,Sc)}))})(window);!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>');
-//# sourceMappingURL=angular.min.js.map
\ No newline at end of file
diff --git a/app/code/Magento/Messaging/view/frontend/web/js/chat.js b/app/code/Magento/Messaging/view/frontend/web/js/chat.js
index 9f5c69ae54b..c03fcb9e533 100644
--- a/app/code/Magento/Messaging/view/frontend/web/js/chat.js
+++ b/app/code/Magento/Messaging/view/frontend/web/js/chat.js
@@ -1,21 +1,5 @@
-var chatlistbox = angular.module('chatlistbox',[]);
-		chatlistbox.controller('controller', ['$scope', function ($scope) {
-				$scope.chatrooms = [];
-				var room = new Object();
-				room.username = "Dewita Sonya";
-				room.lastmessage = "iya itu barangnya bagus banget, udah pake lama tetep awet";
-				$scope.chatrooms.push(room);
-				var room2 = new Object();
-				room2.username = "Mico mico";
-				room2.lastmessage = "micomicomico barangnya oke punya, ukuran juga pas";
-				$scope.chatrooms.push(room2);
-				var room3 = new Object();
-				room3.username = "Albertus Djauhari";
-				room3.lastmessage = "jangan dibel itumah barang palsu, kualitasnya jelek ";
-				$scope.chatrooms.push(room3);
-				var room4 = new Object();
-				room4.username = "William";
-				room4.lastmessage = "kskskso sajsa sakjsk as akjka dkjs kfasjfssak fjsaf";
-				$scope.chatrooms.push(room4);
-	
-	  }]);
\ No newline at end of file
+require(['jquery'],function($){
+    $(document).ready(function() {
+    	alert('hai');
+    });
+});
\ No newline at end of file
diff --git a/app/code/Magento/Messaging/view/frontend/web/js/firebase.js b/app/code/Magento/Messaging/view/frontend/web/js/firebase.js
new file mode 100644
index 00000000000..de5fdc7445c
--- /dev/null
+++ b/app/code/Magento/Messaging/view/frontend/web/js/firebase.js
@@ -0,0 +1,9 @@
+const config = {
+    projectId: "magentochat",
+    apiKey: "AIzaSyAuWbHi2A1CljLjLdXxxI0sFY0jqPWxZHs",
+    authDomain: "magentochat.firebaseapp.com",
+    databaseURL: "https://magentochat.firebaseio.com/",
+    storageBucket: ""
+};
+firebase.initializeApp(config);
+
diff --git a/app/code/Magento/Messaging/view/frontend/web/js/firebaselib.js b/app/code/Magento/Messaging/view/frontend/web/js/firebaselib.js
new file mode 100644
index 00000000000..0a35cc70214
--- /dev/null
+++ b/app/code/Magento/Messaging/view/frontend/web/js/firebaselib.js
@@ -0,0 +1,20 @@
+/*!
+ * @license Firebase v4.6.2
+ * Build: rev-cbb07d3
+ * Terms: https://firebase.google.com/terms/
+ */
+var firebase=function(){var e=void 0===e?self:e;return function(t){function r(e){if(o[e])return o[e].exports;var n=o[e]={i:e,l:!1,exports:{}};return t[e].call(n.exports,n,n.exports,r),n.l=!0,n.exports}var n=e.webpackJsonpFirebase;e.webpackJsonpFirebase=function(e,o,a){for(var c,s,u,f=0,l=[];f<e.length;f++)s=e[f],i[s]&&l.push(i[s][0]),i[s]=0;for(c in o)Object.prototype.hasOwnProperty.call(o,c)&&(t[c]=o[c]);for(n&&n(e,o,a);l.length;)l.shift()();if(a)for(f=0;f<a.length;f++)u=r(r.s=a[f]);return u};var o={},i={5:0};return r.e=function(e){function t(){c.onerror=c.onload=null,clearTimeout(s);var t=i[e];0!==t&&(t&&t[1](Error("Loading chunk "+e+" failed.")),i[e]=void 0)}var n=i[e];if(0===n)return new Promise(function(e){e()});if(n)return n[2];var o=new Promise(function(t,r){n=i[e]=[t,r]});n[2]=o;var a=document.getElementsByTagName("head")[0],c=document.createElement("script");c.type="text/javascript",c.charset="utf-8",c.async=!0,c.timeout=12e4,r.nc&&c.setAttribute("nonce",r.nc),c.src=r.p+""+e+".js";var s=setTimeout(t,12e4);return c.onerror=c.onload=t,a.appendChild(c),o},r.m=t,r.c=o,r.d=function(e,t,n){r.o(e,t)||Object.defineProperty(e,t,{configurable:!1,enumerable:!0,get:n})},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p="",r.oe=function(e){throw console.error(e),e},r(r.s=57)}([function(e,t,r){"use strict";function n(e){for(var r in e)t.hasOwnProperty(r)||(t[r]=e[r])}Object.defineProperty(t,"__esModule",{value:!0}),n(r(28)),n(r(29)),n(r(20)),n(r(65)),n(r(66)),n(r(67)),n(r(68)),n(r(30)),n(r(69)),n(r(31)),n(r(70)),n(r(71)),n(r(73)),n(r(74)),n(r(75))},,,,,,function(e,t,r){"use strict";function n(){function e(e){h(d[e],"delete"),delete d[e]}function t(e){return e=e||c,a(d,e)||o("no-app",{name:e}),d[e]}function r(e,t){void 0===t?t=c:"string"==typeof t&&""!==t||o("bad-app-name",{name:t+""}),a(d,t)&&o("duplicate-app",{name:t});var r=new u(e,t,b);return d[t]=r,h(r,"create"),r}function s(){return Object.keys(d).map(function(e){return d[e]})}function f(e,r,n,a,c){v[e]&&o("duplicate-service",{name:e}),v[e]=r,a&&(y[e]=a,s().forEach(function(e){a("create",e)}));var f=function(r){return void 0===r&&(r=t()),"function"!=typeof r[e]&&o("invalid-app-argument",{name:e}),r[e]()};return void 0!==n&&Object(i.deepExtend)(f,n),b[e]=f,u.prototype[e]=function(){for(var t=[],r=0;r<arguments.length;r++)t[r]=arguments[r];return this.t.bind(this,e).apply(this,c?t:[])},f}function l(e){Object(i.deepExtend)(b,e)}function h(e,t){Object.keys(v).forEach(function(r){var n=p(e,r);null!==n&&y[n]&&y[n](t,e)})}function p(e,t){if("serverAuth"===t)return null;var r=t;return e.options,r}var d={},v={},y={},b={__esModule:!0,initializeApp:r,app:t,apps:null,Promise:Promise,SDK_VERSION:"4.6.1",INTERNAL:{registerService:f,createFirebaseNamespace:n,extendNamespace:l,createSubscribe:i.createSubscribe,ErrorFactory:i.ErrorFactory,removeApp:e,factories:v,useAsService:p,Promise:Promise,deepExtend:i.deepExtend}};return Object(i.patchProperty)(b,"default",b),Object.defineProperty(b,"apps",{get:s}),Object(i.patchProperty)(t,"App",u),b}function o(e,t){throw l.create(e,t)}Object.defineProperty(t,"__esModule",{value:!0});var i=r(0),a=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},c="[DEFAULT]",s=[],u=function(){function e(e,t,r){this.r=r,this.a=!1,this.u={},this.f=t,this.h=Object(i.deepCopy)(e),this.INTERNAL={getUid:function(){return null},getToken:function(){return Promise.resolve(null)},addAuthTokenListener:function(e){s.push(e),setTimeout(function(){return e(null)},0)},removeAuthTokenListener:function(e){s=s.filter(function(t){return t!==e})}}}return Object.defineProperty(e.prototype,"name",{get:function(){return this.v(),this.f},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"options",{get:function(){return this.v(),this.h},enumerable:!0,configurable:!0}),e.prototype.delete=function(){var e=this;return new Promise(function(t){e.v(),t()}).then(function(){e.r.INTERNAL.removeApp(e.f);var t=[];return Object.keys(e.u).forEach(function(r){Object.keys(e.u[r]).forEach(function(n){t.push(e.u[r][n])})}),Promise.all(t.map(function(e){return e.INTERNAL.delete()}))}).then(function(){e.a=!0,e.u={}})},e.prototype.t=function(e,t){if(void 0===t&&(t=c),this.v(),this.u[e]||(this.u[e]={}),!this.u[e][t]){var r=t!==c?t:void 0,n=this.r.INTERNAL.factories[e](this,this.extendApp.bind(this),r);this.u[e][t]=n}return this.u[e][t]},e.prototype.extendApp=function(e){var t=this;Object(i.deepExtend)(this,e),e.INTERNAL&&e.INTERNAL.addAuthTokenListener&&(s.forEach(function(e){t.INTERNAL.addAuthTokenListener(e)}),s=[])},e.prototype.v=function(){this.a&&o("app-deleted",{name:this.f})},e}();u.prototype.name&&u.prototype.options||u.prototype.delete||console.log("dc");var f={"no-app":"No Firebase App '{$name}' has been created - call Firebase App.initializeApp()","bad-app-name":"Illegal App name: '{$name}","duplicate-app":"Firebase App named '{$name}' already exists","app-deleted":"Firebase App named '{$name}' already deleted","duplicate-service":"Firebase service named '{$name}' already registered","sa-not-supported":"Initializing the Firebase SDK with a service account is only allowed in a Node.js environment. On client devices, you should instead initialize the SDK with an api key and auth domain","invalid-app-argument":"firebase.{$name}() takes either no argument or a Firebase App instance."},l=new i.ErrorFactory("app","Firebase",f);r.d(t,"firebase",function(){return h});var h=n();t.default=h},,,,,,,,,,,,,function(t,r){var n;n=function(){return this}();try{n=n||Function("return this")()||(0,eval)("this")}catch(t){"object"==typeof e&&(n=e)}t.exports=n},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.CONSTANTS={NODE_CLIENT:!1,NODE_ADMIN:!1,SDK_VERSION:"${JSCORE_VERSION}"}},,,,,,,function(e,t){function r(){throw Error("setTimeout has not been defined")}function n(){throw Error("clearTimeout has not been defined")}function o(e){if(f===setTimeout)return setTimeout(e,0);if((f===r||!f)&&setTimeout)return f=setTimeout,setTimeout(e,0);try{return f(e,0)}catch(t){try{return f.call(null,e,0)}catch(t){return f.call(this,e,0)}}}function i(e){if(l===clearTimeout)return clearTimeout(e);if((l===n||!l)&&clearTimeout)return l=clearTimeout,clearTimeout(e);try{return l(e)}catch(t){try{return l.call(null,e)}catch(t){return l.call(this,e)}}}function a(){v&&p&&(v=!1,p.length?d=p.concat(d):y=-1,d.length&&c())}function c(){if(!v){var e=o(a);v=!0;for(var t=d.length;t;){for(p=d,d=[];++y<t;)p&&p[y].run();y=-1,t=d.length}p=null,v=!1,i(e)}}function s(e,t){this.fun=e,this.array=t}function u(){}var f,l,h=e.exports={};!function(){try{f="function"==typeof setTimeout?setTimeout:r}catch(e){f=r}try{l="function"==typeof clearTimeout?clearTimeout:n}catch(e){l=n}}();var p,d=[],v=!1,y=-1;h.nextTick=function(e){var t=Array(arguments.length-1);if(arguments.length>1)for(var r=1;r<arguments.length;r++)t[r-1]=arguments[r];d.push(new s(e,t)),1!==d.length||v||o(c)},s.prototype.run=function(){this.fun.apply(null,this.array)},h.title="browser",h.browser=!0,h.env={},h.argv=[],h.version="",h.versions={},h.on=u,h.addListener=u,h.once=u,h.off=u,h.removeListener=u,h.removeAllListeners=u,h.emit=u,h.prependListener=u,h.prependOnceListener=u,h.listeners=function(e){return[]},h.binding=function(e){throw Error("process.binding is not supported")},h.cwd=function(){return"/"},h.chdir=function(e){throw Error("process.chdir is not supported")},h.umask=function(){return 0}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=r(20);t.assert=function(e,r){if(!e)throw t.assertionError(r)},t.assertionError=function(e){return Error("Firebase Database ("+n.CONSTANTS.SDK_VERSION+") INTERNAL ASSERT FAILED: "+e)}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=function(e){for(var t=[],r=0,n=0;n<e.length;n++){for(var o=e.charCodeAt(n);o>255;)t[r++]=255&o,o>>=8;t[r++]=o}return t},o=function(e){if(e.length<8192)return String.fromCharCode.apply(null,e);for(var t="",r=0;r<e.length;r+=8192){var n=e.slice(r,r+8192);t+=String.fromCharCode.apply(null,n)}return t};t.base64={y:null,b:null,_:null,g:null,ENCODED_VALS_BASE:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",get ENCODED_VALS(){return this.ENCODED_VALS_BASE+"+/="},get ENCODED_VALS_WEBSAFE(){return this.ENCODED_VALS_BASE+"-_."},HAS_NATIVE_SUPPORT:"function"==typeof atob,encodeByteArray:function(e,t){if(!Array.isArray(e))throw Error("encodeByteArray takes an array as a parameter");this.O();for(var r=t?this._:this.y,n=[],o=0;o<e.length;o+=3){var i=e[o],a=o+1<e.length,c=a?e[o+1]:0,s=o+2<e.length,u=s?e[o+2]:0,f=i>>2,l=(3&i)<<4|c>>4,h=(15&c)<<2|u>>6,p=63&u;s||(p=64,a||(h=64)),n.push(r[f],r[l],r[h],r[p])}return n.join("")},encodeString:function(e,t){return this.HAS_NATIVE_SUPPORT&&!t?btoa(e):this.encodeByteArray(n(e),t)},decodeString:function(e,t){return this.HAS_NATIVE_SUPPORT&&!t?atob(e):o(this.decodeStringToByteArray(e,t))},decodeStringToByteArray:function(e,t){this.O();for(var r=t?this.g:this.b,n=[],o=0;o<e.length;){var i=r[e.charAt(o++)],a=o<e.length,c=a?r[e.charAt(o)]:0;++o;var s=o<e.length,u=s?r[e.charAt(o)]:64;++o;var f=o<e.length,l=f?r[e.charAt(o)]:64;if(++o,null==i||null==c||null==u||null==l)throw Error();var h=i<<2|c>>4;if(n.push(h),64!=u){var p=c<<4&240|u>>2;if(n.push(p),64!=l){var d=u<<6&192|l;n.push(d)}}}return n},O:function(){if(!this.y){this.y={},this.b={},this._={},this.g={};for(var e=0;e<this.ENCODED_VALS.length;e++)this.y[e]=this.ENCODED_VALS.charAt(e),this.b[this.y[e]]=e,this._[e]=this.ENCODED_VALS_WEBSAFE.charAt(e),this.g[this._[e]]=e,e>=this.ENCODED_VALS_BASE.length&&(this.b[this.ENCODED_VALS_WEBSAFE.charAt(e)]=e,this.g[this.ENCODED_VALS.charAt(e)]=e)}}},t.base64Encode=function(e){var r=n(e);return t.base64.encodeByteArray(r,!0)},t.base64Decode=function(e){try{return t.base64.decodeString(e,!0)}catch(e){console.error("base64Decode failed: ",e)}return null}},function(e,t,r){"use strict";function n(e){return JSON.parse(e)}function o(e){return JSON.stringify(e)}Object.defineProperty(t,"__esModule",{value:!0}),t.jsonEval=n,t.stringify=o},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.contains=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.safeGet=function(e,t){if(Object.prototype.hasOwnProperty.call(e,t))return e[t]},t.forEach=function(e,t){for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t(r,e[r])},t.extend=function(e,r){return t.forEach(r,function(t,r){e[t]=r}),e},t.clone=function(e){return t.extend({},e)},t.isNonNullObject=function(e){return"object"==typeof e&&null!==e},t.isEmpty=function(e){for(var t in e)return!1;return!0},t.getCount=function(e){var t=0;for(var r in e)t++;return t},t.map=function(e,t,r){var n={};for(var o in e)n[o]=t.call(r,e[o],o,e);return n},t.findKey=function(e,t,r){for(var n in e)if(t.call(r,e[n],n,e))return n},t.findValue=function(e,r,n){var o=t.findKey(e,r,n);return o&&e[o]},t.getAnyKey=function(e){for(var t in e)return t},t.getValues=function(e){var t=[],r=0;for(var n in e)t[r++]=e[n];return t},t.every=function(e,t){for(var r in e)if(Object.prototype.hasOwnProperty.call(e,r)&&!t(r,e[r]))return!1;return!0}},,,,,,,,,,,,,,,,,,,,,,,,,,function(e,t,r){r(58),e.exports=r(6).default},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=r(59),o=(r.n(n),r(63)),i=(r.n(o),r(64));r.n(i)},function(t,r,n){(function(t){var r=function(){if(void 0!==t)return t;if(void 0!==e)return e;if("undefined"!=typeof self)return self;throw Error("unable to locate global object")}();"undefined"==typeof Promise&&(r.Promise=Promise=n(60))}).call(r,n(19))},function(e,t,r){(function(t){!function(r){function n(){}function o(e,t){return function(){e.apply(t,arguments)}}function i(e){if("object"!=typeof this)throw new TypeError("Promises must be constructed via new");if("function"!=typeof e)throw new TypeError("not a function");this._state=0,this._handled=!1,this._value=void 0,this.T=[],l(e,this)}function a(e,t){for(;3===e._state;)e=e._value;if(0===e._state)return void e.T.push(t);e._handled=!0,i.A(function(){var r=1===e._state?t.onFulfilled:t.onRejected;if(null===r)return void(1===e._state?c:s)(t.promise,e._value);var n;try{n=r(e._value)}catch(e){return void s(t.promise,e)}c(t.promise,n)})}function c(e,t){try{if(t===e)throw new TypeError("A promise cannot be resolved with itself.");if(t&&("object"==typeof t||"function"==typeof t)){var r=t.then;if(t instanceof i)return e._state=3,e._value=t,void u(e);if("function"==typeof r)return void l(o(r,t),e)}e._state=1,e._value=t,u(e)}catch(t){s(e,t)}}function s(e,t){e._state=2,e._value=t,u(e)}function u(e){2===e._state&&0===e.T.length&&i.A(function(){e._handled||i.j(e._value)});for(var t=0,r=e.T.length;t<r;t++)a(e,e.T[t]);e.T=null}function f(e,t,r){this.onFulfilled="function"==typeof e?e:null,this.onRejected="function"==typeof t?t:null,this.promise=r}function l(e,t){var r=!1;try{e(function(e){r||(r=!0,c(t,e))},function(e){r||(r=!0,s(t,e))})}catch(e){if(r)return;r=!0,s(t,e)}}var h=setTimeout;i.prototype.catch=function(e){return this.then(null,e)},i.prototype.then=function(e,t){var r=new this.constructor(n);return a(this,new f(e,t,r)),r},i.all=function(e){var t=Array.prototype.slice.call(e);return new i(function(e,r){function n(i,a){try{if(a&&("object"==typeof a||"function"==typeof a)){var c=a.then;if("function"==typeof c)return void c.call(a,function(e){n(i,e)},r)}t[i]=a,0==--o&&e(t)}catch(e){r(e)}}if(0===t.length)return e([]);for(var o=t.length,i=0;i<t.length;i++)n(i,t[i])})},i.resolve=function(e){return e&&"object"==typeof e&&e.constructor===i?e:new i(function(t){t(e)})},i.reject=function(e){return new i(function(t,r){r(e)})},i.race=function(e){return new i(function(t,r){for(var n=0,o=e.length;n<o;n++)e[n].then(t,r)})},i.A="function"==typeof t&&function(e){t(e)}||function(e){h(e,0)},i.j=function(e){"undefined"!=typeof console&&console&&console.warn("Possible Unhandled Promise Rejection:",e)},i.w=function(e){i.A=e},i.S=function(e){i.j=e},void 0!==e&&e.exports?e.exports=i:r.Promise||(r.Promise=i)}(this)}).call(t,r(61).setImmediate)},function(t,r,n){function o(e,t){this.P=e,this._clearFn=t}var i=Function.prototype.apply;r.setTimeout=function(){return new o(i.call(setTimeout,e,arguments),clearTimeout)},r.setInterval=function(){return new o(i.call(setInterval,e,arguments),clearInterval)},r.clearTimeout=r.clearInterval=function(e){e&&e.close()},o.prototype.unref=o.prototype.ref=function(){},o.prototype.close=function(){this._clearFn.call(e,this.P)},r.enroll=function(e,t){clearTimeout(e.N),e.C=t},r.unenroll=function(e){clearTimeout(e.N),e.C=-1},r.k=r.active=function(e){clearTimeout(e.N);var t=e.C;t>=0&&(e.N=setTimeout(function(){e.M&&e.M()},t))},n(62),r.setImmediate=setImmediate,r.clearImmediate=clearImmediate},function(e,t,r){(function(e,t){!function(e,r){"use strict";function n(e){"function"!=typeof e&&(e=Function(""+e));for(var t=Array(arguments.length-1),r=0;r<t.length;r++)t[r]=arguments[r+1];var n={callback:e,args:t};return u[s]=n,c(s),s++}function o(e){delete u[e]}function i(e){var t=e.callback,n=e.args;switch(n.length){case 0:t();break;case 1:t(n[0]);break;case 2:t(n[0],n[1]);break;case 3:t(n[0],n[1],n[2]);break;default:t.apply(r,n)}}function a(e){if(f)setTimeout(a,0,e);else{var t=u[e];if(t){f=!0;try{i(t)}finally{o(e),f=!1}}}}if(!e.setImmediate){var c,s=1,u={},f=!1,l=e.document,h=Object.getPrototypeOf&&Object.getPrototypeOf(e);h=h&&h.setTimeout?h:e,"[object process]"==={}.toString.call(e.process)?function(){c=function(e){t.nextTick(function(){a(e)})}}():function(){if(e.postMessage&&!e.importScripts){var t=!0,r=e.onmessage;return e.onmessage=function(){t=!1},e.postMessage("","*"),e.onmessage=r,t}}()?function(){var t="setImmediate$"+Math.random()+"$",r=function(r){r.source===e&&"string"==typeof r.data&&0===r.data.indexOf(t)&&a(+r.data.slice(t.length))};e.addEventListener?e.addEventListener("message",r,!1):e.attachEvent("onmessage",r),c=function(r){e.postMessage(t+r,"*")}}():e.MessageChannel?function(){var e=new MessageChannel;e.port1.onmessage=function(e){a(e.data)},c=function(t){e.port2.postMessage(t)}}():l&&"onreadystatechange"in l.createElement("script")?function(){var e=l.documentElement;c=function(t){var r=l.createElement("script");r.onreadystatechange=function(){a(t),r.onreadystatechange=null,e.removeChild(r),r=null},e.appendChild(r)}}():function(){c=function(e){setTimeout(a,0,e)}}(),h.setImmediate=n,h.clearImmediate=o}}("undefined"==typeof self?void 0===e?this:e:self)}).call(t,r(19),r(27))},function(e,t){Array.prototype.find||Object.defineProperty(Array.prototype,"find",{value:function(e){if(null==this)throw new TypeError('"this" is null or not defined');var t=Object(this),r=t.length>>>0;if("function"!=typeof e)throw new TypeError("predicate must be a function");for(var n=arguments[1],o=0;o<r;){var i=t[o];if(e.call(n,i,o,t))return i;o++}}})},function(e,t){Array.prototype.findIndex||Object.defineProperty(Array.prototype,"findIndex",{value:function(e){if(null==this)throw new TypeError('"this" is null or not defined');var t=Object(this),r=t.length>>>0;if("function"!=typeof e)throw new TypeError("predicate must be a function");for(var n=arguments[1],o=0;o<r;){var i=t[o];if(e.call(n,i,o,t))return o;o++}return-1}})},function(e,t,r){"use strict";function n(e){return o(void 0,e)}function o(e,t){if(!(t instanceof Object))return t;switch(t.constructor){case Date:var r=t;return new Date(r.getTime());case Object:void 0===e&&(e={});break;case Array:e=[];break;default:return t}for(var n in t)t.hasOwnProperty(n)&&(e[n]=o(e[n],t[n]));return e}function i(e,t,r){e[t]=r}Object.defineProperty(t,"__esModule",{value:!0}),t.deepCopy=n,t.deepExtend=o,t.patchProperty=i},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=function(){function e(){var e=this;this.promise=new Promise(function(t,r){e.resolve=t,e.reject=r})}return e.prototype.wrapCallback=function(e){var t=this;return function(r,n){r?t.reject(r):t.resolve(n),"function"==typeof e&&(t.promise.catch(function(){}),1===e.length?e(r):e(r,n))}},e}();t.Deferred=n},function(t,r,n){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var o=n(20);r.getUA=function(){return"undefined"!=typeof navigator&&"string"==typeof navigator.userAgent?navigator.userAgent:""},r.isMobileCordova=function(){return void 0!==e&&!!(e.cordova||e.phonegap||e.PhoneGap)&&/ios|iphone|ipod|ipad|android|blackberry|iemobile/i.test(r.getUA())},r.isReactNative=function(){return"object"==typeof navigator&&"ReactNative"===navigator.product},r.isNodeSdk=function(){return!0===o.CONSTANTS.NODE_CLIENT||!0===o.CONSTANTS.NODE_ADMIN}},function(e,t,r){"use strict";function n(e){var t=i;return i=e,t}Object.defineProperty(t,"__esModule",{value:!0});var o="FirebaseError",i=Error.captureStackTrace;t.patchCapture=n;var a=function(){function e(e,t){if(this.code=e,this.message=t,i)i(this,c.prototype.create);else{var r=Error.apply(this,arguments);this.name=o,Object.defineProperty(this,"stack",{get:function(){return r.stack}})}}return e}();t.FirebaseError=a,a.prototype=Object.create(Error.prototype),a.prototype.constructor=a,a.prototype.name=o;var c=function(){function e(e,t,r){this.service=e,this.serviceName=t,this.errors=r,this.pattern=/\{\$([^}]+)}/g}return e.prototype.create=function(e,t){void 0===t&&(t={});var r,n=this.errors[e],o=this.service+"/"+e;r=void 0===n?"Error":n.replace(this.pattern,function(e,r){var n=t[r];return void 0!==n?""+n:"<"+r+"?>"}),r=this.serviceName+": "+r+" ("+o+").";var i=new a(o,r);for(var c in t)t.hasOwnProperty(c)&&"_"!==c.slice(-1)&&(i[c]=t[c]);return i},e}();t.ErrorFactory=c},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=r(29),o=r(30);t.decode=function(e){var t={},r={},i={},a="";try{var c=e.split(".");t=o.jsonEval(n.base64Decode(c[0])||""),r=o.jsonEval(n.base64Decode(c[1])||""),a=c[2],i=r.d||{},delete r.d}catch(e){}return{header:t,claims:r,data:i,signature:a}},t.isValidTimestamp=function(e){var r,n,o=t.decode(e).claims,i=Math.floor((new Date).getTime()/1e3);return"object"==typeof o&&(o.hasOwnProperty("nbf")?r=o.nbf:o.hasOwnProperty("iat")&&(r=o.iat),n=o.hasOwnProperty("exp")?o.exp:r+86400),i&&r&&n&&i>=r&&i<=n},t.issuedAtTime=function(e){var r=t.decode(e).claims;return"object"==typeof r&&r.hasOwnProperty("iat")?r.iat:null},t.isValidFormat=function(e){var r=t.decode(e),n=r.claims;return!!r.signature&&!!n&&"object"==typeof n&&n.hasOwnProperty("iat")},t.isAdmin=function(e){var r=t.decode(e).claims;return"object"==typeof r&&!0===r.admin}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=r(31);t.querystring=function(e){var t=[];return n.forEach(e,function(e,r){Array.isArray(r)?r.forEach(function(r){t.push(encodeURIComponent(e)+"="+encodeURIComponent(r))}):t.push(encodeURIComponent(e)+"="+encodeURIComponent(r))}),t.length?"&"+t.join("&"):""},t.querystringDecode=function(e){var t={};return e.replace(/^\?/,"").split("&").forEach(function(e){if(e){var r=e.split("=");t[r[0]]=r[1]}}),t}},function(e,t,r){"use strict";var n=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)t.hasOwnProperty(r)&&(e[r]=t[r])};return function(t,r){function n(){this.constructor=t}e(t,r),t.prototype=null===r?Object.create(r):(n.prototype=r.prototype,new n)}}();Object.defineProperty(t,"__esModule",{value:!0});var o=r(72),i=function(e){function t(){var t=e.call(this)||this;t.D=[],t.I=[],t.x=[],t.F=[],t.L=0,t.R=0,t.blockSize=64,t.F[0]=128;for(var r=1;r<t.blockSize;++r)t.F[r]=0;return t.reset(),t}return n(t,e),t.prototype.reset=function(){this.D[0]=1732584193,this.D[1]=4023233417,this.D[2]=2562383102,this.D[3]=271733878,this.D[4]=3285377520,this.L=0,this.R=0},t.prototype.B=function(e,t){t||(t=0);var r=this.x;if("string"==typeof e)for(var n=0;n<16;n++)r[n]=e.charCodeAt(t)<<24|e.charCodeAt(t+1)<<16|e.charCodeAt(t+2)<<8|e.charCodeAt(t+3),t+=4;else for(var n=0;n<16;n++)r[n]=e[t]<<24|e[t+1]<<16|e[t+2]<<8|e[t+3],t+=4;for(var n=16;n<80;n++){var o=r[n-3]^r[n-8]^r[n-14]^r[n-16];r[n]=4294967295&(o<<1|o>>>31)}for(var i,a,c=this.D[0],s=this.D[1],u=this.D[2],f=this.D[3],l=this.D[4],n=0;n<80;n++){n<40?n<20?(i=f^s&(u^f),a=1518500249):(i=s^u^f,a=1859775393):n<60?(i=s&u|f&(s|u),a=2400959708):(i=s^u^f,a=3395469782);var o=(c<<5|c>>>27)+i+l+a+r[n]&4294967295;l=f,f=u,u=4294967295&(s<<30|s>>>2),s=c,c=o}this.D[0]=this.D[0]+c&4294967295,this.D[1]=this.D[1]+s&4294967295,this.D[2]=this.D[2]+u&4294967295,this.D[3]=this.D[3]+f&4294967295,this.D[4]=this.D[4]+l&4294967295},t.prototype.update=function(e,t){if(null!=e){void 0===t&&(t=e.length);for(var r=t-this.blockSize,n=0,o=this.I,i=this.L;n<t;){if(0==i)for(;n<=r;)this.B(e,n),n+=this.blockSize;if("string"==typeof e){for(;n<t;)if(o[i]=e.charCodeAt(n),++i,++n,i==this.blockSize){this.B(o),i=0;break}}else for(;n<t;)if(o[i]=e[n],++i,++n,i==this.blockSize){this.B(o),i=0;break}}this.L=i,this.R+=t}},t.prototype.digest=function(){var e=[],t=8*this.R;this.L<56?this.update(this.F,56-this.L):this.update(this.F,this.blockSize-(this.L-56));for(var r=this.blockSize-1;r>=56;r--)this.I[r]=255&t,t/=256;this.B(this.I);for(var n=0,r=0;r<5;r++)for(var o=24;o>=0;o-=8)e[n]=this.D[r]>>o&255,++n;return e},t}(o.Hash);t.Sha1=i},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=function(){function e(){this.blockSize=-1}return e}();t.Hash=n},function(e,t,r){"use strict";function n(e,t){var r=new c(e,t);return r.subscribe.bind(r)}function o(e,t){return function(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];Promise.resolve(!0).then(function(){e.apply(void 0,r)}).catch(function(e){t&&t(e)})}}function i(e,t){if("object"!=typeof e||null===e)return!1;for(var r=0,n=t;r<n.length;r++){var o=n[r];if(o in e&&"function"==typeof e[o])return!0}return!1}function a(){}Object.defineProperty(t,"__esModule",{value:!0}),t.createSubscribe=n;var c=function(){function e(e,t){var r=this;this.observers=[],this.unsubscribes=[],this.observerCount=0,this.task=Promise.resolve(),this.finalized=!1,this.onNoObservers=t,this.task.then(function(){e(r)}).catch(function(e){r.error(e)})}return e.prototype.next=function(e){this.forEachObserver(function(t){t.next(e)})},e.prototype.error=function(e){this.forEachObserver(function(t){t.error(e)}),this.close(e)},e.prototype.complete=function(){this.forEachObserver(function(e){e.complete()}),this.close()},e.prototype.subscribe=function(e,t,r){var n,o=this;if(void 0===e&&void 0===t&&void 0===r)throw Error("Missing Observer.");n=i(e,["next","error","complete"])?e:{next:e,error:t,complete:r},void 0===n.next&&(n.next=a),void 0===n.error&&(n.error=a),void 0===n.complete&&(n.complete=a);var c=this.unsubscribeOne.bind(this,this.observers.length);return this.finalized&&this.task.then(function(){try{o.finalError?n.error(o.finalError):n.complete()}catch(e){}}),this.observers.push(n),c},e.prototype.unsubscribeOne=function(e){void 0!==this.observers&&void 0!==this.observers[e]&&(delete this.observers[e],this.observerCount-=1,0===this.observerCount&&void 0!==this.onNoObservers&&this.onNoObservers(this))},e.prototype.forEachObserver=function(e){if(!this.finalized)for(var t=0;t<this.observers.length;t++)this.sendOne(t,e)},e.prototype.sendOne=function(e,t){var r=this;this.task.then(function(){if(void 0!==r.observers&&void 0!==r.observers[e])try{t(r.observers[e])}catch(e){"undefined"!=typeof console&&console.error&&console.error(e)}})},e.prototype.close=function(e){var t=this;this.finalized||(this.finalized=!0,void 0!==e&&(this.finalError=e),this.task.then(function(){t.observers=void 0,t.onNoObservers=void 0}))},e}();t.async=o},function(e,t,r){"use strict";function n(e,t,r){var n="";switch(t){case 1:n=r?"first":"First";break;case 2:n=r?"second":"Second";break;case 3:n=r?"third":"Third";break;case 4:n=r?"fourth":"Fourth";break;default:throw Error("errorPrefix called with argumentNumber > 4.  Need to update it?")}var o=e+" failed: ";return o+=n+" argument "}function o(e,t,r,o){if((!o||r)&&"string"!=typeof r)throw Error(n(e,t,o)+"must be a valid firebase namespace.")}function i(e,t,r,o){if((!o||r)&&"function"!=typeof r)throw Error(n(e,t,o)+"must be a valid function.")}function a(e,t,r,o){if((!o||r)&&("object"!=typeof r||null===r))throw Error(n(e,t,o)+"must be a valid context object.")}Object.defineProperty(t,"__esModule",{value:!0}),t.validateArgCount=function(e,t,r,n){var o;if(n<t?o="at least "+t:n>r&&(o=0===r?"none":"no more than "+r),o){var i=e+" failed: Was called with "+n+(1===n?" argument.":" arguments.")+" Expects "+o+".";throw Error(i)}},t.errorPrefix=n,t.validateNamespace=o,t.validateCallback=i,t.validateContextObject=a},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=r(28);t.stringToByteArray=function(e){for(var t=[],r=0,o=0;o<e.length;o++){var i=e.charCodeAt(o);if(i>=55296&&i<=56319){var a=i-55296;o++,n.assert(o<e.length,"Surrogate pair missing trail surrogate."),i=65536+(a<<10)+(e.charCodeAt(o)-56320)}i<128?t[r++]=i:i<2048?(t[r++]=i>>6|192,t[r++]=63&i|128):i<65536?(t[r++]=i>>12|224,t[r++]=i>>6&63|128,t[r++]=63&i|128):(t[r++]=i>>18|240,t[r++]=i>>12&63|128,t[r++]=i>>6&63|128,t[r++]=63&i|128)}return t},t.stringLength=function(e){for(var t=0,r=0;r<e.length;r++){var n=e.charCodeAt(r);n<128?t++:n<2048?t+=2:n>=55296&&n<=56319?(t+=4,r++):t+=3}return t}}])}().default;
+
+/*!
+ * @license Firebase v4.6.2
+ * Build: rev-cbb07d3
+ * Terms: https://firebase.google.com/terms/
+ */
+try{webpackJsonpFirebase([4],{76:function(t,n,e){e(77)},77:function(t,n,e){(function(t){(function(){function t(t){return"string"==typeof t}function n(t){return"boolean"==typeof t}function i(){}function r(t){var n=typeof t;if("object"==n){if(!t)return"null";if(t instanceof Array)return"array";if(t instanceof Object)return n;var e=Object.prototype.toString.call(t);if("[object Window]"==e)return"object";if("[object Array]"==e||"number"==typeof t.length&&void 0!==t.splice&&void 0!==t.propertyIsEnumerable&&!t.propertyIsEnumerable("splice"))return"array";if("[object Function]"==e||void 0!==t.call&&void 0!==t.propertyIsEnumerable&&!t.propertyIsEnumerable("call"))return"function"}else if("function"==n&&void 0===t.call)return"object";return n}function o(t){return null===t}function a(t){return"array"==r(t)}function s(t){var n=r(t);return"array"==n||"object"==n&&"number"==typeof t.length}function u(t){return"function"==r(t)}function c(t){var n=typeof t;return"object"==n&&null!=t||"function"==n}function h(t,n,e){return t.call.apply(t.bind,arguments)}function f(t,n,e){if(!t)throw Error();if(2<arguments.length){var i=Array.prototype.slice.call(arguments,2);return function(){var e=Array.prototype.slice.call(arguments);return Array.prototype.unshift.apply(e,i),t.apply(n,e)}}return function(){return t.apply(n,arguments)}}function l(t,n,e){return l=Function.prototype.bind&&-1!=(""+Function.prototype.bind).indexOf("native code")?h:f,l.apply(null,arguments)}function p(t,n){var e=Array.prototype.slice.call(arguments,1);return function(){var n=e.slice();return n.push.apply(n,arguments),t.apply(this,n)}}function d(t,n){function e(){}e.prototype=n.prototype,t.ib=n.prototype,t.prototype=new e,t.prototype.constructor=t,t.Nc=function(t,e,i){for(var r=Array(arguments.length-2),o=2;o<arguments.length;o++)r[o-2]=arguments[o];return n.prototype[e].apply(t,r)}}function v(t){if(Error.captureStackTrace)Error.captureStackTrace(this,v);else{var n=Error().stack;n&&(this.stack=n)}t&&(this.message=t+"")}function m(t,n){for(var e=t.split("%s"),i="",r=Array.prototype.slice.call(arguments,1);r.length&&1<e.length;)i+=e.shift()+r.shift();return i+e.join("%s")}function g(t){return wu.test(t)?(-1!=t.indexOf("&")&&(t=t.replace(pu,"&amp;")),-1!=t.indexOf("<")&&(t=t.replace(du,"&lt;")),-1!=t.indexOf(">")&&(t=t.replace(vu,"&gt;")),-1!=t.indexOf('"')&&(t=t.replace(mu,"&quot;")),-1!=t.indexOf("'")&&(t=t.replace(gu,"&#39;")),-1!=t.indexOf("\0")&&(t=t.replace(bu,"&#0;")),t):t}function b(t,n){return-1!=t.indexOf(n)}function w(t,n){return t<n?-1:t>n?1:0}function y(t,n){n.unshift(t),v.call(this,m.apply(null,n)),n.shift()}function I(t,n){throw new y("Failure"+(t?": "+t:""),Array.prototype.slice.call(arguments,1))}function T(n,e){var i=n.length,r=t(n)?n.split(""):n;for(--i;0<=i;--i)i in r&&e.call(void 0,r[i],i,n)}function k(n){t:{for(var e=ke,i=n.length,r=t(n)?n.split(""):n,o=0;o<i;o++)if(o in r&&e.call(void 0,r[o],o,n)){e=o;break t}e=-1}return 0>e?null:t(n)?n.charAt(e):n[e]}function A(t,n){return 0<=Iu(t,n)}function E(t,n){n=Iu(t,n);var e;return(e=0<=n)&&Array.prototype.splice.call(t,n,1),e}function N(t,n){var e=0;T(t,function(i,r){n.call(void 0,i,r,t)&&1==Array.prototype.splice.call(t,r,1).length&&e++})}function S(t){return Array.prototype.concat.apply([],arguments)}function O(t){var n=t.length;if(0<n){for(var e=Array(n),i=0;i<n;i++)e[i]=t[i];return e}return[]}function P(t){return b(yu,t)}function C(t,n){for(var e in t)n.call(void 0,t[e],e,t)}function _(t){var n,e=[],i=0;for(n in t)e[i++]=t[n];return e}function R(t){var n,e=[],i=0;for(n in t)e[i++]=n;return e}function D(t){for(var n in t)return!1;return!0}function L(t,n){for(var e in t)if(!(e in n)||t[e]!==n[e])return!1;for(e in n)if(!(e in t))return!1;return!0}function x(t){var n,e={};for(n in t)e[n]=t[n];return e}function j(t,n){for(var e,i,r=1;r<arguments.length;r++){i=arguments[r];for(e in i)t[e]=i[e];for(var o=0;o<Su.length;o++)e=Su[o],Object.prototype.hasOwnProperty.call(i,e)&&(t[e]=i[e])}}function U(t){return U[" "](t),t}function M(t,n){var e=Vu;return Object.prototype.hasOwnProperty.call(e,t)?e[t]:e[t]=n(t)}function V(){var t=uu.document;return t?t.documentMode:void 0}function F(t){return M(t,function(){for(var n=0,e=lu(Ou+"").split("."),i=lu(t+"").split("."),r=Math.max(e.length,i.length),o=0;0==n&&o<r;o++){var a=e[o]||"",s=i[o]||"";do{if(a=/(\d*)(\D*)(.*)/.exec(a)||["","","",""],s=/(\d*)(\D*)(.*)/.exec(s)||["","","",""],0==a[0].length&&0==s[0].length)break;n=w(0==a[1].length?0:parseInt(a[1],10),0==s[1].length?0:parseInt(s[1],10))||w(0==a[2].length,0==s[2].length)||w(a[2],s[2]),a=a[3],s=s[3]}while(0==n)}return 0<=n})}function K(t){t.prototype.then=t.prototype.then,t.prototype.$goog_Thenable=!0}function q(t){if(!t)return!1;try{return!!t.$goog_Thenable}catch(t){return!1}}function X(t,n,e){this.f=e,this.c=t,this.g=n,this.b=0,this.a=null}function B(t,n){t.g(n),t.b<t.f&&(t.b++,n.next=t.a,t.a=n)}function H(){var t=Hu,n=null;return t.a&&(n=t.a,t.a=t.a.next,t.a||(t.b=null),n.next=null),n}function W(){this.next=this.b=this.a=null}function G(t){uu.setTimeout(function(){throw t},0)}function z(){var t=uu.MessageChannel;if(void 0===t&&"undefined"!=typeof window&&window.postMessage&&window.addEventListener&&!P("Presto")&&(t=function(){var t=document.createElement("IFRAME");t.style.display="none",t.src="",document.documentElement.appendChild(t);var n=t.contentWindow;t=n.document,t.open(),t.write(""),t.close();var e="callImmediate"+Math.random(),i="file:"==n.location.protocol?"*":n.location.protocol+"//"+n.location.host;t=l(function(t){"*"!=i&&t.origin!=i||t.data!=e||this.port1.onmessage()},this),n.addEventListener("message",t,!1),this.port1={},this.port2={postMessage:function(){n.postMessage(e,i)}}}),void 0!==t&&!P("Trident")&&!P("MSIE")){var n=new t,e={},i=e;return n.port1.onmessage=function(){if(void 0!==e.next){e=e.next;var t=e.pb;e.pb=null,t()}},function(t){i.next={pb:t},i=i.next,n.port2.postMessage(0)}}return"undefined"!=typeof document&&"onreadystatechange"in document.createElement("SCRIPT")?function(t){var n=document.createElement("SCRIPT");n.onreadystatechange=function(){n.onreadystatechange=null,n.parentNode.removeChild(n),n=null,t(),t=null},document.documentElement.appendChild(n)}:function(t){uu.setTimeout(t,0)}}function J(t,n){Xu||Y(),Bu||(Xu(),Bu=!0);var e=Hu,i=Ku.get();i.set(t,n),e.b?e.b.next=i:e.a=i,e.b=i}function Y(){if(-1!=(uu.Promise+"").indexOf("[native code]")){var t=uu.Promise.resolve(void 0);Xu=function(){t.then($)}}else Xu=function(){var t=$;!u(uu.setImmediate)||uu.Window&&uu.Window.prototype&&!P("Edge")&&uu.Window.prototype.setImmediate==uu.setImmediate?(qu||(qu=z()),qu(t)):uu.setImmediate(t)}}function $(){for(var t;t=H();){try{t.a.call(t.b)}catch(t){G(t)}B(Ku,t)}Bu=!1}function Z(t,n){if(this.a=Wu,this.i=void 0,this.f=this.b=this.c=null,this.g=this.h=!1,t!=i)try{var e=this;t.call(n,function(t){ht(e,Gu,t)},function(t){if(!(t instanceof bt))try{if(t instanceof Error)throw t;throw Error("Promise rejected.")}catch(t){}ht(e,zu,t)})}catch(t){ht(this,zu,t)}}function Q(){this.next=this.f=this.b=this.g=this.a=null,this.c=!1}function tt(t,n,e){var i=Ju.get();return i.g=t,i.b=n,i.f=e,i}function nt(t){if(t instanceof Z)return t;var n=new Z(i);return ht(n,Gu,t),n}function et(t){return new Z(function(n,e){e(t)})}function it(t,n,e){ft(t,n,e,null)||J(p(n,t))}function rt(t){return new Z(function(n,e){var i=t.length,r=[];if(i)for(var o,a=function(t,e){i--,r[t]=e,0==i&&n(r)},s=function(t){e(t)},u=0;u<t.length;u++)o=t[u],it(o,p(a,u),s);else n(r)})}function ot(t){return new Z(function(n){var e=t.length,i=[];if(e)for(var r,o=function(t,r,o){e--,i[t]=r?{Qb:!0,value:o}:{Qb:!1,reason:o},0==e&&n(i)},a=0;a<t.length;a++)r=t[a],it(r,p(o,a,!0),p(o,a,!1));else n(i)})}function at(t,n){return n=tt(n,n,void 0),n.c=!0,ut(t,n),t}function st(t,n){if(t.a==Wu)if(t.c){var e=t.c;if(e.b){for(var i=0,r=null,o=null,a=e.b;a&&(a.c||(i++,a.a==t&&(r=a),!(r&&1<i)));a=a.next)r||(o=a);r&&(e.a==Wu&&1==i?st(e,n):(o?(i=o,i.next==e.f&&(e.f=i),i.next=i.next.next):dt(e),vt(e,r,zu,n)))}t.c=null}else ht(t,zu,n)}function ut(t,n){t.b||t.a!=Gu&&t.a!=zu||pt(t),t.f?t.f.next=n:t.b=n,t.f=n}function ct(t,n,e,i){var r=tt(null,null,null);return r.a=new Z(function(t,o){r.g=n?function(e){try{var r=n.call(i,e);t(r)}catch(t){o(t)}}:t,r.b=e?function(n){try{var r=e.call(i,n);void 0===r&&n instanceof bt?o(n):t(r)}catch(t){o(t)}}:o}),r.a.c=t,ut(t,r),r.a}function ht(t,n,e){t.a==Wu&&(t===e&&(n=zu,e=new TypeError("Promise cannot resolve to itself")),t.a=1,ft(e,t.wc,t.xc,t)||(t.i=e,t.a=n,t.c=null,pt(t),n!=zu||e instanceof bt||gt(t,e)))}function ft(t,n,e,r){if(t instanceof Z)return ut(t,tt(n||i,e||null,r)),!0;if(q(t))return t.then(n,e,r),!0;if(c(t))try{var o=t.then;if(u(o))return lt(t,o,n,e,r),!0}catch(t){return e.call(r,t),!0}return!1}function lt(t,n,e,i,r){function o(t){s||(s=!0,i.call(r,t))}function a(t){s||(s=!0,e.call(r,t))}var s=!1;try{n.call(t,a,o)}catch(t){o(t)}}function pt(t){t.h||(t.h=!0,J(t.Mb,t))}function dt(t){var n=null;return t.b&&(n=t.b,t.b=n.next,n.next=null),t.b||(t.f=null),n}function vt(t,n,e,i){if(e==zu&&n.b&&!n.c)for(;t&&t.g;t=t.c)t.g=!1;if(n.a)n.a.c=null,mt(n,e,i);else try{n.c?n.g.call(n.f):mt(n,e,i)}catch(t){Yu.call(null,t)}B(Ju,n)}function mt(t,n,e){n==Gu?t.g.call(t.f,e):t.b&&t.b.call(t.f,e)}function gt(t,n){t.g=!0,J(function(){t.g&&Yu.call(null,n)})}function bt(t){v.call(this,t)}function wt(){this.a="",this.b=Zu}function yt(t){return t instanceof wt&&t.constructor===wt&&t.b===Zu?t.a:(I("expected object of type Const, got '"+t+"'"),"type_error:Const")}function It(t){var n=new wt;return n.a=t,n}function Tt(){this.a="",this.b=nc}function kt(t){return t instanceof Tt&&t.constructor===Tt&&t.b===nc?t.a:(I("expected object of type TrustedResourceUrl, got '"+t+"' of type "+r(t)),"type_error:TrustedResourceUrl")}function At(t,n){return t=Et(t,n),n=new Tt,n.a=t,n}function Et(t,n){var e=yt(t);if(!tc.test(e))throw Error("Invalid TrustedResourceUrl format: "+e);return e.replace(Qu,function(t,i){if(!Object.prototype.hasOwnProperty.call(n,i))throw Error('Found marker, "'+i+'", in format string, "'+e+'", but no valid label mapping found in args: '+JSON.stringify(n));return t=n[i],t instanceof wt?yt(t):encodeURIComponent(t+"")})}function Nt(){this.a="",this.b=ic}function St(t){return t instanceof Nt&&t.constructor===Nt&&t.b===ic?t.a:(I("expected object of type SafeUrl, got '"+t+"' of type "+r(t)),"type_error:SafeUrl")}function Ot(t){return t instanceof Nt?t:(t=t.la?t.ja():t+"",ec.test(t)||(t="about:invalid#zClosurez"),Pt(t))}function Pt(t){var n=new Nt;return n.a=t,n}function Ct(){this.a="",this.b=rc}function _t(t){return t instanceof Ct&&t.constructor===Ct&&t.b===rc?t.a:(I("expected object of type SafeHtml, got '"+t+"' of type "+r(t)),"type_error:SafeHtml")}function Rt(t){var n=new Ct;return n.a=t,n}function Dt(n){var e=document;return t(n)?e.getElementById(n):n}function Lt(t,n){C(n,function(n,e){n&&n.la&&(n=n.ja()),"style"==e?t.style.cssText=n:"class"==e?t.className=n:"for"==e?t.htmlFor=n:oc.hasOwnProperty(e)?t.setAttribute(oc[e],n):0==e.lastIndexOf("aria-",0)||0==e.lastIndexOf("data-",0)?t.setAttribute(e,n):t[e]=n})}function xt(n,e,i){var r=arguments,o=document,s=r[0]+"",u=r[1];if(!$u&&u&&(u.name||u.type)){if(s=["<",s],u.name&&s.push(' name="',g(u.name),'"'),u.type){s.push(' type="',g(u.type),'"');var c={};j(c,u),delete c.type,u=c}s.push(">"),s=s.join("")}return s=o.createElement(s),u&&(t(u)?s.className=u:a(u)?s.className=u.join(" "):Lt(s,u)),2<r.length&&jt(o,s,r),s}function jt(n,e,i){function r(i){i&&e.appendChild(t(i)?n.createTextNode(i):i)}for(var o=2;o<i.length;o++){var a=i[o];!s(a)||c(a)&&0<a.nodeType?r(a):Tu(Ut(a)?O(a):a,r)}}function Ut(t){if(t&&"number"==typeof t.length){if(c(t))return"function"==typeof t.item||"string"==typeof t.item;if(u(t))return"function"==typeof t.item}return!1}function Mt(t){var n=[];return Ft(new Vt,t,n),n.join("")}function Vt(){}function Ft(t,n,e){if(null==n)e.push("null");else{if("object"==typeof n){if(a(n)){var i=n;n=i.length,e.push("[");for(var r="",o=0;o<n;o++)e.push(r),Ft(t,i[o],e),r=",";return void e.push("]")}if(!(n instanceof String||n instanceof Number||n instanceof Boolean)){e.push("{"),r="";for(i in n)Object.prototype.hasOwnProperty.call(n,i)&&"function"!=typeof(o=n[i])&&(e.push(r),Kt(i,e),e.push(":"),Ft(t,o,e),r=",");return void e.push("}")}n=n.valueOf()}switch(typeof n){case"string":Kt(n,e);break;case"number":e.push(isFinite(n)&&!isNaN(n)?n+"":"null");break;case"boolean":e.push(n+"");break;case"function":e.push("null");break;default:throw Error("Unknown type: "+typeof n)}}}function Kt(t,n){n.push('"',t.replace(sc,function(t){var n=ac[t];return n||(n="\\u"+(65536|t.charCodeAt(0)).toString(16).substr(1),ac[t]=n),n}),'"')}function qt(){0!=uc&&(cc[this[cu]||(this[cu]=++hu)]=this),this.oa=this.oa,this.Fa=this.Fa}function Xt(t){t.oa||(t.oa=!0,t.ta(),0!=uc&&(t=t[cu]||(t[cu]=++hu),delete cc[t]))}function Bt(t,n){this.type=t,this.b=this.target=n,this.Ab=!0}function Ht(n,e){if(Bt.call(this,n?n.type:""),this.relatedTarget=this.b=this.target=null,this.button=this.screenY=this.screenX=this.clientY=this.clientX=0,this.key="",this.metaKey=this.shiftKey=this.altKey=this.ctrlKey=!1,this.pointerId=0,this.pointerType="",this.a=null,n){var i=this.type=n.type,r=n.changedTouches?n.changedTouches[0]:null;if(this.target=n.target||n.srcElement,this.b=e,e=n.relatedTarget){if(Du){t:{try{U(e.nodeName);var o=!0;break t}catch(t){}o=!1}o||(e=null)}}else"mouseover"==i?e=n.fromElement:"mouseout"==i&&(e=n.toElement);this.relatedTarget=e,null===r?(this.clientX=void 0!==n.clientX?n.clientX:n.pageX,this.clientY=void 0!==n.clientY?n.clientY:n.pageY,this.screenX=n.screenX||0,this.screenY=n.screenY||0):(this.clientX=void 0!==r.clientX?r.clientX:r.pageX,this.clientY=void 0!==r.clientY?r.clientY:r.pageY,this.screenX=r.screenX||0,this.screenY=r.screenY||0),this.button=n.button,this.key=n.key||"",this.ctrlKey=n.ctrlKey,this.altKey=n.altKey,this.shiftKey=n.shiftKey,this.metaKey=n.metaKey,this.pointerId=n.pointerId||0,this.pointerType=t(n.pointerType)?n.pointerType:dc[n.pointerType]||"",this.a=n,n.defaultPrevented&&this.c()}}function Wt(t,n,e,i,r){this.listener=t,this.a=null,this.src=n,this.type=e,this.capture=!!i,this.La=r,this.key=++mc,this.ma=this.Ha=!1}function Gt(t){t.ma=!0,t.listener=null,t.a=null,t.src=null,t.La=null}function zt(t){this.src=t,this.a={},this.b=0}function Jt(t,n,e,i,r,o){var a=""+n;(n=t.a[a])||(n=t.a[a]=[],t.b++);var s=$t(n,e,r,o);return-1<s?(t=n[s],i||(t.Ha=!1)):(t=new Wt(e,t.src,a,!!r,o),t.Ha=i,n.push(t)),t}function Yt(t,n){var e=n.type;e in t.a&&E(t.a[e],n)&&(Gt(n),0==t.a[e].length&&(delete t.a[e],t.b--))}function $t(t,n,e,i){for(var r=0;r<t.length;++r){var o=t[r];if(!o.ma&&o.listener==n&&o.capture==!!e&&o.La==i)return r}return-1}function Zt(t,n,e,i,r){if(i&&i.once)nn(t,n,e,i,r);else if(a(n))for(var o=0;o<n.length;o++)Zt(t,n[o],e,i,r);else e=hn(e),t&&t[vc]?pn(t,n,e,c(i)?!!i.capture:!!i,r):Qt(t,n,e,!1,i,r)}function Qt(t,n,e,i,r,o){if(!n)throw Error("Invalid event type");var a=c(r)?!!r.capture:!!r,s=cn(t);if(s||(t[gc]=s=new zt(t)),e=Jt(s,n,e,i,a,o),!e.a){if(i=tn(),e.a=i,i.src=t,i.listener=e,t.addEventListener)pc||(r=a),void 0===r&&(r=!1),t.addEventListener(""+n,i,r);else{if(!t.attachEvent)throw Error("addEventListener and attachEvent are unavailable.");t.attachEvent(on(""+n),i)}wc++}}function tn(){var t=un,n=fc?function(e){return t.call(n.src,n.listener,e)}:function(e){if(!(e=t.call(n.src,n.listener,e)))return e};return n}function nn(t,n,e,i,r){if(a(n))for(var o=0;o<n.length;o++)nn(t,n[o],e,i,r);else e=hn(e),t&&t[vc]?dn(t,n,e,c(i)?!!i.capture:!!i,r):Qt(t,n,e,!0,i,r)}function en(t,n,e,i,r){if(a(n))for(var o=0;o<n.length;o++)en(t,n[o],e,i,r);else i=c(i)?!!i.capture:!!i,e=hn(e),t&&t[vc]?(t=t.u,(n+="")in t.a&&(o=t.a[n],-1<(e=$t(o,e,i,r))&&(Gt(o[e]),Array.prototype.splice.call(o,e,1),0==o.length&&(delete t.a[n],t.b--)))):t&&(t=cn(t))&&(n=t.a[""+n],t=-1,n&&(t=$t(n,e,i,r)),(e=-1<t?n[t]:null)&&rn(e))}function rn(t){if("number"!=typeof t&&t&&!t.ma){var n=t.src;if(n&&n[vc])Yt(n.u,t);else{var e=t.type,i=t.a;n.removeEventListener?n.removeEventListener(e,i,t.capture):n.detachEvent&&n.detachEvent(on(e),i),wc--,(e=cn(n))?(Yt(e,t),0==e.b&&(e.src=null,n[gc]=null)):Gt(t)}}}function on(t){return t in bc?bc[t]:bc[t]="on"+t}function an(t,n,e,i){var r=!0;if((t=cn(t))&&(n=t.a[""+n]))for(n=n.concat(),t=0;t<n.length;t++){var o=n[t];o&&o.capture==e&&!o.ma&&(o=sn(o,i),r=r&&!1!==o)}return r}function sn(t,n){var e=t.listener,i=t.La||t.src;return t.Ha&&rn(t),e.call(i,n)}function un(t,n){if(t.ma)return!0;if(!fc){if(!n)t:{n=["window","event"];for(var e=uu,i=0;i<n.length;i++)if(null==(e=e[n[i]])){n=null;break t}n=e}if(i=n,n=new Ht(i,this),e=!0,!(0>i.keyCode||void 0!=i.returnValue)){t:{var r=!1;if(0==i.keyCode)try{i.keyCode=-1;break t}catch(t){r=!0}(r||void 0==i.returnValue)&&(i.returnValue=!0)}for(i=[],r=n.b;r;r=r.parentNode)i.push(r);for(t=t.type,r=i.length-1;0<=r;r--){n.b=i[r];var o=an(i[r],t,!0,n);e=e&&o}for(r=0;r<i.length;r++)n.b=i[r],o=an(i[r],t,!1,n),e=e&&o}return e}return sn(t,new Ht(n,this))}function cn(t){return t=t[gc],t instanceof zt?t:null}function hn(t){return u(t)?t:(t[yc]||(t[yc]=function(n){return t.handleEvent(n)}),t[yc])}function fn(){qt.call(this),this.u=new zt(this),this.Eb=this,this.Ra=null}function ln(n,e){var i,r=n.Ra;if(r)for(i=[];r;r=r.Ra)i.push(r);if(n=n.Eb,r=e.type||e,t(e))e=new Bt(e,n);else if(e instanceof Bt)e.target=e.target||n;else{var o=e;e=new Bt(r,n),j(e,o)}if(o=!0,i)for(var a=i.length-1;0<=a;a--){var s=e.b=i[a];o=vn(s,r,!0,e)&&o}if(s=e.b=n,o=vn(s,r,!0,e)&&o,o=vn(s,r,!1,e)&&o,i)for(a=0;a<i.length;a++)s=e.b=i[a],o=vn(s,r,!1,e)&&o}function pn(t,n,e,i,r){Jt(t.u,n+"",e,!1,i,r)}function dn(t,n,e,i,r){Jt(t.u,n+"",e,!0,i,r)}function vn(t,n,e,i){if(!(n=t.u.a[n+""]))return!0;n=n.concat();for(var r=!0,o=0;o<n.length;++o){var a=n[o];if(a&&!a.ma&&a.capture==e){var s=a.listener,u=a.La||a.src;a.Ha&&Yt(t.u,a),r=!1!==s.call(u,i)&&r}}return r&&0!=i.Ab}function mn(t,n,e){if(u(t))e&&(t=l(t,e));else{if(!t||"function"!=typeof t.handleEvent)throw Error("Invalid listener argument");t=l(t.handleEvent,t)}return 2147483647<+n?-1:uu.setTimeout(t,n||0)}function gn(t){var n=null;return new Z(function(e,i){-1==(n=mn(function(){e(void 0)},t))&&i(Error("Failed to schedule timer."))}).s(function(t){throw uu.clearTimeout(n),t})}function bn(t,n,e,i,r){this.reset(t,n,e,i,r)}function wn(t){this.f=t,this.b=this.c=this.a=null}function yn(t,n){this.name=t,this.value=n}function In(t){return t.c?t.c:t.a?In(t.a):(I("Root logger has no level set."),null)}function Tn(t){Nc||(Nc=new wn(""),Ec[""]=Nc,Nc.c=kc);var n;if(!(n=Ec[t])){n=new wn(t);var e=t.lastIndexOf("."),i=t.substr(e+1);e=Tn(t.substr(0,e)),e.b||(e.b={}),e.b[i]=n,n.a=e,Ec[t]=n}return n}function kn(t,n){this.b={},this.a=[],this.c=0;var e=arguments.length;if(1<e){if(e%2)throw Error("Uneven number of arguments");for(var i=0;i<e;i+=2)this.set(arguments[i],arguments[i+1])}else if(t){t instanceof kn?(e=t.S(),i=t.P()):(e=R(t),i=_(t));for(var r=0;r<e.length;r++)this.set(e[r],i[r])}}function An(t){if(t.c!=t.a.length){for(var n=0,e=0;n<t.a.length;){var i=t.a[n];En(t.b,i)&&(t.a[e++]=i),n++}t.a.length=e}if(t.c!=t.a.length){var r={};for(e=n=0;n<t.a.length;)i=t.a[n],En(r,i)||(t.a[e++]=i,r[i]=1),n++;t.a.length=e}}function En(t,n){return Object.prototype.hasOwnProperty.call(t,n)}function Nn(t,n){t&&t.log(Ac,n,void 0)}function Sn(t){return ku(t,function(t){return t=t.toString(16),1<t.length?t:"0"+t}).join("")}function On(t){var n="";return Pn(t,function(t){n+=String.fromCharCode(t)}),n}function Pn(t,n){function e(n){for(;i<t.length;){var e=t.charAt(i++),r=Oc[e];if(null!=r)return r;if(!/^[\s\xa0]*$/.test(e))throw Error("Unknown base64 encoding at char: "+e)}return n}Cn();for(var i=0;;){var r=e(-1),o=e(0),a=e(64),s=e(64);if(64===s&&-1===r)break;n(r<<2|o>>4),64!=a&&(n(o<<4&240|a>>2),64!=s&&n(a<<6&192|s))}}function Cn(){if(!Sc){Sc={},Oc={};for(var t=0;65>t;t++)Sc[t]="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".charAt(t),Oc[Sc[t]]=t,62<=t&&(Oc["ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_.".charAt(t)]=t)}}function _n(t,n){this.g=[],this.v=t,this.o=n||null,this.f=this.a=!1,this.c=void 0,this.u=this.w=this.i=!1,this.h=0,this.b=null,this.l=0}function Rn(t,n,e){t.a=!0,t.c=e,t.f=!n,Un(t)}function Dn(t){if(t.a){if(!t.u)throw new Mn;t.u=!1}}function Ln(t,n){xn(t,null,n,void 0)}function xn(t,n,e,i){t.g.push([n,e,i]),t.a&&Un(t)}function jn(t){return Au(t.g,function(t){return u(t[1])})}function Un(t){if(t.h&&t.a&&jn(t)){var n=t.h,e=Cc[n];e&&(uu.clearTimeout(e.a),delete Cc[n]),t.h=0}t.b&&(t.b.l--,delete t.b),n=t.c;for(var i=e=!1;t.g.length&&!t.i;){var r=t.g.shift(),o=r[0],a=r[1];if(r=r[2],o=t.f?a:o)try{var s=o.call(r||t.o,n);void 0!==s&&(t.f=t.f&&(s==n||s instanceof Error),t.c=n=s),(q(n)||"function"==typeof uu.Promise&&n instanceof uu.Promise)&&(i=!0,t.i=!0)}catch(i){n=i,t.f=!0,jn(t)||(e=!0)}}t.c=n,i&&(s=l(t.m,t,!0),i=l(t.m,t,!1),n instanceof _n?(xn(n,s,i),n.w=!0):n.then(s,i)),e&&(n=new Fn(n),Cc[n.a]=n,t.h=n.a)}function Mn(){v.call(this)}function Vn(){v.call(this)}function Fn(t){this.a=uu.setTimeout(l(this.c,this),0),this.b=t}function Kn(){this.b=-1}function qn(t,n){this.b=-1,this.b=_c,this.f=uu.Uint8Array?new Uint8Array(this.b):Array(this.b),this.g=this.c=0,this.a=[],this.i=t,this.h=n,this.l=uu.Int32Array?new Int32Array(64):Array(64),Pc||(Pc=uu.Int32Array?new Int32Array(jc):jc),this.reset()}function Xn(t){for(var n=t.f,e=t.l,i=0,r=0;r<n.length;)e[i++]=n[r]<<24|n[r+1]<<16|n[r+2]<<8|n[r+3],r=4*i;for(n=16;64>n;n++){r=0|e[n-15],i=0|e[n-2];var o=(0|e[n-16])+((r>>>7|r<<25)^(r>>>18|r<<14)^r>>>3)|0,a=(0|e[n-7])+((i>>>17|i<<15)^(i>>>19|i<<13)^i>>>10)|0;e[n]=o+a|0}i=0|t.a[0],r=0|t.a[1];var s=0|t.a[2],u=0|t.a[3],c=0|t.a[4],h=0|t.a[5],f=0|t.a[6];for(o=0|t.a[7],n=0;64>n;n++){var l=((i>>>2|i<<30)^(i>>>13|i<<19)^(i>>>22|i<<10))+(i&r^i&s^r&s)|0;a=c&h^~c&f,o=o+((c>>>6|c<<26)^(c>>>11|c<<21)^(c>>>25|c<<7))|0,a=a+(0|Pc[n])|0,a=o+(a+(0|e[n])|0)|0,o=f,f=h,h=c,c=u+a|0,u=s,s=r,r=i,i=a+l|0}t.a[0]=t.a[0]+i|0,t.a[1]=t.a[1]+r|0,t.a[2]=t.a[2]+s|0,t.a[3]=t.a[3]+u|0,t.a[4]=t.a[4]+c|0,t.a[5]=t.a[5]+h|0,t.a[6]=t.a[6]+f|0,t.a[7]=t.a[7]+o|0}function Bn(n,e,i){void 0===i&&(i=e.length);var r=0,o=n.c;if(t(e))for(;r<i;)n.f[o++]=e.charCodeAt(r++),o==n.b&&(Xn(n),o=0);else{if(!s(e))throw Error("message must be string or array");for(;r<i;){var a=e[r++];if(!("number"==typeof a&&0<=a&&255>=a&&a==(0|a)))throw Error("message must be a byte array");n.f[o++]=a,o==n.b&&(Xn(n),o=0)}}n.c=o,n.g+=i}function Hn(){qn.call(this,8,Uc)}function Wn(n){if(n.P&&"function"==typeof n.P)return n.P();if(t(n))return n.split("");if(s(n)){for(var e=[],i=n.length,r=0;r<i;r++)e.push(n[r]);return e}return _(n)}function Gn(n){if(n.S&&"function"==typeof n.S)return n.S();if(!n.P||"function"!=typeof n.P){if(s(n)||t(n)){var e=[];n=n.length;for(var i=0;i<n;i++)e.push(i);return e}return R(n)}}function zn(n,e){if(n.forEach&&"function"==typeof n.forEach)n.forEach(e,void 0);else if(s(n)||t(n))Tu(n,e,void 0);else for(var i=Gn(n),r=Wn(n),o=r.length,a=0;a<o;a++)e.call(void 0,r[a],i&&i[a],n)}function Jn(t,n){if(t){t=t.split("&");for(var e=0;e<t.length;e++){var i=t[e].indexOf("="),r=null;if(0<=i){var o=t[e].substring(0,i);r=t[e].substring(i+1)}else o=t[e];n(o,r?decodeURIComponent(r.replace(/\+/g," ")):"")}}}function Yn(t,n){if(this.b=this.l=this.c="",this.i=null,this.h=this.g="",this.f=!1,t instanceof Yn){this.f=void 0!==n?n:t.f,$n(this,t.c),this.l=t.l,this.b=t.b,Zn(this,t.i),this.g=t.g,n=t.a;var e=new se;e.c=n.c,n.a&&(e.a=new kn(n.a),e.b=n.b),Qn(this,e),this.h=t.h}else t&&(e=(t+"").match(Mc))?(this.f=!!n,$n(this,e[1]||"",!0),this.l=re(e[2]||""),this.b=re(e[3]||"",!0),Zn(this,e[4]),this.g=re(e[5]||"",!0),Qn(this,e[6]||"",!0),this.h=re(e[7]||"")):(this.f=!!n,this.a=new se(null,0,this.f))}function $n(t,n,e){t.c=e?re(n,!0):n,t.c&&(t.c=t.c.replace(/:$/,""))}function Zn(t,n){if(n){if(n=+n,isNaN(n)||0>n)throw Error("Bad port number "+n);t.i=n}else t.i=null}function Qn(t,n,e){n instanceof se?(t.a=n,ve(t.a,t.f)):(e||(n=oe(n,qc)),t.a=new se(n,0,t.f))}function te(t,n,e){t.a.set(n,e)}function ne(t,n){return t.a.get(n)}function ee(t){return t instanceof Yn?new Yn(t):new Yn(t,void 0)}function ie(t,n){var e=new Yn(null,void 0);return $n(e,"https"),t&&(e.b=t),n&&(e.g=n),e}function re(t,n){return t?n?decodeURI(t.replace(/%25/g,"%2525")):decodeURIComponent(t):""}function oe(n,e,i){return t(n)?(n=encodeURI(n).replace(e,ae),i&&(n=n.replace(/%25([0-9a-fA-F]{2})/g,"%$1")),n):null}function ae(t){return t=t.charCodeAt(0),"%"+(t>>4&15).toString(16)+(15&t).toString(16)}function se(t,n,e){this.b=this.a=null,this.c=t||null,this.f=!!e}function ue(t){t.a||(t.a=new kn,t.b=0,t.c&&Jn(t.c,function(n,e){he(t,decodeURIComponent(n.replace(/\+/g," ")),e)}))}function ce(t){var n=Gn(t);if(void 0===n)throw Error("Keys are undefined");var e=new se(null,0,void 0);t=Wn(t);for(var i=0;i<n.length;i++){var r=n[i],o=t[i];a(o)?pe(e,r,o):he(e,r,o)}return e}function he(t,n,e){ue(t),t.c=null,n=de(t,n);var i=t.a.get(n);i||t.a.set(n,i=[]),i.push(e),t.b+=1}function fe(t,n){ue(t),n=de(t,n),En(t.a.b,n)&&(t.c=null,t.b-=t.a.get(n).length,t=t.a,En(t.b,n)&&(delete t.b[n],t.c--,t.a.length>2*t.c&&An(t)))}function le(t,n){return ue(t),n=de(t,n),En(t.a.b,n)}function pe(t,n,e){fe(t,n),0<e.length&&(t.c=null,t.a.set(de(t,n),O(e)),t.b+=e.length)}function de(t,n){return n+="",t.f&&(n=n.toLowerCase()),n}function ve(t,n){n&&!t.f&&(ue(t),t.c=null,t.a.forEach(function(t,n){var e=n.toLowerCase();n!=e&&(fe(this,n),pe(this,e,t))},t)),t.f=n}function me(){}function ge(t){return t.c||(t.c=t.b())}function be(){}function we(t){if(!t.f&&"undefined"==typeof XMLHttpRequest&&"undefined"!=typeof ActiveXObject){for(var n=["MSXML2.XMLHTTP.6.0","MSXML2.XMLHTTP.3.0","MSXML2.XMLHTTP","Microsoft.XMLHTTP"],e=0;e<4;e++){var i=n[e];try{return new ActiveXObject(i),t.f=i}catch(t){}}throw Error("Could not create ActiveXObject. ActiveX might be disabled, or MSXML might not be installed")}return t.f}function ye(t){fn.call(this),this.headers=new kn,this.w=t||null,this.b=!1,this.v=this.a=null,this.g=this.I=this.i="",this.c=this.G=this.h=this.A=!1,this.f=0,this.m=null,this.l=Hc,this.o=this.N=!1}function Ie(t,n,e,i,r){if(t.a)throw Error("[goog.net.XhrIo] Object is active with another request="+t.i+"; newUri="+n);e=e?e.toUpperCase():"GET",t.i=n,t.g="",t.I=e,t.A=!1,t.b=!0,t.a=t.w?t.w.a():Bc.a(),t.v=ge(t.w?t.w:Bc),t.a.onreadystatechange=l(t.zb,t);try{Nn(t.J,Re(t,"Opening Xhr")),t.G=!0,t.a.open(e,n+"",!0),t.G=!1}catch(n){return Nn(t.J,Re(t,"Error opening Xhr: "+n.message)),void Ae(t,n)}n=i||"";var o=new kn(t.headers);r&&zn(r,function(t,n){o.set(n,t)}),r=k(o.S()),i=uu.FormData&&n instanceof uu.FormData,!A(Jc,e)||r||i||o.set("Content-Type","application/x-www-form-urlencoded;charset=utf-8"),o.forEach(function(t,n){this.a.setRequestHeader(n,t)},t),t.l&&(t.a.responseType=t.l),"withCredentials"in t.a&&t.a.withCredentials!==t.N&&(t.a.withCredentials=t.N);try{Oe(t),0<t.f&&(t.o=Te(t.a),Nn(t.J,Re(t,"Will abort after "+t.f+"ms if incomplete, xhr2 "+t.o)),t.o?(t.a.timeout=t.f,t.a.ontimeout=l(t.Ea,t)):t.m=mn(t.Ea,t.f,t)),Nn(t.J,Re(t,"Sending request")),t.h=!0,t.a.send(n),t.h=!1}catch(n){Nn(t.J,Re(t,"Send error: "+n.message)),Ae(t,n)}}function Te(t){return Cu&&F(9)&&"number"==typeof t.timeout&&void 0!==t.ontimeout}function ke(t){return"content-type"==t.toLowerCase()}function Ae(t,n){t.b=!1,t.a&&(t.c=!0,t.a.abort(),t.c=!1),t.g=n,Ee(t),Se(t)}function Ee(t){t.A||(t.A=!0,ln(t,"complete"),ln(t,"error"))}function Ne(t){if(t.b&&void 0!==su)if(t.v[1]&&4==Pe(t)&&2==Ce(t))Nn(t.J,Re(t,"Local request error detected and ignored"));else if(t.h&&4==Pe(t))mn(t.zb,0,t);else if(ln(t,"readystatechange"),4==Pe(t)){Nn(t.J,Re(t,"Request complete")),t.b=!1;try{var n=Ce(t);t:switch(n){case 200:case 201:case 202:case 204:case 206:case 304:case 1223:var e=!0;break t;default:e=!1}var i;if(!(i=e)){var r;if(r=0===n){var o=(t.i+"").match(Mc)[1]||null;if(!o&&uu.self&&uu.self.location){var a=uu.self.location.protocol;o=a.substr(0,a.length-1)}r=!zc.test(o?o.toLowerCase():"")}i=r}if(i)ln(t,"complete"),ln(t,"success");else{try{var s=2<Pe(t)?t.a.statusText:""}catch(n){Nn(t.J,"Can not get status: "+n.message),s=""}t.g=s+" ["+Ce(t)+"]",Ee(t)}}finally{Se(t)}}}function Se(t,n){if(t.a){Oe(t);var e=t.a,r=t.v[0]?i:null;t.a=null,t.v=null,n||ln(t,"ready");try{e.onreadystatechange=r}catch(n){(t=t.J)&&t.log(Tc,"Problem encountered resetting onreadystatechange: "+n.message,void 0)}}}function Oe(t){t.a&&t.o&&(t.a.ontimeout=null),"number"==typeof t.m&&(uu.clearTimeout(t.m),t.m=null)}function Pe(t){return t.a?t.a.readyState:0}function Ce(t){try{return 2<Pe(t)?t.a.status:-1}catch(t){return-1}}function _e(t){try{return t.a?t.a.responseText:""}catch(n){return Nn(t.J,"Can not get responseText: "+n.message),""}}function Re(t,n){return n+" ["+t.I+" "+t.i+" "+Ce(t)+"]"}function De(t){var n={},e=n.document||document,i=kt(t),r=document.createElement("SCRIPT"),o={Bb:r,Ea:void 0},a=new _n(xe,o),s=null,u=null!=n.timeout?n.timeout:5e3;return 0<u&&(s=window.setTimeout(function(){je(r,!0);var t=new Ue(Zc,"Timeout reached for loading script "+i);Dn(a),Rn(a,!1,t)},u),o.Ea=s),r.onload=r.onreadystatechange=function(){r.readyState&&"loaded"!=r.readyState&&"complete"!=r.readyState||(je(r,n.Oc||!1,s),a.A(null))},r.onerror=function(){je(r,!0,s);var t=new Ue($c,"Error while loading script "+i);Dn(a),Rn(a,!1,t)},o=n.attributes||{},j(o,{type:"text/javascript",charset:"UTF-8"}),Lt(r,o),r.src=kt(t),Le(e).appendChild(r),a}function Le(t){var n;return(n=(t||document).getElementsByTagName("HEAD"))&&0!=n.length?n[0]:t.documentElement}function xe(){if(this&&this.Bb){var t=this.Bb;t&&"SCRIPT"==t.tagName&&je(t,!0,this.Ea)}}function je(t,n,e){null!=e&&uu.clearTimeout(e),t.onload=i,t.onerror=i,t.onreadystatechange=i,n&&window.setTimeout(function(){t&&t.parentNode&&t.parentNode.removeChild(t)},0)}function Ue(t,n){var e="Jsloader error (code #"+t+")";n&&(e+=": "+n),v.call(this,e),this.code=t}function Me(){}function Ve(){this.a=new XDomainRequest,this.readyState=0,this.onreadystatechange=null,this.responseText="",this.status=-1,this.statusText=this.responseXML=null,this.a.onload=l(this.Sb,this),this.a.onerror=l(this.wb,this),this.a.onprogress=l(this.Tb,this),this.a.ontimeout=l(this.Ub,this)}function Fe(t,n){t.readyState=n,t.onreadystatechange&&t.onreadystatechange()}function Ke(){var t=ri();return Cu&&!!Mu&&11==Mu||/Edge\/\d+/.test(t)}function qe(){return uu.window&&uu.window.location.href||""}function Xe(t,n){n=n||uu.window;var e="about:blank";t&&(e=St(Ot(t))),n.location.href=e}function Be(t,n){var e,i=[];for(e in t)e in n?typeof t[e]!=typeof n[e]?i.push(e):a(t[e])?L(t[e],n[e])||i.push(e):"object"==typeof t[e]&&null!=t[e]&&null!=n[e]?0<Be(t[e],n[e]).length&&i.push(e):t[e]!==n[e]&&i.push(e):i.push(e);for(e in n)e in t||i.push(e);return i}function He(){var t=ri();return!((t=ei(t)!=nh?null:(t=t.match(/\sChrome\/(\d+)/i))&&2==t.length?parseInt(t[1],10):null)&&30>t||Cu&&Mu&&!(9<Mu))}function We(t){return t=(t||ri()).toLowerCase(),!!(t.match(/android/)||t.match(/webos/)||t.match(/iphone|ipad|ipod/)||t.match(/blackberry/)||t.match(/windows phone/)||t.match(/iemobile/))}function Ge(t){t=t||uu.window;try{t.close()}catch(t){}}function ze(t,n,e){var i=""+Math.floor(1e9*Math.random());n=n||500,e=e||600;var r=(window.screen.availHeight-e)/2,o=(window.screen.availWidth-n)/2;n={width:n,height:e,top:0<r?r:0,left:0<o?o:0,location:!0,resizable:!0,statusbar:!0,toolbar:!1},e=ri().toLowerCase(),i&&(n.target=i,b(e,"crios/")&&(n.target="_blank")),ei(ri())==th&&(t=t||"http://localhost",n.scrollbars=!0),e=t||"",(i=n)||(i={}),t=window,n=e instanceof Nt?e:Ot(void 0!==e.href?e.href:e+""),e=i.target||e.target,r=[];for(a in i)switch(a){case"width":case"height":case"top":case"left":r.push(a+"="+i[a]);break;case"target":case"noreferrer":break;default:r.push(a+"="+(i[a]?1:0))}var a=r.join(",");if((P("iPhone")&&!P("iPod")&&!P("iPad")||P("iPad")||P("iPod"))&&t.navigator&&t.navigator.standalone&&e&&"_self"!=e?(a=t.document.createElement("A"),n instanceof Nt||n instanceof Nt||(n=n.la?n.ja():n+"",ec.test(n)||(n="about:invalid#zClosurez"),n=Pt(n)),a.href=St(n),a.setAttribute("target",e),i.noreferrer&&a.setAttribute("rel","noreferrer"),i=document.createEvent("MouseEvent"),i.initMouseEvent("click",!0,!0,t,1),a.dispatchEvent(i),a={}):i.noreferrer?(a=t.open("",e,a),t=St(n),a&&(Ru&&b(t,";")&&(t="'"+t.replace(/'/g,"%27")+"'"),a.opener=null,It("b/12014412, meta tag with sanitized URL"),t='<META HTTP-EQUIV="refresh" content="0; url='+g(t)+'">',t=Rt(t),a.document.write(_t(t)),a.document.close())):a=t.open(St(n),e,a),a)try{a.focus()}catch(t){}return a}function Je(t){return new Z(function(n){function e(){gn(2e3).then(function(){if(t&&!t.closed)return e();n()})}return e()})}function Ye(){var t=null;return new Z(function(n){"complete"==uu.document.readyState?n():(t=function(){n()},nn(window,"load",t))}).s(function(n){throw en(window,"load",t),n})}function $e(){return Ze(void 0)?Ye().then(function(){return new Z(function(t,n){var e=uu.document,i=setTimeout(function(){n(Error("Cordova framework is not ready."))},1e3);e.addEventListener("deviceready",function(){clearTimeout(i),t()},!1)})}):et(Error("Cordova must run in an Android or iOS file scheme."))}function Ze(t){return t=t||ri(),!("file:"!==ci()||!t.toLowerCase().match(/iphone|ipad|ipod|android/))}function Qe(){var t=uu.window;try{return!(!t||t==t.top)}catch(t){return!1}}function ti(){return au.INTERNAL.hasOwnProperty("reactNative")?"ReactNative":au.INTERNAL.hasOwnProperty("node")?"Node":"Browser"}function ni(){var t=ti();return"ReactNative"===t||"Node"===t}function ei(t){var n=t.toLowerCase();return b(n,"opera/")||b(n,"opr/")||b(n,"opios/")?"Opera":b(n,"iemobile")?"IEMobile":b(n,"msie")||b(n,"trident/")?"IE":b(n,"edge/")?"Edge":b(n,"firefox/")?th:b(n,"silk/")?"Silk":b(n,"blackberry")?"Blackberry":b(n,"webos")?"Webos":!b(n,"safari/")||b(n,"chrome/")||b(n,"crios/")||b(n,"android")?!b(n,"chrome/")&&!b(n,"crios/")||b(n,"edge/")?b(n,"android")?"Android":(t=t.match(/([a-zA-Z\d\.]+)\/[a-zA-Z\d\.]*$/))&&2==t.length?t[1]:"Other":nh:"Safari"}function ii(t,n){n=n||[];var e,i=[],r={};for(e in eh)r[eh[e]]=!0;for(e=0;e<n.length;e++)void 0!==r[n[e]]&&(delete r[n[e]],i.push(n[e]));return i.sort(),n=i,n.length||(n=["FirebaseCore-web"]),i=ti(),r="",(r="Browser"===i?ei(ri()):i)+"/JsCore/"+t+"/"+n.join(",")}function ri(){return uu.navigator&&uu.navigator.userAgent||""}function oi(t,n){t=t.split("."),n=n||uu;for(var e=0;e<t.length&&"object"==typeof n&&null!=n;e++)n=n[t[e]];return e!=t.length&&(n=void 0),n}function ai(){try{var t=uu.localStorage,n=di();if(t)return t.setItem(n,"1"),t.removeItem(n),!Ke()||!!uu.indexedDB}catch(t){}return!1}function si(){return(ui()||"chrome-extension:"===ci()||Ze())&&!ni()&&ai()}function ui(){return"http:"===ci()||"https:"===ci()}function ci(){return uu.location&&uu.location.protocol||null}function hi(t){return t=t||ri(),!We(t)&&ei(t)!=th}function fi(t){return void 0===t?null:Mt(t)}function li(t){var n,e={};for(n in t)t.hasOwnProperty(n)&&null!==t[n]&&void 0!==t[n]&&(e[n]=t[n]);return e}function pi(t){if(null!==t)return JSON.parse(t)}function di(t){return t||""+Math.floor(1e9*Math.random())}function vi(t){return t=t||ri(),"Safari"!=ei(t)&&!t.toLowerCase().match(/iphone|ipad|ipod/)}function mi(){var t=uu.___jsl;if(t&&t.H)for(var n in t.H)if(t.H[n].r=t.H[n].r||[],t.H[n].L=t.H[n].L||[],t.H[n].r=t.H[n].L.concat(),t.CP)for(var e=0;e<t.CP.length;e++)t.CP[e]=null}function gi(){var t=uu.navigator;return!t||"boolean"!=typeof t.onLine||!ui()&&"chrome-extension:"!==ci()&&void 0===t.connection||t.onLine}function bi(t,n,e,i){if(t>n)throw Error("Short delay should be less than long delay!");this.c=t,this.b=n,t=e||ri(),i=i||ti(),this.a=We(t)||"ReactNative"===i}function wi(){var t=uu.document;return!t||void 0===t.visibilityState||"visible"==t.visibilityState}function yi(){var t=uu.document,n=null;return wi()||!t?nt():new Z(function(e){n=function(){wi()&&(t.removeEventListener("visibilitychange",n,!1),e())},t.addEventListener("visibilitychange",n,!1)}).s(function(e){throw t.removeEventListener("visibilitychange",n,!1),e})}function Ii(t){try{var n=new Date(parseInt(t,10));if(!isNaN(n.getTime())&&!/[^0-9]/.test(t))return n.toUTCString()}catch(t){}return null}function Ti(t,n,e){ih?Object.defineProperty(t,n,{configurable:!0,enumerable:!0,value:e}):t[n]=e}function ki(t,n){if(n)for(var e in n)n.hasOwnProperty(e)&&Ti(t,e,n[e])}function Ai(t){var n={};return ki(n,t),n}function Ei(t){var n,e={};for(n in t)t.hasOwnProperty(n)&&(e[n]=t[n]);return e}function Ni(t,n){if(!n||!n.length)return!0;if(!t)return!1;for(var e=0;e<n.length;e++){var i=t[n[e]];if(void 0===i||null===i||""===i)return!1}return!0}function Si(t){var n=t;if("object"==typeof t&&null!=t){n="length"in t?[]:{};for(var e in t)Ti(n,e,Si(t[e]))}return n}function Oi(t){var n={},e=t[ah],i=t[sh];if(t=t[uh],!e||!t)throw Error("Invalid provider user info!");n[hh]=i||null,n[ch]=e,Ti(this,lh,t),Ti(this,fh,Si(n))}function Pi(t,n){this.code=ph+t,this.message=n||dh[t]||""}function Ci(t){var n=t&&t.code;return n?new Pi(n.substring(ph.length),t.message):null}function _i(t){var n=t[bh];if(void 0===n)throw new Pi("missing-continue-uri");if("string"!=typeof n||"string"==typeof n&&!n.length)throw new Pi("invalid-continue-uri");this.h=n,this.c=this.a=null,this.g=!1;var e=t[vh];if(e&&"object"==typeof e){n=e[Ih];var i=e[wh];if(e=e[yh],"string"==typeof n&&n.length){if(this.a=n,void 0!==i&&"boolean"!=typeof i)throw new Pi("argument-error",wh+" property must be a boolean when specified.");if(this.g=!!i,void 0!==e&&("string"!=typeof e||"string"==typeof e&&!e.length))throw new Pi("argument-error",yh+" property must be a non empty string when specified.");this.c=e||null}else{if(void 0!==n)throw new Pi("argument-error",Ih+" property must be a non empty string when specified.");if(void 0!==i||void 0!==e)throw new Pi("missing-android-pkg-name")}}else if(void 0!==e)throw new Pi("argument-error",vh+" property must be a non null object when specified.");if(this.b=null,(n=t[gh])&&"object"==typeof n){if("string"==typeof(n=n[Th])&&n.length)this.b=n;else if(void 0!==n)throw new Pi("argument-error",Th+" property must be a non empty string when specified.")}else if(void 0!==n)throw new Pi("argument-error",gh+" property must be a non null object when specified.");if(void 0!==(t=t[mh])&&"boolean"!=typeof t)throw new Pi("argument-error",mh+" property must be a boolean when specified.");if((this.f=!!t)&&!this.b&&!this.a)throw new Pi("argument-error",mh+" property can't be true when no mobile application is provided.")}function Ri(t){var n={};n.continueUrl=t.h,n.canHandleCodeInApp=t.f,(n.androidPackageName=t.a)&&(n.androidMinimumVersion=t.c,n.androidInstallApp=t.g),n.iOSBundleId=t.b;for(var e in n)null===n[e]&&delete n[e];return n}function Di(t){this.b=t.sub,fu(),this.a=t.provider_id||t.firebase&&t.firebase.sign_in_provider||null}function Li(t){if(t=t.split("."),3!=t.length)return null;t=t[1];for(var n=(4-t.length%4)%4,e=0;e<n;e++)t+=".";try{var i=JSON.parse(On(t));if(i.sub&&i.iss&&i.aud&&i.exp)return new Di(i)}catch(t){}return null}function xi(t){for(var n in Eh)if(Eh[n].Na==t)return Eh[n];return null}function ji(t){var n={};n["facebook.com"]=Vi,n["google.com"]=Ki,n["github.com"]=Fi,n["twitter.com"]=qi;var e=t&&t[Sh];try{if(e)return n[e]?new n[e](t):new Mi(t);if(void 0!==t[Nh])return new Ui(t)}catch(t){}return null}function Ui(t){var n=t[Sh];if(!n&&t[Nh]){var e=Li(t[Nh]);e&&e.a&&(n=e.a)}if(!n)throw Error("Invalid additional user info!");t=!!t.isNewUser,Ti(this,"providerId",n),Ti(this,"isNewUser",t)}function Mi(t){Ui.call(this,t),t=pi(t.rawUserInfo||"{}"),Ti(this,"profile",Si(t||{}))}function Vi(t){if(Mi.call(this,t),"facebook.com"!=this.providerId)throw Error("Invalid provider ID!")}function Fi(t){if(Mi.call(this,t),"github.com"!=this.providerId)throw Error("Invalid provider ID!");Ti(this,"username",this.profile&&this.profile.login||null)}function Ki(t){if(Mi.call(this,t),"google.com"!=this.providerId)throw Error("Invalid provider ID!")}function qi(t){if(Mi.call(this,t),"twitter.com"!=this.providerId)throw Error("Invalid provider ID!");Ti(this,"username",t.screenName||null)}function Xi(t,n){return t.then(function(t){if(t[Ph]){var e=Li(t[Ph]);if(!e||n!=e.b)throw new Pi("user-mismatch");return t}throw new Pi("user-mismatch")}).s(function(t){throw t&&t.code&&t.code==ph+"user-not-found"?new Pi("user-mismatch"):t})}function Bi(t,n){if(n.idToken||n.accessToken)n.idToken&&Ti(this,"idToken",n.idToken),n.accessToken&&Ti(this,"accessToken",n.accessToken);else{if(!n.oauthToken||!n.oauthTokenSecret)throw new Pi("internal-error","failed to construct a credential");Ti(this,"accessToken",n.oauthToken),Ti(this,"secret",n.oauthTokenSecret)}Ti(this,"providerId",t)}function Hi(t){var n={};return t.idToken&&(n.id_token=t.idToken),t.accessToken&&(n.access_token=t.accessToken),t.secret&&(n.oauth_token_secret=t.secret),n.providerId=t.providerId,{postBody:""+ce(n),requestUri:"http://localhost"}}function Wi(t,n){this.nc=n||[],ki(this,{providerId:t,isOAuthProvider:!0}),this.qb={},this.Wa=(xi(t)||{}).Ma||null,this.Ua=null}function Gi(t){Wi.call(this,t,Ah),this.a=[]}function zi(){Gi.call(this,"facebook.com")}function Ji(t){if(!t)throw new Pi("argument-error","credential failed: expected 1 argument (the OAuth access token).");var n=t;return c(t)&&(n=t.accessToken),(new zi).credential(null,n)}function Yi(){Gi.call(this,"github.com")}function $i(t){if(!t)throw new Pi("argument-error","credential failed: expected 1 argument (the OAuth access token).");var n=t;return c(t)&&(n=t.accessToken),(new Yi).credential(null,n)}function Zi(){Gi.call(this,"google.com"),this.sa("profile")}function Qi(t,n){var e=t;return c(t)&&(e=t.idToken,n=t.accessToken),(new Zi).credential(e,n)}function tr(){Wi.call(this,"twitter.com",kh)}function nr(t,n){var e=t;if(c(e)||(e={oauthToken:t,oauthTokenSecret:n}),!e.oauthToken||!e.oauthTokenSecret)throw new Pi("argument-error","credential failed: expected 2 arguments (the OAuth access token and secret).");return new Bi("twitter.com",e)}function er(t,n){this.a=t,this.f=n,Ti(this,"providerId","password")}function ir(){ki(this,{providerId:"password",isOAuthProvider:!1})}function rr(t){if(!(t.Pa&&t.Oa||t.Da&&t.Y))throw new Pi("internal-error");this.a=t,Ti(this,"providerId","phone")}function or(t){return t.a.Da&&t.a.Y?{temporaryProof:t.a.Da,phoneNumber:t.a.Y}:{sessionInfo:t.a.Pa,code:t.a.Oa}}function ar(t){try{this.a=t||au.auth()}catch(t){throw new Pi("argument-error","Either an instance of firebase.auth.Auth must be passed as an argument to the firebase.auth.PhoneAuthProvider constructor, or the default firebase App instance must be initialized via firebase.initializeApp().")}ki(this,{providerId:"phone",isOAuthProvider:!1})}function sr(t,n){if(!t)throw new Pi("missing-verification-id");if(!n)throw new Pi("missing-verification-code");return new rr({Pa:t,Oa:n})}function ur(t){if(t.temporaryProof&&t.phoneNumber)return new rr({Da:t.temporaryProof,Y:t.phoneNumber});var n=t&&t.providerId;if(!n||"password"===n)return null;var e=t&&t.oauthAccessToken,i=t&&t.oauthTokenSecret;t=t&&t.oauthIdToken;try{switch(n){case"google.com":return Qi(t,e);case"facebook.com":return Ji(e);case"github.com":return $i(e);case"twitter.com":return nr(e,i);default:return new Gi(n).credential(t,e)}}catch(t){return null}}function cr(t){if(!t.isOAuthProvider)throw new Pi("invalid-oauth-provider")}function hr(t,n,e,i,r){if(this.b=t,this.c=n||null,this.f=e||null,this.g=i||null,this.a=r||null,!this.f&&!this.a)throw new Pi("invalid-auth-event");if(this.f&&this.a)throw new Pi("invalid-auth-event");if(this.f&&!this.g)throw new Pi("invalid-auth-event")}function fr(t){return t=t||{},t.type?new hr(t.type,t.eventId,t.urlResponse,t.sessionId,t.error&&Ci(t.error)):null}function lr(t){var n="unauthorized-domain",e=void 0,i=ee(t);t=i.b,i=i.c,"chrome-extension"==i?e=m("This chrome extension ID (chrome-extension://%s) is not authorized to run this operation. Add it to the OAuth redirect domains list in the Firebase console -> Auth section -> Sign in method tab.",t):"http"==i||"https"==i?e=m("This domain (%s) is not authorized to run this operation. Add it to the OAuth redirect domains list in the Firebase console -> Auth section -> Sign in method tab.",t):n="operation-not-supported-in-this-environment",Pi.call(this,n,e)}function pr(t,n,e){Pi.call(this,t,e),t=n||{},t.rb&&Ti(this,"email",t.rb),t.Y&&Ti(this,"phoneNumber",t.Y),t.credential&&Ti(this,"credential",t.credential)}function dr(t){if(t.code){var n=t.code||"";0==n.indexOf(ph)&&(n=n.substring(ph.length));var e={credential:ur(t)};if(t.email)e.rb=t.email;else{if(!t.phoneNumber)return new Pi(n,t.message||void 0);e.Y=t.phoneNumber}return new pr(n,e,t.message)}return null}function vr(t){this.f=t}function mr(t,n,e){var i="Node"==ti();if(!(i=uu.XMLHttpRequest||i&&au.INTERNAL.node&&au.INTERNAL.node.XMLHttpRequest))throw new Pi("internal-error","The XMLHttpRequest compatibility library was not found.");this.b=t,t=n||{},this.i=t.secureTokenEndpoint||"https://securetoken.googleapis.com/v1/token",this.l=t.secureTokenTimeout||Ch,this.c=x(t.secureTokenHeaders||_h),this.g=t.firebaseEndpoint||"https://www.googleapis.com/identitytoolkit/v3/relyingparty/",this.h=t.firebaseTimeout||Rh,this.a=x(t.firebaseHeaders||Dh),e&&(this.a["X-Client-Version"]=e,this.c["X-Client-Version"]=e),this.f=new Me,this.o=new vr(i)}function gr(t,n){n?t.a["X-Firebase-Locale"]=n:delete t.a["X-Firebase-Locale"]}function br(t,n){n?(t.a["X-Client-Version"]=n,t.c["X-Client-Version"]=n):(delete t.a["X-Client-Version"],delete t.c["X-Client-Version"])}function wr(t,n,e,i,r,o,a){gi()?(He()?t=l(t.m,t):(Oh||(Oh=new Z(function(t,n){yr(t,n)})),t=l(t.u,t)),t(n,e,i,r,o,a)):e&&e(null)}function yr(t,n){((window.gapi||{}).client||{}).request?t():(uu[xh]=function(){((window.gapi||{}).client||{}).request?t():n(Error("CORS_UNSUPPORTED"))},Ln(De(At(Lh,{onload:xh})),function(){n(Error("CORS_UNSUPPORTED"))}))}function Ir(t,n){return new Z(function(e,i){"refresh_token"==n.grant_type&&n.refresh_token||"authorization_code"==n.grant_type&&n.code?wr(t,t.i+"?key="+encodeURIComponent(t.b),function(t){t?t.error?i(Vr(t)):t.access_token&&t.refresh_token?e(t):i(new Pi("internal-error")):i(new Pi("network-request-failed"))},"POST",""+ce(n),t.c,t.l.get()):i(new Pi("internal-error"))})}function Tr(t,n,e,i,r,o){var a=ee(t.g+n);te(a,"key",t.b),o&&te(a,"cb",""+fu());var s="GET"==e;if(s)for(var u in i)i.hasOwnProperty(u)&&te(a,u,i[u]);return new Z(function(n,o){wr(t,""+a,function(t){t?t.error?o(Vr(t,r||{})):n(t):o(new Pi("network-request-failed"))},e,s?void 0:Mt(li(i)),t.a,t.h.get())})}function kr(t){if(!Yc.test(t.email))throw new Pi("invalid-email")}function Ar(t){"email"in t&&kr(t)}function Er(t,n){return Ur(t,Kh,{identifier:n,continueUri:ui()?qe():"http://localhost"}).then(function(t){return t.allProviders||[]})}function Nr(t){return Ur(t,Gh,{}).then(function(t){return t.authorizedDomains||[]})}function Sr(t){if(!t[Ph])throw new Pi("internal-error")}function Or(t){if(t.phoneNumber||t.temporaryProof){if(!t.phoneNumber||!t.temporaryProof)throw new Pi("internal-error")}else{if(!t.sessionInfo)throw new Pi("missing-verification-id");if(!t.code)throw new Pi("missing-verification-code")}}function Pr(t,n){return Ur(t,Yh,n)}function Cr(t,n,e){return Ur(t,Xh,{idToken:n,deleteProvider:e})}function _r(t){if(!t.requestUri||!t.sessionId&&!t.postBody)throw new Pi("internal-error")}function Rr(t){var n=null;if(t.needConfirmation?(t.code="account-exists-with-different-credential",n=dr(t)):"FEDERATED_USER_ID_ALREADY_LINKED"==t.errorMessage?(t.code="credential-already-in-use",n=dr(t)):"EMAIL_EXISTS"==t.errorMessage?(t.code="email-already-in-use",n=dr(t)):t.errorMessage&&(n=Mr(t.errorMessage)),n)throw n;if(!t[Ph])throw new Pi("internal-error")}function Dr(t,n){return n.returnIdpCredential=!0,Ur(t,tf,n)}function Lr(t,n){return n.returnIdpCredential=!0,Ur(t,ef,n)}function xr(t,n){return n.returnIdpCredential=!0,n.autoCreate=!1,Ur(t,nf,n)}function jr(t){if(!t.oobCode)throw new Pi("invalid-action-code")}function Ur(t,n,e){if(!Ni(e,n.ea))return et(new Pi("internal-error"));var i,r=n.yb||"POST";return nt(e).then(n.D).then(function(){return n.T&&(e.returnSecureToken=!0),Tr(t,n.endpoint,r,e,n.Lb,n.nb||!1)}).then(function(t){return i=t}).then(n.O).then(function(){if(!n.ga)return i;if(!(n.ga in i))throw new Pi("internal-error");return i[n.ga]})}function Mr(t){return Vr({error:{errors:[{message:t}],code:400,message:t}})}function Vr(t,n){var e=(t.error&&t.error.errors&&t.error.errors[0]||{}).reason||"",i={keyInvalid:"invalid-api-key",ipRefererBlocked:"app-not-authorized"};if(e=i[e]?new Pi(i[e]):null)return e;e=t.error&&t.error.message||"",i={INVALID_CUSTOM_TOKEN:"invalid-custom-token",CREDENTIAL_MISMATCH:"custom-token-mismatch",MISSING_CUSTOM_TOKEN:"internal-error",INVALID_IDENTIFIER:"invalid-email",MISSING_CONTINUE_URI:"internal-error",INVALID_EMAIL:"invalid-email",INVALID_PASSWORD:"wrong-password",USER_DISABLED:"user-disabled",MISSING_PASSWORD:"internal-error",EMAIL_EXISTS:"email-already-in-use",PASSWORD_LOGIN_DISABLED:"operation-not-allowed",INVALID_IDP_RESPONSE:"invalid-credential",FEDERATED_USER_ID_ALREADY_LINKED:"credential-already-in-use",INVALID_MESSAGE_PAYLOAD:"invalid-message-payload",INVALID_RECIPIENT_EMAIL:"invalid-recipient-email",INVALID_SENDER:"invalid-sender",EMAIL_NOT_FOUND:"user-not-found",EXPIRED_OOB_CODE:"expired-action-code",INVALID_OOB_CODE:"invalid-action-code",MISSING_OOB_CODE:"internal-error",CREDENTIAL_TOO_OLD_LOGIN_AGAIN:"requires-recent-login",INVALID_ID_TOKEN:"invalid-user-token",TOKEN_EXPIRED:"user-token-expired",USER_NOT_FOUND:"user-token-expired",CORS_UNSUPPORTED:"cors-unsupported",DYNAMIC_LINK_NOT_ACTIVATED:"dynamic-link-not-activated",INVALID_APP_ID:"invalid-app-id",TOO_MANY_ATTEMPTS_TRY_LATER:"too-many-requests",WEAK_PASSWORD:"weak-password",OPERATION_NOT_ALLOWED:"operation-not-allowed",USER_CANCELLED:"user-cancelled",CAPTCHA_CHECK_FAILED:"captcha-check-failed",INVALID_APP_CREDENTIAL:"invalid-app-credential",INVALID_CODE:"invalid-verification-code",INVALID_PHONE_NUMBER:"invalid-phone-number",INVALID_SESSION_INFO:"invalid-verification-id",INVALID_TEMPORARY_PROOF:"invalid-credential",MISSING_APP_CREDENTIAL:"missing-app-credential",MISSING_CODE:"missing-verification-code",MISSING_PHONE_NUMBER:"missing-phone-number",MISSING_SESSION_INFO:"missing-verification-id",QUOTA_EXCEEDED:"quota-exceeded",SESSION_EXPIRED:"code-expired",INVALID_CONTINUE_URI:"invalid-continue-uri",MISSING_ANDROID_PACKAGE_NAME:"missing-android-pkg-name",MISSING_IOS_BUNDLE_ID:"missing-ios-bundle-id",UNAUTHORIZED_DOMAIN:"unauthorized-continue-uri",INVALID_OAUTH_CLIENT_ID:"invalid-oauth-client-id",INVALID_CERT_HASH:"invalid-cert-hash"},j(i,n||{}),n=(n=e.match(/^[^\s]+\s*:\s*(.*)$/))&&1<n.length?n[1]:void 0;for(var r in i)if(0===e.indexOf(r))return new Pi(i[r],n);return!n&&t&&(n=fi(t)),new Pi("internal-error",n)}function Fr(t){for(var n in cf)if(cf[n].id===t)return t=cf[n],{firebaseEndpoint:t.Va,secureTokenEndpoint:t.ab};return null}function Kr(t){this.b=t,this.a=null,this.Ya=qr(this)}function qr(t){return Hr().then(function(){return new Z(function(n,e){oi("gapi.iframes.getContext")().open({where:document.body,url:t.b,messageHandlersFilter:oi("gapi.iframes.CROSS_ORIGIN_IFRAMES_FILTER"),attributes:{style:{position:"absolute",top:"-100px",width:"1px",height:"1px"}},dontclear:!0},function(i){function r(){clearTimeout(o),n()}t.a=i,t.a.restyle({setHideOnLeave:!1});var o=setTimeout(function(){e(Error("Network Error"))},lf.get());i.ping(r).then(r,function(){e(Error("Network Error"))})})})})}function Xr(t,n){return t.Ya.then(function(){return new Z(function(e){t.a.send(n.type,n,e,oi("gapi.iframes.CROSS_ORIGIN_IFRAMES_FILTER"))})})}function Br(t,n){t.Ya.then(function(){t.a.register("authEvent",n,oi("gapi.iframes.CROSS_ORIGIN_IFRAMES_FILTER"))})}function Hr(){return pf||(pf=new Z(function(t,n){if(gi()){var e=function(){mi(),oi("gapi.load")("gapi.iframes",{callback:t,ontimeout:function(){mi(),n(Error("Network Error"))},timeout:ff.get()})};if(oi("gapi.iframes.Iframe"))t();else if(oi("gapi.load"))e();else{var i="__iframefcb"+Math.floor(1e6*Math.random());uu[i]=function(){oi("gapi.load")?e():n(Error("Network Error"))},i=At(hf,{onload:i}),nt(De(i)).s(function(){n(Error("Network Error"))})}}else n(Error("Network Error"))}).s(function(t){throw pf=null,t}))}function Wr(t,n,e){this.i=t,this.g=n,this.h=e,this.f=null,this.a=ie(this.i,"/__/auth/iframe"),te(this.a,"apiKey",this.g),te(this.a,"appName",this.h),this.b=null,this.c=[]}function Gr(t,n,e,i,r){this.m=t,this.u=n,this.c=e,this.l=i,this.i=this.g=this.h=null,this.a=r,this.f=null}function zr(t){try{return au.app(t).auth().Ka()}catch(t){return[]}}function Jr(t,n,e,i,r){this.u=t,this.f=n,this.b=e,this.c=i||null,this.h=r||null,this.m=this.o=this.v=null,this.g=[],this.l=this.a=null}function Yr(t){var n=qe();return Nr(t).then(function(t){t:{var e=ee(n),i=e.c;e=e.b;for(var r=0;r<t.length;r++){var o=t[r],a=e,s=i;if(0==o.indexOf("chrome-extension://")?a=ee(o).b==a&&"chrome-extension"==s:"http"!=s&&"https"!=s?a=!1:Qc.test(o)?a=a==o:(o=o.split(".").join("\\."),a=RegExp("^(.+\\."+o+"|"+o+")$","i").test(a)),a){t=!0;break t}}t=!1}if(!t)throw new lr(qe())})}function $r(t){return t.l?t.l:(t.l=Ye().then(function(){if(!t.o){var n=t.c,e=t.h,i=zr(t.b),r=new Wr(t.u,t.f,t.b);r.f=n,r.b=e,r.c=O(i||[]),t.o=""+r}t.i=new Kr(t.o),to(t)}),t.l)}function Zr(t){return t.m||(t.v=t.c?ii(t.c,zr(t.b)):null,t.m=new mr(t.f,Fr(t.h),t.v)),t.m}function Qr(t,n,e,i,r,o,a,s,u,c){return t=new Gr(t,n,e,i,r),t.h=o,t.g=a,t.i=s,t.b=x(u||null),t.f=c,""+t}function to(t){if(!t.i)throw Error("IfcHandler must be initialized!");Br(t.i,function(n){var e={};if(n&&n.authEvent){var i=!1;for(n=fr(n.authEvent),e=0;e<t.g.length;e++)i=t.g[e](n)||i;return e={},e.status=i?"ACK":"ERROR",nt(e)}return e.status="ERROR",nt(e)})}function no(t){var n={type:"webStorageSupport"};return $r(t).then(function(){return Xr(t.i,n)}).then(function(t){if(t&&t.length&&void 0!==t[0].webStorageSupport)return t[0].webStorageSupport;throw Error()})}function eo(t){if(this.a=t||au.INTERNAL.reactNative&&au.INTERNAL.reactNative.AsyncStorage,!this.a)throw new Pi("internal-error","The React Native compatibility library was not found.")}function io(){this.a={}}function ro(t,n,e,i,r,o){try{var a=!!uu.indexedDB}catch(t){a=!1}if(!a)throw new Pi("web-storage-unsupported");this.u=t,this.h=n,this.g=e,this.l=i,this.m=r,this.f={},this.c=[],this.a=0,this.o=o||uu.indexedDB}function oo(t){return new Z(function(n,e){var i=t.o.open(t.u,t.m);i.onerror=function(t){e(Error(t.target.errorCode))},i.onupgradeneeded=function(n){n=n.target.result;try{n.createObjectStore(t.h,{keyPath:t.g})}catch(t){e(t)}},i.onsuccess=function(t){n(t.target.result)}})}function ao(t){return t.i||(t.i=oo(t)),t.i}function so(t,n){return n.objectStore(t.h)}function uo(t,n,e){return n.transaction([t.h],e?"readwrite":"readonly")}function co(t){return new Z(function(n,e){t.onsuccess=function(t){t&&t.target?n(t.target.result):n()},t.onerror=function(t){e(Error(t.target.errorCode))}})}function ho(t){function n(){return t.b=gn(800).then(l(t.vc,t)).then(function(n){0<n.length&&Tu(t.c,function(t){t(n)})}).then(n).s(function(t){"STOP_EVENT"!=t.message&&n()}),t.b}t.b&&t.b.cancel("STOP_EVENT"),n()}function fo(){if(!po()){if("Node"==ti())throw new Pi("internal-error","The LocalStorage compatibility library was not found.");throw new Pi("web-storage-unsupported")}this.a=lo()||au.INTERNAL.node.localStorage}function lo(){try{var t=uu.localStorage,n=di();return t&&(t.setItem(n,"1"),t.removeItem(n)),t}catch(t){return null}}function po(){var t="Node"==ti();if(!(t=lo()||t&&au.INTERNAL.node&&au.INTERNAL.node.localStorage))return!1;try{return t.setItem("__sak","1"),t.removeItem("__sak"),!0}catch(t){return!1}}function vo(){}function mo(){if(!bo()){if("Node"==ti())throw new Pi("internal-error","The SessionStorage compatibility library was not found.");throw new Pi("web-storage-unsupported")}this.a=go()||au.INTERNAL.node.sessionStorage}function go(){try{var t=uu.sessionStorage,n=di();return t&&(t.setItem(n,"1"),t.removeItem(n)),t}catch(t){return null}}function bo(){var t="Node"==ti();if(!(t=go()||t&&au.INTERNAL.node&&au.INTERNAL.node.sessionStorage))return!1;try{return t.setItem("__sak","1"),t.removeItem("__sak"),!0}catch(t){return!1}}function wo(){var t={};t.Browser=gf,t.Node=bf,t.ReactNative=wf,this.a=t[ti()]}function yo(t){var n=new Pi("invalid-persistence-type"),e=new Pi("unsupported-persistence-type");t:{for(i in yf)if(yf[i]==t){var i=!0;break t}i=!1}if(!i||"string"!=typeof t)throw n;switch(ti()){case"ReactNative":if("session"===t)throw e;break;case"Node":if("none"!==t)throw e;break;default:if(!ai()&&"none"!==t)throw e}}function Io(t,n,e,i,r){this.i=t,this.g=n,this.A=e,this.u=i,this.v=r,this.a={},vf||(vf=new wo),t=vf;try{if(Ke()){df||(df=new ro("firebaseLocalStorageDb","firebaseLocalStorage","fbase_key","value",1));var o=df}else o=new t.a.C;this.l=o}catch(t){this.l=new io,this.u=!0}try{this.o=new t.a.jb}catch(t){this.o=new io}this.w=new io,this.h=l(this.m,this),this.b={}}function To(){return mf||(mf=new Io("firebase",":",!(vi(ri())||!Qe()),hi(),ai())),mf}function ko(t,n){switch(n){case"session":return t.o;case"none":return t.w;default:return t.l}}function Ao(t,n,e){return t.i+t.g+n.name+(e?t.g+e:"")}function Eo(t,n,e){return e=Ao(t,n,e),"local"==n.C&&(t.b[e]=null),ko(t,n.C).X(e)}function No(t,n,e,i){n=Ao(t,n,e),t.v&&(t.b[n]=uu.localStorage.getItem(n)),D(t.a)&&(ko(t,"local").ia(t.h),t.u||Ke()||!t.v||Oo(t)),t.a[n]||(t.a[n]=[]),t.a[n].push(i)}function So(t,n,e){n=Ao(t,cs("local"),n),t.a[n]&&(N(t.a[n],function(t){return t==e}),0==t.a[n].length&&delete t.a[n]),D(t.a)&&Co(t)}function Oo(t){Po(t),t.f=setInterval(function(){for(var n in t.a){var e=uu.localStorage.getItem(n),i=t.b[n];e!=i&&(t.b[n]=e,e=new Ht({type:"storage",key:n,target:window,oldValue:i,newValue:e,a:!0}),t.m(e))}},1e3)}function Po(t){t.f&&(clearInterval(t.f),t.f=null)}function Co(t){ko(t,"local").da(t.h),Po(t)}function _o(t){this.a=t,this.b=To()}function Ro(t){return t.b.get(If,t.a).then(function(t){return fr(t)})}function Do(){this.a=To()}function Lo(t,n,e,i,r,o,a){this.u=t,this.i=n,this.l=e,this.m=i||null,this.o=a||null,this.h=n+":"+e,this.A=new Do,this.g=new _o(this.h),this.f=null,this.b=[],this.v=r||500,this.w=o||2e3,this.a=this.c=null}function xo(t){return new Pi("invalid-cordova-configuration",t)}function jo(){for(var t=20,n=[];0<t;)n.push("1234567890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ".charAt(Math.floor(62*Math.random()))),t--;return n.join("")}function Uo(t){var n=new Hn;Bn(n,t),t=[];var e=8*n.g;56>n.c?Bn(n,xc,56-n.c):Bn(n,xc,n.b-(n.c-56));for(var i=63;56<=i;i--)n.f[i]=255&e,e/=256;for(Xn(n),i=e=0;i<n.i;i++)for(var r=24;0<=r;r-=8)t[e++]=n.a[i]>>r&255;return Sn(t)}function Mo(t,n,e,i){var r=jo(),o=new hr(n,i,null,r,new Pi("no-auth-event")),a=oi("BuildInfo.packageName",uu);if("string"!=typeof a)throw new Pi("invalid-cordova-configuration");var s=oi("BuildInfo.displayName",uu),u={};if(ri().toLowerCase().match(/iphone|ipad|ipod/))u.ibi=a;else{if(!ri().toLowerCase().match(/android/))return et(new Pi("operation-not-supported-in-this-environment"));u.apn=a}s&&(u.appDisplayName=s),r=Uo(r),u.sessionId=r;var c=Qr(t.u,t.i,t.l,n,e,null,i,t.m,u,t.o);return t.ba().then(function(){var n=t.h;return t.A.a.set(If,o.B(),n)}).then(function(){var n=oi("cordova.plugins.browsertab.isAvailable",uu);if("function"!=typeof n)throw new Pi("invalid-cordova-configuration");var e=null;n(function(n){if(n){if("function"!=typeof(e=oi("cordova.plugins.browsertab.openUrl",uu)))throw new Pi("invalid-cordova-configuration");e(c)}else{if("function"!=typeof(e=oi("cordova.InAppBrowser.open",uu)))throw new Pi("invalid-cordova-configuration");n=ri(),n=!(!n.match(/(iPad|iPhone|iPod).*OS 7_\d/i)&&!n.match(/(iPad|iPhone|iPod).*OS 8_\d/i)),t.a=e(c,n?"_blank":"_system","location=yes")}})})}function Vo(t,n){for(var e=0;e<t.b.length;e++)try{t.b[e](n)}catch(t){}}function Fo(t){return t.f||(t.f=t.ba().then(function(){return new Z(function(n){function e(i){return n(i),t.Ja(e),!1}t.ua(e),qo(t)})})),t.f}function Ko(t){var n=null;return Ro(t.g).then(function(e){return n=e,e=t.g,Eo(e.b,If,e.a)}).then(function(){return n})}function qo(t){function n(n){r=!0,o&&o.cancel(),Ko(t).then(function(e){var r=i;if(e&&n&&n.url){r=null;var o=n.url,a=ee(o),s=ne(a,"link"),u=ne(ee(s),"link");a=ne(a,"deep_link_id"),o=ne(ee(a),"link")||a||u||s||o,-1!=o.indexOf("/__/auth/callback")&&(r=ee(o),r=pi(ne(r,"firebaseError")||null),r=(r="object"==typeof r?Ci(r):null)?new hr(e.b,e.c,null,null,r):new hr(e.b,e.c,o,e.g)),r=r||i}Vo(t,r)})}var e=oi("universalLinks.subscribe",uu);if("function"!=typeof e)throw new Pi("invalid-cordova-configuration");var i=new hr("unknown",null,null,null,new Pi("no-auth-event")),r=!1,o=gn(t.v).then(function(){return Ko(t).then(function(){r||Vo(t,i)})}),a=uu.handleOpenURL;uu.handleOpenURL=function(t){if(0==t.toLowerCase().indexOf(oi("BuildInfo.packageName",uu).toLowerCase()+"://")&&n({url:t}),"function"==typeof a)try{a(t)}catch(t){console.error(t)}},e(null,n)}function Xo(t){this.a=t,this.b=To()}function Bo(t){return t.b.set(Tf,"pending",t.a)}function Ho(t){return Eo(t.b,Tf,t.a)}function Wo(t){return t.b.get(Tf,t.a).then(function(t){return"pending"==t})}function Go(t,n,e){this.v=t,this.l=n,this.u=e,this.h=[],this.f=!1,this.i=l(this.m,this),this.c=new ta,this.o=new sa,this.g=new Xo(this.l+":"+this.u),this.b={},this.b.unknown=this.c,this.b.signInViaRedirect=this.c,this.b.linkViaRedirect=this.c,this.b.reauthViaRedirect=this.c,this.b.signInViaPopup=this.o,this.b.linkViaPopup=this.o,this.b.reauthViaPopup=this.o,this.a=zo(this.v,this.l,this.u,Uh)}function zo(t,n,e,i){var r=au.SDK_VERSION||null;return Ze()?new Lo(t,n,e,r,void 0,void 0,i):new Jr(t,n,e,r,i)}function Jo(t){t.f||(t.f=!0,t.a.ua(t.i));var n=t.a;return t.a.ba().s(function(e){throw t.a==n&&t.reset(),e})}function Yo(t){t.a.Cb()&&Jo(t).s(function(n){var e=new hr("unknown",null,null,null,new Pi("operation-not-supported-in-this-environment"));Zo(n)&&t.m(e)}),t.a.xb()||na(t.c)}function $o(t,n,e,i,r,o){return t.a.ub(n,e,i,function(){t.f||(t.f=!0,t.a.ua(t.i))},function(){t.reset()},r,o)}function Zo(t){return!(!t||"auth/cordova-not-ready"!=t.code)}function Qo(t,n,e){var i=n+":"+e;return Ef[i]||(Ef[i]=new Go(t,n,e)),Ef[i]}function ta(){this.b=null,this.f=[],this.c=[],this.a=null,this.g=!1}function na(t){t.g||(t.g=!0,oa(t,!1,null,null))}function ea(t,n,e){e=e.va(n.b,n.c);var i=n.f,r=n.g,o=!!n.b.match(/Redirect$/);return e(i,r).then(function(n){oa(t,o,n,null)}).s(function(n){oa(t,o,null,n)})}function ia(t,n){if(t.b=function(){return et(n)},t.c.length)for(var e=0;e<t.c.length;e++)t.c[e](n)}function ra(t,n){if(t.b=function(){return nt(n)},t.f.length)for(var e=0;e<t.f.length;e++)t.f[e](n)}function oa(t,n,e,i){n?i?ia(t,i):ra(t,e):ra(t,{user:null}),t.f=[],t.c=[]}function aa(t){var n=new Pi("timeout");t.a&&t.a.cancel(),t.a=gn(Af.get()).then(function(){t.b||oa(t,!0,null,n)})}function sa(){}function ua(t,n){var e=t.c,i=t.b;return n.va(i,e)(t.f,t.g).then(function(t){n.fa(i,t,null,e)}).s(function(t){n.fa(i,null,t,e)})}function ca(t,n){this.a=n,Ti(this,"verificationId",t)}function ha(t,n,e,i){return new ar(t).Qa(n,e).then(function(t){return new ca(t,i)})}function fa(t,n,e,i,r,o){if(this.h=t,this.i=n,this.g=e,this.c=i,this.f=r,this.l=!!o,this.b=null,this.a=this.c,this.f<this.c)throw Error("Proactive refresh lower bound greater than upper bound!")}function la(t,n){return n?(t.a=t.c,t.g()):(n=t.a,t.a*=2,t.a>t.f&&(t.a=t.f),n)}function pa(t,n){da(t),t.b=gn(la(t,n)).then(function(){return t.l?nt():yi()}).then(function(){return t.h()}).then(function(){pa(t,!0)}).s(function(n){t.i(n)&&pa(t,!1)})}function da(t){t.b&&(t.b.cancel(),t.b=null)}function va(t){this.f=t,this.b=this.a=null,this.c=0}function ma(t,n){var e=n[Ph],i=n.refreshToken;n=ga(n.expiresIn),t.b=e,t.c=n,t.a=i}function ga(t){return fu()+1e3*parseInt(t,10)}function ba(t,n){return Ir(t.f,n).then(function(n){return t.b=n.access_token,t.c=ga(n.expires_in),t.a=n.refresh_token,{accessToken:t.b,expirationTime:t.c,refreshToken:t.a}}).s(function(n){throw"auth/user-token-expired"==n.code&&(t.a=null),n})}function wa(t,n){this.a=t||null,this.b=n||null,ki(this,{lastSignInTime:Ii(n||null),creationTime:Ii(t||null)})}function ya(t){return new wa(t.a,t.b)}function Ia(t,n,e,i,r,o){ki(this,{uid:t,displayName:i||null,photoURL:r||null,email:e||null,phoneNumber:o||null,providerId:n})}function Ta(t,n){Bt.call(this,t);for(var e in n)this[e]=n[e]}function ka(t,n,e){this.A=[],this.G=t.apiKey,this.o=t.appName,this.w=t.authDomain||null,t=au.SDK_VERSION?ii(au.SDK_VERSION):null,this.c=new mr(this.G,Fr(Uh),t),this.h=new va(this.c),_a(this,n[Ph]),ma(this.h,n),Ti(this,"refreshToken",this.h.a),xa(this,e||{}),fn.call(this),this.I=!1,this.w&&si()&&(this.a=Qo(this.w,this.G,this.o)),this.N=[],this.i=null,this.l=Oa(this),this.U=l(this.Ga,this);var i=this;this.ha=null,this.ra=function(t){i.na(t.h)},this.W=null,this.R=[],this.qa=function(t){Ea(i,t.f)},this.V=null}function Aa(t,n){t.W&&en(t.W,"languageCodeChanged",t.ra),(t.W=n)&&Zt(n,"languageCodeChanged",t.ra)}function Ea(t,n){t.R=n,br(t.c,au.SDK_VERSION?ii(au.SDK_VERSION,t.R):null)}function Na(t,n){t.V&&en(t.V,"frameworkChanged",t.qa),(t.V=n)&&Zt(n,"frameworkChanged",t.qa)}function Sa(t){try{return au.app(t.o).auth()}catch(n){throw new Pi("internal-error","No firebase.auth.Auth instance is available for the Firebase App '"+t.o+"'!")}}function Oa(t){return new fa(function(){return t.F(!0)},function(t){return!(!t||"auth/network-request-failed"!=t.code)},function(){var n=t.h.c-fu()-3e5;return 0<n?n:0},3e4,96e4,!1)}function Pa(t){t.m||t.l.b||(t.l.start(),en(t,"tokenChanged",t.U),Zt(t,"tokenChanged",t.U))}function Ca(t){en(t,"tokenChanged",t.U),da(t.l)}function _a(t,n){t.pa=n,Ti(t,"_lat",n)}function Ra(t,n){N(t.N,function(t){return t==n})}function Da(t){for(var n=[],e=0;e<t.N.length;e++)n.push(t.N[e](t));return ot(n).then(function(){return t})}function La(t){t.a&&!t.I&&(t.I=!0,t.a.subscribe(t))}function xa(t,n){ki(t,{uid:n.uid,displayName:n.displayName||null,photoURL:n.photoURL||null,email:n.email||null,emailVerified:n.emailVerified||!1,phoneNumber:n.phoneNumber||null,isAnonymous:n.isAnonymous||!1,metadata:new wa(n.createdAt,n.lastLoginAt),providerData:[]})}function ja(){}function Ua(t){return nt().then(function(){if(t.m)throw new Pi("app-deleted")})}function Ma(t){return ku(t.providerData,function(t){return t.providerId})}function Va(t,n){n&&(Fa(t,n.providerId),t.providerData.push(n))}function Fa(t,n){N(t.providerData,function(t){return t.providerId==n})}function Ka(t,n,e){("uid"!=n||e)&&t.hasOwnProperty(n)&&Ti(t,n,e)}function qa(t,n){t!=n&&(ki(t,{uid:n.uid,displayName:n.displayName,photoURL:n.photoURL,email:n.email,emailVerified:n.emailVerified,phoneNumber:n.phoneNumber,isAnonymous:n.isAnonymous,providerData:[]}),n.metadata?Ti(t,"metadata",ya(n.metadata)):Ti(t,"metadata",new wa),Tu(n.providerData,function(n){Va(t,n)}),t.h=n.h,Ti(t,"refreshToken",t.h.a))}function Xa(t){return t.F().then(function(n){var e=t.isAnonymous;return Ha(t,n).then(function(){return e||Ka(t,"isAnonymous",!1),n})})}function Ba(t,n){n[Ph]&&t.pa!=n[Ph]&&(ma(t.h,n),ln(t,new Ta("tokenChanged")),_a(t,n[Ph]),Ka(t,"refreshToken",t.h.a))}function Ha(t,n){return Ur(t.c,Bh,{idToken:n}).then(l(t.gc,t))}function Wa(t){return(t=t.providerUserInfo)&&t.length?ku(t,function(t){return new Ia(t.rawId,t.providerId,t.email,t.displayName,t.photoUrl,t.phoneNumber)}):[]}function Ga(t,n){return Xa(t).then(function(){if(A(Ma(t),n))return Da(t).then(function(){throw new Pi("provider-already-linked")})})}function za(t,n,e){var i=ur(n);return n=ji(n),Ai({user:t,credential:i,additionalUserInfo:n,operationType:e})}function Ja(t,n){return Ba(t,n),t.reload().then(function(){return t})}function Ya(t,n,e,i,r){if(!si())return et(new Pi("operation-not-supported-in-this-environment"));if(t.i&&!r)return et(t.i);var o=xi(e.providerId),a=di(t.uid+":::"),s=null;(!hi()||Qe())&&t.w&&e.isOAuthProvider&&(s=Qr(t.w,t.G,t.o,n,e,null,a,au.SDK_VERSION||null));var u=ze(s,o&&o.za,o&&o.ya);return i=i().then(function(){if(Za(t),!r)return t.F().then(function(){})}).then(function(){return $o(t.a,u,n,e,a,!!s)}).then(function(){return new Z(function(e,i){t.fa(n,null,new Pi("cancelled-popup-request"),t.g||null),t.f=e,t.v=i,t.g=a,t.b=t.a.Ca(t,n,u,a)})}).then(function(t){return u&&Ge(u),t?Ai(t):null}).s(function(t){throw u&&Ge(u),t}),Qa(t,i,r)}function $a(t,n,e,i,r){if(!si())return et(new Pi("operation-not-supported-in-this-environment"));if(t.i&&!r)return et(t.i);var o=null,a=di(t.uid+":::");return i=i().then(function(){if(Za(t),!r)return t.F().then(function(){})}).then(function(){return t.Z=a,Da(t)}).then(function(n){return t.ca&&(n=t.ca,n=n.b.set(Nf,t.B(),n.a)),n}).then(function(){return t.a.Aa(n,e,a)}).s(function(n){if(o=n,t.ca)return rs(t.ca);throw o}).then(function(){if(o)throw o}),Qa(t,i,r)}function Za(t){if(!t.a||!t.I){if(t.a&&!t.I)throw new Pi("internal-error");throw new Pi("auth-domain-config-required")}}function Qa(t,n,e){var i=ts(t,n,e);return t.A.push(i),at(i,function(){E(t.A,i)}),i}function ts(t,n,e){return t.i&&!e?(n.cancel(),et(t.i)):n.s(function(n){throw!n||"auth/user-disabled"!=n.code&&"auth/user-token-expired"!=n.code||(t.i||ln(t,new Ta("userInvalidated")),t.i=n),n})}function ns(t){if(!t.apiKey)return null;var n={apiKey:t.apiKey,authDomain:t.authDomain,appName:t.appName},e={};if(!(t.stsTokenManager&&t.stsTokenManager.accessToken&&t.stsTokenManager.expirationTime))return null;e[Ph]=t.stsTokenManager.accessToken,e.refreshToken=t.stsTokenManager.refreshToken||null,e.expiresIn=(t.stsTokenManager.expirationTime-fu())/1e3;var i=new ka(n,e,t);return t.providerData&&Tu(t.providerData,function(t){t&&Va(i,Ai(t))}),t.redirectEventId&&(i.Z=t.redirectEventId),i}function es(t,n,e,i){var r=new ka(t,n);return e&&(r.ca=e),i&&Ea(r,i),r.reload().then(function(){return r})}function is(t){this.a=t,this.b=To()}function rs(t){return Eo(t.b,Nf,t.a)}function os(t,n){return t.b.get(Nf,t.a).then(function(t){return t&&n&&(t.authDomain=n),ns(t||{})})}function as(t,n){this.a=t,this.b=n||To(),this.c=null,this.f=us(this),No(this.b,cs("local"),this.a,l(this.g,this))}function ss(t,n){var e,i=[];for(e in yf)yf[e]!==n&&i.push(Eo(t.b,cs(yf[e]),t.a));return i.push(Eo(t.b,Sf,t.a)),rt(i)}function us(t){var n=cs("local"),e=cs("session"),i=cs("none");return t.b.get(e,t.a).then(function(r){return r?e:t.b.get(i,t.a).then(function(e){return e?i:t.b.get(n,t.a).then(function(e){return e?n:t.b.get(Sf,t.a).then(function(t){return t?cs(t):n})})})}).then(function(n){return t.c=n,ss(t,n.C)}).s(function(){t.c||(t.c=n)})}function cs(t){return{name:"authUser",C:t}}function hs(t){return ds(t,function(){return t.b.set(Sf,t.c.C,t.a)})}function fs(t,n){return ds(t,function(){return t.b.set(t.c,n.B(),t.a)})}function ls(t){return ds(t,function(){return Eo(t.b,t.c,t.a)})}function ps(t,n){return ds(t,function(){return t.b.get(t.c,t.a).then(function(t){return t&&n&&(t.authDomain=n),ns(t||{})})})}function ds(t,n){return t.f=t.f.then(n,n),t.f}function vs(t){if(this.l=!1,Ti(this,"app",t),!Ss(this).options||!Ss(this).options.apiKey)throw new Pi("invalid-api-key");t=au.SDK_VERSION?ii(au.SDK_VERSION):null,this.c=new mr(Ss(this).options&&Ss(this).options.apiKey,Fr(Uh),t),this.N=[],this.m=[],this.I=[],this.Gb=au.INTERNAL.createSubscribe(l(this.Xb,this)),this.R=void 0,this.Hb=au.INTERNAL.createSubscribe(l(this.Yb,this)),Ts(this,null),this.h=new as(Ss(this).options.apiKey+":"+Ss(this).name),this.G=new is(Ss(this).options.apiKey+":"+Ss(this).name),this.U=Rs(this,As(this)),this.i=Rs(this,Es(this)),this.W=!1,this.ha=l(this.uc,this),this.Ga=l(this.ka,this),this.pa=l(this.Pb,this),this.qa=l(this.Vb,this),this.ra=l(this.Wb,this),ys(this),this.INTERNAL={},this.INTERNAL.delete=l(this.delete,this),this.INTERNAL.logFramework=l(this.cc,this),this.o=0,fn.call(this),bs(this),this.A=[]}function ms(t){Bt.call(this,"languageCodeChanged"),this.h=t}function gs(t){Bt.call(this,"frameworkChanged"),this.f=t}function bs(t){Object.defineProperty(t,"lc",{get:function(){return this.$()},set:function(t){this.na(t)},enumerable:!1}),t.V=null}function ws(t){return t.Fb||et(new Pi("auth-domain-config-required"))}function ys(t){var n=Ss(t).options.authDomain,e=Ss(t).options.apiKey;n&&si()&&(t.Fb=t.U.then(function(){if(!t.l){if(t.a=Qo(n,e,Ss(t).name),t.a.subscribe(t),Os(t)&&La(Os(t)),t.w){La(t.w);var i=t.w;i.na(t.$()),Aa(i,t),i=t.w,Ea(i,t.A),Na(i,t),t.w=null}return t.a}}))}function Is(t,n){var e={};return e.apiKey=Ss(t).options.apiKey,e.authDomain=Ss(t).options.authDomain,e.appName=Ss(t).name,t.U.then(function(){return es(e,n,t.G,t.Ka())}).then(function(n){return Os(t)&&n.uid==Os(t).uid?(qa(Os(t),n),t.ka(n)):(Ts(t,n),La(n),t.ka(n))}).then(function(){Cs(t)})}function Ts(t,n){Os(t)&&(Ra(Os(t),t.Ga),en(Os(t),"tokenChanged",t.pa),en(Os(t),"userDeleted",t.qa),en(Os(t),"userInvalidated",t.ra),Ca(Os(t))),n&&(n.N.push(t.Ga),Zt(n,"tokenChanged",t.pa),Zt(n,"userDeleted",t.qa),Zt(n,"userInvalidated",t.ra),0<t.o&&Pa(n)),Ti(t,"currentUser",n),n&&(n.na(t.$()),Aa(n,t),Ea(n,t.A),Na(n,t))}function ks(t){var n=os(t.G,Ss(t).options.authDomain).then(function(n){return(t.w=n)&&(n.ca=t.G),rs(t.G)});return Rs(t,n)}function As(t){var n=Ss(t).options.authDomain,e=ks(t).then(function(){return ps(t.h,n)}).then(function(n){return n?(n.ca=t.G,t.w&&(t.w.Z||null)==(n.Z||null)?n:n.reload().then(function(){return fs(t.h,n).then(function(){return n})}).s(function(e){return"auth/network-request-failed"==e.code?n:ls(t.h)})):null}).then(function(n){Ts(t,n||null)});return Rs(t,e)}function Es(t){return t.U.then(function(){return t.aa()}).s(function(){}).then(function(){if(!t.l)return t.ha()}).s(function(){}).then(function(){if(!t.l){t.W=!0;var n=t.h;No(n.b,cs("local"),n.a,t.ha)}})}function Ns(t,n){var e=null,i=null;return Rs(t,n.then(function(n){return e=ur(n),i=ji(n),Is(t,n)}).then(function(){return Ai({user:Os(t),credential:e,additionalUserInfo:i,operationType:"signIn"})}))}function Ss(t){return t.app}function Os(t){return t.currentUser}function Ps(t){return Os(t)&&Os(t)._lat||null}function Cs(t){if(t.W){for(var n=0;n<t.m.length;n++)t.m[n]&&t.m[n](Ps(t));if(t.R!==t.getUid()&&t.I.length)for(t.R=t.getUid(),n=0;n<t.I.length;n++)t.I[n]&&t.I[n](Ps(t))}}function _s(t,n){t.I.push(n),Rs(t,t.i.then(function(){!t.l&&A(t.I,n)&&t.R!==t.getUid()&&(t.R=t.getUid(),n(Ps(t)))}))}function Rs(t,n){return t.N.push(n),at(n,function(){E(t.N,n)}),n}function Ds(t,n,e,i){t:{e=Array.prototype.slice.call(e);for(var r=0,o=!1,a=0;a<n.length;a++)if(n[a].optional)o=!0;else{if(o)throw new Pi("internal-error","Argument validator encountered a required argument after an optional argument.");r++}if(o=n.length,e.length<r||o<e.length)i="Expected "+(r==o?1==r?"1 argument":r+" arguments":r+"-"+o+" arguments")+" but got "+e.length+".";else{for(r=0;r<e.length;r++)if(o=n[r].optional&&void 0===e[r],!n[r].M(e[r])&&!o){if(n=n[r],0>r||r>=Of.length)throw new Pi("internal-error","Argument validator received an unsupported number of arguments.");e=Of[r],i=(i?"":e+" argument ")+(n.name?'"'+n.name+'" ':"")+"must be "+n.K+".";break t}i=null}}if(i)throw new Pi("argument-error",t+" failed: "+i)}function Ls(n,e){return{name:n||"",K:"a valid string",optional:!!e,M:t}}function xs(){return{name:"opt_forceRefresh",K:"a boolean",optional:!0,M:n}}function js(t,n){return{name:t||"",K:"a valid object",optional:!!n,M:c}}function Us(t,n){return{name:t||"",K:"a function",optional:!!n,M:u}}function Ms(t,n){return{name:t||"",K:"null",optional:!!n,M:o}}function Vs(){return{name:"",K:"an HTML element",optional:!1,M:function(t){return!!(t&&t instanceof Element)}}}function Fs(){return{name:"auth",K:"an instance of Firebase Auth",optional:!0,M:function(t){return!!(t&&t instanceof vs)}}}function Ks(){return{name:"app",K:"an instance of Firebase App",optional:!0,M:function(t){return!!(t&&t instanceof au.app.App)}}}function qs(t){return{name:t?t+"Credential":"credential",K:t?"a valid "+t+" credential":"a valid credential",optional:!1,M:function(n){if(!n)return!1;var e=!t||n.providerId===t;return!(!n.wa||!e)}}}function Xs(){return{name:"authProvider",K:"a valid Auth provider",optional:!1,M:function(t){return!!(t&&t.providerId&&t.hasOwnProperty&&t.hasOwnProperty("isOAuthProvider"))}}}function Bs(){return{name:"applicationVerifier",K:"an implementation of firebase.auth.ApplicationVerifier",optional:!1,M:function(n){return!!(n&&t(n.type)&&u(n.verify))}}}function Hs(t,n,e,i){return{name:e||"",K:t.K+" or "+n.K,optional:!!i,M:function(e){return t.M(e)||n.M(e)}}}function Ws(t,n,e,i,r,o){if(Ti(this,"type","recaptcha"),this.b=this.c=null,this.m=!1,this.l=n,this.a=e||{theme:"light",type:"image"},this.g=[],this.a[_f])throw new Pi("argument-error","sitekey should not be provided for reCAPTCHA as one is automatically provisioned for the current project.");if(this.h="invisible"===this.a[Rf],!Dt(n)||!this.h&&Dt(n).hasChildNodes())throw new Pi("argument-error","reCAPTCHA container is either not found or already contains inner elements!");this.u=new mr(t,o||null,r||null),this.o=i||function(){return null};var a=this;this.i=[];var s=this.a[Pf];this.a[Pf]=function(t){if(Gs(a,t),"function"==typeof s)s(t);else if("string"==typeof s){var n=oi(s,uu);"function"==typeof n&&n(t)}};var u=this.a[Cf];this.a[Cf]=function(){if(Gs(a,null),"function"==typeof u)u();else if("string"==typeof u){var t=oi(u,uu);"function"==typeof t&&t()}}}function Gs(t,n){for(var e=0;e<t.i.length;e++)try{t.i[e](n)}catch(t){}}function zs(t,n){N(t.i,function(t){return t==n})}function Js(t,n){return t.g.push(n),at(n,function(){E(t.g,n)}),n}function Ys(t){if(t.m)throw new Pi("internal-error","RecaptchaVerifier instance has been destroyed.")}function $s(){this.b=uu.grecaptcha?1/0:0,this.c=null,this.a="__rcb"+Math.floor(1e6*Math.random())}function Zs(t,n){return new Z(function(e,i){if(gi())if(!uu.grecaptcha||n!==t.c&&!t.b){uu[t.a]=function(){if(uu.grecaptcha){t.c=n;var r=uu.grecaptcha.render;uu.grecaptcha.render=function(n,e){return n=r(n,e),t.b++,n},e()}else i(new Pi("internal-error"));delete uu[t.a]};var r=At(Df,{onload:t.a,hl:n||""});nt(De(r)).s(function(){i(new Pi("internal-error","Unable to load external reCAPTCHA dependencies!"))})}else e();else i(new Pi("network-request-failed"))})}function Qs(){return Lf||(Lf=new $s),Lf}function tu(t,n,e){try{this.f=e||au.app()}catch(t){throw new Pi("argument-error","No firebase.app.App instance is currently initialized.")}if(!this.f.options||!this.f.options.apiKey)throw new Pi("invalid-api-key");e=this.f.options.apiKey;var i=this,r=null;try{r=this.f.auth().Ka()}catch(t){}r=au.SDK_VERSION?ii(au.SDK_VERSION,r):null,Ws.call(this,e,t,n,function(){try{var t=i.f.auth().$()}catch(n){t=null}return t},r,Fr(Uh))}function nu(t,n){for(var e in n){var i=n[e].name;t[i]=iu(i,t[e],n[e].j)}}function eu(t,n,e,i){t[n]=iu(n,e,i)}function iu(t,n,e){function i(){var t=Array.prototype.slice.call(arguments);return Ds(o,e,t),n.apply(this,t)}if(!e)return n;var r,o=ru(t);for(r in n)i[r]=n[r];for(r in n.prototype)i.prototype[r]=n.prototype[r];return i}function ru(t){return t=t.split("."),t[t.length-1]}var ou,au=e(6).default,su=su||{},uu=this,cu="closure_uid_"+(1e9*Math.random()>>>0),hu=0,fu=Date.now||function(){return+new Date};d(v,Error),v.prototype.name="CustomError";var lu=String.prototype.trim?function(t){return t.trim()}:function(t){return t.replace(/^[\s\xa0]+|[\s\xa0]+$/g,"")},pu=/&/g,du=/</g,vu=/>/g,mu=/"/g,gu=/'/g,bu=/\x00/g,wu=/[\x00&<>"']/;d(y,v),y.prototype.name="AssertionError";var yu,Iu=Array.prototype.indexOf?function(t,n,e){return Array.prototype.indexOf.call(t,n,e)}:function(n,e,i){if(i=null==i?0:0>i?Math.max(0,n.length+i):i,t(n))return t(e)&&1==e.length?n.indexOf(e,i):-1;for(;i<n.length;i++)if(i in n&&n[i]===e)return i;return-1},Tu=Array.prototype.forEach?function(t,n,e){Array.prototype.forEach.call(t,n,e)}:function(n,e,i){for(var r=n.length,o=t(n)?n.split(""):n,a=0;a<r;a++)a in o&&e.call(i,o[a],a,n)},ku=Array.prototype.map?function(t,n,e){return Array.prototype.map.call(t,n,e)}:function(n,e,i){for(var r=n.length,o=Array(r),a=t(n)?n.split(""):n,s=0;s<r;s++)s in a&&(o[s]=e.call(i,a[s],s,n));return o},Au=Array.prototype.some?function(t,n,e){return Array.prototype.some.call(t,n,e)}:function(n,e,i){for(var r=n.length,o=t(n)?n.split(""):n,a=0;a<r;a++)if(a in o&&e.call(i,o[a],a,n))return!0;return!1};t:{var Eu=uu.navigator;if(Eu){var Nu=Eu.userAgent;if(Nu){yu=Nu;break t}}yu=""}var Su="constructor hasOwnProperty isPrototypeOf propertyIsEnumerable toLocaleString toString valueOf".split(" ");U[" "]=i;var Ou,Pu=P("Opera"),Cu=P("Trident")||P("MSIE"),_u=P("Edge"),Ru=_u||Cu,Du=P("Gecko")&&!(b(yu.toLowerCase(),"webkit")&&!P("Edge"))&&!(P("Trident")||P("MSIE"))&&!P("Edge"),Lu=b(yu.toLowerCase(),"webkit")&&!P("Edge");t:{var xu="",ju=function(){var t=yu;return Du?/rv\:([^\);]+)(\)|;)/.exec(t):_u?/Edge\/([\d\.]+)/.exec(t):Cu?/\b(?:MSIE|rv)[: ]([^\);]+)(\)|;)/.exec(t):Lu?/WebKit\/(\S+)/.exec(t):Pu?/(?:Version)[ \/]?(\S+)/.exec(t):void 0}();if(ju&&(xu=ju?ju[1]:""),Cu){var Uu=V();if(null!=Uu&&Uu>parseFloat(xu)){Ou=Uu+"";break t}}Ou=xu}var Mu,Vu={},Fu=uu.document;Mu=Fu&&Cu?V()||("CSS1Compat"==Fu.compatMode?parseInt(Ou,10):5):void 0,X.prototype.get=function(){if(0<this.b){this.b--;var t=this.a;this.a=t.next,t.next=null}else t=this.c();return t};var Ku=new X(function(){return new W},function(t){t.reset()},100);W.prototype.set=function(t,n){this.a=t,this.b=n,this.next=null},W.prototype.reset=function(){this.next=this.b=this.a=null};var qu,Xu,Bu=!1,Hu=new function(){this.b=this.a=null},Wu=0,Gu=2,zu=3;Q.prototype.reset=function(){this.f=this.b=this.g=this.a=null,this.c=!1};var Ju=new X(function(){return new Q},function(t){t.reset()},100);Z.prototype.then=function(t,n,e){return ct(this,u(t)?t:null,u(n)?n:null,e)},K(Z),ou=Z.prototype,ou.s=function(t,n){return ct(this,null,t,n)},ou.cancel=function(t){this.a==Wu&&J(function(){st(this,new bt(t))},this)},ou.wc=function(t){this.a=Wu,ht(this,Gu,t)},ou.xc=function(t){this.a=Wu,ht(this,zu,t)},ou.Mb=function(){for(var t;t=dt(this);)vt(this,t,this.a,this.i);this.h=!1};var Yu=G;d(bt,v),bt.prototype.name="cancel";var $u=!Cu||9<=+Mu;wt.prototype.la=!0,wt.prototype.ja=function(){return this.a},wt.prototype.toString=function(){return"Const{"+this.a+"}"};var Zu={};It(""),Tt.prototype.la=!0,Tt.prototype.ja=function(){return this.a},Tt.prototype.toString=function(){return"TrustedResourceUrl{"+this.a+"}"};var Qu=/%{(\w+)}/g,tc=/^(?:https:)?\/\/[0-9a-z.:[\]-]+\/|^\/[^\/\\]|^about:blank(#|$)/i,nc={};Nt.prototype.la=!0,Nt.prototype.ja=function(){return this.a},Nt.prototype.toString=function(){return"SafeUrl{"+this.a+"}"};var ec=/^(?:(?:https?|mailto|ftp):|[^:\/?#]*(?:[\/?#]|$))/i,ic={};Pt("about:blank"),Ct.prototype.la=!0,Ct.prototype.ja=function(){return this.a},Ct.prototype.toString=function(){return"SafeHtml{"+this.a+"}"};var rc={};Rt("<!DOCTYPE html>"),Rt(""),Rt("<br>");var oc={cellpadding:"cellPadding",cellspacing:"cellSpacing",colspan:"colSpan",frameborder:"frameBorder",height:"height",maxlength:"maxLength",nonce:"nonce",role:"role",rowspan:"rowSpan",type:"type",usemap:"useMap",valign:"vAlign",width:"width"},ac={'"':'\\"',"\\":"\\\\","/":"\\/","\b":"\\b","\f":"\\f","\n":"\\n","\r":"\\r","\t":"\\t","\v":"\\u000b"},sc=/\uffff/.test("ï¿¿")?/[\\\"\x00-\x1f\x7f-\uffff]/g:/[\\\"\x00-\x1f\x7f-\xff]/g,uc=0,cc={};qt.prototype.oa=!1,qt.prototype.ta=function(){if(this.Fa)for(;this.Fa.length;)this.Fa.shift()()};var hc=Object.freeze||function(t){return t},fc=!Cu||9<=+Mu,lc=Cu&&!F("9"),pc=function(){if(!uu.addEventListener||!Object.defineProperty)return!1;var t=!1,n=Object.defineProperty({},"passive",{get:function(){t=!0}});return uu.addEventListener("test",i,n),uu.removeEventListener("test",i,n),t}();Bt.prototype.c=function(){this.Ab=!1},d(Ht,Bt);var dc=hc({2:"touch",3:"pen",4:"mouse"});Ht.prototype.c=function(){Ht.ib.c.call(this);var t=this.a;if(t.preventDefault)t.preventDefault();else if(t.returnValue=!1,lc)try{(t.ctrlKey||112<=t.keyCode&&123>=t.keyCode)&&(t.keyCode=-1)}catch(t){}},Ht.prototype.g=function(){return this.a};var vc="closure_listenable_"+(1e6*Math.random()|0),mc=0,gc="closure_lm_"+(1e6*Math.random()|0),bc={},wc=0,yc="__closure_events_fn_"+(1e9*Math.random()>>>0);d(fn,qt),fn.prototype[vc]=!0,fn.prototype.removeEventListener=function(t,n,e,i){en(this,t,n,e,i)},fn.prototype.ta=function(){if(fn.ib.ta.call(this),this.u){var t,n=this.u,e=0;for(t in n.a){for(var i=n.a[t],r=0;r<i.length;r++)++e,Gt(i[r]);delete n.a[t],n.b--}}this.Ra=null},bn.prototype.a=null;var Ic=0;bn.prototype.reset=function(t,n,e,i,r){"number"==typeof r||Ic++,i||fu(),this.b=n,delete this.a},yn.prototype.toString=function(){return this.name};var Tc=new yn("SEVERE",1e3),kc=new yn("CONFIG",700),Ac=new yn("FINE",500);wn.prototype.log=function(t,n,e){if(t.value>=In(this).value)for(u(n)&&(n=n()),t=new bn(t,n+"",this.f),e&&(t.a=e),e="log:"+t.b,(t=uu.console)&&t.timeStamp&&t.timeStamp(e),(t=uu.msWriteProfilerMark)&&t(e),e=this;e;)e=e.a};var Ec={},Nc=null;ou=kn.prototype,ou.P=function(){An(this);for(var t=[],n=0;n<this.a.length;n++)t.push(this.b[this.a[n]]);return t},ou.S=function(){return An(this),this.a.concat()},ou.clear=function(){this.b={},this.c=this.a.length=0},ou.get=function(t,n){return En(this.b,t)?this.b[t]:n},ou.set=function(t,n){En(this.b,t)||(this.c++,this.a.push(t)),this.b[t]=n},ou.forEach=function(t,n){for(var e=this.S(),i=0;i<e.length;i++){var r=e[i],o=this.get(r);t.call(n,o,r,this)}};var Sc=null,Oc=null;_n.prototype.cancel=function(t){if(this.a)this.c instanceof _n&&this.c.cancel();else{if(this.b){var n=this.b;delete this.b,t?n.cancel(t):0>=--n.l&&n.cancel()}this.v?this.v.call(this.o,this):this.u=!0,this.a||(t=new Vn,Dn(this),Rn(this,!1,t))}},_n.prototype.m=function(t,n){this.i=!1,Rn(this,t,n)},_n.prototype.A=function(t){Dn(this),Rn(this,!0,t)},_n.prototype.then=function(t,n,e){var i,r,o=new Z(function(t,n){i=t,r=n});return xn(this,i,function(t){t instanceof Vn?o.cancel():r(t)}),o.then(t,n,e)},K(_n),d(Mn,v),Mn.prototype.message="Deferred has already fired",Mn.prototype.name="AlreadyCalledError",d(Vn,v),Vn.prototype.message="Deferred was canceled",Vn.prototype.name="CanceledError",Fn.prototype.c=function(){throw delete Cc[this.a],this.b};var Pc,Cc={};d(qn,Kn);for(var _c=64,Rc=_c-1,Dc=[],Lc=0;Lc<Rc;Lc++)Dc[Lc]=0;var xc=S(128,Dc);qn.prototype.reset=function(){this.g=this.c=0,this.a=uu.Int32Array?new Int32Array(this.h):O(this.h)};var jc=[1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298];d(Hn,qn);var Uc=[1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225],Mc=/^(?:([^:\/?#.]+):)?(?:\/\/(?:([^\/?#]*)@)?([^\/#?]*?)(?::([0-9]+))?(?=[\/#?]|$))?([^?#]+)?(?:\?([^#]*))?(?:#([\s\S]*))?$/;Yn.prototype.toString=function(){var t=[],n=this.c;n&&t.push(oe(n,Vc,!0),":");var e=this.b;return(e||"file"==n)&&(t.push("//"),(n=this.l)&&t.push(oe(n,Vc,!0),"@"),t.push(encodeURIComponent(e+"").replace(/%25([0-9a-fA-F]{2})/g,"%$1")),null!=(e=this.i)&&t.push(":",e+"")),(e=this.g)&&(this.b&&"/"!=e.charAt(0)&&t.push("/"),t.push(oe(e,"/"==e.charAt(0)?Kc:Fc,!0))),(e=""+this.a)&&t.push("?",e),(e=this.h)&&t.push("#",oe(e,Xc)),t.join("")};var Vc=/[#\/\?@]/g,Fc=/[\#\?:]/g,Kc=/[\#\?]/g,qc=/[\#\?@]/g,Xc=/#/g;ou=se.prototype,ou.clear=function(){this.a=this.c=null,this.b=0},ou.forEach=function(t,n){ue(this),this.a.forEach(function(e,i){Tu(e,function(e){t.call(n,e,i,this)},this)},this)},ou.S=function(){ue(this);for(var t=this.a.P(),n=this.a.S(),e=[],i=0;i<n.length;i++)for(var r=t[i],o=0;o<r.length;o++)e.push(n[i]);return e},ou.P=function(n){ue(this);var e=[];if(t(n))le(this,n)&&(e=S(e,this.a.get(de(this,n))));else{n=this.a.P();for(var i=0;i<n.length;i++)e=S(e,n[i])}return e},ou.set=function(t,n){return ue(this),this.c=null,t=de(this,t),le(this,t)&&(this.b-=this.a.get(t).length),this.a.set(t,[n]),this.b+=1,this},ou.get=function(t,n){return t=t?this.P(t):[],0<t.length?t[0]+"":n},ou.toString=function(){if(this.c)return this.c;if(!this.a)return"";for(var t=[],n=this.a.S(),e=0;e<n.length;e++){var i=n[e],r=encodeURIComponent(i+"");i=this.P(i);for(var o=0;o<i.length;o++){var a=r;""!==i[o]&&(a+="="+encodeURIComponent(i[o]+"")),t.push(a)}}return this.c=t.join("&")},me.prototype.c=null;var Bc;d(be,me),be.prototype.a=function(){var t=we(this);return t?new ActiveXObject(t):new XMLHttpRequest},be.prototype.b=function(){var t={};return we(this)&&(t[0]=!0,t[1]=!0),t},Bc=new be,d(ye,fn);var Hc="",Wc=ye.prototype,Gc=Tn("goog.net.XhrIo");Wc.J=Gc;var zc=/^https?$/i,Jc=["POST","PUT"];ou=ye.prototype,ou.Ea=function(){void 0!==su&&this.a&&(this.g="Timed out after "+this.f+"ms, aborting",Nn(this.J,Re(this,this.g)),ln(this,"timeout"),this.abort(8))},ou.abort=function(){this.a&&this.b&&(Nn(this.J,Re(this,"Aborting")),this.b=!1,this.c=!0,this.a.abort(),this.c=!1,ln(this,"complete"),ln(this,"abort"),Se(this))},ou.ta=function(){this.a&&(this.b&&(this.b=!1,this.c=!0,this.a.abort(),this.c=!1),Se(this,!0)),ye.ib.ta.call(this)},ou.zb=function(){this.oa||(this.G||this.h||this.c?Ne(this):this.fc())},ou.fc=function(){Ne(this)},ou.getResponse=function(){try{if(!this.a)return null;if("response"in this.a)return this.a.response;switch(this.l){case Hc:case"text":return this.a.responseText;case"arraybuffer":if("mozResponseArrayBuffer"in this.a)return this.a.mozResponseArrayBuffer}var t=this.J;return t&&t.log(Tc,"Response type "+this.l+" is not supported on this browser",void 0),null}catch(t){return Nn(this.J,"Can not get response: "+t.message),null}};var Yc=/^[+a-zA-Z0-9_.!#$%&'*\/=?^`{|}~-]+@([a-zA-Z0-9-]+\.)+[a-zA-Z0-9]{2,63}$/,$c=0,Zc=1;d(Ue,v),d(Me,me),Me.prototype.a=function(){var t=new XMLHttpRequest;if("withCredentials"in t)return t;if("undefined"!=typeof XDomainRequest)return new Ve;throw Error("Unsupported browser")},Me.prototype.b=function(){return{}},ou=Ve.prototype,ou.open=function(t,n,e){if(null!=e&&!e)throw Error("Only async requests are supported.");this.a.open(t,n)},ou.send=function(t){if(t){if("string"!=typeof t)throw Error("Only string data is supported");this.a.send(t)}else this.a.send()},ou.abort=function(){this.a.abort()},ou.setRequestHeader=function(){},ou.getResponseHeader=function(t){return"content-type"==t.toLowerCase()?this.a.contentType:""},ou.Sb=function(){this.status=200,this.responseText=this.a.responseText,Fe(this,4)},ou.wb=function(){this.status=500,this.responseText="",Fe(this,4)},ou.Ub=function(){this.wb()},ou.Tb=function(){this.status=200,Fe(this,1)},ou.getAllResponseHeaders=function(){return"content-type: "+this.a.contentType};var Qc=/^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/,th="Firefox",nh="Chrome",eh={Cc:"FirebaseCore-web",Ec:"FirebaseUI-web"};bi.prototype.get=function(){return this.a?this.b:this.c};var ih,rh={};try{var oh={};Object.defineProperty(oh,"abcd",{configurable:!0,enumerable:!0,value:1}),Object.defineProperty(oh,"abcd",{configurable:!0,enumerable:!0,value:2}),ih=2==oh.abcd}catch(t){ih=!1}var ah="email",sh="newEmail",uh="requestType",ch="email",hh="fromEmail",fh="data",lh="operation";d(Pi,Error),Pi.prototype.B=function(){return{code:this.code,message:this.message}},Pi.prototype.toJSON=function(){return this.B()};var ph="auth/",dh={"argument-error":"","app-not-authorized":"This app, identified by the domain where it's hosted, is not authorized to use Firebase Authentication with the provided API key. Review your key configuration in the Google API console.","app-not-installed":"The requested mobile application corresponding to the identifier (Android package name or iOS bundle ID) provided is not installed on this device.","captcha-check-failed":"The reCAPTCHA response token provided is either invalid, expired, already used or the domain associated with it does not match the list of whitelisted domains.","code-expired":"The SMS code has expired. Please re-send the verification code to try again.","cordova-not-ready":"Cordova framework is not ready.","cors-unsupported":"This browser is not supported.","credential-already-in-use":"This credential is already associated with a different user account.","custom-token-mismatch":"The custom token corresponds to a different audience.","requires-recent-login":"This operation is sensitive and requires recent authentication. Log in again before retrying this request.","dynamic-link-not-activated":"Please activate Dynamic Links in the Firebase Console and agree to the terms and conditions.","email-already-in-use":"The email address is already in use by another account.","expired-action-code":"The action code has expired. ","cancelled-popup-request":"This operation has been cancelled due to another conflicting popup being opened.","internal-error":"An internal error has occurred.","invalid-app-credential":"The phone verification request contains an invalid application verifier. The reCAPTCHA token response is either invalid or expired.","invalid-app-id":"The mobile app identifier is not registed for the current project.","invalid-user-token":"The user's credential is no longer valid. The user must sign in again.","invalid-auth-event":"An internal error has occurred.","invalid-verification-code":"The SMS verification code used to create the phone auth credential is invalid. Please resend the verification code sms and be sure use the verification code provided by the user.","invalid-continue-uri":"The continue URL provided in the request is invalid.","invalid-cordova-configuration":"The following Cordova plugins must be installed to enable OAuth sign-in: cordova-plugin-buildinfo, cordova-universal-links-plugin, cordova-plugin-browsertab, cordova-plugin-inappbrowser and cordova-plugin-customurlscheme.","invalid-custom-token":"The custom token format is incorrect. Please check the documentation.","invalid-email":"The email address is badly formatted.","invalid-api-key":"Your API key is invalid, please check you have copied it correctly.","invalid-cert-hash":"The SHA-1 certificate hash provided is invalid.","invalid-credential":"The supplied auth credential is malformed or has expired.","invalid-persistence-type":"The specified persistence type is invalid. It can only be local, session or none.","invalid-message-payload":"The email template corresponding to this action contains invalid characters in its message. Please fix by going to the Auth email templates section in the Firebase Console.","invalid-oauth-provider":"EmailAuthProvider is not supported for this operation. This operation only supports OAuth providers.","invalid-oauth-client-id":"The OAuth client ID provided is either invalid or does not match the specified API key.","unauthorized-domain":"This domain is not authorized for OAuth operations for your Firebase project. Edit the list of authorized domains from the Firebase console.","invalid-action-code":"The action code is invalid. This can happen if the code is malformed, expired, or has already been used.","wrong-password":"The password is invalid or the user does not have a password.","invalid-phone-number":"The format of the phone number provided is incorrect. Please enter the phone number in a format that can be parsed into E.164 format. E.164 phone numbers are written in the format [+][country code][subscriber number including area code].","invalid-recipient-email":"The email corresponding to this action failed to send as the provided recipient email address is invalid.","invalid-sender":"The email template corresponding to this action contains an invalid sender email or name. Please fix by going to the Auth email templates section in the Firebase Console.","invalid-verification-id":"The verification ID used to create the phone auth credential is invalid.","missing-android-pkg-name":"An Android Package Name must be provided if the Android App is required to be installed.","auth-domain-config-required":"Be sure to include authDomain when calling firebase.initializeApp(), by following the instructions in the Firebase console.","missing-app-credential":"The phone verification request is missing an application verifier assertion. A reCAPTCHA response token needs to be provided.","missing-verification-code":"The phone auth credential was created with an empty SMS verification code.","missing-continue-uri":"A continue URL must be provided in the request.","missing-iframe-start":"An internal error has occurred.","missing-ios-bundle-id":"An iOS Bundle ID must be provided if an App Store ID is provided.","missing-phone-number":"To send verification codes, provide a phone number for the recipient.","missing-verification-id":"The phone auth credential was created with an empty verification ID.","app-deleted":"This instance of FirebaseApp has been deleted.","account-exists-with-different-credential":"An account already exists with the same email address but different sign-in credentials. Sign in using a provider associated with this email address.","network-request-failed":"A network error (such as timeout, interrupted connection or unreachable host) has occurred.","no-auth-event":"An internal error has occurred.","no-such-provider":"User was not linked to an account with the given provider.","operation-not-allowed":"The given sign-in provider is disabled for this Firebase project. Enable it in the Firebase console, under the sign-in method tab of the Auth section.","operation-not-supported-in-this-environment":'This operation is not supported in the environment this application is running on. "location.protocol" must be http, https or chrome-extension and web storage must be enabled.',"popup-blocked":"Unable to establish a connection with the popup. It may have been blocked by the browser.","popup-closed-by-user":"The popup has been closed by the user before finalizing the operation.","provider-already-linked":"User can only be linked to one identity for the given provider.","quota-exceeded":"The project's quota for this operation has been exceeded.","redirect-cancelled-by-user":"The redirect operation has been cancelled by the user before finalizing.","redirect-operation-pending":"A redirect sign-in operation is already pending.",timeout:"The operation has timed out.","user-token-expired":"The user's credential is no longer valid. The user must sign in again.","too-many-requests":"We have blocked all requests from this device due to unusual activity. Try again later.","unauthorized-continue-uri":"The domain of the continue URL is not whitelisted.  Please whitelist the domain in the Firebase console.","unsupported-persistence-type":"The current environment does not support the specified persistence type.","user-cancelled":"User did not grant your application the permissions it requested.","user-not-found":"There is no user record corresponding to this identifier. The user may have been deleted.","user-disabled":"The user account has been disabled by an administrator.","user-mismatch":"The supplied credentials do not correspond to the previously signed in user.","user-signed-out":"","weak-password":"The password must be 6 characters long or more.","web-storage-unsupported":"This browser is not supported or 3rd party cookies and data may be disabled."},vh="android",mh="handleCodeInApp",gh="iOS",bh="url",wh="installApp",yh="minimumVersion",Ih="packageName",Th="bundleId",kh="oauth_consumer_key oauth_nonce oauth_signature oauth_signature_method oauth_timestamp oauth_token oauth_version".split(" "),Ah=["client_id","response_type","scope","redirect_uri","state"],Eh={Dc:{Ma:"locale",za:500,ya:600,Na:"facebook.com",$a:Ah},Fc:{Ma:null,za:500,ya:620,Na:"github.com",$a:Ah},Gc:{Ma:"hl",za:515,ya:680,Na:"google.com",$a:Ah},Mc:{Ma:"lang",za:485,ya:705,Na:"twitter.com",$a:kh}},Nh="idToken",Sh="providerId";d(Mi,Ui),d(Vi,Mi),d(Fi,Mi),d(Ki,Mi),d(qi,Mi),Bi.prototype.wa=function(t){return Dr(t,Hi(this))},Bi.prototype.b=function(t,n){var e=Hi(this);return e.idToken=n,Lr(t,e)},Bi.prototype.c=function(t,n){return Xi(xr(t,Hi(this)),n)},Bi.prototype.B=function(){var t={providerId:this.providerId};return this.idToken&&(t.oauthIdToken=this.idToken),this.accessToken&&(t.oauthAccessToken=this.accessToken),this.secret&&(t.oauthTokenSecret=this.secret),t},Wi.prototype.Ba=function(t){return this.qb=x(t),this},d(Gi,Wi),Gi.prototype.sa=function(t){return A(this.a,t)||this.a.push(t),this},Gi.prototype.vb=function(){return O(this.a)},Gi.prototype.credential=function(t,n){if(!t&&!n)throw new Pi("argument-error","credential failed: must provide the ID token and/or the access token.");return new Bi(this.providerId,{idToken:t||null,accessToken:n||null})},d(zi,Gi),Ti(zi,"PROVIDER_ID","facebook.com"),d(Yi,Gi),Ti(Yi,"PROVIDER_ID","github.com"),d(Zi,Gi),Ti(Zi,"PROVIDER_ID","google.com"),d(tr,Wi),Ti(tr,"PROVIDER_ID","twitter.com"),er.prototype.wa=function(t){return Ur(t,of,{email:this.a,password:this.f})},er.prototype.b=function(t,n){return Ur(t,Zh,{idToken:n,email:this.a,password:this.f})},er.prototype.c=function(t,n){return Xi(this.wa(t),n)},er.prototype.B=function(){return{email:this.a,password:this.f}},ki(ir,{PROVIDER_ID:"password"}),rr.prototype.wa=function(t){return t.Qa(or(this))},rr.prototype.b=function(t,n){var e=or(this);return e.idToken=n,Ur(t,sf,e)},rr.prototype.c=function(t,n){var e=or(this);return e.operation="REAUTH",t=Ur(t,uf,e),Xi(t,n)},rr.prototype.B=function(){var t={providerId:"phone"};return this.a.Pa&&(t.verificationId=this.a.Pa),this.a.Oa&&(t.verificationCode=this.a.Oa),this.a.Da&&(t.temporaryProof=this.a.Da),this.a.Y&&(t.phoneNumber=this.a.Y),t},ar.prototype.Qa=function(n,e){var i=this.a.c;return nt(e.verify()).then(function(r){if(!t(r))throw new Pi("argument-error","An implementation of firebase.auth.ApplicationVerifier.prototype.verify() must return a firebase.Promise that resolves with a string.");switch(e.type){case"recaptcha":return Pr(i,{phoneNumber:n,recaptchaToken:r}).then(function(t){return"function"==typeof e.reset&&e.reset(),t},function(t){throw"function"==typeof e.reset&&e.reset(),t});default:throw new Pi("argument-error",'Only firebase.auth.ApplicationVerifiers with type="recaptcha" are currently supported.')}})},ki(ar,{PROVIDER_ID:"phone"}),hr.prototype.B=function(){return{type:this.b,eventId:this.c,urlResponse:this.f,sessionId:this.g,error:this.a&&this.a.B()}},d(lr,Pi),d(pr,Pi),pr.prototype.B=function(){var t={code:this.code,message:this.message};this.email&&(t.email=this.email),this.phoneNumber&&(t.phoneNumber=this.phoneNumber);var n=this.credential&&this.credential.B();return n&&j(t,n),t},pr.prototype.toJSON=function(){return this.B()},d(vr,me),vr.prototype.a=function(){return new this.f},vr.prototype.b=function(){return{}};var Oh,Ph="idToken",Ch=new bi(3e4,6e4),_h={"Content-Type":"application/x-www-form-urlencoded"},Rh=new bi(3e4,6e4),Dh={"Content-Type":"application/json"};mr.prototype.m=function(t,n,e,i,r,o){var a="Node"==ti(),s=ni()?a?new ye(this.o):new ye:new ye(this.f);if(o){s.f=Math.max(0,o);var u=setTimeout(function(){ln(s,"timeout")},o)}pn(s,"complete",function(){u&&clearTimeout(u);var t=null;try{t=JSON.parse(_e(this))||null}catch(n){t=null}n&&n(t)}),dn(s,"ready",function(){u&&clearTimeout(u),Xt(this)}),dn(s,"timeout",function(){u&&clearTimeout(u),Xt(this),n&&n(null)}),Ie(s,t,e,i,r)};var Lh=It("https://apis.google.com/js/client.js?onload=%{onload}"),xh="__fcb"+Math.floor(1e6*Math.random());mr.prototype.u=function(t,n,e,i,r){var o=this;Oh.then(function(){window.gapi.client.setApiKey(o.b);var a=window.gapi.auth.getToken();window.gapi.auth.setToken(null),window.gapi.client.request({path:t,method:e,body:i,headers:r,authType:"none",callback:function(t){window.gapi.auth.setToken(a),n&&n(t)}})}).s(function(t){n&&n({error:{message:t&&t.message||"CORS_UNSUPPORTED"}})})},mr.prototype.gb=function(){return Ur(this,Qh,{})},mr.prototype.kb=function(t,n){return Ur(this,$h,{idToken:t,email:n})},mr.prototype.lb=function(t,n){return Ur(this,Zh,{idToken:t,password:n})};var jh={displayName:"DISPLAY_NAME",photoUrl:"PHOTO_URL"};ou=mr.prototype,ou.mb=function(t,n){var e={idToken:t},i=[];return C(jh,function(t,r){var o=n[r];null===o?i.push(t):r in n&&(e[r]=o)}),i.length&&(e.deleteAttribute=i),Ur(this,$h,e)},ou.cb=function(t,n){return t={requestType:"PASSWORD_RESET",email:t},j(t,n),Ur(this,Wh,t)},ou.bb=function(t,n){return t={requestType:"VERIFY_EMAIL",idToken:t},j(t,n),Ur(this,Hh,t)},ou.Qa=function(t){return Ur(this,af,t)},ou.Ta=function(t,n){return Ur(this,Jh,{oobCode:t,newPassword:n})},ou.Ia=function(t){return Ur(this,Vh,{oobCode:t})},ou.Sa=function(t){return Ur(this,Mh,{oobCode:t})};var Uh,Mh={endpoint:"setAccountInfo",D:jr,ga:"email"},Vh={endpoint:"resetPassword",D:jr,O:function(t){if(!t.email||!t.requestType)throw new Pi("internal-error")}},Fh={endpoint:"signupNewUser",D:function(t){if(kr(t),!t.password)throw new Pi("weak-password")},O:Sr,T:!0},Kh={endpoint:"createAuthUri"},qh={endpoint:"deleteAccount",ea:["idToken"]},Xh={endpoint:"setAccountInfo",ea:["idToken","deleteProvider"],D:function(t){if(!a(t.deleteProvider))throw new Pi("internal-error")}},Bh={endpoint:"getAccountInfo"},Hh={endpoint:"getOobConfirmationCode",ea:["idToken","requestType"],D:function(t){if("VERIFY_EMAIL"!=t.requestType)throw new Pi("internal-error")},ga:"email"},Wh={endpoint:"getOobConfirmationCode",ea:["requestType"],D:function(t){if("PASSWORD_RESET"!=t.requestType)throw new Pi("internal-error");kr(t)},ga:"email"},Gh={nb:!0,endpoint:"getProjectConfig",yb:"GET"},zh={nb:!0,endpoint:"getRecaptchaParam",yb:"GET",O:function(t){if(!t.recaptchaSiteKey)throw new Pi("internal-error")}},Jh={endpoint:"resetPassword",D:jr,ga:"email"},Yh={endpoint:"sendVerificationCode",ea:["phoneNumber","recaptchaToken"],ga:"sessionInfo"},$h={endpoint:"setAccountInfo",ea:["idToken"],D:Ar,T:!0},Zh={endpoint:"setAccountInfo",ea:["idToken"],D:function(t){if(Ar(t),!t.password)throw new Pi("weak-password")},O:Sr,T:!0},Qh={endpoint:"signupNewUser",O:Sr,T:!0},tf={endpoint:"verifyAssertion",D:_r,O:Rr,T:!0},nf={endpoint:"verifyAssertion",D:_r,O:function(t){if(t.errorMessage&&"USER_NOT_FOUND"==t.errorMessage)throw new Pi("user-not-found");if(t.errorMessage)throw Mr(t.errorMessage);if(!t[Ph])throw new Pi("internal-error")},T:!0},ef={endpoint:"verifyAssertion",D:function(t){if(_r(t),!t.idToken)throw new Pi("internal-error")},O:Rr,T:!0},rf={endpoint:"verifyCustomToken",D:function(t){if(!t.token)throw new Pi("invalid-custom-token")},O:Sr,T:!0},of={endpoint:"verifyPassword",D:function(t){if(kr(t),!t.password)throw new Pi("wrong-password")},O:Sr,T:!0},af={endpoint:"verifyPhoneNumber",D:Or,O:Sr},sf={endpoint:"verifyPhoneNumber",D:function(t){if(!t.idToken)throw new Pi("internal-error");Or(t)},O:function(t){if(t.temporaryProof)throw t.code="credential-already-in-use",dr(t);Sr(t)}},uf={Lb:{USER_NOT_FOUND:"user-not-found"},endpoint:"verifyPhoneNumber",D:Or,O:Sr},cf={Ic:{Va:"https://www.googleapis.com/identitytoolkit/v3/relyingparty/",ab:"https://securetoken.googleapis.com/v1/token",id:"p"},Kc:{Va:"https://staging-www.sandbox.googleapis.com/identitytoolkit/v3/relyingparty/",ab:"https://staging-securetoken.sandbox.googleapis.com/v1/token",id:"s"},Lc:{Va:"https://www-googleapis-test.sandbox.google.com/identitytoolkit/v3/relyingparty/",ab:"https://test-securetoken.sandbox.googleapis.com/v1/token",id:"t"}};Uh=Fr("__EID__")?"__EID__":void 0;var hf=It("https://apis.google.com/js/api.js?onload=%{onload}"),ff=new bi(3e4,6e4),lf=new bi(5e3,15e3),pf=null;Wr.prototype.toString=function(){return this.f?te(this.a,"v",this.f):fe(this.a.a,"v"),this.b?te(this.a,"eid",this.b):fe(this.a.a,"eid"),this.c.length?te(this.a,"fw",this.c.join(",")):fe(this.a.a,"fw"),""+this.a},Gr.prototype.toString=function(){var t=ie(this.m,"/__/auth/handler");if(te(t,"apiKey",this.u),te(t,"appName",this.c),te(t,"authType",this.l),this.a.isOAuthProvider){var n=this.a;try{var e=au.app(this.c).auth().$()}catch(t){e=null}n.Ua=e,te(t,"providerId",this.a.providerId),n=this.a,e=li(n.qb);for(var i in e)e[i]=""+e[i];i=n.nc,e=x(e);for(var r=0;r<i.length;r++){var o=i[r];o in e&&delete e[o]}n.Wa&&n.Ua&&!e[n.Wa]&&(e[n.Wa]=n.Ua),D(e)||te(t,"customParameters",fi(e))}if("function"==typeof this.a.vb&&(n=this.a.vb(),n.length&&te(t,"scopes",n.join(","))),this.h?te(t,"redirectUrl",this.h):fe(t.a,"redirectUrl"),this.g?te(t,"eventId",this.g):fe(t.a,"eventId"),this.i?te(t,"v",this.i):fe(t.a,"v"),this.b)for(var a in this.b)this.b.hasOwnProperty(a)&&!ne(t,a)&&te(t,a,this.b[a]);return this.f?te(t,"eid",this.f):fe(t.a,"eid"),a=zr(this.c),a.length&&te(t,"fw",a.join(",")),""+t},ou=Jr.prototype,ou.Ca=function(t,n,e){var i=new Pi("popup-closed-by-user"),r=new Pi("web-storage-unsupported"),o=this,a=!1;return this.ba().then(function(){no(o).then(function(e){e||(t&&Ge(t),n(r),a=!0)})}).s(function(){}).then(function(){if(!a)return Je(t)}).then(function(){if(!a)return gn(e).then(function(){n(i)})})},ou.Cb=function(){var t=ri();return!hi(t)&&!vi(t)},ou.xb=function(){return!1},ou.ub=function(t,n,e,i,r,o,a){if(!t)return et(new Pi("popup-blocked"));if(a&&!hi())return this.ba().s(function(n){Ge(t),r(n)}),i(),nt();this.a||(this.a=Yr(Zr(this)));var s=this;return this.a.then(function(){var n=s.ba().s(function(n){throw Ge(t),r(n),n});return i(),n}).then(function(){cr(e),a||Xe(Qr(s.u,s.f,s.b,n,e,null,o,s.c,void 0,s.h),t)}).s(function(t){throw"auth/network-request-failed"==t.code&&(s.a=null),t})},ou.Aa=function(t,n,e){this.a||(this.a=Yr(Zr(this)));var i=this;return this.a.then(function(){cr(n),Xe(Qr(i.u,i.f,i.b,t,n,qe(),e,i.c,void 0,i.h))}).s(function(t){throw"auth/network-request-failed"==t.code&&(i.a=null),t})},ou.ba=function(){var t=this;return $r(this).then(function(){return t.i.Ya}).s(function(){throw t.a=null,new Pi("network-request-failed")})},ou.Db=function(){return!0},ou.ua=function(t){this.g.push(t)},ou.Ja=function(t){N(this.g,function(n){return n==t})},ou=eo.prototype,ou.get=function(t){return nt(this.a.getItem(t)).then(function(t){return t&&pi(t)})},ou.set=function(t,n){return nt(this.a.setItem(t,fi(n)))},ou.X=function(t){return nt(this.a.removeItem(t))},ou.ia=function(){},ou.da=function(){},ou=io.prototype,ou.get=function(t){return nt(this.a[t])},ou.set=function(t,n){return this.a[t]=n,nt()},ou.X=function(t){return delete this.a[t],nt()},ou.ia=function(){},ou.da=function(){};var df;ou=ro.prototype,ou.set=function(t,n){var e,i=!1,r=this;return at(ao(this).then(function(n){return e=n,n=so(r,uo(r,e,!0)),co(n.get(t))}).then(function(o){var a=so(r,uo(r,e,!0));return o?(o.value=n,co(a.put(o))):(r.a++,i=!0,o={},o[r.g]=t,o[r.l]=n,co(a.add(o)))}).then(function(){r.f[t]=n}),function(){i&&r.a--})},ou.get=function(t){var n=this;return ao(this).then(function(e){return co(so(n,uo(n,e,!1)).get(t))}).then(function(t){return t&&t.value})},ou.X=function(t){var n=!1,e=this;return at(ao(this).then(function(i){return n=!0,e.a++,co(so(e,uo(e,i,!0)).delete(t))}).then(function(){delete e.f[t]}),function(){n&&e.a--})},ou.vc=function(){var t=this;return ao(this).then(function(n){var e=so(t,uo(t,n,!1));return e.getAll?co(e.getAll()):new Z(function(t,n){var i=[],r=e.openCursor();r.onsuccess=function(n){(n=n.target.result)?(i.push(n.value),n.continue()):t(i)},r.onerror=function(t){n(Error(t.target.errorCode))}})}).then(function(n){var e={},i=[];if(0==t.a){for(i=0;i<n.length;i++)e[n[i][t.g]]=n[i][t.l];i=Be(t.f,e),t.f=e}return i})},ou.ia=function(t){0==this.c.length&&ho(this),this.c.push(t)},ou.da=function(t){N(this.c,function(n){return n==t}),0==this.c.length&&this.b&&this.b.cancel("STOP_EVENT")},ou=fo.prototype,ou.get=function(t){var n=this;return nt().then(function(){return pi(n.a.getItem(t))})},ou.set=function(t,n){var e=this;return nt().then(function(){var i=fi(n);null===i?e.X(t):e.a.setItem(t,i)})},ou.X=function(t){var n=this;return nt().then(function(){n.a.removeItem(t)})},ou.ia=function(t){uu.window&&Zt(uu.window,"storage",t)},ou.da=function(t){uu.window&&en(uu.window,"storage",t)},ou=vo.prototype,ou.get=function(){return nt(null)},ou.set=function(){return nt()},ou.X=function(){return nt()},ou.ia=function(){},ou.da=function(){},ou=mo.prototype,ou.get=function(t){var n=this;return nt().then(function(){return pi(n.a.getItem(t))})},ou.set=function(t,n){var e=this;return nt().then(function(){var i=fi(n);null===i?e.X(t):e.a.setItem(t,i)})},ou.X=function(t){var n=this;return nt().then(function(){n.a.removeItem(t)})},ou.ia=function(){},ou.da=function(){};var vf,mf,gf={C:fo,jb:mo},bf={C:fo,jb:mo},wf={C:eo,jb:vo},yf={Hc:"local",NONE:"none",Jc:"session"};Io.prototype.get=function(t,n){return ko(this,t.C).get(Ao(this,t,n))},Io.prototype.set=function(t,n,e){var i=Ao(this,t,e),r=this,o=ko(this,t.C);return o.set(i,n).then(function(){return o.get(i)}).then(function(n){"local"==t.C&&(r.b[i]=n)})},Io.prototype.m=function(t){if(t&&t.g){var n=t.a.key;if(null==n)for(var e in this.a){var i=this.b[e];void 0===i&&(i=null);var r=uu.localStorage.getItem(e);r!==i&&(this.b[e]=r,this.c(e))}else if(0==n.indexOf(this.i+this.g)&&this.a[n]){if(void 0!==t.a.a?ko(this,"local").da(this.h):Po(this),this.A)if(e=uu.localStorage.getItem(n),(i=t.a.newValue)!==e)null!==i?uu.localStorage.setItem(n,i):uu.localStorage.removeItem(n);else if(this.b[n]===i&&void 0===t.a.a)return;var o=this;e=function(){void 0===t.a.a&&o.b[n]===uu.localStorage.getItem(n)||(o.b[n]=uu.localStorage.getItem(n),o.c(n))},Cu&&Mu&&10==Mu&&uu.localStorage.getItem(n)!==t.a.newValue&&t.a.newValue!==t.a.oldValue?setTimeout(e,10):e()}}else Tu(t,l(this.c,this))},Io.prototype.c=function(t){this.a[t]&&Tu(this.a[t],function(t){t()})};var If={name:"authEvent",C:"local"};ou=Lo.prototype,ou.ba=function(){return this.xa?this.xa:this.xa=$e().then(function(){if("function"!=typeof oi("universalLinks.subscribe",uu))throw xo("cordova-universal-links-plugin is not installed");if(void 0===oi("BuildInfo.packageName",uu))throw xo("cordova-plugin-buildinfo is not installed");if("function"!=typeof oi("cordova.plugins.browsertab.openUrl",uu))throw xo("cordova-plugin-browsertab is not installed");if("function"!=typeof oi("cordova.InAppBrowser.open",uu))throw xo("cordova-plugin-inappbrowser is not installed")},function(){throw new Pi("cordova-not-ready")})},ou.Ca=function(t,n){return n(new Pi("operation-not-supported-in-this-environment")),nt()},ou.ub=function(){return et(new Pi("operation-not-supported-in-this-environment"))},ou.Db=function(){return!1},ou.Cb=function(){return!0},ou.xb=function(){return!0},ou.Aa=function(t,n,e){if(this.c)return et(new Pi("redirect-operation-pending"));var i=this,r=uu.document,o=null,a=null,s=null,u=null;return this.c=at(nt().then(function(){return cr(n),Fo(i)}).then(function(){return Mo(i,t,n,e)}).then(function(){return new Z(function(t,n){a=function(){var n=oi("cordova.plugins.browsertab.close",uu);return t(),"function"==typeof n&&n(),i.a&&"function"==typeof i.a.close&&(i.a.close(),i.a=null),!1},i.ua(a),s=function(){o||(o=gn(i.w).then(function(){n(new Pi("redirect-cancelled-by-user"))}))},u=function(){wi()&&s()},r.addEventListener("resume",s,!1),ri().toLowerCase().match(/android/)||r.addEventListener("visibilitychange",u,!1)}).s(function(t){return Ko(i).then(function(){throw t})})}),function(){s&&r.removeEventListener("resume",s,!1),u&&r.removeEventListener("visibilitychange",u,!1),o&&o.cancel(),a&&i.Ja(a),i.c=null})},ou.ua=function(t){this.b.push(t),Fo(this).s(function(n){"auth/invalid-cordova-configuration"===n.code&&(n=new hr("unknown",null,null,null,new Pi("no-auth-event")),t(n))})},ou.Ja=function(t){N(this.b,function(n){return n==t})};var Tf={name:"pendingRedirect",C:"session"};Go.prototype.reset=function(){this.f=!1,this.a.Ja(this.i),this.a=zo(this.v,this.l,this.u)},Go.prototype.subscribe=function(t){if(A(this.h,t)||this.h.push(t),!this.f){var n=this;Wo(this.g).then(function(t){t?Ho(n.g).then(function(){Jo(n).s(function(t){var e=new hr("unknown",null,null,null,new Pi("operation-not-supported-in-this-environment"));Zo(t)&&n.m(e)})}):Yo(n)}).s(function(){Yo(n)})}},Go.prototype.unsubscribe=function(t){N(this.h,function(n){return n==t})},Go.prototype.m=function(t){if(!t)throw new Pi("invalid-auth-event");for(var n=!1,e=0;e<this.h.length;e++){var i=this.h[e];if(i.ob(t.b,t.c)){(n=this.b[t.b])&&n.h(t,i),n=!0;break}}return na(this.c),n};var kf=new bi(2e3,1e4),Af=new bi(3e4,6e4);Go.prototype.aa=function(){return this.c.aa()},Go.prototype.Aa=function(t,n,e){var i,r=this;return Bo(this.g).then(function(){return r.a.Aa(t,n,e).s(function(t){if(Zo(t))throw new Pi("operation-not-supported-in-this-environment");return i=t,Ho(r.g).then(function(){throw i})}).then(function(){return r.a.Db()?new Z(function(){}):Ho(r.g).then(function(){return r.aa()}).then(function(){}).s(function(){})})})},Go.prototype.Ca=function(t,n,e,i){return this.a.Ca(e,function(e){t.fa(n,null,e,i)},kf.get())};var Ef={};ta.prototype.reset=function(){this.b=null,this.a&&(this.a.cancel(),this.a=null)},ta.prototype.h=function(t,n){if(!t)return et(new Pi("invalid-auth-event"));this.reset(),this.g=!0;var e=t.b,i=t.c,r=t.a&&"auth/web-storage-unsupported"==t.a.code,o=t.a&&"auth/operation-not-supported-in-this-environment"==t.a.code;return"unknown"!=e||r||o?t.a?(oa(this,!0,null,t.a),t=nt()):t=n.va(e,i)?ea(this,t,n):et(new Pi("invalid-auth-event")):(oa(this,!1,null,null),t=nt()),t},ta.prototype.aa=function(){var t=this;return new Z(function(n,e){t.b?t.b().then(n,e):(t.f.push(n),t.c.push(e),aa(t))})},sa.prototype.h=function(t,n){if(!t)return et(new Pi("invalid-auth-event"));var e=t.b,i=t.c;return t.a?(n.fa(t.b,null,t.a,t.c),t=nt()):t=n.va(e,i)?ua(t,n):et(new Pi("invalid-auth-event")),t},ca.prototype.confirm=function(t){return t=sr(this.verificationId,t),this.a(t)},fa.prototype.start=function(){this.a=this.c,pa(this,!0)},va.prototype.B=function(){return{apiKey:this.f.b,refreshToken:this.a,accessToken:this.b,expirationTime:this.c}},va.prototype.getToken=function(t){return t=!!t,this.b&&!this.a?et(new Pi("user-token-expired")):t||!this.b||fu()>this.c-3e4?this.a?ba(this,{grant_type:"refresh_token",refresh_token:this.a}):nt(null):nt({accessToken:this.b,expirationTime:this.c,refreshToken:this.a})},wa.prototype.B=function(){return{lastLoginAt:this.b,createdAt:this.a}},d(Ta,Bt),d(ka,fn),ka.prototype.na=function(t){this.ha=t,gr(this.c,t)},ka.prototype.$=function(){return this.ha},ka.prototype.Ka=function(){return O(this.R)},ka.prototype.Ga=function(){this.l.b&&(da(this.l),this.l.start())},Ti(ka.prototype,"providerId","firebase"),ou=ka.prototype,ou.reload=function(){var t=this;return Qa(this,Ua(this).then(function(){return Xa(t).then(function(){return Da(t)}).then(ja)}))},ou.F=function(t){var n=this;return Qa(this,Ua(this).then(function(){return n.h.getToken(t)}).then(function(t){if(!t)throw new Pi("internal-error");return t.accessToken!=n.pa&&(_a(n,t.accessToken),ln(n,new Ta("tokenChanged"))),Ka(n,"refreshToken",t.refreshToken),t.accessToken}))},ou.getToken=function(t){return rh["firebase.User.prototype.getToken is deprecated. Please use firebase.User.prototype.getIdToken instead."]||(rh["firebase.User.prototype.getToken is deprecated. Please use firebase.User.prototype.getIdToken instead."]=!0,"undefined"!=typeof console&&"function"==typeof console.warn&&console.warn("firebase.User.prototype.getToken is deprecated. Please use firebase.User.prototype.getIdToken instead.")),this.F(t)},ou.gc=function(t){if(!(t=t.users)||!t.length)throw new Pi("internal-error");t=t[0],xa(this,{uid:t.localId,displayName:t.displayName,photoURL:t.photoUrl,email:t.email,emailVerified:!!t.emailVerified,phoneNumber:t.phoneNumber,lastLoginAt:t.lastLoginAt,createdAt:t.createdAt});for(var n=Wa(t),e=0;e<n.length;e++)Va(this,n[e]);Ka(this,"isAnonymous",!(this.email&&t.passwordHash||this.providerData&&this.providerData.length))},ou.Za=function(t){var n=this,e=null;return Qa(this,t.c(this.c,this.uid).then(function(t){return Ba(n,t),e=za(n,t,"reauthenticate"),n.i=null,n.reload()}).then(function(){return e}),!0)},ou.hc=function(t){return this.Za(t).then(function(){})},ou.Xa=function(t){var n=this,e=null;return Qa(this,Ga(this,t.providerId).then(function(){return n.F()}).then(function(e){return t.b(n.c,e)}).then(function(t){return e=za(n,t,"link"),Ja(n,t)}).then(function(){return e}))},ou.Zb=function(t){return this.Xa(t).then(function(t){return t.user})},ou.$b=function(t,n){var e=this;return Qa(this,Ga(this,"phone").then(function(){return ha(Sa(e),t,n,l(e.Xa,e))}))},ou.ic=function(t,n){var e=this;return Qa(this,nt().then(function(){return ha(Sa(e),t,n,l(e.Za,e))}),!0)},ou.kb=function(t){var n=this;return Qa(this,this.F().then(function(e){return n.c.kb(e,t)}).then(function(t){return Ba(n,t),n.reload()}))},ou.zc=function(t){var n=this;return Qa(this,this.F().then(function(e){return t.b(n.c,e)}).then(function(t){return Ba(n,t),n.reload()}))},ou.lb=function(t){var n=this;return Qa(this,this.F().then(function(e){return n.c.lb(e,t)}).then(function(t){return Ba(n,t),n.reload()}))},ou.mb=function(t){if(void 0===t.displayName&&void 0===t.photoURL)return Ua(this);var n=this;return Qa(this,this.F().then(function(e){return n.c.mb(e,{displayName:t.displayName,photoUrl:t.photoURL})}).then(function(t){return Ba(n,t),Ka(n,"displayName",t.displayName||null),Ka(n,"photoURL",t.photoUrl||null),Tu(n.providerData,function(t){"password"===t.providerId&&(Ti(t,"displayName",n.displayName),Ti(t,"photoURL",n.photoURL))}),Da(n)}).then(ja))},ou.yc=function(t){var n=this;return Qa(this,Xa(this).then(function(e){return A(Ma(n),t)?Cr(n.c,e,[t]).then(function(t){var e={};return Tu(t.providerUserInfo||[],function(t){e[t.providerId]=!0}),Tu(Ma(n),function(t){e[t]||Fa(n,t)}),e[ar.PROVIDER_ID]||Ti(n,"phoneNumber",null),Da(n)}):Da(n).then(function(){throw new Pi("no-such-provider")})}))},ou.delete=function(){var t=this;return Qa(this,this.F().then(function(n){return Ur(t.c,qh,{idToken:n})}).then(function(){ln(t,new Ta("userDeleted"))})).then(function(){for(var n=0;n<t.A.length;n++)t.A[n].cancel("app-deleted");Aa(t,null),Na(t,null),t.A=[],t.m=!0,Ca(t),Ti(t,"refreshToken",null),t.a&&t.a.unsubscribe(t)})},ou.ob=function(t,n){return!!("linkViaPopup"==t&&(this.g||null)==n&&this.f||"reauthViaPopup"==t&&(this.g||null)==n&&this.f||"linkViaRedirect"==t&&(this.Z||null)==n||"reauthViaRedirect"==t&&(this.Z||null)==n)},ou.fa=function(t,n,e,i){"linkViaPopup"!=t&&"reauthViaPopup"!=t||i!=(this.g||null)||(e&&this.v?this.v(e):n&&!e&&this.f&&this.f(n),this.b&&(this.b.cancel(),this.b=null),delete this.f,delete this.v)},ou.va=function(t,n){return"linkViaPopup"==t&&n==(this.g||null)?l(this.sb,this):"reauthViaPopup"==t&&n==(this.g||null)?l(this.tb,this):"linkViaRedirect"==t&&(this.Z||null)==n?l(this.sb,this):"reauthViaRedirect"==t&&(this.Z||null)==n?l(this.tb,this):null},ou.ac=function(t){var n=this;return Ya(this,"linkViaPopup",t,function(){return Ga(n,t.providerId).then(function(){return Da(n)})},!1)},ou.jc=function(t){return Ya(this,"reauthViaPopup",t,function(){return nt()},!0)},ou.bc=function(t){var n=this;return $a(this,"linkViaRedirect",t,function(){return Ga(n,t.providerId)},!1)},ou.kc=function(t){return $a(this,"reauthViaRedirect",t,function(){return nt()},!0)},ou.sb=function(t,n){var e=this;this.b&&(this.b.cancel(),this.b=null);var i=null;return Qa(this,this.F().then(function(i){return Lr(e.c,{requestUri:t,sessionId:n,idToken:i})}).then(function(t){return i=za(e,t,"link"),Ja(e,t)}).then(function(){return i}))},ou.tb=function(t,n){var e=this;this.b&&(this.b.cancel(),this.b=null);var i=null;return Qa(this,nt().then(function(){return Xi(xr(e.c,{requestUri:t,sessionId:n}),e.uid)}).then(function(t){return i=za(e,t,"reauthenticate"),Ba(e,t),e.i=null,e.reload()}).then(function(){return i}),!0)},ou.bb=function(t){var n=this,e=null;return Qa(this,this.F().then(function(n){return e=n,void 0===t||D(t)?{}:Ri(new _i(t))}).then(function(t){return n.c.bb(e,t)}).then(function(t){if(n.email!=t)return n.reload()}).then(function(){}))},ou.toJSON=function(){return this.B()},ou.B=function(){var t={uid:this.uid,displayName:this.displayName,photoURL:this.photoURL,email:this.email,emailVerified:this.emailVerified,phoneNumber:this.phoneNumber,isAnonymous:this.isAnonymous,providerData:[],apiKey:this.G,appName:this.o,authDomain:this.w,stsTokenManager:this.h.B(),redirectEventId:this.Z||null};return this.metadata&&j(t,this.metadata.B()),Tu(this.providerData,function(n){t.providerData.push(Ei(n))}),t};var Nf={name:"redirectUser",C:"session"};as.prototype.g=function(){var t=this,n=cs("local");ds(this,function(){return nt().then(function(){return t.c&&"local"!=t.c.C?t.b.get(n,t.a):null}).then(function(e){if(e)return ss(t,"local").then(function(){t.c=n})})})};var Sf={name:"persistence",C:"session"};as.prototype.eb=function(t){var n=null,e=this;return yo(t),ds(this,function(){return t!=e.c.C?e.b.get(e.c,e.a).then(function(i){return n=i,ss(e,t)}).then(function(){if(e.c=cs(t),n)return e.b.set(e.c,n,e.a)}):nt()})},d(vs,fn),d(ms,Bt),d(gs,Bt),ou=vs.prototype,ou.eb=function(t){return t=this.h.eb(t),Rs(this,t)},ou.na=function(t){this.V===t||this.l||(this.V=t,gr(this.c,this.V),ln(this,new ms(this.$())))},ou.$=function(){return this.V},ou.Ac=function(){var t=uu.navigator;this.na(t?t.languages&&t.languages[0]||t.language||t.userLanguage||null:null)},ou.cc=function(t){this.A.push(t),br(this.c,au.SDK_VERSION?ii(au.SDK_VERSION,this.A):null),ln(this,new gs(this.A))},ou.Ka=function(){return O(this.A)},ou.toJSON=function(){return{apiKey:Ss(this).options.apiKey,authDomain:Ss(this).options.authDomain,appName:Ss(this).name,currentUser:Os(this)&&Os(this).B()}},ou.ob=function(t,n){switch(t){case"unknown":case"signInViaRedirect":return!0;case"signInViaPopup":return this.g==n&&!!this.f;default:return!1}},ou.fa=function(t,n,e,i){"signInViaPopup"==t&&this.g==i&&(e&&this.v?this.v(e):n&&!e&&this.f&&this.f(n),this.b&&(this.b.cancel(),this.b=null),delete this.f,delete this.v)},ou.va=function(t,n){return"signInViaRedirect"==t||"signInViaPopup"==t&&this.g==n&&this.f?l(this.Ob,this):null},ou.Ob=function(t,n){var e=this;t={requestUri:t,sessionId:n},this.b&&(this.b.cancel(),this.b=null);var i=null,r=null,o=Dr(e.c,t).then(function(t){return i=ur(t),r=ji(t),t});return t=e.U.then(function(){return o}).then(function(t){return Is(e,t)}).then(function(){return Ai({user:Os(e),credential:i,additionalUserInfo:r,operationType:"signIn"})}),Rs(this,t)},ou.sc=function(t){if(!si())return et(new Pi("operation-not-supported-in-this-environment"));var n=this,e=xi(t.providerId),i=di(),r=null;(!hi()||Qe())&&Ss(this).options.authDomain&&t.isOAuthProvider&&(r=Qr(Ss(this).options.authDomain,Ss(this).options.apiKey,Ss(this).name,"signInViaPopup",t,null,i,au.SDK_VERSION||null));var o=ze(r,e&&e.za,e&&e.ya);return e=ws(this).then(function(n){return $o(n,o,"signInViaPopup",t,i,!!r)}).then(function(){return new Z(function(t,e){n.fa("signInViaPopup",null,new Pi("cancelled-popup-request"),n.g),n.f=t,n.v=e,n.g=i,n.b=n.a.Ca(n,"signInViaPopup",o,i)})}).then(function(t){return o&&Ge(o),t?Ai(t):null}).s(function(t){throw o&&Ge(o),t}),Rs(this,e)},ou.tc=function(t){if(!si())return et(new Pi("operation-not-supported-in-this-environment"));var n=this;return Rs(this,ws(this).then(function(){return hs(n.h)}).then(function(){return n.a.Aa("signInViaRedirect",t)}))},ou.aa=function(){if(!si())return et(new Pi("operation-not-supported-in-this-environment"));var t=this;return Rs(this,ws(this).then(function(){return t.a.aa()}).then(function(t){return t?Ai(t):null}))},ou.hb=function(){var t=this;return Rs(this,this.i.then(function(){return Os(t)?(Ts(t,null),ls(t.h).then(function(){Cs(t)})):nt()}))},ou.uc=function(){var t=this;return ps(this.h,Ss(this).options.authDomain).then(function(n){if(!t.l){var e;if(e=Os(t)&&n){e=Os(t).uid;var i=n.uid;e=void 0!==e&&null!==e&&""!==e&&void 0!==i&&null!==i&&""!==i&&e==i}if(e)return qa(Os(t),n),Os(t).F();(Os(t)||n)&&(Ts(t,n),n&&(La(n),n.ca=t.G),t.a&&t.a.subscribe(t),Cs(t))}})},ou.ka=function(t){return fs(this.h,t)},ou.Pb=function(){Cs(this),this.ka(Os(this))},ou.Vb=function(){this.hb()},ou.Wb=function(){this.hb()},ou.Xb=function(t){var n=this;this.addAuthTokenListener(function(){t.next(Os(n))})},ou.Yb=function(t){var n=this;_s(this,function(){t.next(Os(n))})},ou.ec=function(t,n,e){var i=this;return this.W&&au.Promise.resolve().then(function(){u(t)?t(Os(i)):u(t.next)&&t.next(Os(i))}),this.Gb(t,n,e)},ou.dc=function(t,n,e){var i=this;return this.W&&au.Promise.resolve().then(function(){i.R=i.getUid(),u(t)?t(Os(i)):u(t.next)&&t.next(Os(i))}),this.Hb(t,n,e)},ou.Rb=function(t){var n=this;return Rs(this,this.i.then(function(){return Os(n)?Os(n).F(t).then(function(t){return{accessToken:t}}):null}))},ou.pc=function(t){var n=this;return this.i.then(function(){return Ns(n,Ur(n.c,rf,{token:t}))}).then(function(t){return t=t.user,Ka(t,"isAnonymous",!1),n.ka(t)}).then(function(){return Os(n)})},ou.qc=function(t,n){var e=this;return this.i.then(function(){return Ns(e,Ur(e.c,of,{email:t,password:n}))}).then(function(t){return t.user})},ou.Kb=function(t,n){var e=this;return this.i.then(function(){return Ns(e,Ur(e.c,Fh,{email:t,password:n}))}).then(function(t){return t.user})},ou.oc=function(t){return this.fb(t).then(function(t){return t.user})},ou.fb=function(t){var n=this;return this.i.then(function(){return Ns(n,t.wa(n.c))})},ou.gb=function(){var t=this;return this.i.then(function(){var n=Os(t);return n&&n.isAnonymous?n:Ns(t,t.c.gb()).then(function(n){return n=n.user,Ka(n,"isAnonymous",!0),t.ka(n)}).then(function(){return Os(t)})})},ou.getUid=function(){return Os(this)&&Os(this).uid||null},ou.Ib=function(t){this.addAuthTokenListener(t),0<++this.o&&Os(this)&&Pa(Os(this))},ou.mc=function(t){var n=this;Tu(this.m,function(e){e==t&&n.o--}),0>this.o&&(this.o=0),0==this.o&&Os(this)&&Ca(Os(this)),this.removeAuthTokenListener(t)},ou.addAuthTokenListener=function(t){var n=this;this.m.push(t),Rs(this,this.i.then(function(){n.l||A(n.m,t)&&t(Ps(n))}))},ou.removeAuthTokenListener=function(t){N(this.m,function(n){return n==t})},ou.delete=function(){this.l=!0;for(var t=0;t<this.N.length;t++)this.N[t].cancel("app-deleted");return this.N=[],this.h&&(t=this.h,So(t.b,t.a,this.ha)),this.a&&this.a.unsubscribe(this),au.Promise.resolve()},ou.Nb=function(t){return Rs(this,Er(this.c,t))},ou.Bc=function(t){return this.Ia(t).then(function(t){return t.data.email})},ou.Ta=function(t,n){return Rs(this,this.c.Ta(t,n).then(function(){}))},ou.Ia=function(t){return Rs(this,this.c.Ia(t).then(function(t){return new Oi(t)}))},ou.Sa=function(t){return Rs(this,this.c.Sa(t).then(function(){}))},ou.cb=function(t,n){var e=this;return Rs(this,nt().then(function(){return void 0===n||D(n)?{}:Ri(new _i(n))}).then(function(n){return e.c.cb(t,n)}).then(function(){}))},ou.rc=function(t,n){return Rs(this,ha(this,t,n,l(this.fb,this)))};var Of="First Second Third Fourth Fifth Sixth Seventh Eighth Ninth".split(" "),Pf="callback",Cf="expired-callback",_f="sitekey",Rf="size";ou=Ws.prototype,ou.xa=function(){var t=this;return this.c?this.c:this.c=Js(this,nt().then(function(){if(ui())return Ye();throw new Pi("operation-not-supported-in-this-environment","RecaptchaVerifier is only supported in a browser HTTP/HTTPS environment.")}).then(function(){return Zs(Qs(),t.o())}).then(function(){return Ur(t.u,zh,{})}).then(function(n){t.a[_f]=n.recaptchaSiteKey}).s(function(n){throw t.c=null,n}))},ou.render=function(){Ys(this);var t=this;return Js(this,this.xa().then(function(){if(null===t.b){var n=t.l;if(!t.h){var e=Dt(n);n=xt("DIV"),e.appendChild(n)}t.b=grecaptcha.render(n,t.a)}return t.b}))},ou.verify=function(){Ys(this);var t=this;return Js(this,this.render().then(function(n){return new Z(function(e){var i=grecaptcha.getResponse(n);if(i)e(i);else{var r=function(n){n&&(zs(t,r),e(n))};t.i.push(r),t.h&&grecaptcha.execute(t.b)}})}))},ou.reset=function(){Ys(this),null!==this.b&&grecaptcha.reset(this.b)},ou.clear=function(){Ys(this),this.m=!0,Qs().b--;for(var t=0;t<this.g.length;t++)this.g[t].cancel("RecaptchaVerifier instance has been destroyed.");if(!this.h){t=Dt(this.l);for(var n;n=t.firstChild;)t.removeChild(n)}};var Df=It("https://www.google.com/recaptcha/api.js?onload=%{onload}&render=explicit&hl=%{hl}"),Lf=null;d(tu,Ws),nu(vs.prototype,{Sa:{name:"applyActionCode",j:[Ls("code")]},Ia:{name:"checkActionCode",j:[Ls("code")]},Ta:{name:"confirmPasswordReset",j:[Ls("code"),Ls("newPassword")]},Kb:{name:"createUserWithEmailAndPassword",j:[Ls("email"),Ls("password")]},Nb:{name:"fetchProvidersForEmail",j:[Ls("email")]},aa:{name:"getRedirectResult",j:[]},dc:{name:"onAuthStateChanged",j:[Hs(js(),Us(),"nextOrObserver"),Us("opt_error",!0),Us("opt_completed",!0)]},ec:{name:"onIdTokenChanged",j:[Hs(js(),Us(),"nextOrObserver"),Us("opt_error",!0),Us("opt_completed",!0)]},cb:{name:"sendPasswordResetEmail",j:[Ls("email"),Hs(js("opt_actionCodeSettings",!0),Ms(null,!0),"opt_actionCodeSettings",!0)]},eb:{name:"setPersistence",j:[Ls("persistence")]},fb:{name:"signInAndRetrieveDataWithCredential",j:[qs()]},gb:{name:"signInAnonymously",j:[]},oc:{name:"signInWithCredential",j:[qs()]},pc:{name:"signInWithCustomToken",j:[Ls("token")]},qc:{name:"signInWithEmailAndPassword",j:[Ls("email"),Ls("password")]},rc:{name:"signInWithPhoneNumber",j:[Ls("phoneNumber"),Bs()]},sc:{name:"signInWithPopup",j:[Xs()]},tc:{name:"signInWithRedirect",j:[Xs()]},hb:{name:"signOut",j:[]},toJSON:{name:"toJSON",j:[Ls(null,!0)]},Ac:{name:"useDeviceLanguage",j:[]},Bc:{name:"verifyPasswordResetCode",j:[Ls("code")]}}),function(t,n){for(var e in n){var i=n[e].name;if(i!==e){var r=n[e].Jb;Object.defineProperty(t,i,{get:function(){return this[e]},set:function(t){Ds(i,[r],[t],!0),this[e]=t},enumerable:!0})}}}(vs.prototype,{lc:{name:"languageCode",Jb:Hs(Ls(),Ms(),"languageCode")}}),vs.Persistence=yf,vs.Persistence.LOCAL="local",vs.Persistence.SESSION="session",vs.Persistence.NONE="none",nu(ka.prototype,{delete:{name:"delete",j:[]},F:{name:"getIdToken",j:[xs()]},getToken:{name:"getToken",j:[xs()]},Xa:{name:"linkAndRetrieveDataWithCredential",j:[qs()]},Zb:{name:"linkWithCredential",j:[qs()]},$b:{name:"linkWithPhoneNumber",j:[Ls("phoneNumber"),Bs()]},ac:{name:"linkWithPopup",j:[Xs()]},bc:{name:"linkWithRedirect",j:[Xs()]},Za:{name:"reauthenticateAndRetrieveDataWithCredential",j:[qs()]},hc:{name:"reauthenticateWithCredential",j:[qs()]},ic:{name:"reauthenticateWithPhoneNumber",j:[Ls("phoneNumber"),Bs()]},jc:{name:"reauthenticateWithPopup",j:[Xs()]},kc:{name:"reauthenticateWithRedirect",j:[Xs()]},reload:{name:"reload",j:[]},bb:{name:"sendEmailVerification",j:[Hs(js("opt_actionCodeSettings",!0),Ms(null,!0),"opt_actionCodeSettings",!0)]},toJSON:{name:"toJSON",j:[Ls(null,!0)]},yc:{name:"unlink",j:[Ls("provider")]},kb:{name:"updateEmail",j:[Ls("email")]},lb:{name:"updatePassword",j:[Ls("password")]},zc:{name:"updatePhoneNumber",j:[qs("phone")]},mb:{name:"updateProfile",j:[js("profile")]}}),nu(Z.prototype,{s:{name:"catch"},then:{name:"then"}}),nu(ca.prototype,{confirm:{name:"confirm",j:[Ls("verificationCode")]}}),eu(ir,"credential",function(t,n){return new er(t,n)},[Ls("email"),Ls("password")]),nu(zi.prototype,{sa:{name:"addScope",j:[Ls("scope")]},Ba:{name:"setCustomParameters",j:[js("customOAuthParameters")]}}),eu(zi,"credential",Ji,[Hs(Ls(),js(),"token")]),nu(Yi.prototype,{sa:{name:"addScope",j:[Ls("scope")]},Ba:{name:"setCustomParameters",j:[js("customOAuthParameters")]}}),eu(Yi,"credential",$i,[Hs(Ls(),js(),"token")]),nu(Zi.prototype,{sa:{name:"addScope",j:[Ls("scope")]},Ba:{name:"setCustomParameters",j:[js("customOAuthParameters")]}}),eu(Zi,"credential",Qi,[Hs(Ls(),Hs(js(),Ms()),"idToken"),Hs(Ls(),Ms(),"accessToken",!0)]),nu(tr.prototype,{Ba:{name:"setCustomParameters",j:[js("customOAuthParameters")]}}),eu(tr,"credential",nr,[Hs(Ls(),js(),"token"),Ls("secret",!0)]),nu(Gi.prototype,{sa:{name:"addScope",j:[Ls("scope")]},credential:{name:"credential",j:[Hs(Ls(),Ms(),"idToken",!0),Hs(Ls(),Ms(),"accessToken",!0)]},Ba:{name:"setCustomParameters",j:[js("customOAuthParameters")]}}),eu(ar,"credential",sr,[Ls("verificationId"),Ls("verificationCode")]),nu(ar.prototype,{Qa:{name:"verifyPhoneNumber",j:[Ls("phoneNumber"),Bs()]}}),nu(Pi.prototype,{toJSON:{name:"toJSON",j:[Ls(null,!0)]}}),nu(pr.prototype,{toJSON:{name:"toJSON",j:[Ls(null,!0)]}}),nu(lr.prototype,{toJSON:{name:"toJSON",j:[Ls(null,!0)]}}),nu(tu.prototype,{clear:{name:"clear",j:[]},render:{name:"render",j:[]},verify:{name:"verify",j:[]}}),function(){if(void 0===au||!au.INTERNAL||!au.INTERNAL.registerService)throw Error("Cannot find the firebase namespace; be sure to include firebase-app.js before this library.");var t={Auth:vs,Error:Pi};eu(t,"EmailAuthProvider",ir,[]),eu(t,"FacebookAuthProvider",zi,[]),eu(t,"GithubAuthProvider",Yi,[]),eu(t,"GoogleAuthProvider",Zi,[]),eu(t,"TwitterAuthProvider",tr,[]),eu(t,"OAuthProvider",Gi,[Ls("providerId")]),eu(t,"PhoneAuthProvider",ar,[Fs()]),eu(t,"RecaptchaVerifier",tu,[Hs(Ls(),Vs(),"recaptchaContainer"),js("recaptchaParameters",!0),Ks()]),au.INTERNAL.registerService("auth",function(t,n){return t=new vs(t),n({INTERNAL:{getUid:l(t.getUid,t),getToken:l(t.Rb,t),addAuthTokenListener:l(t.Ib,t),removeAuthTokenListener:l(t.mc,t)}}),t},t,function(t,n){if("create"===t)try{n.auth()}catch(t){}}),au.INTERNAL.extendNamespace({User:ka})}()}).call(void 0!==t?t:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})}).call(n,e(19))}},[76])}catch(t){throw Error("Cannot instantiate firebase-auth.js - be sure to load firebase-app.js first.")}
+
+/*!
+ * @license Firebase v4.6.2
+ * Build: rev-cbb07d3
+ * Terms: https://firebase.google.com/terms/
+ */
+try{webpackJsonpFirebase([0],[,function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(0),i=n(0),o=n(0),a=n(0),s=n(0),u=n(0),l=n(12),h=n(0);t.LUIDGenerator=function(){var e=1;return function(){return e++}}(),t.sha1=function(e){var t=s.stringToByteArray(e),n=new a.Sha1;n.update(t);var r=n.digest();return o.base64.encodeByteArray(r)};var c=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];for(var n="",r=0;r<e.length;r++)Array.isArray(e[r])||e[r]&&"object"==typeof e[r]&&"number"==typeof e[r].length?n+=c.apply(null,e[r]):"object"==typeof e[r]?n+=u.stringify(e[r]):n+=e[r],n+=" ";return n};t.logger=null;var p=!0;t.enableLogging=function(e,n){r.assert(!n||!0===e||!1===e,"Can't turn on custom loggers persistently."),!0===e?("undefined"!=typeof console&&("function"==typeof console.log?t.logger=console.log.bind(console):"object"==typeof console.log&&(t.logger=function(e){console.log(e)})),n&&l.SessionStorage.set("logging_enabled",!0)):"function"==typeof e?t.logger=e:(t.logger=null,l.SessionStorage.remove("logging_enabled"))},t.log=function(){for(var e=[],n=0;n<arguments.length;n++)e[n]=arguments[n];if(!0===p&&(p=!1,null===t.logger&&!0===l.SessionStorage.get("logging_enabled")&&t.enableLogging(!0)),t.logger){var r=c.apply(null,e);t.logger(r)}},t.logWrapper=function(e){return function(){for(var n=[],r=0;r<arguments.length;r++)n[r]=arguments[r];t.log.apply(void 0,[e].concat(n))}},t.error=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];if("undefined"!=typeof console){var n="FIREBASE INTERNAL ERROR: "+c.apply(void 0,e);void 0!==console.error?console.error(n):console.log(n)}},t.fatal=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];var n=c.apply(void 0,e);throw Error("FIREBASE FATAL ERROR: "+n)},t.warn=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];if("undefined"!=typeof console){var n="FIREBASE WARNING: "+c.apply(void 0,e);void 0!==console.warn?console.warn(n):console.log(n)}},t.warnIfPageIsSecure=function(){"undefined"!=typeof window&&window.location&&window.location.protocol&&-1!==window.location.protocol.indexOf("https:")&&t.warn("Insecure Firebase access from a secure page. Please use https in calls to new Firebase().")},t.warnAboutUnsupportedMethod=function(e){t.warn(e+" is unsupported and will likely change soon.  Please do not use.")},t.isInvalidJSONNumber=function(e){return"number"==typeof e&&(e!=e||e==Number.POSITIVE_INFINITY||e==Number.NEGATIVE_INFINITY)},t.executeWhenDOMReady=function(e){if(h.isNodeSdk()||"complete"===document.readyState)e();else{var t=!1,n=function(){if(!document.body)return void setTimeout(n,Math.floor(10));t||(t=!0,e())};document.addEventListener?(document.addEventListener("DOMContentLoaded",n,!1),window.addEventListener("load",n,!1)):document.attachEvent&&(document.attachEvent("onreadystatechange",function(){"complete"===document.readyState&&n()}),window.attachEvent("onload",n))}},t.MIN_NAME="[MIN_NAME]",t.MAX_NAME="[MAX_NAME]",t.nameCompare=function(e,n){if(e===n)return 0;if(e===t.MIN_NAME||n===t.MAX_NAME)return-1;if(n===t.MIN_NAME||e===t.MAX_NAME)return 1;var r=t.tryParseInt(e),i=t.tryParseInt(n);return null!==r?null!==i?r-i==0?e.length-n.length:r-i:-1:null!==i?1:e<n?-1:1},t.stringCompare=function(e,t){return e===t?0:e<t?-1:1},t.requireKey=function(e,t){if(t&&e in t)return t[e];throw Error("Missing required key ("+e+") in object: "+u.stringify(t))},t.ObjectToUniqueKey=function(e){if("object"!=typeof e||null===e)return u.stringify(e);var n=[];for(var r in e)n.push(r);n.sort();for(var i="{",o=0;o<n.length;o++)0!==o&&(i+=","),i+=u.stringify(n[o]),i+=":",i+=t.ObjectToUniqueKey(e[n[o]]);return i+="}"},t.splitStringBySize=function(e,t){var n=e.length;if(n<=t)return[e];for(var r=[],i=0;i<n;i+=t)i+t>n?r.push(e.substring(i,n)):r.push(e.substring(i,i+t));return r},t.each=function(e,t){if(Array.isArray(e))for(var n=0;n<e.length;++n)t(n,e[n]);else i.forEach(e,function(e,n){return t(n,e)})},t.bindCallback=function(e,t){return t?e.bind(t):e},t.doubleToIEEE754String=function(e){r.assert(!t.isInvalidJSONNumber(e),"Invalid JSON number");var n,i,o,a,s,u,l;for(0===e?(i=0,o=0,n=1/e==-1/0?1:0):(n=e<0,e=Math.abs(e),e>=Math.pow(2,-1022)?(a=Math.min(Math.floor(Math.log(e)/Math.LN2),1023),i=a+1023,o=Math.round(e*Math.pow(2,52-a)-Math.pow(2,52))):(i=0,o=Math.round(e/Math.pow(2,-1074)))),u=[],s=52;s;s-=1)u.push(o%2?1:0),o=Math.floor(o/2);for(s=11;s;s-=1)u.push(i%2?1:0),i=Math.floor(i/2);u.push(n?1:0),u.reverse(),l=u.join("");var h="";for(s=0;s<64;s+=8){var c=parseInt(l.substr(s,8),2).toString(16);1===c.length&&(c="0"+c),h+=c}return h.toLowerCase()},t.isChromeExtensionContentScript=function(){return!("object"!=typeof window||!window.chrome||!window.chrome.extension||/^chrome/.test(window.location.href))},t.isWindowsStoreApp=function(){return"object"==typeof Windows&&"object"==typeof Windows.UI},t.errorForServerCode=function(e,t){var n="Unknown Error";"too_big"===e?n="The data requested exceeds the maximum size that can be accessed with a single request.":"permission_denied"==e?n="Client doesn't have permission to access the desired data.":"unavailable"==e&&(n="The service is unavailable");var r=Error(e+" at "+t.path+": "+n);return r.code=e.toUpperCase(),r},t.e=RegExp("^-?\\d{1,10}$"),t.tryParseInt=function(e){if(t.e.test(e)){var n=+e;if(n>=-2147483648&&n<=2147483647)return n}return null},t.exceptionGuard=function(e){try{e()}catch(e){setTimeout(function(){var n=e.stack||"";throw t.warn("Exception was thrown by user callback.",n),e},Math.floor(0))}},t.callUserCallback=function(e){for(var n=[],r=1;r<arguments.length;r++)n[r-1]=arguments[r];"function"==typeof e&&t.exceptionGuard(function(){e.apply(void 0,n)})},t.beingCrawled=function(){return("object"==typeof window&&window.navigator&&window.navigator.userAgent||"").search(/googlebot|google webmaster tools|bingbot|yahoo! slurp|baiduspider|yandexbot|duckduckbot/i)>=0},t.exportPropGetter=function(e,t,n){Object.defineProperty(e,t,{get:n})},t.setTimeoutNonBlocking=function(e,t){var n=setTimeout(e,t);return"object"==typeof n&&n.unref&&n.unref(),n}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(1),i=n(0),o=function(){function e(e,t){if(void 0===t){this.n=e.split("/");for(var n=0,r=0;r<this.n.length;r++)this.n[r].length>0&&(this.n[n]=this.n[r],n++);this.n.length=n,this.i=0}else this.n=e,this.i=t}return Object.defineProperty(e,"Empty",{get:function(){return new e("")},enumerable:!0,configurable:!0}),e.prototype.getFront=function(){return this.i>=this.n.length?null:this.n[this.i]},e.prototype.getLength=function(){return this.n.length-this.i},e.prototype.popFront=function(){var t=this.i;return t<this.n.length&&t++,new e(this.n,t)},e.prototype.getBack=function(){return this.i<this.n.length?this.n[this.n.length-1]:null},e.prototype.toString=function(){for(var e="",t=this.i;t<this.n.length;t++)""!==this.n[t]&&(e+="/"+this.n[t]);return e||"/"},e.prototype.toUrlEncodedString=function(){for(var e="",t=this.i;t<this.n.length;t++)""!==this.n[t]&&(e+="/"+encodeURIComponent(this.n[t]+""));return e||"/"},e.prototype.slice=function(e){return void 0===e&&(e=0),this.n.slice(this.i+e)},e.prototype.parent=function(){if(this.i>=this.n.length)return null;for(var t=[],n=this.i;n<this.n.length-1;n++)t.push(this.n[n]);return new e(t,0)},e.prototype.child=function(t){for(var n=[],r=this.i;r<this.n.length;r++)n.push(this.n[r]);if(t instanceof e)for(var r=t.i;r<t.n.length;r++)n.push(t.n[r]);else for(var i=t.split("/"),r=0;r<i.length;r++)i[r].length>0&&n.push(i[r]);return new e(n,0)},e.prototype.isEmpty=function(){return this.i>=this.n.length},e.relativePath=function(t,n){var r=t.getFront(),i=n.getFront();if(null===r)return n;if(r===i)return e.relativePath(t.popFront(),n.popFront());throw Error("INTERNAL ERROR: innerPath ("+n+") is not within outerPath ("+t+")")},e.comparePaths=function(e,t){for(var n=e.slice(),i=t.slice(),o=0;o<n.length&&o<i.length;o++){var a=r.nameCompare(n[o],i[o]);if(0!==a)return a}return n.length===i.length?0:n.length<i.length?-1:1},e.prototype.equals=function(e){if(this.getLength()!==e.getLength())return!1;for(var t=this.i,n=e.i;t<=this.n.length;t++,n++)if(this.n[t]!==e.n[n])return!1;return!0},e.prototype.contains=function(e){var t=this.i,n=e.i;if(this.getLength()>e.getLength())return!1;for(;t<this.n.length;){if(this.n[t]!==e.n[n])return!1;++t,++n}return!0},e}();t.Path=o;var a=function(){function e(e,t){this.o=t,this.u=e.slice(),this.l=Math.max(1,this.u.length);for(var n=0;n<this.u.length;n++)this.l+=i.stringLength(this.u[n]);this.f()}return Object.defineProperty(e,"MAX_PATH_DEPTH",{get:function(){return 32},enumerable:!0,configurable:!0}),Object.defineProperty(e,"MAX_PATH_LENGTH_BYTES",{get:function(){return 768},enumerable:!0,configurable:!0}),e.prototype.push=function(e){this.u.length>0&&(this.l+=1),this.u.push(e),this.l+=i.stringLength(e),this.f()},e.prototype.pop=function(){var e=this.u.pop();this.l-=i.stringLength(e),this.u.length>0&&(this.l-=1)},e.prototype.f=function(){if(this.l>e.MAX_PATH_LENGTH_BYTES)throw Error(this.o+"has a key path longer than "+e.MAX_PATH_LENGTH_BYTES+" bytes ("+this.l+").");if(this.u.length>e.MAX_PATH_DEPTH)throw Error(this.o+"path specified exceeds the maximum depth that can be written ("+e.MAX_PATH_DEPTH+") or object contains a cycle "+this.toErrorString())},e.prototype.toErrorString=function(){return 0==this.u.length?"":"in property '"+this.u.join(".")+"'"},e}();t.ValidationPath=a},function(e,t,n){"use strict";function r(e){a=e}function i(e){s=e}var o=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(t,"__esModule",{value:!0});var a,s,u=n(14),l=n(1),h=n(5),c=n(15);t.setNodeFromJSON=r,t.setMaxNode=i;var p=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return o(t,e),t.prototype.compare=function(e,t){var n=e.node.getPriority(),r=t.node.getPriority(),i=n.compareTo(r);return 0===i?l.nameCompare(e.name,t.name):i},t.prototype.isDefinedOn=function(e){return!e.getPriority().isEmpty()},t.prototype.indexedValueChanged=function(e,t){return!e.getPriority().equals(t.getPriority())},t.prototype.minPost=function(){return h.NamedNode.MIN},t.prototype.maxPost=function(){return new h.NamedNode(l.MAX_NAME,new c.LeafNode("[PRIORITY-POST]",s))},t.prototype.makePost=function(e,t){var n=a(e);return new h.NamedNode(t,new c.LeafNode("[PRIORITY-POST]",n))},t.prototype.toString=function(){return".priority"},t}(u.Index);t.PriorityIndex=p,t.PRIORITY_INDEX=new p},function(e,t,n){"use strict";var r=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(t,"__esModule",{value:!0});var i,o=n(0),a=n(1),s=n(16),u=n(5),l=n(37),h=n(3),c=n(10),p=n(39),d=n(15),f=n(41),_=function(){function e(e,t,n){this._=e,this.y=t,this.g=n,this.m=null,this.y&&l.validatePriorityNode(this.y),this._.isEmpty()&&o.assert(!this.y||this.y.isEmpty(),"An empty node cannot have a priority")}return Object.defineProperty(e,"EMPTY_NODE",{get:function(){return i||(i=new e(new s.SortedMap(f.NAME_COMPARATOR),null,p.IndexMap.Default))},enumerable:!0,configurable:!0}),e.prototype.isLeafNode=function(){return!1},e.prototype.getPriority=function(){return this.y||i},e.prototype.updatePriority=function(t){return this._.isEmpty()?this:new e(this._,t,this.g)},e.prototype.getImmediateChild=function(e){if(".priority"===e)return this.getPriority();var t=this._.get(e);return null===t?i:t},e.prototype.getChild=function(e){var t=e.getFront();return null===t?this:this.getImmediateChild(t).getChild(e.popFront())},e.prototype.hasChild=function(e){return null!==this._.get(e)},e.prototype.updateImmediateChild=function(t,n){if(o.assert(n,"We should always be passing snapshot nodes"),".priority"===t)return this.updatePriority(n);var r=new u.NamedNode(t,n),a=void 0,s=void 0,l=void 0;return n.isEmpty()?(a=this._.remove(t),s=this.g.removeFromIndexes(r,this._)):(a=this._.insert(t,n),s=this.g.addToIndexes(r,this._)),l=a.isEmpty()?i:this.y,new e(a,l,s)},e.prototype.updateChild=function(e,t){var n=e.getFront();if(null===n)return t;o.assert(".priority"!==e.getFront()||1===e.getLength(),".priority must be the last token in a path");var r=this.getImmediateChild(n).updateChild(e.popFront(),t);return this.updateImmediateChild(n,r)},e.prototype.isEmpty=function(){return this._.isEmpty()},e.prototype.numChildren=function(){return this._.count()},e.prototype.val=function(t){if(this.isEmpty())return null;var n={},r=0,i=0,o=!0;if(this.forEachChild(h.PRIORITY_INDEX,function(a,s){n[a]=s.val(t),r++,o&&e.e.test(a)?i=Math.max(i,+a):o=!1}),!t&&o&&i<2*r){var a=[];for(var s in n)a[s]=n[s];return a}return t&&!this.getPriority().isEmpty()&&(n[".priority"]=this.getPriority().val()),n},e.prototype.hash=function(){if(null===this.m){var e="";this.getPriority().isEmpty()||(e+="priority:"+l.priorityHashText(this.getPriority().val())+":"),this.forEachChild(h.PRIORITY_INDEX,function(t,n){var r=n.hash();""!==r&&(e+=":"+t+":"+r)}),this.m=""===e?"":a.sha1(e)}return this.m},e.prototype.getPredecessorChildName=function(e,t,n){var r=this.C(n);if(r){var i=r.getPredecessorKey(new u.NamedNode(e,t));return i?i.name:null}return this._.getPredecessorKey(e)},e.prototype.getFirstChildName=function(e){var t=this.C(e);if(t){var n=t.minKey();return n&&n.name}return this._.minKey()},e.prototype.getFirstChild=function(e){var t=this.getFirstChildName(e);return t?new u.NamedNode(t,this._.get(t)):null},e.prototype.getLastChildName=function(e){var t=this.C(e);if(t){var n=t.maxKey();return n&&n.name}return this._.maxKey()},e.prototype.getLastChild=function(e){var t=this.getLastChildName(e);return t?new u.NamedNode(t,this._.get(t)):null},e.prototype.forEachChild=function(e,t){var n=this.C(e);return n?n.inorderTraversal(function(e){return t(e.name,e.node)}):this._.inorderTraversal(t)},e.prototype.getIterator=function(e){return this.getIteratorFrom(e.minPost(),e)},e.prototype.getIteratorFrom=function(e,t){var n=this.C(t);if(n)return n.getIteratorFrom(e,function(e){return e});for(var r=this._.getIteratorFrom(e.name,u.NamedNode.Wrap),i=r.peek();null!=i&&t.compare(i,e)<0;)r.getNext(),i=r.peek();return r},e.prototype.getReverseIterator=function(e){return this.getReverseIteratorFrom(e.maxPost(),e)},e.prototype.getReverseIteratorFrom=function(e,t){var n=this.C(t);if(n)return n.getReverseIteratorFrom(e,function(e){return e});for(var r=this._.getReverseIteratorFrom(e.name,u.NamedNode.Wrap),i=r.peek();null!=i&&t.compare(i,e)>0;)r.getNext(),i=r.peek();return r},e.prototype.compareTo=function(e){return this.isEmpty()?e.isEmpty()?0:-1:e.isLeafNode()||e.isEmpty()?1:e===t.MAX_NODE?-1:0},e.prototype.withIndex=function(t){if(t===c.KEY_INDEX||this.g.hasIndex(t))return this;var n=this.g.addIndex(t,this._);return new e(this._,this.y,n)},e.prototype.isIndexed=function(e){return e===c.KEY_INDEX||this.g.hasIndex(e)},e.prototype.equals=function(e){if(e===this)return!0;if(e.isLeafNode())return!1;var t=e;if(this.getPriority().equals(t.getPriority())){if(this._.count()===t._.count()){for(var n=this.getIterator(h.PRIORITY_INDEX),r=t.getIterator(h.PRIORITY_INDEX),i=n.getNext(),o=r.getNext();i&&o;){if(i.name!==o.name||!i.node.equals(o.node))return!1;i=n.getNext(),o=r.getNext()}return null===i&&null===o}return!1}return!1},e.prototype.C=function(e){return e===c.KEY_INDEX?null:this.g.get(""+e)},e.e=/^(0|[1-9]\d*)$/,e}();t.ChildrenNode=_;var y=function(e){function t(){return e.call(this,new s.SortedMap(f.NAME_COMPARATOR),_.EMPTY_NODE,p.IndexMap.Default)||this}return r(t,e),t.prototype.compareTo=function(e){return e===this?0:1},t.prototype.equals=function(e){return e===this},t.prototype.getPriority=function(){return this},t.prototype.getImmediateChild=function(e){return _.EMPTY_NODE},t.prototype.isEmpty=function(){return!1},t}(_);t.MaxNode=y,t.MAX_NODE=new y,Object.defineProperties(u.NamedNode,{MIN:{value:new u.NamedNode(a.MIN_NAME,_.EMPTY_NODE)},MAX:{value:new u.NamedNode(a.MAX_NAME,t.MAX_NODE)}}),c.KeyIndex.__EMPTY_NODE=_.EMPTY_NODE,d.LeafNode.__childrenNodeConstructor=_,l.setMaxNode(t.MAX_NODE),h.setMaxNode(t.MAX_NODE)},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){this.name=e,this.node=t}return e.Wrap=function(t,n){return new e(t,n)},e}();t.NamedNode=r},,function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(2),i=n(0),o=n(1),a=n(0),s=n(0);t.N=/[\[\].#$\/\u0000-\u001F\u007F]/,t.P=/[\[\].#$\u0000-\u001F\u007F]/,t.S=10485760,t.isValidKey=function(e){return"string"==typeof e&&0!==e.length&&!t.N.test(e)},t.isValidPathString=function(e){return"string"==typeof e&&0!==e.length&&!t.P.test(e)},t.isValidRootPathString=function(e){return e&&(e=e.replace(/^\/*\.info(\/|$)/,"/")),t.isValidPathString(e)},t.isValidPriority=function(e){return null===e||"string"==typeof e||"number"==typeof e&&!o.isInvalidJSONNumber(e)||e&&"object"==typeof e&&i.contains(e,".sv")},t.validateFirebaseDataArg=function(e,n,r,i,o){o&&void 0===r||t.validateFirebaseData(a.errorPrefix(e,n,o),r,i)},t.validateFirebaseData=function(e,n,a){var u=a instanceof r.Path?new r.ValidationPath(a,e):a;if(void 0===n)throw Error(e+"contains undefined "+u.toErrorString());if("function"==typeof n)throw Error(e+"contains a function "+u.toErrorString()+" with contents = "+n);if(o.isInvalidJSONNumber(n))throw Error(e+"contains "+n+" "+u.toErrorString());if("string"==typeof n&&n.length>t.S/3&&s.stringLength(n)>t.S)throw Error(e+"contains a string greater than "+t.S+" utf8 bytes "+u.toErrorString()+" ('"+n.substring(0,50)+"...')");if(n&&"object"==typeof n){var l=!1,h=!1;if(i.forEach(n,function(n,r){if(".value"===n)l=!0;else if(".priority"!==n&&".sv"!==n&&(h=!0,!t.isValidKey(n)))throw Error(e+" contains an invalid key ("+n+") "+u.toErrorString()+'.  Keys must be non-empty strings and can\'t contain ".", "#", "$", "/", "[", or "]"');u.push(n),t.validateFirebaseData(e,r,u),u.pop()}),l&&h)throw Error(e+' contains ".value" child '+u.toErrorString()+" in addition to actual children.")}},t.validateFirebaseMergePaths=function(e,n){var i,o;for(i=0;i<n.length;i++){o=n[i];for(var a=o.slice(),s=0;s<a.length;s++)if(".priority"===a[s]&&s===a.length-1);else if(!t.isValidKey(a[s]))throw Error(e+"contains an invalid key ("+a[s]+") in path "+o+'. Keys must be non-empty strings and can\'t contain ".", "#", "$", "/", "[", or "]"')}n.sort(r.Path.comparePaths);var u=null;for(i=0;i<n.length;i++){if(o=n[i],null!==u&&u.contains(o))throw Error(e+"contains a path "+u+" that is ancestor of another path "+o);u=o}},t.validateFirebaseMergeDataArg=function(e,n,o,s,u){if(!u||void 0!==o){var l=a.errorPrefix(e,n,u);if(!o||"object"!=typeof o||Array.isArray(o))throw Error(l+" must be an object containing the children to replace.");var h=[];i.forEach(o,function(e,n){var i=new r.Path(e);if(t.validateFirebaseData(l,n,s.child(i)),".priority"===i.getBack()&&!t.isValidPriority(n))throw Error(l+"contains an invalid value for '"+i+"', which must be a valid Firebase priority (a string, finite number, server value, or null).");h.push(i)}),t.validateFirebaseMergePaths(l,h)}},t.validatePriority=function(e,n,r,i){if(!i||void 0!==r){if(o.isInvalidJSONNumber(r))throw Error(a.errorPrefix(e,n,i)+"is "+r+", but must be a valid Firebase priority (a string, finite number, server value, or null).");if(!t.isValidPriority(r))throw Error(a.errorPrefix(e,n,i)+"must be a valid Firebase priority (a string, finite number, server value, or null).")}},t.validateEventType=function(e,t,n,r){if(!r||void 0!==n)switch(n){case"value":case"child_added":case"child_removed":case"child_changed":case"child_moved":break;default:throw Error(a.errorPrefix(e,t,r)+'must be a valid event type = "value", "child_added", "child_removed", "child_changed", or "child_moved".')}},t.validateKey=function(e,n,r,i){if(!(i&&void 0===r||t.isValidKey(r)))throw Error(a.errorPrefix(e,n,i)+'was an invalid key = "'+r+'".  Firebase keys must be non-empty strings and can\'t contain ".", "#", "$", "/", "[", or "]").')},t.validatePathString=function(e,n,r,i){if(!(i&&void 0===r||t.isValidPathString(r)))throw Error(a.errorPrefix(e,n,i)+'was an invalid path = "'+r+'". Paths must be non-empty strings and can\'t contain ".", "#", "$", "[", or "]"')},t.validateRootPathString=function(e,n,r,i){r&&(r=r.replace(/^\/*\.info(\/|$)/,"/")),t.validatePathString(e,n,r,i)},t.validateWritablePath=function(e,t){if(".info"===t.getFront())throw Error(e+" failed = Can't modify data under /.info/")},t.validateUrl=function(e,n,r){var i=""+r.path;if("string"!=typeof r.repoInfo.host||0===r.repoInfo.host.length||!t.isValidKey(r.repoInfo.namespace)||0!==i.length&&!t.isValidRootPathString(i))throw Error(a.errorPrefix(e,n,!1)+'must be a valid firebase URL and the path can\'t contain ".", "#", "$", "[", or "]".')},t.validateCredential=function(e,t,n,r){if((!r||void 0!==n)&&"string"!=typeof n)throw Error(a.errorPrefix(e,t,r)+"must be a valid credential (a string).")},t.validateBoolean=function(e,t,n,r){if((!r||void 0!==n)&&"boolean"!=typeof n)throw Error(a.errorPrefix(e,t,r)+"must be a boolean.")},t.validateString=function(e,t,n,r){if((!r||void 0!==n)&&"string"!=typeof n)throw Error(a.errorPrefix(e,t,r)+"must be a valid string.")},t.validateObject=function(e,t,n,r){if(!(r&&void 0===n||n&&"object"==typeof n&&null!==n))throw Error(a.errorPrefix(e,t,r)+"must be a valid object.")},t.validateObjectContainsKey=function(e,t,n,r,o,s){if(!n||"object"!=typeof n||!i.contains(n,r)){if(o)return;throw Error(a.errorPrefix(e,t,o)+'must contain the key "'+r+'"')}if(s){var u=i.safeGet(n,r);if("number"===s&&"number"!=typeof u||"string"===s&&"string"!=typeof u||"boolean"===s&&"boolean"!=typeof u||"function"===s&&"function"!=typeof u||"object"===s&&"object"!=typeof u&&u)throw o?Error(a.errorPrefix(e,t,o)+'contains invalid value for key "'+r+'" (must be of type "'+s+'")'):Error(a.errorPrefix(e,t,o)+'must contain the key "'+r+'" with type "'+s+'"')}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(0);!function(e){e[e.OVERWRITE=0]="OVERWRITE",e[e.MERGE=1]="MERGE",e[e.ACK_USER_WRITE=2]="ACK_USER_WRITE",e[e.LISTEN_COMPLETE=3]="LISTEN_COMPLETE"}(t.OperationType||(t.OperationType={}));var i=function(){function e(e,t,n,i){this.fromUser=e,this.fromServer=t,this.queryId=n,this.tagged=i,r.assert(!i||t,"Tagged queries must be from server.")}return e.User=new e(!0,!1,null,!1),e.Server=new e(!1,!0,null,!1),e.forServerTaggedQuery=function(t){return new e(!1,!0,t,!0)},e}();t.OperationSource=i},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t,n,r,i){this.type=e,this.snapshotNode=t,this.childName=n,this.oldSnap=r,this.prevName=i}return e.valueChange=function(t){return new e(e.VALUE,t)},e.childAddedChange=function(t,n){return new e(e.CHILD_ADDED,n,t)},e.childRemovedChange=function(t,n){return new e(e.CHILD_REMOVED,n,t)},e.childChangedChange=function(t,n,r){return new e(e.CHILD_CHANGED,n,t,r)},e.childMovedChange=function(t,n){return new e(e.CHILD_MOVED,n,t)},e.CHILD_ADDED="child_added",e.CHILD_REMOVED="child_removed",e.CHILD_CHANGED="child_changed",e.CHILD_MOVED="child_moved",e.VALUE="value",e}();t.Change=r},function(e,t,n){"use strict";var r=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(t,"__esModule",{value:!0});var i,o=n(14),a=n(5),s=n(1),u=n(0),l=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return r(t,e),Object.defineProperty(t,"__EMPTY_NODE",{get:function(){return i},set:function(e){i=e},enumerable:!0,configurable:!0}),t.prototype.compare=function(e,t){return s.nameCompare(e.name,t.name)},t.prototype.isDefinedOn=function(e){throw u.assertionError("KeyIndex.isDefinedOn not expected to be called.")},t.prototype.indexedValueChanged=function(e,t){return!1},t.prototype.minPost=function(){return a.NamedNode.MIN},t.prototype.maxPost=function(){return new a.NamedNode(s.MAX_NAME,i)},t.prototype.makePost=function(e,t){return u.assert("string"==typeof e,"KeyIndex indexValue must always be a string."),new a.NamedNode(e,i)},t.prototype.toString=function(){return".key"},t}(o.Index);t.KeyIndex=l,t.KEY_INDEX=new l},function(e,t,n){"use strict";function r(e,t){if(void 0===t&&(t=null),null===e)return i.ChildrenNode.EMPTY_NODE;if("object"==typeof e&&".priority"in e&&(t=e[".priority"]),u.assert(null===t||"string"==typeof t||"number"==typeof t||"object"==typeof t&&".sv"in t,"Invalid priority type found: "+typeof t),"object"==typeof e&&".value"in e&&null!==e[".value"]&&(e=e[".value"]),"object"!=typeof e||".sv"in e){var n=e;return new o.LeafNode(n,r(t))}if(e instanceof Array||!d){var f=i.ChildrenNode.EMPTY_NODE,_=e;return s.forEach(_,function(e,t){if(s.contains(_,e)&&"."!==e.substring(0,1)){var n=r(t);!n.isLeafNode()&&n.isEmpty()||(f=f.updateImmediateChild(e,n))}}),f.updatePriority(r(t))}var y=[],v=!1,g=e;if(s.forEach(g,function(e,t){if("string"!=typeof e||"."!==e.substring(0,1)){var n=r(g[e]);n.isEmpty()||(v=v||!n.getPriority().isEmpty(),y.push(new a.NamedNode(e,n)))}}),0==y.length)return i.ChildrenNode.EMPTY_NODE;var m=l.buildChildSet(y,h.NAME_ONLY_COMPARATOR,function(e){return e.name},h.NAME_COMPARATOR);if(v){var C=l.buildChildSet(y,p.PRIORITY_INDEX.getCompare());return new i.ChildrenNode(m,r(t),new c.IndexMap({".priority":C},{".priority":p.PRIORITY_INDEX}))}return new i.ChildrenNode(m,r(t),c.IndexMap.Default)}Object.defineProperty(t,"__esModule",{value:!0});var i=n(4),o=n(15),a=n(5),s=n(0),u=n(0),l=n(40),h=n(41),c=n(39),p=n(3),d=!0;t.nodeFromJSON=r,p.setNodeFromJSON(r)},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(80),i=n(81),o=function(e){try{if("undefined"!=typeof window&&void 0!==window[e]){var t=window[e];return t.setItem("firebase:sentinel","cache"),t.removeItem("firebase:sentinel"),new r.DOMStorageWrapper(t)}}catch(e){}return new i.MemoryStorage};t.PersistentStorage=o("localStorage"),t.SessionStorage=o("sessionStorage")},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.PROTOCOL_VERSION="5",t.VERSION_PARAM="v",t.TRANSPORT_SESSION_PARAM="s",t.REFERER_PARAM="r",t.FORGE_REF="f",t.FORGE_DOMAIN="firebaseio.com",t.LAST_SESSION_PARAM="ls",t.WEBSOCKET="websocket",t.LONG_POLLING="long_polling"},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(5),i=n(1),o=function(){function e(){}return e.prototype.getCompare=function(){return this.compare.bind(this)},e.prototype.indexedValueChanged=function(e,t){var n=new r.NamedNode(i.MIN_NAME,e),o=new r.NamedNode(i.MIN_NAME,t);return 0!==this.compare(n,o)},e.prototype.minPost=function(){return r.NamedNode.MIN},e}();t.Index=o},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r,i=n(0),o=n(1),a=n(37),s=function(){function e(t,n){void 0===n&&(n=e.__childrenNodeConstructor.EMPTY_NODE),this.T=t,this.y=n,this.m=null,i.assert(void 0!==this.T&&null!==this.T,"LeafNode shouldn't be created with null/undefined value."),a.validatePriorityNode(this.y)}return Object.defineProperty(e,"__childrenNodeConstructor",{get:function(){return r},set:function(e){r=e},enumerable:!0,configurable:!0}),e.prototype.isLeafNode=function(){return!0},e.prototype.getPriority=function(){return this.y},e.prototype.updatePriority=function(t){return new e(this.T,t)},e.prototype.getImmediateChild=function(t){return".priority"===t?this.y:e.__childrenNodeConstructor.EMPTY_NODE},e.prototype.getChild=function(t){return t.isEmpty()?this:".priority"===t.getFront()?this.y:e.__childrenNodeConstructor.EMPTY_NODE},e.prototype.hasChild=function(){return!1},e.prototype.getPredecessorChildName=function(e,t){return null},e.prototype.updateImmediateChild=function(t,n){return".priority"===t?this.updatePriority(n):n.isEmpty()&&".priority"!==t?this:e.__childrenNodeConstructor.EMPTY_NODE.updateImmediateChild(t,n).updatePriority(this.y)},e.prototype.updateChild=function(t,n){var r=t.getFront();return null===r?n:n.isEmpty()&&".priority"!==r?this:(i.assert(".priority"!==r||1===t.getLength(),".priority must be the last token in a path"),this.updateImmediateChild(r,e.__childrenNodeConstructor.EMPTY_NODE.updateChild(t.popFront(),n)))},e.prototype.isEmpty=function(){return!1},e.prototype.numChildren=function(){return 0},e.prototype.forEachChild=function(e,t){return!1},e.prototype.val=function(e){return e&&!this.getPriority().isEmpty()?{".value":this.getValue(),".priority":this.getPriority().val()}:this.getValue()},e.prototype.hash=function(){if(null===this.m){var e="";this.y.isEmpty()||(e+="priority:"+a.priorityHashText(this.y.val())+":");var t=typeof this.T;e+=t+":",e+="number"===t?o.doubleToIEEE754String(this.T):this.T,this.m=o.sha1(e)}return this.m},e.prototype.getValue=function(){return this.T},e.prototype.compareTo=function(t){return t===e.__childrenNodeConstructor.EMPTY_NODE?1:t instanceof e.__childrenNodeConstructor?-1:(i.assert(t.isLeafNode(),"Unknown node type"),this.w(t))},e.prototype.w=function(t){var n=typeof t.T,r=typeof this.T,o=e.VALUE_TYPE_ORDER.indexOf(n),a=e.VALUE_TYPE_ORDER.indexOf(r);return i.assert(o>=0,"Unknown leaf type: "+n),i.assert(a>=0,"Unknown leaf type: "+r),o===a?"object"===r?0:this.T<t.T?-1:this.T===t.T?0:1:a-o},e.prototype.withIndex=function(){return this},e.prototype.isIndexed=function(){return!0},e.prototype.equals=function(e){if(e===this)return!0;if(e.isLeafNode()){var t=e;return this.T===t.T&&this.y.equals(t.y)}return!1},e.VALUE_TYPE_ORDER=["object","boolean","number","string"],e}();t.LeafNode=s},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t,n,r,i){void 0===i&&(i=null),this.I=r,this.R=i,this.O=[];for(var o=1;!e.isEmpty();)if(e=e,o=t?n(e.key,t):1,r&&(o*=-1),o<0)e=this.I?e.left:e.right;else{if(0===o){this.O.push(e);break}this.O.push(e),e=this.I?e.right:e.left}}return e.prototype.getNext=function(){if(0===this.O.length)return null;var e,t=this.O.pop();if(e=this.R?this.R(t.key,t.value):{key:t.key,value:t.value},this.I)for(t=t.left;!t.isEmpty();)this.O.push(t),t=t.right;else for(t=t.right;!t.isEmpty();)this.O.push(t),t=t.left;return e},e.prototype.hasNext=function(){return this.O.length>0},e.prototype.peek=function(){if(0===this.O.length)return null;var e=this.O[this.O.length-1];return this.R?this.R(e.key,e.value):{key:e.key,value:e.value}},e}();t.SortedMapIterator=r;var i=function(){function e(t,n,r,i,o){this.key=t,this.value=n,this.color=null!=r?r:e.RED,this.left=null!=i?i:a.EMPTY_NODE,this.right=null!=o?o:a.EMPTY_NODE}return e.prototype.copy=function(t,n,r,i,o){return new e(null!=t?t:this.key,null!=n?n:this.value,null!=r?r:this.color,null!=i?i:this.left,null!=o?o:this.right)},e.prototype.count=function(){return this.left.count()+1+this.right.count()},e.prototype.isEmpty=function(){return!1},e.prototype.inorderTraversal=function(e){return this.left.inorderTraversal(e)||e(this.key,this.value)||this.right.inorderTraversal(e)},e.prototype.reverseTraversal=function(e){return this.right.reverseTraversal(e)||e(this.key,this.value)||this.left.reverseTraversal(e)},e.prototype.A=function(){return this.left.isEmpty()?this:this.left.A()},e.prototype.minKey=function(){return this.A().key},e.prototype.maxKey=function(){return this.right.isEmpty()?this.key:this.right.maxKey()},e.prototype.insert=function(e,t,n){var r,i;return i=this,r=n(e,i.key),i=r<0?i.copy(null,null,null,i.left.insert(e,t,n),null):0===r?i.copy(null,t,null,null,null):i.copy(null,null,null,null,i.right.insert(e,t,n)),i.D()},e.prototype.M=function(){if(this.left.isEmpty())return a.EMPTY_NODE;var e=this;return e.left.L()||e.left.left.L()||(e=e.F()),e=e.copy(null,null,null,e.left.M(),null),e.D()},e.prototype.remove=function(e,t){var n,r;if(n=this,t(e,n.key)<0)n.left.isEmpty()||n.left.L()||n.left.left.L()||(n=n.F()),n=n.copy(null,null,null,n.left.remove(e,t),null);else{if(n.left.L()&&(n=n.x()),n.right.isEmpty()||n.right.L()||n.right.left.L()||(n=n.k()),0===t(e,n.key)){if(n.right.isEmpty())return a.EMPTY_NODE;r=n.right.A(),n=n.copy(r.key,r.value,null,null,n.right.M())}n=n.copy(null,null,null,null,n.right.remove(e,t))}return n.D()},e.prototype.L=function(){return this.color},e.prototype.D=function(){var e=this;return e.right.L()&&!e.left.L()&&(e=e.W()),e.left.L()&&e.left.left.L()&&(e=e.x()),e.left.L()&&e.right.L()&&(e=e.j()),e},e.prototype.F=function(){var e=this.j();return e.right.left.L()&&(e=e.copy(null,null,null,null,e.right.x()),e=e.W(),e=e.j()),e},e.prototype.k=function(){var e=this.j();return e.left.left.L()&&(e=e.x(),e=e.j()),e},e.prototype.W=function(){var t=this.copy(null,null,e.RED,null,this.right.left);return this.right.copy(null,null,this.color,t,null)},e.prototype.x=function(){var t=this.copy(null,null,e.RED,this.left.right,null);return this.left.copy(null,null,this.color,null,t)},e.prototype.j=function(){var e=this.left.copy(null,null,!this.left.color,null,null),t=this.right.copy(null,null,!this.right.color,null,null);return this.copy(null,null,!this.color,e,t)},e.prototype.V=function(){var e=this.Q();return Math.pow(2,e)<=this.count()+1},e.prototype.Q=function(){var e;if(this.L()&&this.left.L())throw Error("Red node has red child("+this.key+","+this.value+")");if(this.right.L())throw Error("Right child of ("+this.key+","+this.value+") is red");if((e=this.left.Q())!==this.right.Q())throw Error("Black depths differ");return e+(this.L()?0:1)},e.RED=!0,e.BLACK=!1,e}();t.LLRBNode=i;var o=function(){function e(){}return e.prototype.copy=function(e,t,n,r,i){return this},e.prototype.insert=function(e,t,n){return new i(e,t,null)},e.prototype.remove=function(e,t){return this},e.prototype.count=function(){return 0},e.prototype.isEmpty=function(){return!0},e.prototype.inorderTraversal=function(e){return!1},e.prototype.reverseTraversal=function(e){return!1},e.prototype.minKey=function(){return null},e.prototype.maxKey=function(){return null},e.prototype.Q=function(){return 0},e.prototype.L=function(){return!1},e}();t.LLRBEmptyNode=o;var a=function(){function e(t,n){void 0===n&&(n=e.EMPTY_NODE),this.U=t,this.B=n}return e.prototype.insert=function(t,n){return new e(this.U,this.B.insert(t,n,this.U).copy(null,null,i.BLACK,null,null))},e.prototype.remove=function(t){return new e(this.U,this.B.remove(t,this.U).copy(null,null,i.BLACK,null,null))},e.prototype.get=function(e){for(var t,n=this.B;!n.isEmpty();){if(0===(t=this.U(e,n.key)))return n.value;t<0?n=n.left:t>0&&(n=n.right)}return null},e.prototype.getPredecessorKey=function(e){for(var t,n=this.B,r=null;!n.isEmpty();){if(0===(t=this.U(e,n.key))){if(n.left.isEmpty())return r?r.key:null;for(n=n.left;!n.right.isEmpty();)n=n.right;return n.key}t<0?n=n.left:t>0&&(r=n,n=n.right)}throw Error("Attempted to find predecessor key for a nonexistent key.  What gives?")},e.prototype.isEmpty=function(){return this.B.isEmpty()},e.prototype.count=function(){return this.B.count()},e.prototype.minKey=function(){return this.B.minKey()},e.prototype.maxKey=function(){return this.B.maxKey()},e.prototype.inorderTraversal=function(e){return this.B.inorderTraversal(e)},e.prototype.reverseTraversal=function(e){return this.B.reverseTraversal(e)},e.prototype.getIterator=function(e){return new r(this.B,null,this.U,!1,e)},e.prototype.getIteratorFrom=function(e,t){return new r(this.B,e,this.U,!1,t)},e.prototype.getReverseIteratorFrom=function(e,t){return new r(this.B,e,this.U,!0,t)},e.prototype.getReverseIterator=function(e){return new r(this.B,null,this.U,!0,e)},e.EMPTY_NODE=new o,e}();t.SortedMap=a},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(43),i=n(11),o=n(2),a=n(44),s=n(86),u=n(97),l=n(0),h=n(1),c=n(0),p=n(98),d=n(25),f=n(100),_=n(49),y=n(101),v=n(50),g=n(106),m=n(32),C=function(){function e(e,t,n){var r=this;this.H=e,this.app=n,this.dataUpdateCount=0,this.G=null,this.K=new y.EventQueue,this.Y=1,this.X=null,this.z=new a.SparseSnapshotTree,this.J=null;var i=new p.AuthTokenProvider(n);if(this.$=d.StatsManager.getCollection(e),t||h.beingCrawled())this.Z=new g.ReadonlyRestClient(this.H,this.ee.bind(this),i),setTimeout(this.te.bind(this,!0),0);else{var o=n.options.databaseAuthVariableOverride;if(void 0!==o&&null!==o){if("object"!=typeof o)throw Error("Only objects are supported for option databaseAuthVariableOverride");try{l.stringify(o)}catch(e){throw Error("Invalid authOverride provided: "+e)}}this.J=new v.PersistentConnection(this.H,this.ee.bind(this),this.te.bind(this),this.ne.bind(this),i,o),this.Z=this.J}i.addTokenChangeListener(function(e){r.Z.refreshAuthToken(e)}),this.re=d.StatsManager.getOrCreateReporter(e,function(){return new f.StatsReporter(r.$,r.Z)}),this.ie(),this.oe=new u.SnapshotHolder,this.ae=new s.SyncTree({startListening:function(e,t,n,i){var o=[],a=r.oe.getNode(e.path);return a.isEmpty()||(o=r.ae.applyServerOverwrite(e.path,a),setTimeout(function(){i("ok")},0)),o},stopListening:function(){}}),this.se("connected",!1),this.ue=new s.SyncTree({startListening:function(e,t,n,i){return r.Z.listen(e,n,t,function(t,n){var o=i(t,n);r.K.raiseEventsForChangedPath(e.path,o)}),[]},stopListening:function(e,t){r.Z.unlisten(e,t)}})}return e.prototype.toString=function(){return(this.H.secure?"https://":"http://")+this.H.host},e.prototype.name=function(){return this.H.namespace},e.prototype.serverTime=function(){var e=this.oe.getNode(new o.Path(".info/serverTimeOffset")),t=e.val()||0;return(new Date).getTime()+t},e.prototype.generateServerValues=function(){return r.generateWithValues({timestamp:this.serverTime()})},e.prototype.ee=function(e,t,n,r){this.dataUpdateCount++;var a=new o.Path(e);t=this.X?this.X(e,t):t;var s=[];if(r)if(n){var u=c.map(t,function(e){return i.nodeFromJSON(e)});s=this.ue.applyTaggedQueryMerge(a,u,r)}else{var l=i.nodeFromJSON(t);s=this.ue.applyTaggedQueryOverwrite(a,l,r)}else if(n){var h=c.map(t,function(e){return i.nodeFromJSON(e)});s=this.ue.applyServerMerge(a,h)}else{var p=i.nodeFromJSON(t);s=this.ue.applyServerOverwrite(a,p)}var d=a;s.length>0&&(d=this.le(a)),this.K.raiseEventsForChangedPath(d,s)},e.prototype.he=function(e){this.X=e},e.prototype.te=function(e){this.se("connected",e),!1===e&&this.ce()},e.prototype.ne=function(e){var t=this;h.each(e,function(e,n){t.se(n,e)})},e.prototype.se=function(e,t){var n=new o.Path("/.info/"+e),r=i.nodeFromJSON(t);this.oe.updateSnapshot(n,r);var a=this.ae.applyServerOverwrite(n,r);this.K.raiseEventsForChangedPath(n,a)},e.prototype.pe=function(){return this.Y++},e.prototype.setWithPriority=function(e,t,n,o){var a=this;this.de("set",{path:""+e,value:t,priority:n});var s=this.generateServerValues(),u=i.nodeFromJSON(t,n),l=r.resolveDeferredValueSnapshot(u,s),c=this.pe(),p=this.ue.applyUserOverwrite(e,l,c,!0);this.K.queueEvents(p),this.Z.put(""+e,u.val(!0),function(t,n){var r="ok"===t;r||h.warn("set at "+e+" failed: "+t);var i=a.ue.ackUserWrite(c,!r);a.K.raiseEventsForChangedPath(e,i),a.callOnCompleteCallback(o,t,n)});var d=this.fe(e);this.le(d),this.K.raiseEventsForChangedPath(d,[])},e.prototype.update=function(e,t,n){var o=this;this.de("update",{path:""+e,value:t});var a=!0,s=this.generateServerValues(),u={};if(c.forEach(t,function(e,t){a=!1;var n=i.nodeFromJSON(t);u[e]=r.resolveDeferredValueSnapshot(n,s)}),a)h.log("update() called with empty data.  Don't do anything."),this.callOnCompleteCallback(n,"ok");else{var l=this.pe(),p=this.ue.applyUserMerge(e,u,l);this.K.queueEvents(p),this.Z.merge(""+e,t,function(t,r){var i="ok"===t;i||h.warn("update at "+e+" failed: "+t);var a=o.ue.ackUserWrite(l,!i),s=a.length>0?o.le(e):e;o.K.raiseEventsForChangedPath(s,a),o.callOnCompleteCallback(n,t,r)}),c.forEach(t,function(t){var n=o.fe(e.child(t));o.le(n)}),this.K.raiseEventsForChangedPath(e,[])}},e.prototype.ce=function(){var e=this;this.de("onDisconnectEvents");var t=this.generateServerValues(),n=r.resolveDeferredValueTree(this.z,t),i=[];n.forEachTree(o.Path.Empty,function(t,n){i=i.concat(e.ue.applyServerOverwrite(t,n));var r=e.fe(t);e.le(r)}),this.z=new a.SparseSnapshotTree,this.K.raiseEventsForChangedPath(o.Path.Empty,i)},e.prototype.onDisconnectCancel=function(e,t){var n=this;this.Z.onDisconnectCancel(""+e,function(r,i){"ok"===r&&n.z.forget(e),n.callOnCompleteCallback(t,r,i)})},e.prototype.onDisconnectSet=function(e,t,n){var r=this,o=i.nodeFromJSON(t);this.Z.onDisconnectPut(""+e,o.val(!0),function(t,i){"ok"===t&&r.z.remember(e,o),r.callOnCompleteCallback(n,t,i)})},e.prototype.onDisconnectSetWithPriority=function(e,t,n,r){var o=this,a=i.nodeFromJSON(t,n);this.Z.onDisconnectPut(""+e,a.val(!0),function(t,n){"ok"===t&&o.z.remember(e,a),o.callOnCompleteCallback(r,t,n)})},e.prototype.onDisconnectUpdate=function(e,t,n){var r=this;if(c.isEmpty(t))return h.log("onDisconnect().update() called with empty data.  Don't do anything."),void this.callOnCompleteCallback(n,"ok");this.Z.onDisconnectMerge(""+e,t,function(o,a){"ok"===o&&c.forEach(t,function(t,n){var o=i.nodeFromJSON(n);r.z.remember(e.child(t),o)}),r.callOnCompleteCallback(n,o,a)})},e.prototype.addEventCallbackForQuery=function(e,t){var n;n=".info"===e.path.getFront()?this.ae.addEventRegistration(e,t):this.ue.addEventRegistration(e,t),this.K.raiseEventsAtPath(e.path,n)},e.prototype.removeEventCallbackForQuery=function(e,t){var n;n=".info"===e.path.getFront()?this.ae.removeEventRegistration(e,t):this.ue.removeEventRegistration(e,t),this.K.raiseEventsAtPath(e.path,n)},e.prototype.interrupt=function(){this.J&&this.J.interrupt("repo_interrupt")},e.prototype.resume=function(){this.J&&this.J.resume("repo_interrupt")},e.prototype.stats=function(e){if(void 0===e&&(e=!1),"undefined"!=typeof console){var t;e?(this.G||(this.G=new _.StatsListener(this.$)),t=this.G.get()):t=this.$.get();var n=Object.keys(t).reduce(function(e,t){return Math.max(t.length,e)},0);c.forEach(t,function(e,t){for(var r=e.length;r<n+2;r++)e+=" ";console.log(e+t)})}},e.prototype.statsIncrementCounter=function(e){this.$.incrementCounter(e),this.re.includeStat(e)},e.prototype.de=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];var n="";this.J&&(n=this.J.id+":"),h.log.apply(void 0,[n].concat(e))},e.prototype.callOnCompleteCallback=function(e,t,n){e&&h.exceptionGuard(function(){if("ok"==t)e(null);else{var r=(t||"error").toUpperCase(),i=r;n&&(i+=": "+n);var o=Error(i);o.code=r,e(o)}})},Object.defineProperty(e.prototype,"database",{get:function(){return this.__database||(this.__database=new m.Database(this))},enumerable:!0,configurable:!0}),e}();t.Repo=C},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t,n){this._e=e,this.ye=t,this.ve=n}return e.prototype.isFullyInitialized=function(){return this.ye},e.prototype.isFiltered=function(){return this.ve},e.prototype.isCompleteForPath=function(e){if(e.isEmpty())return this.isFullyInitialized()&&!this.ve;var t=e.getFront();return this.isCompleteForChild(t)},e.prototype.isCompleteForChild=function(e){return this.isFullyInitialized()&&!this.ve||this._e.hasChild(e)},e.prototype.getNode=function(){return this._e},e}();t.CacheNode=r},,,function(e,t,n){"use strict";var r=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(t,"__esModule",{value:!0});var i=n(35),o=n(82),a=n(1),s=n(83),u=n(36),l=n(17),h=n(2),c=n(107),p=n(7),d=n(0),f=n(0),_=n(47),y=function(e){function t(t,n){if(!(t instanceof l.Repo))throw Error("new Reference() no longer supported - use app.database().");return e.call(this,t,n,c.QueryParams.DEFAULT,!1)||this}return r(t,e),t.prototype.getKey=function(){return d.validateArgCount("Reference.key",0,0,arguments.length),this.path.isEmpty()?null:this.path.getBack()},t.prototype.child=function(e){return d.validateArgCount("Reference.child",1,1,arguments.length),"number"==typeof e?e+="":e instanceof h.Path||(null===this.path.getFront()?p.validateRootPathString("Reference.child",1,e,!1):p.validatePathString("Reference.child",1,e,!1)),new t(this.repo,this.path.child(e))},t.prototype.getParent=function(){d.validateArgCount("Reference.parent",0,0,arguments.length);var e=this.path.parent();return null===e?null:new t(this.repo,e)},t.prototype.getRoot=function(){d.validateArgCount("Reference.root",0,0,arguments.length);for(var e=this;null!==e.getParent();)e=e.getParent();return e},t.prototype.databaseProp=function(){return this.repo.database},t.prototype.set=function(e,t){d.validateArgCount("Reference.set",1,2,arguments.length),p.validateWritablePath("Reference.set",this.path),p.validateFirebaseDataArg("Reference.set",1,e,this.path,!1),d.validateCallback("Reference.set",2,t,!0);var n=new f.Deferred;return this.repo.setWithPriority(this.path,e,null,n.wrapCallback(t)),n.promise},t.prototype.update=function(e,t){if(d.validateArgCount("Reference.update",1,2,arguments.length),p.validateWritablePath("Reference.update",this.path),Array.isArray(e)){for(var n={},r=0;r<e.length;++r)n[""+r]=e[r];e=n,a.warn("Passing an Array to Firebase.update() is deprecated. Use set() if you want to overwrite the existing data, or an Object with integer keys if you really do want to only update some of the children.")}p.validateFirebaseMergeDataArg("Reference.update",1,e,this.path,!1),d.validateCallback("Reference.update",2,t,!0);var i=new f.Deferred;return this.repo.update(this.path,e,i.wrapCallback(t)),i.promise},t.prototype.setWithPriority=function(e,t,n){if(d.validateArgCount("Reference.setWithPriority",2,3,arguments.length),p.validateWritablePath("Reference.setWithPriority",this.path),p.validateFirebaseDataArg("Reference.setWithPriority",1,e,this.path,!1),p.validatePriority("Reference.setWithPriority",2,t,!1),d.validateCallback("Reference.setWithPriority",3,n,!0),".length"===this.getKey()||".keys"===this.getKey())throw"Reference.setWithPriority failed: "+this.getKey()+" is a read-only object.";var r=new f.Deferred;return this.repo.setWithPriority(this.path,e,t,r.wrapCallback(n)),r.promise},t.prototype.remove=function(e){return d.validateArgCount("Reference.remove",0,1,arguments.length),p.validateWritablePath("Reference.remove",this.path),d.validateCallback("Reference.remove",1,e,!0),this.set(null,e)},t.prototype.transaction=function(e,t,n){if(d.validateArgCount("Reference.transaction",1,3,arguments.length),p.validateWritablePath("Reference.transaction",this.path),d.validateCallback("Reference.transaction",1,e,!1),d.validateCallback("Reference.transaction",2,t,!0),p.validateBoolean("Reference.transaction",3,n,!0),".length"===this.getKey()||".keys"===this.getKey())throw"Reference.transaction failed: "+this.getKey()+" is a read-only object.";void 0===n&&(n=!0);var r=new f.Deferred;"function"==typeof t&&r.promise.catch(function(){});var i=function(e,n,i){e?r.reject(e):r.resolve(new o.TransactionResult(n,i)),"function"==typeof t&&t(e,n,i)};return this.repo.startTransaction(this.path,e,i,n),r.promise},t.prototype.setPriority=function(e,t){d.validateArgCount("Reference.setPriority",1,2,arguments.length),p.validateWritablePath("Reference.setPriority",this.path),p.validatePriority("Reference.setPriority",1,e,!1),d.validateCallback("Reference.setPriority",2,t,!0);var n=new f.Deferred;return this.repo.setWithPriority(this.path.child(".priority"),e,null,n.wrapCallback(t)),n.promise},t.prototype.push=function(e,t){d.validateArgCount("Reference.push",0,2,arguments.length),p.validateWritablePath("Reference.push",this.path),p.validateFirebaseDataArg("Reference.push",1,e,this.path,!0),d.validateCallback("Reference.push",2,t,!0);var n,r=this.repo.serverTime(),i=s.nextPushId(r),o=this.child(i),a=this.child(i);return n=null!=e?o.set(e,t).then(function(){return a}):Promise.resolve(a),o.then=n.then.bind(n),o.catch=n.then.bind(n,void 0),"function"==typeof t&&n.catch(function(){}),o},t.prototype.onDisconnect=function(){return p.validateWritablePath("Reference.onDisconnect",this.path),new i.OnDisconnect(this.repo,this.path)},Object.defineProperty(t.prototype,"database",{get:function(){return this.databaseProp()},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"key",{get:function(){return this.getKey()},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"parent",{get:function(){return this.getParent()},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"root",{get:function(){return this.getRoot()},enumerable:!0,configurable:!0}),t}(u.Query);t.Reference=y,u.Query.__referenceConstructor=y,_.SyncPoint.__referenceConstructor=y},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(0),i=n(7),o=n(2),a=n(3),s=function(){function e(e,t,n){this._e=e,this.ge=t,this.me=n}return e.prototype.val=function(){return r.validateArgCount("DataSnapshot.val",0,0,arguments.length),this._e.val()},e.prototype.exportVal=function(){return r.validateArgCount("DataSnapshot.exportVal",0,0,arguments.length),this._e.val(!0)},e.prototype.toJSON=function(){return r.validateArgCount("DataSnapshot.toJSON",0,1,arguments.length),this.exportVal()},e.prototype.exists=function(){return r.validateArgCount("DataSnapshot.exists",0,0,arguments.length),!this._e.isEmpty()},e.prototype.child=function(t){r.validateArgCount("DataSnapshot.child",0,1,arguments.length),t+="",i.validatePathString("DataSnapshot.child",1,t,!1);var n=new o.Path(t),s=this.ge.child(n);return new e(this._e.getChild(n),s,a.PRIORITY_INDEX)},e.prototype.hasChild=function(e){r.validateArgCount("DataSnapshot.hasChild",1,1,arguments.length),i.validatePathString("DataSnapshot.hasChild",1,e,!1);var t=new o.Path(e);return!this._e.getChild(t).isEmpty()},e.prototype.getPriority=function(){return r.validateArgCount("DataSnapshot.getPriority",0,0,arguments.length),this._e.getPriority().val()},e.prototype.forEach=function(t){var n=this;return r.validateArgCount("DataSnapshot.forEach",1,1,arguments.length),r.validateCallback("DataSnapshot.forEach",1,t,!1),!this._e.isLeafNode()&&!!this._e.forEachChild(this.me,function(r,i){return t(new e(i,n.ge.child(r),a.PRIORITY_INDEX))})},e.prototype.hasChildren=function(){return r.validateArgCount("DataSnapshot.hasChildren",0,0,arguments.length),!this._e.isLeafNode()&&!this._e.isEmpty()},Object.defineProperty(e.prototype,"key",{get:function(){return this.ge.getKey()},enumerable:!0,configurable:!0}),e.prototype.numChildren=function(){return r.validateArgCount("DataSnapshot.numChildren",0,0,arguments.length),this._e.numChildren()},e.prototype.getRef=function(){return r.validateArgCount("DataSnapshot.ref",0,0,arguments.length),this.ge},Object.defineProperty(e.prototype,"ref",{get:function(){return this.getRef()},enumerable:!0,configurable:!0}),e}();t.DataSnapshot=s},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r,i=n(16),o=n(2),a=n(1),s=n(0),u=function(){return r||(r=new i.SortedMap(a.stringCompare)),r},l=function(){function e(e,t){void 0===t&&(t=u()),this.value=e,this.children=t}return e.fromObject=function(t){var n=e.Empty;return s.forEach(t,function(e,t){n=n.set(new o.Path(e),t)}),n},e.prototype.isEmpty=function(){return null===this.value&&this.children.isEmpty()},e.prototype.findRootMostMatchingPathAndValue=function(e,t){if(null!=this.value&&t(this.value))return{path:o.Path.Empty,value:this.value};if(e.isEmpty())return null;var n=e.getFront(),r=this.children.get(n);if(null!==r){var i=r.findRootMostMatchingPathAndValue(e.popFront(),t);return null!=i?{path:new o.Path(n).child(i.path),value:i.value}:null}return null},e.prototype.findRootMostValueAndPath=function(e){return this.findRootMostMatchingPathAndValue(e,function(){return!0})},e.prototype.subtree=function(t){if(t.isEmpty())return this;var n=t.getFront(),r=this.children.get(n);return null!==r?r.subtree(t.popFront()):e.Empty},e.prototype.set=function(t,n){if(t.isEmpty())return new e(n,this.children);var r=t.getFront(),i=this.children.get(r)||e.Empty,o=i.set(t.popFront(),n),a=this.children.insert(r,o);return new e(this.value,a)},e.prototype.remove=function(t){if(t.isEmpty())return this.children.isEmpty()?e.Empty:new e(null,this.children);var n=t.getFront(),r=this.children.get(n);if(r){var i=r.remove(t.popFront()),o=void 0;return o=i.isEmpty()?this.children.remove(n):this.children.insert(n,i),null===this.value&&o.isEmpty()?e.Empty:new e(this.value,o)}return this},e.prototype.get=function(e){if(e.isEmpty())return this.value;var t=e.getFront(),n=this.children.get(t);return n?n.get(e.popFront()):null},e.prototype.setTree=function(t,n){if(t.isEmpty())return n;var r=t.getFront(),i=this.children.get(r)||e.Empty,o=i.setTree(t.popFront(),n),a=void 0;return a=o.isEmpty()?this.children.remove(r):this.children.insert(r,o),new e(this.value,a)},e.prototype.fold=function(e){return this.Ce(o.Path.Empty,e)},e.prototype.Ce=function(e,t){var n={};return this.children.inorderTraversal(function(r,i){n[r]=i.Ce(e.child(r),t)}),t(e,this.value,n)},e.prototype.findOnPath=function(e,t){return this.Ee(e,o.Path.Empty,t)},e.prototype.Ee=function(e,t,n){var r=!!this.value&&n(t,this.value);if(r)return r;if(e.isEmpty())return null;var i=e.getFront(),o=this.children.get(i);return o?o.Ee(e.popFront(),t.child(i),n):null},e.prototype.foreachOnPath=function(e,t){return this.Ne(e,o.Path.Empty,t)},e.prototype.Ne=function(t,n,r){if(t.isEmpty())return this;this.value&&r(n,this.value);var i=t.getFront(),o=this.children.get(i);return o?o.Ne(t.popFront(),n.child(i),r):e.Empty},e.prototype.foreach=function(e){this.Pe(o.Path.Empty,e)},e.prototype.Pe=function(e,t){this.children.inorderTraversal(function(n,r){r.Pe(e.child(n),t)}),this.value&&t(e,this.value)},e.prototype.foreachChild=function(e){this.children.inorderTraversal(function(t,n){n.value&&e(t,n.value)})},e.Empty=new e(null),e}();t.ImmutableTree=l},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(0),i=n(9),o=n(4),a=n(3),s=function(){function e(e){this.me=e}return e.prototype.updateChild=function(e,t,n,o,a,s){r.assert(e.isIndexed(this.me),"A node must be indexed if only a child is updated");var u=e.getImmediateChild(t);return u.getChild(o).equals(n.getChild(o))&&u.isEmpty()==n.isEmpty()?e:(null!=s&&(n.isEmpty()?e.hasChild(t)?s.trackChildChange(i.Change.childRemovedChange(t,u)):r.assert(e.isLeafNode(),"A child remove without an old child only makes sense on a leaf node"):u.isEmpty()?s.trackChildChange(i.Change.childAddedChange(t,n)):s.trackChildChange(i.Change.childChangedChange(t,n,u))),e.isLeafNode()&&n.isEmpty()?e:e.updateImmediateChild(t,n).withIndex(this.me))},e.prototype.updateFullNode=function(e,t,n){return null!=n&&(e.isLeafNode()||e.forEachChild(a.PRIORITY_INDEX,function(e,r){t.hasChild(e)||n.trackChildChange(i.Change.childRemovedChange(e,r))}),t.isLeafNode()||t.forEachChild(a.PRIORITY_INDEX,function(t,r){if(e.hasChild(t)){var o=e.getImmediateChild(t);o.equals(r)||n.trackChildChange(i.Change.childChangedChange(t,r,o))}else n.trackChildChange(i.Change.childAddedChange(t,r))})),t.withIndex(this.me)},e.prototype.updatePriority=function(e,t){return e.isEmpty()?o.ChildrenNode.EMPTY_NODE:e.updatePriority(t)},e.prototype.filtersNodes=function(){return!1},e.prototype.getIndexedFilter=function(){return this},e.prototype.getIndex=function(){return this.me},e}();t.IndexedFilter=s},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(99),i=function(){function e(){}return e.getCollection=function(e){var t=""+e;return this.be[t]||(this.be[t]=new r.StatsCollection),this.be[t]},e.getOrCreateReporter=function(e,t){var n=""+e;return this.Se[n]||(this.Se[n]=t()),this.Se[n]},e.be={},e.Se={},e}();t.StatsManager=i},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(0),i=n(17),o=n(1),a=n(33),s=n(7);n(109);var u,l=function(){function e(){this.Te={},this.we=!1}return e.getInstance=function(){return u||(u=new e),u},e.prototype.interrupt=function(){for(var e in this.Te)for(var t in this.Te[e])this.Te[e][t].interrupt()},e.prototype.resume=function(){for(var e in this.Te)for(var t in this.Te[e])this.Te[e][t].resume()},e.prototype.databaseFromApp=function(e,t){var n=t||e.options.databaseURL;void 0===n&&o.fatal("Can't determine Firebase Database URL.  Be sure to include databaseURL option when calling firebase.intializeApp().");var r=a.parseRepoInfo(n),i=r.repoInfo;return s.validateUrl("Invalid Firebase Database URL",1,r),r.path.isEmpty()||o.fatal("Database URL must point to the root of a Firebase Database (not including a child path)."),this.createRepo(i,e).database},e.prototype.deleteRepo=function(e){var t=r.safeGet(this.Te,e.app.name);t&&r.safeGet(t,e.H.toURLString())===e||o.fatal("Database "+e.app.name+"("+e.H+") has already been deleted."),e.interrupt(),delete t[e.H.toURLString()]},e.prototype.createRepo=function(e,t){var n=r.safeGet(this.Te,t.name);n||(n={},this.Te[t.name]=n);var a=r.safeGet(n,e.toURLString());return a&&o.fatal("Database initialized multiple times. Please make sure the format of the database URL matches with each database() call."),a=new i.Repo(e,this.we,t),n[e.toURLString()]=a,a},e.prototype.forceRestClient=function(e){this.we=e},e}();t.RepoManager=l},,,,,,function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(1),i=n(33),o=n(2),a=n(21),s=n(17),u=n(26),l=n(0),h=n(7),c=function(){function e(e){this.Ie=e,e instanceof s.Repo||r.fatal("Don't call new Database() directly - please use firebase.database()."),this.B=new a.Reference(e,o.Path.Empty),this.INTERNAL=new p(this)}return Object.defineProperty(e.prototype,"app",{get:function(){return this.Ie.app},enumerable:!0,configurable:!0}),e.prototype.ref=function(e){return this.Re("ref"),l.validateArgCount("database.ref",0,1,arguments.length),void 0!==e?this.B.child(e):this.B},e.prototype.refFromURL=function(e){var t="database.refFromURL";this.Re(t),l.validateArgCount(t,1,1,arguments.length);var n=i.parseRepoInfo(e);h.validateUrl(t,1,n);var o=n.repoInfo;return o.host!==this.Ie.H.host&&r.fatal(t+": Host name does not match the current database: (found "+o.host+" but expected "+this.Ie.H.host+")"),this.ref(""+n.path)},e.prototype.Re=function(e){null===this.Ie&&r.fatal("Cannot call "+e+" on a deleted database.")},e.prototype.goOffline=function(){l.validateArgCount("database.goOffline",0,0,arguments.length),this.Re("goOffline"),this.Ie.interrupt()},e.prototype.goOnline=function(){l.validateArgCount("database.goOnline",0,0,arguments.length),this.Re("goOnline"),this.Ie.resume()},e.ServerValue={TIMESTAMP:{".sv":"timestamp"}},e}();t.Database=c;var p=function(){function e(e){this.database=e}return e.prototype.delete=function(){return this.database.Re("delete"),u.RepoManager.getInstance().deleteRepo(this.database.Ie),this.database.Ie=null,this.database.B=null,this.database.INTERNAL=null,this.database=null,Promise.resolve()},e}();t.DatabaseInternals=p},function(e,t,n){"use strict";function r(e){for(var t="",n=e.split("/"),r=0;r<n.length;r++)if(n[r].length>0){var i=n[r];try{i=decodeURIComponent(i.replace(/\+/g," "))}catch(e){}t+="/"+i}return t}Object.defineProperty(t,"__esModule",{value:!0});var i=n(2),o=n(34),a=n(1);t.parseRepoInfo=function(e){var n=t.parseURL(e),r=n.subdomain;"firebase"===n.domain&&a.fatal(n.host+" is no longer supported. Please use <YOUR FIREBASE>.firebaseio.com instead"),r&&"undefined"!=r||a.fatal("Cannot parse Firebase url. Please use https://<YOUR FIREBASE>.firebaseio.com"),n.secure||a.warnIfPageIsSecure();var s="ws"===n.scheme||"wss"===n.scheme;return{repoInfo:new o.RepoInfo(n.host,n.secure,r,s),path:new i.Path(n.pathString)}},t.parseURL=function(e){var t="",n="",i="",o="",a=!0,s="https",u=443;if("string"==typeof e){var l=e.indexOf("//");l>=0&&(s=e.substring(0,l-1),e=e.substring(l+2));var h=e.indexOf("/");-1===h&&(h=e.length),t=e.substring(0,h),o=r(e.substring(h));var c=t.split(".");3===c.length?(n=c[1],i=c[0].toLowerCase()):2===c.length&&(n=c[0]),(l=t.indexOf(":"))>=0&&(a="https"===s||"wss"===s,u=parseInt(t.substring(l+1),10))}return{host:t,port:u,domain:n,subdomain:i,secure:a,scheme:s,pathString:o}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(0),i=n(0),o=n(12),a=n(13),s=function(){function e(e,t,n,r,i){void 0===i&&(i=""),this.secure=t,this.namespace=n,this.webSocketOnly=r,this.persistenceKey=i,this.host=e.toLowerCase(),this.domain=this.host.substr(this.host.indexOf(".")+1),this.internalHost=o.PersistentStorage.get("host:"+e)||this.host}return e.prototype.needsQueryParam=function(){return this.host!==this.internalHost},e.prototype.isCacheableHost=function(){return"s-"===this.internalHost.substr(0,2)},e.prototype.isDemoHost=function(){return"firebaseio-demo.com"===this.domain},e.prototype.isCustomHost=function(){return"firebaseio.com"!==this.domain&&"firebaseio-demo.com"!==this.domain},e.prototype.updateHost=function(e){e!==this.internalHost&&(this.internalHost=e,this.isCacheableHost()&&o.PersistentStorage.set("host:"+this.host,this.internalHost))},e.prototype.connectionURL=function(e,t){r.assert("string"==typeof e,"typeof type must == string"),r.assert("object"==typeof t,"typeof params must == object");var n;if(e===a.WEBSOCKET)n=(this.secure?"wss://":"ws://")+this.internalHost+"/.ws?";else{if(e!==a.LONG_POLLING)throw Error("Unknown connection type: "+e);n=(this.secure?"https://":"http://")+this.internalHost+"/.lp?"}this.needsQueryParam()&&(t.ns=this.namespace);var o=[];return i.forEach(t,function(e,t){o.push(e+"="+t)}),n+o.join("&")},e.prototype.toString=function(){var e=this.toURLString();return this.persistenceKey&&(e+="<"+this.persistenceKey+">"),e},e.prototype.toURLString=function(){return(this.secure?"https://":"http://")+this.host},e}();t.RepoInfo=s},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(0),i=n(7),o=n(1),a=n(0),s=function(){function e(e,t){this.Ie=e,this.Oe=t}return e.prototype.cancel=function(e){r.validateArgCount("OnDisconnect.cancel",0,1,arguments.length),r.validateCallback("OnDisconnect.cancel",1,e,!0);var t=new a.Deferred;return this.Ie.onDisconnectCancel(this.Oe,t.wrapCallback(e)),t.promise},e.prototype.remove=function(e){r.validateArgCount("OnDisconnect.remove",0,1,arguments.length),i.validateWritablePath("OnDisconnect.remove",this.Oe),r.validateCallback("OnDisconnect.remove",1,e,!0);var t=new a.Deferred;return this.Ie.onDisconnectSet(this.Oe,null,t.wrapCallback(e)),t.promise},e.prototype.set=function(e,t){r.validateArgCount("OnDisconnect.set",1,2,arguments.length),i.validateWritablePath("OnDisconnect.set",this.Oe),i.validateFirebaseDataArg("OnDisconnect.set",1,e,this.Oe,!1),r.validateCallback("OnDisconnect.set",2,t,!0);var n=new a.Deferred;return this.Ie.onDisconnectSet(this.Oe,e,n.wrapCallback(t)),n.promise},e.prototype.setWithPriority=function(e,t,n){r.validateArgCount("OnDisconnect.setWithPriority",2,3,arguments.length),i.validateWritablePath("OnDisconnect.setWithPriority",this.Oe),i.validateFirebaseDataArg("OnDisconnect.setWithPriority",1,e,this.Oe,!1),i.validatePriority("OnDisconnect.setWithPriority",2,t,!1),r.validateCallback("OnDisconnect.setWithPriority",3,n,!0);var o=new a.Deferred;return this.Ie.onDisconnectSetWithPriority(this.Oe,e,t,o.wrapCallback(n)),o.promise},e.prototype.update=function(e,t){if(r.validateArgCount("OnDisconnect.update",1,2,arguments.length),i.validateWritablePath("OnDisconnect.update",this.Oe),Array.isArray(e)){for(var n={},s=0;s<e.length;++s)n[""+s]=e[s];e=n,o.warn("Passing an Array to firebase.database.onDisconnect().update() is deprecated. Use set() if you want to overwrite the existing data, or an Object with integer keys if you really do want to only update some of the children.")}i.validateFirebaseMergeDataArg("OnDisconnect.update",1,e,this.Oe,!1),r.validateCallback("OnDisconnect.update",2,t,!0);var u=new a.Deferred;return this.Ie.onDisconnectUpdate(this.Oe,e,u.wrapCallback(t)),u.promise},e}();t.OnDisconnect=s},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r,i=n(0),o=n(10),a=n(3),s=n(38),u=n(42),l=n(1),h=n(2),c=n(7),p=n(0),d=n(84),f=n(0),_=function(){function e(e,t,n,r){this.repo=e,this.path=t,this.Ae=n,this.De=r}return Object.defineProperty(e,"__referenceConstructor",{get:function(){return i.assert(r,"Reference.ts has not been loaded"),r},set:function(e){r=e},enumerable:!0,configurable:!0}),e.Me=function(e){var t=null,n=null;if(e.hasStart()&&(t=e.getIndexStartValue()),e.hasEnd()&&(n=e.getIndexEndValue()),e.getIndex()===o.KEY_INDEX){var r="Query: When ordering by key, you may only pass one argument to startAt(), endAt(), or equalTo().",h="Query: When ordering by key, the argument passed to startAt(), endAt(),or equalTo() must be a string.";if(e.hasStart()){if(e.getIndexStartName()!=l.MIN_NAME)throw Error(r);if("string"!=typeof t)throw Error(h)}if(e.hasEnd()){if(e.getIndexEndName()!=l.MAX_NAME)throw Error(r);if("string"!=typeof n)throw Error(h)}}else if(e.getIndex()===a.PRIORITY_INDEX){if(null!=t&&!c.isValidPriority(t)||null!=n&&!c.isValidPriority(n))throw Error("Query: When ordering by priority, the first argument passed to startAt(), endAt(), or equalTo() must be a valid priority value (null, a number, or a string).")}else if(i.assert(e.getIndex()instanceof u.PathIndex||e.getIndex()===s.VALUE_INDEX,"unknown index type."),null!=t&&"object"==typeof t||null!=n&&"object"==typeof n)throw Error("Query: First argument passed to startAt(), endAt(), or equalTo() cannot be an object.")},e.Le=function(e){if(e.hasStart()&&e.hasEnd()&&e.hasLimit()&&!e.hasAnchoredLimit())throw Error("Query: Can't combine startAt(), endAt(), and limit(). Use limitToFirst() or limitToLast() instead.")},e.prototype.Fe=function(e){if(!0===this.De)throw Error(e+": You can't combine multiple orderBy calls.")},e.prototype.getQueryParams=function(){return this.Ae},e.prototype.getRef=function(){return p.validateArgCount("Query.ref",0,0,arguments.length),new e.__referenceConstructor(this.repo,this.path)},e.prototype.on=function(t,n,r,i){p.validateArgCount("Query.on",2,4,arguments.length),c.validateEventType("Query.on",1,t,!1),p.validateCallback("Query.on",2,n,!1);var o=e.xe("Query.on",r,i);if("value"===t)this.onValueEvent(n,o.cancel,o.context);else{var a={};a[t]=n,this.onChildEvent(a,o.cancel,o.context)}return n},e.prototype.onValueEvent=function(e,t,n){var r=new d.ValueEventRegistration(e,t||null,n||null);this.repo.addEventCallbackForQuery(this,r)},e.prototype.onChildEvent=function(e,t,n){var r=new d.ChildEventRegistration(e,t,n);this.repo.addEventCallbackForQuery(this,r)},e.prototype.off=function(e,t,n){p.validateArgCount("Query.off",0,3,arguments.length),c.validateEventType("Query.off",1,e,!0),p.validateCallback("Query.off",2,t,!0),p.validateContextObject("Query.off",3,n,!0);var r=null,i=null;if("value"===e){var o=t||null;r=new d.ValueEventRegistration(o,null,n||null)}else e&&(t&&(i={},i[e]=t),r=new d.ChildEventRegistration(i,null,n||null));this.repo.removeEventCallbackForQuery(this,r)},e.prototype.once=function(t,n,r,i){var o=this;p.validateArgCount("Query.once",1,4,arguments.length),c.validateEventType("Query.once",1,t,!1),p.validateCallback("Query.once",2,n,!0);var a=e.xe("Query.once",r,i),s=!0,u=new f.Deferred;u.promise.catch(function(){});var l=function(e){s&&(s=!1,o.off(t,l),n&&n.bind(a.context)(e),u.resolve(e))};return this.on(t,l,function(e){o.off(t,l),a.cancel&&a.cancel.bind(a.context)(e),u.reject(e)}),u.promise},e.prototype.limitToFirst=function(t){if(p.validateArgCount("Query.limitToFirst",1,1,arguments.length),"number"!=typeof t||Math.floor(t)!==t||t<=0)throw Error("Query.limitToFirst: First argument must be a positive integer.");if(this.Ae.hasLimit())throw Error("Query.limitToFirst: Limit was already set (by another call to limit, limitToFirst, or limitToLast).");return new e(this.repo,this.path,this.Ae.limitToFirst(t),this.De)},e.prototype.limitToLast=function(t){if(p.validateArgCount("Query.limitToLast",1,1,arguments.length),"number"!=typeof t||Math.floor(t)!==t||t<=0)throw Error("Query.limitToLast: First argument must be a positive integer.");if(this.Ae.hasLimit())throw Error("Query.limitToLast: Limit was already set (by another call to limit, limitToFirst, or limitToLast).");return new e(this.repo,this.path,this.Ae.limitToLast(t),this.De)},e.prototype.orderByChild=function(t){if(p.validateArgCount("Query.orderByChild",1,1,arguments.length),"$key"===t)throw Error('Query.orderByChild: "$key" is invalid.  Use Query.orderByKey() instead.');if("$priority"===t)throw Error('Query.orderByChild: "$priority" is invalid.  Use Query.orderByPriority() instead.');if("$value"===t)throw Error('Query.orderByChild: "$value" is invalid.  Use Query.orderByValue() instead.');c.validatePathString("Query.orderByChild",1,t,!1),this.Fe("Query.orderByChild");var n=new h.Path(t);if(n.isEmpty())throw Error("Query.orderByChild: cannot pass in empty path.  Use Query.orderByValue() instead.");var r=new u.PathIndex(n),i=this.Ae.orderBy(r);return e.Me(i),new e(this.repo,this.path,i,!0)},e.prototype.orderByKey=function(){p.validateArgCount("Query.orderByKey",0,0,arguments.length),this.Fe("Query.orderByKey");var t=this.Ae.orderBy(o.KEY_INDEX);return e.Me(t),new e(this.repo,this.path,t,!0)},e.prototype.orderByPriority=function(){p.validateArgCount("Query.orderByPriority",0,0,arguments.length),this.Fe("Query.orderByPriority");var t=this.Ae.orderBy(a.PRIORITY_INDEX);return e.Me(t),new e(this.repo,this.path,t,!0)},e.prototype.orderByValue=function(){p.validateArgCount("Query.orderByValue",0,0,arguments.length),this.Fe("Query.orderByValue");var t=this.Ae.orderBy(s.VALUE_INDEX);return e.Me(t),new e(this.repo,this.path,t,!0)},e.prototype.startAt=function(t,n){void 0===t&&(t=null),p.validateArgCount("Query.startAt",0,2,arguments.length),c.validateFirebaseDataArg("Query.startAt",1,t,this.path,!0),c.validateKey("Query.startAt",2,n,!0);var r=this.Ae.startAt(t,n);if(e.Le(r),e.Me(r),this.Ae.hasStart())throw Error("Query.startAt: Starting point was already set (by another call to startAt or equalTo).");return void 0===t&&(t=null,n=null),new e(this.repo,this.path,r,this.De)},e.prototype.endAt=function(t,n){void 0===t&&(t=null),p.validateArgCount("Query.endAt",0,2,arguments.length),c.validateFirebaseDataArg("Query.endAt",1,t,this.path,!0),c.validateKey("Query.endAt",2,n,!0);var r=this.Ae.endAt(t,n);if(e.Le(r),e.Me(r),this.Ae.hasEnd())throw Error("Query.endAt: Ending point was already set (by another call to endAt or equalTo).");return new e(this.repo,this.path,r,this.De)},e.prototype.equalTo=function(e,t){if(p.validateArgCount("Query.equalTo",1,2,arguments.length),c.validateFirebaseDataArg("Query.equalTo",1,e,this.path,!1),c.validateKey("Query.equalTo",2,t,!0),this.Ae.hasStart())throw Error("Query.equalTo: Starting point was already set (by another call to startAt or equalTo).");if(this.Ae.hasEnd())throw Error("Query.equalTo: Ending point was already set (by another call to endAt or equalTo).");return this.startAt(e,t).endAt(e,t)},e.prototype.toString=function(){return p.validateArgCount("Query.toString",0,0,arguments.length),""+this.repo+this.path.toUrlEncodedString()},e.prototype.toJSON=function(){return p.validateArgCount("Query.toJSON",0,1,arguments.length),""+this},e.prototype.queryObject=function(){return this.Ae.getQueryObject()},e.prototype.queryIdentifier=function(){var e=this.queryObject(),t=l.ObjectToUniqueKey(e);return"{}"===t?"default":t},e.prototype.isEqual=function(t){if(p.validateArgCount("Query.isEqual",1,1,arguments.length),!(t instanceof e))throw Error("Query.isEqual failed: First argument must be an instance of firebase.database.Query.");var n=this.repo===t.repo,r=this.path.equals(t.path),i=this.queryIdentifier()===t.queryIdentifier();return n&&r&&i},e.xe=function(e,t,n){var r={cancel:null,context:null};if(t&&n)r.cancel=t,p.validateCallback(e,3,r.cancel,!0),r.context=n,p.validateContextObject(e,4,r.context,!0);else if(t)if("object"==typeof t&&null!==t)r.context=t;else{if("function"!=typeof t)throw Error(p.errorPrefix(e,3,!0)+" must either be a cancel callback or a context object.");r.cancel=t}return r},Object.defineProperty(e.prototype,"ref",{get:function(){return this.getRef()},enumerable:!0,configurable:!0}),e}();t.Query=_},function(e,t,n){"use strict";function r(e){i=e}Object.defineProperty(t,"__esModule",{value:!0});var i,o=n(0),a=n(1),s=n(0);t.setMaxNode=r,t.priorityHashText=function(e){return"number"==typeof e?"number:"+a.doubleToIEEE754String(e):"string:"+e},t.validatePriorityNode=function(e){if(e.isLeafNode()){var t=e.val();o.assert("string"==typeof t||"number"==typeof t||"object"==typeof t&&s.contains(t,".sv"),"Priority must be a string or number.")}else o.assert(e===i||e.isEmpty(),"priority of unexpected type.");o.assert(e===i||e.getPriority().isEmpty(),"Priority nodes can't have a priority of their own.")}},function(e,t,n){"use strict";var r=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(t,"__esModule",{value:!0});var i=n(14),o=n(5),a=n(1),s=n(11),u=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return r(t,e),t.prototype.compare=function(e,t){var n=e.node.compareTo(t.node);return 0===n?a.nameCompare(e.name,t.name):n},t.prototype.isDefinedOn=function(e){return!0},t.prototype.indexedValueChanged=function(e,t){return!e.equals(t)},t.prototype.minPost=function(){return o.NamedNode.MIN},t.prototype.maxPost=function(){return o.NamedNode.MAX},t.prototype.makePost=function(e,t){var n=s.nodeFromJSON(e);return new o.NamedNode(t,n)},t.prototype.toString=function(){return".value"},t}(i.Index);t.ValueIndex=u,t.VALUE_INDEX=new u},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r,i=n(0),o=n(40),a=n(0),s=n(5),u=n(3),l=n(10),h={},c=function(){function e(e,t){this.ke=e,this.We=t}return Object.defineProperty(e,"Default",{get:function(){return i.assert(h&&u.PRIORITY_INDEX,"ChildrenNode.ts has not been loaded"),r=r||new e({".priority":h},{".priority":u.PRIORITY_INDEX})},enumerable:!0,configurable:!0}),e.prototype.get=function(e){var t=a.safeGet(this.ke,e);if(!t)throw Error("No index defined for "+e);return t===h?null:t},e.prototype.hasIndex=function(e){return a.contains(this.We,""+e)},e.prototype.addIndex=function(t,n){i.assert(t!==l.KEY_INDEX,"KeyIndex always exists and isn't meant to be added to the IndexMap.");for(var r=[],u=!1,c=n.getIterator(s.NamedNode.Wrap),p=c.getNext();p;)u=u||t.isDefinedOn(p.node),r.push(p),p=c.getNext();var d;d=u?o.buildChildSet(r,t.getCompare()):h;var f=""+t,_=a.clone(this.We);_[f]=t;var y=a.clone(this.ke);return y[f]=d,new e(y,_)},e.prototype.addToIndexes=function(t,n){var r=this;return new e(a.map(this.ke,function(e,u){var l=a.safeGet(r.We,u);if(i.assert(l,"Missing index implementation for "+u),e===h){if(l.isDefinedOn(t.node)){for(var c=[],p=n.getIterator(s.NamedNode.Wrap),d=p.getNext();d;)d.name!=t.name&&c.push(d),d=p.getNext();return c.push(t),o.buildChildSet(c,l.getCompare())}return h}var f=n.get(t.name),_=e;return f&&(_=_.remove(new s.NamedNode(t.name,f))),_.insert(t,t.node)}),this.We)},e.prototype.removeFromIndexes=function(t,n){return new e(a.map(this.ke,function(e){if(e===h)return e;var r=n.get(t.name);return r?e.remove(new s.NamedNode(t.name,r)):e}),this.We)},e}();t.IndexMap=c},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(16),i=n(16),o=Math.log(2),a=function(){function e(e){this.count=function(e){return parseInt(Math.log(e)/o,10)}(e+1),this.je=this.count-1;var t=function(e){return parseInt(Array(e+1).join("1"),2)}(this.count);this.Ve=e+1&t}return e.prototype.nextBitIsOne=function(){var e=!(this.Ve&1<<this.je);return this.je--,e},e}();t.buildChildSet=function(e,t,n,o){e.sort(t);var s=function(t,i){var o,a,u=i-t;if(0==u)return null;if(1==u)return o=e[t],a=n?n(o):o,new r.LLRBNode(a,o.node,r.LLRBNode.BLACK,null,null);var l=parseInt(u/2,10)+t,h=s(t,l),c=s(l+1,i);return o=e[l],a=n?n(o):o,new r.LLRBNode(a,o.node,r.LLRBNode.BLACK,h,c)},u=new a(e.length),l=function(t){for(var i=null,o=null,a=e.length,u=function(t,i){var o=a-t,u=a;a-=t;var h=s(o+1,u),c=e[o],p=n?n(c):c;l(new r.LLRBNode(p,c.node,i,null,h))},l=function(e){i?(i.left=e,i=e):(o=e,i=e)},h=0;h<t.count;++h){var c=t.nextBitIsOne(),p=Math.pow(2,t.count-(h+1));c?u(p,r.LLRBNode.BLACK):(u(p,r.LLRBNode.BLACK),u(p,r.LLRBNode.RED))}return o}(u);return new i.SortedMap(o||t,l)}},function(e,t,n){"use strict";function r(e,t){return o.nameCompare(e.name,t.name)}function i(e,t){return o.nameCompare(e,t)}Object.defineProperty(t,"__esModule",{value:!0});var o=n(1);t.NAME_ONLY_COMPARATOR=r,t.NAME_COMPARATOR=i},function(e,t,n){"use strict";var r=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(t,"__esModule",{value:!0});var i=n(0),o=n(1),a=n(14),s=n(4),u=n(5),l=n(11),h=function(e){function t(t){var n=e.call(this)||this;return n.Qe=t,i.assert(!t.isEmpty()&&".priority"!==t.getFront(),"Can't create PathIndex with empty path or .priority key"),n}return r(t,e),t.prototype.extractChild=function(e){return e.getChild(this.Qe)},t.prototype.isDefinedOn=function(e){return!e.getChild(this.Qe).isEmpty()},t.prototype.compare=function(e,t){var n=this.extractChild(e.node),r=this.extractChild(t.node),i=n.compareTo(r);return 0===i?o.nameCompare(e.name,t.name):i},t.prototype.makePost=function(e,t){var n=l.nodeFromJSON(e),r=s.ChildrenNode.EMPTY_NODE.updateChild(this.Qe,n);return new u.NamedNode(t,r)},t.prototype.maxPost=function(){var e=s.ChildrenNode.EMPTY_NODE.updateChild(this.Qe,s.MAX_NODE);return new u.NamedNode(o.MAX_NAME,e)},t.prototype.toString=function(){return this.Qe.slice().join("/")},t}(a.Index);t.PathIndex=h},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(0),i=n(2),o=n(44),a=n(15),s=n(11),u=n(3);t.generateWithValues=function(e){return e=e||{},e.timestamp=e.timestamp||(new Date).getTime(),e},t.resolveDeferredValue=function(e,t){return e&&"object"==typeof e?(r.assert(".sv"in e,"Unexpected leaf node or priority contents"),t[e[".sv"]]):e},t.resolveDeferredValueTree=function(e,n){var r=new o.SparseSnapshotTree;return e.forEachTree(new i.Path(""),function(e,i){r.remember(e,t.resolveDeferredValueSnapshot(i,n))}),r},t.resolveDeferredValueSnapshot=function(e,n){var r,i=e.getPriority().val(),o=t.resolveDeferredValue(i,n);if(e.isLeafNode()){var l=e,h=t.resolveDeferredValue(l.getValue(),n);return h!==l.getValue()||o!==l.getPriority().val()?new a.LeafNode(h,s.nodeFromJSON(o)):e}var c=e;return r=c,o!==c.getPriority().val()&&(r=r.updatePriority(new a.LeafNode(o))),c.forEachChild(u.PRIORITY_INDEX,function(e,i){var o=t.resolveDeferredValueSnapshot(i,n);o!==i&&(r=r.updateImmediateChild(e,o))}),r}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(2),i=n(3),o=n(45),a=function(){function e(){this.T=null,this._=null}return e.prototype.find=function(e){if(null!=this.T)return this.T.getChild(e);if(e.isEmpty()||null==this._)return null;var t=e.getFront();return e=e.popFront(),this._.contains(t)?this._.get(t).find(e):null},e.prototype.remember=function(t,n){if(t.isEmpty())this.T=n,this._=null;else if(null!==this.T)this.T=this.T.updateChild(t,n);else{null==this._&&(this._=new o.CountedSet);var r=t.getFront();this._.contains(r)||this._.add(r,new e);var i=this._.get(r);t=t.popFront(),i.remember(t,n)}},e.prototype.forget=function(e){if(e.isEmpty())return this.T=null,this._=null,!0;if(null!==this.T){if(this.T.isLeafNode())return!1;var t=this.T;this.T=null;var n=this;return t.forEachChild(i.PRIORITY_INDEX,function(e,t){n.remember(new r.Path(e),t)}),this.forget(e)}if(null!==this._){var o=e.getFront();return e=e.popFront(),this._.contains(o)&&this._.get(o).forget(e)&&this._.remove(o),!!this._.isEmpty()&&(this._=null,!0)}return!0},e.prototype.forEachTree=function(e,t){null!==this.T?t(e,this.T):this.forEachChild(function(n,i){var o=new r.Path(e+"/"+n);i.forEachTree(o,t)})},e.prototype.forEachChild=function(e){null!==this._&&this._.each(function(t,n){e(t,n)})},e}();t.SparseSnapshotTree=a},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(0),i=function(){function e(){this.set={}}return e.prototype.add=function(e,t){this.set[e]=null===t||t},e.prototype.contains=function(e){return r.contains(this.set,e)},e.prototype.get=function(e){return this.contains(e)?this.set[e]:void 0},e.prototype.remove=function(e){delete this.set[e]},e.prototype.clear=function(){this.set={}},e.prototype.isEmpty=function(){return r.isEmpty(this.set)},e.prototype.count=function(){return r.getCount(this.set)},e.prototype.each=function(e){r.forEach(this.set,function(t,n){return e(t,n)})},e.prototype.keys=function(){var e=[];return r.forEach(this.set,function(t){e.push(t)}),e},e}();t.CountedSet=i},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(8),i=n(2),o=function(){function e(e,t,n){this.source=e,this.path=t,this.snap=n,this.type=r.OperationType.OVERWRITE}return e.prototype.operationForChild=function(t){return this.path.isEmpty()?new e(this.source,i.Path.Empty,this.snap.getImmediateChild(t)):new e(this.source,this.path.popFront(),this.snap)},e}();t.Overwrite=o},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r,i=n(18),o=n(4),a=n(0),s=n(0),u=n(48),l=n(90),h=function(){function e(){this.qe={}}return Object.defineProperty(e,"__referenceConstructor",{get:function(){return a.assert(r,"Reference.ts has not been loaded"),r},set:function(e){a.assert(!r,"__referenceConstructor has already been defined"),r=e},enumerable:!0,configurable:!0}),e.prototype.isEmpty=function(){return s.isEmpty(this.qe)},e.prototype.applyOperation=function(e,t,n){var r=e.source.queryId;if(null!==r){var i=s.safeGet(this.qe,r);return a.assert(null!=i,"SyncTree gave us an op for an invalid query."),i.applyOperation(e,t,n)}var o=[];return s.forEach(this.qe,function(r,i){o=o.concat(i.applyOperation(e,t,n))}),o},e.prototype.addEventRegistration=function(e,t,n,r,a){var h=e.queryIdentifier(),c=s.safeGet(this.qe,h);if(!c){var p=n.calcCompleteEventCache(a?r:null),d=!1;p?d=!0:r instanceof o.ChildrenNode?(p=n.calcCompleteEventChildren(r),d=!1):(p=o.ChildrenNode.EMPTY_NODE,d=!1);var f=new u.ViewCache(new i.CacheNode(p,d,!1),new i.CacheNode(r,a,!1));c=new l.View(e,f),this.qe[h]=c}return c.addEventRegistration(t),c.getInitialEvents(t)},e.prototype.removeEventRegistration=function(t,n,r){var i=t.queryIdentifier(),o=[],a=[],u=this.hasCompleteView();if("default"===i){var l=this;s.forEach(this.qe,function(e,t){a=a.concat(t.removeEventRegistration(n,r)),t.isEmpty()&&(delete l.qe[e],t.getQuery().getQueryParams().loadsAllData()||o.push(t.getQuery()))})}else{var h=s.safeGet(this.qe,i);h&&(a=a.concat(h.removeEventRegistration(n,r)),h.isEmpty()&&(delete this.qe[i],h.getQuery().getQueryParams().loadsAllData()||o.push(h.getQuery())))}return u&&!this.hasCompleteView()&&o.push(new e.__referenceConstructor(t.repo,t.path)),{removed:o,events:a}},e.prototype.getQueryViews=function(){var e=this;return Object.keys(this.qe).map(function(t){return e.qe[t]}).filter(function(e){return!e.getQuery().getQueryParams().loadsAllData()})},e.prototype.getCompleteServerCache=function(e){var t=null;return s.forEach(this.qe,function(n,r){t=t||r.getCompleteServerCache(e)}),t},e.prototype.viewForQuery=function(e){if(e.getQueryParams().loadsAllData())return this.getCompleteView();var t=e.queryIdentifier();return s.safeGet(this.qe,t)},e.prototype.viewExistsForQuery=function(e){return null!=this.viewForQuery(e)},e.prototype.hasCompleteView=function(){return null!=this.getCompleteView()},e.prototype.getCompleteView=function(){return s.findValue(this.qe,function(e){return e.getQuery().getQueryParams().loadsAllData()})||null},e}();t.SyncPoint=h},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(4),i=n(18),o=function(){function e(e,t){this.Ue=e,this.Be=t}return e.prototype.updateEventSnap=function(t,n,r){return new e(new i.CacheNode(t,n,r),this.Be)},e.prototype.updateServerSnap=function(t,n,r){return new e(this.Ue,new i.CacheNode(t,n,r))},e.prototype.getEventCache=function(){return this.Ue},e.prototype.getCompleteEventSnap=function(){return this.Ue.isFullyInitialized()?this.Ue.getNode():null},e.prototype.getServerCache=function(){return this.Be},e.prototype.getCompleteServerSnap=function(){return this.Be.isFullyInitialized()?this.Be.getNode():null},e.Empty=new e(new i.CacheNode(r.ChildrenNode.EMPTY_NODE,!1,!1),new i.CacheNode(r.ChildrenNode.EMPTY_NODE,!1,!1)),e}();t.ViewCache=o},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(0),i=function(){function e(e){this.He=e,this.Ge=null}return e.prototype.get=function(){var e=this.He.get(),t=r.clone(e);return this.Ge&&r.forEach(this.Ge,function(e,n){t[e]=t[e]-n}),this.Ge=e,t},e}();t.StatsListener=i},function(e,t,n){"use strict";var r=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(t,"__esModule",{value:!0});var i=n(6),o=n(0),a=n(0),s=n(0),u=n(1),l=n(2),h=n(102),c=n(103),p=n(0),d=n(52),f=n(0),_=n(0),y=n(55),v=1e3,g=3e5,m=function(e){function t(n,r,i,o,a,s){var l=e.call(this)||this;if(l.H=n,l.ee=r,l.te=i,l.ne=o,l.Ke=a,l.Ye=s,l.id=t.Xe++,l.de=u.logWrapper("p:"+l.id+":"),l.ze={},l.Je={},l.$e=[],l.Ze=0,l.et=[],l.tt=!1,l.nt=v,l.rt=g,l.it=null,l.lastSessionId=null,l.ot=null,l.at=!1,l.st={},l.ut=0,l.lt=null,l.ht=null,l.ct=!1,l.pt=0,l.dt=!0,l.ft=null,l._t=null,s&&!_.isNodeSdk())throw Error("Auth override specified in options, but not supported on non Node.js platforms");return l.yt(0),h.VisibilityMonitor.getInstance().on("visible",l.vt,l),-1===n.host.indexOf("fblocal")&&c.OnlineMonitor.getInstance().on("online",l.gt,l),l}return r(t,e),t.prototype.sendRequest=function(e,t,n){var r=++this.ut,i={r:r,a:e,b:t};this.de(a.stringify(i)),s.assert(this.tt,"sendRequest call when we're not connected not allowed."),this.lt.sendRequest(i),n&&(this.st[r]=n)},t.prototype.listen=function(e,t,n,r){var i=e.queryIdentifier(),o=""+e.path;this.de("Listen called for "+o+" "+i),this.Je[o]=this.Je[o]||{},s.assert(e.getQueryParams().isDefault()||!e.getQueryParams().loadsAllData(),"listen() called for non-default but complete query"),s.assert(!this.Je[o][i],"listen() called twice for same path/queryId.");var a={onComplete:r,hashFn:t,query:e,tag:n};this.Je[o][i]=a,this.tt&&this.mt(a)},t.prototype.mt=function(e){var n=this,r=e.query,i=""+r.path,o=r.queryIdentifier();this.de("Listen on "+i+" for "+o);var a={p:i};e.tag&&(a.q=r.queryObject(),a.t=e.tag),a.h=e.hashFn(),this.sendRequest("q",a,function(a){var s=a.d,u=a.s;t.Ct(s,r),(n.Je[i]&&n.Je[i][o])===e&&(n.de("listen response",a),"ok"!==u&&n.Et(i,o),e.onComplete&&e.onComplete(u,s))})},t.Ct=function(e,t){if(e&&"object"==typeof e&&o.contains(e,"w")){var n=o.safeGet(e,"w");if(Array.isArray(n)&&~n.indexOf("no_index")){var r='".indexOn": "'+t.getQueryParams().getIndex()+'"',i=""+t.path;u.warn("Using an unspecified index. Your data will be downloaded and filtered on the client. Consider adding "+r+" at "+i+" to your security rules for better performance.")}}},t.prototype.refreshAuthToken=function(e){this.ht=e,this.de("Auth token refreshed"),this.ht?this.tryAuth():this.tt&&this.sendRequest("unauth",{},function(){}),this.Nt(e)},t.prototype.Nt=function(e){(e&&40===e.length||p.isAdmin(e))&&(this.de("Admin auth credential detected.  Reducing max reconnect time."),this.rt=3e4)},t.prototype.tryAuth=function(){var e=this;if(this.tt&&this.ht){var t=this.ht,n=p.isValidFormat(t)?"auth":"gauth",r={cred:t};null===this.Ye?r.noauth=!0:"object"==typeof this.Ye&&(r.authvar=this.Ye),this.sendRequest(n,r,function(n){var r=n.s,i=n.d||"error";e.ht===t&&("ok"===r?e.pt=0:e.Pt(r,i))})}},t.prototype.unlisten=function(e,t){var n=""+e.path,r=e.queryIdentifier();this.de("Unlisten called for "+n+" "+r),s.assert(e.getQueryParams().isDefault()||!e.getQueryParams().loadsAllData(),"unlisten() called for non-default but complete query"),this.Et(n,r)&&this.tt&&this.bt(n,r,e.queryObject(),t)},t.prototype.bt=function(e,t,n,r){this.de("Unlisten on "+e+" for "+t);var i={p:e};r&&(i.q=n,i.t=r),this.sendRequest("n",i)},t.prototype.onDisconnectPut=function(e,t,n){this.tt?this.St("o",e,t,n):this.et.push({pathString:e,action:"o",data:t,onComplete:n})},t.prototype.onDisconnectMerge=function(e,t,n){this.tt?this.St("om",e,t,n):this.et.push({pathString:e,action:"om",data:t,onComplete:n})},t.prototype.onDisconnectCancel=function(e,t){this.tt?this.St("oc",e,null,t):this.et.push({pathString:e,action:"oc",data:null,onComplete:t})},t.prototype.St=function(e,t,n,r){var i={p:t,d:n};this.de("onDisconnect "+e,i),this.sendRequest(e,i,function(e){r&&setTimeout(function(){r(e.s,e.d)},Math.floor(0))})},t.prototype.put=function(e,t,n,r){this.putInternal("p",e,t,n,r)},t.prototype.merge=function(e,t,n,r){this.putInternal("m",e,t,n,r)},t.prototype.putInternal=function(e,t,n,r,i){var o={p:t,d:n};void 0!==i&&(o.h=i),this.$e.push({action:e,request:o,onComplete:r}),this.Ze++;var a=this.$e.length-1;this.tt?this.Tt(a):this.de("Buffering put: "+t)},t.prototype.Tt=function(e){var t=this,n=this.$e[e].action,r=this.$e[e].request,i=this.$e[e].onComplete;this.$e[e].queued=this.tt,this.sendRequest(n,r,function(r){t.de(n+" response",r),delete t.$e[e],t.Ze--,0===t.Ze&&(t.$e=[]),i&&i(r.s,r.d)})},t.prototype.reportStats=function(e){var t=this;if(this.tt){var n={c:e};this.de("reportStats",n),this.sendRequest("s",n,function(e){if("ok"!==e.s){var n=e.d;t.de("reportStats","Error sending stats: "+n)}})}},t.prototype.wt=function(e){if("r"in e){this.de("from server: "+a.stringify(e));var t=e.r,n=this.st[t];n&&(delete this.st[t],n(e.b))}else{if("error"in e)throw"A server-side error has occurred: "+e.error;"a"in e&&this.It(e.a,e.b)}},t.prototype.It=function(e,t){this.de("handleServerMessage",e,t),"d"===e?this.ee(t.p,t.d,!1,t.t):"m"===e?this.ee(t.p,t.d,!0,t.t):"c"===e?this.Rt(t.p,t.q):"ac"===e?this.Pt(t.s,t.d):"sd"===e?this.Ot(t):u.error("Unrecognized action received from server: "+a.stringify(e)+"\nAre you using the latest client?")},t.prototype.At=function(e,t){this.de("connection ready"),this.tt=!0,this._t=(new Date).getTime(),this.Dt(e),this.lastSessionId=t,this.dt&&this.Mt(),this.Lt(),this.dt=!1,this.te(!0)},t.prototype.yt=function(e){var t=this;s.assert(!this.lt,"Scheduling a connect when we're already connected/ing?"),this.ot&&clearTimeout(this.ot),this.ot=setTimeout(function(){t.ot=null,t.Ft()},Math.floor(e))},t.prototype.vt=function(e){e&&!this.at&&this.nt===this.rt&&(this.de("Window became visible.  Reducing delay."),this.nt=v,this.lt||this.yt(0)),this.at=e},t.prototype.gt=function(e){e?(this.de("Browser went online."),this.nt=v,this.lt||this.yt(0)):(this.de("Browser went offline.  Killing connection."),this.lt&&this.lt.close())},t.prototype.xt=function(){if(this.de("data client disconnected"),this.tt=!1,this.lt=null,this.kt(),this.st={},this.Wt()){if(this.at){if(this._t){var e=(new Date).getTime()-this._t;e>3e4&&(this.nt=v),this._t=null}}else this.de("Window isn't visible.  Delaying reconnect."),this.nt=this.rt,this.ft=(new Date).getTime();var t=(new Date).getTime()-this.ft,n=Math.max(0,this.nt-t);n=Math.random()*n,this.de("Trying to reconnect in "+n+"ms"),this.yt(n),this.nt=Math.min(this.rt,1.3*this.nt)}this.te(!1)},t.prototype.Ft=function(){if(this.Wt()){this.de("Making a connection attempt"),this.ft=(new Date).getTime(),this._t=null;var e=this.wt.bind(this),n=this.At.bind(this),r=this.xt.bind(this),i=this.id+":"+t.jt++,o=this,a=this.lastSessionId,l=!1,h=null,c=function(){h?h.close():(l=!0,r())},p=function(e){s.assert(h,"sendRequest call when we're not connected not allowed."),h.sendRequest(e)};this.lt={close:c,sendRequest:p};var _=this.ct;this.ct=!1,this.Ke.getToken(_).then(function(t){l?u.log("getToken() completed but was canceled"):(u.log("getToken() completed. Creating connection."),o.ht=t&&t.accessToken,h=new d.Connection(i,o.H,e,n,r,function(e){u.warn(e+" ("+o.H+")"),o.interrupt("server_kill")},a))}).then(null,function(e){o.de("Failed to get token: "+e),l||(f.CONSTANTS.NODE_ADMIN&&u.warn(e),c())})}},t.prototype.interrupt=function(e){u.log("Interrupting connection for reason: "+e),this.ze[e]=!0,this.lt?this.lt.close():(this.ot&&(clearTimeout(this.ot),this.ot=null),this.tt&&this.xt())},t.prototype.resume=function(e){u.log("Resuming connection for reason: "+e),delete this.ze[e],o.isEmpty(this.ze)&&(this.nt=v,this.lt||this.yt(0))},t.prototype.Dt=function(e){var t=e-(new Date).getTime();this.ne({serverTimeOffset:t})},t.prototype.kt=function(){for(var e=0;e<this.$e.length;e++){var t=this.$e[e];t&&"h"in t.request&&t.queued&&(t.onComplete&&t.onComplete("disconnect"),delete this.$e[e],this.Ze--)}0===this.Ze&&(this.$e=[])},t.prototype.Rt=function(e,t){var n;n=t?t.map(function(e){return u.ObjectToUniqueKey(e)}).join("$"):"default";var r=this.Et(e,n);r&&r.onComplete&&r.onComplete("permission_denied")},t.prototype.Et=function(e,t){var n,r=""+new l.Path(e);return void 0!==this.Je[r]?(n=this.Je[r][t],delete this.Je[r][t],0===o.getCount(this.Je[r])&&delete this.Je[r]):n=void 0,n},t.prototype.Pt=function(e,t){u.log("Auth token revoked: "+e+"/"+t),this.ht=null,this.ct=!0,this.lt.close(),"invalid_token"!==e&&"permission_denied"!==e||++this.pt>=3&&(this.nt=3e4,this.Ke.notifyForInvalidToken())},t.prototype.Ot=function(e){this.it?this.it(e):"msg"in e&&"undefined"!=typeof console&&console.log("FIREBASE: "+e.msg.replace("\n","\nFIREBASE: "))},t.prototype.Lt=function(){var e=this;this.tryAuth(),o.forEach(this.Je,function(t,n){o.forEach(n,function(t,n){e.mt(n)})});for(var t=0;t<this.$e.length;t++)this.$e[t]&&this.Tt(t);for(;this.et.length;){var n=this.et.shift();this.St(n.action,n.pathString,n.data,n.onComplete)}},t.prototype.Mt=function(){var e={},t="js";f.CONSTANTS.NODE_ADMIN?t="admin_node":f.CONSTANTS.NODE_CLIENT&&(t="node"),e["sdk."+t+"."+i.default.SDK_VERSION.replace(/\./g,"-")]=1,_.isMobileCordova()?e["framework.cordova"]=1:_.isReactNative()&&(e["framework.reactnative"]=1),this.reportStats(e)},t.prototype.Wt=function(){var e=c.OnlineMonitor.getInstance().currentlyOnline();return o.isEmpty(this.ze)&&e},t.Xe=0,t.jt=0,t}(y.ServerActions);t.PersistentConnection=m},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(0),i=function(){function e(e){this.Vt=e,this.Qt={},r.assert(Array.isArray(e)&&e.length>0,"Requires a non-empty array")}return e.prototype.trigger=function(e){for(var t=[],n=1;n<arguments.length;n++)t[n-1]=arguments[n];if(Array.isArray(this.Qt[e]))for(var r=this.Qt[e].slice(),i=0;i<r.length;i++)r[i].callback.apply(r[i].context,t)},e.prototype.on=function(e,t,n){this.qt(e),this.Qt[e]=this.Qt[e]||[],this.Qt[e].push({callback:t,context:n});var r=this.getInitialEvent(e);r&&t.apply(n,r)},e.prototype.off=function(e,t,n){this.qt(e);for(var r=this.Qt[e]||[],i=0;i<r.length;i++)if(r[i].callback===t&&(!n||n===r[i].context))return void r.splice(i,1)},e.prototype.qt=function(e){r.assert(this.Vt.find(function(t){return t===e}),"Unknown event: "+e)},e}();t.EventEmitter=i},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(1),i=n(12),o=n(13),a=n(104),s=function(){function e(e,t,n,i,o,s,u){this.id=e,this.H=t,this.Ut=n,this.At=i,this.z=o,this.Bt=s,this.lastSessionId=u,this.connectionCount=0,this.pendingDataMessages=[],this.Ht=0,this.de=r.logWrapper("c:"+this.id+":"),this.Gt=new a.TransportManager(t),this.de("Connection created"),this.Kt()}return e.prototype.Kt=function(){var e=this,t=this.Gt.initialTransport();this.Yt=new t(this.Xt(),this.H,void 0,this.lastSessionId),this.zt=t.responsesRequiredToBeHealthy||0;var n=this.Jt(this.Yt),i=this.$t(this.Yt);this.Zt=this.Yt,this.en=this.Yt,this.tn=null,this.nn=!1,setTimeout(function(){e.Yt&&e.Yt.open(n,i)},Math.floor(0));var o=t.healthyTimeout||0;o>0&&(this.rn=r.setTimeoutNonBlocking(function(){e.rn=null,e.nn||(e.Yt&&e.Yt.bytesReceived>102400?(e.de("Connection exceeded healthy timeout but has received "+e.Yt.bytesReceived+" bytes.  Marking connection healthy."),e.nn=!0,e.Yt.markConnectionHealthy()):e.Yt&&e.Yt.bytesSent>10240?e.de("Connection exceeded healthy timeout but has sent "+e.Yt.bytesSent+" bytes.  Leaving connection alive."):(e.de("Closing unhealthy connection after timeout."),e.close()))},Math.floor(o)))},e.prototype.Xt=function(){return"c:"+this.id+":"+this.connectionCount++},e.prototype.$t=function(e){var t=this;return function(n){e===t.Yt?t.in(n):e===t.tn?(t.de("Secondary connection lost."),t.an()):t.de("closing an old connection")}},e.prototype.Jt=function(e){var t=this;return function(n){2!=t.Ht&&(e===t.en?t.sn(n):e===t.tn?t.un(n):t.de("message on old connection"))}},e.prototype.sendRequest=function(e){var t={t:"d",d:e};this.ln(t)},e.prototype.tryCleanupConnection=function(){this.Zt===this.tn&&this.en===this.tn&&(this.de("cleaning up and promoting a connection: "+this.tn.connId),this.Yt=this.tn,this.tn=null)},e.prototype.hn=function(e){if("t"in e){var t=e.t;"a"===t?this.cn():"r"===t?(this.de("Got a reset on secondary, closing it"),this.tn.close(),this.Zt!==this.tn&&this.en!==this.tn||this.close()):"o"===t&&(this.de("got pong on secondary."),this.pn--,this.cn())}},e.prototype.un=function(e){var t=r.requireKey("t",e),n=r.requireKey("d",e);if("c"==t)this.hn(n);else{if("d"!=t)throw Error("Unknown protocol layer: "+t);this.pendingDataMessages.push(n)}},e.prototype.cn=function(){this.pn<=0?(this.de("Secondary connection is healthy."),this.nn=!0,this.tn.markConnectionHealthy(),this.dn()):(this.de("sending ping on secondary."),this.tn.send({t:"c",d:{t:"p",d:{}}}))},e.prototype.dn=function(){this.tn.start(),this.de("sending client ack on secondary"),this.tn.send({t:"c",d:{t:"a",d:{}}}),this.de("Ending transmission on primary"),this.Yt.send({t:"c",d:{t:"n",d:{}}}),this.Zt=this.tn,this.tryCleanupConnection()},e.prototype.sn=function(e){var t=r.requireKey("t",e),n=r.requireKey("d",e);"c"==t?this.fn(n):"d"==t&&this.wt(n)},e.prototype.wt=function(e){this._n(),this.Ut(e)},e.prototype._n=function(){this.nn||--this.zt<=0&&(this.de("Primary connection is healthy."),this.nn=!0,this.Yt.markConnectionHealthy())},e.prototype.fn=function(e){var t=r.requireKey("t",e);if("d"in e){var n=e.d;if("h"===t)this.yn(n);else if("n"===t){this.de("recvd end transmission on primary"),this.en=this.tn;for(var i=0;i<this.pendingDataMessages.length;++i)this.wt(this.pendingDataMessages[i]);this.pendingDataMessages=[],this.tryCleanupConnection()}else"s"===t?this.vn(n):"r"===t?this.gn(n):"e"===t?r.error("Server Error: "+n):"o"===t?(this.de("got pong on primary."),this._n(),this.mn()):r.error("Unknown control packet command: "+t)}},e.prototype.yn=function(e){var t=e.ts,n=e.v,i=e.h;this.sessionId=e.s,this.H.updateHost(i),0==this.Ht&&(this.Yt.start(),this.Cn(this.Yt,t),o.PROTOCOL_VERSION!==n&&r.warn("Protocol version mismatch detected"),this.En())},e.prototype.En=function(){var e=this.Gt.upgradeTransport();e&&this.Nn(e)},e.prototype.Nn=function(e){var t=this;this.tn=new e(this.Xt(),this.H,this.sessionId),this.pn=e.responsesRequiredToBeHealthy||0;var n=this.Jt(this.tn),i=this.$t(this.tn);this.tn.open(n,i),r.setTimeoutNonBlocking(function(){t.tn&&(t.de("Timed out trying to upgrade."),t.tn.close())},Math.floor(6e4))},e.prototype.gn=function(e){this.de("Reset packet received.  New host: "+e),this.H.updateHost(e),1===this.Ht?this.close():(this.Pn(),this.Kt())},e.prototype.Cn=function(e,t){var n=this;this.de("Realtime connection established."),this.Yt=e,this.Ht=1,this.At&&(this.At(t,this.sessionId),this.At=null),0===this.zt?(this.de("Primary connection is healthy."),this.nn=!0):r.setTimeoutNonBlocking(function(){n.mn()},Math.floor(5e3))},e.prototype.mn=function(){this.nn||1!==this.Ht||(this.de("sending ping on primary."),this.ln({t:"c",d:{t:"p",d:{}}}))},e.prototype.an=function(){var e=this.tn;this.tn=null,this.Zt!==e&&this.en!==e||this.close()},e.prototype.in=function(e){this.Yt=null,e||0!==this.Ht?1===this.Ht&&this.de("Realtime connection lost."):(this.de("Realtime connection failed."),this.H.isCacheableHost()&&(i.PersistentStorage.remove("host:"+this.H.host),this.H.internalHost=this.H.host)),this.close()},e.prototype.vn=function(e){this.de("Connection shutdown command received. Shutting down..."),this.Bt&&(this.Bt(e),this.Bt=null),this.z=null,this.close()},e.prototype.ln=function(e){if(1!==this.Ht)throw"Connection is not connected";this.Zt.send(e)},e.prototype.close=function(){2!==this.Ht&&(this.de("Closing realtime connection."),this.Ht=2,this.Pn(),this.z&&(this.z(),this.z=null))},e.prototype.Pn=function(){this.de("Shutting down all connections"),this.Yt&&(this.Yt.close(),this.Yt=null),this.tn&&(this.tn.close(),this.tn=null),this.rn&&(clearTimeout(this.rn),this.rn=null)},e}();t.Connection=s},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(1),i=n(45),o=n(25),a=n(105),s=n(13),u=n(0),l=n(0);t.FIREBASE_LONGPOLL_START_PARAM="start",t.FIREBASE_LONGPOLL_CLOSE_COMMAND="close",t.FIREBASE_LONGPOLL_COMMAND_CB_NAME="pLPCommand",t.FIREBASE_LONGPOLL_DATA_CB_NAME="pRTLPCB",t.FIREBASE_LONGPOLL_ID_PARAM="id",t.FIREBASE_LONGPOLL_PW_PARAM="pw",t.FIREBASE_LONGPOLL_SERIAL_PARAM="ser",t.FIREBASE_LONGPOLL_CALLBACK_ID_PARAM="cb",t.FIREBASE_LONGPOLL_SEGMENT_NUM_PARAM="seg",t.FIREBASE_LONGPOLL_SEGMENTS_IN_PACKET="ts",t.FIREBASE_LONGPOLL_DATA_PARAM="d",t.FIREBASE_LONGPOLL_DISCONN_FRAME_PARAM="disconn",t.FIREBASE_LONGPOLL_DISCONN_FRAME_REQUEST_PARAM="dframe";var h=function(){function e(e,t,n,i){this.connId=e,this.repoInfo=t,this.transportSessionId=n,this.lastSessionId=i,this.bytesSent=0,this.bytesReceived=0,this.bn=!1,this.de=r.logWrapper(e),this.$=o.StatsManager.getCollection(t),this.urlFn=function(e){return t.connectionURL(s.LONG_POLLING,e)}}return e.prototype.open=function(e,n){var i=this;this.curSegmentNum=0,this.z=n,this.myPacketOrderer=new a.PacketReceiver(e),this.Sn=!1,this.Tn=setTimeout(function(){i.de("Timed out trying to connect."),i.wn(),i.Tn=null},Math.floor(3e4)),r.executeWhenDOMReady(function(){if(!i.Sn){i.scriptTagHolder=new c(function(){for(var e=[],n=0;n<arguments.length;n++)e[n]=arguments[n];var r=e[0],o=e[1],a=e[2];if(e[3],e[4],i.In(e),i.scriptTagHolder)if(i.Tn&&(clearTimeout(i.Tn),i.Tn=null),i.bn=!0,r==t.FIREBASE_LONGPOLL_START_PARAM)i.id=o,i.password=a;else{if(r!==t.FIREBASE_LONGPOLL_CLOSE_COMMAND)throw Error("Unrecognized command received: "+r);o?(i.scriptTagHolder.sendNewPolls=!1,i.myPacketOrderer.closeAfter(o,function(){i.wn()})):i.wn()}},function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];var n=e[0],r=e[1];i.In(e),i.myPacketOrderer.handleResponse(n,r)},function(){i.wn()},i.urlFn);var e={};e[t.FIREBASE_LONGPOLL_START_PARAM]="t",e[t.FIREBASE_LONGPOLL_SERIAL_PARAM]=Math.floor(1e8*Math.random()),i.scriptTagHolder.uniqueCallbackIdentifier&&(e[t.FIREBASE_LONGPOLL_CALLBACK_ID_PARAM]=i.scriptTagHolder.uniqueCallbackIdentifier),e[s.VERSION_PARAM]=s.PROTOCOL_VERSION,i.transportSessionId&&(e[s.TRANSPORT_SESSION_PARAM]=i.transportSessionId),i.lastSessionId&&(e[s.LAST_SESSION_PARAM]=i.lastSessionId),!l.isNodeSdk()&&"undefined"!=typeof location&&location.href&&-1!==location.href.indexOf(s.FORGE_DOMAIN)&&(e[s.REFERER_PARAM]=s.FORGE_REF);var n=i.urlFn(e);i.de("Connecting via long-poll to "+n),i.scriptTagHolder.addTag(n,function(){})}})},e.prototype.start=function(){this.scriptTagHolder.startLongPoll(this.id,this.password),this.addDisconnectPingFrame(this.id,this.password)},e.forceAllow=function(){e.Rn=!0},e.forceDisallow=function(){e.On=!0},e.isAvailable=function(){return e.Rn||!e.On&&"undefined"!=typeof document&&null!=document.createElement&&!r.isChromeExtensionContentScript()&&!r.isWindowsStoreApp()&&!l.isNodeSdk()},e.prototype.markConnectionHealthy=function(){},e.prototype.An=function(){this.Sn=!0,this.scriptTagHolder&&(this.scriptTagHolder.close(),this.scriptTagHolder=null),this.myDisconnFrame&&(document.body.removeChild(this.myDisconnFrame),this.myDisconnFrame=null),this.Tn&&(clearTimeout(this.Tn),this.Tn=null)},e.prototype.wn=function(){this.Sn||(this.de("Longpoll is closing itself"),this.An(),this.z&&(this.z(this.bn),this.z=null))},e.prototype.close=function(){this.Sn||(this.de("Longpoll is being closed."),this.An())},e.prototype.send=function(e){var t=u.stringify(e);this.bytesSent+=t.length,this.$.incrementCounter("bytes_sent",t.length);for(var n=u.base64Encode(t),i=r.splitStringBySize(n,1840),o=0;o<i.length;o++)this.scriptTagHolder.enqueueSegment(this.curSegmentNum,i.length,i[o]),this.curSegmentNum++},e.prototype.addDisconnectPingFrame=function(e,n){if(!l.isNodeSdk()){this.myDisconnFrame=document.createElement("iframe");var r={};r[t.FIREBASE_LONGPOLL_DISCONN_FRAME_REQUEST_PARAM]="t",r[t.FIREBASE_LONGPOLL_ID_PARAM]=e,r[t.FIREBASE_LONGPOLL_PW_PARAM]=n,this.myDisconnFrame.src=this.urlFn(r),this.myDisconnFrame.style.display="none",document.body.appendChild(this.myDisconnFrame)}},e.prototype.In=function(e){var t=u.stringify(e).length;this.bytesReceived+=t,this.$.incrementCounter("bytes_received",t)},e}();t.BrowserPollConnection=h;var c=function(){function e(n,o,a,s){if(this.onDisconnect=a,this.urlFn=s,this.outstandingRequests=new i.CountedSet,this.pendingSegs=[],this.currentSerial=Math.floor(1e8*Math.random()),this.sendNewPolls=!0,l.isNodeSdk())this.commandCB=n,this.onMessageCB=o;else{this.uniqueCallbackIdentifier=r.LUIDGenerator(),window[t.FIREBASE_LONGPOLL_COMMAND_CB_NAME+this.uniqueCallbackIdentifier]=n,window[t.FIREBASE_LONGPOLL_DATA_CB_NAME+this.uniqueCallbackIdentifier]=o,this.myIFrame=e.Dn();var u="";this.myIFrame.src&&"javascript:"===this.myIFrame.src.substr(0,11)&&(u='<script>document.domain="'+document.domain+'";<\/script>');var h="<html><body>"+u+"</body></html>";try{this.myIFrame.doc.open(),this.myIFrame.doc.write(h),this.myIFrame.doc.close()}catch(e){r.log("frame writing exception"),e.stack&&r.log(e.stack),r.log(e)}}}return e.Dn=function(){var e=document.createElement("iframe");if(e.style.display="none",!document.body)throw"Document body has not initialized. Wait to initialize Firebase until after the document is ready.";document.body.appendChild(e);try{e.contentWindow.document||r.log("No IE domain setting required")}catch(n){var t=document.domain;e.src="javascript:void((function(){document.open();document.domain='"+t+"';document.close();})())"}return e.contentDocument?e.doc=e.contentDocument:e.contentWindow?e.doc=e.contentWindow.document:e.document&&(e.doc=e.document),e},e.prototype.close=function(){var n=this;if(this.alive=!1,this.myIFrame&&(this.myIFrame.doc.body.innerHTML="",setTimeout(function(){null!==n.myIFrame&&(document.body.removeChild(n.myIFrame),n.myIFrame=null)},Math.floor(0))),l.isNodeSdk()&&this.myID){var r={};r[t.FIREBASE_LONGPOLL_DISCONN_FRAME_PARAM]="t",r[t.FIREBASE_LONGPOLL_ID_PARAM]=this.myID,r[t.FIREBASE_LONGPOLL_PW_PARAM]=this.myPW;var i=this.urlFn(r);e.nodeRestRequest(i)}var o=this.onDisconnect;o&&(this.onDisconnect=null,o())},e.prototype.startLongPoll=function(e,t){for(this.myID=e,this.myPW=t,this.alive=!0;this.Mn(););},e.prototype.Mn=function(){if(this.alive&&this.sendNewPolls&&this.outstandingRequests.count()<(this.pendingSegs.length>0?2:1)){this.currentSerial++;var e={};e[t.FIREBASE_LONGPOLL_ID_PARAM]=this.myID,e[t.FIREBASE_LONGPOLL_PW_PARAM]=this.myPW,e[t.FIREBASE_LONGPOLL_SERIAL_PARAM]=this.currentSerial
\ No newline at end of file
diff --git a/app/code/Magento/Messaging/view/frontend/web/js/jquery.js b/app/code/Magento/Messaging/view/frontend/web/js/jquery.js
deleted file mode 100644
index ee381345c26..00000000000
--- a/app/code/Magento/Messaging/view/frontend/web/js/jquery.js
+++ /dev/null
@@ -1,6 +0,0 @@
-/*! jQuery v2.0.3 | (c) 2005, 2013 jQuery Foundation, Inc. | jquery.org/license
-//@ sourceMappingURL=jquery.min.map
-*/
-(function(e,undefined){var t,n,r=typeof undefined,i=e.location,o=e.document,s=o.documentElement,a=e.jQuery,u=e.$,l={},c=[],p="2.0.3",f=c.concat,h=c.push,d=c.slice,g=c.indexOf,m=l.toString,y=l.hasOwnProperty,v=p.trim,x=function(e,n){return new x.fn.init(e,n,t)},b=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,w=/\S+/g,T=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,C=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,k=/^-ms-/,N=/-([\da-z])/gi,E=function(e,t){return t.toUpperCase()},S=function(){o.removeEventListener("DOMContentLoaded",S,!1),e.removeEventListener("load",S,!1),x.ready()};x.fn=x.prototype={jquery:p,constructor:x,init:function(e,t,n){var r,i;if(!e)return this;if("string"==typeof e){if(r="<"===e.charAt(0)&&">"===e.charAt(e.length-1)&&e.length>=3?[null,e,null]:T.exec(e),!r||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof x?t[0]:t,x.merge(this,x.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:o,!0)),C.test(r[1])&&x.isPlainObject(t))for(r in t)x.isFunction(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return i=o.getElementById(r[2]),i&&i.parentNode&&(this.length=1,this[0]=i),this.context=o,this.selector=e,this}return e.nodeType?(this.context=this[0]=e,this.length=1,this):x.isFunction(e)?n.ready(e):(e.selector!==undefined&&(this.selector=e.selector,this.context=e.context),x.makeArray(e,this))},selector:"",length:0,toArray:function(){return d.call(this)},get:function(e){return null==e?this.toArray():0>e?this[this.length+e]:this[e]},pushStack:function(e){var t=x.merge(this.constructor(),e);return t.prevObject=this,t.context=this.context,t},each:function(e,t){return x.each(this,e,t)},ready:function(e){return x.ready.promise().done(e),this},slice:function(){return this.pushStack(d.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(0>e?t:0);return this.pushStack(n>=0&&t>n?[this[n]]:[])},map:function(e){return this.pushStack(x.map(this,function(t,n){return e.call(t,n,t)}))},end:function(){return this.prevObject||this.constructor(null)},push:h,sort:[].sort,splice:[].splice},x.fn.init.prototype=x.fn,x.extend=x.fn.extend=function(){var e,t,n,r,i,o,s=arguments[0]||{},a=1,u=arguments.length,l=!1;for("boolean"==typeof s&&(l=s,s=arguments[1]||{},a=2),"object"==typeof s||x.isFunction(s)||(s={}),u===a&&(s=this,--a);u>a;a++)if(null!=(e=arguments[a]))for(t in e)n=s[t],r=e[t],s!==r&&(l&&r&&(x.isPlainObject(r)||(i=x.isArray(r)))?(i?(i=!1,o=n&&x.isArray(n)?n:[]):o=n&&x.isPlainObject(n)?n:{},s[t]=x.extend(l,o,r)):r!==undefined&&(s[t]=r));return s},x.extend({expando:"jQuery"+(p+Math.random()).replace(/\D/g,""),noConflict:function(t){return e.$===x&&(e.$=u),t&&e.jQuery===x&&(e.jQuery=a),x},isReady:!1,readyWait:1,holdReady:function(e){e?x.readyWait++:x.ready(!0)},ready:function(e){(e===!0?--x.readyWait:x.isReady)||(x.isReady=!0,e!==!0&&--x.readyWait>0||(n.resolveWith(o,[x]),x.fn.trigger&&x(o).trigger("ready").off("ready")))},isFunction:function(e){return"function"===x.type(e)},isArray:Array.isArray,isWindow:function(e){return null!=e&&e===e.window},isNumeric:function(e){return!isNaN(parseFloat(e))&&isFinite(e)},type:function(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?l[m.call(e)]||"object":typeof e},isPlainObject:function(e){if("object"!==x.type(e)||e.nodeType||x.isWindow(e))return!1;try{if(e.constructor&&!y.call(e.constructor.prototype,"isPrototypeOf"))return!1}catch(t){return!1}return!0},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},error:function(e){throw Error(e)},parseHTML:function(e,t,n){if(!e||"string"!=typeof e)return null;"boolean"==typeof t&&(n=t,t=!1),t=t||o;var r=C.exec(e),i=!n&&[];return r?[t.createElement(r[1])]:(r=x.buildFragment([e],t,i),i&&x(i).remove(),x.merge([],r.childNodes))},parseJSON:JSON.parse,parseXML:function(e){var t,n;if(!e||"string"!=typeof e)return null;try{n=new DOMParser,t=n.parseFromString(e,"text/xml")}catch(r){t=undefined}return(!t||t.getElementsByTagName("parsererror").length)&&x.error("Invalid XML: "+e),t},noop:function(){},globalEval:function(e){var t,n=eval;e=x.trim(e),e&&(1===e.indexOf("use strict")?(t=o.createElement("script"),t.text=e,o.head.appendChild(t).parentNode.removeChild(t)):n(e))},camelCase:function(e){return e.replace(k,"ms-").replace(N,E)},nodeName:function(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()},each:function(e,t,n){var r,i=0,o=e.length,s=j(e);if(n){if(s){for(;o>i;i++)if(r=t.apply(e[i],n),r===!1)break}else for(i in e)if(r=t.apply(e[i],n),r===!1)break}else if(s){for(;o>i;i++)if(r=t.call(e[i],i,e[i]),r===!1)break}else for(i in e)if(r=t.call(e[i],i,e[i]),r===!1)break;return e},trim:function(e){return null==e?"":v.call(e)},makeArray:function(e,t){var n=t||[];return null!=e&&(j(Object(e))?x.merge(n,"string"==typeof e?[e]:e):h.call(n,e)),n},inArray:function(e,t,n){return null==t?-1:g.call(t,e,n)},merge:function(e,t){var n=t.length,r=e.length,i=0;if("number"==typeof n)for(;n>i;i++)e[r++]=t[i];else while(t[i]!==undefined)e[r++]=t[i++];return e.length=r,e},grep:function(e,t,n){var r,i=[],o=0,s=e.length;for(n=!!n;s>o;o++)r=!!t(e[o],o),n!==r&&i.push(e[o]);return i},map:function(e,t,n){var r,i=0,o=e.length,s=j(e),a=[];if(s)for(;o>i;i++)r=t(e[i],i,n),null!=r&&(a[a.length]=r);else for(i in e)r=t(e[i],i,n),null!=r&&(a[a.length]=r);return f.apply([],a)},guid:1,proxy:function(e,t){var n,r,i;return"string"==typeof t&&(n=e[t],t=e,e=n),x.isFunction(e)?(r=d.call(arguments,2),i=function(){return e.apply(t||this,r.concat(d.call(arguments)))},i.guid=e.guid=e.guid||x.guid++,i):undefined},access:function(e,t,n,r,i,o,s){var a=0,u=e.length,l=null==n;if("object"===x.type(n)){i=!0;for(a in n)x.access(e,t,a,n[a],!0,o,s)}else if(r!==undefined&&(i=!0,x.isFunction(r)||(s=!0),l&&(s?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(x(e),n)})),t))for(;u>a;a++)t(e[a],n,s?r:r.call(e[a],a,t(e[a],n)));return i?e:l?t.call(e):u?t(e[0],n):o},now:Date.now,swap:function(e,t,n,r){var i,o,s={};for(o in t)s[o]=e.style[o],e.style[o]=t[o];i=n.apply(e,r||[]);for(o in t)e.style[o]=s[o];return i}}),x.ready.promise=function(t){return n||(n=x.Deferred(),"complete"===o.readyState?setTimeout(x.ready):(o.addEventListener("DOMContentLoaded",S,!1),e.addEventListener("load",S,!1))),n.promise(t)},x.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(e,t){l["[object "+t+"]"]=t.toLowerCase()});function j(e){var t=e.length,n=x.type(e);return x.isWindow(e)?!1:1===e.nodeType&&t?!0:"array"===n||"function"!==n&&(0===t||"number"==typeof t&&t>0&&t-1 in e)}t=x(o),function(e,undefined){var t,n,r,i,o,s,a,u,l,c,p,f,h,d,g,m,y,v="sizzle"+-new Date,b=e.document,w=0,T=0,C=st(),k=st(),N=st(),E=!1,S=function(e,t){return e===t?(E=!0,0):0},j=typeof undefined,D=1<<31,A={}.hasOwnProperty,L=[],q=L.pop,H=L.push,O=L.push,F=L.slice,P=L.indexOf||function(e){var t=0,n=this.length;for(;n>t;t++)if(this[t]===e)return t;return-1},R="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",M="[\\x20\\t\\r\\n\\f]",W="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",$=W.replace("w","w#"),B="\\["+M+"*("+W+")"+M+"*(?:([*^$|!~]?=)"+M+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+$+")|)|)"+M+"*\\]",I=":("+W+")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|"+B.replace(3,8)+")*)|.*)\\)|)",z=RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g"),_=RegExp("^"+M+"*,"+M+"*"),X=RegExp("^"+M+"*([>+~]|"+M+")"+M+"*"),U=RegExp(M+"*[+~]"),Y=RegExp("="+M+"*([^\\]'\"]*)"+M+"*\\]","g"),V=RegExp(I),G=RegExp("^"+$+"$"),J={ID:RegExp("^#("+W+")"),CLASS:RegExp("^\\.("+W+")"),TAG:RegExp("^("+W.replace("w","w*")+")"),ATTR:RegExp("^"+B),PSEUDO:RegExp("^"+I),CHILD:RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:RegExp("^(?:"+R+")$","i"),needsContext:RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Q=/^[^{]+\{\s*\[native \w/,K=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,Z=/^(?:input|select|textarea|button)$/i,et=/^h\d$/i,tt=/'|\\/g,nt=RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),rt=function(e,t,n){var r="0x"+t-65536;return r!==r||n?t:0>r?String.fromCharCode(r+65536):String.fromCharCode(55296|r>>10,56320|1023&r)};try{O.apply(L=F.call(b.childNodes),b.childNodes),L[b.childNodes.length].nodeType}catch(it){O={apply:L.length?function(e,t){H.apply(e,F.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function ot(e,t,r,i){var o,s,a,u,l,f,g,m,x,w;if((t?t.ownerDocument||t:b)!==p&&c(t),t=t||p,r=r||[],!e||"string"!=typeof e)return r;if(1!==(u=t.nodeType)&&9!==u)return[];if(h&&!i){if(o=K.exec(e))if(a=o[1]){if(9===u){if(s=t.getElementById(a),!s||!s.parentNode)return r;if(s.id===a)return r.push(s),r}else if(t.ownerDocument&&(s=t.ownerDocument.getElementById(a))&&y(t,s)&&s.id===a)return r.push(s),r}else{if(o[2])return O.apply(r,t.getElementsByTagName(e)),r;if((a=o[3])&&n.getElementsByClassName&&t.getElementsByClassName)return O.apply(r,t.getElementsByClassName(a)),r}if(n.qsa&&(!d||!d.test(e))){if(m=g=v,x=t,w=9===u&&e,1===u&&"object"!==t.nodeName.toLowerCase()){f=gt(e),(g=t.getAttribute("id"))?m=g.replace(tt,"\\$&"):t.setAttribute("id",m),m="[id='"+m+"'] ",l=f.length;while(l--)f[l]=m+mt(f[l]);x=U.test(e)&&t.parentNode||t,w=f.join(",")}if(w)try{return O.apply(r,x.querySelectorAll(w)),r}catch(T){}finally{g||t.removeAttribute("id")}}}return kt(e.replace(z,"$1"),t,r,i)}function st(){var e=[];function t(n,r){return e.push(n+=" ")>i.cacheLength&&delete t[e.shift()],t[n]=r}return t}function at(e){return e[v]=!0,e}function ut(e){var t=p.createElement("div");try{return!!e(t)}catch(n){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function lt(e,t){var n=e.split("|"),r=e.length;while(r--)i.attrHandle[n[r]]=t}function ct(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&(~t.sourceIndex||D)-(~e.sourceIndex||D);if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function pt(e){return function(t){var n=t.nodeName.toLowerCase();return"input"===n&&t.type===e}}function ft(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function ht(e){return at(function(t){return t=+t,at(function(n,r){var i,o=e([],n.length,t),s=o.length;while(s--)n[i=o[s]]&&(n[i]=!(r[i]=n[i]))})})}s=ot.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return t?"HTML"!==t.nodeName:!1},n=ot.support={},c=ot.setDocument=function(e){var t=e?e.ownerDocument||e:b,r=t.defaultView;return t!==p&&9===t.nodeType&&t.documentElement?(p=t,f=t.documentElement,h=!s(t),r&&r.attachEvent&&r!==r.top&&r.attachEvent("onbeforeunload",function(){c()}),n.attributes=ut(function(e){return e.className="i",!e.getAttribute("className")}),n.getElementsByTagName=ut(function(e){return e.appendChild(t.createComment("")),!e.getElementsByTagName("*").length}),n.getElementsByClassName=ut(function(e){return e.innerHTML="<div class='a'></div><div class='a i'></div>",e.firstChild.className="i",2===e.getElementsByClassName("i").length}),n.getById=ut(function(e){return f.appendChild(e).id=v,!t.getElementsByName||!t.getElementsByName(v).length}),n.getById?(i.find.ID=function(e,t){if(typeof t.getElementById!==j&&h){var n=t.getElementById(e);return n&&n.parentNode?[n]:[]}},i.filter.ID=function(e){var t=e.replace(nt,rt);return function(e){return e.getAttribute("id")===t}}):(delete i.find.ID,i.filter.ID=function(e){var t=e.replace(nt,rt);return function(e){var n=typeof e.getAttributeNode!==j&&e.getAttributeNode("id");return n&&n.value===t}}),i.find.TAG=n.getElementsByTagName?function(e,t){return typeof t.getElementsByTagName!==j?t.getElementsByTagName(e):undefined}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},i.find.CLASS=n.getElementsByClassName&&function(e,t){return typeof t.getElementsByClassName!==j&&h?t.getElementsByClassName(e):undefined},g=[],d=[],(n.qsa=Q.test(t.querySelectorAll))&&(ut(function(e){e.innerHTML="<select><option selected=''></option></select>",e.querySelectorAll("[selected]").length||d.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll(":checked").length||d.push(":checked")}),ut(function(e){var n=t.createElement("input");n.setAttribute("type","hidden"),e.appendChild(n).setAttribute("t",""),e.querySelectorAll("[t^='']").length&&d.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll(":enabled").length||d.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),d.push(",.*:")})),(n.matchesSelector=Q.test(m=f.webkitMatchesSelector||f.mozMatchesSelector||f.oMatchesSelector||f.msMatchesSelector))&&ut(function(e){n.disconnectedMatch=m.call(e,"div"),m.call(e,"[s!='']:x"),g.push("!=",I)}),d=d.length&&RegExp(d.join("|")),g=g.length&&RegExp(g.join("|")),y=Q.test(f.contains)||f.compareDocumentPosition?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},S=f.compareDocumentPosition?function(e,r){if(e===r)return E=!0,0;var i=r.compareDocumentPosition&&e.compareDocumentPosition&&e.compareDocumentPosition(r);return i?1&i||!n.sortDetached&&r.compareDocumentPosition(e)===i?e===t||y(b,e)?-1:r===t||y(b,r)?1:l?P.call(l,e)-P.call(l,r):0:4&i?-1:1:e.compareDocumentPosition?-1:1}:function(e,n){var r,i=0,o=e.parentNode,s=n.parentNode,a=[e],u=[n];if(e===n)return E=!0,0;if(!o||!s)return e===t?-1:n===t?1:o?-1:s?1:l?P.call(l,e)-P.call(l,n):0;if(o===s)return ct(e,n);r=e;while(r=r.parentNode)a.unshift(r);r=n;while(r=r.parentNode)u.unshift(r);while(a[i]===u[i])i++;return i?ct(a[i],u[i]):a[i]===b?-1:u[i]===b?1:0},t):p},ot.matches=function(e,t){return ot(e,null,null,t)},ot.matchesSelector=function(e,t){if((e.ownerDocument||e)!==p&&c(e),t=t.replace(Y,"='$1']"),!(!n.matchesSelector||!h||g&&g.test(t)||d&&d.test(t)))try{var r=m.call(e,t);if(r||n.disconnectedMatch||e.document&&11!==e.document.nodeType)return r}catch(i){}return ot(t,p,null,[e]).length>0},ot.contains=function(e,t){return(e.ownerDocument||e)!==p&&c(e),y(e,t)},ot.attr=function(e,t){(e.ownerDocument||e)!==p&&c(e);var r=i.attrHandle[t.toLowerCase()],o=r&&A.call(i.attrHandle,t.toLowerCase())?r(e,t,!h):undefined;return o===undefined?n.attributes||!h?e.getAttribute(t):(o=e.getAttributeNode(t))&&o.specified?o.value:null:o},ot.error=function(e){throw Error("Syntax error, unrecognized expression: "+e)},ot.uniqueSort=function(e){var t,r=[],i=0,o=0;if(E=!n.detectDuplicates,l=!n.sortStable&&e.slice(0),e.sort(S),E){while(t=e[o++])t===e[o]&&(i=r.push(o));while(i--)e.splice(r[i],1)}return e},o=ot.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=o(e)}else if(3===i||4===i)return e.nodeValue}else for(;t=e[r];r++)n+=o(t);return n},i=ot.selectors={cacheLength:50,createPseudo:at,match:J,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(nt,rt),e[3]=(e[4]||e[5]||"").replace(nt,rt),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||ot.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&ot.error(e[0]),e},PSEUDO:function(e){var t,n=!e[5]&&e[2];return J.CHILD.test(e[0])?null:(e[3]&&e[4]!==undefined?e[2]=e[4]:n&&V.test(n)&&(t=gt(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(nt,rt).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=C[e+" "];return t||(t=RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&C(e,function(e){return t.test("string"==typeof e.className&&e.className||typeof e.getAttribute!==j&&e.getAttribute("class")||"")})},ATTR:function(e,t,n){return function(r){var i=ot.attr(r,e);return null==i?"!="===t:t?(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"*="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i+" ").indexOf(n)>-1:"|="===t?i===n||i.slice(0,n.length+1)===n+"-":!1):!0}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),s="last"!==e.slice(-4),a="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,u){var l,c,p,f,h,d,g=o!==s?"nextSibling":"previousSibling",m=t.parentNode,y=a&&t.nodeName.toLowerCase(),x=!u&&!a;if(m){if(o){while(g){p=t;while(p=p[g])if(a?p.nodeName.toLowerCase()===y:1===p.nodeType)return!1;d=g="only"===e&&!d&&"nextSibling"}return!0}if(d=[s?m.firstChild:m.lastChild],s&&x){c=m[v]||(m[v]={}),l=c[e]||[],h=l[0]===w&&l[1],f=l[0]===w&&l[2],p=h&&m.childNodes[h];while(p=++h&&p&&p[g]||(f=h=0)||d.pop())if(1===p.nodeType&&++f&&p===t){c[e]=[w,h,f];break}}else if(x&&(l=(t[v]||(t[v]={}))[e])&&l[0]===w)f=l[1];else while(p=++h&&p&&p[g]||(f=h=0)||d.pop())if((a?p.nodeName.toLowerCase()===y:1===p.nodeType)&&++f&&(x&&((p[v]||(p[v]={}))[e]=[w,f]),p===t))break;return f-=i,f===r||0===f%r&&f/r>=0}}},PSEUDO:function(e,t){var n,r=i.pseudos[e]||i.setFilters[e.toLowerCase()]||ot.error("unsupported pseudo: "+e);return r[v]?r(t):r.length>1?(n=[e,e,"",t],i.setFilters.hasOwnProperty(e.toLowerCase())?at(function(e,n){var i,o=r(e,t),s=o.length;while(s--)i=P.call(e,o[s]),e[i]=!(n[i]=o[s])}):function(e){return r(e,0,n)}):r}},pseudos:{not:at(function(e){var t=[],n=[],r=a(e.replace(z,"$1"));return r[v]?at(function(e,t,n,i){var o,s=r(e,null,i,[]),a=e.length;while(a--)(o=s[a])&&(e[a]=!(t[a]=o))}):function(e,i,o){return t[0]=e,r(t,null,o,n),!n.pop()}}),has:at(function(e){return function(t){return ot(e,t).length>0}}),contains:at(function(e){return function(t){return(t.textContent||t.innerText||o(t)).indexOf(e)>-1}}),lang:at(function(e){return G.test(e||"")||ot.error("unsupported lang: "+e),e=e.replace(nt,rt).toLowerCase(),function(t){var n;do if(n=h?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return n=n.toLowerCase(),n===e||0===n.indexOf(e+"-");while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===f},focus:function(e){return e===p.activeElement&&(!p.hasFocus||p.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:function(e){return e.disabled===!1},disabled:function(e){return e.disabled===!0},checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,e.selected===!0},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeName>"@"||3===e.nodeType||4===e.nodeType)return!1;return!0},parent:function(e){return!i.pseudos.empty(e)},header:function(e){return et.test(e.nodeName)},input:function(e){return Z.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||t.toLowerCase()===e.type)},first:ht(function(){return[0]}),last:ht(function(e,t){return[t-1]}),eq:ht(function(e,t,n){return[0>n?n+t:n]}),even:ht(function(e,t){var n=0;for(;t>n;n+=2)e.push(n);return e}),odd:ht(function(e,t){var n=1;for(;t>n;n+=2)e.push(n);return e}),lt:ht(function(e,t,n){var r=0>n?n+t:n;for(;--r>=0;)e.push(r);return e}),gt:ht(function(e,t,n){var r=0>n?n+t:n;for(;t>++r;)e.push(r);return e})}},i.pseudos.nth=i.pseudos.eq;for(t in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})i.pseudos[t]=pt(t);for(t in{submit:!0,reset:!0})i.pseudos[t]=ft(t);function dt(){}dt.prototype=i.filters=i.pseudos,i.setFilters=new dt;function gt(e,t){var n,r,o,s,a,u,l,c=k[e+" "];if(c)return t?0:c.slice(0);a=e,u=[],l=i.preFilter;while(a){(!n||(r=_.exec(a)))&&(r&&(a=a.slice(r[0].length)||a),u.push(o=[])),n=!1,(r=X.exec(a))&&(n=r.shift(),o.push({value:n,type:r[0].replace(z," ")}),a=a.slice(n.length));for(s in i.filter)!(r=J[s].exec(a))||l[s]&&!(r=l[s](r))||(n=r.shift(),o.push({value:n,type:s,matches:r}),a=a.slice(n.length));if(!n)break}return t?a.length:a?ot.error(e):k(e,u).slice(0)}function mt(e){var t=0,n=e.length,r="";for(;n>t;t++)r+=e[t].value;return r}function yt(e,t,n){var i=t.dir,o=n&&"parentNode"===i,s=T++;return t.first?function(t,n,r){while(t=t[i])if(1===t.nodeType||o)return e(t,n,r)}:function(t,n,a){var u,l,c,p=w+" "+s;if(a){while(t=t[i])if((1===t.nodeType||o)&&e(t,n,a))return!0}else while(t=t[i])if(1===t.nodeType||o)if(c=t[v]||(t[v]={}),(l=c[i])&&l[0]===p){if((u=l[1])===!0||u===r)return u===!0}else if(l=c[i]=[p],l[1]=e(t,n,a)||r,l[1]===!0)return!0}}function vt(e){return e.length>1?function(t,n,r){var i=e.length;while(i--)if(!e[i](t,n,r))return!1;return!0}:e[0]}function xt(e,t,n,r,i){var o,s=[],a=0,u=e.length,l=null!=t;for(;u>a;a++)(o=e[a])&&(!n||n(o,r,i))&&(s.push(o),l&&t.push(a));return s}function bt(e,t,n,r,i,o){return r&&!r[v]&&(r=bt(r)),i&&!i[v]&&(i=bt(i,o)),at(function(o,s,a,u){var l,c,p,f=[],h=[],d=s.length,g=o||Ct(t||"*",a.nodeType?[a]:a,[]),m=!e||!o&&t?g:xt(g,f,e,a,u),y=n?i||(o?e:d||r)?[]:s:m;if(n&&n(m,y,a,u),r){l=xt(y,h),r(l,[],a,u),c=l.length;while(c--)(p=l[c])&&(y[h[c]]=!(m[h[c]]=p))}if(o){if(i||e){if(i){l=[],c=y.length;while(c--)(p=y[c])&&l.push(m[c]=p);i(null,y=[],l,u)}c=y.length;while(c--)(p=y[c])&&(l=i?P.call(o,p):f[c])>-1&&(o[l]=!(s[l]=p))}}else y=xt(y===s?y.splice(d,y.length):y),i?i(null,s,y,u):O.apply(s,y)})}function wt(e){var t,n,r,o=e.length,s=i.relative[e[0].type],a=s||i.relative[" "],l=s?1:0,c=yt(function(e){return e===t},a,!0),p=yt(function(e){return P.call(t,e)>-1},a,!0),f=[function(e,n,r){return!s&&(r||n!==u)||((t=n).nodeType?c(e,n,r):p(e,n,r))}];for(;o>l;l++)if(n=i.relative[e[l].type])f=[yt(vt(f),n)];else{if(n=i.filter[e[l].type].apply(null,e[l].matches),n[v]){for(r=++l;o>r;r++)if(i.relative[e[r].type])break;return bt(l>1&&vt(f),l>1&&mt(e.slice(0,l-1).concat({value:" "===e[l-2].type?"*":""})).replace(z,"$1"),n,r>l&&wt(e.slice(l,r)),o>r&&wt(e=e.slice(r)),o>r&&mt(e))}f.push(n)}return vt(f)}function Tt(e,t){var n=0,o=t.length>0,s=e.length>0,a=function(a,l,c,f,h){var d,g,m,y=[],v=0,x="0",b=a&&[],T=null!=h,C=u,k=a||s&&i.find.TAG("*",h&&l.parentNode||l),N=w+=null==C?1:Math.random()||.1;for(T&&(u=l!==p&&l,r=n);null!=(d=k[x]);x++){if(s&&d){g=0;while(m=e[g++])if(m(d,l,c)){f.push(d);break}T&&(w=N,r=++n)}o&&((d=!m&&d)&&v--,a&&b.push(d))}if(v+=x,o&&x!==v){g=0;while(m=t[g++])m(b,y,l,c);if(a){if(v>0)while(x--)b[x]||y[x]||(y[x]=q.call(f));y=xt(y)}O.apply(f,y),T&&!a&&y.length>0&&v+t.length>1&&ot.uniqueSort(f)}return T&&(w=N,u=C),b};return o?at(a):a}a=ot.compile=function(e,t){var n,r=[],i=[],o=N[e+" "];if(!o){t||(t=gt(e)),n=t.length;while(n--)o=wt(t[n]),o[v]?r.push(o):i.push(o);o=N(e,Tt(i,r))}return o};function Ct(e,t,n){var r=0,i=t.length;for(;i>r;r++)ot(e,t[r],n);return n}function kt(e,t,r,o){var s,u,l,c,p,f=gt(e);if(!o&&1===f.length){if(u=f[0]=f[0].slice(0),u.length>2&&"ID"===(l=u[0]).type&&n.getById&&9===t.nodeType&&h&&i.relative[u[1].type]){if(t=(i.find.ID(l.matches[0].replace(nt,rt),t)||[])[0],!t)return r;e=e.slice(u.shift().value.length)}s=J.needsContext.test(e)?0:u.length;while(s--){if(l=u[s],i.relative[c=l.type])break;if((p=i.find[c])&&(o=p(l.matches[0].replace(nt,rt),U.test(u[0].type)&&t.parentNode||t))){if(u.splice(s,1),e=o.length&&mt(u),!e)return O.apply(r,o),r;break}}}return a(e,f)(o,t,!h,r,U.test(e)),r}n.sortStable=v.split("").sort(S).join("")===v,n.detectDuplicates=E,c(),n.sortDetached=ut(function(e){return 1&e.compareDocumentPosition(p.createElement("div"))}),ut(function(e){return e.innerHTML="<a href='#'></a>","#"===e.firstChild.getAttribute("href")})||lt("type|href|height|width",function(e,t,n){return n?undefined:e.getAttribute(t,"type"===t.toLowerCase()?1:2)}),n.attributes&&ut(function(e){return e.innerHTML="<input/>",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||lt("value",function(e,t,n){return n||"input"!==e.nodeName.toLowerCase()?undefined:e.defaultValue}),ut(function(e){return null==e.getAttribute("disabled")})||lt(R,function(e,t,n){var r;return n?undefined:(r=e.getAttributeNode(t))&&r.specified?r.value:e[t]===!0?t.toLowerCase():null}),x.find=ot,x.expr=ot.selectors,x.expr[":"]=x.expr.pseudos,x.unique=ot.uniqueSort,x.text=ot.getText,x.isXMLDoc=ot.isXML,x.contains=ot.contains}(e);var D={};function A(e){var t=D[e]={};return x.each(e.match(w)||[],function(e,n){t[n]=!0}),t}x.Callbacks=function(e){e="string"==typeof e?D[e]||A(e):x.extend({},e);var t,n,r,i,o,s,a=[],u=!e.once&&[],l=function(p){for(t=e.memory&&p,n=!0,s=i||0,i=0,o=a.length,r=!0;a&&o>s;s++)if(a[s].apply(p[0],p[1])===!1&&e.stopOnFalse){t=!1;break}r=!1,a&&(u?u.length&&l(u.shift()):t?a=[]:c.disable())},c={add:function(){if(a){var n=a.length;(function s(t){x.each(t,function(t,n){var r=x.type(n);"function"===r?e.unique&&c.has(n)||a.push(n):n&&n.length&&"string"!==r&&s(n)})})(arguments),r?o=a.length:t&&(i=n,l(t))}return this},remove:function(){return a&&x.each(arguments,function(e,t){var n;while((n=x.inArray(t,a,n))>-1)a.splice(n,1),r&&(o>=n&&o--,s>=n&&s--)}),this},has:function(e){return e?x.inArray(e,a)>-1:!(!a||!a.length)},empty:function(){return a=[],o=0,this},disable:function(){return a=u=t=undefined,this},disabled:function(){return!a},lock:function(){return u=undefined,t||c.disable(),this},locked:function(){return!u},fireWith:function(e,t){return!a||n&&!u||(t=t||[],t=[e,t.slice?t.slice():t],r?u.push(t):l(t)),this},fire:function(){return c.fireWith(this,arguments),this},fired:function(){return!!n}};return c},x.extend({Deferred:function(e){var t=[["resolve","done",x.Callbacks("once memory"),"resolved"],["reject","fail",x.Callbacks("once memory"),"rejected"],["notify","progress",x.Callbacks("memory")]],n="pending",r={state:function(){return n},always:function(){return i.done(arguments).fail(arguments),this},then:function(){var e=arguments;return x.Deferred(function(n){x.each(t,function(t,o){var s=o[0],a=x.isFunction(e[t])&&e[t];i[o[1]](function(){var e=a&&a.apply(this,arguments);e&&x.isFunction(e.promise)?e.promise().done(n.resolve).fail(n.reject).progress(n.notify):n[s+"With"](this===r?n.promise():this,a?[e]:arguments)})}),e=null}).promise()},promise:function(e){return null!=e?x.extend(e,r):r}},i={};return r.pipe=r.then,x.each(t,function(e,o){var s=o[2],a=o[3];r[o[1]]=s.add,a&&s.add(function(){n=a},t[1^e][2].disable,t[2][2].lock),i[o[0]]=function(){return i[o[0]+"With"](this===i?r:this,arguments),this},i[o[0]+"With"]=s.fireWith}),r.promise(i),e&&e.call(i,i),i},when:function(e){var t=0,n=d.call(arguments),r=n.length,i=1!==r||e&&x.isFunction(e.promise)?r:0,o=1===i?e:x.Deferred(),s=function(e,t,n){return function(r){t[e]=this,n[e]=arguments.length>1?d.call(arguments):r,n===a?o.notifyWith(t,n):--i||o.resolveWith(t,n)}},a,u,l;if(r>1)for(a=Array(r),u=Array(r),l=Array(r);r>t;t++)n[t]&&x.isFunction(n[t].promise)?n[t].promise().done(s(t,l,n)).fail(o.reject).progress(s(t,u,a)):--i;return i||o.resolveWith(l,n),o.promise()}}),x.support=function(t){var n=o.createElement("input"),r=o.createDocumentFragment(),i=o.createElement("div"),s=o.createElement("select"),a=s.appendChild(o.createElement("option"));return n.type?(n.type="checkbox",t.checkOn=""!==n.value,t.optSelected=a.selected,t.reliableMarginRight=!0,t.boxSizingReliable=!0,t.pixelPosition=!1,n.checked=!0,t.noCloneChecked=n.cloneNode(!0).checked,s.disabled=!0,t.optDisabled=!a.disabled,n=o.createElement("input"),n.value="t",n.type="radio",t.radioValue="t"===n.value,n.setAttribute("checked","t"),n.setAttribute("name","t"),r.appendChild(n),t.checkClone=r.cloneNode(!0).cloneNode(!0).lastChild.checked,t.focusinBubbles="onfocusin"in e,i.style.backgroundClip="content-box",i.cloneNode(!0).style.backgroundClip="",t.clearCloneStyle="content-box"===i.style.backgroundClip,x(function(){var n,r,s="padding:0;margin:0;border:0;display:block;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box",a=o.getElementsByTagName("body")[0];a&&(n=o.createElement("div"),n.style.cssText="border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px",a.appendChild(n).appendChild(i),i.innerHTML="",i.style.cssText="-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%",x.swap(a,null!=a.style.zoom?{zoom:1}:{},function(){t.boxSizing=4===i.offsetWidth}),e.getComputedStyle&&(t.pixelPosition="1%"!==(e.getComputedStyle(i,null)||{}).top,t.boxSizingReliable="4px"===(e.getComputedStyle(i,null)||{width:"4px"}).width,r=i.appendChild(o.createElement("div")),r.style.cssText=i.style.cssText=s,r.style.marginRight=r.style.width="0",i.style.width="1px",t.reliableMarginRight=!parseFloat((e.getComputedStyle(r,null)||{}).marginRight)),a.removeChild(n))}),t):t}({});var L,q,H=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,O=/([A-Z])/g;function F(){Object.defineProperty(this.cache={},0,{get:function(){return{}}}),this.expando=x.expando+Math.random()}F.uid=1,F.accepts=function(e){return e.nodeType?1===e.nodeType||9===e.nodeType:!0},F.prototype={key:function(e){if(!F.accepts(e))return 0;var t={},n=e[this.expando];if(!n){n=F.uid++;try{t[this.expando]={value:n},Object.defineProperties(e,t)}catch(r){t[this.expando]=n,x.extend(e,t)}}return this.cache[n]||(this.cache[n]={}),n},set:function(e,t,n){var r,i=this.key(e),o=this.cache[i];if("string"==typeof t)o[t]=n;else if(x.isEmptyObject(o))x.extend(this.cache[i],t);else for(r in t)o[r]=t[r];return o},get:function(e,t){var n=this.cache[this.key(e)];return t===undefined?n:n[t]},access:function(e,t,n){var r;return t===undefined||t&&"string"==typeof t&&n===undefined?(r=this.get(e,t),r!==undefined?r:this.get(e,x.camelCase(t))):(this.set(e,t,n),n!==undefined?n:t)},remove:function(e,t){var n,r,i,o=this.key(e),s=this.cache[o];if(t===undefined)this.cache[o]={};else{x.isArray(t)?r=t.concat(t.map(x.camelCase)):(i=x.camelCase(t),t in s?r=[t,i]:(r=i,r=r in s?[r]:r.match(w)||[])),n=r.length;while(n--)delete s[r[n]]}},hasData:function(e){return!x.isEmptyObject(this.cache[e[this.expando]]||{})},discard:function(e){e[this.expando]&&delete this.cache[e[this.expando]]}},L=new F,q=new F,x.extend({acceptData:F.accepts,hasData:function(e){return L.hasData(e)||q.hasData(e)},data:function(e,t,n){return L.access(e,t,n)},removeData:function(e,t){L.remove(e,t)},_data:function(e,t,n){return q.access(e,t,n)},_removeData:function(e,t){q.remove(e,t)}}),x.fn.extend({data:function(e,t){var n,r,i=this[0],o=0,s=null;if(e===undefined){if(this.length&&(s=L.get(i),1===i.nodeType&&!q.get(i,"hasDataAttrs"))){for(n=i.attributes;n.length>o;o++)r=n[o].name,0===r.indexOf("data-")&&(r=x.camelCase(r.slice(5)),P(i,r,s[r]));q.set(i,"hasDataAttrs",!0)}return s}return"object"==typeof e?this.each(function(){L.set(this,e)}):x.access(this,function(t){var n,r=x.camelCase(e);if(i&&t===undefined){if(n=L.get(i,e),n!==undefined)return n;if(n=L.get(i,r),n!==undefined)return n;if(n=P(i,r,undefined),n!==undefined)return n}else this.each(function(){var n=L.get(this,r);L.set(this,r,t),-1!==e.indexOf("-")&&n!==undefined&&L.set(this,e,t)})},null,t,arguments.length>1,null,!0)},removeData:function(e){return this.each(function(){L.remove(this,e)})}});function P(e,t,n){var r;if(n===undefined&&1===e.nodeType)if(r="data-"+t.replace(O,"-$1").toLowerCase(),n=e.getAttribute(r),"string"==typeof n){try{n="true"===n?!0:"false"===n?!1:"null"===n?null:+n+""===n?+n:H.test(n)?JSON.parse(n):n}catch(i){}L.set(e,t,n)}else n=undefined;return n}x.extend({queue:function(e,t,n){var r;return e?(t=(t||"fx")+"queue",r=q.get(e,t),n&&(!r||x.isArray(n)?r=q.access(e,t,x.makeArray(n)):r.push(n)),r||[]):undefined},dequeue:function(e,t){t=t||"fx";var n=x.queue(e,t),r=n.length,i=n.shift(),o=x._queueHooks(e,t),s=function(){x.dequeue(e,t)
-};"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,s,o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return q.get(e,n)||q.access(e,n,{empty:x.Callbacks("once memory").add(function(){q.remove(e,[t+"queue",n])})})}}),x.fn.extend({queue:function(e,t){var n=2;return"string"!=typeof e&&(t=e,e="fx",n--),n>arguments.length?x.queue(this[0],e):t===undefined?this:this.each(function(){var n=x.queue(this,e,t);x._queueHooks(this,e),"fx"===e&&"inprogress"!==n[0]&&x.dequeue(this,e)})},dequeue:function(e){return this.each(function(){x.dequeue(this,e)})},delay:function(e,t){return e=x.fx?x.fx.speeds[e]||e:e,t=t||"fx",this.queue(t,function(t,n){var r=setTimeout(t,e);n.stop=function(){clearTimeout(r)}})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,t){var n,r=1,i=x.Deferred(),o=this,s=this.length,a=function(){--r||i.resolveWith(o,[o])};"string"!=typeof e&&(t=e,e=undefined),e=e||"fx";while(s--)n=q.get(o[s],e+"queueHooks"),n&&n.empty&&(r++,n.empty.add(a));return a(),i.promise(t)}});var R,M,W=/[\t\r\n\f]/g,$=/\r/g,B=/^(?:input|select|textarea|button)$/i;x.fn.extend({attr:function(e,t){return x.access(this,x.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each(function(){x.removeAttr(this,e)})},prop:function(e,t){return x.access(this,x.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each(function(){delete this[x.propFix[e]||e]})},addClass:function(e){var t,n,r,i,o,s=0,a=this.length,u="string"==typeof e&&e;if(x.isFunction(e))return this.each(function(t){x(this).addClass(e.call(this,t,this.className))});if(u)for(t=(e||"").match(w)||[];a>s;s++)if(n=this[s],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(W," "):" ")){o=0;while(i=t[o++])0>r.indexOf(" "+i+" ")&&(r+=i+" ");n.className=x.trim(r)}return this},removeClass:function(e){var t,n,r,i,o,s=0,a=this.length,u=0===arguments.length||"string"==typeof e&&e;if(x.isFunction(e))return this.each(function(t){x(this).removeClass(e.call(this,t,this.className))});if(u)for(t=(e||"").match(w)||[];a>s;s++)if(n=this[s],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(W," "):"")){o=0;while(i=t[o++])while(r.indexOf(" "+i+" ")>=0)r=r.replace(" "+i+" "," ");n.className=e?x.trim(r):""}return this},toggleClass:function(e,t){var n=typeof e;return"boolean"==typeof t&&"string"===n?t?this.addClass(e):this.removeClass(e):x.isFunction(e)?this.each(function(n){x(this).toggleClass(e.call(this,n,this.className,t),t)}):this.each(function(){if("string"===n){var t,i=0,o=x(this),s=e.match(w)||[];while(t=s[i++])o.hasClass(t)?o.removeClass(t):o.addClass(t)}else(n===r||"boolean"===n)&&(this.className&&q.set(this,"__className__",this.className),this.className=this.className||e===!1?"":q.get(this,"__className__")||"")})},hasClass:function(e){var t=" "+e+" ",n=0,r=this.length;for(;r>n;n++)if(1===this[n].nodeType&&(" "+this[n].className+" ").replace(W," ").indexOf(t)>=0)return!0;return!1},val:function(e){var t,n,r,i=this[0];{if(arguments.length)return r=x.isFunction(e),this.each(function(n){var i;1===this.nodeType&&(i=r?e.call(this,n,x(this).val()):e,null==i?i="":"number"==typeof i?i+="":x.isArray(i)&&(i=x.map(i,function(e){return null==e?"":e+""})),t=x.valHooks[this.type]||x.valHooks[this.nodeName.toLowerCase()],t&&"set"in t&&t.set(this,i,"value")!==undefined||(this.value=i))});if(i)return t=x.valHooks[i.type]||x.valHooks[i.nodeName.toLowerCase()],t&&"get"in t&&(n=t.get(i,"value"))!==undefined?n:(n=i.value,"string"==typeof n?n.replace($,""):null==n?"":n)}}}),x.extend({valHooks:{option:{get:function(e){var t=e.attributes.value;return!t||t.specified?e.value:e.text}},select:{get:function(e){var t,n,r=e.options,i=e.selectedIndex,o="select-one"===e.type||0>i,s=o?null:[],a=o?i+1:r.length,u=0>i?a:o?i:0;for(;a>u;u++)if(n=r[u],!(!n.selected&&u!==i||(x.support.optDisabled?n.disabled:null!==n.getAttribute("disabled"))||n.parentNode.disabled&&x.nodeName(n.parentNode,"optgroup"))){if(t=x(n).val(),o)return t;s.push(t)}return s},set:function(e,t){var n,r,i=e.options,o=x.makeArray(t),s=i.length;while(s--)r=i[s],(r.selected=x.inArray(x(r).val(),o)>=0)&&(n=!0);return n||(e.selectedIndex=-1),o}}},attr:function(e,t,n){var i,o,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return typeof e.getAttribute===r?x.prop(e,t,n):(1===s&&x.isXMLDoc(e)||(t=t.toLowerCase(),i=x.attrHooks[t]||(x.expr.match.bool.test(t)?M:R)),n===undefined?i&&"get"in i&&null!==(o=i.get(e,t))?o:(o=x.find.attr(e,t),null==o?undefined:o):null!==n?i&&"set"in i&&(o=i.set(e,n,t))!==undefined?o:(e.setAttribute(t,n+""),n):(x.removeAttr(e,t),undefined))},removeAttr:function(e,t){var n,r,i=0,o=t&&t.match(w);if(o&&1===e.nodeType)while(n=o[i++])r=x.propFix[n]||n,x.expr.match.bool.test(n)&&(e[r]=!1),e.removeAttribute(n)},attrHooks:{type:{set:function(e,t){if(!x.support.radioValue&&"radio"===t&&x.nodeName(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},propFix:{"for":"htmlFor","class":"className"},prop:function(e,t,n){var r,i,o,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return o=1!==s||!x.isXMLDoc(e),o&&(t=x.propFix[t]||t,i=x.propHooks[t]),n!==undefined?i&&"set"in i&&(r=i.set(e,n,t))!==undefined?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){return e.hasAttribute("tabindex")||B.test(e.nodeName)||e.href?e.tabIndex:-1}}}}),M={set:function(e,t,n){return t===!1?x.removeAttr(e,n):e.setAttribute(n,n),n}},x.each(x.expr.match.bool.source.match(/\w+/g),function(e,t){var n=x.expr.attrHandle[t]||x.find.attr;x.expr.attrHandle[t]=function(e,t,r){var i=x.expr.attrHandle[t],o=r?undefined:(x.expr.attrHandle[t]=undefined)!=n(e,t,r)?t.toLowerCase():null;return x.expr.attrHandle[t]=i,o}}),x.support.optSelected||(x.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null}}),x.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){x.propFix[this.toLowerCase()]=this}),x.each(["radio","checkbox"],function(){x.valHooks[this]={set:function(e,t){return x.isArray(t)?e.checked=x.inArray(x(e).val(),t)>=0:undefined}},x.support.checkOn||(x.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})});var I=/^key/,z=/^(?:mouse|contextmenu)|click/,_=/^(?:focusinfocus|focusoutblur)$/,X=/^([^.]*)(?:\.(.+)|)$/;function U(){return!0}function Y(){return!1}function V(){try{return o.activeElement}catch(e){}}x.event={global:{},add:function(e,t,n,i,o){var s,a,u,l,c,p,f,h,d,g,m,y=q.get(e);if(y){n.handler&&(s=n,n=s.handler,o=s.selector),n.guid||(n.guid=x.guid++),(l=y.events)||(l=y.events={}),(a=y.handle)||(a=y.handle=function(e){return typeof x===r||e&&x.event.triggered===e.type?undefined:x.event.dispatch.apply(a.elem,arguments)},a.elem=e),t=(t||"").match(w)||[""],c=t.length;while(c--)u=X.exec(t[c])||[],d=m=u[1],g=(u[2]||"").split(".").sort(),d&&(f=x.event.special[d]||{},d=(o?f.delegateType:f.bindType)||d,f=x.event.special[d]||{},p=x.extend({type:d,origType:m,data:i,handler:n,guid:n.guid,selector:o,needsContext:o&&x.expr.match.needsContext.test(o),namespace:g.join(".")},s),(h=l[d])||(h=l[d]=[],h.delegateCount=0,f.setup&&f.setup.call(e,i,g,a)!==!1||e.addEventListener&&e.addEventListener(d,a,!1)),f.add&&(f.add.call(e,p),p.handler.guid||(p.handler.guid=n.guid)),o?h.splice(h.delegateCount++,0,p):h.push(p),x.event.global[d]=!0);e=null}},remove:function(e,t,n,r,i){var o,s,a,u,l,c,p,f,h,d,g,m=q.hasData(e)&&q.get(e);if(m&&(u=m.events)){t=(t||"").match(w)||[""],l=t.length;while(l--)if(a=X.exec(t[l])||[],h=g=a[1],d=(a[2]||"").split(".").sort(),h){p=x.event.special[h]||{},h=(r?p.delegateType:p.bindType)||h,f=u[h]||[],a=a[2]&&RegExp("(^|\\.)"+d.join("\\.(?:.*\\.|)")+"(\\.|$)"),s=o=f.length;while(o--)c=f[o],!i&&g!==c.origType||n&&n.guid!==c.guid||a&&!a.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(f.splice(o,1),c.selector&&f.delegateCount--,p.remove&&p.remove.call(e,c));s&&!f.length&&(p.teardown&&p.teardown.call(e,d,m.handle)!==!1||x.removeEvent(e,h,m.handle),delete u[h])}else for(h in u)x.event.remove(e,h+t[l],n,r,!0);x.isEmptyObject(u)&&(delete m.handle,q.remove(e,"events"))}},trigger:function(t,n,r,i){var s,a,u,l,c,p,f,h=[r||o],d=y.call(t,"type")?t.type:t,g=y.call(t,"namespace")?t.namespace.split("."):[];if(a=u=r=r||o,3!==r.nodeType&&8!==r.nodeType&&!_.test(d+x.event.triggered)&&(d.indexOf(".")>=0&&(g=d.split("."),d=g.shift(),g.sort()),c=0>d.indexOf(":")&&"on"+d,t=t[x.expando]?t:new x.Event(d,"object"==typeof t&&t),t.isTrigger=i?2:3,t.namespace=g.join("."),t.namespace_re=t.namespace?RegExp("(^|\\.)"+g.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,t.result=undefined,t.target||(t.target=r),n=null==n?[t]:x.makeArray(n,[t]),f=x.event.special[d]||{},i||!f.trigger||f.trigger.apply(r,n)!==!1)){if(!i&&!f.noBubble&&!x.isWindow(r)){for(l=f.delegateType||d,_.test(l+d)||(a=a.parentNode);a;a=a.parentNode)h.push(a),u=a;u===(r.ownerDocument||o)&&h.push(u.defaultView||u.parentWindow||e)}s=0;while((a=h[s++])&&!t.isPropagationStopped())t.type=s>1?l:f.bindType||d,p=(q.get(a,"events")||{})[t.type]&&q.get(a,"handle"),p&&p.apply(a,n),p=c&&a[c],p&&x.acceptData(a)&&p.apply&&p.apply(a,n)===!1&&t.preventDefault();return t.type=d,i||t.isDefaultPrevented()||f._default&&f._default.apply(h.pop(),n)!==!1||!x.acceptData(r)||c&&x.isFunction(r[d])&&!x.isWindow(r)&&(u=r[c],u&&(r[c]=null),x.event.triggered=d,r[d](),x.event.triggered=undefined,u&&(r[c]=u)),t.result}},dispatch:function(e){e=x.event.fix(e);var t,n,r,i,o,s=[],a=d.call(arguments),u=(q.get(this,"events")||{})[e.type]||[],l=x.event.special[e.type]||{};if(a[0]=e,e.delegateTarget=this,!l.preDispatch||l.preDispatch.call(this,e)!==!1){s=x.event.handlers.call(this,e,u),t=0;while((i=s[t++])&&!e.isPropagationStopped()){e.currentTarget=i.elem,n=0;while((o=i.handlers[n++])&&!e.isImmediatePropagationStopped())(!e.namespace_re||e.namespace_re.test(o.namespace))&&(e.handleObj=o,e.data=o.data,r=((x.event.special[o.origType]||{}).handle||o.handler).apply(i.elem,a),r!==undefined&&(e.result=r)===!1&&(e.preventDefault(),e.stopPropagation()))}return l.postDispatch&&l.postDispatch.call(this,e),e.result}},handlers:function(e,t){var n,r,i,o,s=[],a=t.delegateCount,u=e.target;if(a&&u.nodeType&&(!e.button||"click"!==e.type))for(;u!==this;u=u.parentNode||this)if(u.disabled!==!0||"click"!==e.type){for(r=[],n=0;a>n;n++)o=t[n],i=o.selector+" ",r[i]===undefined&&(r[i]=o.needsContext?x(i,this).index(u)>=0:x.find(i,this,null,[u]).length),r[i]&&r.push(o);r.length&&s.push({elem:u,handlers:r})}return t.length>a&&s.push({elem:this,handlers:t.slice(a)}),s},props:"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(e,t){return null==e.which&&(e.which=null!=t.charCode?t.charCode:t.keyCode),e}},mouseHooks:{props:"button buttons clientX clientY offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(e,t){var n,r,i,s=t.button;return null==e.pageX&&null!=t.clientX&&(n=e.target.ownerDocument||o,r=n.documentElement,i=n.body,e.pageX=t.clientX+(r&&r.scrollLeft||i&&i.scrollLeft||0)-(r&&r.clientLeft||i&&i.clientLeft||0),e.pageY=t.clientY+(r&&r.scrollTop||i&&i.scrollTop||0)-(r&&r.clientTop||i&&i.clientTop||0)),e.which||s===undefined||(e.which=1&s?1:2&s?3:4&s?2:0),e}},fix:function(e){if(e[x.expando])return e;var t,n,r,i=e.type,s=e,a=this.fixHooks[i];a||(this.fixHooks[i]=a=z.test(i)?this.mouseHooks:I.test(i)?this.keyHooks:{}),r=a.props?this.props.concat(a.props):this.props,e=new x.Event(s),t=r.length;while(t--)n=r[t],e[n]=s[n];return e.target||(e.target=o),3===e.target.nodeType&&(e.target=e.target.parentNode),a.filter?a.filter(e,s):e},special:{load:{noBubble:!0},focus:{trigger:function(){return this!==V()&&this.focus?(this.focus(),!1):undefined},delegateType:"focusin"},blur:{trigger:function(){return this===V()&&this.blur?(this.blur(),!1):undefined},delegateType:"focusout"},click:{trigger:function(){return"checkbox"===this.type&&this.click&&x.nodeName(this,"input")?(this.click(),!1):undefined},_default:function(e){return x.nodeName(e.target,"a")}},beforeunload:{postDispatch:function(e){e.result!==undefined&&(e.originalEvent.returnValue=e.result)}}},simulate:function(e,t,n,r){var i=x.extend(new x.Event,n,{type:e,isSimulated:!0,originalEvent:{}});r?x.event.trigger(i,null,t):x.event.dispatch.call(t,i),i.isDefaultPrevented()&&n.preventDefault()}},x.removeEvent=function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n,!1)},x.Event=function(e,t){return this instanceof x.Event?(e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||e.getPreventDefault&&e.getPreventDefault()?U:Y):this.type=e,t&&x.extend(this,t),this.timeStamp=e&&e.timeStamp||x.now(),this[x.expando]=!0,undefined):new x.Event(e,t)},x.Event.prototype={isDefaultPrevented:Y,isPropagationStopped:Y,isImmediatePropagationStopped:Y,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=U,e&&e.preventDefault&&e.preventDefault()},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=U,e&&e.stopPropagation&&e.stopPropagation()},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=U,this.stopPropagation()}},x.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(e,t){x.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,r=this,i=e.relatedTarget,o=e.handleObj;return(!i||i!==r&&!x.contains(r,i))&&(e.type=o.origType,n=o.handler.apply(this,arguments),e.type=t),n}}}),x.support.focusinBubbles||x.each({focus:"focusin",blur:"focusout"},function(e,t){var n=0,r=function(e){x.event.simulate(t,e.target,x.event.fix(e),!0)};x.event.special[t]={setup:function(){0===n++&&o.addEventListener(e,r,!0)},teardown:function(){0===--n&&o.removeEventListener(e,r,!0)}}}),x.fn.extend({on:function(e,t,n,r,i){var o,s;if("object"==typeof e){"string"!=typeof t&&(n=n||t,t=undefined);for(s in e)this.on(s,t,n,e[s],i);return this}if(null==n&&null==r?(r=t,n=t=undefined):null==r&&("string"==typeof t?(r=n,n=undefined):(r=n,n=t,t=undefined)),r===!1)r=Y;else if(!r)return this;return 1===i&&(o=r,r=function(e){return x().off(e),o.apply(this,arguments)},r.guid=o.guid||(o.guid=x.guid++)),this.each(function(){x.event.add(this,e,r,n,t)})},one:function(e,t,n,r){return this.on(e,t,n,r,1)},off:function(e,t,n){var r,i;if(e&&e.preventDefault&&e.handleObj)return r=e.handleObj,x(e.delegateTarget).off(r.namespace?r.origType+"."+r.namespace:r.origType,r.selector,r.handler),this;if("object"==typeof e){for(i in e)this.off(i,t,e[i]);return this}return(t===!1||"function"==typeof t)&&(n=t,t=undefined),n===!1&&(n=Y),this.each(function(){x.event.remove(this,e,n,t)})},trigger:function(e,t){return this.each(function(){x.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];return n?x.event.trigger(e,t,n,!0):undefined}});var G=/^.[^:#\[\.,]*$/,J=/^(?:parents|prev(?:Until|All))/,Q=x.expr.match.needsContext,K={children:!0,contents:!0,next:!0,prev:!0};x.fn.extend({find:function(e){var t,n=[],r=this,i=r.length;if("string"!=typeof e)return this.pushStack(x(e).filter(function(){for(t=0;i>t;t++)if(x.contains(r[t],this))return!0}));for(t=0;i>t;t++)x.find(e,r[t],n);return n=this.pushStack(i>1?x.unique(n):n),n.selector=this.selector?this.selector+" "+e:e,n},has:function(e){var t=x(e,this),n=t.length;return this.filter(function(){var e=0;for(;n>e;e++)if(x.contains(this,t[e]))return!0})},not:function(e){return this.pushStack(et(this,e||[],!0))},filter:function(e){return this.pushStack(et(this,e||[],!1))},is:function(e){return!!et(this,"string"==typeof e&&Q.test(e)?x(e):e||[],!1).length},closest:function(e,t){var n,r=0,i=this.length,o=[],s=Q.test(e)||"string"!=typeof e?x(e,t||this.context):0;for(;i>r;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(11>n.nodeType&&(s?s.index(n)>-1:1===n.nodeType&&x.find.matchesSelector(n,e))){n=o.push(n);break}return this.pushStack(o.length>1?x.unique(o):o)},index:function(e){return e?"string"==typeof e?g.call(x(e),this[0]):g.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){var n="string"==typeof e?x(e,t):x.makeArray(e&&e.nodeType?[e]:e),r=x.merge(this.get(),n);return this.pushStack(x.unique(r))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}});function Z(e,t){while((e=e[t])&&1!==e.nodeType);return e}x.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return x.dir(e,"parentNode")},parentsUntil:function(e,t,n){return x.dir(e,"parentNode",n)},next:function(e){return Z(e,"nextSibling")},prev:function(e){return Z(e,"previousSibling")},nextAll:function(e){return x.dir(e,"nextSibling")},prevAll:function(e){return x.dir(e,"previousSibling")},nextUntil:function(e,t,n){return x.dir(e,"nextSibling",n)},prevUntil:function(e,t,n){return x.dir(e,"previousSibling",n)},siblings:function(e){return x.sibling((e.parentNode||{}).firstChild,e)},children:function(e){return x.sibling(e.firstChild)},contents:function(e){return e.contentDocument||x.merge([],e.childNodes)}},function(e,t){x.fn[e]=function(n,r){var i=x.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(i=x.filter(r,i)),this.length>1&&(K[e]||x.unique(i),J.test(e)&&i.reverse()),this.pushStack(i)}}),x.extend({filter:function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?x.find.matchesSelector(r,e)?[r]:[]:x.find.matches(e,x.grep(t,function(e){return 1===e.nodeType}))},dir:function(e,t,n){var r=[],i=n!==undefined;while((e=e[t])&&9!==e.nodeType)if(1===e.nodeType){if(i&&x(e).is(n))break;r.push(e)}return r},sibling:function(e,t){var n=[];for(;e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n}});function et(e,t,n){if(x.isFunction(t))return x.grep(e,function(e,r){return!!t.call(e,r,e)!==n});if(t.nodeType)return x.grep(e,function(e){return e===t!==n});if("string"==typeof t){if(G.test(t))return x.filter(t,e,n);t=x.filter(t,e)}return x.grep(e,function(e){return g.call(t,e)>=0!==n})}var tt=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,nt=/<([\w:]+)/,rt=/<|&#?\w+;/,it=/<(?:script|style|link)/i,ot=/^(?:checkbox|radio)$/i,st=/checked\s*(?:[^=]|=\s*.checked.)/i,at=/^$|\/(?:java|ecma)script/i,ut=/^true\/(.*)/,lt=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,ct={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,"",""]};ct.optgroup=ct.option,ct.tbody=ct.tfoot=ct.colgroup=ct.caption=ct.thead,ct.th=ct.td,x.fn.extend({text:function(e){return x.access(this,function(e){return e===undefined?x.text(this):this.empty().append((this[0]&&this[0].ownerDocument||o).createTextNode(e))},null,e,arguments.length)},append:function(){return this.domManip(arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=pt(this,e);t.appendChild(e)}})},prepend:function(){return this.domManip(arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=pt(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return this.domManip(arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return this.domManip(arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},remove:function(e,t){var n,r=e?x.filter(e,this):this,i=0;for(;null!=(n=r[i]);i++)t||1!==n.nodeType||x.cleanData(mt(n)),n.parentNode&&(t&&x.contains(n.ownerDocument,n)&&dt(mt(n,"script")),n.parentNode.removeChild(n));return this},empty:function(){var e,t=0;for(;null!=(e=this[t]);t++)1===e.nodeType&&(x.cleanData(mt(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null==e?!1:e,t=null==t?e:t,this.map(function(){return x.clone(this,e,t)})},html:function(e){return x.access(this,function(e){var t=this[0]||{},n=0,r=this.length;if(e===undefined&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!it.test(e)&&!ct[(nt.exec(e)||["",""])[1].toLowerCase()]){e=e.replace(tt,"<$1></$2>");try{for(;r>n;n++)t=this[n]||{},1===t.nodeType&&(x.cleanData(mt(t,!1)),t.innerHTML=e);t=0}catch(i){}}t&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(){var e=x.map(this,function(e){return[e.nextSibling,e.parentNode]}),t=0;return this.domManip(arguments,function(n){var r=e[t++],i=e[t++];i&&(r&&r.parentNode!==i&&(r=this.nextSibling),x(this).remove(),i.insertBefore(n,r))},!0),t?this:this.remove()},detach:function(e){return this.remove(e,!0)},domManip:function(e,t,n){e=f.apply([],e);var r,i,o,s,a,u,l=0,c=this.length,p=this,h=c-1,d=e[0],g=x.isFunction(d);if(g||!(1>=c||"string"!=typeof d||x.support.checkClone)&&st.test(d))return this.each(function(r){var i=p.eq(r);g&&(e[0]=d.call(this,r,i.html())),i.domManip(e,t,n)});if(c&&(r=x.buildFragment(e,this[0].ownerDocument,!1,!n&&this),i=r.firstChild,1===r.childNodes.length&&(r=i),i)){for(o=x.map(mt(r,"script"),ft),s=o.length;c>l;l++)a=r,l!==h&&(a=x.clone(a,!0,!0),s&&x.merge(o,mt(a,"script"))),t.call(this[l],a,l);if(s)for(u=o[o.length-1].ownerDocument,x.map(o,ht),l=0;s>l;l++)a=o[l],at.test(a.type||"")&&!q.access(a,"globalEval")&&x.contains(u,a)&&(a.src?x._evalUrl(a.src):x.globalEval(a.textContent.replace(lt,"")))}return this}}),x.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,t){x.fn[e]=function(e){var n,r=[],i=x(e),o=i.length-1,s=0;for(;o>=s;s++)n=s===o?this:this.clone(!0),x(i[s])[t](n),h.apply(r,n.get());return this.pushStack(r)}}),x.extend({clone:function(e,t,n){var r,i,o,s,a=e.cloneNode(!0),u=x.contains(e.ownerDocument,e);if(!(x.support.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||x.isXMLDoc(e)))for(s=mt(a),o=mt(e),r=0,i=o.length;i>r;r++)yt(o[r],s[r]);if(t)if(n)for(o=o||mt(e),s=s||mt(a),r=0,i=o.length;i>r;r++)gt(o[r],s[r]);else gt(e,a);return s=mt(a,"script"),s.length>0&&dt(s,!u&&mt(e,"script")),a},buildFragment:function(e,t,n,r){var i,o,s,a,u,l,c=0,p=e.length,f=t.createDocumentFragment(),h=[];for(;p>c;c++)if(i=e[c],i||0===i)if("object"===x.type(i))x.merge(h,i.nodeType?[i]:i);else if(rt.test(i)){o=o||f.appendChild(t.createElement("div")),s=(nt.exec(i)||["",""])[1].toLowerCase(),a=ct[s]||ct._default,o.innerHTML=a[1]+i.replace(tt,"<$1></$2>")+a[2],l=a[0];while(l--)o=o.lastChild;x.merge(h,o.childNodes),o=f.firstChild,o.textContent=""}else h.push(t.createTextNode(i));f.textContent="",c=0;while(i=h[c++])if((!r||-1===x.inArray(i,r))&&(u=x.contains(i.ownerDocument,i),o=mt(f.appendChild(i),"script"),u&&dt(o),n)){l=0;while(i=o[l++])at.test(i.type||"")&&n.push(i)}return f},cleanData:function(e){var t,n,r,i,o,s,a=x.event.special,u=0;for(;(n=e[u])!==undefined;u++){if(F.accepts(n)&&(o=n[q.expando],o&&(t=q.cache[o]))){if(r=Object.keys(t.events||{}),r.length)for(s=0;(i=r[s])!==undefined;s++)a[i]?x.event.remove(n,i):x.removeEvent(n,i,t.handle);q.cache[o]&&delete q.cache[o]}delete L.cache[n[L.expando]]}},_evalUrl:function(e){return x.ajax({url:e,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0})}});function pt(e,t){return x.nodeName(e,"table")&&x.nodeName(1===t.nodeType?t:t.firstChild,"tr")?e.getElementsByTagName("tbody")[0]||e.appendChild(e.ownerDocument.createElement("tbody")):e}function ft(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function ht(e){var t=ut.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function dt(e,t){var n=e.length,r=0;for(;n>r;r++)q.set(e[r],"globalEval",!t||q.get(t[r],"globalEval"))}function gt(e,t){var n,r,i,o,s,a,u,l;if(1===t.nodeType){if(q.hasData(e)&&(o=q.access(e),s=q.set(t,o),l=o.events)){delete s.handle,s.events={};for(i in l)for(n=0,r=l[i].length;r>n;n++)x.event.add(t,i,l[i][n])}L.hasData(e)&&(a=L.access(e),u=x.extend({},a),L.set(t,u))}}function mt(e,t){var n=e.getElementsByTagName?e.getElementsByTagName(t||"*"):e.querySelectorAll?e.querySelectorAll(t||"*"):[];return t===undefined||t&&x.nodeName(e,t)?x.merge([e],n):n}function yt(e,t){var n=t.nodeName.toLowerCase();"input"===n&&ot.test(e.type)?t.checked=e.checked:("input"===n||"textarea"===n)&&(t.defaultValue=e.defaultValue)}x.fn.extend({wrapAll:function(e){var t;return x.isFunction(e)?this.each(function(t){x(this).wrapAll(e.call(this,t))}):(this[0]&&(t=x(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstElementChild)e=e.firstElementChild;return e}).append(this)),this)},wrapInner:function(e){return x.isFunction(e)?this.each(function(t){x(this).wrapInner(e.call(this,t))}):this.each(function(){var t=x(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=x.isFunction(e);return this.each(function(n){x(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(){return this.parent().each(function(){x.nodeName(this,"body")||x(this).replaceWith(this.childNodes)}).end()}});var vt,xt,bt=/^(none|table(?!-c[ea]).+)/,wt=/^margin/,Tt=RegExp("^("+b+")(.*)$","i"),Ct=RegExp("^("+b+")(?!px)[a-z%]+$","i"),kt=RegExp("^([+-])=("+b+")","i"),Nt={BODY:"block"},Et={position:"absolute",visibility:"hidden",display:"block"},St={letterSpacing:0,fontWeight:400},jt=["Top","Right","Bottom","Left"],Dt=["Webkit","O","Moz","ms"];function At(e,t){if(t in e)return t;var n=t.charAt(0).toUpperCase()+t.slice(1),r=t,i=Dt.length;while(i--)if(t=Dt[i]+n,t in e)return t;return r}function Lt(e,t){return e=t||e,"none"===x.css(e,"display")||!x.contains(e.ownerDocument,e)}function qt(t){return e.getComputedStyle(t,null)}function Ht(e,t){var n,r,i,o=[],s=0,a=e.length;for(;a>s;s++)r=e[s],r.style&&(o[s]=q.get(r,"olddisplay"),n=r.style.display,t?(o[s]||"none"!==n||(r.style.display=""),""===r.style.display&&Lt(r)&&(o[s]=q.access(r,"olddisplay",Rt(r.nodeName)))):o[s]||(i=Lt(r),(n&&"none"!==n||!i)&&q.set(r,"olddisplay",i?n:x.css(r,"display"))));for(s=0;a>s;s++)r=e[s],r.style&&(t&&"none"!==r.style.display&&""!==r.style.display||(r.style.display=t?o[s]||"":"none"));return e}x.fn.extend({css:function(e,t){return x.access(this,function(e,t,n){var r,i,o={},s=0;if(x.isArray(t)){for(r=qt(e),i=t.length;i>s;s++)o[t[s]]=x.css(e,t[s],!1,r);return o}return n!==undefined?x.style(e,t,n):x.css(e,t)},e,t,arguments.length>1)},show:function(){return Ht(this,!0)},hide:function(){return Ht(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each(function(){Lt(this)?x(this).show():x(this).hide()})}}),x.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=vt(e,"opacity");return""===n?"1":n}}}},cssNumber:{columnCount:!0,fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":"cssFloat"},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,s,a=x.camelCase(t),u=e.style;return t=x.cssProps[a]||(x.cssProps[a]=At(u,a)),s=x.cssHooks[t]||x.cssHooks[a],n===undefined?s&&"get"in s&&(i=s.get(e,!1,r))!==undefined?i:u[t]:(o=typeof n,"string"===o&&(i=kt.exec(n))&&(n=(i[1]+1)*i[2]+parseFloat(x.css(e,t)),o="number"),null==n||"number"===o&&isNaN(n)||("number"!==o||x.cssNumber[a]||(n+="px"),x.support.clearCloneStyle||""!==n||0!==t.indexOf("background")||(u[t]="inherit"),s&&"set"in s&&(n=s.set(e,n,r))===undefined||(u[t]=n)),undefined)}},css:function(e,t,n,r){var i,o,s,a=x.camelCase(t);return t=x.cssProps[a]||(x.cssProps[a]=At(e.style,a)),s=x.cssHooks[t]||x.cssHooks[a],s&&"get"in s&&(i=s.get(e,!0,n)),i===undefined&&(i=vt(e,t,r)),"normal"===i&&t in St&&(i=St[t]),""===n||n?(o=parseFloat(i),n===!0||x.isNumeric(o)?o||0:i):i}}),vt=function(e,t,n){var r,i,o,s=n||qt(e),a=s?s.getPropertyValue(t)||s[t]:undefined,u=e.style;return s&&(""!==a||x.contains(e.ownerDocument,e)||(a=x.style(e,t)),Ct.test(a)&&wt.test(t)&&(r=u.width,i=u.minWidth,o=u.maxWidth,u.minWidth=u.maxWidth=u.width=a,a=s.width,u.width=r,u.minWidth=i,u.maxWidth=o)),a};function Ot(e,t,n){var r=Tt.exec(t);return r?Math.max(0,r[1]-(n||0))+(r[2]||"px"):t}function Ft(e,t,n,r,i){var o=n===(r?"border":"content")?4:"width"===t?1:0,s=0;for(;4>o;o+=2)"margin"===n&&(s+=x.css(e,n+jt[o],!0,i)),r?("content"===n&&(s-=x.css(e,"padding"+jt[o],!0,i)),"margin"!==n&&(s-=x.css(e,"border"+jt[o]+"Width",!0,i))):(s+=x.css(e,"padding"+jt[o],!0,i),"padding"!==n&&(s+=x.css(e,"border"+jt[o]+"Width",!0,i)));return s}function Pt(e,t,n){var r=!0,i="width"===t?e.offsetWidth:e.offsetHeight,o=qt(e),s=x.support.boxSizing&&"border-box"===x.css(e,"boxSizing",!1,o);if(0>=i||null==i){if(i=vt(e,t,o),(0>i||null==i)&&(i=e.style[t]),Ct.test(i))return i;r=s&&(x.support.boxSizingReliable||i===e.style[t]),i=parseFloat(i)||0}return i+Ft(e,t,n||(s?"border":"content"),r,o)+"px"}function Rt(e){var t=o,n=Nt[e];return n||(n=Mt(e,t),"none"!==n&&n||(xt=(xt||x("<iframe frameborder='0' width='0' height='0'/>").css("cssText","display:block !important")).appendTo(t.documentElement),t=(xt[0].contentWindow||xt[0].contentDocument).document,t.write("<!doctype html><html><body>"),t.close(),n=Mt(e,t),xt.detach()),Nt[e]=n),n}function Mt(e,t){var n=x(t.createElement(e)).appendTo(t.body),r=x.css(n[0],"display");return n.remove(),r}x.each(["height","width"],function(e,t){x.cssHooks[t]={get:function(e,n,r){return n?0===e.offsetWidth&&bt.test(x.css(e,"display"))?x.swap(e,Et,function(){return Pt(e,t,r)}):Pt(e,t,r):undefined},set:function(e,n,r){var i=r&&qt(e);return Ot(e,n,r?Ft(e,t,r,x.support.boxSizing&&"border-box"===x.css(e,"boxSizing",!1,i),i):0)}}}),x(function(){x.support.reliableMarginRight||(x.cssHooks.marginRight={get:function(e,t){return t?x.swap(e,{display:"inline-block"},vt,[e,"marginRight"]):undefined}}),!x.support.pixelPosition&&x.fn.position&&x.each(["top","left"],function(e,t){x.cssHooks[t]={get:function(e,n){return n?(n=vt(e,t),Ct.test(n)?x(e).position()[t]+"px":n):undefined}}})}),x.expr&&x.expr.filters&&(x.expr.filters.hidden=function(e){return 0>=e.offsetWidth&&0>=e.offsetHeight},x.expr.filters.visible=function(e){return!x.expr.filters.hidden(e)}),x.each({margin:"",padding:"",border:"Width"},function(e,t){x.cssHooks[e+t]={expand:function(n){var r=0,i={},o="string"==typeof n?n.split(" "):[n];for(;4>r;r++)i[e+jt[r]+t]=o[r]||o[r-2]||o[0];return i}},wt.test(e)||(x.cssHooks[e+t].set=Ot)});var Wt=/%20/g,$t=/\[\]$/,Bt=/\r?\n/g,It=/^(?:submit|button|image|reset|file)$/i,zt=/^(?:input|select|textarea|keygen)/i;x.fn.extend({serialize:function(){return x.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=x.prop(this,"elements");return e?x.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!x(this).is(":disabled")&&zt.test(this.nodeName)&&!It.test(e)&&(this.checked||!ot.test(e))}).map(function(e,t){var n=x(this).val();return null==n?null:x.isArray(n)?x.map(n,function(e){return{name:t.name,value:e.replace(Bt,"\r\n")}}):{name:t.name,value:n.replace(Bt,"\r\n")}}).get()}}),x.param=function(e,t){var n,r=[],i=function(e,t){t=x.isFunction(t)?t():null==t?"":t,r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(t)};if(t===undefined&&(t=x.ajaxSettings&&x.ajaxSettings.traditional),x.isArray(e)||e.jquery&&!x.isPlainObject(e))x.each(e,function(){i(this.name,this.value)});else for(n in e)_t(n,e[n],t,i);return r.join("&").replace(Wt,"+")};function _t(e,t,n,r){var i;if(x.isArray(t))x.each(t,function(t,i){n||$t.test(e)?r(e,i):_t(e+"["+("object"==typeof i?t:"")+"]",i,n,r)});else if(n||"object"!==x.type(t))r(e,t);else for(i in t)_t(e+"["+i+"]",t[i],n,r)}x.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(e,t){x.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}}),x.fn.extend({hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)},bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)
-},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)}});var Xt,Ut,Yt=x.now(),Vt=/\?/,Gt=/#.*$/,Jt=/([?&])_=[^&]*/,Qt=/^(.*?):[ \t]*([^\r\n]*)$/gm,Kt=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Zt=/^(?:GET|HEAD)$/,en=/^\/\//,tn=/^([\w.+-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,nn=x.fn.load,rn={},on={},sn="*/".concat("*");try{Ut=i.href}catch(an){Ut=o.createElement("a"),Ut.href="",Ut=Ut.href}Xt=tn.exec(Ut.toLowerCase())||[];function un(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var r,i=0,o=t.toLowerCase().match(w)||[];if(x.isFunction(n))while(r=o[i++])"+"===r[0]?(r=r.slice(1)||"*",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function ln(e,t,n,r){var i={},o=e===on;function s(a){var u;return i[a]=!0,x.each(e[a]||[],function(e,a){var l=a(t,n,r);return"string"!=typeof l||o||i[l]?o?!(u=l):undefined:(t.dataTypes.unshift(l),s(l),!1)}),u}return s(t.dataTypes[0])||!i["*"]&&s("*")}function cn(e,t){var n,r,i=x.ajaxSettings.flatOptions||{};for(n in t)t[n]!==undefined&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&x.extend(!0,e,r),e}x.fn.load=function(e,t,n){if("string"!=typeof e&&nn)return nn.apply(this,arguments);var r,i,o,s=this,a=e.indexOf(" ");return a>=0&&(r=e.slice(a),e=e.slice(0,a)),x.isFunction(t)?(n=t,t=undefined):t&&"object"==typeof t&&(i="POST"),s.length>0&&x.ajax({url:e,type:i,dataType:"html",data:t}).done(function(e){o=arguments,s.html(r?x("<div>").append(x.parseHTML(e)).find(r):e)}).complete(n&&function(e,t){s.each(n,o||[e.responseText,t,e])}),this},x.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){x.fn[t]=function(e){return this.on(t,e)}}),x.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:Ut,type:"GET",isLocal:Kt.test(Xt[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":sn,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":x.parseJSON,"text xml":x.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?cn(cn(e,x.ajaxSettings),t):cn(x.ajaxSettings,e)},ajaxPrefilter:un(rn),ajaxTransport:un(on),ajax:function(e,t){"object"==typeof e&&(t=e,e=undefined),t=t||{};var n,r,i,o,s,a,u,l,c=x.ajaxSetup({},t),p=c.context||c,f=c.context&&(p.nodeType||p.jquery)?x(p):x.event,h=x.Deferred(),d=x.Callbacks("once memory"),g=c.statusCode||{},m={},y={},v=0,b="canceled",T={readyState:0,getResponseHeader:function(e){var t;if(2===v){if(!o){o={};while(t=Qt.exec(i))o[t[1].toLowerCase()]=t[2]}t=o[e.toLowerCase()]}return null==t?null:t},getAllResponseHeaders:function(){return 2===v?i:null},setRequestHeader:function(e,t){var n=e.toLowerCase();return v||(e=y[n]=y[n]||e,m[e]=t),this},overrideMimeType:function(e){return v||(c.mimeType=e),this},statusCode:function(e){var t;if(e)if(2>v)for(t in e)g[t]=[g[t],e[t]];else T.always(e[T.status]);return this},abort:function(e){var t=e||b;return n&&n.abort(t),k(0,t),this}};if(h.promise(T).complete=d.add,T.success=T.done,T.error=T.fail,c.url=((e||c.url||Ut)+"").replace(Gt,"").replace(en,Xt[1]+"//"),c.type=t.method||t.type||c.method||c.type,c.dataTypes=x.trim(c.dataType||"*").toLowerCase().match(w)||[""],null==c.crossDomain&&(a=tn.exec(c.url.toLowerCase()),c.crossDomain=!(!a||a[1]===Xt[1]&&a[2]===Xt[2]&&(a[3]||("http:"===a[1]?"80":"443"))===(Xt[3]||("http:"===Xt[1]?"80":"443")))),c.data&&c.processData&&"string"!=typeof c.data&&(c.data=x.param(c.data,c.traditional)),ln(rn,c,t,T),2===v)return T;u=c.global,u&&0===x.active++&&x.event.trigger("ajaxStart"),c.type=c.type.toUpperCase(),c.hasContent=!Zt.test(c.type),r=c.url,c.hasContent||(c.data&&(r=c.url+=(Vt.test(r)?"&":"?")+c.data,delete c.data),c.cache===!1&&(c.url=Jt.test(r)?r.replace(Jt,"$1_="+Yt++):r+(Vt.test(r)?"&":"?")+"_="+Yt++)),c.ifModified&&(x.lastModified[r]&&T.setRequestHeader("If-Modified-Since",x.lastModified[r]),x.etag[r]&&T.setRequestHeader("If-None-Match",x.etag[r])),(c.data&&c.hasContent&&c.contentType!==!1||t.contentType)&&T.setRequestHeader("Content-Type",c.contentType),T.setRequestHeader("Accept",c.dataTypes[0]&&c.accepts[c.dataTypes[0]]?c.accepts[c.dataTypes[0]]+("*"!==c.dataTypes[0]?", "+sn+"; q=0.01":""):c.accepts["*"]);for(l in c.headers)T.setRequestHeader(l,c.headers[l]);if(c.beforeSend&&(c.beforeSend.call(p,T,c)===!1||2===v))return T.abort();b="abort";for(l in{success:1,error:1,complete:1})T[l](c[l]);if(n=ln(on,c,t,T)){T.readyState=1,u&&f.trigger("ajaxSend",[T,c]),c.async&&c.timeout>0&&(s=setTimeout(function(){T.abort("timeout")},c.timeout));try{v=1,n.send(m,k)}catch(C){if(!(2>v))throw C;k(-1,C)}}else k(-1,"No Transport");function k(e,t,o,a){var l,m,y,b,w,C=t;2!==v&&(v=2,s&&clearTimeout(s),n=undefined,i=a||"",T.readyState=e>0?4:0,l=e>=200&&300>e||304===e,o&&(b=pn(c,T,o)),b=fn(c,b,T,l),l?(c.ifModified&&(w=T.getResponseHeader("Last-Modified"),w&&(x.lastModified[r]=w),w=T.getResponseHeader("etag"),w&&(x.etag[r]=w)),204===e||"HEAD"===c.type?C="nocontent":304===e?C="notmodified":(C=b.state,m=b.data,y=b.error,l=!y)):(y=C,(e||!C)&&(C="error",0>e&&(e=0))),T.status=e,T.statusText=(t||C)+"",l?h.resolveWith(p,[m,C,T]):h.rejectWith(p,[T,C,y]),T.statusCode(g),g=undefined,u&&f.trigger(l?"ajaxSuccess":"ajaxError",[T,c,l?m:y]),d.fireWith(p,[T,C]),u&&(f.trigger("ajaxComplete",[T,c]),--x.active||x.event.trigger("ajaxStop")))}return T},getJSON:function(e,t,n){return x.get(e,t,n,"json")},getScript:function(e,t){return x.get(e,undefined,t,"script")}}),x.each(["get","post"],function(e,t){x[t]=function(e,n,r,i){return x.isFunction(n)&&(i=i||r,r=n,n=undefined),x.ajax({url:e,type:t,dataType:i,data:n,success:r})}});function pn(e,t,n){var r,i,o,s,a=e.contents,u=e.dataTypes;while("*"===u[0])u.shift(),r===undefined&&(r=e.mimeType||t.getResponseHeader("Content-Type"));if(r)for(i in a)if(a[i]&&a[i].test(r)){u.unshift(i);break}if(u[0]in n)o=u[0];else{for(i in n){if(!u[0]||e.converters[i+" "+u[0]]){o=i;break}s||(s=i)}o=o||s}return o?(o!==u[0]&&u.unshift(o),n[o]):undefined}function fn(e,t,n,r){var i,o,s,a,u,l={},c=e.dataTypes.slice();if(c[1])for(s in e.converters)l[s.toLowerCase()]=e.converters[s];o=c.shift();while(o)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!u&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u=o,o=c.shift())if("*"===o)o=u;else if("*"!==u&&u!==o){if(s=l[u+" "+o]||l["* "+o],!s)for(i in l)if(a=i.split(" "),a[1]===o&&(s=l[u+" "+a[0]]||l["* "+a[0]])){s===!0?s=l[i]:l[i]!==!0&&(o=a[0],c.unshift(a[1]));break}if(s!==!0)if(s&&e["throws"])t=s(t);else try{t=s(t)}catch(p){return{state:"parsererror",error:s?p:"No conversion from "+u+" to "+o}}}return{state:"success",data:t}}x.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/(?:java|ecma)script/},converters:{"text script":function(e){return x.globalEval(e),e}}}),x.ajaxPrefilter("script",function(e){e.cache===undefined&&(e.cache=!1),e.crossDomain&&(e.type="GET")}),x.ajaxTransport("script",function(e){if(e.crossDomain){var t,n;return{send:function(r,i){t=x("<script>").prop({async:!0,charset:e.scriptCharset,src:e.url}).on("load error",n=function(e){t.remove(),n=null,e&&i("error"===e.type?404:200,e.type)}),o.head.appendChild(t[0])},abort:function(){n&&n()}}}});var hn=[],dn=/(=)\?(?=&|$)|\?\?/;x.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=hn.pop()||x.expando+"_"+Yt++;return this[e]=!0,e}}),x.ajaxPrefilter("json jsonp",function(t,n,r){var i,o,s,a=t.jsonp!==!1&&(dn.test(t.url)?"url":"string"==typeof t.data&&!(t.contentType||"").indexOf("application/x-www-form-urlencoded")&&dn.test(t.data)&&"data");return a||"jsonp"===t.dataTypes[0]?(i=t.jsonpCallback=x.isFunction(t.jsonpCallback)?t.jsonpCallback():t.jsonpCallback,a?t[a]=t[a].replace(dn,"$1"+i):t.jsonp!==!1&&(t.url+=(Vt.test(t.url)?"&":"?")+t.jsonp+"="+i),t.converters["script json"]=function(){return s||x.error(i+" was not called"),s[0]},t.dataTypes[0]="json",o=e[i],e[i]=function(){s=arguments},r.always(function(){e[i]=o,t[i]&&(t.jsonpCallback=n.jsonpCallback,hn.push(i)),s&&x.isFunction(o)&&o(s[0]),s=o=undefined}),"script"):undefined}),x.ajaxSettings.xhr=function(){try{return new XMLHttpRequest}catch(e){}};var gn=x.ajaxSettings.xhr(),mn={0:200,1223:204},yn=0,vn={};e.ActiveXObject&&x(e).on("unload",function(){for(var e in vn)vn[e]();vn=undefined}),x.support.cors=!!gn&&"withCredentials"in gn,x.support.ajax=gn=!!gn,x.ajaxTransport(function(e){var t;return x.support.cors||gn&&!e.crossDomain?{send:function(n,r){var i,o,s=e.xhr();if(s.open(e.type,e.url,e.async,e.username,e.password),e.xhrFields)for(i in e.xhrFields)s[i]=e.xhrFields[i];e.mimeType&&s.overrideMimeType&&s.overrideMimeType(e.mimeType),e.crossDomain||n["X-Requested-With"]||(n["X-Requested-With"]="XMLHttpRequest");for(i in n)s.setRequestHeader(i,n[i]);t=function(e){return function(){t&&(delete vn[o],t=s.onload=s.onerror=null,"abort"===e?s.abort():"error"===e?r(s.status||404,s.statusText):r(mn[s.status]||s.status,s.statusText,"string"==typeof s.responseText?{text:s.responseText}:undefined,s.getAllResponseHeaders()))}},s.onload=t(),s.onerror=t("error"),t=vn[o=yn++]=t("abort"),s.send(e.hasContent&&e.data||null)},abort:function(){t&&t()}}:undefined});var xn,bn,wn=/^(?:toggle|show|hide)$/,Tn=RegExp("^(?:([+-])=|)("+b+")([a-z%]*)$","i"),Cn=/queueHooks$/,kn=[An],Nn={"*":[function(e,t){var n=this.createTween(e,t),r=n.cur(),i=Tn.exec(t),o=i&&i[3]||(x.cssNumber[e]?"":"px"),s=(x.cssNumber[e]||"px"!==o&&+r)&&Tn.exec(x.css(n.elem,e)),a=1,u=20;if(s&&s[3]!==o){o=o||s[3],i=i||[],s=+r||1;do a=a||".5",s/=a,x.style(n.elem,e,s+o);while(a!==(a=n.cur()/r)&&1!==a&&--u)}return i&&(s=n.start=+s||+r||0,n.unit=o,n.end=i[1]?s+(i[1]+1)*i[2]:+i[2]),n}]};function En(){return setTimeout(function(){xn=undefined}),xn=x.now()}function Sn(e,t,n){var r,i=(Nn[t]||[]).concat(Nn["*"]),o=0,s=i.length;for(;s>o;o++)if(r=i[o].call(n,t,e))return r}function jn(e,t,n){var r,i,o=0,s=kn.length,a=x.Deferred().always(function(){delete u.elem}),u=function(){if(i)return!1;var t=xn||En(),n=Math.max(0,l.startTime+l.duration-t),r=n/l.duration||0,o=1-r,s=0,u=l.tweens.length;for(;u>s;s++)l.tweens[s].run(o);return a.notifyWith(e,[l,o,n]),1>o&&u?n:(a.resolveWith(e,[l]),!1)},l=a.promise({elem:e,props:x.extend({},t),opts:x.extend(!0,{specialEasing:{}},n),originalProperties:t,originalOptions:n,startTime:xn||En(),duration:n.duration,tweens:[],createTween:function(t,n){var r=x.Tween(e,l.opts,t,n,l.opts.specialEasing[t]||l.opts.easing);return l.tweens.push(r),r},stop:function(t){var n=0,r=t?l.tweens.length:0;if(i)return this;for(i=!0;r>n;n++)l.tweens[n].run(1);return t?a.resolveWith(e,[l,t]):a.rejectWith(e,[l,t]),this}}),c=l.props;for(Dn(c,l.opts.specialEasing);s>o;o++)if(r=kn[o].call(l,e,c,l.opts))return r;return x.map(c,Sn,l),x.isFunction(l.opts.start)&&l.opts.start.call(e,l),x.fx.timer(x.extend(u,{elem:e,anim:l,queue:l.opts.queue})),l.progress(l.opts.progress).done(l.opts.done,l.opts.complete).fail(l.opts.fail).always(l.opts.always)}function Dn(e,t){var n,r,i,o,s;for(n in e)if(r=x.camelCase(n),i=t[r],o=e[n],x.isArray(o)&&(i=o[1],o=e[n]=o[0]),n!==r&&(e[r]=o,delete e[n]),s=x.cssHooks[r],s&&"expand"in s){o=s.expand(o),delete e[r];for(n in o)n in e||(e[n]=o[n],t[n]=i)}else t[r]=i}x.Animation=x.extend(jn,{tweener:function(e,t){x.isFunction(e)?(t=e,e=["*"]):e=e.split(" ");var n,r=0,i=e.length;for(;i>r;r++)n=e[r],Nn[n]=Nn[n]||[],Nn[n].unshift(t)},prefilter:function(e,t){t?kn.unshift(e):kn.push(e)}});function An(e,t,n){var r,i,o,s,a,u,l=this,c={},p=e.style,f=e.nodeType&&Lt(e),h=q.get(e,"fxshow");n.queue||(a=x._queueHooks(e,"fx"),null==a.unqueued&&(a.unqueued=0,u=a.empty.fire,a.empty.fire=function(){a.unqueued||u()}),a.unqueued++,l.always(function(){l.always(function(){a.unqueued--,x.queue(e,"fx").length||a.empty.fire()})})),1===e.nodeType&&("height"in t||"width"in t)&&(n.overflow=[p.overflow,p.overflowX,p.overflowY],"inline"===x.css(e,"display")&&"none"===x.css(e,"float")&&(p.display="inline-block")),n.overflow&&(p.overflow="hidden",l.always(function(){p.overflow=n.overflow[0],p.overflowX=n.overflow[1],p.overflowY=n.overflow[2]}));for(r in t)if(i=t[r],wn.exec(i)){if(delete t[r],o=o||"toggle"===i,i===(f?"hide":"show")){if("show"!==i||!h||h[r]===undefined)continue;f=!0}c[r]=h&&h[r]||x.style(e,r)}if(!x.isEmptyObject(c)){h?"hidden"in h&&(f=h.hidden):h=q.access(e,"fxshow",{}),o&&(h.hidden=!f),f?x(e).show():l.done(function(){x(e).hide()}),l.done(function(){var t;q.remove(e,"fxshow");for(t in c)x.style(e,t,c[t])});for(r in c)s=Sn(f?h[r]:0,r,l),r in h||(h[r]=s.start,f&&(s.end=s.start,s.start="width"===r||"height"===r?1:0))}}function Ln(e,t,n,r,i){return new Ln.prototype.init(e,t,n,r,i)}x.Tween=Ln,Ln.prototype={constructor:Ln,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||"swing",this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(x.cssNumber[n]?"":"px")},cur:function(){var e=Ln.propHooks[this.prop];return e&&e.get?e.get(this):Ln.propHooks._default.get(this)},run:function(e){var t,n=Ln.propHooks[this.prop];return this.pos=t=this.options.duration?x.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):Ln.propHooks._default.set(this),this}},Ln.prototype.init.prototype=Ln.prototype,Ln.propHooks={_default:{get:function(e){var t;return null==e.elem[e.prop]||e.elem.style&&null!=e.elem.style[e.prop]?(t=x.css(e.elem,e.prop,""),t&&"auto"!==t?t:0):e.elem[e.prop]},set:function(e){x.fx.step[e.prop]?x.fx.step[e.prop](e):e.elem.style&&(null!=e.elem.style[x.cssProps[e.prop]]||x.cssHooks[e.prop])?x.style(e.elem,e.prop,e.now+e.unit):e.elem[e.prop]=e.now}}},Ln.propHooks.scrollTop=Ln.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},x.each(["toggle","show","hide"],function(e,t){var n=x.fn[t];x.fn[t]=function(e,r,i){return null==e||"boolean"==typeof e?n.apply(this,arguments):this.animate(qn(t,!0),e,r,i)}}),x.fn.extend({fadeTo:function(e,t,n,r){return this.filter(Lt).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(e,t,n,r){var i=x.isEmptyObject(e),o=x.speed(t,n,r),s=function(){var t=jn(this,x.extend({},e),o);(i||q.get(this,"finish"))&&t.stop(!0)};return s.finish=s,i||o.queue===!1?this.each(s):this.queue(o.queue,s)},stop:function(e,t,n){var r=function(e){var t=e.stop;delete e.stop,t(n)};return"string"!=typeof e&&(n=t,t=e,e=undefined),t&&e!==!1&&this.queue(e||"fx",[]),this.each(function(){var t=!0,i=null!=e&&e+"queueHooks",o=x.timers,s=q.get(this);if(i)s[i]&&s[i].stop&&r(s[i]);else for(i in s)s[i]&&s[i].stop&&Cn.test(i)&&r(s[i]);for(i=o.length;i--;)o[i].elem!==this||null!=e&&o[i].queue!==e||(o[i].anim.stop(n),t=!1,o.splice(i,1));(t||!n)&&x.dequeue(this,e)})},finish:function(e){return e!==!1&&(e=e||"fx"),this.each(function(){var t,n=q.get(this),r=n[e+"queue"],i=n[e+"queueHooks"],o=x.timers,s=r?r.length:0;for(n.finish=!0,x.queue(this,e,[]),i&&i.stop&&i.stop.call(this,!0),t=o.length;t--;)o[t].elem===this&&o[t].queue===e&&(o[t].anim.stop(!0),o.splice(t,1));for(t=0;s>t;t++)r[t]&&r[t].finish&&r[t].finish.call(this);delete n.finish})}});function qn(e,t){var n,r={height:e},i=0;for(t=t?1:0;4>i;i+=2-t)n=jt[i],r["margin"+n]=r["padding"+n]=e;return t&&(r.opacity=r.width=e),r}x.each({slideDown:qn("show"),slideUp:qn("hide"),slideToggle:qn("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,t){x.fn[e]=function(e,n,r){return this.animate(t,e,n,r)}}),x.speed=function(e,t,n){var r=e&&"object"==typeof e?x.extend({},e):{complete:n||!n&&t||x.isFunction(e)&&e,duration:e,easing:n&&t||t&&!x.isFunction(t)&&t};return r.duration=x.fx.off?0:"number"==typeof r.duration?r.duration:r.duration in x.fx.speeds?x.fx.speeds[r.duration]:x.fx.speeds._default,(null==r.queue||r.queue===!0)&&(r.queue="fx"),r.old=r.complete,r.complete=function(){x.isFunction(r.old)&&r.old.call(this),r.queue&&x.dequeue(this,r.queue)},r},x.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2}},x.timers=[],x.fx=Ln.prototype.init,x.fx.tick=function(){var e,t=x.timers,n=0;for(xn=x.now();t.length>n;n++)e=t[n],e()||t[n]!==e||t.splice(n--,1);t.length||x.fx.stop(),xn=undefined},x.fx.timer=function(e){e()&&x.timers.push(e)&&x.fx.start()},x.fx.interval=13,x.fx.start=function(){bn||(bn=setInterval(x.fx.tick,x.fx.interval))},x.fx.stop=function(){clearInterval(bn),bn=null},x.fx.speeds={slow:600,fast:200,_default:400},x.fx.step={},x.expr&&x.expr.filters&&(x.expr.filters.animated=function(e){return x.grep(x.timers,function(t){return e===t.elem}).length}),x.fn.offset=function(e){if(arguments.length)return e===undefined?this:this.each(function(t){x.offset.setOffset(this,e,t)});var t,n,i=this[0],o={top:0,left:0},s=i&&i.ownerDocument;if(s)return t=s.documentElement,x.contains(t,i)?(typeof i.getBoundingClientRect!==r&&(o=i.getBoundingClientRect()),n=Hn(s),{top:o.top+n.pageYOffset-t.clientTop,left:o.left+n.pageXOffset-t.clientLeft}):o},x.offset={setOffset:function(e,t,n){var r,i,o,s,a,u,l,c=x.css(e,"position"),p=x(e),f={};"static"===c&&(e.style.position="relative"),a=p.offset(),o=x.css(e,"top"),u=x.css(e,"left"),l=("absolute"===c||"fixed"===c)&&(o+u).indexOf("auto")>-1,l?(r=p.position(),s=r.top,i=r.left):(s=parseFloat(o)||0,i=parseFloat(u)||0),x.isFunction(t)&&(t=t.call(e,n,a)),null!=t.top&&(f.top=t.top-a.top+s),null!=t.left&&(f.left=t.left-a.left+i),"using"in t?t.using.call(e,f):p.css(f)}},x.fn.extend({position:function(){if(this[0]){var e,t,n=this[0],r={top:0,left:0};return"fixed"===x.css(n,"position")?t=n.getBoundingClientRect():(e=this.offsetParent(),t=this.offset(),x.nodeName(e[0],"html")||(r=e.offset()),r.top+=x.css(e[0],"borderTopWidth",!0),r.left+=x.css(e[0],"borderLeftWidth",!0)),{top:t.top-r.top-x.css(n,"marginTop",!0),left:t.left-r.left-x.css(n,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent||s;while(e&&!x.nodeName(e,"html")&&"static"===x.css(e,"position"))e=e.offsetParent;return e||s})}}),x.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,n){var r="pageYOffset"===n;x.fn[t]=function(i){return x.access(this,function(t,i,o){var s=Hn(t);return o===undefined?s?s[n]:t[i]:(s?s.scrollTo(r?e.pageXOffset:o,r?o:e.pageYOffset):t[i]=o,undefined)},t,i,arguments.length,null)}});function Hn(e){return x.isWindow(e)?e:9===e.nodeType&&e.defaultView}x.each({Height:"height",Width:"width"},function(e,t){x.each({padding:"inner"+e,content:t,"":"outer"+e},function(n,r){x.fn[r]=function(r,i){var o=arguments.length&&(n||"boolean"!=typeof r),s=n||(r===!0||i===!0?"margin":"border");return x.access(this,function(t,n,r){var i;return x.isWindow(t)?t.document.documentElement["client"+e]:9===t.nodeType?(i=t.documentElement,Math.max(t.body["scroll"+e],i["scroll"+e],t.body["offset"+e],i["offset"+e],i["client"+e])):r===undefined?x.css(t,n,s):x.style(t,n,r,s)},t,o?r:undefined,o,null)}})}),x.fn.size=function(){return this.length},x.fn.andSelf=x.fn.addBack,"object"==typeof module&&module&&"object"==typeof module.exports?module.exports=x:"function"==typeof define&&define.amd&&define("jquery",[],function(){return x}),"object"==typeof e&&"object"==typeof e.document&&(e.jQuery=e.$=x)})(window);
\ No newline at end of file
-- 
GitLab


From ef4eba6ad395ef51d355f2d5a1cb137e8e8f97a2 Mon Sep 17 00:00:00 2001
From: dewitast <dewitast20@gmail.com>
Date: Thu, 8 Feb 2018 04:29:58 +0700
Subject: [PATCH 06/19] change firebase lib

---
 .../Messaging/view/frontend/layout/messaging_index_index.xml    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/code/Magento/Messaging/view/frontend/layout/messaging_index_index.xml b/app/code/Magento/Messaging/view/frontend/layout/messaging_index_index.xml
index 09125c78958..104d28756cc 100644
--- a/app/code/Magento/Messaging/view/frontend/layout/messaging_index_index.xml
+++ b/app/code/Magento/Messaging/view/frontend/layout/messaging_index_index.xml
@@ -3,7 +3,7 @@
 		<title>Messaging</title>
 		<css src="Magento_Messaging::css/chat.css" />
 		<script src="Magento_Messaging::js/chat.js" />
-		<script src="Magento_Messaging::js/firebaselib.js" />
+		<script src="https://www.gstatic.com/firebasejs/4.6.2/firebase.js"></script>
 		<script src="Magento_Messaging::js/firebase.js" />
 	</head>
     <body>
-- 
GitLab


From 493f8688ee758e1acb2808e983c8612c93e1fed1 Mon Sep 17 00:00:00 2001
From: sutantowilliam <willywilliamss97@gmail.com>
Date: Thu, 8 Feb 2018 09:30:27 +0700
Subject: [PATCH 07/19] change chatlist.php firebase only javascript

---
 MessageSystem/chatlist.php | 82 ++++++++++++++++++++------------------
 MessageSystem/chatroom.php | 33 ++++++++++-----
 2 files changed, 66 insertions(+), 49 deletions(-)
 mode change 100755 => 100644 MessageSystem/chatlist.php

diff --git a/MessageSystem/chatlist.php b/MessageSystem/chatlist.php
old mode 100755
new mode 100644
index c1b0d141dc4..19ffeeb0f71
--- a/MessageSystem/chatlist.php
+++ b/MessageSystem/chatlist.php
@@ -2,58 +2,64 @@
 <html>
 <head>
   	<title>Title</title>
-	 <script src='http://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js'></script>
+	<script src='http://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js'></script>
 	<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
-	<script>
-		var chatlistbox = angular.module('chatlistbox',[]);
-		chatlistbox.controller('controller', ['$scope', function ($scope) {
-				$scope.chatrooms = [];
-				var room = new Object();
-				room.username = "Dewita Sonya";
-				room.lastmessage = "iya itu barangnya bagus banget, udah pake lama tetep awet";
-				$scope.chatrooms.push(room);
-				var room2 = new Object();
-				room2.username = "Mico mico";
-				room2.lastmessage = "micomicomico barangnya oke punya, ukuran juga pas";
-				$scope.chatrooms.push(room2);
-				var room3 = new Object();
-				room3.username = "Albertus Djauhari";
-				room3.lastmessage = "jangan dibel itumah barang palsu, kualitasnya jelek ";
-				$scope.chatrooms.push(room3);
-				var room4 = new Object();
-				room4.username = "William";
-				room4.lastmessage = "kskskso sajsa sakjsk as akjka dkjs kfasjfssak fjsaf";
-				$scope.chatrooms.push(room4);
-	
-	  }]);
-	  
-								
-
-
-  </script>
+	<script src="https://www.gstatic.com/firebasejs/4.6.2/firebase.js"></script>
+	<script src="firebase-conf.js"></script>
+
   <link rel="stylesheet" href="chat.css">
 </head>
-<body ng-app="chatlistbox" ng-controller="controller">
+<body >
 <div class="box" >
 	<div class = "chat-title">
 		<span class="name">Chats</span>
 	</div>
 	<div class = "chat-search">
-		<form ng-submit="submit1()">
+		<form >
             <input type="text" name="chattext" placeholder="Search name" class="search-name">
             <input type="submit" name="search" value="Cari" class="search-button">
         </form>
 	</div>
-	<div class="chat-list" ng-repeat="chatroom in chatrooms">
-		<div class="chatroom-item">
-			<div class="chatroom-username">
-				<span>{{chatroom.username}}</span>
-			<div class="chatroom-lastmessage">
-				<span>{{chatroom.lastmessage}}</span>
-			</div>
-		</div>
+	<div id="chatlist" class="chat-list">
+		<!-- <div class="chatroom-item">
+		</div> -->
 	</div>
 </div>
+	<script>
+	var startListening = function() {
+		console.log("startListening");
+        firebase.database().ref().on('child_added', function(snapshot) {
+            var chatrooms = snapshot.val();
+            
+            if (chatrooms.sender=="person1"){
+            	console.log("yeay");
+	            var chatroom_item = document.createElement("div");
+	            chatroom_item.classList.add('chatroom-item');
+
+	            var chatroom_username = document.createElement("div");
+	            chatroom_username.classList.add('chatroom-username');
+
+	            var chatroom_lastmessage = document.createElement("div");
+	            chatroom_lastmessage.classList.add('chatroom-lastmessage');
+
+	            var chatroom_username_span = document.createElement("span");
+	            chatroom_username_span.textContent = chatrooms.receiver;
+	            chatroom_username.appendChild(chatroom_username_span);
+	            var chatroom_lastmessage_span = document.createElement("span");
+	            chatroom_lastmessage_span.textContent = chatrooms.message;
+	            chatroom_lastmessage.appendChild(chatroom_lastmessage_span);
+
+	            chatroom_item.appendChild(chatroom_username);
+				chatroom_item.appendChild(chatroom_lastmessage);
+	            var chatlist = document.getElementById("chatlist");
+	           
+            	chatlist.appendChild(chatroom_item);
+            } 
+        });
+    }
+    startListening();
+
+  	</script>
 </body>
 </html>
 
diff --git a/MessageSystem/chatroom.php b/MessageSystem/chatroom.php
index 08f2f2103ce..8c42204740b 100755
--- a/MessageSystem/chatroom.php
+++ b/MessageSystem/chatroom.php
@@ -18,7 +18,8 @@
         </div>
         <div class="chat-input">
             <div>
-                <input id="username" type="hidden" value="person1">
+                <input id="sender" type="hidden" value="person1">
+                <input id="receiver" type="hidden" value="person2">
                 <input id="message" type="text" name="chattext" class="message-content">
                 <input id="send" type="submit" class="send-button" onclick="send()">
             </div>
@@ -26,6 +27,7 @@
     </div>
 </div>
 <!-- Bagian ini cuma buat test front end, yang dipake yg atas aja -->
+<!-- yang bawah emg ga diatur dgn benar cuma buat nambahan chat -->
 <div class="box" >
 <div class = "chat-title">
     <span class="name">Person 1 Name</span>
@@ -35,7 +37,8 @@
     </div>
     <div class="chat-input">
         <div>
-            <input id="username2" type="hidden" value="person2">
+            <input id="sender2" type="hidden" value="person2">
+            <input id="receiver2" type="hidden" value="person1">
             <input id="message2" type="text" name="chattext" class="message-content">
             <input id="send2" type="submit" class="send-button" onclick="send2()">
         </div>
@@ -45,21 +48,25 @@
 <script>
   function send() {
       console.log("masuk");
-        var username = document.getElementById("username").value;
+        var sender = document.getElementById("sender").value;
+        var receiver = document.getElementById("receiver").value;
         var message = document.getElementById("message").value;
         firebase.database().ref().push().set({
-            username: username,
+            sender: sender,
+            receiver: receiver,
             message: message
         });
         document.getElementById("message").value = "";
   }
   function send2() {
       console.log("masuk");
-        var username = document.getElementById("username2").value;
-        var message = document.getElementById("message2").value;
+        var sender2 = document.getElementById("sender2").value;
+        var receiver2 = document.getElementById("receiver2").value;
+        var message2 = document.getElementById("message2").value;
         firebase.database().ref().push().set({
-            username: username,
-            message: message
+            sender: sender2,
+            receiver: receiver2,
+            message: message2
         });
         document.getElementById("message2").value = "";
   }
@@ -71,12 +78,16 @@
             var msgTextElement = document.createElement("p");
             msgTextElement.textContent = msg.message;
     
-            if (msg.username=="person1"){
+            if ((msg.sender=="person1")&&(msg.receiver=="person2")){
                 msgTextElement.classList.add('sendermessage');
-            } else {
+            } else if ((msg.sender=="person2")&&(msg.receiver=="person1")) {
                 msgTextElement.classList.add('receivemessage');
+            } else {
+                
             }
-            document.getElementById("chatbox").appendChild(msgTextElement);
+            var chatbox = document.getElementById("chatbox");
+            chatbox.appendChild(msgTextElement);
+            chatbox.scrollTop=chatbox.scrollHeight;
         });
     }
     startListening();
-- 
GitLab


From 659d582ed23f57f5e0dd531087166038d2459974 Mon Sep 17 00:00:00 2001
From: Albertdj <albertusdjauharidjohan@gmail.com>
Date: Thu, 8 Feb 2018 11:31:16 +0700
Subject: [PATCH 08/19] Add tawk module

---
 .../Block/Adminhtml/SelectWidgetBlock.php     | 173 +++++++++
 app/code/Tawk/Widget/Block/Embed.php          | 153 ++++++++
 .../Adminhtml/GoToDashboard/Index.php         |  35 ++
 .../Adminhtml/RemoveWidget/Index.php          |  46 +++
 .../Controller/Adminhtml/SaveWidget/Index.php |  67 ++++
 .../Adminhtml/SelectWidget/Index.php          |  42 +++
 .../Adminhtml/StoreWidget/Index.php           |  61 ++++
 .../Widget/Model/ResourceModel/Widget.php     |  28 ++
 .../Model/ResourceModel/Widget/Collection.php |  29 ++
 app/code/Tawk/Widget/Model/Widget.php         |  36 ++
 app/code/Tawk/Widget/README.md                |   5 +
 app/code/Tawk/Widget/Setup/InstallSchema.php  |  88 +++++
 app/code/Tawk/Widget/composer.json            |  18 +
 app/code/Tawk/Widget/etc/acl.xml              |  33 ++
 app/code/Tawk/Widget/etc/adminhtml/menu.xml   |  28 ++
 app/code/Tawk/Widget/etc/adminhtml/routes.xml |  28 ++
 app/code/Tawk/Widget/etc/module.xml           |  24 ++
 app/code/Tawk/Widget/registration.php         |  23 ++
 .../layout/widget_selectwidget_index.xml      |  33 ++
 .../adminhtml/templates/selectwidget.phtml    | 338 ++++++++++++++++++
 .../Widget/view/frontend/layout/default.xml   |  28 ++
 .../view/frontend/templates/embed.phtml       |  31 ++
 22 files changed, 1347 insertions(+)
 create mode 100644 app/code/Tawk/Widget/Block/Adminhtml/SelectWidgetBlock.php
 create mode 100644 app/code/Tawk/Widget/Block/Embed.php
 create mode 100644 app/code/Tawk/Widget/Controller/Adminhtml/GoToDashboard/Index.php
 create mode 100644 app/code/Tawk/Widget/Controller/Adminhtml/RemoveWidget/Index.php
 create mode 100644 app/code/Tawk/Widget/Controller/Adminhtml/SaveWidget/Index.php
 create mode 100644 app/code/Tawk/Widget/Controller/Adminhtml/SelectWidget/Index.php
 create mode 100644 app/code/Tawk/Widget/Controller/Adminhtml/StoreWidget/Index.php
 create mode 100644 app/code/Tawk/Widget/Model/ResourceModel/Widget.php
 create mode 100644 app/code/Tawk/Widget/Model/ResourceModel/Widget/Collection.php
 create mode 100644 app/code/Tawk/Widget/Model/Widget.php
 create mode 100644 app/code/Tawk/Widget/README.md
 create mode 100644 app/code/Tawk/Widget/Setup/InstallSchema.php
 create mode 100644 app/code/Tawk/Widget/composer.json
 create mode 100644 app/code/Tawk/Widget/etc/acl.xml
 create mode 100644 app/code/Tawk/Widget/etc/adminhtml/menu.xml
 create mode 100644 app/code/Tawk/Widget/etc/adminhtml/routes.xml
 create mode 100644 app/code/Tawk/Widget/etc/module.xml
 create mode 100644 app/code/Tawk/Widget/registration.php
 create mode 100644 app/code/Tawk/Widget/view/adminhtml/layout/widget_selectwidget_index.xml
 create mode 100644 app/code/Tawk/Widget/view/adminhtml/templates/selectwidget.phtml
 create mode 100644 app/code/Tawk/Widget/view/frontend/layout/default.xml
 create mode 100644 app/code/Tawk/Widget/view/frontend/templates/embed.phtml

diff --git a/app/code/Tawk/Widget/Block/Adminhtml/SelectWidgetBlock.php b/app/code/Tawk/Widget/Block/Adminhtml/SelectWidgetBlock.php
new file mode 100644
index 00000000000..6ed479fb3d4
--- /dev/null
+++ b/app/code/Tawk/Widget/Block/Adminhtml/SelectWidgetBlock.php
@@ -0,0 +1,173 @@
+<?php
+/**
+ * Tawk.to
+ *
+ * NOTICE OF LICENSE
+ *
+ * This source file is subject to the Open Software License (OSL 3.0)
+ * that is bundled with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://opensource.org/licenses/osl-3.0.php
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to support@tawk.to so we can send you a copy immediately.
+ *
+ * @copyright   Copyright (c) 2016 Tawk.to
+ * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
+ */
+
+namespace Tawk\Widget\Block\Adminhtml;
+
+use Magento\Backend\Block\Template;
+use Tawk\Widget\Model\WidgetFactory;
+
+class SelectWidgetBlock extends Template
+{
+    const BASE_URL = 'https://plugins.tawk.to';
+    protected $logger; 
+    protected $modelWidgetFactory;
+
+    public function __construct(Template\Context $context, WidgetFactory $modelFactory, array $data = []) 
+    {
+        parent::__construct($context, $data);
+        $this->logger  = $context->getLogger();
+        $this->modelWidgetFactory = $modelFactory;
+    }
+
+    function mainurl(){
+        if(isset($_SERVER['HTTPS'])){
+            $protocol = ($_SERVER['HTTPS'] && $_SERVER['HTTPS'] != "off") ? "https" : "http";
+        }
+        else{
+            $protocol = 'http';
+        }
+        return $protocol . "://" . $_SERVER['HTTP_HOST'];
+    }
+    
+    public function getWebSiteoptions(){
+        $sdstr = '';
+
+        $websites = $this->_storeManager->getWebsites();
+        #$sdstr .= '<option value="0">Select Store</option>';
+        foreach ($websites as $website) {
+            $sdstr .= '<option value="'.$website->getId().'">'.$website->getName().'</option>';
+        }
+        return $sdstr;
+    }
+
+    public function _prepareLayout()
+    {
+        return parent::_prepareLayout();
+    }
+
+    public function getIframeUrl()
+    {
+        /*
+        return $this->getBaseUrl()
+            .'/generic/widgets'
+            .'?parentDomain='.$this->_storeManager->getStore()->getBaseUrl(\Magento\Framework\UrlInterface::URL_TYPE_WEB)
+            .'&selectType=singleIdSelect'
+            .'&selectText=Store';
+        */
+        
+        return $this->getBaseUrl().'/generic/widgets'
+                .'?currentWidgetId=&currentPageId=&transparentBackground=1'
+                .'&parentDomain='.$this->mainurl();
+
+    }
+
+    public function getBaseUrl() {
+        return self::BASE_URL;
+    }
+
+    public function getHierarchy() {
+        $websites = $this->_storeManager->getWebsites();
+
+        $h = array();
+
+        $h[] = array(
+            'id'      => 'global',
+            'name'    => 'Global',
+            'childs'  => array(),
+            'current' => $this->getCurrentValuesFor('global')
+        );
+
+        foreach ($websites as $website) {
+            $parsed = array();
+
+            $parsed['id']      = $website->getId();
+            $parsed['name']    = $website->getName();
+            $parsed['childs']  = $this->parseGroups($website->getGroups());
+            $parsed['current'] = $this->getCurrentValuesFor($website->getId());
+
+            $h[] = $parsed;
+        }
+
+        return $h;
+    }
+
+    public function getCollection(){
+        return $this->modelWidgetFactory->create()->getCollection();
+    }
+
+    public function getFormAction() {
+        return $this->getUrl('widget/savewidget', ['_secure' => true]);
+    }
+
+    public function getRemoveUrl() {
+        return $this->getUrl('widget/removewidget', ['_secure' => true]);
+    }
+
+    public function getStoreWidget(){
+        return $this->getUrl('widget/storewidget', ['_secure' => true]);
+    }
+
+    private function parseGroups($groups) {
+        $return = array();
+
+        foreach ($groups as $group) {
+            $parsed = array();
+
+            $parsed['id']      = $group->getWebsiteId().'_'.$group->getId();
+            $parsed['name']    = $group->getName();
+            $parsed['childs']  = $this->parseStores($group->getStores());
+            $parsed['current'] = $this->getCurrentValuesFor($parsed['id']);
+
+            $return[] = $parsed;
+        }
+
+        return $return;
+    }
+
+    private function parseStores($stores) {
+        $return = array();
+
+        foreach ($stores as $store) {
+            $parsed = array();
+
+            $parsed['id']      = $store->getWebsiteId().'_'.$store->getGroupId().'_'.$store->getId();
+            $parsed['name']    = $store->getName();
+            $parsed['childs']  = array();
+            $parsed['current'] = $this->getCurrentValuesFor($parsed['id']);
+
+            $return[] = $parsed;
+        }
+
+        return $return;
+    }
+
+    private function getCurrentValuesFor($id) {
+        $widgets = $this->getCollection();
+
+        foreach ($widgets as $widget) {
+            if($widget->getForStoreId() === $id) {
+                return array(
+                    'pageId'   => $widget->getPageId(),
+                    'widgetId' => $widget->getWidgetId()
+                );
+            }
+        }
+
+        return array();
+    }
+}
\ No newline at end of file
diff --git a/app/code/Tawk/Widget/Block/Embed.php b/app/code/Tawk/Widget/Block/Embed.php
new file mode 100644
index 00000000000..2456a0110b4
--- /dev/null
+++ b/app/code/Tawk/Widget/Block/Embed.php
@@ -0,0 +1,153 @@
+<?php
+/**
+ * Tawk.to
+ *
+ * NOTICE OF LICENSE
+ *
+ * This source file is subject to the Open Software License (OSL 3.0)
+ * that is bundled with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://opensource.org/licenses/osl-3.0.php
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to support@tawk.to so we can send you a copy immediately.
+ *
+ * @copyright   Copyright (c) 2016 Tawk.to
+ * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
+ */
+
+namespace Tawk\Widget\Block;
+
+use Magento\Framework\View\Element\Template;
+use Tawk\Widget\Model\WidgetFactory;
+
+class Embed extends Template
+{
+	const TAWK_EMBED_URL = 'https://embed.tawk.to';
+	protected $modelWidgetFactory;
+	protected $logger;
+	protected $model;
+	protected $storeManager;
+
+	public function __construct(WidgetFactory $modelFactory, Template\Context $context, array $data = [])
+	{
+		parent::__construct($context, $data);
+		$this->modelWidgetFactory = $modelFactory;
+		$this->storeManager       = $context->getStoreManager();
+		$this->logger             = $context->getLogger();
+		$this->model              = $this->getWidgetModel();
+	}
+
+	public function getEmbedUrl()
+	{
+		return self::TAWK_EMBED_URL.'/'.$this->model->getPageId().'/'.$this->model->getWidgetId();
+	}
+
+	private function getWidgetModel()
+	{
+		$store = $this->storeManager->getStore();
+
+		$storeId   = $store->getId();
+		$groupId   = $store->getGroup()->getId();
+		$websiteId = $store->getWebsite()->getId();
+
+		$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
+
+		//order in which we select widget
+		$ids = array($websiteId.'_'.$groupId.'_'.$storeId, $websiteId.'_'.$groupId, $websiteId, 'global');
+
+		foreach ($ids as $id) {
+			$tmpModel = $objectManager->get('Tawk\Widget\Model\Widget')->loadByForStoreId($id);
+
+			if($tmpModel->hasId()) {
+				return $tmpModel;
+			}
+		}
+
+		return null;
+	}
+
+	protected function _toHtml()
+	{
+		if(is_null($this->model)) {
+			return '';
+		}
+
+		$alwaysdisplay = $this->model->getAlwaysDisplay();
+		$donotdisplay = $this->model->getDoNotDisplay();
+		$display = true;
+
+		if($alwaysdisplay == 1){
+			$display = true;
+			
+			$excluded_url_list = $this->model->getExcludeUrl();
+
+			if(strlen( $excluded_url_list ) > 0 )
+			{
+				$current_url = $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"];
+				$current_url = urldecode($current_url);
+
+				$ssl      = ( ! empty( $_SERVER['HTTPS'] ) && $_SERVER['HTTPS'] == 'on' );
+			    $sp       = strtolower( $_SERVER['SERVER_PROTOCOL'] );
+			    $protocol = substr( $sp, 0, strpos( $sp, '/' ) ) . ( ( $ssl ) ? 's' : '' );
+
+			    $current_url = $protocol.'://'.$current_url;
+			    $current_url = strtolower($current_url);
+
+			    #$exclude_url = trim( strtolower( $this->model->getExcludeUrl() ) );
+			    $current_url = trim( strtolower( $current_url ) );
+				
+				
+				$excluded_url_list = preg_split("/,/", $excluded_url_list);
+
+				foreach($excluded_url_list as $exclude_url)
+				{
+			    	$exclude_url = strtolower(urldecode(trim($exclude_url)));
+			    	if (strpos($current_url, $exclude_url) !== false) 
+					{
+						$display = false;
+					}
+				}
+			}
+		}else{
+			$display = false;
+		}
+
+
+		if($donotdisplay == 1){
+			$display = false;
+
+			$included_url_list = $this->model->getIncludeUrl();
+			if(strlen( $included_url_list ) > 0 )
+			{
+				$current_url = $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"];
+				$current_url = urldecode($current_url);
+
+				$ssl      = ( ! empty( $_SERVER['HTTPS'] ) && $_SERVER['HTTPS'] == 'on' );
+			    $sp       = strtolower( $_SERVER['SERVER_PROTOCOL'] );
+			    $protocol = substr( $sp, 0, strpos( $sp, '/' ) ) . ( ( $ssl ) ? 's' : '' );
+
+			    $current_url = $protocol.'://'.$current_url;
+			    $current_url = strtolower($current_url);
+
+			    $current_url = trim( strtolower( $current_url ) );
+
+				$included_url_list = preg_split("/,/", $included_url_list);
+				foreach($included_url_list as $include_url)
+				{
+			    	$exclude_url = strtolower(urldecode(trim($include_url)));
+			    	if (strpos($current_url, $include_url) !== false) 
+					{
+						$display = true;
+					}
+				}
+			}
+		}
+		
+		if($display == true){		
+			return parent::_toHtml();
+		}else{
+			return '';
+		}
+	}
+}
\ No newline at end of file
diff --git a/app/code/Tawk/Widget/Controller/Adminhtml/GoToDashboard/Index.php b/app/code/Tawk/Widget/Controller/Adminhtml/GoToDashboard/Index.php
new file mode 100644
index 00000000000..1a2e82030a0
--- /dev/null
+++ b/app/code/Tawk/Widget/Controller/Adminhtml/GoToDashboard/Index.php
@@ -0,0 +1,35 @@
+<?php
+/**
+ * Tawk.to
+ *
+ * NOTICE OF LICENSE
+ *
+ * This source file is subject to the Open Software License (OSL 3.0)
+ * that is bundled with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://opensource.org/licenses/osl-3.0.php
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to support@tawk.to so we can send you a copy immediately.
+ *
+ * @copyright   Copyright (c) 2016 Tawk.to
+ * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
+ */
+
+namespace Tawk\Widget\Controller\Adminhtml\GoToDashboard;
+
+use Magento\Framework\Controller\ResultFactory;
+
+class Index extends \Magento\Backend\App\Action
+{
+	protected function _isAllowed()
+    {
+        return $this->_authorization->isAllowed('Tawk_Widget::tawk_go_to_dashboard');
+    }
+
+    public function execute()
+    {
+        $resultRedirect = $this->resultFactory->create(ResultFactory::TYPE_REDIRECT);
+        return $resultRedirect->setUrl('https://dashboard.tawk.to/');
+    }
+}
\ No newline at end of file
diff --git a/app/code/Tawk/Widget/Controller/Adminhtml/RemoveWidget/Index.php b/app/code/Tawk/Widget/Controller/Adminhtml/RemoveWidget/Index.php
new file mode 100644
index 00000000000..b159a88e148
--- /dev/null
+++ b/app/code/Tawk/Widget/Controller/Adminhtml/RemoveWidget/Index.php
@@ -0,0 +1,46 @@
+<?php
+/**
+ * Tawk.to
+ *
+ * NOTICE OF LICENSE
+ *
+ * This source file is subject to the Open Software License (OSL 3.0)
+ * that is bundled with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://opensource.org/licenses/osl-3.0.php
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to support@tawk.to so we can send you a copy immediately.
+ *
+ * @copyright   Copyright (c) 2016 Tawk.to
+ * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
+ */
+
+namespace Tawk\Widget\Controller\Adminhtml\RemoveWidget;
+
+use Magento\Backend\App\Action\Context;
+use Magento\Framework\Controller\Result\JsonFactory;
+use Psr\Log\LoggerInterface;
+
+class Index extends \Magento\Backend\App\Action
+{
+    protected $resultJsonFactory;
+    protected $logger;
+
+    public function __construct(Context $context, JsonFactory $resultJsonFactory, LoggerInterface $logger)
+    {
+        parent::__construct($context);
+        $this->resultJsonFactory = $resultJsonFactory;
+        $this->logger = $logger;
+    }
+
+    public function execute()
+    {
+        $response = $this->resultJsonFactory->create();
+        $response->setHeader('Content-type', 'application/json');
+        $objectManager = \Magento\Framework\App\ObjectManager::getInstance();
+        $objectManager->get('Tawk\Widget\Model\Widget')->loadByForStoreId(filter_input(INPUT_GET, 'id', FILTER_SANITIZE_STRING))->delete();
+
+        return $response->setData(['success' => TRUE]);
+    }
+}
\ No newline at end of file
diff --git a/app/code/Tawk/Widget/Controller/Adminhtml/SaveWidget/Index.php b/app/code/Tawk/Widget/Controller/Adminhtml/SaveWidget/Index.php
new file mode 100644
index 00000000000..1d786b90118
--- /dev/null
+++ b/app/code/Tawk/Widget/Controller/Adminhtml/SaveWidget/Index.php
@@ -0,0 +1,67 @@
+<?php
+/**
+ * Tawk.to
+ *
+ * NOTICE OF LICENSE
+ *
+ * This source file is subject to the Open Software License (OSL 3.0)
+ * that is bundled with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://opensource.org/licenses/osl-3.0.php
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to support@tawk.to so we can send you a copy immediately.
+ *
+ * @copyright   Copyright (c) 2016 Tawk.to
+ * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
+ */
+
+namespace Tawk\Widget\Controller\Adminhtml\SaveWidget;
+
+use Magento\Framework\Controller\Result\JsonFactory;
+use Magento\Backend\App\Action\Context;
+use Psr\Log\LoggerInterface;
+
+class Index extends \Magento\Backend\App\Action
+{
+    protected $resultJsonFactory;
+    protected $logger;
+
+    public function __construct(Context $context, JsonFactory $resultJsonFactory, LoggerInterface $logger)
+    {
+        parent::__construct($context);
+        $this->resultJsonFactory = $resultJsonFactory;
+        $this->logger = $logger;
+    }
+
+    public function execute()
+    {
+        $response = $this->resultJsonFactory->create();
+        $response->setHeader('Content-type', 'application/json');
+
+        if(!is_string(filter_input(INPUT_POST, 'pageId', FILTER_SANITIZE_STRING)) || !is_string(filter_input(INPUT_POST, 'widgetId', FILTER_SANITIZE_STRING)) || !is_string(filter_input(INPUT_POST, 'id', FILTER_SANITIZE_STRING))) {
+            return $response->setData(['success' => FALSE]);
+        }
+
+        $objectManager = \Magento\Framework\App\ObjectManager::getInstance();
+        $model = $objectManager->get('Tawk\Widget\Model\Widget')->loadByForStoreId(filter_input(INPUT_POST, 'id', FILTER_SANITIZE_STRING));
+
+        if( ($_POST['pageId'] == '-1') && ($_POST['widgetId'] == '-1') ){
+
+        }else{
+            $model->setPageId(filter_input(INPUT_POST, 'pageId', FILTER_SANITIZE_STRING));
+            $model->setWidgetId(filter_input(INPUT_POST, 'widgetId', FILTER_SANITIZE_STRING));
+        }
+        $model->setForStoreId($_POST['id']);
+
+        $model->setAlwaysDisplay($_POST['alwaysdisplay']);
+        $model->setExcludeUrl($_POST['excludeurl']);
+
+        $model->setDoNotDisplay($_POST['donotdisplay']);
+        $model->setIncludeUrl($_POST['includeurl']);
+
+        $model->save();
+
+        return $response->setData(['success' => TRUE]);
+    }
+}
\ No newline at end of file
diff --git a/app/code/Tawk/Widget/Controller/Adminhtml/SelectWidget/Index.php b/app/code/Tawk/Widget/Controller/Adminhtml/SelectWidget/Index.php
new file mode 100644
index 00000000000..3ca91e255b6
--- /dev/null
+++ b/app/code/Tawk/Widget/Controller/Adminhtml/SelectWidget/Index.php
@@ -0,0 +1,42 @@
+<?php
+/**
+ * Tawk.to
+ *
+ * NOTICE OF LICENSE
+ *
+ * This source file is subject to the Open Software License (OSL 3.0)
+ * that is bundled with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://opensource.org/licenses/osl-3.0.php
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to support@tawk.to so we can send you a copy immediately.
+ *
+ * @copyright   Copyright (c) 2016 Tawk.to
+ * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
+ */
+
+namespace Tawk\Widget\Controller\Adminhtml\SelectWidget;
+
+use Magento\Backend\App\Action\Context;
+use Magento\Framework\View\Result\PageFactory;
+
+class Index extends \Magento\Backend\App\Action
+{
+    protected $resultPageFactory;
+    
+    protected function _isAllowed()
+    {
+    	return $this->_authorization->isAllowed('Tawk_Widget::tawk_choose_widget');
+    }
+
+    public function __construct(Context $context, PageFactory $resultPageFactory) {
+        parent::__construct($context);
+        $this->resultPageFactory = $resultPageFactory;
+    }
+
+    public function execute()
+    {
+        return  $resultPage = $this->resultPageFactory->create();
+    }
+}
\ No newline at end of file
diff --git a/app/code/Tawk/Widget/Controller/Adminhtml/StoreWidget/Index.php b/app/code/Tawk/Widget/Controller/Adminhtml/StoreWidget/Index.php
new file mode 100644
index 00000000000..d698d55092f
--- /dev/null
+++ b/app/code/Tawk/Widget/Controller/Adminhtml/StoreWidget/Index.php
@@ -0,0 +1,61 @@
+<?php
+/**
+ * Tawk.to
+ *
+ * NOTICE OF LICENSE
+ *
+ * This source file is subject to the Open Software License (OSL 3.0)
+ * that is bundled with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://opensource.org/licenses/osl-3.0.php
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to support@tawk.to so we can send you a copy immediately.
+ *
+ * @copyright   Copyright (c) 2016 Tawk.to
+ * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
+ */
+
+namespace Tawk\Widget\Controller\Adminhtml\StoreWidget;
+
+use Magento\Framework\Controller\Result\JsonFactory;
+use Magento\Backend\App\Action\Context;
+use Psr\Log\LoggerInterface;
+
+class Index extends \Magento\Backend\App\Action
+{
+    protected $resultJsonFactory;
+    protected $logger;
+
+    public function __construct(Context $context, JsonFactory $resultJsonFactory, LoggerInterface $logger)
+    {
+        parent::__construct($context);
+        $this->resultJsonFactory = $resultJsonFactory;
+        $this->logger = $logger;
+    }
+
+    public function execute()
+    {
+        $response = $this->resultJsonFactory->create();
+        $response->setHeader('Content-type', 'application/json');
+
+        $objectManager = \Magento\Framework\App\ObjectManager::getInstance();
+        $model = $objectManager->get('Tawk\Widget\Model\Widget')->loadByForStoreId(filter_input(INPUT_GET, 'id', FILTER_SANITIZE_STRING));
+
+        if(!$model->hasId()) {
+            $model = $objectManager->get('Tawk\Widget\Model\Widget');
+        }
+
+        $pageId = $model->getPageId();
+        $widgetId =  $model->getWidgetId();
+
+
+        $alwaysdisplay = $model->getAlwaysDisplay();
+        $excludeurl = $model->getExcludeUrl();
+
+        $donotdisplay = $model->getDoNotDisplay();
+        $includeurl = $model->getIncludeUrl();
+
+        return $response->setData(['success' => TRUE,'pageid' => $pageId,'widgetid' => $widgetId,'alwaysdisplay' => $alwaysdisplay,'excludeurl' => $excludeurl,'donotdisplay' => $donotdisplay,'includeurl' => $includeurl]);
+    }
+}
\ No newline at end of file
diff --git a/app/code/Tawk/Widget/Model/ResourceModel/Widget.php b/app/code/Tawk/Widget/Model/ResourceModel/Widget.php
new file mode 100644
index 00000000000..bbdf9ffc3db
--- /dev/null
+++ b/app/code/Tawk/Widget/Model/ResourceModel/Widget.php
@@ -0,0 +1,28 @@
+<?php
+/**
+ * Tawk.to
+ *
+ * NOTICE OF LICENSE
+ *
+ * This source file is subject to the Open Software License (OSL 3.0)
+ * that is bundled with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://opensource.org/licenses/osl-3.0.php
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to support@tawk.to so we can send you a copy immediately.
+ *
+ * @copyright   Copyright (c) 2016 Tawk.to
+ * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
+ */
+
+namespace Tawk\Widget\Model\ResourceModel;
+ 
+use \Magento\Framework\Model\ResourceModel\Db\AbstractDb;
+
+class Widget extends AbstractDb
+{
+    protected function _construct() {
+        $this->_init('tawk_widget', 'id');
+    }
+}
\ No newline at end of file
diff --git a/app/code/Tawk/Widget/Model/ResourceModel/Widget/Collection.php b/app/code/Tawk/Widget/Model/ResourceModel/Widget/Collection.php
new file mode 100644
index 00000000000..e435860739b
--- /dev/null
+++ b/app/code/Tawk/Widget/Model/ResourceModel/Widget/Collection.php
@@ -0,0 +1,29 @@
+<?php
+/**
+ * Tawk.to
+ *
+ * NOTICE OF LICENSE
+ *
+ * This source file is subject to the Open Software License (OSL 3.0)
+ * that is bundled with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://opensource.org/licenses/osl-3.0.php
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to support@tawk.to so we can send you a copy immediately.
+ *
+ * @copyright   Copyright (c) 2016 Tawk.to
+ * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
+ */
+
+namespace Tawk\Widget\Model\ResourceModel\Widget;
+ 
+use \Magento\Framework\Model\ResourceModel\Db\Collection\AbstractCollection;
+ 
+class Collection extends AbstractCollection
+{
+    protected function _construct()
+    {
+        $this->_init('Tawk\Widget\Model\Widget', 'Tawk\Widget\Model\ResourceModel\Widget');
+    }
+}
\ No newline at end of file
diff --git a/app/code/Tawk/Widget/Model/Widget.php b/app/code/Tawk/Widget/Model/Widget.php
new file mode 100644
index 00000000000..7ec4d5da938
--- /dev/null
+++ b/app/code/Tawk/Widget/Model/Widget.php
@@ -0,0 +1,36 @@
+<?php
+/**
+ * Tawk.to
+ *
+ * NOTICE OF LICENSE
+ *
+ * This source file is subject to the Open Software License (OSL 3.0)
+ * that is bundled with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://opensource.org/licenses/osl-3.0.php
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to support@tawk.to so we can send you a copy immediately.
+ *
+ * @copyright   Copyright (c) 2016 Tawk.to
+ * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
+ */
+
+namespace Tawk\Widget\Model;
+
+use \Magento\Framework\Model\AbstractModel;
+
+class Widget extends AbstractModel
+{
+	protected function _construct()
+	{
+		$this->_init('Tawk\Widget\Model\ResourceModel\Widget');
+	}
+
+	public function loadByForStoreId($id) 
+	{
+		return $this->getCollection()
+			->addFieldToFilter('for_store_id', $id)
+			->getFirstItem();
+	}
+}
\ No newline at end of file
diff --git a/app/code/Tawk/Widget/README.md b/app/code/Tawk/Widget/README.md
new file mode 100644
index 00000000000..8e8d46a3680
--- /dev/null
+++ b/app/code/Tawk/Widget/README.md
@@ -0,0 +1,5 @@
+Magento Tawk.to Live Chat Module
+
+This module adds Tawk.to Live Chat to your Magento 2 site.
+
+To install and set up your tawk.to account, please follow this documentation https://www.tawk.to/knowledgebase/plugins-and-modules/magento-2-integration/
\ No newline at end of file
diff --git a/app/code/Tawk/Widget/Setup/InstallSchema.php b/app/code/Tawk/Widget/Setup/InstallSchema.php
new file mode 100644
index 00000000000..2b93e060e0d
--- /dev/null
+++ b/app/code/Tawk/Widget/Setup/InstallSchema.php
@@ -0,0 +1,88 @@
+<?php
+/**
+ * Tawk.to
+ *
+ * NOTICE OF LICENSE
+ *
+ * This source file is subject to the Open Software License (OSL 3.0)
+ * that is bundled with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://opensource.org/licenses/osl-3.0.php
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to support@tawk.to so we can send you a copy immediately.
+ *
+ * @copyright   Copyright (c) 2016 Tawk.to
+ * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
+ */
+
+namespace Tawk\Widget\Setup;
+
+use Magento\Framework\Setup\InstallSchemaInterface;
+use Magento\Framework\Setup\SchemaSetupInterface;
+use Magento\Framework\Setup\ModuleContextInterface;
+use Magento\Framework\DB\Ddl\Table;
+
+class InstallSchema implements InstallSchemaInterface
+{
+    public function install(SchemaSetupInterface $setup, ModuleContextInterface $context)
+    {
+        $setup->startSetup();
+
+        $table = $setup->getConnection()->newTable($setup->getTable('tawk_widget'))->addColumn(
+            'id',
+            Table::TYPE_INTEGER,
+            10,
+            ['identity' => true, 'unsigned' => false, 'nullable' => false, 'primary' => true],
+            'Id'
+        )->addColumn(
+            'for_store_id',
+            Table::TYPE_TEXT,
+            50,
+            [],
+            'For store Id'
+        )->addColumn(
+            'page_id',
+            Table::TYPE_TEXT,
+            50,
+            [],
+            'Page Id'
+        )->addColumn(
+            'widget_id',
+            Table::TYPE_TEXT,
+            50,
+            [],
+            'Widget Id'
+        )->addColumn(
+            'always_display',
+            Table::TYPE_INTEGER,
+            1,
+            [],
+            'always_display'
+        )->addColumn(
+            'exclude_url',
+            Table::TYPE_TEXT,
+            255,
+            [],
+            'exclude_url'
+        )->addColumn(
+            'do_not_display',
+            Table::TYPE_INTEGER,
+            1,
+            [],
+            'do_not_display'
+        )->addColumn(
+            'include_url',
+            Table::TYPE_TEXT,
+            255,
+            [],
+            'include_url'
+        )->setComment(
+            'Tawk Widget table that makes connection between stores and widgets'
+        );
+
+        $setup->getConnection()->createTable($table);
+
+        $setup->endSetup();
+    }
+}
\ No newline at end of file
diff --git a/app/code/Tawk/Widget/composer.json b/app/code/Tawk/Widget/composer.json
new file mode 100644
index 00000000000..28835f67a8f
--- /dev/null
+++ b/app/code/Tawk/Widget/composer.json
@@ -0,0 +1,18 @@
+{
+  "name": "tawk/widget",
+  "description": "Tawk live chat widget",
+  "type": "magento2-module",
+  "version": "1.0.0",
+  "license": [
+    "OSL-3.0"
+  ],
+  "require": {
+    "php": "~5.6.0|7.0.2|7.0.4|~7.0.12"
+  },
+  "autoload": {
+    "files": [ "registration.php" ],
+    "psr-4": {
+      "Tawk\\Widget\\": ""
+    }
+  }
+}
\ No newline at end of file
diff --git a/app/code/Tawk/Widget/etc/acl.xml b/app/code/Tawk/Widget/etc/acl.xml
new file mode 100644
index 00000000000..58c8211a03f
--- /dev/null
+++ b/app/code/Tawk/Widget/etc/acl.xml
@@ -0,0 +1,33 @@
+<?xml version="1.0"?>
+
+<!--
+/**
+ * Tawk.to
+ *
+ * NOTICE OF LICENSE
+ *
+ * This source file is subject to the Open Software License (OSL 3.0)
+ * that is bundled with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://opensource.org/licenses/osl-3.0.php
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to support@tawk.to so we can send you a copy immediately.
+ *
+ * @copyright   Copyright (c) 2016 Tawk.to
+ * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
+ */
+-->
+
+<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Acl/etc/acl.xsd">
+    <acl>
+        <resources>
+            <resource id="Magento_Backend::admin">
+                <resource id="Tawk_Widget::tawk" title="Tawk.to Widget" sortOrder="10" >
+                    <resource id="Tawk_Widget::tawk_choose_widget" title="Select your widget" sortOrder="0" />
+                    <resource id="Tawk_Widget::tawk_go_to_dashboard" title="Go to dashboard" sortOrder="100" />
+                </resource>
+            </resource>
+        </resources>
+    </acl>
+</config>
\ No newline at end of file
diff --git a/app/code/Tawk/Widget/etc/adminhtml/menu.xml b/app/code/Tawk/Widget/etc/adminhtml/menu.xml
new file mode 100644
index 00000000000..692e4086aec
--- /dev/null
+++ b/app/code/Tawk/Widget/etc/adminhtml/menu.xml
@@ -0,0 +1,28 @@
+<?xml version="1.0"?>
+
+<!--
+/**
+ * Tawk.to
+ *
+ * NOTICE OF LICENSE
+ *
+ * This source file is subject to the Open Software License (OSL 3.0)
+ * that is bundled with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://opensource.org/licenses/osl-3.0.php
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to support@tawk.to so we can send you a copy immediately.
+ *
+ * @copyright   Copyright (c) 2016 Tawk.to
+ * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
+ */
+-->
+
+<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Backend:etc/menu.xsd">
+    <menu>
+	  	<add id="Tawk_Widget::tawk" title="Tawk.to Widget" module="Tawk_Widget" sortOrder="100" parent="Magento_Backend::system" resource="Tawk_Widget::tawk"/>
+	    <add id="Tawk_Widget::tawk_choose_widget" title="Select your widget" module="Tawk_Widget" sortOrder="50" parent="Tawk_Widget::tawk" action="widget/selectwidget" resource="Tawk_Widget::tawk"/>
+	    <add id="Tawk_Widget::tawk_go_to_dashboard" title="Go to dashboard" module="Tawk_Widget" sortOrder="50" parent="Tawk_Widget::tawk" action="widget/gotodashboard" resource="Tawk_Widget::tawk"/>
+    </menu>
+</config>
\ No newline at end of file
diff --git a/app/code/Tawk/Widget/etc/adminhtml/routes.xml b/app/code/Tawk/Widget/etc/adminhtml/routes.xml
new file mode 100644
index 00000000000..9de48f18f9a
--- /dev/null
+++ b/app/code/Tawk/Widget/etc/adminhtml/routes.xml
@@ -0,0 +1,28 @@
+<?xml version="1.0"?>
+
+<!--
+/**
+ * Tawk.to
+ *
+ * NOTICE OF LICENSE
+ *
+ * This source file is subject to the Open Software License (OSL 3.0)
+ * that is bundled with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://opensource.org/licenses/osl-3.0.php
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to support@tawk.to so we can send you a copy immediately.
+ *
+ * @copyright   Copyright (c) 2016 Tawk.to
+ * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
+ */
+-->
+
+<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:App/etc/routes.xsd">
+	<router id="admin">
+		<route id="widget" frontName="widget">
+			<module name="Tawk_Widget"/>
+		</route>
+	</router>
+</config>
\ No newline at end of file
diff --git a/app/code/Tawk/Widget/etc/module.xml b/app/code/Tawk/Widget/etc/module.xml
new file mode 100644
index 00000000000..fe97efdbbd6
--- /dev/null
+++ b/app/code/Tawk/Widget/etc/module.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0"?>
+
+<!--
+/**
+ * Tawk.to
+ *
+ * NOTICE OF LICENSE
+ *
+ * This source file is subject to the Open Software License (OSL 3.0)
+ * that is bundled with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://opensource.org/licenses/osl-3.0.php
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to support@tawk.to so we can send you a copy immediately.
+ *
+ * @copyright   Copyright (c) 2016 Tawk.to
+ * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
+ */
+-->
+
+<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
+	<module name="Tawk_Widget" setup_version="1.3.1"/>
+</config>
diff --git a/app/code/Tawk/Widget/registration.php b/app/code/Tawk/Widget/registration.php
new file mode 100644
index 00000000000..ab65c2bce82
--- /dev/null
+++ b/app/code/Tawk/Widget/registration.php
@@ -0,0 +1,23 @@
+<?php
+/**
+ * Tawk.to
+ *
+ * NOTICE OF LICENSE
+ *
+ * This source file is subject to the Open Software License (OSL 3.0)
+ * that is bundled with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://opensource.org/licenses/osl-3.0.php
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to support@tawk.to so we can send you a copy immediately.
+ *
+ * @copyright   Copyright (c) 2016 Tawk.to
+ * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
+ */
+
+\Magento\Framework\Component\ComponentRegistrar::register(
+    \Magento\Framework\Component\ComponentRegistrar::MODULE,
+    'Tawk_Widget',
+    __DIR__
+);
\ No newline at end of file
diff --git a/app/code/Tawk/Widget/view/adminhtml/layout/widget_selectwidget_index.xml b/app/code/Tawk/Widget/view/adminhtml/layout/widget_selectwidget_index.xml
new file mode 100644
index 00000000000..ef1fc6be156
--- /dev/null
+++ b/app/code/Tawk/Widget/view/adminhtml/layout/widget_selectwidget_index.xml
@@ -0,0 +1,33 @@
+<?xml version="1.0"?>
+
+<!--
+/**
+ * Tawk.to
+ *
+ * NOTICE OF LICENSE
+ *
+ * This source file is subject to the Open Software License (OSL 3.0)
+ * that is bundled with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://opensource.org/licenses/osl-3.0.php
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to support@tawk.to so we can send you a copy immediately.
+ *
+ * @copyright   Copyright (c) 2016 Tawk.to
+ * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
+ */
+-->
+
+<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
+    <head>
+        <title>
+            Select your widget
+        </title>
+    </head>
+    <body>
+        <referenceContainer name="content">
+            <block class="Tawk\Widget\Block\Adminhtml\SelectWidgetBlock" name="tawk_widget.select" template="Tawk_Widget::selectwidget.phtml"/>
+        </referenceContainer>
+    </body>
+</page>
\ No newline at end of file
diff --git a/app/code/Tawk/Widget/view/adminhtml/templates/selectwidget.phtml b/app/code/Tawk/Widget/view/adminhtml/templates/selectwidget.phtml
new file mode 100644
index 00000000000..e1cba67b747
--- /dev/null
+++ b/app/code/Tawk/Widget/view/adminhtml/templates/selectwidget.phtml
@@ -0,0 +1,338 @@
+<?php
+/**
+ * Tawk.to
+ *
+ * NOTICE OF LICENSE
+ *
+ * This source file is subject to the Open Software License (OSL 3.0)
+ * that is bundled with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://opensource.org/licenses/osl-3.0.php
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to support@tawk.to so we can send you a copy immediately.
+ *
+ * @copyright   Copyright (c) 2016 Tawk.to
+ * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
+ */
+?>
+ <style>
+
+.websiteids:focus{
+	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6);
+	border-color: #66afe9;
+	outline:0 none;
+
+}
+.websiteids {
+    width: 350px;
+    background-color: #fff;
+    background-image: none;
+    border: 1px solid #ccc;
+    border-radius: 4px;
+    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
+    color: #555;
+    font-size: 14px;
+    height: 34px;
+    line-height: 1.42857;
+    padding: 6px 12px;
+    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
+
+}
+
+.websiteids_label {
+    display: inline-block;
+    font-size: 15px;
+    font-weight: bold;
+    width: 200px;
+}
+
+.tawk_fields{
+	margin:15px 0;
+}
+
+.switch {
+  position: relative;
+  display: inline-block;
+  width: 60px;
+  height: 34px;
+}
+
+/* Hide default HTML checkbox */
+.switch input {display:none;}
+
+/* The slider */
+.slider {
+  position: absolute;
+  cursor: pointer;
+  top: 0;
+  left: 0;
+  right: 0;
+  bottom: 0;
+  background-color: #ccc;
+  -webkit-transition: .4s;
+  transition: .4s;
+}
+
+.slider:before {
+  position: absolute;
+  content: "";
+  height: 26px;
+  width: 26px;
+  left: 4px;
+  bottom: 4px;
+  background-color: white;
+  -webkit-transition: .4s;
+  transition: .4s;
+}
+
+input:checked + .slider {
+  background-color: #2196F3;
+}
+
+input:focus + .slider {
+  box-shadow: 0 0 1px #2196F3;
+}
+
+input:checked + .slider:before {
+  -webkit-transform: translateX(26px);
+  -ms-transform: translateX(26px);
+  transform: translateX(26px);
+}
+
+/* Rounded sliders */
+.slider.round {
+  border-radius: 34px;
+}
+
+.slider.round:before {
+  border-radius: 50%;
+}
+
+.savesettingsbtn{
+	background-color: #5cb85c;
+    border-color: #4cae4c;
+    color: #fff;
+   -moz-user-select: none;
+    background-image: none;
+    border: 1px solid transparent;
+    border-radius: 4px;
+    cursor: pointer;
+    display: inline-block;
+    font-size: 14px;
+    font-weight: normal;
+    line-height: 1.42857;
+    margin-bottom: 0;
+    padding: 6px 12px;
+    text-align: center;
+    vertical-align: middle;
+    white-space: nowrap;
+    text-decoration: none;
+}
+
+.savesettingsbtn:hover{
+	text-decoration: none;
+	color: #fff;
+}
+</style>
+<script type="text/javascript">
+    require(['jquery', 'jquery/ui'], function($){ 
+	    $.noConflict();
+	    jQuery(function() {
+	    	
+	    	jQuery.get('<?php echo $this->getStoreWidget() ?>?id=' + jQuery( "#websiteids" ).val(), function (response) {			   
+			   document.getElementById('tawk_widget_customization').src = 'https://plugins.tawk.to/generic/widgets?currentWidgetId=' + response.widgetid + '&currentPageId='+ response.pageid +'&transparentBackground=1&parentDomain=<?php echo $this->mainurl() ?>';
+
+				jQuery('#excludeurl').val(response.excludeurl);
+				jQuery('#includeurl').val(response.includeurl);
+				if(response.alwaysdisplay == 1){
+					jQuery('#alwaysdisplay').prop('checked', true);
+					jQuery("#exlucded_urls_container").show();
+				}else{
+					jQuery('#alwaysdisplay').prop('checked', false);
+					jQuery("#exlucded_urls_container").hide();
+				}
+				if(response.donotdisplay == 1){
+					jQuery('#donotdisplay').prop('checked', true);
+					jQuery("#included_urls_container").show();
+				}else{
+					jQuery('#donotdisplay').prop('checked', false);
+					jQuery("#included_urls_container").hide();
+				}
+
+			});
+			
+
+	        if(jQuery("#alwaysdisplay").prop("checked")){
+				jQuery("#exlucded_urls_container").show();
+			}else{
+				jQuery("#exlucded_urls_container").hide();
+			}
+
+			if(jQuery("#donotdisplay").prop("checked")){
+				jQuery("#included_urls_container").show();
+			}else{
+				jQuery("#included_urls_container").hide();
+			}
+
+			window.addEventListener('message', function(e) {
+	            if(e.origin === '<?php echo $this->getBaseUrl() ?>') {
+	                if(e.data.action === 'setWidget') {
+	                    setWidget(e);
+	                }
+	                if(e.data.action === 'removeWidget') {
+	                    removeWidget(e);
+	                }
+	            }
+	        });
+	        
+	        function setWidget(e) {
+	        	alwaysdisplay = jQuery('#alwaysdisplay').is(":checked");
+				var alwaysdisplayvalue = alwaysdisplay ? 1 : 0;
+
+				donotdisplay = jQuery('#donotdisplay').is(":checked");
+				var donotdisplayvalue = donotdisplay ? 1 : 0;
+
+	            jQuery.post('<?php echo $this->getFormAction() ?>', {
+	                pageId   : e.data.pageId,
+	                widgetId : e.data.widgetId,
+	                id       : jQuery('#websiteids').val(),
+	            	excludeurl : jQuery('#excludeurl').val(),
+					includeurl : jQuery('#includeurl').val(),
+					alwaysdisplay : alwaysdisplayvalue,
+					donotdisplay: donotdisplayvalue,
+	                form_key : '<?php echo $this->getFormKey() ?>'
+	            }, function(response) {
+	                e.source.postMessage({action : 'setDone'}, '<?php echo $this->getBaseUrl() ?>');
+	            });
+	        }
+
+	        function removeWidget(e) {
+	            jQuery.get('<?php echo $this->getRemoveUrl() ?>?id=' + e.data.id, function (response) {
+	                e.source.postMessage({action : 'removeDone'}, '<?php echo $this->getBaseUrl() ?>');
+	            });
+	        }
+
+	        jQuery(".savesettingsbtn" ).click(function(e) {
+				e.preventDefault();
+				alwaysdisplay = jQuery('#alwaysdisplay').is(":checked");
+				var alwaysdisplayvalue = alwaysdisplay ? 1 : 0;
+
+				donotdisplay = jQuery('#donotdisplay').is(":checked");
+				var donotdisplayvalue = donotdisplay ? 1 : 0;
+
+				jQuery.post('<?php echo $this->getFormAction() ?>', {
+					pageId     : "-1",
+					widgetId   : "-1",
+					id         : jQuery('#websiteids').val(),
+					excludeurl : jQuery('#excludeurl').val(),
+					includeurl : jQuery('#includeurl').val(),
+					alwaysdisplay : alwaysdisplayvalue,
+					donotdisplay: donotdisplayvalue,
+					form_key : '<?php echo $this->getFormKey() ?>'
+				}, function() {
+					alert('Visibility options Saved');
+				});
+			});
+
+	        jQuery('#websiteids').on('change', function() {
+	          if(this.value == 0){
+	          	document.getElementById('tawk_widget_customization').src = "";
+	          	jQuery("#visibility_options").hide();
+	          }else{
+				  jQuery.get('<?php echo $this->getStoreWidget() ?>?id=' + this.value, function (response) {			   
+					   document.getElementById('tawk_widget_customization').src = 'https://plugins.tawk.to/generic/widgets?currentWidgetId=' + response.widgetid + '&currentPageId='+ response.pageid +'&transparentBackground=1&parentDomain=<?php echo $this->mainurl() ?>';
+						jQuery("#visibility_options").show();	   
+				  });
+
+				 	jQuery('#excludeurl').val(response.excludeurl);
+					jQuery('#includeurl').val(response.includeurl);
+					if(response.alwaysdisplay == 1){
+						jQuery('#alwaysdisplay').prop('checked', true);
+						jQuery("#exlucded_urls_container").show();
+					}else{
+						jQuery('#alwaysdisplay').prop('checked', false);
+						jQuery("#exlucded_urls_container").hide();
+					}
+					if(response.donotdisplay == 1){
+						jQuery('#donotdisplay').prop('checked', true);
+						jQuery("#included_urls_container").show();
+					}else{
+						jQuery('#donotdisplay').prop('checked', false);
+						jQuery("#included_urls_container").hide();
+					}
+
+			  }	
+			});
+
+			jQuery("#alwaysdisplay").change(function() {
+				if(this.checked){
+					jQuery("#exlucded_urls_container").show();
+					jQuery('#donotdisplay').prop('checked', false);
+					jQuery("#included_urls_container").hide();
+				}else{
+					jQuery("#exlucded_urls_container").hide();
+					jQuery('#donotdisplay').prop('checked', true);
+					jQuery("#included_urls_container").show();
+				}
+			});
+
+			jQuery("#donotdisplay").change(function() {
+				if(this.checked){
+					jQuery("#included_urls_container").show();
+					jQuery('#alwaysdisplay').prop('checked', false);
+					jQuery("#exlucded_urls_container").hide();
+				}else{
+					jQuery("#included_urls_container").hide();
+					jQuery('#alwaysdisplay').prop('checked', true);
+					jQuery("#exlucded_urls_container").show();
+				}
+			});
+
+
+
+	    });
+ 	});
+</script>
+
+<label for="websiteids" class="websiteids_label">Select Store</label>
+<select name="websiteids" id="websiteids" class="websiteids">
+<?php echo $this->getWebSiteoptions(); ?>
+</select>
+
+<iframe
+    id="tawk_widget_customization"
+    style="border:none; width:100%; margin: 0 0 0 0; padding: 0 0 0 0; min-height: 300px"
+    src="<?php echo $this->getIframeUrl() ?>">
+</iframe>
+
+<div id="visibility_options">
+<h3>Visibility Options</h3>
+<div class="tawk_fields">
+	<label for="alwaysdisplay" class="websiteids_label">Always Display widget</label>
+	<label class="switch">
+	  <input type="checkbox" id= "alwaysdisplay" name="alwaysdisplay"  class="tawk_check">
+	  <div class="slider round"></div>
+	</label>
+</div>
+<div class="tawk_fields" id="exlucded_urls_container">
+	<label for="excludeurl">(Exception) hide tawk.to widget to the following URL</label>
+	<BR />
+	<textarea name="excludeurl" id="excludeurl" rows="10" style="width:80%;" ></textarea>
+</div>
+<div class="tawk_fields">
+	<label for="donotdisplay" class="websiteids_label">Do not Display widget</label>
+	<label class="switch">
+	  <input type="checkbox" value="0" id= "donotdisplay" name="donotdisplay"  class="tawk_check">
+	  <div class="slider round"></div>
+	</label>
+</div>
+<div class="tawk_fields"  id="included_urls_container">
+	<label for="includeurl">(Exception) display tawk.to widget to the following URL</label>
+	<BR />
+	<textarea name="includeurl" id="includeurl" rows="10" style="width:80%;" ></textarea>
+</div>
+<div class="tawk_fields">
+<a class="savesettingsbtn" href="#">Save Visibility Settings</a>
+</div>
+</div>
\ No newline at end of file
diff --git a/app/code/Tawk/Widget/view/frontend/layout/default.xml b/app/code/Tawk/Widget/view/frontend/layout/default.xml
new file mode 100644
index 00000000000..9f9a237c18c
--- /dev/null
+++ b/app/code/Tawk/Widget/view/frontend/layout/default.xml
@@ -0,0 +1,28 @@
+<?xml version="1.0"?>
+
+<!--
+/**
+ * Tawk.to
+ *
+ * NOTICE OF LICENSE
+ *
+ * This source file is subject to the Open Software License (OSL 3.0)
+ * that is bundled with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://opensource.org/licenses/osl-3.0.php
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to support@tawk.to so we can send you a copy immediately.
+ *
+ * @copyright   Copyright (c) 2016 Tawk.to
+ * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
+ */
+-->
+
+<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../../../lib/internal/Magento/Framework/View/Layout/etc/page_configuration.xsd">
+    <body>
+	    <referenceContainer name="before.body.end">
+	        <block class="Tawk\Widget\Block\Embed" name="tawk_widget.embed" template="embed.phtml" />
+	    </referenceContainer>
+    </body>
+</page>
\ No newline at end of file
diff --git a/app/code/Tawk/Widget/view/frontend/templates/embed.phtml b/app/code/Tawk/Widget/view/frontend/templates/embed.phtml
new file mode 100644
index 00000000000..5b8ec87ce3c
--- /dev/null
+++ b/app/code/Tawk/Widget/view/frontend/templates/embed.phtml
@@ -0,0 +1,31 @@
+<?php
+/**
+ * Tawk.to
+ *
+ * NOTICE OF LICENSE
+ *
+ * This source file is subject to the Open Software License (OSL 3.0)
+ * that is bundled with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://opensource.org/licenses/osl-3.0.php
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to support@tawk.to so we can send you a copy immediately.
+ *
+ * @copyright   Copyright (c) 2016 Tawk.to
+ * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
+ */
+?>
+
+<!--Start of Tawk.to Script-->
+<script type="text/javascript"> var $_Tawk_API={},$_Tawk_LoadStart=new Date();
+(function(){
+	var s1=document.createElement("script"),s0=document.getElementsByTagName("script")[0];
+	s1.async=true;
+	s1.src='<?php echo $this->getEmbedUrl() ?>';
+	s1.charset='UTF-8';
+	s1.setAttribute('crossorigin','*');
+	s0.parentNode.insertBefore(s1,s0);
+})();
+</script>
+<!--End of Tawk.to Script-->
\ No newline at end of file
-- 
GitLab


From d1be301ef3d7aafb3b68268bc6dbcf05a871f0e8 Mon Sep 17 00:00:00 2001
From: sutantowilliam <willywilliamss97@gmail.com>
Date: Thu, 8 Feb 2018 14:18:17 +0700
Subject: [PATCH 09/19] fix chatlist bug

---
 MessageSystem/chat.css     | 12 ++++++++++--
 MessageSystem/chatlist.php | 31 +++++++++++++++++++++++++------
 MessageSystem/chatroom.php | 26 ++++++++++++++------------
 3 files changed, 49 insertions(+), 20 deletions(-)

diff --git a/MessageSystem/chat.css b/MessageSystem/chat.css
index 55ada76c3ac..897be9bbb13 100755
--- a/MessageSystem/chat.css
+++ b/MessageSystem/chat.css
@@ -8,9 +8,10 @@ body {
     margin: 25px;
     width: 500px;
     height: 600px;
+    /*height: 200px;*/
     border: 1px solid black;
     font-family: Helvetica;
-    position: relative;
+    /*position: relative;*/
 }
 
 .chat-title {
@@ -27,7 +28,14 @@ body {
 .chat-box {
     background: rgb(243, 248, 255);
     height:452px;
-    padding-bottom: 50px;
+    /*padding-bottom: 50px;*/
+    /* height: auto; */
+    overflow: auto;
+}
+.chat-list {
+    background: rgb(243, 248, 255);
+    height:505px;
+    /*padding-bottom: 50px;*/
     /* height: auto; */
     overflow: auto;
 }
diff --git a/MessageSystem/chatlist.php b/MessageSystem/chatlist.php
index 19ffeeb0f71..ad14324cff6 100644
--- a/MessageSystem/chatlist.php
+++ b/MessageSystem/chatlist.php
@@ -31,8 +31,22 @@
         firebase.database().ref().on('child_added', function(snapshot) {
             var chatrooms = snapshot.val();
             
-            if (chatrooms.sender=="person1"){
-            	console.log("yeay");
+            if ((chatrooms.sender=="person1")||(chatrooms.receiver=="person1")){
+            	// console.log("yeay");
+            	var chatlist = document.getElementById("chatlist");
+            	//Kalo usernamenya sama, hapus yang sebelumnya
+            	for (i = 0; i < chatlist.childElementCount; i++) { 
+				   	var username = chatlist.childNodes[i].childNodes[0].childNodes[0].innerText;
+				   	// console.log(i+username+"sekarang");
+				   	// console.log(i+chatrooms.receiver);
+				   	// console.log(i+chatrooms.sender);
+				   	// console.log(i+chatrooms.message);
+				   	if ((username==chatrooms.sender)||(username==chatrooms.receiver)){
+						// console.log("sama"+username);
+						chatlist.removeChild(chatlist.childNodes[i]);       
+				   	}
+				}
+
 	            var chatroom_item = document.createElement("div");
 	            chatroom_item.classList.add('chatroom-item');
 
@@ -42,8 +56,13 @@
 	            var chatroom_lastmessage = document.createElement("div");
 	            chatroom_lastmessage.classList.add('chatroom-lastmessage');
 
-	            var chatroom_username_span = document.createElement("span");
-	            chatroom_username_span.textContent = chatrooms.receiver;
+	            var chatroom_username_span = document.createElement("span"); 
+            	if (chatrooms.sender=="person1") {
+            		chatroom_username_span.textContent = chatrooms.receiver;
+            	} else {
+            		chatroom_username_span.textContent = chatrooms.sender;
+            	}
+	            
 	            chatroom_username.appendChild(chatroom_username_span);
 	            var chatroom_lastmessage_span = document.createElement("span");
 	            chatroom_lastmessage_span.textContent = chatrooms.message;
@@ -51,9 +70,9 @@
 
 	            chatroom_item.appendChild(chatroom_username);
 				chatroom_item.appendChild(chatroom_lastmessage);
-	            var chatlist = document.getElementById("chatlist");
+	            
 	           
-            	chatlist.appendChild(chatroom_item);
+            	chatlist.insertBefore(chatroom_item, chatlist.childNodes[0]);
             } 
         });
     }
diff --git a/MessageSystem/chatroom.php b/MessageSystem/chatroom.php
index 8c42204740b..2a1f9cb6ec3 100755
--- a/MessageSystem/chatroom.php
+++ b/MessageSystem/chatroom.php
@@ -74,20 +74,22 @@
   var startListening = function() {
         firebase.database().ref().on('child_added', function(snapshot) {
             var msg = snapshot.val();
-            
-            var msgTextElement = document.createElement("p");
-            msgTextElement.textContent = msg.message;
+            if (((msg.sender=="person1")&&(msg.receiver=="person2"))||((msg.sender=="person2")&&(msg.receiver=="person1"))) {
+                var msgTextElement = document.createElement("p");
+                msgTextElement.textContent = msg.message;
     
-            if ((msg.sender=="person1")&&(msg.receiver=="person2")){
-                msgTextElement.classList.add('sendermessage');
-            } else if ((msg.sender=="person2")&&(msg.receiver=="person1")) {
-                msgTextElement.classList.add('receivemessage');
-            } else {
-                
+                if (msg.sender=="person1"){
+                    msgTextElement.classList.add('sendermessage');
+                } else if (msg.sender=="person2") {
+                    msgTextElement.classList.add('receivemessage');
+                } else {
+                    
+                }
+                var chatbox = document.getElementById("chatbox");
+                chatbox.appendChild(msgTextElement);
+                chatbox.scrollTop=chatbox.scrollHeight;
             }
-            var chatbox = document.getElementById("chatbox");
-            chatbox.appendChild(msgTextElement);
-            chatbox.scrollTop=chatbox.scrollHeight;
+            
         });
     }
     startListening();
-- 
GitLab


From b68c5831275d6a7e121bdade4867d707b8122bd6 Mon Sep 17 00:00:00 2001
From: Albertdj <albertusdjauharidjohan@gmail.com>
Date: Thu, 8 Feb 2018 15:02:00 +0700
Subject: [PATCH 10/19] Fix firebase not define error

---
 .../frontend/layout/messaging_index_index.xml |   2 +-
 .../view/frontend/templates/messaging.phtml   |  71 +++--
 .../view/frontend/web/js/firebaselib.js       | 295 ++++++++++++++++--
 app/etc/di.xml                                |   2 +-
 4 files changed, 317 insertions(+), 53 deletions(-)

diff --git a/app/code/Magento/Messaging/view/frontend/layout/messaging_index_index.xml b/app/code/Magento/Messaging/view/frontend/layout/messaging_index_index.xml
index 104d28756cc..323932d2fcb 100644
--- a/app/code/Magento/Messaging/view/frontend/layout/messaging_index_index.xml
+++ b/app/code/Magento/Messaging/view/frontend/layout/messaging_index_index.xml
@@ -3,7 +3,7 @@
 		<title>Messaging</title>
 		<css src="Magento_Messaging::css/chat.css" />
 		<script src="Magento_Messaging::js/chat.js" />
-		<script src="https://www.gstatic.com/firebasejs/4.6.2/firebase.js"></script>
+		<script src="Magento_Messaging::js/firebaselib.js"></script>
 		<script src="Magento_Messaging::js/firebase.js" />
 	</head>
     <body>
diff --git a/app/code/Magento/Messaging/view/frontend/templates/messaging.phtml b/app/code/Magento/Messaging/view/frontend/templates/messaging.phtml
index 49c133589ff..ffb2f8fae89 100644
--- a/app/code/Magento/Messaging/view/frontend/templates/messaging.phtml
+++ b/app/code/Magento/Messaging/view/frontend/templates/messaging.phtml
@@ -14,37 +14,44 @@
 	</div>
 </div>
 	<script>
-	var startListening = function() {
-		console.log("startListening");
-        firebase.database().ref().on('child_added', function(snapshot) {
-            var chatrooms = snapshot.val();
-            
-            if (chatrooms.sender=="person1"){
-            	console.log("yeay");
-	            var chatroom_item = document.createElement("div");
-	            chatroom_item.classList.add('chatroom-item');
-
-	            var chatroom_username = document.createElement("div");
-	            chatroom_username.classList.add('chatroom-username');
-
-	            var chatroom_lastmessage = document.createElement("div");
-	            chatroom_lastmessage.classList.add('chatroom-lastmessage');
-
-	            var chatroom_username_span = document.createElement("span");
-	            chatroom_username_span.textContent = chatrooms.receiver;
-	            chatroom_username.appendChild(chatroom_username_span);
-	            var chatroom_lastmessage_span = document.createElement("span");
-	            chatroom_lastmessage_span.textContent = chatrooms.message;
-	            chatroom_lastmessage.appendChild(chatroom_lastmessage_span);
-
-	            chatroom_item.appendChild(chatroom_username);
-				chatroom_item.appendChild(chatroom_lastmessage);
-	            var chatlist = document.getElementById("chatlist");
-	           
-            	chatlist.appendChild(chatroom_item);
-            } 
-        });
-    }
-    startListening();
+    var myFirebase = new Firebase('https://magentochat.firebaseio.com/');
+		require(['jquery'], function($) {
+			$(document).ready(function() {
+  				function init() {
+            console.log("startListening");
+            myFirebase.on("child_added", function(snapshot) {
+              var chatrooms = snapshot.val();
+
+              if (chatrooms.sender=="person1"){
+                console.log("yeay");
+                var chatroom_item = document.createElement("div");
+                chatroom_item.classList.add("chatroom-item");
+
+                var chatroom_username = document.createElement("div");
+                chatroom_username.classList.add("chatroom-username");
+
+                var chatroom_lastmessage = document.createElement("div");
+                chatroom_lastmessage.classList.add("chatroom-lastmessage");
+
+                var chatroom_username_span = document.createElement("span");
+                chatroom_username_span.textContent = chatrooms.receiver;
+                chatroom_username.appendChild(chatroom_username_span);
+                var chatroom_lastmessage_span = document.createElement("span");
+                chatroom_lastmessage_span.textContent = chatrooms.message;
+                chatroom_lastmessage.appendChild(chatroom_lastmessage_span);
+
+                chatroom_item.appendChild(chatroom_username);
+                chatroom_item.appendChild(chatroom_lastmessage);
+                var chatlist = document.getElementById("chatlist");
+
+                chatlist.appendChild(chatroom_item);
+              }
+            });
+          }
+
+          setTimeout(init, 2000);
+
+    		});
+		});
 
   	</script>
\ No newline at end of file
diff --git a/app/code/Magento/Messaging/view/frontend/web/js/firebaselib.js b/app/code/Magento/Messaging/view/frontend/web/js/firebaselib.js
index 0a35cc70214..88abf043183 100644
--- a/app/code/Magento/Messaging/view/frontend/web/js/firebaselib.js
+++ b/app/code/Magento/Messaging/view/frontend/web/js/firebaselib.js
@@ -1,20 +1,277 @@
-/*!
- * @license Firebase v4.6.2
- * Build: rev-cbb07d3
- * Terms: https://firebase.google.com/terms/
- */
-var firebase=function(){var e=void 0===e?self:e;return function(t){function r(e){if(o[e])return o[e].exports;var n=o[e]={i:e,l:!1,exports:{}};return t[e].call(n.exports,n,n.exports,r),n.l=!0,n.exports}var n=e.webpackJsonpFirebase;e.webpackJsonpFirebase=function(e,o,a){for(var c,s,u,f=0,l=[];f<e.length;f++)s=e[f],i[s]&&l.push(i[s][0]),i[s]=0;for(c in o)Object.prototype.hasOwnProperty.call(o,c)&&(t[c]=o[c]);for(n&&n(e,o,a);l.length;)l.shift()();if(a)for(f=0;f<a.length;f++)u=r(r.s=a[f]);return u};var o={},i={5:0};return r.e=function(e){function t(){c.onerror=c.onload=null,clearTimeout(s);var t=i[e];0!==t&&(t&&t[1](Error("Loading chunk "+e+" failed.")),i[e]=void 0)}var n=i[e];if(0===n)return new Promise(function(e){e()});if(n)return n[2];var o=new Promise(function(t,r){n=i[e]=[t,r]});n[2]=o;var a=document.getElementsByTagName("head")[0],c=document.createElement("script");c.type="text/javascript",c.charset="utf-8",c.async=!0,c.timeout=12e4,r.nc&&c.setAttribute("nonce",r.nc),c.src=r.p+""+e+".js";var s=setTimeout(t,12e4);return c.onerror=c.onload=t,a.appendChild(c),o},r.m=t,r.c=o,r.d=function(e,t,n){r.o(e,t)||Object.defineProperty(e,t,{configurable:!1,enumerable:!0,get:n})},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p="",r.oe=function(e){throw console.error(e),e},r(r.s=57)}([function(e,t,r){"use strict";function n(e){for(var r in e)t.hasOwnProperty(r)||(t[r]=e[r])}Object.defineProperty(t,"__esModule",{value:!0}),n(r(28)),n(r(29)),n(r(20)),n(r(65)),n(r(66)),n(r(67)),n(r(68)),n(r(30)),n(r(69)),n(r(31)),n(r(70)),n(r(71)),n(r(73)),n(r(74)),n(r(75))},,,,,,function(e,t,r){"use strict";function n(){function e(e){h(d[e],"delete"),delete d[e]}function t(e){return e=e||c,a(d,e)||o("no-app",{name:e}),d[e]}function r(e,t){void 0===t?t=c:"string"==typeof t&&""!==t||o("bad-app-name",{name:t+""}),a(d,t)&&o("duplicate-app",{name:t});var r=new u(e,t,b);return d[t]=r,h(r,"create"),r}function s(){return Object.keys(d).map(function(e){return d[e]})}function f(e,r,n,a,c){v[e]&&o("duplicate-service",{name:e}),v[e]=r,a&&(y[e]=a,s().forEach(function(e){a("create",e)}));var f=function(r){return void 0===r&&(r=t()),"function"!=typeof r[e]&&o("invalid-app-argument",{name:e}),r[e]()};return void 0!==n&&Object(i.deepExtend)(f,n),b[e]=f,u.prototype[e]=function(){for(var t=[],r=0;r<arguments.length;r++)t[r]=arguments[r];return this.t.bind(this,e).apply(this,c?t:[])},f}function l(e){Object(i.deepExtend)(b,e)}function h(e,t){Object.keys(v).forEach(function(r){var n=p(e,r);null!==n&&y[n]&&y[n](t,e)})}function p(e,t){if("serverAuth"===t)return null;var r=t;return e.options,r}var d={},v={},y={},b={__esModule:!0,initializeApp:r,app:t,apps:null,Promise:Promise,SDK_VERSION:"4.6.1",INTERNAL:{registerService:f,createFirebaseNamespace:n,extendNamespace:l,createSubscribe:i.createSubscribe,ErrorFactory:i.ErrorFactory,removeApp:e,factories:v,useAsService:p,Promise:Promise,deepExtend:i.deepExtend}};return Object(i.patchProperty)(b,"default",b),Object.defineProperty(b,"apps",{get:s}),Object(i.patchProperty)(t,"App",u),b}function o(e,t){throw l.create(e,t)}Object.defineProperty(t,"__esModule",{value:!0});var i=r(0),a=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},c="[DEFAULT]",s=[],u=function(){function e(e,t,r){this.r=r,this.a=!1,this.u={},this.f=t,this.h=Object(i.deepCopy)(e),this.INTERNAL={getUid:function(){return null},getToken:function(){return Promise.resolve(null)},addAuthTokenListener:function(e){s.push(e),setTimeout(function(){return e(null)},0)},removeAuthTokenListener:function(e){s=s.filter(function(t){return t!==e})}}}return Object.defineProperty(e.prototype,"name",{get:function(){return this.v(),this.f},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"options",{get:function(){return this.v(),this.h},enumerable:!0,configurable:!0}),e.prototype.delete=function(){var e=this;return new Promise(function(t){e.v(),t()}).then(function(){e.r.INTERNAL.removeApp(e.f);var t=[];return Object.keys(e.u).forEach(function(r){Object.keys(e.u[r]).forEach(function(n){t.push(e.u[r][n])})}),Promise.all(t.map(function(e){return e.INTERNAL.delete()}))}).then(function(){e.a=!0,e.u={}})},e.prototype.t=function(e,t){if(void 0===t&&(t=c),this.v(),this.u[e]||(this.u[e]={}),!this.u[e][t]){var r=t!==c?t:void 0,n=this.r.INTERNAL.factories[e](this,this.extendApp.bind(this),r);this.u[e][t]=n}return this.u[e][t]},e.prototype.extendApp=function(e){var t=this;Object(i.deepExtend)(this,e),e.INTERNAL&&e.INTERNAL.addAuthTokenListener&&(s.forEach(function(e){t.INTERNAL.addAuthTokenListener(e)}),s=[])},e.prototype.v=function(){this.a&&o("app-deleted",{name:this.f})},e}();u.prototype.name&&u.prototype.options||u.prototype.delete||console.log("dc");var f={"no-app":"No Firebase App '{$name}' has been created - call Firebase App.initializeApp()","bad-app-name":"Illegal App name: '{$name}","duplicate-app":"Firebase App named '{$name}' already exists","app-deleted":"Firebase App named '{$name}' already deleted","duplicate-service":"Firebase service named '{$name}' already registered","sa-not-supported":"Initializing the Firebase SDK with a service account is only allowed in a Node.js environment. On client devices, you should instead initialize the SDK with an api key and auth domain","invalid-app-argument":"firebase.{$name}() takes either no argument or a Firebase App instance."},l=new i.ErrorFactory("app","Firebase",f);r.d(t,"firebase",function(){return h});var h=n();t.default=h},,,,,,,,,,,,,function(t,r){var n;n=function(){return this}();try{n=n||Function("return this")()||(0,eval)("this")}catch(t){"object"==typeof e&&(n=e)}t.exports=n},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.CONSTANTS={NODE_CLIENT:!1,NODE_ADMIN:!1,SDK_VERSION:"${JSCORE_VERSION}"}},,,,,,,function(e,t){function r(){throw Error("setTimeout has not been defined")}function n(){throw Error("clearTimeout has not been defined")}function o(e){if(f===setTimeout)return setTimeout(e,0);if((f===r||!f)&&setTimeout)return f=setTimeout,setTimeout(e,0);try{return f(e,0)}catch(t){try{return f.call(null,e,0)}catch(t){return f.call(this,e,0)}}}function i(e){if(l===clearTimeout)return clearTimeout(e);if((l===n||!l)&&clearTimeout)return l=clearTimeout,clearTimeout(e);try{return l(e)}catch(t){try{return l.call(null,e)}catch(t){return l.call(this,e)}}}function a(){v&&p&&(v=!1,p.length?d=p.concat(d):y=-1,d.length&&c())}function c(){if(!v){var e=o(a);v=!0;for(var t=d.length;t;){for(p=d,d=[];++y<t;)p&&p[y].run();y=-1,t=d.length}p=null,v=!1,i(e)}}function s(e,t){this.fun=e,this.array=t}function u(){}var f,l,h=e.exports={};!function(){try{f="function"==typeof setTimeout?setTimeout:r}catch(e){f=r}try{l="function"==typeof clearTimeout?clearTimeout:n}catch(e){l=n}}();var p,d=[],v=!1,y=-1;h.nextTick=function(e){var t=Array(arguments.length-1);if(arguments.length>1)for(var r=1;r<arguments.length;r++)t[r-1]=arguments[r];d.push(new s(e,t)),1!==d.length||v||o(c)},s.prototype.run=function(){this.fun.apply(null,this.array)},h.title="browser",h.browser=!0,h.env={},h.argv=[],h.version="",h.versions={},h.on=u,h.addListener=u,h.once=u,h.off=u,h.removeListener=u,h.removeAllListeners=u,h.emit=u,h.prependListener=u,h.prependOnceListener=u,h.listeners=function(e){return[]},h.binding=function(e){throw Error("process.binding is not supported")},h.cwd=function(){return"/"},h.chdir=function(e){throw Error("process.chdir is not supported")},h.umask=function(){return 0}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=r(20);t.assert=function(e,r){if(!e)throw t.assertionError(r)},t.assertionError=function(e){return Error("Firebase Database ("+n.CONSTANTS.SDK_VERSION+") INTERNAL ASSERT FAILED: "+e)}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=function(e){for(var t=[],r=0,n=0;n<e.length;n++){for(var o=e.charCodeAt(n);o>255;)t[r++]=255&o,o>>=8;t[r++]=o}return t},o=function(e){if(e.length<8192)return String.fromCharCode.apply(null,e);for(var t="",r=0;r<e.length;r+=8192){var n=e.slice(r,r+8192);t+=String.fromCharCode.apply(null,n)}return t};t.base64={y:null,b:null,_:null,g:null,ENCODED_VALS_BASE:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",get ENCODED_VALS(){return this.ENCODED_VALS_BASE+"+/="},get ENCODED_VALS_WEBSAFE(){return this.ENCODED_VALS_BASE+"-_."},HAS_NATIVE_SUPPORT:"function"==typeof atob,encodeByteArray:function(e,t){if(!Array.isArray(e))throw Error("encodeByteArray takes an array as a parameter");this.O();for(var r=t?this._:this.y,n=[],o=0;o<e.length;o+=3){var i=e[o],a=o+1<e.length,c=a?e[o+1]:0,s=o+2<e.length,u=s?e[o+2]:0,f=i>>2,l=(3&i)<<4|c>>4,h=(15&c)<<2|u>>6,p=63&u;s||(p=64,a||(h=64)),n.push(r[f],r[l],r[h],r[p])}return n.join("")},encodeString:function(e,t){return this.HAS_NATIVE_SUPPORT&&!t?btoa(e):this.encodeByteArray(n(e),t)},decodeString:function(e,t){return this.HAS_NATIVE_SUPPORT&&!t?atob(e):o(this.decodeStringToByteArray(e,t))},decodeStringToByteArray:function(e,t){this.O();for(var r=t?this.g:this.b,n=[],o=0;o<e.length;){var i=r[e.charAt(o++)],a=o<e.length,c=a?r[e.charAt(o)]:0;++o;var s=o<e.length,u=s?r[e.charAt(o)]:64;++o;var f=o<e.length,l=f?r[e.charAt(o)]:64;if(++o,null==i||null==c||null==u||null==l)throw Error();var h=i<<2|c>>4;if(n.push(h),64!=u){var p=c<<4&240|u>>2;if(n.push(p),64!=l){var d=u<<6&192|l;n.push(d)}}}return n},O:function(){if(!this.y){this.y={},this.b={},this._={},this.g={};for(var e=0;e<this.ENCODED_VALS.length;e++)this.y[e]=this.ENCODED_VALS.charAt(e),this.b[this.y[e]]=e,this._[e]=this.ENCODED_VALS_WEBSAFE.charAt(e),this.g[this._[e]]=e,e>=this.ENCODED_VALS_BASE.length&&(this.b[this.ENCODED_VALS_WEBSAFE.charAt(e)]=e,this.g[this.ENCODED_VALS.charAt(e)]=e)}}},t.base64Encode=function(e){var r=n(e);return t.base64.encodeByteArray(r,!0)},t.base64Decode=function(e){try{return t.base64.decodeString(e,!0)}catch(e){console.error("base64Decode failed: ",e)}return null}},function(e,t,r){"use strict";function n(e){return JSON.parse(e)}function o(e){return JSON.stringify(e)}Object.defineProperty(t,"__esModule",{value:!0}),t.jsonEval=n,t.stringify=o},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.contains=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.safeGet=function(e,t){if(Object.prototype.hasOwnProperty.call(e,t))return e[t]},t.forEach=function(e,t){for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t(r,e[r])},t.extend=function(e,r){return t.forEach(r,function(t,r){e[t]=r}),e},t.clone=function(e){return t.extend({},e)},t.isNonNullObject=function(e){return"object"==typeof e&&null!==e},t.isEmpty=function(e){for(var t in e)return!1;return!0},t.getCount=function(e){var t=0;for(var r in e)t++;return t},t.map=function(e,t,r){var n={};for(var o in e)n[o]=t.call(r,e[o],o,e);return n},t.findKey=function(e,t,r){for(var n in e)if(t.call(r,e[n],n,e))return n},t.findValue=function(e,r,n){var o=t.findKey(e,r,n);return o&&e[o]},t.getAnyKey=function(e){for(var t in e)return t},t.getValues=function(e){var t=[],r=0;for(var n in e)t[r++]=e[n];return t},t.every=function(e,t){for(var r in e)if(Object.prototype.hasOwnProperty.call(e,r)&&!t(r,e[r]))return!1;return!0}},,,,,,,,,,,,,,,,,,,,,,,,,,function(e,t,r){r(58),e.exports=r(6).default},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=r(59),o=(r.n(n),r(63)),i=(r.n(o),r(64));r.n(i)},function(t,r,n){(function(t){var r=function(){if(void 0!==t)return t;if(void 0!==e)return e;if("undefined"!=typeof self)return self;throw Error("unable to locate global object")}();"undefined"==typeof Promise&&(r.Promise=Promise=n(60))}).call(r,n(19))},function(e,t,r){(function(t){!function(r){function n(){}function o(e,t){return function(){e.apply(t,arguments)}}function i(e){if("object"!=typeof this)throw new TypeError("Promises must be constructed via new");if("function"!=typeof e)throw new TypeError("not a function");this._state=0,this._handled=!1,this._value=void 0,this.T=[],l(e,this)}function a(e,t){for(;3===e._state;)e=e._value;if(0===e._state)return void e.T.push(t);e._handled=!0,i.A(function(){var r=1===e._state?t.onFulfilled:t.onRejected;if(null===r)return void(1===e._state?c:s)(t.promise,e._value);var n;try{n=r(e._value)}catch(e){return void s(t.promise,e)}c(t.promise,n)})}function c(e,t){try{if(t===e)throw new TypeError("A promise cannot be resolved with itself.");if(t&&("object"==typeof t||"function"==typeof t)){var r=t.then;if(t instanceof i)return e._state=3,e._value=t,void u(e);if("function"==typeof r)return void l(o(r,t),e)}e._state=1,e._value=t,u(e)}catch(t){s(e,t)}}function s(e,t){e._state=2,e._value=t,u(e)}function u(e){2===e._state&&0===e.T.length&&i.A(function(){e._handled||i.j(e._value)});for(var t=0,r=e.T.length;t<r;t++)a(e,e.T[t]);e.T=null}function f(e,t,r){this.onFulfilled="function"==typeof e?e:null,this.onRejected="function"==typeof t?t:null,this.promise=r}function l(e,t){var r=!1;try{e(function(e){r||(r=!0,c(t,e))},function(e){r||(r=!0,s(t,e))})}catch(e){if(r)return;r=!0,s(t,e)}}var h=setTimeout;i.prototype.catch=function(e){return this.then(null,e)},i.prototype.then=function(e,t){var r=new this.constructor(n);return a(this,new f(e,t,r)),r},i.all=function(e){var t=Array.prototype.slice.call(e);return new i(function(e,r){function n(i,a){try{if(a&&("object"==typeof a||"function"==typeof a)){var c=a.then;if("function"==typeof c)return void c.call(a,function(e){n(i,e)},r)}t[i]=a,0==--o&&e(t)}catch(e){r(e)}}if(0===t.length)return e([]);for(var o=t.length,i=0;i<t.length;i++)n(i,t[i])})},i.resolve=function(e){return e&&"object"==typeof e&&e.constructor===i?e:new i(function(t){t(e)})},i.reject=function(e){return new i(function(t,r){r(e)})},i.race=function(e){return new i(function(t,r){for(var n=0,o=e.length;n<o;n++)e[n].then(t,r)})},i.A="function"==typeof t&&function(e){t(e)}||function(e){h(e,0)},i.j=function(e){"undefined"!=typeof console&&console&&console.warn("Possible Unhandled Promise Rejection:",e)},i.w=function(e){i.A=e},i.S=function(e){i.j=e},void 0!==e&&e.exports?e.exports=i:r.Promise||(r.Promise=i)}(this)}).call(t,r(61).setImmediate)},function(t,r,n){function o(e,t){this.P=e,this._clearFn=t}var i=Function.prototype.apply;r.setTimeout=function(){return new o(i.call(setTimeout,e,arguments),clearTimeout)},r.setInterval=function(){return new o(i.call(setInterval,e,arguments),clearInterval)},r.clearTimeout=r.clearInterval=function(e){e&&e.close()},o.prototype.unref=o.prototype.ref=function(){},o.prototype.close=function(){this._clearFn.call(e,this.P)},r.enroll=function(e,t){clearTimeout(e.N),e.C=t},r.unenroll=function(e){clearTimeout(e.N),e.C=-1},r.k=r.active=function(e){clearTimeout(e.N);var t=e.C;t>=0&&(e.N=setTimeout(function(){e.M&&e.M()},t))},n(62),r.setImmediate=setImmediate,r.clearImmediate=clearImmediate},function(e,t,r){(function(e,t){!function(e,r){"use strict";function n(e){"function"!=typeof e&&(e=Function(""+e));for(var t=Array(arguments.length-1),r=0;r<t.length;r++)t[r]=arguments[r+1];var n={callback:e,args:t};return u[s]=n,c(s),s++}function o(e){delete u[e]}function i(e){var t=e.callback,n=e.args;switch(n.length){case 0:t();break;case 1:t(n[0]);break;case 2:t(n[0],n[1]);break;case 3:t(n[0],n[1],n[2]);break;default:t.apply(r,n)}}function a(e){if(f)setTimeout(a,0,e);else{var t=u[e];if(t){f=!0;try{i(t)}finally{o(e),f=!1}}}}if(!e.setImmediate){var c,s=1,u={},f=!1,l=e.document,h=Object.getPrototypeOf&&Object.getPrototypeOf(e);h=h&&h.setTimeout?h:e,"[object process]"==={}.toString.call(e.process)?function(){c=function(e){t.nextTick(function(){a(e)})}}():function(){if(e.postMessage&&!e.importScripts){var t=!0,r=e.onmessage;return e.onmessage=function(){t=!1},e.postMessage("","*"),e.onmessage=r,t}}()?function(){var t="setImmediate$"+Math.random()+"$",r=function(r){r.source===e&&"string"==typeof r.data&&0===r.data.indexOf(t)&&a(+r.data.slice(t.length))};e.addEventListener?e.addEventListener("message",r,!1):e.attachEvent("onmessage",r),c=function(r){e.postMessage(t+r,"*")}}():e.MessageChannel?function(){var e=new MessageChannel;e.port1.onmessage=function(e){a(e.data)},c=function(t){e.port2.postMessage(t)}}():l&&"onreadystatechange"in l.createElement("script")?function(){var e=l.documentElement;c=function(t){var r=l.createElement("script");r.onreadystatechange=function(){a(t),r.onreadystatechange=null,e.removeChild(r),r=null},e.appendChild(r)}}():function(){c=function(e){setTimeout(a,0,e)}}(),h.setImmediate=n,h.clearImmediate=o}}("undefined"==typeof self?void 0===e?this:e:self)}).call(t,r(19),r(27))},function(e,t){Array.prototype.find||Object.defineProperty(Array.prototype,"find",{value:function(e){if(null==this)throw new TypeError('"this" is null or not defined');var t=Object(this),r=t.length>>>0;if("function"!=typeof e)throw new TypeError("predicate must be a function");for(var n=arguments[1],o=0;o<r;){var i=t[o];if(e.call(n,i,o,t))return i;o++}}})},function(e,t){Array.prototype.findIndex||Object.defineProperty(Array.prototype,"findIndex",{value:function(e){if(null==this)throw new TypeError('"this" is null or not defined');var t=Object(this),r=t.length>>>0;if("function"!=typeof e)throw new TypeError("predicate must be a function");for(var n=arguments[1],o=0;o<r;){var i=t[o];if(e.call(n,i,o,t))return o;o++}return-1}})},function(e,t,r){"use strict";function n(e){return o(void 0,e)}function o(e,t){if(!(t instanceof Object))return t;switch(t.constructor){case Date:var r=t;return new Date(r.getTime());case Object:void 0===e&&(e={});break;case Array:e=[];break;default:return t}for(var n in t)t.hasOwnProperty(n)&&(e[n]=o(e[n],t[n]));return e}function i(e,t,r){e[t]=r}Object.defineProperty(t,"__esModule",{value:!0}),t.deepCopy=n,t.deepExtend=o,t.patchProperty=i},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=function(){function e(){var e=this;this.promise=new Promise(function(t,r){e.resolve=t,e.reject=r})}return e.prototype.wrapCallback=function(e){var t=this;return function(r,n){r?t.reject(r):t.resolve(n),"function"==typeof e&&(t.promise.catch(function(){}),1===e.length?e(r):e(r,n))}},e}();t.Deferred=n},function(t,r,n){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var o=n(20);r.getUA=function(){return"undefined"!=typeof navigator&&"string"==typeof navigator.userAgent?navigator.userAgent:""},r.isMobileCordova=function(){return void 0!==e&&!!(e.cordova||e.phonegap||e.PhoneGap)&&/ios|iphone|ipod|ipad|android|blackberry|iemobile/i.test(r.getUA())},r.isReactNative=function(){return"object"==typeof navigator&&"ReactNative"===navigator.product},r.isNodeSdk=function(){return!0===o.CONSTANTS.NODE_CLIENT||!0===o.CONSTANTS.NODE_ADMIN}},function(e,t,r){"use strict";function n(e){var t=i;return i=e,t}Object.defineProperty(t,"__esModule",{value:!0});var o="FirebaseError",i=Error.captureStackTrace;t.patchCapture=n;var a=function(){function e(e,t){if(this.code=e,this.message=t,i)i(this,c.prototype.create);else{var r=Error.apply(this,arguments);this.name=o,Object.defineProperty(this,"stack",{get:function(){return r.stack}})}}return e}();t.FirebaseError=a,a.prototype=Object.create(Error.prototype),a.prototype.constructor=a,a.prototype.name=o;var c=function(){function e(e,t,r){this.service=e,this.serviceName=t,this.errors=r,this.pattern=/\{\$([^}]+)}/g}return e.prototype.create=function(e,t){void 0===t&&(t={});var r,n=this.errors[e],o=this.service+"/"+e;r=void 0===n?"Error":n.replace(this.pattern,function(e,r){var n=t[r];return void 0!==n?""+n:"<"+r+"?>"}),r=this.serviceName+": "+r+" ("+o+").";var i=new a(o,r);for(var c in t)t.hasOwnProperty(c)&&"_"!==c.slice(-1)&&(i[c]=t[c]);return i},e}();t.ErrorFactory=c},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=r(29),o=r(30);t.decode=function(e){var t={},r={},i={},a="";try{var c=e.split(".");t=o.jsonEval(n.base64Decode(c[0])||""),r=o.jsonEval(n.base64Decode(c[1])||""),a=c[2],i=r.d||{},delete r.d}catch(e){}return{header:t,claims:r,data:i,signature:a}},t.isValidTimestamp=function(e){var r,n,o=t.decode(e).claims,i=Math.floor((new Date).getTime()/1e3);return"object"==typeof o&&(o.hasOwnProperty("nbf")?r=o.nbf:o.hasOwnProperty("iat")&&(r=o.iat),n=o.hasOwnProperty("exp")?o.exp:r+86400),i&&r&&n&&i>=r&&i<=n},t.issuedAtTime=function(e){var r=t.decode(e).claims;return"object"==typeof r&&r.hasOwnProperty("iat")?r.iat:null},t.isValidFormat=function(e){var r=t.decode(e),n=r.claims;return!!r.signature&&!!n&&"object"==typeof n&&n.hasOwnProperty("iat")},t.isAdmin=function(e){var r=t.decode(e).claims;return"object"==typeof r&&!0===r.admin}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=r(31);t.querystring=function(e){var t=[];return n.forEach(e,function(e,r){Array.isArray(r)?r.forEach(function(r){t.push(encodeURIComponent(e)+"="+encodeURIComponent(r))}):t.push(encodeURIComponent(e)+"="+encodeURIComponent(r))}),t.length?"&"+t.join("&"):""},t.querystringDecode=function(e){var t={};return e.replace(/^\?/,"").split("&").forEach(function(e){if(e){var r=e.split("=");t[r[0]]=r[1]}}),t}},function(e,t,r){"use strict";var n=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)t.hasOwnProperty(r)&&(e[r]=t[r])};return function(t,r){function n(){this.constructor=t}e(t,r),t.prototype=null===r?Object.create(r):(n.prototype=r.prototype,new n)}}();Object.defineProperty(t,"__esModule",{value:!0});var o=r(72),i=function(e){function t(){var t=e.call(this)||this;t.D=[],t.I=[],t.x=[],t.F=[],t.L=0,t.R=0,t.blockSize=64,t.F[0]=128;for(var r=1;r<t.blockSize;++r)t.F[r]=0;return t.reset(),t}return n(t,e),t.prototype.reset=function(){this.D[0]=1732584193,this.D[1]=4023233417,this.D[2]=2562383102,this.D[3]=271733878,this.D[4]=3285377520,this.L=0,this.R=0},t.prototype.B=function(e,t){t||(t=0);var r=this.x;if("string"==typeof e)for(var n=0;n<16;n++)r[n]=e.charCodeAt(t)<<24|e.charCodeAt(t+1)<<16|e.charCodeAt(t+2)<<8|e.charCodeAt(t+3),t+=4;else for(var n=0;n<16;n++)r[n]=e[t]<<24|e[t+1]<<16|e[t+2]<<8|e[t+3],t+=4;for(var n=16;n<80;n++){var o=r[n-3]^r[n-8]^r[n-14]^r[n-16];r[n]=4294967295&(o<<1|o>>>31)}for(var i,a,c=this.D[0],s=this.D[1],u=this.D[2],f=this.D[3],l=this.D[4],n=0;n<80;n++){n<40?n<20?(i=f^s&(u^f),a=1518500249):(i=s^u^f,a=1859775393):n<60?(i=s&u|f&(s|u),a=2400959708):(i=s^u^f,a=3395469782);var o=(c<<5|c>>>27)+i+l+a+r[n]&4294967295;l=f,f=u,u=4294967295&(s<<30|s>>>2),s=c,c=o}this.D[0]=this.D[0]+c&4294967295,this.D[1]=this.D[1]+s&4294967295,this.D[2]=this.D[2]+u&4294967295,this.D[3]=this.D[3]+f&4294967295,this.D[4]=this.D[4]+l&4294967295},t.prototype.update=function(e,t){if(null!=e){void 0===t&&(t=e.length);for(var r=t-this.blockSize,n=0,o=this.I,i=this.L;n<t;){if(0==i)for(;n<=r;)this.B(e,n),n+=this.blockSize;if("string"==typeof e){for(;n<t;)if(o[i]=e.charCodeAt(n),++i,++n,i==this.blockSize){this.B(o),i=0;break}}else for(;n<t;)if(o[i]=e[n],++i,++n,i==this.blockSize){this.B(o),i=0;break}}this.L=i,this.R+=t}},t.prototype.digest=function(){var e=[],t=8*this.R;this.L<56?this.update(this.F,56-this.L):this.update(this.F,this.blockSize-(this.L-56));for(var r=this.blockSize-1;r>=56;r--)this.I[r]=255&t,t/=256;this.B(this.I);for(var n=0,r=0;r<5;r++)for(var o=24;o>=0;o-=8)e[n]=this.D[r]>>o&255,++n;return e},t}(o.Hash);t.Sha1=i},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=function(){function e(){this.blockSize=-1}return e}();t.Hash=n},function(e,t,r){"use strict";function n(e,t){var r=new c(e,t);return r.subscribe.bind(r)}function o(e,t){return function(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];Promise.resolve(!0).then(function(){e.apply(void 0,r)}).catch(function(e){t&&t(e)})}}function i(e,t){if("object"!=typeof e||null===e)return!1;for(var r=0,n=t;r<n.length;r++){var o=n[r];if(o in e&&"function"==typeof e[o])return!0}return!1}function a(){}Object.defineProperty(t,"__esModule",{value:!0}),t.createSubscribe=n;var c=function(){function e(e,t){var r=this;this.observers=[],this.unsubscribes=[],this.observerCount=0,this.task=Promise.resolve(),this.finalized=!1,this.onNoObservers=t,this.task.then(function(){e(r)}).catch(function(e){r.error(e)})}return e.prototype.next=function(e){this.forEachObserver(function(t){t.next(e)})},e.prototype.error=function(e){this.forEachObserver(function(t){t.error(e)}),this.close(e)},e.prototype.complete=function(){this.forEachObserver(function(e){e.complete()}),this.close()},e.prototype.subscribe=function(e,t,r){var n,o=this;if(void 0===e&&void 0===t&&void 0===r)throw Error("Missing Observer.");n=i(e,["next","error","complete"])?e:{next:e,error:t,complete:r},void 0===n.next&&(n.next=a),void 0===n.error&&(n.error=a),void 0===n.complete&&(n.complete=a);var c=this.unsubscribeOne.bind(this,this.observers.length);return this.finalized&&this.task.then(function(){try{o.finalError?n.error(o.finalError):n.complete()}catch(e){}}),this.observers.push(n),c},e.prototype.unsubscribeOne=function(e){void 0!==this.observers&&void 0!==this.observers[e]&&(delete this.observers[e],this.observerCount-=1,0===this.observerCount&&void 0!==this.onNoObservers&&this.onNoObservers(this))},e.prototype.forEachObserver=function(e){if(!this.finalized)for(var t=0;t<this.observers.length;t++)this.sendOne(t,e)},e.prototype.sendOne=function(e,t){var r=this;this.task.then(function(){if(void 0!==r.observers&&void 0!==r.observers[e])try{t(r.observers[e])}catch(e){"undefined"!=typeof console&&console.error&&console.error(e)}})},e.prototype.close=function(e){var t=this;this.finalized||(this.finalized=!0,void 0!==e&&(this.finalError=e),this.task.then(function(){t.observers=void 0,t.onNoObservers=void 0}))},e}();t.async=o},function(e,t,r){"use strict";function n(e,t,r){var n="";switch(t){case 1:n=r?"first":"First";break;case 2:n=r?"second":"Second";break;case 3:n=r?"third":"Third";break;case 4:n=r?"fourth":"Fourth";break;default:throw Error("errorPrefix called with argumentNumber > 4.  Need to update it?")}var o=e+" failed: ";return o+=n+" argument "}function o(e,t,r,o){if((!o||r)&&"string"!=typeof r)throw Error(n(e,t,o)+"must be a valid firebase namespace.")}function i(e,t,r,o){if((!o||r)&&"function"!=typeof r)throw Error(n(e,t,o)+"must be a valid function.")}function a(e,t,r,o){if((!o||r)&&("object"!=typeof r||null===r))throw Error(n(e,t,o)+"must be a valid context object.")}Object.defineProperty(t,"__esModule",{value:!0}),t.validateArgCount=function(e,t,r,n){var o;if(n<t?o="at least "+t:n>r&&(o=0===r?"none":"no more than "+r),o){var i=e+" failed: Was called with "+n+(1===n?" argument.":" arguments.")+" Expects "+o+".";throw Error(i)}},t.errorPrefix=n,t.validateNamespace=o,t.validateCallback=i,t.validateContextObject=a},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=r(28);t.stringToByteArray=function(e){for(var t=[],r=0,o=0;o<e.length;o++){var i=e.charCodeAt(o);if(i>=55296&&i<=56319){var a=i-55296;o++,n.assert(o<e.length,"Surrogate pair missing trail surrogate."),i=65536+(a<<10)+(e.charCodeAt(o)-56320)}i<128?t[r++]=i:i<2048?(t[r++]=i>>6|192,t[r++]=63&i|128):i<65536?(t[r++]=i>>12|224,t[r++]=i>>6&63|128,t[r++]=63&i|128):(t[r++]=i>>18|240,t[r++]=i>>12&63|128,t[r++]=i>>6&63|128,t[r++]=63&i|128)}return t},t.stringLength=function(e){for(var t=0,r=0;r<e.length;r++){var n=e.charCodeAt(r);n<128?t++:n<2048?t+=2:n>=55296&&n<=56319?(t+=4,r++):t+=3}return t}}])}().default;
+/*! @license Firebase v2.4.0
+    License: https://www.firebase.com/terms/terms-of-service.html */
+(function() {var h,n=this;function p(a){return void 0!==a}function aa(){}function ba(a){a.yb=function(){return a.zf?a.zf:a.zf=new a}}
+function ca(a){var b=typeof a;if("object"==b)if(a){if(a instanceof Array)return"array";if(a instanceof Object)return b;var c=Object.prototype.toString.call(a);if("[object Window]"==c)return"object";if("[object Array]"==c||"number"==typeof a.length&&"undefined"!=typeof a.splice&&"undefined"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable("splice"))return"array";if("[object Function]"==c||"undefined"!=typeof a.call&&"undefined"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable("call"))return"function"}else return"null";
+else if("function"==b&&"undefined"==typeof a.call)return"object";return b}function da(a){return"array"==ca(a)}function ea(a){var b=ca(a);return"array"==b||"object"==b&&"number"==typeof a.length}function q(a){return"string"==typeof a}function fa(a){return"number"==typeof a}function r(a){return"function"==ca(a)}function ga(a){var b=typeof a;return"object"==b&&null!=a||"function"==b}function ha(a,b,c){return a.call.apply(a.bind,arguments)}
+function ia(a,b,c){if(!a)throw Error();if(2<arguments.length){var d=Array.prototype.slice.call(arguments,2);return function(){var c=Array.prototype.slice.call(arguments);Array.prototype.unshift.apply(c,d);return a.apply(b,c)}}return function(){return a.apply(b,arguments)}}function u(a,b,c){u=Function.prototype.bind&&-1!=Function.prototype.bind.toString().indexOf("native code")?ha:ia;return u.apply(null,arguments)}var ja=Date.now||function(){return+new Date};
+function ka(a,b){function c(){}c.prototype=b.prototype;a.nh=b.prototype;a.prototype=new c;a.prototype.constructor=a;a.jh=function(a,c,f){for(var g=Array(arguments.length-2),k=2;k<arguments.length;k++)g[k-2]=arguments[k];return b.prototype[c].apply(a,g)}};function la(a){if(Error.captureStackTrace)Error.captureStackTrace(this,la);else{var b=Error().stack;b&&(this.stack=b)}a&&(this.message=String(a))}ka(la,Error);la.prototype.name="CustomError";function v(a,b){for(var c in a)b.call(void 0,a[c],c,a)}function ma(a,b){var c={},d;for(d in a)c[d]=b.call(void 0,a[d],d,a);return c}function na(a,b){for(var c in a)if(!b.call(void 0,a[c],c,a))return!1;return!0}function oa(a){var b=0,c;for(c in a)b++;return b}function pa(a){for(var b in a)return b}function qa(a){var b=[],c=0,d;for(d in a)b[c++]=a[d];return b}function ra(a){var b=[],c=0,d;for(d in a)b[c++]=d;return b}function sa(a,b){for(var c in a)if(a[c]==b)return!0;return!1}
+function ta(a,b,c){for(var d in a)if(b.call(c,a[d],d,a))return d}function ua(a,b){var c=ta(a,b,void 0);return c&&a[c]}function va(a){for(var b in a)return!1;return!0}function wa(a){var b={},c;for(c in a)b[c]=a[c];return b}var xa="constructor hasOwnProperty isPrototypeOf propertyIsEnumerable toLocaleString toString valueOf".split(" ");
+function ya(a,b){for(var c,d,e=1;e<arguments.length;e++){d=arguments[e];for(c in d)a[c]=d[c];for(var f=0;f<xa.length;f++)c=xa[f],Object.prototype.hasOwnProperty.call(d,c)&&(a[c]=d[c])}};function za(a){a=String(a);if(/^\s*$/.test(a)?0:/^[\],:{}\s\u2028\u2029]*$/.test(a.replace(/\\["\\\/bfnrtu]/g,"@").replace(/"[^"\\\n\r\u2028\u2029\x00-\x08\x0a-\x1f]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,"]").replace(/(?:^|:|,)(?:[\s\u2028\u2029]*\[)+/g,"")))try{return eval("("+a+")")}catch(b){}throw Error("Invalid JSON string: "+a);}function Aa(){this.Vd=void 0}
+function Ba(a,b,c){switch(typeof b){case "string":Ca(b,c);break;case "number":c.push(isFinite(b)&&!isNaN(b)?b:"null");break;case "boolean":c.push(b);break;case "undefined":c.push("null");break;case "object":if(null==b){c.push("null");break}if(da(b)){var d=b.length;c.push("[");for(var e="",f=0;f<d;f++)c.push(e),e=b[f],Ba(a,a.Vd?a.Vd.call(b,String(f),e):e,c),e=",";c.push("]");break}c.push("{");d="";for(f in b)Object.prototype.hasOwnProperty.call(b,f)&&(e=b[f],"function"!=typeof e&&(c.push(d),Ca(f,c),
+c.push(":"),Ba(a,a.Vd?a.Vd.call(b,f,e):e,c),d=","));c.push("}");break;case "function":break;default:throw Error("Unknown type: "+typeof b);}}var Da={'"':'\\"',"\\":"\\\\","/":"\\/","\b":"\\b","\f":"\\f","\n":"\\n","\r":"\\r","\t":"\\t","\x0B":"\\u000b"},Ea=/\uffff/.test("\uffff")?/[\\\"\x00-\x1f\x7f-\uffff]/g:/[\\\"\x00-\x1f\x7f-\xff]/g;
+function Ca(a,b){b.push('"',a.replace(Ea,function(a){if(a in Da)return Da[a];var b=a.charCodeAt(0),e="\\u";16>b?e+="000":256>b?e+="00":4096>b&&(e+="0");return Da[a]=e+b.toString(16)}),'"')};function Fa(){return Math.floor(2147483648*Math.random()).toString(36)+Math.abs(Math.floor(2147483648*Math.random())^ja()).toString(36)};var w;a:{var Ga=n.navigator;if(Ga){var Ha=Ga.userAgent;if(Ha){w=Ha;break a}}w=""};function Ia(){this.Ya=-1};function Ja(){this.Ya=-1;this.Ya=64;this.P=[];this.pe=[];this.eg=[];this.Od=[];this.Od[0]=128;for(var a=1;a<this.Ya;++a)this.Od[a]=0;this.ge=this.ec=0;this.reset()}ka(Ja,Ia);Ja.prototype.reset=function(){this.P[0]=1732584193;this.P[1]=4023233417;this.P[2]=2562383102;this.P[3]=271733878;this.P[4]=3285377520;this.ge=this.ec=0};
+function Ka(a,b,c){c||(c=0);var d=a.eg;if(q(b))for(var e=0;16>e;e++)d[e]=b.charCodeAt(c)<<24|b.charCodeAt(c+1)<<16|b.charCodeAt(c+2)<<8|b.charCodeAt(c+3),c+=4;else for(e=0;16>e;e++)d[e]=b[c]<<24|b[c+1]<<16|b[c+2]<<8|b[c+3],c+=4;for(e=16;80>e;e++){var f=d[e-3]^d[e-8]^d[e-14]^d[e-16];d[e]=(f<<1|f>>>31)&4294967295}b=a.P[0];c=a.P[1];for(var g=a.P[2],k=a.P[3],m=a.P[4],l,e=0;80>e;e++)40>e?20>e?(f=k^c&(g^k),l=1518500249):(f=c^g^k,l=1859775393):60>e?(f=c&g|k&(c|g),l=2400959708):(f=c^g^k,l=3395469782),f=(b<<
+5|b>>>27)+f+m+l+d[e]&4294967295,m=k,k=g,g=(c<<30|c>>>2)&4294967295,c=b,b=f;a.P[0]=a.P[0]+b&4294967295;a.P[1]=a.P[1]+c&4294967295;a.P[2]=a.P[2]+g&4294967295;a.P[3]=a.P[3]+k&4294967295;a.P[4]=a.P[4]+m&4294967295}
+Ja.prototype.update=function(a,b){if(null!=a){p(b)||(b=a.length);for(var c=b-this.Ya,d=0,e=this.pe,f=this.ec;d<b;){if(0==f)for(;d<=c;)Ka(this,a,d),d+=this.Ya;if(q(a))for(;d<b;){if(e[f]=a.charCodeAt(d),++f,++d,f==this.Ya){Ka(this,e);f=0;break}}else for(;d<b;)if(e[f]=a[d],++f,++d,f==this.Ya){Ka(this,e);f=0;break}}this.ec=f;this.ge+=b}};var x=Array.prototype,La=x.indexOf?function(a,b,c){return x.indexOf.call(a,b,c)}:function(a,b,c){c=null==c?0:0>c?Math.max(0,a.length+c):c;if(q(a))return q(b)&&1==b.length?a.indexOf(b,c):-1;for(;c<a.length;c++)if(c in a&&a[c]===b)return c;return-1},Ma=x.forEach?function(a,b,c){x.forEach.call(a,b,c)}:function(a,b,c){for(var d=a.length,e=q(a)?a.split(""):a,f=0;f<d;f++)f in e&&b.call(c,e[f],f,a)},Na=x.filter?function(a,b,c){return x.filter.call(a,b,c)}:function(a,b,c){for(var d=a.length,e=[],f=0,g=q(a)?
+a.split(""):a,k=0;k<d;k++)if(k in g){var m=g[k];b.call(c,m,k,a)&&(e[f++]=m)}return e},Oa=x.map?function(a,b,c){return x.map.call(a,b,c)}:function(a,b,c){for(var d=a.length,e=Array(d),f=q(a)?a.split(""):a,g=0;g<d;g++)g in f&&(e[g]=b.call(c,f[g],g,a));return e},Pa=x.reduce?function(a,b,c,d){for(var e=[],f=1,g=arguments.length;f<g;f++)e.push(arguments[f]);d&&(e[0]=u(b,d));return x.reduce.apply(a,e)}:function(a,b,c,d){var e=c;Ma(a,function(c,g){e=b.call(d,e,c,g,a)});return e},Qa=x.every?function(a,b,
+c){return x.every.call(a,b,c)}:function(a,b,c){for(var d=a.length,e=q(a)?a.split(""):a,f=0;f<d;f++)if(f in e&&!b.call(c,e[f],f,a))return!1;return!0};function Ra(a,b){var c=Sa(a,b,void 0);return 0>c?null:q(a)?a.charAt(c):a[c]}function Sa(a,b,c){for(var d=a.length,e=q(a)?a.split(""):a,f=0;f<d;f++)if(f in e&&b.call(c,e[f],f,a))return f;return-1}function Ta(a,b){var c=La(a,b);0<=c&&x.splice.call(a,c,1)}function Ua(a,b,c){return 2>=arguments.length?x.slice.call(a,b):x.slice.call(a,b,c)}
+function Va(a,b){a.sort(b||Wa)}function Wa(a,b){return a>b?1:a<b?-1:0};function Xa(a){n.setTimeout(function(){throw a;},0)}var Ya;
+function Za(){var a=n.MessageChannel;"undefined"===typeof a&&"undefined"!==typeof window&&window.postMessage&&window.addEventListener&&-1==w.indexOf("Presto")&&(a=function(){var a=document.createElement("iframe");a.style.display="none";a.src="";document.documentElement.appendChild(a);var b=a.contentWindow,a=b.document;a.open();a.write("");a.close();var c="callImmediate"+Math.random(),d="file:"==b.location.protocol?"*":b.location.protocol+"//"+b.location.host,a=u(function(a){if(("*"==d||a.origin==
+d)&&a.data==c)this.port1.onmessage()},this);b.addEventListener("message",a,!1);this.port1={};this.port2={postMessage:function(){b.postMessage(c,d)}}});if("undefined"!==typeof a&&-1==w.indexOf("Trident")&&-1==w.indexOf("MSIE")){var b=new a,c={},d=c;b.port1.onmessage=function(){if(p(c.next)){c=c.next;var a=c.hb;c.hb=null;a()}};return function(a){d.next={hb:a};d=d.next;b.port2.postMessage(0)}}return"undefined"!==typeof document&&"onreadystatechange"in document.createElement("script")?function(a){var b=
+document.createElement("script");b.onreadystatechange=function(){b.onreadystatechange=null;b.parentNode.removeChild(b);b=null;a();a=null};document.documentElement.appendChild(b)}:function(a){n.setTimeout(a,0)}};function $a(a,b){ab||bb();cb||(ab(),cb=!0);db.push(new eb(a,b))}var ab;function bb(){if(n.Promise&&n.Promise.resolve){var a=n.Promise.resolve();ab=function(){a.then(fb)}}else ab=function(){var a=fb;!r(n.setImmediate)||n.Window&&n.Window.prototype&&n.Window.prototype.setImmediate==n.setImmediate?(Ya||(Ya=Za()),Ya(a)):n.setImmediate(a)}}var cb=!1,db=[];[].push(function(){cb=!1;db=[]});
+function fb(){for(;db.length;){var a=db;db=[];for(var b=0;b<a.length;b++){var c=a[b];try{c.yg.call(c.scope)}catch(d){Xa(d)}}}cb=!1}function eb(a,b){this.yg=a;this.scope=b};var gb=-1!=w.indexOf("Opera")||-1!=w.indexOf("OPR"),hb=-1!=w.indexOf("Trident")||-1!=w.indexOf("MSIE"),ib=-1!=w.indexOf("Gecko")&&-1==w.toLowerCase().indexOf("webkit")&&!(-1!=w.indexOf("Trident")||-1!=w.indexOf("MSIE")),jb=-1!=w.toLowerCase().indexOf("webkit");
+(function(){var a="",b;if(gb&&n.opera)return a=n.opera.version,r(a)?a():a;ib?b=/rv\:([^\);]+)(\)|;)/:hb?b=/\b(?:MSIE|rv)[: ]([^\);]+)(\)|;)/:jb&&(b=/WebKit\/(\S+)/);b&&(a=(a=b.exec(w))?a[1]:"");return hb&&(b=(b=n.document)?b.documentMode:void 0,b>parseFloat(a))?String(b):a})();var kb=null,lb=null,mb=null;function nb(a,b){if(!ea(a))throw Error("encodeByteArray takes an array as a parameter");ob();for(var c=b?lb:kb,d=[],e=0;e<a.length;e+=3){var f=a[e],g=e+1<a.length,k=g?a[e+1]:0,m=e+2<a.length,l=m?a[e+2]:0,t=f>>2,f=(f&3)<<4|k>>4,k=(k&15)<<2|l>>6,l=l&63;m||(l=64,g||(k=64));d.push(c[t],c[f],c[k],c[l])}return d.join("")}
+function ob(){if(!kb){kb={};lb={};mb={};for(var a=0;65>a;a++)kb[a]="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".charAt(a),lb[a]="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_.".charAt(a),mb[lb[a]]=a,62<=a&&(mb["ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".charAt(a)]=a)}};function pb(a,b){this.N=qb;this.Rf=void 0;this.Ba=this.Ha=null;this.yd=this.ye=!1;if(a==rb)sb(this,tb,b);else try{var c=this;a.call(b,function(a){sb(c,tb,a)},function(a){if(!(a instanceof ub))try{if(a instanceof Error)throw a;throw Error("Promise rejected.");}catch(b){}sb(c,vb,a)})}catch(d){sb(this,vb,d)}}var qb=0,tb=2,vb=3;function rb(){}pb.prototype.then=function(a,b,c){return wb(this,r(a)?a:null,r(b)?b:null,c)};pb.prototype.then=pb.prototype.then;pb.prototype.$goog_Thenable=!0;
+pb.prototype.cancel=function(a){this.N==qb&&$a(function(){var b=new ub(a);xb(this,b)},this)};function xb(a,b){if(a.N==qb)if(a.Ha){var c=a.Ha;if(c.Ba){for(var d=0,e=-1,f=0,g;g=c.Ba[f];f++)if(g=g.o)if(d++,g==a&&(e=f),0<=e&&1<d)break;0<=e&&(c.N==qb&&1==d?xb(c,b):(d=c.Ba.splice(e,1)[0],yb(c,d,vb,b)))}a.Ha=null}else sb(a,vb,b)}function zb(a,b){a.Ba&&a.Ba.length||a.N!=tb&&a.N!=vb||Ab(a);a.Ba||(a.Ba=[]);a.Ba.push(b)}
+function wb(a,b,c,d){var e={o:null,Hf:null,Jf:null};e.o=new pb(function(a,g){e.Hf=b?function(c){try{var e=b.call(d,c);a(e)}catch(l){g(l)}}:a;e.Jf=c?function(b){try{var e=c.call(d,b);!p(e)&&b instanceof ub?g(b):a(e)}catch(l){g(l)}}:g});e.o.Ha=a;zb(a,e);return e.o}pb.prototype.Yf=function(a){this.N=qb;sb(this,tb,a)};pb.prototype.Zf=function(a){this.N=qb;sb(this,vb,a)};
+function sb(a,b,c){if(a.N==qb){if(a==c)b=vb,c=new TypeError("Promise cannot resolve to itself");else{var d;if(c)try{d=!!c.$goog_Thenable}catch(e){d=!1}else d=!1;if(d){a.N=1;c.then(a.Yf,a.Zf,a);return}if(ga(c))try{var f=c.then;if(r(f)){Bb(a,c,f);return}}catch(g){b=vb,c=g}}a.Rf=c;a.N=b;a.Ha=null;Ab(a);b!=vb||c instanceof ub||Cb(a,c)}}function Bb(a,b,c){function d(b){f||(f=!0,a.Zf(b))}function e(b){f||(f=!0,a.Yf(b))}a.N=1;var f=!1;try{c.call(b,e,d)}catch(g){d(g)}}
+function Ab(a){a.ye||(a.ye=!0,$a(a.wg,a))}pb.prototype.wg=function(){for(;this.Ba&&this.Ba.length;){var a=this.Ba;this.Ba=null;for(var b=0;b<a.length;b++)yb(this,a[b],this.N,this.Rf)}this.ye=!1};function yb(a,b,c,d){if(c==tb)b.Hf(d);else{if(b.o)for(;a&&a.yd;a=a.Ha)a.yd=!1;b.Jf(d)}}function Cb(a,b){a.yd=!0;$a(function(){a.yd&&Db.call(null,b)})}var Db=Xa;function ub(a){la.call(this,a)}ka(ub,la);ub.prototype.name="cancel";var Eb=Eb||"2.4.0";function y(a,b){return Object.prototype.hasOwnProperty.call(a,b)}function z(a,b){if(Object.prototype.hasOwnProperty.call(a,b))return a[b]}function Fb(a,b){for(var c in a)Object.prototype.hasOwnProperty.call(a,c)&&b(c,a[c])}function Gb(a){var b={};Fb(a,function(a,d){b[a]=d});return b}function Hb(a){return"object"===typeof a&&null!==a};function Ib(a){var b=[];Fb(a,function(a,d){da(d)?Ma(d,function(d){b.push(encodeURIComponent(a)+"="+encodeURIComponent(d))}):b.push(encodeURIComponent(a)+"="+encodeURIComponent(d))});return b.length?"&"+b.join("&"):""}function Jb(a){var b={};a=a.replace(/^\?/,"").split("&");Ma(a,function(a){a&&(a=a.split("="),b[a[0]]=a[1])});return b};function Kb(a,b){if(!a)throw Lb(b);}function Lb(a){return Error("Firebase ("+Eb+") INTERNAL ASSERT FAILED: "+a)};var Mb=n.Promise||pb;function B(){var a=this;this.reject=this.resolve=null;this.D=new Mb(function(b,c){a.resolve=b;a.reject=c})}function C(a,b){return function(c,d){c?a.reject(c):a.resolve(d);r(b)&&(Nb(a.D),1===b.length?b(c):b(c,d))}}function Nb(a){a.then(void 0,aa)};function Ob(a){for(var b=[],c=0,d=0;d<a.length;d++){var e=a.charCodeAt(d);55296<=e&&56319>=e&&(e-=55296,d++,Kb(d<a.length,"Surrogate pair missing trail surrogate."),e=65536+(e<<10)+(a.charCodeAt(d)-56320));128>e?b[c++]=e:(2048>e?b[c++]=e>>6|192:(65536>e?b[c++]=e>>12|224:(b[c++]=e>>18|240,b[c++]=e>>12&63|128),b[c++]=e>>6&63|128),b[c++]=e&63|128)}return b}function Pb(a){for(var b=0,c=0;c<a.length;c++){var d=a.charCodeAt(c);128>d?b++:2048>d?b+=2:55296<=d&&56319>=d?(b+=4,c++):b+=3}return b};function D(a,b,c,d){var e;d<b?e="at least "+b:d>c&&(e=0===c?"none":"no more than "+c);if(e)throw Error(a+" failed: Was called with "+d+(1===d?" argument.":" arguments.")+" Expects "+e+".");}function E(a,b,c){var d="";switch(b){case 1:d=c?"first":"First";break;case 2:d=c?"second":"Second";break;case 3:d=c?"third":"Third";break;case 4:d=c?"fourth":"Fourth";break;default:throw Error("errorPrefix called with argumentNumber > 4.  Need to update it?");}return a=a+" failed: "+(d+" argument ")}
+function F(a,b,c,d){if((!d||p(c))&&!r(c))throw Error(E(a,b,d)+"must be a valid function.");}function Qb(a,b,c){if(p(c)&&(!ga(c)||null===c))throw Error(E(a,b,!0)+"must be a valid context object.");};function Rb(a){return"undefined"!==typeof JSON&&p(JSON.parse)?JSON.parse(a):za(a)}function G(a){if("undefined"!==typeof JSON&&p(JSON.stringify))a=JSON.stringify(a);else{var b=[];Ba(new Aa,a,b);a=b.join("")}return a};function Sb(){this.Zd=H}Sb.prototype.j=function(a){return this.Zd.S(a)};Sb.prototype.toString=function(){return this.Zd.toString()};function Tb(){}Tb.prototype.uf=function(){return null};Tb.prototype.Ce=function(){return null};var Ub=new Tb;function Vb(a,b,c){this.bg=a;this.Oa=b;this.Nd=c}Vb.prototype.uf=function(a){var b=this.Oa.Q;if(Wb(b,a))return b.j().T(a);b=null!=this.Nd?new Xb(this.Nd,!0,!1):this.Oa.w();return this.bg.Bc(a,b)};Vb.prototype.Ce=function(a,b,c){var d=null!=this.Nd?this.Nd:Yb(this.Oa);a=this.bg.qe(d,b,1,c,a);return 0===a.length?null:a[0]};function Zb(){this.xb=[]}function $b(a,b){for(var c=null,d=0;d<b.length;d++){var e=b[d],f=e.cc();null===c||f.ea(c.cc())||(a.xb.push(c),c=null);null===c&&(c=new ac(f));c.add(e)}c&&a.xb.push(c)}function bc(a,b,c){$b(a,c);cc(a,function(a){return a.ea(b)})}function dc(a,b,c){$b(a,c);cc(a,function(a){return a.contains(b)||b.contains(a)})}
+function cc(a,b){for(var c=!0,d=0;d<a.xb.length;d++){var e=a.xb[d];if(e)if(e=e.cc(),b(e)){for(var e=a.xb[d],f=0;f<e.xd.length;f++){var g=e.xd[f];if(null!==g){e.xd[f]=null;var k=g.Zb();ec&&fc("event: "+g.toString());gc(k)}}a.xb[d]=null}else c=!1}c&&(a.xb=[])}function ac(a){this.ta=a;this.xd=[]}ac.prototype.add=function(a){this.xd.push(a)};ac.prototype.cc=function(){return this.ta};function J(a,b,c,d){this.type=a;this.Na=b;this.Za=c;this.Oe=d;this.Td=void 0}function hc(a){return new J(ic,a)}var ic="value";function jc(a,b,c,d){this.xe=b;this.be=c;this.Td=d;this.wd=a}jc.prototype.cc=function(){var a=this.be.Mb();return"value"===this.wd?a.path:a.parent().path};jc.prototype.De=function(){return this.wd};jc.prototype.Zb=function(){return this.xe.Zb(this)};jc.prototype.toString=function(){return this.cc().toString()+":"+this.wd+":"+G(this.be.qf())};function kc(a,b,c){this.xe=a;this.error=b;this.path=c}kc.prototype.cc=function(){return this.path};kc.prototype.De=function(){return"cancel"};
+kc.prototype.Zb=function(){return this.xe.Zb(this)};kc.prototype.toString=function(){return this.path.toString()+":cancel"};function Xb(a,b,c){this.A=a;this.ga=b;this.Yb=c}function lc(a){return a.ga}function mc(a){return a.Yb}function nc(a,b){return b.e()?a.ga&&!a.Yb:Wb(a,K(b))}function Wb(a,b){return a.ga&&!a.Yb||a.A.Fa(b)}Xb.prototype.j=function(){return this.A};function oc(a){this.pg=a;this.Gd=null}oc.prototype.get=function(){var a=this.pg.get(),b=wa(a);if(this.Gd)for(var c in this.Gd)b[c]-=this.Gd[c];this.Gd=a;return b};function pc(a,b){this.Vf={};this.hd=new oc(a);this.da=b;var c=1E4+2E4*Math.random();setTimeout(u(this.Of,this),Math.floor(c))}pc.prototype.Of=function(){var a=this.hd.get(),b={},c=!1,d;for(d in a)0<a[d]&&y(this.Vf,d)&&(b[d]=a[d],c=!0);c&&this.da.Ye(b);setTimeout(u(this.Of,this),Math.floor(6E5*Math.random()))};function qc(){this.Hc={}}function rc(a,b,c){p(c)||(c=1);y(a.Hc,b)||(a.Hc[b]=0);a.Hc[b]+=c}qc.prototype.get=function(){return wa(this.Hc)};var sc={},tc={};function uc(a){a=a.toString();sc[a]||(sc[a]=new qc);return sc[a]}function vc(a,b){var c=a.toString();tc[c]||(tc[c]=b());return tc[c]};function L(a,b){this.name=a;this.U=b}function wc(a,b){return new L(a,b)};function xc(a,b){return yc(a.name,b.name)}function zc(a,b){return yc(a,b)};function Ac(a,b,c){this.type=Bc;this.source=a;this.path=b;this.Ja=c}Ac.prototype.$c=function(a){return this.path.e()?new Ac(this.source,M,this.Ja.T(a)):new Ac(this.source,N(this.path),this.Ja)};Ac.prototype.toString=function(){return"Operation("+this.path+": "+this.source.toString()+" overwrite: "+this.Ja.toString()+")"};function Cc(a,b){this.type=Dc;this.source=a;this.path=b}Cc.prototype.$c=function(){return this.path.e()?new Cc(this.source,M):new Cc(this.source,N(this.path))};Cc.prototype.toString=function(){return"Operation("+this.path+": "+this.source.toString()+" listen_complete)"};function Ec(a,b){this.Pa=a;this.xa=b?b:Fc}h=Ec.prototype;h.Sa=function(a,b){return new Ec(this.Pa,this.xa.Sa(a,b,this.Pa).$(null,null,!1,null,null))};h.remove=function(a){return new Ec(this.Pa,this.xa.remove(a,this.Pa).$(null,null,!1,null,null))};h.get=function(a){for(var b,c=this.xa;!c.e();){b=this.Pa(a,c.key);if(0===b)return c.value;0>b?c=c.left:0<b&&(c=c.right)}return null};
+function Gc(a,b){for(var c,d=a.xa,e=null;!d.e();){c=a.Pa(b,d.key);if(0===c){if(d.left.e())return e?e.key:null;for(d=d.left;!d.right.e();)d=d.right;return d.key}0>c?d=d.left:0<c&&(e=d,d=d.right)}throw Error("Attempted to find predecessor key for a nonexistent key.  What gives?");}h.e=function(){return this.xa.e()};h.count=function(){return this.xa.count()};h.Vc=function(){return this.xa.Vc()};h.jc=function(){return this.xa.jc()};h.ka=function(a){return this.xa.ka(a)};
+h.ac=function(a){return new Hc(this.xa,null,this.Pa,!1,a)};h.bc=function(a,b){return new Hc(this.xa,a,this.Pa,!1,b)};h.dc=function(a,b){return new Hc(this.xa,a,this.Pa,!0,b)};h.xf=function(a){return new Hc(this.xa,null,this.Pa,!0,a)};function Hc(a,b,c,d,e){this.Xd=e||null;this.Je=d;this.Ta=[];for(e=1;!a.e();)if(e=b?c(a.key,b):1,d&&(e*=-1),0>e)a=this.Je?a.left:a.right;else if(0===e){this.Ta.push(a);break}else this.Ta.push(a),a=this.Je?a.right:a.left}
+function Ic(a){if(0===a.Ta.length)return null;var b=a.Ta.pop(),c;c=a.Xd?a.Xd(b.key,b.value):{key:b.key,value:b.value};if(a.Je)for(b=b.left;!b.e();)a.Ta.push(b),b=b.right;else for(b=b.right;!b.e();)a.Ta.push(b),b=b.left;return c}function Jc(a){if(0===a.Ta.length)return null;var b;b=a.Ta;b=b[b.length-1];return a.Xd?a.Xd(b.key,b.value):{key:b.key,value:b.value}}function Kc(a,b,c,d,e){this.key=a;this.value=b;this.color=null!=c?c:!0;this.left=null!=d?d:Fc;this.right=null!=e?e:Fc}h=Kc.prototype;
+h.$=function(a,b,c,d,e){return new Kc(null!=a?a:this.key,null!=b?b:this.value,null!=c?c:this.color,null!=d?d:this.left,null!=e?e:this.right)};h.count=function(){return this.left.count()+1+this.right.count()};h.e=function(){return!1};h.ka=function(a){return this.left.ka(a)||a(this.key,this.value)||this.right.ka(a)};function Lc(a){return a.left.e()?a:Lc(a.left)}h.Vc=function(){return Lc(this).key};h.jc=function(){return this.right.e()?this.key:this.right.jc()};
+h.Sa=function(a,b,c){var d,e;e=this;d=c(a,e.key);e=0>d?e.$(null,null,null,e.left.Sa(a,b,c),null):0===d?e.$(null,b,null,null,null):e.$(null,null,null,null,e.right.Sa(a,b,c));return Mc(e)};function Nc(a){if(a.left.e())return Fc;a.left.ha()||a.left.left.ha()||(a=Oc(a));a=a.$(null,null,null,Nc(a.left),null);return Mc(a)}
+h.remove=function(a,b){var c,d;c=this;if(0>b(a,c.key))c.left.e()||c.left.ha()||c.left.left.ha()||(c=Oc(c)),c=c.$(null,null,null,c.left.remove(a,b),null);else{c.left.ha()&&(c=Pc(c));c.right.e()||c.right.ha()||c.right.left.ha()||(c=Qc(c),c.left.left.ha()&&(c=Pc(c),c=Qc(c)));if(0===b(a,c.key)){if(c.right.e())return Fc;d=Lc(c.right);c=c.$(d.key,d.value,null,null,Nc(c.right))}c=c.$(null,null,null,null,c.right.remove(a,b))}return Mc(c)};h.ha=function(){return this.color};
+function Mc(a){a.right.ha()&&!a.left.ha()&&(a=Rc(a));a.left.ha()&&a.left.left.ha()&&(a=Pc(a));a.left.ha()&&a.right.ha()&&(a=Qc(a));return a}function Oc(a){a=Qc(a);a.right.left.ha()&&(a=a.$(null,null,null,null,Pc(a.right)),a=Rc(a),a=Qc(a));return a}function Rc(a){return a.right.$(null,null,a.color,a.$(null,null,!0,null,a.right.left),null)}function Pc(a){return a.left.$(null,null,a.color,null,a.$(null,null,!0,a.left.right,null))}
+function Qc(a){return a.$(null,null,!a.color,a.left.$(null,null,!a.left.color,null,null),a.right.$(null,null,!a.right.color,null,null))}function Sc(){}h=Sc.prototype;h.$=function(){return this};h.Sa=function(a,b){return new Kc(a,b,null)};h.remove=function(){return this};h.count=function(){return 0};h.e=function(){return!0};h.ka=function(){return!1};h.Vc=function(){return null};h.jc=function(){return null};h.ha=function(){return!1};var Fc=new Sc;function Tc(a,b){return a&&"object"===typeof a?(O(".sv"in a,"Unexpected leaf node or priority contents"),b[a[".sv"]]):a}function Uc(a,b){var c=new Vc;Wc(a,new P(""),function(a,e){c.rc(a,Xc(e,b))});return c}function Xc(a,b){var c=a.C().J(),c=Tc(c,b),d;if(a.L()){var e=Tc(a.Ea(),b);return e!==a.Ea()||c!==a.C().J()?new Yc(e,Q(c)):a}d=a;c!==a.C().J()&&(d=d.ia(new Yc(c)));a.R(R,function(a,c){var e=Xc(c,b);e!==c&&(d=d.W(a,e))});return d};function Zc(){this.Ac={}}Zc.prototype.set=function(a,b){null==b?delete this.Ac[a]:this.Ac[a]=b};Zc.prototype.get=function(a){return y(this.Ac,a)?this.Ac[a]:null};Zc.prototype.remove=function(a){delete this.Ac[a]};Zc.prototype.Af=!0;function $c(a){this.Ic=a;this.Sd="firebase:"}h=$c.prototype;h.set=function(a,b){null==b?this.Ic.removeItem(this.Sd+a):this.Ic.setItem(this.Sd+a,G(b))};h.get=function(a){a=this.Ic.getItem(this.Sd+a);return null==a?null:Rb(a)};h.remove=function(a){this.Ic.removeItem(this.Sd+a)};h.Af=!1;h.toString=function(){return this.Ic.toString()};function ad(a){try{if("undefined"!==typeof window&&"undefined"!==typeof window[a]){var b=window[a];b.setItem("firebase:sentinel","cache");b.removeItem("firebase:sentinel");return new $c(b)}}catch(c){}return new Zc}var bd=ad("localStorage"),cd=ad("sessionStorage");function dd(a,b,c,d,e){this.host=a.toLowerCase();this.domain=this.host.substr(this.host.indexOf(".")+1);this.ob=b;this.lc=c;this.hh=d;this.Rd=e||"";this.ab=bd.get("host:"+a)||this.host}function ed(a,b){b!==a.ab&&(a.ab=b,"s-"===a.ab.substr(0,2)&&bd.set("host:"+a.host,a.ab))}
+function fd(a,b,c){O("string"===typeof b,"typeof type must == string");O("object"===typeof c,"typeof params must == object");if(b===gd)b=(a.ob?"wss://":"ws://")+a.ab+"/.ws?";else if(b===hd)b=(a.ob?"https://":"http://")+a.ab+"/.lp?";else throw Error("Unknown connection type: "+b);a.host!==a.ab&&(c.ns=a.lc);var d=[];v(c,function(a,b){d.push(b+"="+a)});return b+d.join("&")}dd.prototype.toString=function(){var a=(this.ob?"https://":"http://")+this.host;this.Rd&&(a+="<"+this.Rd+">");return a};var id=function(){var a=1;return function(){return a++}}(),O=Kb,jd=Lb;
+function kd(a){try{var b;if("undefined"!==typeof atob)b=atob(a);else{ob();for(var c=mb,d=[],e=0;e<a.length;){var f=c[a.charAt(e++)],g=e<a.length?c[a.charAt(e)]:0;++e;var k=e<a.length?c[a.charAt(e)]:64;++e;var m=e<a.length?c[a.charAt(e)]:64;++e;if(null==f||null==g||null==k||null==m)throw Error();d.push(f<<2|g>>4);64!=k&&(d.push(g<<4&240|k>>2),64!=m&&d.push(k<<6&192|m))}if(8192>d.length)b=String.fromCharCode.apply(null,d);else{a="";for(c=0;c<d.length;c+=8192)a+=String.fromCharCode.apply(null,Ua(d,c,
+c+8192));b=a}}return b}catch(l){fc("base64Decode failed: ",l)}return null}function ld(a){var b=Ob(a);a=new Ja;a.update(b);var b=[],c=8*a.ge;56>a.ec?a.update(a.Od,56-a.ec):a.update(a.Od,a.Ya-(a.ec-56));for(var d=a.Ya-1;56<=d;d--)a.pe[d]=c&255,c/=256;Ka(a,a.pe);for(d=c=0;5>d;d++)for(var e=24;0<=e;e-=8)b[c]=a.P[d]>>e&255,++c;return nb(b)}
+function md(a){for(var b="",c=0;c<arguments.length;c++)b=ea(arguments[c])?b+md.apply(null,arguments[c]):"object"===typeof arguments[c]?b+G(arguments[c]):b+arguments[c],b+=" ";return b}var ec=null,nd=!0;
+function od(a,b){Kb(!b||!0===a||!1===a,"Can't turn on custom loggers persistently.");!0===a?("undefined"!==typeof console&&("function"===typeof console.log?ec=u(console.log,console):"object"===typeof console.log&&(ec=function(a){console.log(a)})),b&&cd.set("logging_enabled",!0)):r(a)?ec=a:(ec=null,cd.remove("logging_enabled"))}function fc(a){!0===nd&&(nd=!1,null===ec&&!0===cd.get("logging_enabled")&&od(!0));if(ec){var b=md.apply(null,arguments);ec(b)}}
+function pd(a){return function(){fc(a,arguments)}}function qd(a){if("undefined"!==typeof console){var b="FIREBASE INTERNAL ERROR: "+md.apply(null,arguments);"undefined"!==typeof console.error?console.error(b):console.log(b)}}function rd(a){var b=md.apply(null,arguments);throw Error("FIREBASE FATAL ERROR: "+b);}function S(a){if("undefined"!==typeof console){var b="FIREBASE WARNING: "+md.apply(null,arguments);"undefined"!==typeof console.warn?console.warn(b):console.log(b)}}
+function sd(a){var b="",c="",d="",e="",f=!0,g="https",k=443;if(q(a)){var m=a.indexOf("//");0<=m&&(g=a.substring(0,m-1),a=a.substring(m+2));m=a.indexOf("/");-1===m&&(m=a.length);b=a.substring(0,m);e="";a=a.substring(m).split("/");for(m=0;m<a.length;m++)if(0<a[m].length){var l=a[m];try{l=decodeURIComponent(l.replace(/\+/g," "))}catch(t){}e+="/"+l}a=b.split(".");3===a.length?(c=a[1],d=a[0].toLowerCase()):2===a.length&&(c=a[0]);m=b.indexOf(":");0<=m&&(f="https"===g||"wss"===g,k=b.substring(m+1),isFinite(k)&&
+(k=String(k)),k=q(k)?/^\s*-?0x/i.test(k)?parseInt(k,16):parseInt(k,10):NaN)}return{host:b,port:k,domain:c,eh:d,ob:f,scheme:g,bd:e}}function td(a){return fa(a)&&(a!=a||a==Number.POSITIVE_INFINITY||a==Number.NEGATIVE_INFINITY)}
+function ud(a){if("complete"===document.readyState)a();else{var b=!1,c=function(){document.body?b||(b=!0,a()):setTimeout(c,Math.floor(10))};document.addEventListener?(document.addEventListener("DOMContentLoaded",c,!1),window.addEventListener("load",c,!1)):document.attachEvent&&(document.attachEvent("onreadystatechange",function(){"complete"===document.readyState&&c()}),window.attachEvent("onload",c))}}
+function yc(a,b){if(a===b)return 0;if("[MIN_NAME]"===a||"[MAX_NAME]"===b)return-1;if("[MIN_NAME]"===b||"[MAX_NAME]"===a)return 1;var c=vd(a),d=vd(b);return null!==c?null!==d?0==c-d?a.length-b.length:c-d:-1:null!==d?1:a<b?-1:1}function wd(a,b){if(b&&a in b)return b[a];throw Error("Missing required key ("+a+") in object: "+G(b));}
+function xd(a){if("object"!==typeof a||null===a)return G(a);var b=[],c;for(c in a)b.push(c);b.sort();c="{";for(var d=0;d<b.length;d++)0!==d&&(c+=","),c+=G(b[d]),c+=":",c+=xd(a[b[d]]);return c+"}"}function yd(a,b){if(a.length<=b)return[a];for(var c=[],d=0;d<a.length;d+=b)d+b>a?c.push(a.substring(d,a.length)):c.push(a.substring(d,d+b));return c}function zd(a,b){if(da(a))for(var c=0;c<a.length;++c)b(c,a[c]);else v(a,b)}
+function Ad(a){O(!td(a),"Invalid JSON number");var b,c,d,e;0===a?(d=c=0,b=-Infinity===1/a?1:0):(b=0>a,a=Math.abs(a),a>=Math.pow(2,-1022)?(d=Math.min(Math.floor(Math.log(a)/Math.LN2),1023),c=d+1023,d=Math.round(a*Math.pow(2,52-d)-Math.pow(2,52))):(c=0,d=Math.round(a/Math.pow(2,-1074))));e=[];for(a=52;a;--a)e.push(d%2?1:0),d=Math.floor(d/2);for(a=11;a;--a)e.push(c%2?1:0),c=Math.floor(c/2);e.push(b?1:0);e.reverse();b=e.join("");c="";for(a=0;64>a;a+=8)d=parseInt(b.substr(a,8),2).toString(16),1===d.length&&
+(d="0"+d),c+=d;return c.toLowerCase()}var Bd=/^-?\d{1,10}$/;function vd(a){return Bd.test(a)&&(a=Number(a),-2147483648<=a&&2147483647>=a)?a:null}function gc(a){try{a()}catch(b){setTimeout(function(){S("Exception was thrown by user callback.",b.stack||"");throw b;},Math.floor(0))}}function T(a,b){if(r(a)){var c=Array.prototype.slice.call(arguments,1).slice();gc(function(){a.apply(null,c)})}};function Cd(a){var b={},c={},d={},e="";try{var f=a.split("."),b=Rb(kd(f[0])||""),c=Rb(kd(f[1])||""),e=f[2],d=c.d||{};delete c.d}catch(g){}return{kh:b,Ec:c,data:d,ah:e}}function Dd(a){a=Cd(a).Ec;return"object"===typeof a&&a.hasOwnProperty("iat")?z(a,"iat"):null}function Ed(a){a=Cd(a);var b=a.Ec;return!!a.ah&&!!b&&"object"===typeof b&&b.hasOwnProperty("iat")};function Fd(a){this.Y=a;this.g=a.n.g}function Gd(a,b,c,d){var e=[],f=[];Ma(b,function(b){"child_changed"===b.type&&a.g.Dd(b.Oe,b.Na)&&f.push(new J("child_moved",b.Na,b.Za))});Hd(a,e,"child_removed",b,d,c);Hd(a,e,"child_added",b,d,c);Hd(a,e,"child_moved",f,d,c);Hd(a,e,"child_changed",b,d,c);Hd(a,e,ic,b,d,c);return e}function Hd(a,b,c,d,e,f){d=Na(d,function(a){return a.type===c});Va(d,u(a.qg,a));Ma(d,function(c){var d=Id(a,c,f);Ma(e,function(e){e.Qf(c.type)&&b.push(e.createEvent(d,a.Y))})})}
+function Id(a,b,c){"value"!==b.type&&"child_removed"!==b.type&&(b.Td=c.wf(b.Za,b.Na,a.g));return b}Fd.prototype.qg=function(a,b){if(null==a.Za||null==b.Za)throw jd("Should only compare child_ events.");return this.g.compare(new L(a.Za,a.Na),new L(b.Za,b.Na))};function Jd(){this.ib={}}
+function Kd(a,b){var c=b.type,d=b.Za;O("child_added"==c||"child_changed"==c||"child_removed"==c,"Only child changes supported for tracking");O(".priority"!==d,"Only non-priority child changes can be tracked.");var e=z(a.ib,d);if(e){var f=e.type;if("child_added"==c&&"child_removed"==f)a.ib[d]=new J("child_changed",b.Na,d,e.Na);else if("child_removed"==c&&"child_added"==f)delete a.ib[d];else if("child_removed"==c&&"child_changed"==f)a.ib[d]=new J("child_removed",e.Oe,d);else if("child_changed"==c&&
+"child_added"==f)a.ib[d]=new J("child_added",b.Na,d);else if("child_changed"==c&&"child_changed"==f)a.ib[d]=new J("child_changed",b.Na,d,e.Oe);else throw jd("Illegal combination of changes: "+b+" occurred after "+e);}else a.ib[d]=b};function Ld(a){this.g=a}h=Ld.prototype;h.H=function(a,b,c,d,e,f){O(a.Mc(this.g),"A node must be indexed if only a child is updated");e=a.T(b);if(e.S(d).ea(c.S(d))&&e.e()==c.e())return a;null!=f&&(c.e()?a.Fa(b)?Kd(f,new J("child_removed",e,b)):O(a.L(),"A child remove without an old child only makes sense on a leaf node"):e.e()?Kd(f,new J("child_added",c,b)):Kd(f,new J("child_changed",c,b,e)));return a.L()&&c.e()?a:a.W(b,c).pb(this.g)};
+h.ya=function(a,b,c){null!=c&&(a.L()||a.R(R,function(a,e){b.Fa(a)||Kd(c,new J("child_removed",e,a))}),b.L()||b.R(R,function(b,e){if(a.Fa(b)){var f=a.T(b);f.ea(e)||Kd(c,new J("child_changed",e,b,f))}else Kd(c,new J("child_added",e,b))}));return b.pb(this.g)};h.ia=function(a,b){return a.e()?H:a.ia(b)};h.Ra=function(){return!1};h.$b=function(){return this};function Md(a){this.Fe=new Ld(a.g);this.g=a.g;var b;a.oa?(b=Nd(a),b=a.g.Sc(Od(a),b)):b=a.g.Wc();this.gd=b;a.ra?(b=Pd(a),a=a.g.Sc(Rd(a),b)):a=a.g.Tc();this.Jc=a}h=Md.prototype;h.matches=function(a){return 0>=this.g.compare(this.gd,a)&&0>=this.g.compare(a,this.Jc)};h.H=function(a,b,c,d,e,f){this.matches(new L(b,c))||(c=H);return this.Fe.H(a,b,c,d,e,f)};
+h.ya=function(a,b,c){b.L()&&(b=H);var d=b.pb(this.g),d=d.ia(H),e=this;b.R(R,function(a,b){e.matches(new L(a,b))||(d=d.W(a,H))});return this.Fe.ya(a,d,c)};h.ia=function(a){return a};h.Ra=function(){return!0};h.$b=function(){return this.Fe};function Sd(a){this.ua=new Md(a);this.g=a.g;O(a.la,"Only valid if limit has been set");this.ma=a.ma;this.Nb=!Td(a)}h=Sd.prototype;h.H=function(a,b,c,d,e,f){this.ua.matches(new L(b,c))||(c=H);return a.T(b).ea(c)?a:a.Hb()<this.ma?this.ua.$b().H(a,b,c,d,e,f):Ud(this,a,b,c,e,f)};
+h.ya=function(a,b,c){var d;if(b.L()||b.e())d=H.pb(this.g);else if(2*this.ma<b.Hb()&&b.Mc(this.g)){d=H.pb(this.g);b=this.Nb?b.dc(this.ua.Jc,this.g):b.bc(this.ua.gd,this.g);for(var e=0;0<b.Ta.length&&e<this.ma;){var f=Ic(b),g;if(g=this.Nb?0>=this.g.compare(this.ua.gd,f):0>=this.g.compare(f,this.ua.Jc))d=d.W(f.name,f.U),e++;else break}}else{d=b.pb(this.g);d=d.ia(H);var k,m,l;if(this.Nb){b=d.xf(this.g);k=this.ua.Jc;m=this.ua.gd;var t=Vd(this.g);l=function(a,b){return t(b,a)}}else b=d.ac(this.g),k=this.ua.gd,
+m=this.ua.Jc,l=Vd(this.g);for(var e=0,A=!1;0<b.Ta.length;)f=Ic(b),!A&&0>=l(k,f)&&(A=!0),(g=A&&e<this.ma&&0>=l(f,m))?e++:d=d.W(f.name,H)}return this.ua.$b().ya(a,d,c)};h.ia=function(a){return a};h.Ra=function(){return!0};h.$b=function(){return this.ua.$b()};
+function Ud(a,b,c,d,e,f){var g;if(a.Nb){var k=Vd(a.g);g=function(a,b){return k(b,a)}}else g=Vd(a.g);O(b.Hb()==a.ma,"");var m=new L(c,d),l=a.Nb?Wd(b,a.g):Xd(b,a.g),t=a.ua.matches(m);if(b.Fa(c)){for(var A=b.T(c),l=e.Ce(a.g,l,a.Nb);null!=l&&(l.name==c||b.Fa(l.name));)l=e.Ce(a.g,l,a.Nb);e=null==l?1:g(l,m);if(t&&!d.e()&&0<=e)return null!=f&&Kd(f,new J("child_changed",d,c,A)),b.W(c,d);null!=f&&Kd(f,new J("child_removed",A,c));b=b.W(c,H);return null!=l&&a.ua.matches(l)?(null!=f&&Kd(f,new J("child_added",
+l.U,l.name)),b.W(l.name,l.U)):b}return d.e()?b:t&&0<=g(l,m)?(null!=f&&(Kd(f,new J("child_removed",l.U,l.name)),Kd(f,new J("child_added",d,c))),b.W(c,d).W(l.name,H)):b};function Yd(a,b){this.me=a;this.og=b}function Zd(a){this.X=a}
+Zd.prototype.gb=function(a,b,c,d){var e=new Jd,f;if(b.type===Bc)b.source.Ae?c=$d(this,a,b.path,b.Ja,c,d,e):(O(b.source.tf,"Unknown source."),f=b.source.ef||mc(a.w())&&!b.path.e(),c=ae(this,a,b.path,b.Ja,c,d,f,e));else if(b.type===be)b.source.Ae?c=ce(this,a,b.path,b.children,c,d,e):(O(b.source.tf,"Unknown source."),f=b.source.ef||mc(a.w()),c=de(this,a,b.path,b.children,c,d,f,e));else if(b.type===ee)if(b.Yd)if(b=b.path,null!=c.xc(b))c=a;else{f=new Vb(c,a,d);d=a.Q.j();if(b.e()||".priority"===K(b))lc(a.w())?
+b=c.Aa(Yb(a)):(b=a.w().j(),O(b instanceof fe,"serverChildren would be complete if leaf node"),b=c.Cc(b)),b=this.X.ya(d,b,e);else{var g=K(b),k=c.Bc(g,a.w());null==k&&Wb(a.w(),g)&&(k=d.T(g));b=null!=k?this.X.H(d,g,k,N(b),f,e):a.Q.j().Fa(g)?this.X.H(d,g,H,N(b),f,e):d;b.e()&&lc(a.w())&&(d=c.Aa(Yb(a)),d.L()&&(b=this.X.ya(b,d,e)))}d=lc(a.w())||null!=c.xc(M);c=ge(a,b,d,this.X.Ra())}else c=he(this,a,b.path,b.Ub,c,d,e);else if(b.type===Dc)d=b.path,b=a.w(),f=b.j(),g=b.ga||d.e(),c=ie(this,new je(a.Q,new Xb(f,
+g,b.Yb)),d,c,Ub,e);else throw jd("Unknown operation type: "+b.type);e=qa(e.ib);d=c;b=d.Q;b.ga&&(f=b.j().L()||b.j().e(),g=ke(a),(0<e.length||!a.Q.ga||f&&!b.j().ea(g)||!b.j().C().ea(g.C()))&&e.push(hc(ke(d))));return new Yd(c,e)};
+function ie(a,b,c,d,e,f){var g=b.Q;if(null!=d.xc(c))return b;var k;if(c.e())O(lc(b.w()),"If change path is empty, we must have complete server data"),mc(b.w())?(e=Yb(b),d=d.Cc(e instanceof fe?e:H)):d=d.Aa(Yb(b)),f=a.X.ya(b.Q.j(),d,f);else{var m=K(c);if(".priority"==m)O(1==le(c),"Can't have a priority with additional path components"),f=g.j(),k=b.w().j(),d=d.nd(c,f,k),f=null!=d?a.X.ia(f,d):g.j();else{var l=N(c);Wb(g,m)?(k=b.w().j(),d=d.nd(c,g.j(),k),d=null!=d?g.j().T(m).H(l,d):g.j().T(m)):d=d.Bc(m,
+b.w());f=null!=d?a.X.H(g.j(),m,d,l,e,f):g.j()}}return ge(b,f,g.ga||c.e(),a.X.Ra())}function ae(a,b,c,d,e,f,g,k){var m=b.w();g=g?a.X:a.X.$b();if(c.e())d=g.ya(m.j(),d,null);else if(g.Ra()&&!m.Yb)d=m.j().H(c,d),d=g.ya(m.j(),d,null);else{var l=K(c);if(!nc(m,c)&&1<le(c))return b;var t=N(c);d=m.j().T(l).H(t,d);d=".priority"==l?g.ia(m.j(),d):g.H(m.j(),l,d,t,Ub,null)}m=m.ga||c.e();b=new je(b.Q,new Xb(d,m,g.Ra()));return ie(a,b,c,e,new Vb(e,b,f),k)}
+function $d(a,b,c,d,e,f,g){var k=b.Q;e=new Vb(e,b,f);if(c.e())g=a.X.ya(b.Q.j(),d,g),a=ge(b,g,!0,a.X.Ra());else if(f=K(c),".priority"===f)g=a.X.ia(b.Q.j(),d),a=ge(b,g,k.ga,k.Yb);else{c=N(c);var m=k.j().T(f);if(!c.e()){var l=e.uf(f);d=null!=l?".priority"===me(c)&&l.S(c.parent()).e()?l:l.H(c,d):H}m.ea(d)?a=b:(g=a.X.H(k.j(),f,d,c,e,g),a=ge(b,g,k.ga,a.X.Ra()))}return a}
+function ce(a,b,c,d,e,f,g){var k=b;ne(d,function(d,l){var t=c.o(d);Wb(b.Q,K(t))&&(k=$d(a,k,t,l,e,f,g))});ne(d,function(d,l){var t=c.o(d);Wb(b.Q,K(t))||(k=$d(a,k,t,l,e,f,g))});return k}function oe(a,b){ne(b,function(b,d){a=a.H(b,d)});return a}
+function de(a,b,c,d,e,f,g,k){if(b.w().j().e()&&!lc(b.w()))return b;var m=b;c=c.e()?d:pe(qe,c,d);var l=b.w().j();c.children.ka(function(c,d){if(l.Fa(c)){var I=b.w().j().T(c),I=oe(I,d);m=ae(a,m,new P(c),I,e,f,g,k)}});c.children.ka(function(c,d){var I=!Wb(b.w(),c)&&null==d.value;l.Fa(c)||I||(I=b.w().j().T(c),I=oe(I,d),m=ae(a,m,new P(c),I,e,f,g,k))});return m}
+function he(a,b,c,d,e,f,g){if(null!=e.xc(c))return b;var k=mc(b.w()),m=b.w();if(null!=d.value){if(c.e()&&m.ga||nc(m,c))return ae(a,b,c,m.j().S(c),e,f,k,g);if(c.e()){var l=qe;m.j().R(re,function(a,b){l=l.set(new P(a),b)});return de(a,b,c,l,e,f,k,g)}return b}l=qe;ne(d,function(a){var b=c.o(a);nc(m,b)&&(l=l.set(a,m.j().S(b)))});return de(a,b,c,l,e,f,k,g)};function se(){}var te={};function Vd(a){return u(a.compare,a)}se.prototype.Dd=function(a,b){return 0!==this.compare(new L("[MIN_NAME]",a),new L("[MIN_NAME]",b))};se.prototype.Wc=function(){return ue};function ve(a){O(!a.e()&&".priority"!==K(a),"Can't create PathIndex with empty path or .priority key");this.gc=a}ka(ve,se);h=ve.prototype;h.Lc=function(a){return!a.S(this.gc).e()};h.compare=function(a,b){var c=a.U.S(this.gc),d=b.U.S(this.gc),c=c.Gc(d);return 0===c?yc(a.name,b.name):c};
+h.Sc=function(a,b){var c=Q(a),c=H.H(this.gc,c);return new L(b,c)};h.Tc=function(){var a=H.H(this.gc,we);return new L("[MAX_NAME]",a)};h.toString=function(){return this.gc.slice().join("/")};function xe(){}ka(xe,se);h=xe.prototype;h.compare=function(a,b){var c=a.U.C(),d=b.U.C(),c=c.Gc(d);return 0===c?yc(a.name,b.name):c};h.Lc=function(a){return!a.C().e()};h.Dd=function(a,b){return!a.C().ea(b.C())};h.Wc=function(){return ue};h.Tc=function(){return new L("[MAX_NAME]",new Yc("[PRIORITY-POST]",we))};
+h.Sc=function(a,b){var c=Q(a);return new L(b,new Yc("[PRIORITY-POST]",c))};h.toString=function(){return".priority"};var R=new xe;function ye(){}ka(ye,se);h=ye.prototype;h.compare=function(a,b){return yc(a.name,b.name)};h.Lc=function(){throw jd("KeyIndex.isDefinedOn not expected to be called.");};h.Dd=function(){return!1};h.Wc=function(){return ue};h.Tc=function(){return new L("[MAX_NAME]",H)};h.Sc=function(a){O(q(a),"KeyIndex indexValue must always be a string.");return new L(a,H)};h.toString=function(){return".key"};
+var re=new ye;function ze(){}ka(ze,se);h=ze.prototype;h.compare=function(a,b){var c=a.U.Gc(b.U);return 0===c?yc(a.name,b.name):c};h.Lc=function(){return!0};h.Dd=function(a,b){return!a.ea(b)};h.Wc=function(){return ue};h.Tc=function(){return Ae};h.Sc=function(a,b){var c=Q(a);return new L(b,c)};h.toString=function(){return".value"};var Be=new ze;function Ce(){this.Xb=this.ra=this.Pb=this.oa=this.la=!1;this.ma=0;this.Rb="";this.ic=null;this.Bb="";this.fc=null;this.zb="";this.g=R}var De=new Ce;function Td(a){return""===a.Rb?a.oa:"l"===a.Rb}function Od(a){O(a.oa,"Only valid if start has been set");return a.ic}function Nd(a){O(a.oa,"Only valid if start has been set");return a.Pb?a.Bb:"[MIN_NAME]"}function Rd(a){O(a.ra,"Only valid if end has been set");return a.fc}
+function Pd(a){O(a.ra,"Only valid if end has been set");return a.Xb?a.zb:"[MAX_NAME]"}function Ee(a){var b=new Ce;b.la=a.la;b.ma=a.ma;b.oa=a.oa;b.ic=a.ic;b.Pb=a.Pb;b.Bb=a.Bb;b.ra=a.ra;b.fc=a.fc;b.Xb=a.Xb;b.zb=a.zb;b.g=a.g;return b}h=Ce.prototype;h.Le=function(a){var b=Ee(this);b.la=!0;b.ma=a;b.Rb="";return b};h.Me=function(a){var b=Ee(this);b.la=!0;b.ma=a;b.Rb="l";return b};h.Ne=function(a){var b=Ee(this);b.la=!0;b.ma=a;b.Rb="r";return b};
+h.ce=function(a,b){var c=Ee(this);c.oa=!0;p(a)||(a=null);c.ic=a;null!=b?(c.Pb=!0,c.Bb=b):(c.Pb=!1,c.Bb="");return c};h.vd=function(a,b){var c=Ee(this);c.ra=!0;p(a)||(a=null);c.fc=a;p(b)?(c.Xb=!0,c.zb=b):(c.mh=!1,c.zb="");return c};function Fe(a,b){var c=Ee(a);c.g=b;return c}function Ge(a){var b={};a.oa&&(b.sp=a.ic,a.Pb&&(b.sn=a.Bb));a.ra&&(b.ep=a.fc,a.Xb&&(b.en=a.zb));if(a.la){b.l=a.ma;var c=a.Rb;""===c&&(c=Td(a)?"l":"r");b.vf=c}a.g!==R&&(b.i=a.g.toString());return b}
+function He(a){return!(a.oa||a.ra||a.la)}function Ie(a){return He(a)&&a.g==R}function Je(a){var b={};if(Ie(a))return b;var c;a.g===R?c="$priority":a.g===Be?c="$value":a.g===re?c="$key":(O(a.g instanceof ve,"Unrecognized index type!"),c=a.g.toString());b.orderBy=G(c);a.oa&&(b.startAt=G(a.ic),a.Pb&&(b.startAt+=","+G(a.Bb)));a.ra&&(b.endAt=G(a.fc),a.Xb&&(b.endAt+=","+G(a.zb)));a.la&&(Td(a)?b.limitToFirst=a.ma:b.limitToLast=a.ma);return b}h.toString=function(){return G(Ge(this))};function Ke(a,b){this.Ed=a;this.hc=b}Ke.prototype.get=function(a){var b=z(this.Ed,a);if(!b)throw Error("No index defined for "+a);return b===te?null:b};function Le(a,b,c){var d=ma(a.Ed,function(d,f){var g=z(a.hc,f);O(g,"Missing index implementation for "+f);if(d===te){if(g.Lc(b.U)){for(var k=[],m=c.ac(wc),l=Ic(m);l;)l.name!=b.name&&k.push(l),l=Ic(m);k.push(b);return Me(k,Vd(g))}return te}g=c.get(b.name);k=d;g&&(k=k.remove(new L(b.name,g)));return k.Sa(b,b.U)});return new Ke(d,a.hc)}
+function Ne(a,b,c){var d=ma(a.Ed,function(a){if(a===te)return a;var d=c.get(b.name);return d?a.remove(new L(b.name,d)):a});return new Ke(d,a.hc)}var Oe=new Ke({".priority":te},{".priority":R});function Yc(a,b){this.B=a;O(p(this.B)&&null!==this.B,"LeafNode shouldn't be created with null/undefined value.");this.ca=b||H;Pe(this.ca);this.Gb=null}var Qe=["object","boolean","number","string"];h=Yc.prototype;h.L=function(){return!0};h.C=function(){return this.ca};h.ia=function(a){return new Yc(this.B,a)};h.T=function(a){return".priority"===a?this.ca:H};h.S=function(a){return a.e()?this:".priority"===K(a)?this.ca:H};h.Fa=function(){return!1};h.wf=function(){return null};
+h.W=function(a,b){return".priority"===a?this.ia(b):b.e()&&".priority"!==a?this:H.W(a,b).ia(this.ca)};h.H=function(a,b){var c=K(a);if(null===c)return b;if(b.e()&&".priority"!==c)return this;O(".priority"!==c||1===le(a),".priority must be the last token in a path");return this.W(c,H.H(N(a),b))};h.e=function(){return!1};h.Hb=function(){return 0};h.R=function(){return!1};h.J=function(a){return a&&!this.C().e()?{".value":this.Ea(),".priority":this.C().J()}:this.Ea()};
+h.hash=function(){if(null===this.Gb){var a="";this.ca.e()||(a+="priority:"+Re(this.ca.J())+":");var b=typeof this.B,a=a+(b+":"),a="number"===b?a+Ad(this.B):a+this.B;this.Gb=ld(a)}return this.Gb};h.Ea=function(){return this.B};h.Gc=function(a){if(a===H)return 1;if(a instanceof fe)return-1;O(a.L(),"Unknown node type");var b=typeof a.B,c=typeof this.B,d=La(Qe,b),e=La(Qe,c);O(0<=d,"Unknown leaf type: "+b);O(0<=e,"Unknown leaf type: "+c);return d===e?"object"===c?0:this.B<a.B?-1:this.B===a.B?0:1:e-d};
+h.pb=function(){return this};h.Mc=function(){return!0};h.ea=function(a){return a===this?!0:a.L()?this.B===a.B&&this.ca.ea(a.ca):!1};h.toString=function(){return G(this.J(!0))};function fe(a,b,c){this.m=a;(this.ca=b)&&Pe(this.ca);a.e()&&O(!this.ca||this.ca.e(),"An empty node cannot have a priority");this.Ab=c;this.Gb=null}h=fe.prototype;h.L=function(){return!1};h.C=function(){return this.ca||H};h.ia=function(a){return this.m.e()?this:new fe(this.m,a,this.Ab)};h.T=function(a){if(".priority"===a)return this.C();a=this.m.get(a);return null===a?H:a};h.S=function(a){var b=K(a);return null===b?this:this.T(b).S(N(a))};h.Fa=function(a){return null!==this.m.get(a)};
+h.W=function(a,b){O(b,"We should always be passing snapshot nodes");if(".priority"===a)return this.ia(b);var c=new L(a,b),d,e;b.e()?(d=this.m.remove(a),c=Ne(this.Ab,c,this.m)):(d=this.m.Sa(a,b),c=Le(this.Ab,c,this.m));e=d.e()?H:this.ca;return new fe(d,e,c)};h.H=function(a,b){var c=K(a);if(null===c)return b;O(".priority"!==K(a)||1===le(a),".priority must be the last token in a path");var d=this.T(c).H(N(a),b);return this.W(c,d)};h.e=function(){return this.m.e()};h.Hb=function(){return this.m.count()};
+var Se=/^(0|[1-9]\d*)$/;h=fe.prototype;h.J=function(a){if(this.e())return null;var b={},c=0,d=0,e=!0;this.R(R,function(f,g){b[f]=g.J(a);c++;e&&Se.test(f)?d=Math.max(d,Number(f)):e=!1});if(!a&&e&&d<2*c){var f=[],g;for(g in b)f[g]=b[g];return f}a&&!this.C().e()&&(b[".priority"]=this.C().J());return b};h.hash=function(){if(null===this.Gb){var a="";this.C().e()||(a+="priority:"+Re(this.C().J())+":");this.R(R,function(b,c){var d=c.hash();""!==d&&(a+=":"+b+":"+d)});this.Gb=""===a?"":ld(a)}return this.Gb};
+h.wf=function(a,b,c){return(c=Te(this,c))?(a=Gc(c,new L(a,b)))?a.name:null:Gc(this.m,a)};function Wd(a,b){var c;c=(c=Te(a,b))?(c=c.Vc())&&c.name:a.m.Vc();return c?new L(c,a.m.get(c)):null}function Xd(a,b){var c;c=(c=Te(a,b))?(c=c.jc())&&c.name:a.m.jc();return c?new L(c,a.m.get(c)):null}h.R=function(a,b){var c=Te(this,a);return c?c.ka(function(a){return b(a.name,a.U)}):this.m.ka(b)};h.ac=function(a){return this.bc(a.Wc(),a)};
+h.bc=function(a,b){var c=Te(this,b);if(c)return c.bc(a,function(a){return a});for(var c=this.m.bc(a.name,wc),d=Jc(c);null!=d&&0>b.compare(d,a);)Ic(c),d=Jc(c);return c};h.xf=function(a){return this.dc(a.Tc(),a)};h.dc=function(a,b){var c=Te(this,b);if(c)return c.dc(a,function(a){return a});for(var c=this.m.dc(a.name,wc),d=Jc(c);null!=d&&0<b.compare(d,a);)Ic(c),d=Jc(c);return c};h.Gc=function(a){return this.e()?a.e()?0:-1:a.L()||a.e()?1:a===we?-1:0};
+h.pb=function(a){if(a===re||sa(this.Ab.hc,a.toString()))return this;var b=this.Ab,c=this.m;O(a!==re,"KeyIndex always exists and isn't meant to be added to the IndexMap.");for(var d=[],e=!1,c=c.ac(wc),f=Ic(c);f;)e=e||a.Lc(f.U),d.push(f),f=Ic(c);d=e?Me(d,Vd(a)):te;e=a.toString();c=wa(b.hc);c[e]=a;a=wa(b.Ed);a[e]=d;return new fe(this.m,this.ca,new Ke(a,c))};h.Mc=function(a){return a===re||sa(this.Ab.hc,a.toString())};
+h.ea=function(a){if(a===this)return!0;if(a.L())return!1;if(this.C().ea(a.C())&&this.m.count()===a.m.count()){var b=this.ac(R);a=a.ac(R);for(var c=Ic(b),d=Ic(a);c&&d;){if(c.name!==d.name||!c.U.ea(d.U))return!1;c=Ic(b);d=Ic(a)}return null===c&&null===d}return!1};function Te(a,b){return b===re?null:a.Ab.get(b.toString())}h.toString=function(){return G(this.J(!0))};function Q(a,b){if(null===a)return H;var c=null;"object"===typeof a&&".priority"in a?c=a[".priority"]:"undefined"!==typeof b&&(c=b);O(null===c||"string"===typeof c||"number"===typeof c||"object"===typeof c&&".sv"in c,"Invalid priority type found: "+typeof c);"object"===typeof a&&".value"in a&&null!==a[".value"]&&(a=a[".value"]);if("object"!==typeof a||".sv"in a)return new Yc(a,Q(c));if(a instanceof Array){var d=H,e=a;v(e,function(a,b){if(y(e,b)&&"."!==b.substring(0,1)){var c=Q(a);if(c.L()||!c.e())d=
+d.W(b,c)}});return d.ia(Q(c))}var f=[],g=!1,k=a;Fb(k,function(a){if("string"!==typeof a||"."!==a.substring(0,1)){var b=Q(k[a]);b.e()||(g=g||!b.C().e(),f.push(new L(a,b)))}});if(0==f.length)return H;var m=Me(f,xc,function(a){return a.name},zc);if(g){var l=Me(f,Vd(R));return new fe(m,Q(c),new Ke({".priority":l},{".priority":R}))}return new fe(m,Q(c),Oe)}var Ue=Math.log(2);
+function Ve(a){this.count=parseInt(Math.log(a+1)/Ue,10);this.nf=this.count-1;this.ng=a+1&parseInt(Array(this.count+1).join("1"),2)}function We(a){var b=!(a.ng&1<<a.nf);a.nf--;return b}
+function Me(a,b,c,d){function e(b,d){var f=d-b;if(0==f)return null;if(1==f){var l=a[b],t=c?c(l):l;return new Kc(t,l.U,!1,null,null)}var l=parseInt(f/2,10)+b,f=e(b,l),A=e(l+1,d),l=a[l],t=c?c(l):l;return new Kc(t,l.U,!1,f,A)}a.sort(b);var f=function(b){function d(b,g){var k=t-b,A=t;t-=b;var A=e(k+1,A),k=a[k],I=c?c(k):k,A=new Kc(I,k.U,g,null,A);f?f.left=A:l=A;f=A}for(var f=null,l=null,t=a.length,A=0;A<b.count;++A){var I=We(b),Qd=Math.pow(2,b.count-(A+1));I?d(Qd,!1):(d(Qd,!1),d(Qd,!0))}return l}(new Ve(a.length));
+return null!==f?new Ec(d||b,f):new Ec(d||b)}function Re(a){return"number"===typeof a?"number:"+Ad(a):"string:"+a}function Pe(a){if(a.L()){var b=a.J();O("string"===typeof b||"number"===typeof b||"object"===typeof b&&y(b,".sv"),"Priority must be a string or number.")}else O(a===we||a.e(),"priority of unexpected type.");O(a===we||a.C().e(),"Priority nodes can't have a priority of their own.")}var H=new fe(new Ec(zc),null,Oe);function Xe(){fe.call(this,new Ec(zc),H,Oe)}ka(Xe,fe);h=Xe.prototype;
+h.Gc=function(a){return a===this?0:1};h.ea=function(a){return a===this};h.C=function(){return this};h.T=function(){return H};h.e=function(){return!1};var we=new Xe,ue=new L("[MIN_NAME]",H),Ae=new L("[MAX_NAME]",we);function je(a,b){this.Q=a;this.ae=b}function ge(a,b,c,d){return new je(new Xb(b,c,d),a.ae)}function ke(a){return a.Q.ga?a.Q.j():null}je.prototype.w=function(){return this.ae};function Yb(a){return a.ae.ga?a.ae.j():null};function Ye(a,b){this.Y=a;var c=a.n,d=new Ld(c.g),c=He(c)?new Ld(c.g):c.la?new Sd(c):new Md(c);this.Nf=new Zd(c);var e=b.w(),f=b.Q,g=d.ya(H,e.j(),null),k=c.ya(H,f.j(),null);this.Oa=new je(new Xb(k,f.ga,c.Ra()),new Xb(g,e.ga,d.Ra()));this.$a=[];this.ug=new Fd(a)}function Ze(a){return a.Y}h=Ye.prototype;h.w=function(){return this.Oa.w().j()};h.kb=function(a){var b=Yb(this.Oa);return b&&(He(this.Y.n)||!a.e()&&!b.T(K(a)).e())?b.S(a):null};h.e=function(){return 0===this.$a.length};h.Tb=function(a){this.$a.push(a)};
+h.nb=function(a,b){var c=[];if(b){O(null==a,"A cancel should cancel all event registrations.");var d=this.Y.path;Ma(this.$a,function(a){(a=a.lf(b,d))&&c.push(a)})}if(a){for(var e=[],f=0;f<this.$a.length;++f){var g=this.$a[f];if(!g.matches(a))e.push(g);else if(a.yf()){e=e.concat(this.$a.slice(f+1));break}}this.$a=e}else this.$a=[];return c};
+h.gb=function(a,b,c){a.type===be&&null!==a.source.Lb&&(O(Yb(this.Oa),"We should always have a full cache before handling merges"),O(ke(this.Oa),"Missing event cache, even though we have a server cache"));var d=this.Oa;a=this.Nf.gb(d,a,b,c);b=this.Nf;c=a.me;O(c.Q.j().Mc(b.X.g),"Event snap not indexed");O(c.w().j().Mc(b.X.g),"Server snap not indexed");O(lc(a.me.w())||!lc(d.w()),"Once a server snap is complete, it should never go back");this.Oa=a.me;return $e(this,a.og,a.me.Q.j(),null)};
+function af(a,b){var c=a.Oa.Q,d=[];c.j().L()||c.j().R(R,function(a,b){d.push(new J("child_added",b,a))});c.ga&&d.push(hc(c.j()));return $e(a,d,c.j(),b)}function $e(a,b,c,d){return Gd(a.ug,b,c,d?[d]:a.$a)};function bf(a,b,c){this.type=be;this.source=a;this.path=b;this.children=c}bf.prototype.$c=function(a){if(this.path.e())return a=this.children.subtree(new P(a)),a.e()?null:a.value?new Ac(this.source,M,a.value):new bf(this.source,M,a);O(K(this.path)===a,"Can't get a merge for a child not on the path of the operation");return new bf(this.source,N(this.path),this.children)};bf.prototype.toString=function(){return"Operation("+this.path+": "+this.source.toString()+" merge: "+this.children.toString()+")"};function cf(a,b){this.f=pd("p:rest:");this.G=a;this.Kb=b;this.Ca=null;this.ba={}}function df(a,b){if(p(b))return"tag$"+b;O(Ie(a.n),"should have a tag if it's not a default query.");return a.path.toString()}h=cf.prototype;
+h.Cf=function(a,b,c,d){var e=a.path.toString();this.f("Listen called for "+e+" "+a.wa());var f=df(a,c),g={};this.ba[f]=g;a=Je(a.n);var k=this;ef(this,e+".json",a,function(a,b){var t=b;404===a&&(a=t=null);null===a&&k.Kb(e,t,!1,c);z(k.ba,f)===g&&d(a?401==a?"permission_denied":"rest_error:"+a:"ok",null)})};h.$f=function(a,b){var c=df(a,b);delete this.ba[c]};h.O=function(a,b){this.Ca=a;var c=Cd(a),d=c.data,c=c.Ec&&c.Ec.exp;b&&b("ok",{auth:d,expires:c})};h.je=function(a){this.Ca=null;a("ok",null)};
+h.Qe=function(){};h.Gf=function(){};h.Md=function(){};h.put=function(){};h.Df=function(){};h.Ye=function(){};
+function ef(a,b,c,d){c=c||{};c.format="export";a.Ca&&(c.auth=a.Ca);var e=(a.G.ob?"https://":"http://")+a.G.host+b+"?"+Ib(c);a.f("Sending REST request for "+e);var f=new XMLHttpRequest;f.onreadystatechange=function(){if(d&&4===f.readyState){a.f("REST Response for "+e+" received. status:",f.status,"response:",f.responseText);var b=null;if(200<=f.status&&300>f.status){try{b=Rb(f.responseText)}catch(c){S("Failed to parse JSON response for "+e+": "+f.responseText)}d(null,b)}else 401!==f.status&&404!==
+f.status&&S("Got unsuccessful REST response for "+e+" Status: "+f.status),d(f.status);d=null}};f.open("GET",e,!0);f.send()};function ff(a){O(da(a)&&0<a.length,"Requires a non-empty array");this.fg=a;this.Rc={}}ff.prototype.ie=function(a,b){var c;c=this.Rc[a]||[];var d=c.length;if(0<d){for(var e=Array(d),f=0;f<d;f++)e[f]=c[f];c=e}else c=[];for(d=0;d<c.length;d++)c[d].Dc.apply(c[d].Qa,Array.prototype.slice.call(arguments,1))};ff.prototype.Ib=function(a,b,c){gf(this,a);this.Rc[a]=this.Rc[a]||[];this.Rc[a].push({Dc:b,Qa:c});(a=this.Ee(a))&&b.apply(c,a)};
+ff.prototype.mc=function(a,b,c){gf(this,a);a=this.Rc[a]||[];for(var d=0;d<a.length;d++)if(a[d].Dc===b&&(!c||c===a[d].Qa)){a.splice(d,1);break}};function gf(a,b){O(Ra(a.fg,function(a){return a===b}),"Unknown event: "+b)};var hf=function(){var a=0,b=[];return function(c){var d=c===a;a=c;for(var e=Array(8),f=7;0<=f;f--)e[f]="-0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz".charAt(c%64),c=Math.floor(c/64);O(0===c,"Cannot push at time == 0");c=e.join("");if(d){for(f=11;0<=f&&63===b[f];f--)b[f]=0;b[f]++}else for(f=0;12>f;f++)b[f]=Math.floor(64*Math.random());for(f=0;12>f;f++)c+="-0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz".charAt(b[f]);O(20===c.length,"nextPushId: Length should be 20.");
+return c}}();function jf(){ff.call(this,["online"]);this.oc=!0;if("undefined"!==typeof window&&"undefined"!==typeof window.addEventListener){var a=this;window.addEventListener("online",function(){a.oc||(a.oc=!0,a.ie("online",!0))},!1);window.addEventListener("offline",function(){a.oc&&(a.oc=!1,a.ie("online",!1))},!1)}}ka(jf,ff);jf.prototype.Ee=function(a){O("online"===a,"Unknown event type: "+a);return[this.oc]};ba(jf);function kf(){ff.call(this,["visible"]);var a,b;"undefined"!==typeof document&&"undefined"!==typeof document.addEventListener&&("undefined"!==typeof document.hidden?(b="visibilitychange",a="hidden"):"undefined"!==typeof document.mozHidden?(b="mozvisibilitychange",a="mozHidden"):"undefined"!==typeof document.msHidden?(b="msvisibilitychange",a="msHidden"):"undefined"!==typeof document.webkitHidden&&(b="webkitvisibilitychange",a="webkitHidden"));this.Sb=!0;if(b){var c=this;document.addEventListener(b,
+function(){var b=!document[a];b!==c.Sb&&(c.Sb=b,c.ie("visible",b))},!1)}}ka(kf,ff);kf.prototype.Ee=function(a){O("visible"===a,"Unknown event type: "+a);return[this.Sb]};ba(kf);function P(a,b){if(1==arguments.length){this.u=a.split("/");for(var c=0,d=0;d<this.u.length;d++)0<this.u[d].length&&(this.u[c]=this.u[d],c++);this.u.length=c;this.aa=0}else this.u=a,this.aa=b}function lf(a,b){var c=K(a);if(null===c)return b;if(c===K(b))return lf(N(a),N(b));throw Error("INTERNAL ERROR: innerPath ("+b+") is not within outerPath ("+a+")");}
+function mf(a,b){for(var c=a.slice(),d=b.slice(),e=0;e<c.length&&e<d.length;e++){var f=yc(c[e],d[e]);if(0!==f)return f}return c.length===d.length?0:c.length<d.length?-1:1}function K(a){return a.aa>=a.u.length?null:a.u[a.aa]}function le(a){return a.u.length-a.aa}function N(a){var b=a.aa;b<a.u.length&&b++;return new P(a.u,b)}function me(a){return a.aa<a.u.length?a.u[a.u.length-1]:null}h=P.prototype;
+h.toString=function(){for(var a="",b=this.aa;b<this.u.length;b++)""!==this.u[b]&&(a+="/"+this.u[b]);return a||"/"};h.slice=function(a){return this.u.slice(this.aa+(a||0))};h.parent=function(){if(this.aa>=this.u.length)return null;for(var a=[],b=this.aa;b<this.u.length-1;b++)a.push(this.u[b]);return new P(a,0)};
+h.o=function(a){for(var b=[],c=this.aa;c<this.u.length;c++)b.push(this.u[c]);if(a instanceof P)for(c=a.aa;c<a.u.length;c++)b.push(a.u[c]);else for(a=a.split("/"),c=0;c<a.length;c++)0<a[c].length&&b.push(a[c]);return new P(b,0)};h.e=function(){return this.aa>=this.u.length};h.ea=function(a){if(le(this)!==le(a))return!1;for(var b=this.aa,c=a.aa;b<=this.u.length;b++,c++)if(this.u[b]!==a.u[c])return!1;return!0};
+h.contains=function(a){var b=this.aa,c=a.aa;if(le(this)>le(a))return!1;for(;b<this.u.length;){if(this.u[b]!==a.u[c])return!1;++b;++c}return!0};var M=new P("");function nf(a,b){this.Ua=a.slice();this.Ka=Math.max(1,this.Ua.length);this.pf=b;for(var c=0;c<this.Ua.length;c++)this.Ka+=Pb(this.Ua[c]);of(this)}nf.prototype.push=function(a){0<this.Ua.length&&(this.Ka+=1);this.Ua.push(a);this.Ka+=Pb(a);of(this)};nf.prototype.pop=function(){var a=this.Ua.pop();this.Ka-=Pb(a);0<this.Ua.length&&--this.Ka};
+function of(a){if(768<a.Ka)throw Error(a.pf+"has a key path longer than 768 bytes ("+a.Ka+").");if(32<a.Ua.length)throw Error(a.pf+"path specified exceeds the maximum depth that can be written (32) or object contains a cycle "+pf(a));}function pf(a){return 0==a.Ua.length?"":"in property '"+a.Ua.join(".")+"'"};function qf(a,b){this.value=a;this.children=b||rf}var rf=new Ec(function(a,b){return a===b?0:a<b?-1:1});function sf(a){var b=qe;v(a,function(a,d){b=b.set(new P(d),a)});return b}h=qf.prototype;h.e=function(){return null===this.value&&this.children.e()};function tf(a,b,c){if(null!=a.value&&c(a.value))return{path:M,value:a.value};if(b.e())return null;var d=K(b);a=a.children.get(d);return null!==a?(b=tf(a,N(b),c),null!=b?{path:(new P(d)).o(b.path),value:b.value}:null):null}
+function uf(a,b){return tf(a,b,function(){return!0})}h.subtree=function(a){if(a.e())return this;var b=this.children.get(K(a));return null!==b?b.subtree(N(a)):qe};h.set=function(a,b){if(a.e())return new qf(b,this.children);var c=K(a),d=(this.children.get(c)||qe).set(N(a),b),c=this.children.Sa(c,d);return new qf(this.value,c)};
+h.remove=function(a){if(a.e())return this.children.e()?qe:new qf(null,this.children);var b=K(a),c=this.children.get(b);return c?(a=c.remove(N(a)),b=a.e()?this.children.remove(b):this.children.Sa(b,a),null===this.value&&b.e()?qe:new qf(this.value,b)):this};h.get=function(a){if(a.e())return this.value;var b=this.children.get(K(a));return b?b.get(N(a)):null};
+function pe(a,b,c){if(b.e())return c;var d=K(b);b=pe(a.children.get(d)||qe,N(b),c);d=b.e()?a.children.remove(d):a.children.Sa(d,b);return new qf(a.value,d)}function vf(a,b){return wf(a,M,b)}function wf(a,b,c){var d={};a.children.ka(function(a,f){d[a]=wf(f,b.o(a),c)});return c(b,a.value,d)}function xf(a,b,c){return yf(a,b,M,c)}function yf(a,b,c,d){var e=a.value?d(c,a.value):!1;if(e)return e;if(b.e())return null;e=K(b);return(a=a.children.get(e))?yf(a,N(b),c.o(e),d):null}
+function zf(a,b,c){Af(a,b,M,c)}function Af(a,b,c,d){if(b.e())return a;a.value&&d(c,a.value);var e=K(b);return(a=a.children.get(e))?Af(a,N(b),c.o(e),d):qe}function ne(a,b){Bf(a,M,b)}function Bf(a,b,c){a.children.ka(function(a,e){Bf(e,b.o(a),c)});a.value&&c(b,a.value)}function Cf(a,b){a.children.ka(function(a,d){d.value&&b(a,d.value)})}var qe=new qf(null);qf.prototype.toString=function(){var a={};ne(this,function(b,c){a[b.toString()]=c.toString()});return G(a)};function Df(a,b,c){this.type=ee;this.source=Ef;this.path=a;this.Ub=b;this.Yd=c}Df.prototype.$c=function(a){if(this.path.e()){if(null!=this.Ub.value)return O(this.Ub.children.e(),"affectedTree should not have overlapping affected paths."),this;a=this.Ub.subtree(new P(a));return new Df(M,a,this.Yd)}O(K(this.path)===a,"operationForChild called for unrelated child.");return new Df(N(this.path),this.Ub,this.Yd)};
+Df.prototype.toString=function(){return"Operation("+this.path+": "+this.source.toString()+" ack write revert="+this.Yd+" affectedTree="+this.Ub+")"};var Bc=0,be=1,ee=2,Dc=3;function Ff(a,b,c,d){this.Ae=a;this.tf=b;this.Lb=c;this.ef=d;O(!d||b,"Tagged queries must be from server.")}var Ef=new Ff(!0,!1,null,!1),Gf=new Ff(!1,!0,null,!1);Ff.prototype.toString=function(){return this.Ae?"user":this.ef?"server(queryID="+this.Lb+")":"server"};function Hf(a){this.Z=a}var If=new Hf(new qf(null));function Jf(a,b,c){if(b.e())return new Hf(new qf(c));var d=uf(a.Z,b);if(null!=d){var e=d.path,d=d.value;b=lf(e,b);d=d.H(b,c);return new Hf(a.Z.set(e,d))}a=pe(a.Z,b,new qf(c));return new Hf(a)}function Kf(a,b,c){var d=a;Fb(c,function(a,c){d=Jf(d,b.o(a),c)});return d}Hf.prototype.Ud=function(a){if(a.e())return If;a=pe(this.Z,a,qe);return new Hf(a)};function Lf(a,b){var c=uf(a.Z,b);return null!=c?a.Z.get(c.path).S(lf(c.path,b)):null}
+function Mf(a){var b=[],c=a.Z.value;null!=c?c.L()||c.R(R,function(a,c){b.push(new L(a,c))}):a.Z.children.ka(function(a,c){null!=c.value&&b.push(new L(a,c.value))});return b}function Nf(a,b){if(b.e())return a;var c=Lf(a,b);return null!=c?new Hf(new qf(c)):new Hf(a.Z.subtree(b))}Hf.prototype.e=function(){return this.Z.e()};Hf.prototype.apply=function(a){return Of(M,this.Z,a)};
+function Of(a,b,c){if(null!=b.value)return c.H(a,b.value);var d=null;b.children.ka(function(b,f){".priority"===b?(O(null!==f.value,"Priority writes must always be leaf nodes"),d=f.value):c=Of(a.o(b),f,c)});c.S(a).e()||null===d||(c=c.H(a.o(".priority"),d));return c};function Pf(){this.V=If;this.pa=[];this.Pc=-1}function Qf(a,b){for(var c=0;c<a.pa.length;c++){var d=a.pa[c];if(d.md===b)return d}return null}h=Pf.prototype;
+h.Ud=function(a){var b=Sa(this.pa,function(b){return b.md===a});O(0<=b,"removeWrite called with nonexistent writeId.");var c=this.pa[b];this.pa.splice(b,1);for(var d=c.visible,e=!1,f=this.pa.length-1;d&&0<=f;){var g=this.pa[f];g.visible&&(f>=b&&Rf(g,c.path)?d=!1:c.path.contains(g.path)&&(e=!0));f--}if(d){if(e)this.V=Sf(this.pa,Tf,M),this.Pc=0<this.pa.length?this.pa[this.pa.length-1].md:-1;else if(c.Ja)this.V=this.V.Ud(c.path);else{var k=this;v(c.children,function(a,b){k.V=k.V.Ud(c.path.o(b))})}return!0}return!1};
+h.Aa=function(a,b,c,d){if(c||d){var e=Nf(this.V,a);return!d&&e.e()?b:d||null!=b||null!=Lf(e,M)?(e=Sf(this.pa,function(b){return(b.visible||d)&&(!c||!(0<=La(c,b.md)))&&(b.path.contains(a)||a.contains(b.path))},a),b=b||H,e.apply(b)):null}e=Lf(this.V,a);if(null!=e)return e;e=Nf(this.V,a);return e.e()?b:null!=b||null!=Lf(e,M)?(b=b||H,e.apply(b)):null};
+h.Cc=function(a,b){var c=H,d=Lf(this.V,a);if(d)d.L()||d.R(R,function(a,b){c=c.W(a,b)});else if(b){var e=Nf(this.V,a);b.R(R,function(a,b){var d=Nf(e,new P(a)).apply(b);c=c.W(a,d)});Ma(Mf(e),function(a){c=c.W(a.name,a.U)})}else e=Nf(this.V,a),Ma(Mf(e),function(a){c=c.W(a.name,a.U)});return c};h.nd=function(a,b,c,d){O(c||d,"Either existingEventSnap or existingServerSnap must exist");a=a.o(b);if(null!=Lf(this.V,a))return null;a=Nf(this.V,a);return a.e()?d.S(b):a.apply(d.S(b))};
+h.Bc=function(a,b,c){a=a.o(b);var d=Lf(this.V,a);return null!=d?d:Wb(c,b)?Nf(this.V,a).apply(c.j().T(b)):null};h.xc=function(a){return Lf(this.V,a)};h.qe=function(a,b,c,d,e,f){var g;a=Nf(this.V,a);g=Lf(a,M);if(null==g)if(null!=b)g=a.apply(b);else return[];g=g.pb(f);if(g.e()||g.L())return[];b=[];a=Vd(f);e=e?g.dc(c,f):g.bc(c,f);for(f=Ic(e);f&&b.length<d;)0!==a(f,c)&&b.push(f),f=Ic(e);return b};
+function Rf(a,b){return a.Ja?a.path.contains(b):!!ta(a.children,function(c,d){return a.path.o(d).contains(b)})}function Tf(a){return a.visible}
+function Sf(a,b,c){for(var d=If,e=0;e<a.length;++e){var f=a[e];if(b(f)){var g=f.path;if(f.Ja)c.contains(g)?(g=lf(c,g),d=Jf(d,g,f.Ja)):g.contains(c)&&(g=lf(g,c),d=Jf(d,M,f.Ja.S(g)));else if(f.children)if(c.contains(g))g=lf(c,g),d=Kf(d,g,f.children);else{if(g.contains(c))if(g=lf(g,c),g.e())d=Kf(d,M,f.children);else if(f=z(f.children,K(g)))f=f.S(N(g)),d=Jf(d,M,f)}else throw jd("WriteRecord should have .snap or .children");}}return d}function Uf(a,b){this.Qb=a;this.Z=b}h=Uf.prototype;
+h.Aa=function(a,b,c){return this.Z.Aa(this.Qb,a,b,c)};h.Cc=function(a){return this.Z.Cc(this.Qb,a)};h.nd=function(a,b,c){return this.Z.nd(this.Qb,a,b,c)};h.xc=function(a){return this.Z.xc(this.Qb.o(a))};h.qe=function(a,b,c,d,e){return this.Z.qe(this.Qb,a,b,c,d,e)};h.Bc=function(a,b){return this.Z.Bc(this.Qb,a,b)};h.o=function(a){return new Uf(this.Qb.o(a),this.Z)};function Vf(){this.children={};this.pd=0;this.value=null}function Wf(a,b,c){this.Jd=a?a:"";this.Ha=b?b:null;this.A=c?c:new Vf}function Xf(a,b){for(var c=b instanceof P?b:new P(b),d=a,e;null!==(e=K(c));)d=new Wf(e,d,z(d.A.children,e)||new Vf),c=N(c);return d}h=Wf.prototype;h.Ea=function(){return this.A.value};function Yf(a,b){O("undefined"!==typeof b,"Cannot set value to undefined");a.A.value=b;Zf(a)}h.clear=function(){this.A.value=null;this.A.children={};this.A.pd=0;Zf(this)};
+h.zd=function(){return 0<this.A.pd};h.e=function(){return null===this.Ea()&&!this.zd()};h.R=function(a){var b=this;v(this.A.children,function(c,d){a(new Wf(d,b,c))})};function $f(a,b,c,d){c&&!d&&b(a);a.R(function(a){$f(a,b,!0,d)});c&&d&&b(a)}function ag(a,b){for(var c=a.parent();null!==c&&!b(c);)c=c.parent()}h.path=function(){return new P(null===this.Ha?this.Jd:this.Ha.path()+"/"+this.Jd)};h.name=function(){return this.Jd};h.parent=function(){return this.Ha};
+function Zf(a){if(null!==a.Ha){var b=a.Ha,c=a.Jd,d=a.e(),e=y(b.A.children,c);d&&e?(delete b.A.children[c],b.A.pd--,Zf(b)):d||e||(b.A.children[c]=a.A,b.A.pd++,Zf(b))}};var bg=/[\[\].#$\/\u0000-\u001F\u007F]/,cg=/[\[\].#$\u0000-\u001F\u007F]/,dg=/^[a-zA-Z][a-zA-Z._\-+]+$/;function eg(a){return q(a)&&0!==a.length&&!bg.test(a)}function fg(a){return null===a||q(a)||fa(a)&&!td(a)||ga(a)&&y(a,".sv")}function gg(a,b,c,d){d&&!p(b)||hg(E(a,1,d),b,c)}
+function hg(a,b,c){c instanceof P&&(c=new nf(c,a));if(!p(b))throw Error(a+"contains undefined "+pf(c));if(r(b))throw Error(a+"contains a function "+pf(c)+" with contents: "+b.toString());if(td(b))throw Error(a+"contains "+b.toString()+" "+pf(c));if(q(b)&&b.length>10485760/3&&10485760<Pb(b))throw Error(a+"contains a string greater than 10485760 utf8 bytes "+pf(c)+" ('"+b.substring(0,50)+"...')");if(ga(b)){var d=!1,e=!1;Fb(b,function(b,g){if(".value"===b)d=!0;else if(".priority"!==b&&".sv"!==b&&(e=
+!0,!eg(b)))throw Error(a+" contains an invalid key ("+b+") "+pf(c)+'.  Keys must be non-empty strings and can\'t contain ".", "#", "$", "/", "[", or "]"');c.push(b);hg(a,g,c);c.pop()});if(d&&e)throw Error(a+' contains ".value" child '+pf(c)+" in addition to actual children.");}}
+function ig(a,b){var c,d;for(c=0;c<b.length;c++){d=b[c];for(var e=d.slice(),f=0;f<e.length;f++)if((".priority"!==e[f]||f!==e.length-1)&&!eg(e[f]))throw Error(a+"contains an invalid key ("+e[f]+") in path "+d.toString()+'. Keys must be non-empty strings and can\'t contain ".", "#", "$", "/", "[", or "]"');}b.sort(mf);e=null;for(c=0;c<b.length;c++){d=b[c];if(null!==e&&e.contains(d))throw Error(a+"contains a path "+e.toString()+" that is ancestor of another path "+d.toString());e=d}}
+function jg(a,b,c){var d=E(a,1,!1);if(!ga(b)||da(b))throw Error(d+" must be an object containing the children to replace.");var e=[];Fb(b,function(a,b){var k=new P(a);hg(d,b,c.o(k));if(".priority"===me(k)&&!fg(b))throw Error(d+"contains an invalid value for '"+k.toString()+"', which must be a valid Firebase priority (a string, finite number, server value, or null).");e.push(k)});ig(d,e)}
+function kg(a,b,c){if(td(c))throw Error(E(a,b,!1)+"is "+c.toString()+", but must be a valid Firebase priority (a string, finite number, server value, or null).");if(!fg(c))throw Error(E(a,b,!1)+"must be a valid Firebase priority (a string, finite number, server value, or null).");}
+function lg(a,b,c){if(!c||p(b))switch(b){case "value":case "child_added":case "child_removed":case "child_changed":case "child_moved":break;default:throw Error(E(a,1,c)+'must be a valid event type: "value", "child_added", "child_removed", "child_changed", or "child_moved".');}}function mg(a,b){if(p(b)&&!eg(b))throw Error(E(a,2,!0)+'was an invalid key: "'+b+'".  Firebase keys must be non-empty strings and can\'t contain ".", "#", "$", "/", "[", or "]").');}
+function ng(a,b){if(!q(b)||0===b.length||cg.test(b))throw Error(E(a,1,!1)+'was an invalid path: "'+b+'". Paths must be non-empty strings and can\'t contain ".", "#", "$", "[", or "]"');}function og(a,b){if(".info"===K(b))throw Error(a+" failed: Can't modify data under /.info/");}function pg(a,b){if(!q(b))throw Error(E(a,1,!1)+"must be a valid credential (a string).");}function qg(a,b,c){if(!q(c))throw Error(E(a,b,!1)+"must be a valid string.");}
+function rg(a,b){qg(a,1,b);if(!dg.test(b))throw Error(E(a,1,!1)+"'"+b+"' is not a valid authentication provider.");}function sg(a,b,c,d){if(!d||p(c))if(!ga(c)||null===c)throw Error(E(a,b,d)+"must be a valid object.");}function tg(a,b,c){if(!ga(b)||!y(b,c))throw Error(E(a,1,!1)+'must contain the key "'+c+'"');if(!q(z(b,c)))throw Error(E(a,1,!1)+'must contain the key "'+c+'" with type "string"');};function ug(){this.set={}}h=ug.prototype;h.add=function(a,b){this.set[a]=null!==b?b:!0};h.contains=function(a){return y(this.set,a)};h.get=function(a){return this.contains(a)?this.set[a]:void 0};h.remove=function(a){delete this.set[a]};h.clear=function(){this.set={}};h.e=function(){return va(this.set)};h.count=function(){return oa(this.set)};function vg(a,b){v(a.set,function(a,d){b(d,a)})}h.keys=function(){var a=[];v(this.set,function(b,c){a.push(c)});return a};function Vc(){this.m=this.B=null}Vc.prototype.find=function(a){if(null!=this.B)return this.B.S(a);if(a.e()||null==this.m)return null;var b=K(a);a=N(a);return this.m.contains(b)?this.m.get(b).find(a):null};Vc.prototype.rc=function(a,b){if(a.e())this.B=b,this.m=null;else if(null!==this.B)this.B=this.B.H(a,b);else{null==this.m&&(this.m=new ug);var c=K(a);this.m.contains(c)||this.m.add(c,new Vc);c=this.m.get(c);a=N(a);c.rc(a,b)}};
+function wg(a,b){if(b.e())return a.B=null,a.m=null,!0;if(null!==a.B){if(a.B.L())return!1;var c=a.B;a.B=null;c.R(R,function(b,c){a.rc(new P(b),c)});return wg(a,b)}return null!==a.m?(c=K(b),b=N(b),a.m.contains(c)&&wg(a.m.get(c),b)&&a.m.remove(c),a.m.e()?(a.m=null,!0):!1):!0}function Wc(a,b,c){null!==a.B?c(b,a.B):a.R(function(a,e){var f=new P(b.toString()+"/"+a);Wc(e,f,c)})}Vc.prototype.R=function(a){null!==this.m&&vg(this.m,function(b,c){a(b,c)})};var xg="auth.firebase.com";function yg(a,b,c){this.qd=a||{};this.he=b||{};this.fb=c||{};this.qd.remember||(this.qd.remember="default")}var zg=["remember","redirectTo"];function Ag(a){var b={},c={};Fb(a||{},function(a,e){0<=La(zg,a)?b[a]=e:c[a]=e});return new yg(b,{},c)};function Bg(a,b){this.Ue=["session",a.Rd,a.lc].join(":");this.ee=b}Bg.prototype.set=function(a,b){if(!b)if(this.ee.length)b=this.ee[0];else throw Error("fb.login.SessionManager : No storage options available!");b.set(this.Ue,a)};Bg.prototype.get=function(){var a=Oa(this.ee,u(this.Bg,this)),a=Na(a,function(a){return null!==a});Va(a,function(a,c){return Dd(c.token)-Dd(a.token)});return 0<a.length?a.shift():null};Bg.prototype.Bg=function(a){try{var b=a.get(this.Ue);if(b&&b.token)return b}catch(c){}return null};
+Bg.prototype.clear=function(){var a=this;Ma(this.ee,function(b){b.remove(a.Ue)})};function Cg(){return"undefined"!==typeof navigator&&"string"===typeof navigator.userAgent?navigator.userAgent:""}function Dg(){return"undefined"!==typeof window&&!!(window.cordova||window.phonegap||window.PhoneGap)&&/ios|iphone|ipod|ipad|android|blackberry|iemobile/i.test(Cg())}function Eg(){return"undefined"!==typeof location&&/^file:\//.test(location.href)}
+function Fg(a){var b=Cg();if(""===b)return!1;if("Microsoft Internet Explorer"===navigator.appName){if((b=b.match(/MSIE ([0-9]{1,}[\.0-9]{0,})/))&&1<b.length)return parseFloat(b[1])>=a}else if(-1<b.indexOf("Trident")&&(b=b.match(/rv:([0-9]{2,2}[\.0-9]{0,})/))&&1<b.length)return parseFloat(b[1])>=a;return!1};function Gg(){var a=window.opener.frames,b;for(b=a.length-1;0<=b;b--)try{if(a[b].location.protocol===window.location.protocol&&a[b].location.host===window.location.host&&"__winchan_relay_frame"===a[b].name)return a[b]}catch(c){}return null}function Hg(a,b,c){a.attachEvent?a.attachEvent("on"+b,c):a.addEventListener&&a.addEventListener(b,c,!1)}function Ig(a,b,c){a.detachEvent?a.detachEvent("on"+b,c):a.removeEventListener&&a.removeEventListener(b,c,!1)}
+function Jg(a){/^https?:\/\//.test(a)||(a=window.location.href);var b=/^(https?:\/\/[\-_a-zA-Z\.0-9:]+)/.exec(a);return b?b[1]:a}function Kg(a){var b="";try{a=a.replace(/.*\?/,"");var c=Jb(a);c&&y(c,"__firebase_request_key")&&(b=z(c,"__firebase_request_key"))}catch(d){}return b}function Lg(){var a=sd(xg);return a.scheme+"://"+a.host+"/v2"}function Mg(a){return Lg()+"/"+a+"/auth/channel"};function Ng(a){var b=this;this.hb=a;this.fe="*";Fg(8)?this.Uc=this.Cd=Gg():(this.Uc=window.opener,this.Cd=window);if(!b.Uc)throw"Unable to find relay frame";Hg(this.Cd,"message",u(this.nc,this));Hg(this.Cd,"message",u(this.Ff,this));try{Og(this,{a:"ready"})}catch(c){Hg(this.Uc,"load",function(){Og(b,{a:"ready"})})}Hg(window,"unload",u(this.Mg,this))}function Og(a,b){b=G(b);Fg(8)?a.Uc.doPost(b,a.fe):a.Uc.postMessage(b,a.fe)}
+Ng.prototype.nc=function(a){var b=this,c;try{c=Rb(a.data)}catch(d){}c&&"request"===c.a&&(Ig(window,"message",this.nc),this.fe=a.origin,this.hb&&setTimeout(function(){b.hb(b.fe,c.d,function(a,c){b.mg=!c;b.hb=void 0;Og(b,{a:"response",d:a,forceKeepWindowOpen:c})})},0))};Ng.prototype.Mg=function(){try{Ig(this.Cd,"message",this.Ff)}catch(a){}this.hb&&(Og(this,{a:"error",d:"unknown closed window"}),this.hb=void 0);try{window.close()}catch(b){}};Ng.prototype.Ff=function(a){if(this.mg&&"die"===a.data)try{window.close()}catch(b){}};function Pg(a){this.tc=Fa()+Fa()+Fa();this.Kf=a}Pg.prototype.open=function(a,b){cd.set("redirect_request_id",this.tc);cd.set("redirect_request_id",this.tc);b.requestId=this.tc;b.redirectTo=b.redirectTo||window.location.href;a+=(/\?/.test(a)?"":"?")+Ib(b);window.location=a};Pg.isAvailable=function(){return!Eg()&&!Dg()};Pg.prototype.Fc=function(){return"redirect"};var Qg={NETWORK_ERROR:"Unable to contact the Firebase server.",SERVER_ERROR:"An unknown server error occurred.",TRANSPORT_UNAVAILABLE:"There are no login transports available for the requested method.",REQUEST_INTERRUPTED:"The browser redirected the page before the login request could complete.",USER_CANCELLED:"The user cancelled authentication."};function Rg(a){var b=Error(z(Qg,a),a);b.code=a;return b};function Sg(a){var b;(b=!a.window_features)||(b=Cg(),b=-1!==b.indexOf("Fennec/")||-1!==b.indexOf("Firefox/")&&-1!==b.indexOf("Android"));b&&(a.window_features=void 0);a.window_name||(a.window_name="_blank");this.options=a}
+Sg.prototype.open=function(a,b,c){function d(a){g&&(document.body.removeChild(g),g=void 0);t&&(t=clearInterval(t));Ig(window,"message",e);Ig(window,"unload",d);if(l&&!a)try{l.close()}catch(b){k.postMessage("die",m)}l=k=void 0}function e(a){if(a.origin===m)try{var b=Rb(a.data);"ready"===b.a?k.postMessage(A,m):"error"===b.a?(d(!1),c&&(c(b.d),c=null)):"response"===b.a&&(d(b.forceKeepWindowOpen),c&&(c(null,b.d),c=null))}catch(e){}}var f=Fg(8),g,k;if(!this.options.relay_url)return c(Error("invalid arguments: origin of url and relay_url must match"));
+var m=Jg(a);if(m!==Jg(this.options.relay_url))c&&setTimeout(function(){c(Error("invalid arguments: origin of url and relay_url must match"))},0);else{f&&(g=document.createElement("iframe"),g.setAttribute("src",this.options.relay_url),g.style.display="none",g.setAttribute("name","__winchan_relay_frame"),document.body.appendChild(g),k=g.contentWindow);a+=(/\?/.test(a)?"":"?")+Ib(b);var l=window.open(a,this.options.window_name,this.options.window_features);k||(k=l);var t=setInterval(function(){l&&l.closed&&
+(d(!1),c&&(c(Rg("USER_CANCELLED")),c=null))},500),A=G({a:"request",d:b});Hg(window,"unload",d);Hg(window,"message",e)}};
+Sg.isAvailable=function(){var a;if(a="postMessage"in window&&!Eg())(a=Dg()||"undefined"!==typeof navigator&&(!!Cg().match(/Windows Phone/)||!!window.Windows&&/^ms-appx:/.test(location.href)))||(a=Cg(),a="undefined"!==typeof navigator&&"undefined"!==typeof window&&!!(a.match(/(iPhone|iPod|iPad).*AppleWebKit(?!.*Safari)/i)||a.match(/CriOS/)||a.match(/Twitter for iPhone/)||a.match(/FBAN\/FBIOS/)||window.navigator.standalone)),a=!a;return a&&!Cg().match(/PhantomJS/)};Sg.prototype.Fc=function(){return"popup"};function Tg(a){a.method||(a.method="GET");a.headers||(a.headers={});a.headers.content_type||(a.headers.content_type="application/json");a.headers.content_type=a.headers.content_type.toLowerCase();this.options=a}
+Tg.prototype.open=function(a,b,c){function d(){c&&(c(Rg("REQUEST_INTERRUPTED")),c=null)}var e=new XMLHttpRequest,f=this.options.method.toUpperCase(),g;Hg(window,"beforeunload",d);e.onreadystatechange=function(){if(c&&4===e.readyState){var a;if(200<=e.status&&300>e.status){try{a=Rb(e.responseText)}catch(b){}c(null,a)}else 500<=e.status&&600>e.status?c(Rg("SERVER_ERROR")):c(Rg("NETWORK_ERROR"));c=null;Ig(window,"beforeunload",d)}};if("GET"===f)a+=(/\?/.test(a)?"":"?")+Ib(b),g=null;else{var k=this.options.headers.content_type;
+"application/json"===k&&(g=G(b));"application/x-www-form-urlencoded"===k&&(g=Ib(b))}e.open(f,a,!0);a={"X-Requested-With":"XMLHttpRequest",Accept:"application/json;text/plain"};ya(a,this.options.headers);for(var m in a)e.setRequestHeader(m,a[m]);e.send(g)};Tg.isAvailable=function(){var a;if(a=!!window.XMLHttpRequest)a=Cg(),a=!(a.match(/MSIE/)||a.match(/Trident/))||Fg(10);return a};Tg.prototype.Fc=function(){return"json"};function Ug(a){this.tc=Fa()+Fa()+Fa();this.Kf=a}
+Ug.prototype.open=function(a,b,c){function d(){c&&(c(Rg("USER_CANCELLED")),c=null)}var e=this,f=sd(xg),g;b.requestId=this.tc;b.redirectTo=f.scheme+"://"+f.host+"/blank/page.html";a+=/\?/.test(a)?"":"?";a+=Ib(b);(g=window.open(a,"_blank","location=no"))&&r(g.addEventListener)?(g.addEventListener("loadstart",function(a){var b;if(b=a&&a.url)a:{try{var l=document.createElement("a");l.href=a.url;b=l.host===f.host&&"/blank/page.html"===l.pathname;break a}catch(t){}b=!1}b&&(a=Kg(a.url),g.removeEventListener("exit",
+d),g.close(),a=new yg(null,null,{requestId:e.tc,requestKey:a}),e.Kf.requestWithCredential("/auth/session",a,c),c=null)}),g.addEventListener("exit",d)):c(Rg("TRANSPORT_UNAVAILABLE"))};Ug.isAvailable=function(){return Dg()};Ug.prototype.Fc=function(){return"redirect"};function Vg(a){a.callback_parameter||(a.callback_parameter="callback");this.options=a;window.__firebase_auth_jsonp=window.__firebase_auth_jsonp||{}}
+Vg.prototype.open=function(a,b,c){function d(){c&&(c(Rg("REQUEST_INTERRUPTED")),c=null)}function e(){setTimeout(function(){window.__firebase_auth_jsonp[f]=void 0;va(window.__firebase_auth_jsonp)&&(window.__firebase_auth_jsonp=void 0);try{var a=document.getElementById(f);a&&a.parentNode.removeChild(a)}catch(b){}},1);Ig(window,"beforeunload",d)}var f="fn"+(new Date).getTime()+Math.floor(99999*Math.random());b[this.options.callback_parameter]="__firebase_auth_jsonp."+f;a+=(/\?/.test(a)?"":"?")+Ib(b);
+Hg(window,"beforeunload",d);window.__firebase_auth_jsonp[f]=function(a){c&&(c(null,a),c=null);e()};Wg(f,a,c)};
+function Wg(a,b,c){setTimeout(function(){try{var d=document.createElement("script");d.type="text/javascript";d.id=a;d.async=!0;d.src=b;d.onerror=function(){var b=document.getElementById(a);null!==b&&b.parentNode.removeChild(b);c&&c(Rg("NETWORK_ERROR"))};var e=document.getElementsByTagName("head");(e&&0!=e.length?e[0]:document.documentElement).appendChild(d)}catch(f){c&&c(Rg("NETWORK_ERROR"))}},0)}Vg.isAvailable=function(){return"undefined"!==typeof document&&null!=document.createElement};
+Vg.prototype.Fc=function(){return"json"};function Xg(a,b,c,d){ff.call(this,["auth_status"]);this.G=a;this.hf=b;this.gh=c;this.Pe=d;this.wc=new Bg(a,[bd,cd]);this.qb=null;this.We=!1;Yg(this)}ka(Xg,ff);h=Xg.prototype;h.Be=function(){return this.qb||null};function Yg(a){cd.get("redirect_request_id")&&Zg(a);var b=a.wc.get();b&&b.token?($g(a,b),a.hf(b.token,function(c,d){ah(a,c,d,!1,b.token,b)},function(b,d){bh(a,"resumeSession()",b,d)})):$g(a,null)}
+function ch(a,b,c,d,e,f){"firebaseio-demo.com"===a.G.domain&&S("Firebase authentication is not supported on demo Firebases (*.firebaseio-demo.com). To secure your Firebase, create a production Firebase at https://www.firebase.com.");a.hf(b,function(f,k){ah(a,f,k,!0,b,c,d||{},e)},function(b,c){bh(a,"auth()",b,c,f)})}function dh(a,b){a.wc.clear();$g(a,null);a.gh(function(a,d){if("ok"===a)T(b,null);else{var e=(a||"error").toUpperCase(),f=e;d&&(f+=": "+d);f=Error(f);f.code=e;T(b,f)}})}
+function ah(a,b,c,d,e,f,g,k){"ok"===b?(d&&(b=c.auth,f.auth=b,f.expires=c.expires,f.token=Ed(e)?e:"",c=null,b&&y(b,"uid")?c=z(b,"uid"):y(f,"uid")&&(c=z(f,"uid")),f.uid=c,c="custom",b&&y(b,"provider")?c=z(b,"provider"):y(f,"provider")&&(c=z(f,"provider")),f.provider=c,a.wc.clear(),Ed(e)&&(g=g||{},c=bd,"sessionOnly"===g.remember&&(c=cd),"none"!==g.remember&&a.wc.set(f,c)),$g(a,f)),T(k,null,f)):(a.wc.clear(),$g(a,null),f=a=(b||"error").toUpperCase(),c&&(f+=": "+c),f=Error(f),f.code=a,T(k,f))}
+function bh(a,b,c,d,e){S(b+" was canceled: "+d);a.wc.clear();$g(a,null);a=Error(d);a.code=c.toUpperCase();T(e,a)}function eh(a,b,c,d,e){fh(a);c=new yg(d||{},{},c||{});gh(a,[Tg,Vg],"/auth/"+b,c,e)}
+function hh(a,b,c,d){fh(a);var e=[Sg,Ug];c=Ag(c);"anonymous"===b||"password"===b?setTimeout(function(){T(d,Rg("TRANSPORT_UNAVAILABLE"))},0):(c.he.window_features="menubar=yes,modal=yes,alwaysRaised=yeslocation=yes,resizable=yes,scrollbars=yes,status=yes,height=625,width=625,top="+("object"===typeof screen?.5*(screen.height-625):0)+",left="+("object"===typeof screen?.5*(screen.width-625):0),c.he.relay_url=Mg(a.G.lc),c.he.requestWithCredential=u(a.uc,a),gh(a,e,"/auth/"+b,c,d))}
+function Zg(a){var b=cd.get("redirect_request_id");if(b){var c=cd.get("redirect_client_options");cd.remove("redirect_request_id");cd.remove("redirect_client_options");var d=[Tg,Vg],b={requestId:b,requestKey:Kg(document.location.hash)},c=new yg(c,{},b);a.We=!0;try{document.location.hash=document.location.hash.replace(/&__firebase_request_key=([a-zA-z0-9]*)/,"")}catch(e){}gh(a,d,"/auth/session",c,function(){this.We=!1}.bind(a))}}
+h.ve=function(a,b){fh(this);var c=Ag(a);c.fb._method="POST";this.uc("/users",c,function(a,c){a?T(b,a):T(b,a,c)})};h.Xe=function(a,b){var c=this;fh(this);var d="/users/"+encodeURIComponent(a.email),e=Ag(a);e.fb._method="DELETE";this.uc(d,e,function(a,d){!a&&d&&d.uid&&c.qb&&c.qb.uid&&c.qb.uid===d.uid&&dh(c);T(b,a)})};h.se=function(a,b){fh(this);var c="/users/"+encodeURIComponent(a.email)+"/password",d=Ag(a);d.fb._method="PUT";d.fb.password=a.newPassword;this.uc(c,d,function(a){T(b,a)})};
+h.re=function(a,b){fh(this);var c="/users/"+encodeURIComponent(a.oldEmail)+"/email",d=Ag(a);d.fb._method="PUT";d.fb.email=a.newEmail;d.fb.password=a.password;this.uc(c,d,function(a){T(b,a)})};h.Ze=function(a,b){fh(this);var c="/users/"+encodeURIComponent(a.email)+"/password",d=Ag(a);d.fb._method="POST";this.uc(c,d,function(a){T(b,a)})};h.uc=function(a,b,c){ih(this,[Tg,Vg],a,b,c)};
+function gh(a,b,c,d,e){ih(a,b,c,d,function(b,c){!b&&c&&c.token&&c.uid?ch(a,c.token,c,d.qd,function(a,b){a?T(e,a):T(e,null,b)}):T(e,b||Rg("UNKNOWN_ERROR"))})}
+function ih(a,b,c,d,e){b=Na(b,function(a){return"function"===typeof a.isAvailable&&a.isAvailable()});0===b.length?setTimeout(function(){T(e,Rg("TRANSPORT_UNAVAILABLE"))},0):(b=new (b.shift())(d.he),d=Gb(d.fb),d.v="js-"+Eb,d.transport=b.Fc(),d.suppress_status_codes=!0,a=Lg()+"/"+a.G.lc+c,b.open(a,d,function(a,b){if(a)T(e,a);else if(b&&b.error){var c=Error(b.error.message);c.code=b.error.code;c.details=b.error.details;T(e,c)}else T(e,null,b)}))}
+function $g(a,b){var c=null!==a.qb||null!==b;a.qb=b;c&&a.ie("auth_status",b);a.Pe(null!==b)}h.Ee=function(a){O("auth_status"===a,'initial event must be of type "auth_status"');return this.We?null:[this.qb]};function fh(a){var b=a.G;if("firebaseio.com"!==b.domain&&"firebaseio-demo.com"!==b.domain&&"auth.firebase.com"===xg)throw Error("This custom Firebase server ('"+a.G.domain+"') does not support delegated login.");};var gd="websocket",hd="long_polling";function jh(a){this.nc=a;this.Qd=[];this.Wb=0;this.te=-1;this.Jb=null}function kh(a,b,c){a.te=b;a.Jb=c;a.te<a.Wb&&(a.Jb(),a.Jb=null)}function lh(a,b,c){for(a.Qd[b]=c;a.Qd[a.Wb];){var d=a.Qd[a.Wb];delete a.Qd[a.Wb];for(var e=0;e<d.length;++e)if(d[e]){var f=a;gc(function(){f.nc(d[e])})}if(a.Wb===a.te){a.Jb&&(clearTimeout(a.Jb),a.Jb(),a.Jb=null);break}a.Wb++}};function mh(a,b,c,d){this.ue=a;this.f=pd(a);this.rb=this.sb=0;this.Xa=uc(b);this.Xf=c;this.Kc=!1;this.Fb=d;this.ld=function(a){return fd(b,hd,a)}}var nh,oh;
+mh.prototype.open=function(a,b){this.mf=0;this.na=b;this.Ef=new jh(a);this.Db=!1;var c=this;this.ub=setTimeout(function(){c.f("Timed out trying to connect.");c.bb();c.ub=null},Math.floor(3E4));ud(function(){if(!c.Db){c.Wa=new ph(function(a,b,d,k,m){qh(c,arguments);if(c.Wa)if(c.ub&&(clearTimeout(c.ub),c.ub=null),c.Kc=!0,"start"==a)c.id=b,c.Mf=d;else if("close"===a)b?(c.Wa.$d=!1,kh(c.Ef,b,function(){c.bb()})):c.bb();else throw Error("Unrecognized command received: "+a);},function(a,b){qh(c,arguments);
+lh(c.Ef,a,b)},function(){c.bb()},c.ld);var a={start:"t"};a.ser=Math.floor(1E8*Math.random());c.Wa.ke&&(a.cb=c.Wa.ke);a.v="5";c.Xf&&(a.s=c.Xf);c.Fb&&(a.ls=c.Fb);"undefined"!==typeof location&&location.href&&-1!==location.href.indexOf("firebaseio.com")&&(a.r="f");a=c.ld(a);c.f("Connecting via long-poll to "+a);rh(c.Wa,a,function(){})}})};
+mh.prototype.start=function(){var a=this.Wa,b=this.Mf;a.Fg=this.id;a.Gg=b;for(a.oe=!0;sh(a););a=this.id;b=this.Mf;this.kc=document.createElement("iframe");var c={dframe:"t"};c.id=a;c.pw=b;this.kc.src=this.ld(c);this.kc.style.display="none";document.body.appendChild(this.kc)};
+mh.isAvailable=function(){return nh||!oh&&"undefined"!==typeof document&&null!=document.createElement&&!("object"===typeof window&&window.chrome&&window.chrome.extension&&!/^chrome/.test(window.location.href))&&!("object"===typeof Windows&&"object"===typeof Windows.ih)&&!0};h=mh.prototype;h.Hd=function(){};h.fd=function(){this.Db=!0;this.Wa&&(this.Wa.close(),this.Wa=null);this.kc&&(document.body.removeChild(this.kc),this.kc=null);this.ub&&(clearTimeout(this.ub),this.ub=null)};
+h.bb=function(){this.Db||(this.f("Longpoll is closing itself"),this.fd(),this.na&&(this.na(this.Kc),this.na=null))};h.close=function(){this.Db||(this.f("Longpoll is being closed."),this.fd())};h.send=function(a){a=G(a);this.sb+=a.length;rc(this.Xa,"bytes_sent",a.length);a=Ob(a);a=nb(a,!0);a=yd(a,1840);for(var b=0;b<a.length;b++){var c=this.Wa;c.cd.push({Xg:this.mf,fh:a.length,of:a[b]});c.oe&&sh(c);this.mf++}};function qh(a,b){var c=G(b).length;a.rb+=c;rc(a.Xa,"bytes_received",c)}
+function ph(a,b,c,d){this.ld=d;this.lb=c;this.Te=new ug;this.cd=[];this.we=Math.floor(1E8*Math.random());this.$d=!0;this.ke=id();window["pLPCommand"+this.ke]=a;window["pRTLPCB"+this.ke]=b;a=document.createElement("iframe");a.style.display="none";if(document.body){document.body.appendChild(a);try{a.contentWindow.document||fc("No IE domain setting required")}catch(e){a.src="javascript:void((function(){document.open();document.domain='"+document.domain+"';document.close();})())"}}else throw"Document body has not initialized. Wait to initialize Firebase until after the document is ready.";
+a.contentDocument?a.jb=a.contentDocument:a.contentWindow?a.jb=a.contentWindow.document:a.document&&(a.jb=a.document);this.Ga=a;a="";this.Ga.src&&"javascript:"===this.Ga.src.substr(0,11)&&(a='<script>document.domain="'+document.domain+'";\x3c/script>');a="<html><body>"+a+"</body></html>";try{this.Ga.jb.open(),this.Ga.jb.write(a),this.Ga.jb.close()}catch(f){fc("frame writing exception"),f.stack&&fc(f.stack),fc(f)}}
+ph.prototype.close=function(){this.oe=!1;if(this.Ga){this.Ga.jb.body.innerHTML="";var a=this;setTimeout(function(){null!==a.Ga&&(document.body.removeChild(a.Ga),a.Ga=null)},Math.floor(0))}var b=this.lb;b&&(this.lb=null,b())};
+function sh(a){if(a.oe&&a.$d&&a.Te.count()<(0<a.cd.length?2:1)){a.we++;var b={};b.id=a.Fg;b.pw=a.Gg;b.ser=a.we;for(var b=a.ld(b),c="",d=0;0<a.cd.length;)if(1870>=a.cd[0].of.length+30+c.length){var e=a.cd.shift(),c=c+"&seg"+d+"="+e.Xg+"&ts"+d+"="+e.fh+"&d"+d+"="+e.of;d++}else break;th(a,b+c,a.we);return!0}return!1}function th(a,b,c){function d(){a.Te.remove(c);sh(a)}a.Te.add(c,1);var e=setTimeout(d,Math.floor(25E3));rh(a,b,function(){clearTimeout(e);d()})}
+function rh(a,b,c){setTimeout(function(){try{if(a.$d){var d=a.Ga.jb.createElement("script");d.type="text/javascript";d.async=!0;d.src=b;d.onload=d.onreadystatechange=function(){var a=d.readyState;a&&"loaded"!==a&&"complete"!==a||(d.onload=d.onreadystatechange=null,d.parentNode&&d.parentNode.removeChild(d),c())};d.onerror=function(){fc("Long-poll script failed to load: "+b);a.$d=!1;a.close()};a.Ga.jb.body.appendChild(d)}}catch(e){}},Math.floor(1))};var uh=null;"undefined"!==typeof MozWebSocket?uh=MozWebSocket:"undefined"!==typeof WebSocket&&(uh=WebSocket);function vh(a,b,c,d){this.ue=a;this.f=pd(this.ue);this.frames=this.Nc=null;this.rb=this.sb=this.ff=0;this.Xa=uc(b);a={v:"5"};"undefined"!==typeof location&&location.href&&-1!==location.href.indexOf("firebaseio.com")&&(a.r="f");c&&(a.s=c);d&&(a.ls=d);this.jf=fd(b,gd,a)}var wh;
+vh.prototype.open=function(a,b){this.lb=b;this.Kg=a;this.f("Websocket connecting to "+this.jf);this.Kc=!1;bd.set("previous_websocket_failure",!0);try{this.La=new uh(this.jf)}catch(c){this.f("Error instantiating WebSocket.");var d=c.message||c.data;d&&this.f(d);this.bb();return}var e=this;this.La.onopen=function(){e.f("Websocket connected.");e.Kc=!0};this.La.onclose=function(){e.f("Websocket connection was disconnected.");e.La=null;e.bb()};this.La.onmessage=function(a){if(null!==e.La)if(a=a.data,e.rb+=
+a.length,rc(e.Xa,"bytes_received",a.length),xh(e),null!==e.frames)yh(e,a);else{a:{O(null===e.frames,"We already have a frame buffer");if(6>=a.length){var b=Number(a);if(!isNaN(b)){e.ff=b;e.frames=[];a=null;break a}}e.ff=1;e.frames=[]}null!==a&&yh(e,a)}};this.La.onerror=function(a){e.f("WebSocket error.  Closing connection.");(a=a.message||a.data)&&e.f(a);e.bb()}};vh.prototype.start=function(){};
+vh.isAvailable=function(){var a=!1;if("undefined"!==typeof navigator&&navigator.userAgent){var b=navigator.userAgent.match(/Android ([0-9]{0,}\.[0-9]{0,})/);b&&1<b.length&&4.4>parseFloat(b[1])&&(a=!0)}return!a&&null!==uh&&!wh};vh.responsesRequiredToBeHealthy=2;vh.healthyTimeout=3E4;h=vh.prototype;h.Hd=function(){bd.remove("previous_websocket_failure")};function yh(a,b){a.frames.push(b);if(a.frames.length==a.ff){var c=a.frames.join("");a.frames=null;c=Rb(c);a.Kg(c)}}
+h.send=function(a){xh(this);a=G(a);this.sb+=a.length;rc(this.Xa,"bytes_sent",a.length);a=yd(a,16384);1<a.length&&zh(this,String(a.length));for(var b=0;b<a.length;b++)zh(this,a[b])};h.fd=function(){this.Db=!0;this.Nc&&(clearInterval(this.Nc),this.Nc=null);this.La&&(this.La.close(),this.La=null)};h.bb=function(){this.Db||(this.f("WebSocket is closing itself"),this.fd(),this.lb&&(this.lb(this.Kc),this.lb=null))};h.close=function(){this.Db||(this.f("WebSocket is being closed"),this.fd())};
+function xh(a){clearInterval(a.Nc);a.Nc=setInterval(function(){a.La&&zh(a,"0");xh(a)},Math.floor(45E3))}function zh(a,b){try{a.La.send(b)}catch(c){a.f("Exception thrown from WebSocket.send():",c.message||c.data,"Closing connection."),setTimeout(u(a.bb,a),0)}};function Ah(a){Bh(this,a)}var Ch=[mh,vh];function Bh(a,b){var c=vh&&vh.isAvailable(),d=c&&!(bd.Af||!0===bd.get("previous_websocket_failure"));b.hh&&(c||S("wss:// URL used, but browser isn't known to support websockets.  Trying anyway."),d=!0);if(d)a.jd=[vh];else{var e=a.jd=[];zd(Ch,function(a,b){b&&b.isAvailable()&&e.push(b)})}}function Dh(a){if(0<a.jd.length)return a.jd[0];throw Error("No transports available");};function Eh(a,b,c,d,e,f,g){this.id=a;this.f=pd("c:"+this.id+":");this.nc=c;this.Zc=d;this.na=e;this.Re=f;this.G=b;this.Pd=[];this.kf=0;this.Wf=new Ah(b);this.N=0;this.Fb=g;this.f("Connection created");Fh(this)}
+function Fh(a){var b=Dh(a.Wf);a.K=new b("c:"+a.id+":"+a.kf++,a.G,void 0,a.Fb);a.Ve=b.responsesRequiredToBeHealthy||0;var c=Gh(a,a.K),d=Hh(a,a.K);a.kd=a.K;a.ed=a.K;a.F=null;a.Eb=!1;setTimeout(function(){a.K&&a.K.open(c,d)},Math.floor(0));b=b.healthyTimeout||0;0<b&&(a.Bd=setTimeout(function(){a.Bd=null;a.Eb||(a.K&&102400<a.K.rb?(a.f("Connection exceeded healthy timeout but has received "+a.K.rb+" bytes.  Marking connection healthy."),a.Eb=!0,a.K.Hd()):a.K&&10240<a.K.sb?a.f("Connection exceeded healthy timeout but has sent "+
+a.K.sb+" bytes.  Leaving connection alive."):(a.f("Closing unhealthy connection after timeout."),a.close()))},Math.floor(b)))}function Hh(a,b){return function(c){b===a.K?(a.K=null,c||0!==a.N?1===a.N&&a.f("Realtime connection lost."):(a.f("Realtime connection failed."),"s-"===a.G.ab.substr(0,2)&&(bd.remove("host:"+a.G.host),a.G.ab=a.G.host)),a.close()):b===a.F?(a.f("Secondary connection lost."),c=a.F,a.F=null,a.kd!==c&&a.ed!==c||a.close()):a.f("closing an old connection")}}
+function Gh(a,b){return function(c){if(2!=a.N)if(b===a.ed){var d=wd("t",c);c=wd("d",c);if("c"==d){if(d=wd("t",c),"d"in c)if(c=c.d,"h"===d){var d=c.ts,e=c.v,f=c.h;a.Uf=c.s;ed(a.G,f);0==a.N&&(a.K.start(),Ih(a,a.K,d),"5"!==e&&S("Protocol version mismatch detected"),c=a.Wf,(c=1<c.jd.length?c.jd[1]:null)&&Jh(a,c))}else if("n"===d){a.f("recvd end transmission on primary");a.ed=a.F;for(c=0;c<a.Pd.length;++c)a.Ld(a.Pd[c]);a.Pd=[];Kh(a)}else"s"===d?(a.f("Connection shutdown command received. Shutting down..."),
+a.Re&&(a.Re(c),a.Re=null),a.na=null,a.close()):"r"===d?(a.f("Reset packet received.  New host: "+c),ed(a.G,c),1===a.N?a.close():(Lh(a),Fh(a))):"e"===d?qd("Server Error: "+c):"o"===d?(a.f("got pong on primary."),Mh(a),Nh(a)):qd("Unknown control packet command: "+d)}else"d"==d&&a.Ld(c)}else if(b===a.F)if(d=wd("t",c),c=wd("d",c),"c"==d)"t"in c&&(c=c.t,"a"===c?Oh(a):"r"===c?(a.f("Got a reset on secondary, closing it"),a.F.close(),a.kd!==a.F&&a.ed!==a.F||a.close()):"o"===c&&(a.f("got pong on secondary."),
+a.Tf--,Oh(a)));else if("d"==d)a.Pd.push(c);else throw Error("Unknown protocol layer: "+d);else a.f("message on old connection")}}Eh.prototype.Ia=function(a){Ph(this,{t:"d",d:a})};function Kh(a){a.kd===a.F&&a.ed===a.F&&(a.f("cleaning up and promoting a connection: "+a.F.ue),a.K=a.F,a.F=null)}
+function Oh(a){0>=a.Tf?(a.f("Secondary connection is healthy."),a.Eb=!0,a.F.Hd(),a.F.start(),a.f("sending client ack on secondary"),a.F.send({t:"c",d:{t:"a",d:{}}}),a.f("Ending transmission on primary"),a.K.send({t:"c",d:{t:"n",d:{}}}),a.kd=a.F,Kh(a)):(a.f("sending ping on secondary."),a.F.send({t:"c",d:{t:"p",d:{}}}))}Eh.prototype.Ld=function(a){Mh(this);this.nc(a)};function Mh(a){a.Eb||(a.Ve--,0>=a.Ve&&(a.f("Primary connection is healthy."),a.Eb=!0,a.K.Hd()))}
+function Jh(a,b){a.F=new b("c:"+a.id+":"+a.kf++,a.G,a.Uf);a.Tf=b.responsesRequiredToBeHealthy||0;a.F.open(Gh(a,a.F),Hh(a,a.F));setTimeout(function(){a.F&&(a.f("Timed out trying to upgrade."),a.F.close())},Math.floor(6E4))}function Ih(a,b,c){a.f("Realtime connection established.");a.K=b;a.N=1;a.Zc&&(a.Zc(c,a.Uf),a.Zc=null);0===a.Ve?(a.f("Primary connection is healthy."),a.Eb=!0):setTimeout(function(){Nh(a)},Math.floor(5E3))}
+function Nh(a){a.Eb||1!==a.N||(a.f("sending ping on primary."),Ph(a,{t:"c",d:{t:"p",d:{}}}))}function Ph(a,b){if(1!==a.N)throw"Connection is not connected";a.kd.send(b)}Eh.prototype.close=function(){2!==this.N&&(this.f("Closing realtime connection."),this.N=2,Lh(this),this.na&&(this.na(),this.na=null))};function Lh(a){a.f("Shutting down all connections");a.K&&(a.K.close(),a.K=null);a.F&&(a.F.close(),a.F=null);a.Bd&&(clearTimeout(a.Bd),a.Bd=null)};function Qh(a,b,c,d){this.id=Rh++;this.f=pd("p:"+this.id+":");this.Bf=this.Ie=!1;this.ba={};this.sa=[];this.ad=0;this.Yc=[];this.qa=!1;this.eb=1E3;this.Id=3E5;this.Kb=b;this.Xc=c;this.Se=d;this.G=a;this.wb=this.Ca=this.Ma=this.Fb=this.$e=null;this.Sb=!1;this.Wd={};this.Wg=0;this.rf=!0;this.Oc=this.Ke=null;Sh(this,0);kf.yb().Ib("visible",this.Ng,this);-1===a.host.indexOf("fblocal")&&jf.yb().Ib("online",this.Lg,this)}var Rh=0,Th=0;h=Qh.prototype;
+h.Ia=function(a,b,c){var d=++this.Wg;a={r:d,a:a,b:b};this.f(G(a));O(this.qa,"sendRequest call when we're not connected not allowed.");this.Ma.Ia(a);c&&(this.Wd[d]=c)};h.Cf=function(a,b,c,d){var e=a.wa(),f=a.path.toString();this.f("Listen called for "+f+" "+e);this.ba[f]=this.ba[f]||{};O(Ie(a.n)||!He(a.n),"listen() called for non-default but complete query");O(!this.ba[f][e],"listen() called twice for same path/queryId.");a={I:d,Ad:b,Tg:a,tag:c};this.ba[f][e]=a;this.qa&&Uh(this,a)};
+function Uh(a,b){var c=b.Tg,d=c.path.toString(),e=c.wa();a.f("Listen on "+d+" for "+e);var f={p:d};b.tag&&(f.q=Ge(c.n),f.t=b.tag);f.h=b.Ad();a.Ia("q",f,function(f){var k=f.d,m=f.s;if(k&&"object"===typeof k&&y(k,"w")){var l=z(k,"w");da(l)&&0<=La(l,"no_index")&&S("Using an unspecified index. Consider adding "+('".indexOn": "'+c.n.g.toString()+'"')+" at "+c.path.toString()+" to your security rules for better performance")}(a.ba[d]&&a.ba[d][e])===b&&(a.f("listen response",f),"ok"!==m&&Vh(a,d,e),b.I&&
+b.I(m,k))})}h.O=function(a,b,c){this.Ca={rg:a,sf:!1,Dc:b,od:c};this.f("Authenticating using credential: "+a);Wh(this);(b=40==a.length)||(a=Cd(a).Ec,b="object"===typeof a&&!0===z(a,"admin"));b&&(this.f("Admin auth credential detected.  Reducing max reconnect time."),this.Id=3E4)};h.je=function(a){delete this.Ca;this.qa&&this.Ia("unauth",{},function(b){a(b.s,b.d)})};
+function Wh(a){var b=a.Ca;a.qa&&b&&a.Ia("auth",{cred:b.rg},function(c){var d=c.s;c=c.d||"error";"ok"!==d&&a.Ca===b&&delete a.Ca;b.sf?"ok"!==d&&b.od&&b.od(d,c):(b.sf=!0,b.Dc&&b.Dc(d,c))})}h.$f=function(a,b){var c=a.path.toString(),d=a.wa();this.f("Unlisten called for "+c+" "+d);O(Ie(a.n)||!He(a.n),"unlisten() called for non-default but complete query");if(Vh(this,c,d)&&this.qa){var e=Ge(a.n);this.f("Unlisten on "+c+" for "+d);c={p:c};b&&(c.q=e,c.t=b);this.Ia("n",c)}};
+h.Qe=function(a,b,c){this.qa?Xh(this,"o",a,b,c):this.Yc.push({bd:a,action:"o",data:b,I:c})};h.Gf=function(a,b,c){this.qa?Xh(this,"om",a,b,c):this.Yc.push({bd:a,action:"om",data:b,I:c})};h.Md=function(a,b){this.qa?Xh(this,"oc",a,null,b):this.Yc.push({bd:a,action:"oc",data:null,I:b})};function Xh(a,b,c,d,e){c={p:c,d:d};a.f("onDisconnect "+b,c);a.Ia(b,c,function(a){e&&setTimeout(function(){e(a.s,a.d)},Math.floor(0))})}h.put=function(a,b,c,d){Yh(this,"p",a,b,c,d)};
+h.Df=function(a,b,c,d){Yh(this,"m",a,b,c,d)};function Yh(a,b,c,d,e,f){d={p:c,d:d};p(f)&&(d.h=f);a.sa.push({action:b,Pf:d,I:e});a.ad++;b=a.sa.length-1;a.qa?Zh(a,b):a.f("Buffering put: "+c)}function Zh(a,b){var c=a.sa[b].action,d=a.sa[b].Pf,e=a.sa[b].I;a.sa[b].Ug=a.qa;a.Ia(c,d,function(d){a.f(c+" response",d);delete a.sa[b];a.ad--;0===a.ad&&(a.sa=[]);e&&e(d.s,d.d)})}
+h.Ye=function(a){this.qa&&(a={c:a},this.f("reportStats",a),this.Ia("s",a,function(a){"ok"!==a.s&&this.f("reportStats","Error sending stats: "+a.d)}))};
+h.Ld=function(a){if("r"in a){this.f("from server: "+G(a));var b=a.r,c=this.Wd[b];c&&(delete this.Wd[b],c(a.b))}else{if("error"in a)throw"A server-side error has occurred: "+a.error;"a"in a&&(b=a.a,c=a.b,this.f("handleServerMessage",b,c),"d"===b?this.Kb(c.p,c.d,!1,c.t):"m"===b?this.Kb(c.p,c.d,!0,c.t):"c"===b?$h(this,c.p,c.q):"ac"===b?(a=c.s,b=c.d,c=this.Ca,delete this.Ca,c&&c.od&&c.od(a,b)):"sd"===b?this.$e?this.$e(c):"msg"in c&&"undefined"!==typeof console&&console.log("FIREBASE: "+c.msg.replace("\n",
+"\nFIREBASE: ")):qd("Unrecognized action received from server: "+G(b)+"\nAre you using the latest client?"))}};h.Zc=function(a,b){this.f("connection ready");this.qa=!0;this.Oc=(new Date).getTime();this.Se({serverTimeOffset:a-(new Date).getTime()});this.Fb=b;if(this.rf){var c={};c["sdk.js."+Eb.replace(/\./g,"-")]=1;Dg()?c["framework.cordova"]=1:"object"===typeof navigator&&"ReactNative"===navigator.product&&(c["framework.reactnative"]=1);this.Ye(c)}ai(this);this.rf=!1;this.Xc(!0)};
+function Sh(a,b){O(!a.Ma,"Scheduling a connect when we're already connected/ing?");a.wb&&clearTimeout(a.wb);a.wb=setTimeout(function(){a.wb=null;bi(a)},Math.floor(b))}h.Ng=function(a){a&&!this.Sb&&this.eb===this.Id&&(this.f("Window became visible.  Reducing delay."),this.eb=1E3,this.Ma||Sh(this,0));this.Sb=a};h.Lg=function(a){a?(this.f("Browser went online."),this.eb=1E3,this.Ma||Sh(this,0)):(this.f("Browser went offline.  Killing connection."),this.Ma&&this.Ma.close())};
+h.If=function(){this.f("data client disconnected");this.qa=!1;this.Ma=null;for(var a=0;a<this.sa.length;a++){var b=this.sa[a];b&&"h"in b.Pf&&b.Ug&&(b.I&&b.I("disconnect"),delete this.sa[a],this.ad--)}0===this.ad&&(this.sa=[]);this.Wd={};ci(this)&&(this.Sb?this.Oc&&(3E4<(new Date).getTime()-this.Oc&&(this.eb=1E3),this.Oc=null):(this.f("Window isn't visible.  Delaying reconnect."),this.eb=this.Id,this.Ke=(new Date).getTime()),a=Math.max(0,this.eb-((new Date).getTime()-this.Ke)),a*=Math.random(),this.f("Trying to reconnect in "+
+a+"ms"),Sh(this,a),this.eb=Math.min(this.Id,1.3*this.eb));this.Xc(!1)};function bi(a){if(ci(a)){a.f("Making a connection attempt");a.Ke=(new Date).getTime();a.Oc=null;var b=u(a.Ld,a),c=u(a.Zc,a),d=u(a.If,a),e=a.id+":"+Th++;a.Ma=new Eh(e,a.G,b,c,d,function(b){S(b+" ("+a.G.toString()+")");a.Bf=!0},a.Fb)}}h.Cb=function(){this.Ie=!0;this.Ma?this.Ma.close():(this.wb&&(clearTimeout(this.wb),this.wb=null),this.qa&&this.If())};h.vc=function(){this.Ie=!1;this.eb=1E3;this.Ma||Sh(this,0)};
+function $h(a,b,c){c=c?Oa(c,function(a){return xd(a)}).join("$"):"default";(a=Vh(a,b,c))&&a.I&&a.I("permission_denied")}function Vh(a,b,c){b=(new P(b)).toString();var d;p(a.ba[b])?(d=a.ba[b][c],delete a.ba[b][c],0===oa(a.ba[b])&&delete a.ba[b]):d=void 0;return d}function ai(a){Wh(a);v(a.ba,function(b){v(b,function(b){Uh(a,b)})});for(var b=0;b<a.sa.length;b++)a.sa[b]&&Zh(a,b);for(;a.Yc.length;)b=a.Yc.shift(),Xh(a,b.action,b.bd,b.data,b.I)}function ci(a){var b;b=jf.yb().oc;return!a.Bf&&!a.Ie&&b};var U={zg:function(){nh=wh=!0}};U.forceLongPolling=U.zg;U.Ag=function(){oh=!0};U.forceWebSockets=U.Ag;U.$g=function(a,b){a.k.Va.$e=b};U.setSecurityDebugCallback=U.$g;U.bf=function(a,b){a.k.bf(b)};U.stats=U.bf;U.cf=function(a,b){a.k.cf(b)};U.statsIncrementCounter=U.cf;U.ud=function(a){return a.k.ud};U.dataUpdateCount=U.ud;U.Dg=function(a,b){a.k.He=b};U.interceptServerData=U.Dg;U.Jg=function(a){new Ng(a)};U.onPopupOpen=U.Jg;U.Yg=function(a){xg=a};U.setAuthenticationServer=U.Yg;function di(a,b){this.committed=a;this.snapshot=b};function V(a,b){this.dd=a;this.ta=b}V.prototype.cancel=function(a){D("Firebase.onDisconnect().cancel",0,1,arguments.length);F("Firebase.onDisconnect().cancel",1,a,!0);var b=new B;this.dd.Md(this.ta,C(b,a));return b.D};V.prototype.cancel=V.prototype.cancel;V.prototype.remove=function(a){D("Firebase.onDisconnect().remove",0,1,arguments.length);og("Firebase.onDisconnect().remove",this.ta);F("Firebase.onDisconnect().remove",1,a,!0);var b=new B;ei(this.dd,this.ta,null,C(b,a));return b.D};
+V.prototype.remove=V.prototype.remove;V.prototype.set=function(a,b){D("Firebase.onDisconnect().set",1,2,arguments.length);og("Firebase.onDisconnect().set",this.ta);gg("Firebase.onDisconnect().set",a,this.ta,!1);F("Firebase.onDisconnect().set",2,b,!0);var c=new B;ei(this.dd,this.ta,a,C(c,b));return c.D};V.prototype.set=V.prototype.set;
+V.prototype.Ob=function(a,b,c){D("Firebase.onDisconnect().setWithPriority",2,3,arguments.length);og("Firebase.onDisconnect().setWithPriority",this.ta);gg("Firebase.onDisconnect().setWithPriority",a,this.ta,!1);kg("Firebase.onDisconnect().setWithPriority",2,b);F("Firebase.onDisconnect().setWithPriority",3,c,!0);var d=new B;fi(this.dd,this.ta,a,b,C(d,c));return d.D};V.prototype.setWithPriority=V.prototype.Ob;
+V.prototype.update=function(a,b){D("Firebase.onDisconnect().update",1,2,arguments.length);og("Firebase.onDisconnect().update",this.ta);if(da(a)){for(var c={},d=0;d<a.length;++d)c[""+d]=a[d];a=c;S("Passing an Array to Firebase.onDisconnect().update() is deprecated. Use set() if you want to overwrite the existing data, or an Object with integer keys if you really do want to only update some of the children.")}jg("Firebase.onDisconnect().update",a,this.ta);F("Firebase.onDisconnect().update",2,b,!0);
+c=new B;gi(this.dd,this.ta,a,C(c,b));return c.D};V.prototype.update=V.prototype.update;function W(a,b,c){this.A=a;this.Y=b;this.g=c}W.prototype.J=function(){D("Firebase.DataSnapshot.val",0,0,arguments.length);return this.A.J()};W.prototype.val=W.prototype.J;W.prototype.qf=function(){D("Firebase.DataSnapshot.exportVal",0,0,arguments.length);return this.A.J(!0)};W.prototype.exportVal=W.prototype.qf;W.prototype.xg=function(){D("Firebase.DataSnapshot.exists",0,0,arguments.length);return!this.A.e()};W.prototype.exists=W.prototype.xg;
+W.prototype.o=function(a){D("Firebase.DataSnapshot.child",0,1,arguments.length);fa(a)&&(a=String(a));ng("Firebase.DataSnapshot.child",a);var b=new P(a),c=this.Y.o(b);return new W(this.A.S(b),c,R)};W.prototype.child=W.prototype.o;W.prototype.Fa=function(a){D("Firebase.DataSnapshot.hasChild",1,1,arguments.length);ng("Firebase.DataSnapshot.hasChild",a);var b=new P(a);return!this.A.S(b).e()};W.prototype.hasChild=W.prototype.Fa;
+W.prototype.C=function(){D("Firebase.DataSnapshot.getPriority",0,0,arguments.length);return this.A.C().J()};W.prototype.getPriority=W.prototype.C;W.prototype.forEach=function(a){D("Firebase.DataSnapshot.forEach",1,1,arguments.length);F("Firebase.DataSnapshot.forEach",1,a,!1);if(this.A.L())return!1;var b=this;return!!this.A.R(this.g,function(c,d){return a(new W(d,b.Y.o(c),R))})};W.prototype.forEach=W.prototype.forEach;
+W.prototype.zd=function(){D("Firebase.DataSnapshot.hasChildren",0,0,arguments.length);return this.A.L()?!1:!this.A.e()};W.prototype.hasChildren=W.prototype.zd;W.prototype.name=function(){S("Firebase.DataSnapshot.name() being deprecated. Please use Firebase.DataSnapshot.key() instead.");D("Firebase.DataSnapshot.name",0,0,arguments.length);return this.key()};W.prototype.name=W.prototype.name;W.prototype.key=function(){D("Firebase.DataSnapshot.key",0,0,arguments.length);return this.Y.key()};
+W.prototype.key=W.prototype.key;W.prototype.Hb=function(){D("Firebase.DataSnapshot.numChildren",0,0,arguments.length);return this.A.Hb()};W.prototype.numChildren=W.prototype.Hb;W.prototype.Mb=function(){D("Firebase.DataSnapshot.ref",0,0,arguments.length);return this.Y};W.prototype.ref=W.prototype.Mb;function hi(a,b,c){this.Vb=a;this.tb=b;this.vb=c||null}h=hi.prototype;h.Qf=function(a){return"value"===a};h.createEvent=function(a,b){var c=b.n.g;return new jc("value",this,new W(a.Na,b.Mb(),c))};h.Zb=function(a){var b=this.vb;if("cancel"===a.De()){O(this.tb,"Raising a cancel event on a listener with no cancel callback");var c=this.tb;return function(){c.call(b,a.error)}}var d=this.Vb;return function(){d.call(b,a.be)}};h.lf=function(a,b){return this.tb?new kc(this,a,b):null};
+h.matches=function(a){return a instanceof hi?a.Vb&&this.Vb?a.Vb===this.Vb&&a.vb===this.vb:!0:!1};h.yf=function(){return null!==this.Vb};function ii(a,b,c){this.ja=a;this.tb=b;this.vb=c}h=ii.prototype;h.Qf=function(a){a="children_added"===a?"child_added":a;return("children_removed"===a?"child_removed":a)in this.ja};h.lf=function(a,b){return this.tb?new kc(this,a,b):null};
+h.createEvent=function(a,b){O(null!=a.Za,"Child events should have a childName.");var c=b.Mb().o(a.Za);return new jc(a.type,this,new W(a.Na,c,b.n.g),a.Td)};h.Zb=function(a){var b=this.vb;if("cancel"===a.De()){O(this.tb,"Raising a cancel event on a listener with no cancel callback");var c=this.tb;return function(){c.call(b,a.error)}}var d=this.ja[a.wd];return function(){d.call(b,a.be,a.Td)}};
+h.matches=function(a){if(a instanceof ii){if(!this.ja||!a.ja)return!0;if(this.vb===a.vb){var b=oa(a.ja);if(b===oa(this.ja)){if(1===b){var b=pa(a.ja),c=pa(this.ja);return c===b&&(!a.ja[b]||!this.ja[c]||a.ja[b]===this.ja[c])}return na(this.ja,function(b,c){return a.ja[c]===b})}}}return!1};h.yf=function(){return null!==this.ja};function ji(){this.za={}}h=ji.prototype;h.e=function(){return va(this.za)};h.gb=function(a,b,c){var d=a.source.Lb;if(null!==d)return d=z(this.za,d),O(null!=d,"SyncTree gave us an op for an invalid query."),d.gb(a,b,c);var e=[];v(this.za,function(d){e=e.concat(d.gb(a,b,c))});return e};h.Tb=function(a,b,c,d,e){var f=a.wa(),g=z(this.za,f);if(!g){var g=c.Aa(e?d:null),k=!1;g?k=!0:(g=d instanceof fe?c.Cc(d):H,k=!1);g=new Ye(a,new je(new Xb(g,k,!1),new Xb(d,e,!1)));this.za[f]=g}g.Tb(b);return af(g,b)};
+h.nb=function(a,b,c){var d=a.wa(),e=[],f=[],g=null!=ki(this);if("default"===d){var k=this;v(this.za,function(a,d){f=f.concat(a.nb(b,c));a.e()&&(delete k.za[d],He(a.Y.n)||e.push(a.Y))})}else{var m=z(this.za,d);m&&(f=f.concat(m.nb(b,c)),m.e()&&(delete this.za[d],He(m.Y.n)||e.push(m.Y)))}g&&null==ki(this)&&e.push(new X(a.k,a.path));return{Vg:e,vg:f}};function li(a){return Na(qa(a.za),function(a){return!He(a.Y.n)})}h.kb=function(a){var b=null;v(this.za,function(c){b=b||c.kb(a)});return b};
+function mi(a,b){if(He(b.n))return ki(a);var c=b.wa();return z(a.za,c)}function ki(a){return ua(a.za,function(a){return He(a.Y.n)})||null};function ni(a){this.va=qe;this.mb=new Pf;this.df={};this.qc={};this.Qc=a}function oi(a,b,c,d,e){var f=a.mb,g=e;O(d>f.Pc,"Stacking an older write on top of newer ones");p(g)||(g=!0);f.pa.push({path:b,Ja:c,md:d,visible:g});g&&(f.V=Jf(f.V,b,c));f.Pc=d;return e?pi(a,new Ac(Ef,b,c)):[]}function qi(a,b,c,d){var e=a.mb;O(d>e.Pc,"Stacking an older merge on top of newer ones");e.pa.push({path:b,children:c,md:d,visible:!0});e.V=Kf(e.V,b,c);e.Pc=d;c=sf(c);return pi(a,new bf(Ef,b,c))}
+function ri(a,b,c){c=c||!1;var d=Qf(a.mb,b);if(a.mb.Ud(b)){var e=qe;null!=d.Ja?e=e.set(M,!0):Fb(d.children,function(a,b){e=e.set(new P(a),b)});return pi(a,new Df(d.path,e,c))}return[]}function si(a,b,c){c=sf(c);return pi(a,new bf(Gf,b,c))}function ti(a,b,c,d){d=ui(a,d);if(null!=d){var e=vi(d);d=e.path;e=e.Lb;b=lf(d,b);c=new Ac(new Ff(!1,!0,e,!0),b,c);return wi(a,d,c)}return[]}
+function xi(a,b,c,d){if(d=ui(a,d)){var e=vi(d);d=e.path;e=e.Lb;b=lf(d,b);c=sf(c);c=new bf(new Ff(!1,!0,e,!0),b,c);return wi(a,d,c)}return[]}
+ni.prototype.Tb=function(a,b){var c=a.path,d=null,e=!1;zf(this.va,c,function(a,b){var f=lf(a,c);d=d||b.kb(f);e=e||null!=ki(b)});var f=this.va.get(c);f?(e=e||null!=ki(f),d=d||f.kb(M)):(f=new ji,this.va=this.va.set(c,f));var g;null!=d?g=!0:(g=!1,d=H,Cf(this.va.subtree(c),function(a,b){var c=b.kb(M);c&&(d=d.W(a,c))}));var k=null!=mi(f,a);if(!k&&!He(a.n)){var m=yi(a);O(!(m in this.qc),"View does not exist, but we have a tag");var l=zi++;this.qc[m]=l;this.df["_"+l]=m}g=f.Tb(a,b,new Uf(c,this.mb),d,g);
+k||e||(f=mi(f,a),g=g.concat(Ai(this,a,f)));return g};
+ni.prototype.nb=function(a,b,c){var d=a.path,e=this.va.get(d),f=[];if(e&&("default"===a.wa()||null!=mi(e,a))){f=e.nb(a,b,c);e.e()&&(this.va=this.va.remove(d));e=f.Vg;f=f.vg;b=-1!==Sa(e,function(a){return He(a.n)});var g=xf(this.va,d,function(a,b){return null!=ki(b)});if(b&&!g&&(d=this.va.subtree(d),!d.e()))for(var d=Bi(d),k=0;k<d.length;++k){var m=d[k],l=m.Y,m=Ci(this,m);this.Qc.af(Di(l),Ei(this,l),m.Ad,m.I)}if(!g&&0<e.length&&!c)if(b)this.Qc.de(Di(a),null);else{var t=this;Ma(e,function(a){a.wa();
+var b=t.qc[yi(a)];t.Qc.de(Di(a),b)})}Fi(this,e)}return f};ni.prototype.Aa=function(a,b){var c=this.mb,d=xf(this.va,a,function(b,c){var d=lf(b,a);if(d=c.kb(d))return d});return c.Aa(a,d,b,!0)};function Bi(a){return vf(a,function(a,c,d){if(c&&null!=ki(c))return[ki(c)];var e=[];c&&(e=li(c));v(d,function(a){e=e.concat(a)});return e})}function Fi(a,b){for(var c=0;c<b.length;++c){var d=b[c];if(!He(d.n)){var d=yi(d),e=a.qc[d];delete a.qc[d];delete a.df["_"+e]}}}
+function Di(a){return He(a.n)&&!Ie(a.n)?a.Mb():a}function Ai(a,b,c){var d=b.path,e=Ei(a,b);c=Ci(a,c);b=a.Qc.af(Di(b),e,c.Ad,c.I);d=a.va.subtree(d);if(e)O(null==ki(d.value),"If we're adding a query, it shouldn't be shadowed");else for(e=vf(d,function(a,b,c){if(!a.e()&&b&&null!=ki(b))return[Ze(ki(b))];var d=[];b&&(d=d.concat(Oa(li(b),function(a){return a.Y})));v(c,function(a){d=d.concat(a)});return d}),d=0;d<e.length;++d)c=e[d],a.Qc.de(Di(c),Ei(a,c));return b}
+function Ci(a,b){var c=b.Y,d=Ei(a,c);return{Ad:function(){return(b.w()||H).hash()},I:function(b){if("ok"===b){if(d){var f=c.path;if(b=ui(a,d)){var g=vi(b);b=g.path;g=g.Lb;f=lf(b,f);f=new Cc(new Ff(!1,!0,g,!0),f);b=wi(a,b,f)}else b=[]}else b=pi(a,new Cc(Gf,c.path));return b}f="Unknown Error";"too_big"===b?f="The data requested exceeds the maximum size that can be accessed with a single request.":"permission_denied"==b?f="Client doesn't have permission to access the desired data.":"unavailable"==b&&
+(f="The service is unavailable");f=Error(b+": "+f);f.code=b.toUpperCase();return a.nb(c,null,f)}}}function yi(a){return a.path.toString()+"$"+a.wa()}function vi(a){var b=a.indexOf("$");O(-1!==b&&b<a.length-1,"Bad queryKey.");return{Lb:a.substr(b+1),path:new P(a.substr(0,b))}}function ui(a,b){var c=a.df,d="_"+b;return d in c?c[d]:void 0}function Ei(a,b){var c=yi(b);return z(a.qc,c)}var zi=1;
+function wi(a,b,c){var d=a.va.get(b);O(d,"Missing sync point for query tag that we're tracking");return d.gb(c,new Uf(b,a.mb),null)}function pi(a,b){return Gi(a,b,a.va,null,new Uf(M,a.mb))}function Gi(a,b,c,d,e){if(b.path.e())return Hi(a,b,c,d,e);var f=c.get(M);null==d&&null!=f&&(d=f.kb(M));var g=[],k=K(b.path),m=b.$c(k);if((c=c.children.get(k))&&m)var l=d?d.T(k):null,k=e.o(k),g=g.concat(Gi(a,m,c,l,k));f&&(g=g.concat(f.gb(b,e,d)));return g}
+function Hi(a,b,c,d,e){var f=c.get(M);null==d&&null!=f&&(d=f.kb(M));var g=[];c.children.ka(function(c,f){var l=d?d.T(c):null,t=e.o(c),A=b.$c(c);A&&(g=g.concat(Hi(a,A,f,l,t)))});f&&(g=g.concat(f.gb(b,e,d)));return g};function Ii(a,b){this.G=a;this.Xa=uc(a);this.hd=null;this.fa=new Zb;this.Kd=1;this.Va=null;b||0<=("object"===typeof window&&window.navigator&&window.navigator.userAgent||"").search(/googlebot|google webmaster tools|bingbot|yahoo! slurp|baiduspider|yandexbot|duckduckbot/i)?(this.da=new cf(this.G,u(this.Kb,this)),setTimeout(u(this.Xc,this,!0),0)):this.da=this.Va=new Qh(this.G,u(this.Kb,this),u(this.Xc,this),u(this.Se,this));this.dh=vc(a,u(function(){return new pc(this.Xa,this.da)},this));this.yc=new Wf;
+this.Ge=new Sb;var c=this;this.Fd=new ni({af:function(a,b,f,g){b=[];f=c.Ge.j(a.path);f.e()||(b=pi(c.Fd,new Ac(Gf,a.path,f)),setTimeout(function(){g("ok")},0));return b},de:aa});Ji(this,"connected",!1);this.na=new Vc;this.O=new Xg(a,u(this.da.O,this.da),u(this.da.je,this.da),u(this.Pe,this));this.ud=0;this.He=null;this.M=new ni({af:function(a,b,f,g){c.da.Cf(a,f,b,function(b,e){var f=g(b,e);dc(c.fa,a.path,f)});return[]},de:function(a,b){c.da.$f(a,b)}})}h=Ii.prototype;
+h.toString=function(){return(this.G.ob?"https://":"http://")+this.G.host};h.name=function(){return this.G.lc};function Ki(a){a=a.Ge.j(new P(".info/serverTimeOffset")).J()||0;return(new Date).getTime()+a}function Li(a){a=a={timestamp:Ki(a)};a.timestamp=a.timestamp||(new Date).getTime();return a}
+h.Kb=function(a,b,c,d){this.ud++;var e=new P(a);b=this.He?this.He(a,b):b;a=[];d?c?(b=ma(b,function(a){return Q(a)}),a=xi(this.M,e,b,d)):(b=Q(b),a=ti(this.M,e,b,d)):c?(d=ma(b,function(a){return Q(a)}),a=si(this.M,e,d)):(d=Q(b),a=pi(this.M,new Ac(Gf,e,d)));d=e;0<a.length&&(d=Mi(this,e));dc(this.fa,d,a)};h.Xc=function(a){Ji(this,"connected",a);!1===a&&Ni(this)};h.Se=function(a){var b=this;zd(a,function(a,d){Ji(b,d,a)})};h.Pe=function(a){Ji(this,"authenticated",a)};
+function Ji(a,b,c){b=new P("/.info/"+b);c=Q(c);var d=a.Ge;d.Zd=d.Zd.H(b,c);c=pi(a.Fd,new Ac(Gf,b,c));dc(a.fa,b,c)}h.Ob=function(a,b,c,d){this.f("set",{path:a.toString(),value:b,lh:c});var e=Li(this);b=Q(b,c);var e=Xc(b,e),f=this.Kd++,e=oi(this.M,a,e,f,!0);$b(this.fa,e);var g=this;this.da.put(a.toString(),b.J(!0),function(b,c){var e="ok"===b;e||S("set at "+a+" failed: "+b);e=ri(g.M,f,!e);dc(g.fa,a,e);Oi(d,b,c)});e=Pi(this,a);Mi(this,e);dc(this.fa,e,[])};
+h.update=function(a,b,c){this.f("update",{path:a.toString(),value:b});var d=!0,e=Li(this),f={};v(b,function(a,b){d=!1;var c=Q(a);f[b]=Xc(c,e)});if(d)fc("update() called with empty data.  Don't do anything."),Oi(c,"ok");else{var g=this.Kd++,k=qi(this.M,a,f,g);$b(this.fa,k);var m=this;this.da.Df(a.toString(),b,function(b,d){var e="ok"===b;e||S("update at "+a+" failed: "+b);var e=ri(m.M,g,!e),f=a;0<e.length&&(f=Mi(m,a));dc(m.fa,f,e);Oi(c,b,d)});b=Pi(this,a);Mi(this,b);dc(this.fa,a,[])}};
+function Ni(a){a.f("onDisconnectEvents");var b=Li(a),c=[];Wc(Uc(a.na,b),M,function(b,e){c=c.concat(pi(a.M,new Ac(Gf,b,e)));var f=Pi(a,b);Mi(a,f)});a.na=new Vc;dc(a.fa,M,c)}h.Md=function(a,b){var c=this;this.da.Md(a.toString(),function(d,e){"ok"===d&&wg(c.na,a);Oi(b,d,e)})};function ei(a,b,c,d){var e=Q(c);a.da.Qe(b.toString(),e.J(!0),function(c,g){"ok"===c&&a.na.rc(b,e);Oi(d,c,g)})}function fi(a,b,c,d,e){var f=Q(c,d);a.da.Qe(b.toString(),f.J(!0),function(c,d){"ok"===c&&a.na.rc(b,f);Oi(e,c,d)})}
+function gi(a,b,c,d){var e=!0,f;for(f in c)e=!1;e?(fc("onDisconnect().update() called with empty data.  Don't do anything."),Oi(d,"ok")):a.da.Gf(b.toString(),c,function(e,f){if("ok"===e)for(var m in c){var l=Q(c[m]);a.na.rc(b.o(m),l)}Oi(d,e,f)})}function Qi(a,b,c){c=".info"===K(b.path)?a.Fd.Tb(b,c):a.M.Tb(b,c);bc(a.fa,b.path,c)}h.Cb=function(){this.Va&&this.Va.Cb()};h.vc=function(){this.Va&&this.Va.vc()};
+h.bf=function(a){if("undefined"!==typeof console){a?(this.hd||(this.hd=new oc(this.Xa)),a=this.hd.get()):a=this.Xa.get();var b=Pa(ra(a),function(a,b){return Math.max(b.length,a)},0),c;for(c in a){for(var d=a[c],e=c.length;e<b+2;e++)c+=" ";console.log(c+d)}}};h.cf=function(a){rc(this.Xa,a);this.dh.Vf[a]=!0};h.f=function(a){var b="";this.Va&&(b=this.Va.id+":");fc(b,arguments)};
+function Oi(a,b,c){a&&gc(function(){if("ok"==b)a(null);else{var d=(b||"error").toUpperCase(),e=d;c&&(e+=": "+c);e=Error(e);e.code=d;a(e)}})};function Ri(a,b,c,d,e){function f(){}a.f("transaction on "+b);var g=new X(a,b);g.Ib("value",f);c={path:b,update:c,I:d,status:null,Lf:id(),gf:e,Sf:0,le:function(){g.mc("value",f)},ne:null,Da:null,rd:null,sd:null,td:null};d=a.M.Aa(b,void 0)||H;c.rd=d;d=c.update(d.J());if(p(d)){hg("transaction failed: Data returned ",d,c.path);c.status=1;e=Xf(a.yc,b);var k=e.Ea()||[];k.push(c);Yf(e,k);"object"===typeof d&&null!==d&&y(d,".priority")?(k=z(d,".priority"),O(fg(k),"Invalid priority returned by transaction. Priority must be a valid string, finite number, server value, or null.")):
+k=(a.M.Aa(b)||H).C().J();e=Li(a);d=Q(d,k);e=Xc(d,e);c.sd=d;c.td=e;c.Da=a.Kd++;c=oi(a.M,b,e,c.Da,c.gf);dc(a.fa,b,c);Si(a)}else c.le(),c.sd=null,c.td=null,c.I&&(a=new W(c.rd,new X(a,c.path),R),c.I(null,!1,a))}function Si(a,b){var c=b||a.yc;b||Ti(a,c);if(null!==c.Ea()){var d=Ui(a,c);O(0<d.length,"Sending zero length transaction queue");Qa(d,function(a){return 1===a.status})&&Vi(a,c.path(),d)}else c.zd()&&c.R(function(b){Si(a,b)})}
+function Vi(a,b,c){for(var d=Oa(c,function(a){return a.Da}),e=a.M.Aa(b,d)||H,d=e,e=e.hash(),f=0;f<c.length;f++){var g=c[f];O(1===g.status,"tryToSendTransactionQueue_: items in queue should all be run.");g.status=2;g.Sf++;var k=lf(b,g.path),d=d.H(k,g.sd)}d=d.J(!0);a.da.put(b.toString(),d,function(d){a.f("transaction put response",{path:b.toString(),status:d});var e=[];if("ok"===d){d=[];for(f=0;f<c.length;f++){c[f].status=3;e=e.concat(ri(a.M,c[f].Da));if(c[f].I){var g=c[f].td,k=new X(a,c[f].path);d.push(u(c[f].I,
+null,null,!0,new W(g,k,R)))}c[f].le()}Ti(a,Xf(a.yc,b));Si(a);dc(a.fa,b,e);for(f=0;f<d.length;f++)gc(d[f])}else{if("datastale"===d)for(f=0;f<c.length;f++)c[f].status=4===c[f].status?5:1;else for(S("transaction at "+b.toString()+" failed: "+d),f=0;f<c.length;f++)c[f].status=5,c[f].ne=d;Mi(a,b)}},e)}function Mi(a,b){var c=Wi(a,b),d=c.path(),c=Ui(a,c);Xi(a,c,d);return d}
+function Xi(a,b,c){if(0!==b.length){for(var d=[],e=[],f=Oa(b,function(a){return a.Da}),g=0;g<b.length;g++){var k=b[g],m=lf(c,k.path),l=!1,t;O(null!==m,"rerunTransactionsUnderNode_: relativePath should not be null.");if(5===k.status)l=!0,t=k.ne,e=e.concat(ri(a.M,k.Da,!0));else if(1===k.status)if(25<=k.Sf)l=!0,t="maxretry",e=e.concat(ri(a.M,k.Da,!0));else{var A=a.M.Aa(k.path,f)||H;k.rd=A;var I=b[g].update(A.J());p(I)?(hg("transaction failed: Data returned ",I,k.path),m=Q(I),"object"===typeof I&&null!=
+I&&y(I,".priority")||(m=m.ia(A.C())),A=k.Da,I=Li(a),I=Xc(m,I),k.sd=m,k.td=I,k.Da=a.Kd++,Ta(f,A),e=e.concat(oi(a.M,k.path,I,k.Da,k.gf)),e=e.concat(ri(a.M,A,!0))):(l=!0,t="nodata",e=e.concat(ri(a.M,k.Da,!0)))}dc(a.fa,c,e);e=[];l&&(b[g].status=3,setTimeout(b[g].le,Math.floor(0)),b[g].I&&("nodata"===t?(k=new X(a,b[g].path),d.push(u(b[g].I,null,null,!1,new W(b[g].rd,k,R)))):d.push(u(b[g].I,null,Error(t),!1,null))))}Ti(a,a.yc);for(g=0;g<d.length;g++)gc(d[g]);Si(a)}}
+function Wi(a,b){for(var c,d=a.yc;null!==(c=K(b))&&null===d.Ea();)d=Xf(d,c),b=N(b);return d}function Ui(a,b){var c=[];Yi(a,b,c);c.sort(function(a,b){return a.Lf-b.Lf});return c}function Yi(a,b,c){var d=b.Ea();if(null!==d)for(var e=0;e<d.length;e++)c.push(d[e]);b.R(function(b){Yi(a,b,c)})}function Ti(a,b){var c=b.Ea();if(c){for(var d=0,e=0;e<c.length;e++)3!==c[e].status&&(c[d]=c[e],d++);c.length=d;Yf(b,0<c.length?c:null)}b.R(function(b){Ti(a,b)})}
+function Pi(a,b){var c=Wi(a,b).path(),d=Xf(a.yc,b);ag(d,function(b){Zi(a,b)});Zi(a,d);$f(d,function(b){Zi(a,b)});return c}
+function Zi(a,b){var c=b.Ea();if(null!==c){for(var d=[],e=[],f=-1,g=0;g<c.length;g++)4!==c[g].status&&(2===c[g].status?(O(f===g-1,"All SENT items should be at beginning of queue."),f=g,c[g].status=4,c[g].ne="set"):(O(1===c[g].status,"Unexpected transaction status in abort"),c[g].le(),e=e.concat(ri(a.M,c[g].Da,!0)),c[g].I&&d.push(u(c[g].I,null,Error("set"),!1,null))));-1===f?Yf(b,null):c.length=f+1;dc(a.fa,b.path(),e);for(g=0;g<d.length;g++)gc(d[g])}};function $i(){this.sc={};this.ag=!1}$i.prototype.Cb=function(){for(var a in this.sc)this.sc[a].Cb()};$i.prototype.vc=function(){for(var a in this.sc)this.sc[a].vc()};$i.prototype.ze=function(){this.ag=!0};ba($i);$i.prototype.interrupt=$i.prototype.Cb;$i.prototype.resume=$i.prototype.vc;function Y(a,b,c,d){this.k=a;this.path=b;this.n=c;this.pc=d}
+function aj(a){var b=null,c=null;a.oa&&(b=Od(a));a.ra&&(c=Rd(a));if(a.g===re){if(a.oa){if("[MIN_NAME]"!=Nd(a))throw Error("Query: When ordering by key, you may only pass one argument to startAt(), endAt(), or equalTo().");if("string"!==typeof b)throw Error("Query: When ordering by key, the argument passed to startAt(), endAt(),or equalTo() must be a string.");}if(a.ra){if("[MAX_NAME]"!=Pd(a))throw Error("Query: When ordering by key, you may only pass one argument to startAt(), endAt(), or equalTo().");if("string"!==
+typeof c)throw Error("Query: When ordering by key, the argument passed to startAt(), endAt(),or equalTo() must be a string.");}}else if(a.g===R){if(null!=b&&!fg(b)||null!=c&&!fg(c))throw Error("Query: When ordering by priority, the first argument passed to startAt(), endAt(), or equalTo() must be a valid priority value (null, a number, or a string).");}else if(O(a.g instanceof ve||a.g===Be,"unknown index type."),null!=b&&"object"===typeof b||null!=c&&"object"===typeof c)throw Error("Query: First argument passed to startAt(), endAt(), or equalTo() cannot be an object.");
+}function bj(a){if(a.oa&&a.ra&&a.la&&(!a.la||""===a.Rb))throw Error("Query: Can't combine startAt(), endAt(), and limit(). Use limitToFirst() or limitToLast() instead.");}function cj(a,b){if(!0===a.pc)throw Error(b+": You can't combine multiple orderBy calls.");}h=Y.prototype;h.Mb=function(){D("Query.ref",0,0,arguments.length);return new X(this.k,this.path)};
+h.Ib=function(a,b,c,d){D("Query.on",2,4,arguments.length);lg("Query.on",a,!1);F("Query.on",2,b,!1);var e=dj("Query.on",c,d);if("value"===a)Qi(this.k,this,new hi(b,e.cancel||null,e.Qa||null));else{var f={};f[a]=b;Qi(this.k,this,new ii(f,e.cancel,e.Qa))}return b};
+h.mc=function(a,b,c){D("Query.off",0,3,arguments.length);lg("Query.off",a,!0);F("Query.off",2,b,!0);Qb("Query.off",3,c);var d=null,e=null;"value"===a?d=new hi(b||null,null,c||null):a&&(b&&(e={},e[a]=b),d=new ii(e,null,c||null));e=this.k;d=".info"===K(this.path)?e.Fd.nb(this,d):e.M.nb(this,d);bc(e.fa,this.path,d)};
+h.Og=function(a,b){function c(k){f&&(f=!1,e.mc(a,c),b&&b.call(d.Qa,k),g.resolve(k))}D("Query.once",1,4,arguments.length);lg("Query.once",a,!1);F("Query.once",2,b,!0);var d=dj("Query.once",arguments[2],arguments[3]),e=this,f=!0,g=new B;Nb(g.D);this.Ib(a,c,function(b){e.mc(a,c);d.cancel&&d.cancel.call(d.Qa,b);g.reject(b)});return g.D};
+h.Le=function(a){S("Query.limit() being deprecated. Please use Query.limitToFirst() or Query.limitToLast() instead.");D("Query.limit",1,1,arguments.length);if(!fa(a)||Math.floor(a)!==a||0>=a)throw Error("Query.limit: First argument must be a positive integer.");if(this.n.la)throw Error("Query.limit: Limit was already set (by another call to limit, limitToFirst, orlimitToLast.");var b=this.n.Le(a);bj(b);return new Y(this.k,this.path,b,this.pc)};
+h.Me=function(a){D("Query.limitToFirst",1,1,arguments.length);if(!fa(a)||Math.floor(a)!==a||0>=a)throw Error("Query.limitToFirst: First argument must be a positive integer.");if(this.n.la)throw Error("Query.limitToFirst: Limit was already set (by another call to limit, limitToFirst, or limitToLast).");return new Y(this.k,this.path,this.n.Me(a),this.pc)};
+h.Ne=function(a){D("Query.limitToLast",1,1,arguments.length);if(!fa(a)||Math.floor(a)!==a||0>=a)throw Error("Query.limitToLast: First argument must be a positive integer.");if(this.n.la)throw Error("Query.limitToLast: Limit was already set (by another call to limit, limitToFirst, or limitToLast).");return new Y(this.k,this.path,this.n.Ne(a),this.pc)};
+h.Pg=function(a){D("Query.orderByChild",1,1,arguments.length);if("$key"===a)throw Error('Query.orderByChild: "$key" is invalid.  Use Query.orderByKey() instead.');if("$priority"===a)throw Error('Query.orderByChild: "$priority" is invalid.  Use Query.orderByPriority() instead.');if("$value"===a)throw Error('Query.orderByChild: "$value" is invalid.  Use Query.orderByValue() instead.');ng("Query.orderByChild",a);cj(this,"Query.orderByChild");var b=new P(a);if(b.e())throw Error("Query.orderByChild: cannot pass in empty path.  Use Query.orderByValue() instead.");
+b=new ve(b);b=Fe(this.n,b);aj(b);return new Y(this.k,this.path,b,!0)};h.Qg=function(){D("Query.orderByKey",0,0,arguments.length);cj(this,"Query.orderByKey");var a=Fe(this.n,re);aj(a);return new Y(this.k,this.path,a,!0)};h.Rg=function(){D("Query.orderByPriority",0,0,arguments.length);cj(this,"Query.orderByPriority");var a=Fe(this.n,R);aj(a);return new Y(this.k,this.path,a,!0)};
+h.Sg=function(){D("Query.orderByValue",0,0,arguments.length);cj(this,"Query.orderByValue");var a=Fe(this.n,Be);aj(a);return new Y(this.k,this.path,a,!0)};h.ce=function(a,b){D("Query.startAt",0,2,arguments.length);gg("Query.startAt",a,this.path,!0);mg("Query.startAt",b);var c=this.n.ce(a,b);bj(c);aj(c);if(this.n.oa)throw Error("Query.startAt: Starting point was already set (by another call to startAt or equalTo).");p(a)||(b=a=null);return new Y(this.k,this.path,c,this.pc)};
+h.vd=function(a,b){D("Query.endAt",0,2,arguments.length);gg("Query.endAt",a,this.path,!0);mg("Query.endAt",b);var c=this.n.vd(a,b);bj(c);aj(c);if(this.n.ra)throw Error("Query.endAt: Ending point was already set (by another call to endAt or equalTo).");return new Y(this.k,this.path,c,this.pc)};
+h.tg=function(a,b){D("Query.equalTo",1,2,arguments.length);gg("Query.equalTo",a,this.path,!1);mg("Query.equalTo",b);if(this.n.oa)throw Error("Query.equalTo: Starting point was already set (by another call to endAt or equalTo).");if(this.n.ra)throw Error("Query.equalTo: Ending point was already set (by another call to endAt or equalTo).");return this.ce(a,b).vd(a,b)};
+h.toString=function(){D("Query.toString",0,0,arguments.length);for(var a=this.path,b="",c=a.aa;c<a.u.length;c++)""!==a.u[c]&&(b+="/"+encodeURIComponent(String(a.u[c])));return this.k.toString()+(b||"/")};h.wa=function(){var a=xd(Ge(this.n));return"{}"===a?"default":a};
+function dj(a,b,c){var d={cancel:null,Qa:null};if(b&&c)d.cancel=b,F(a,3,d.cancel,!0),d.Qa=c,Qb(a,4,d.Qa);else if(b)if("object"===typeof b&&null!==b)d.Qa=b;else if("function"===typeof b)d.cancel=b;else throw Error(E(a,3,!0)+" must either be a cancel callback or a context object.");return d}Y.prototype.ref=Y.prototype.Mb;Y.prototype.on=Y.prototype.Ib;Y.prototype.off=Y.prototype.mc;Y.prototype.once=Y.prototype.Og;Y.prototype.limit=Y.prototype.Le;Y.prototype.limitToFirst=Y.prototype.Me;
+Y.prototype.limitToLast=Y.prototype.Ne;Y.prototype.orderByChild=Y.prototype.Pg;Y.prototype.orderByKey=Y.prototype.Qg;Y.prototype.orderByPriority=Y.prototype.Rg;Y.prototype.orderByValue=Y.prototype.Sg;Y.prototype.startAt=Y.prototype.ce;Y.prototype.endAt=Y.prototype.vd;Y.prototype.equalTo=Y.prototype.tg;Y.prototype.toString=Y.prototype.toString;var Z={};Z.zc=Qh;Z.DataConnection=Z.zc;Qh.prototype.bh=function(a,b){this.Ia("q",{p:a},b)};Z.zc.prototype.simpleListen=Z.zc.prototype.bh;Qh.prototype.sg=function(a,b){this.Ia("echo",{d:a},b)};Z.zc.prototype.echo=Z.zc.prototype.sg;Qh.prototype.interrupt=Qh.prototype.Cb;Z.dg=Eh;Z.RealTimeConnection=Z.dg;Eh.prototype.sendRequest=Eh.prototype.Ia;Eh.prototype.close=Eh.prototype.close;
+Z.Cg=function(a){var b=Qh.prototype.put;Qh.prototype.put=function(c,d,e,f){p(f)&&(f=a());b.call(this,c,d,e,f)};return function(){Qh.prototype.put=b}};Z.hijackHash=Z.Cg;Z.cg=dd;Z.ConnectionTarget=Z.cg;Z.wa=function(a){return a.wa()};Z.queryIdentifier=Z.wa;Z.Eg=function(a){return a.k.Va.ba};Z.listens=Z.Eg;Z.ze=function(a){a.ze()};Z.forceRestClient=Z.ze;function X(a,b){var c,d,e;if(a instanceof Ii)c=a,d=b;else{D("new Firebase",1,2,arguments.length);d=sd(arguments[0]);c=d.eh;"firebase"===d.domain&&rd(d.host+" is no longer supported. Please use <YOUR FIREBASE>.firebaseio.com instead");c&&"undefined"!=c||rd("Cannot parse Firebase url. Please use https://<YOUR FIREBASE>.firebaseio.com");d.ob||"undefined"!==typeof window&&window.location&&window.location.protocol&&-1!==window.location.protocol.indexOf("https:")&&S("Insecure Firebase access from a secure page. Please use https in calls to new Firebase().");
+c=new dd(d.host,d.ob,c,"ws"===d.scheme||"wss"===d.scheme);d=new P(d.bd);e=d.toString();var f;!(f=!q(c.host)||0===c.host.length||!eg(c.lc))&&(f=0!==e.length)&&(e&&(e=e.replace(/^\/*\.info(\/|$)/,"/")),f=!(q(e)&&0!==e.length&&!cg.test(e)));if(f)throw Error(E("new Firebase",1,!1)+'must be a valid firebase URL and the path can\'t contain ".", "#", "$", "[", or "]".');if(b)if(b instanceof $i)e=b;else if(q(b))e=$i.yb(),c.Rd=b;else throw Error("Expected a valid Firebase.Context for second argument to new Firebase()");
+else e=$i.yb();f=c.toString();var g=z(e.sc,f);g||(g=new Ii(c,e.ag),e.sc[f]=g);c=g}Y.call(this,c,d,De,!1);this.then=void 0;this["catch"]=void 0}ka(X,Y);var ej=X,fj=["Firebase"],gj=n;fj[0]in gj||!gj.execScript||gj.execScript("var "+fj[0]);for(var hj;fj.length&&(hj=fj.shift());)!fj.length&&p(ej)?gj[hj]=ej:gj=gj[hj]?gj[hj]:gj[hj]={};X.goOffline=function(){D("Firebase.goOffline",0,0,arguments.length);$i.yb().Cb()};X.goOnline=function(){D("Firebase.goOnline",0,0,arguments.length);$i.yb().vc()};
+X.enableLogging=od;X.ServerValue={TIMESTAMP:{".sv":"timestamp"}};X.SDK_VERSION=Eb;X.INTERNAL=U;X.Context=$i;X.TEST_ACCESS=Z;X.prototype.name=function(){S("Firebase.name() being deprecated. Please use Firebase.key() instead.");D("Firebase.name",0,0,arguments.length);return this.key()};X.prototype.name=X.prototype.name;X.prototype.key=function(){D("Firebase.key",0,0,arguments.length);return this.path.e()?null:me(this.path)};X.prototype.key=X.prototype.key;
+X.prototype.o=function(a){D("Firebase.child",1,1,arguments.length);if(fa(a))a=String(a);else if(!(a instanceof P))if(null===K(this.path)){var b=a;b&&(b=b.replace(/^\/*\.info(\/|$)/,"/"));ng("Firebase.child",b)}else ng("Firebase.child",a);return new X(this.k,this.path.o(a))};X.prototype.child=X.prototype.o;X.prototype.parent=function(){D("Firebase.parent",0,0,arguments.length);var a=this.path.parent();return null===a?null:new X(this.k,a)};X.prototype.parent=X.prototype.parent;
+X.prototype.root=function(){D("Firebase.ref",0,0,arguments.length);for(var a=this;null!==a.parent();)a=a.parent();return a};X.prototype.root=X.prototype.root;X.prototype.set=function(a,b){D("Firebase.set",1,2,arguments.length);og("Firebase.set",this.path);gg("Firebase.set",a,this.path,!1);F("Firebase.set",2,b,!0);var c=new B;this.k.Ob(this.path,a,null,C(c,b));return c.D};X.prototype.set=X.prototype.set;
+X.prototype.update=function(a,b){D("Firebase.update",1,2,arguments.length);og("Firebase.update",this.path);if(da(a)){for(var c={},d=0;d<a.length;++d)c[""+d]=a[d];a=c;S("Passing an Array to Firebase.update() is deprecated. Use set() if you want to overwrite the existing data, or an Object with integer keys if you really do want to only update some of the children.")}jg("Firebase.update",a,this.path);F("Firebase.update",2,b,!0);c=new B;this.k.update(this.path,a,C(c,b));return c.D};
+X.prototype.update=X.prototype.update;X.prototype.Ob=function(a,b,c){D("Firebase.setWithPriority",2,3,arguments.length);og("Firebase.setWithPriority",this.path);gg("Firebase.setWithPriority",a,this.path,!1);kg("Firebase.setWithPriority",2,b);F("Firebase.setWithPriority",3,c,!0);if(".length"===this.key()||".keys"===this.key())throw"Firebase.setWithPriority failed: "+this.key()+" is a read-only object.";var d=new B;this.k.Ob(this.path,a,b,C(d,c));return d.D};X.prototype.setWithPriority=X.prototype.Ob;
+X.prototype.remove=function(a){D("Firebase.remove",0,1,arguments.length);og("Firebase.remove",this.path);F("Firebase.remove",1,a,!0);return this.set(null,a)};X.prototype.remove=X.prototype.remove;
+X.prototype.transaction=function(a,b,c){D("Firebase.transaction",1,3,arguments.length);og("Firebase.transaction",this.path);F("Firebase.transaction",1,a,!1);F("Firebase.transaction",2,b,!0);if(p(c)&&"boolean"!=typeof c)throw Error(E("Firebase.transaction",3,!0)+"must be a boolean.");if(".length"===this.key()||".keys"===this.key())throw"Firebase.transaction failed: "+this.key()+" is a read-only object.";"undefined"===typeof c&&(c=!0);var d=new B;r(b)&&Nb(d.D);Ri(this.k,this.path,a,function(a,c,g){a?
+d.reject(a):d.resolve(new di(c,g));r(b)&&b(a,c,g)},c);return d.D};X.prototype.transaction=X.prototype.transaction;X.prototype.Zg=function(a,b){D("Firebase.setPriority",1,2,arguments.length);og("Firebase.setPriority",this.path);kg("Firebase.setPriority",1,a);F("Firebase.setPriority",2,b,!0);var c=new B;this.k.Ob(this.path.o(".priority"),a,null,C(c,b));return c.D};X.prototype.setPriority=X.prototype.Zg;
+X.prototype.push=function(a,b){D("Firebase.push",0,2,arguments.length);og("Firebase.push",this.path);gg("Firebase.push",a,this.path,!0);F("Firebase.push",2,b,!0);var c=Ki(this.k),d=hf(c),c=this.o(d);if(null!=a){var e=this,f=c.set(a,b).then(function(){return e.o(d)});c.then=u(f.then,f);c["catch"]=u(f.then,f,void 0);r(b)&&Nb(f)}return c};X.prototype.push=X.prototype.push;X.prototype.lb=function(){og("Firebase.onDisconnect",this.path);return new V(this.k,this.path)};X.prototype.onDisconnect=X.prototype.lb;
+X.prototype.O=function(a,b,c){S("FirebaseRef.auth() being deprecated. Please use FirebaseRef.authWithCustomToken() instead.");D("Firebase.auth",1,3,arguments.length);pg("Firebase.auth",a);F("Firebase.auth",2,b,!0);F("Firebase.auth",3,b,!0);var d=new B;ch(this.k.O,a,{},{remember:"none"},C(d,b),c);return d.D};X.prototype.auth=X.prototype.O;X.prototype.je=function(a){D("Firebase.unauth",0,1,arguments.length);F("Firebase.unauth",1,a,!0);var b=new B;dh(this.k.O,C(b,a));return b.D};X.prototype.unauth=X.prototype.je;
+X.prototype.Be=function(){D("Firebase.getAuth",0,0,arguments.length);return this.k.O.Be()};X.prototype.getAuth=X.prototype.Be;X.prototype.Ig=function(a,b){D("Firebase.onAuth",1,2,arguments.length);F("Firebase.onAuth",1,a,!1);Qb("Firebase.onAuth",2,b);this.k.O.Ib("auth_status",a,b)};X.prototype.onAuth=X.prototype.Ig;X.prototype.Hg=function(a,b){D("Firebase.offAuth",1,2,arguments.length);F("Firebase.offAuth",1,a,!1);Qb("Firebase.offAuth",2,b);this.k.O.mc("auth_status",a,b)};X.prototype.offAuth=X.prototype.Hg;
+X.prototype.hg=function(a,b,c){D("Firebase.authWithCustomToken",1,3,arguments.length);2===arguments.length&&Hb(b)&&(c=b,b=void 0);pg("Firebase.authWithCustomToken",a);F("Firebase.authWithCustomToken",2,b,!0);sg("Firebase.authWithCustomToken",3,c,!0);var d=new B;ch(this.k.O,a,{},c||{},C(d,b));return d.D};X.prototype.authWithCustomToken=X.prototype.hg;
+X.prototype.ig=function(a,b,c){D("Firebase.authWithOAuthPopup",1,3,arguments.length);2===arguments.length&&Hb(b)&&(c=b,b=void 0);rg("Firebase.authWithOAuthPopup",a);F("Firebase.authWithOAuthPopup",2,b,!0);sg("Firebase.authWithOAuthPopup",3,c,!0);var d=new B;hh(this.k.O,a,c,C(d,b));return d.D};X.prototype.authWithOAuthPopup=X.prototype.ig;
+X.prototype.jg=function(a,b,c){D("Firebase.authWithOAuthRedirect",1,3,arguments.length);2===arguments.length&&Hb(b)&&(c=b,b=void 0);rg("Firebase.authWithOAuthRedirect",a);F("Firebase.authWithOAuthRedirect",2,b,!1);sg("Firebase.authWithOAuthRedirect",3,c,!0);var d=new B,e=this.k.O,f=c,g=C(d,b);fh(e);var k=[Pg],f=Ag(f);"anonymous"===a||"firebase"===a?T(g,Rg("TRANSPORT_UNAVAILABLE")):(cd.set("redirect_client_options",f.qd),gh(e,k,"/auth/"+a,f,g));return d.D};X.prototype.authWithOAuthRedirect=X.prototype.jg;
+X.prototype.kg=function(a,b,c,d){D("Firebase.authWithOAuthToken",2,4,arguments.length);3===arguments.length&&Hb(c)&&(d=c,c=void 0);rg("Firebase.authWithOAuthToken",a);F("Firebase.authWithOAuthToken",3,c,!0);sg("Firebase.authWithOAuthToken",4,d,!0);var e=new B;q(b)?(qg("Firebase.authWithOAuthToken",2,b),eh(this.k.O,a+"/token",{access_token:b},d,C(e,c))):(sg("Firebase.authWithOAuthToken",2,b,!1),eh(this.k.O,a+"/token",b,d,C(e,c)));return e.D};X.prototype.authWithOAuthToken=X.prototype.kg;
+X.prototype.gg=function(a,b){D("Firebase.authAnonymously",0,2,arguments.length);1===arguments.length&&Hb(a)&&(b=a,a=void 0);F("Firebase.authAnonymously",1,a,!0);sg("Firebase.authAnonymously",2,b,!0);var c=new B;eh(this.k.O,"anonymous",{},b,C(c,a));return c.D};X.prototype.authAnonymously=X.prototype.gg;
+X.prototype.lg=function(a,b,c){D("Firebase.authWithPassword",1,3,arguments.length);2===arguments.length&&Hb(b)&&(c=b,b=void 0);sg("Firebase.authWithPassword",1,a,!1);tg("Firebase.authWithPassword",a,"email");tg("Firebase.authWithPassword",a,"password");F("Firebase.authWithPassword",2,b,!0);sg("Firebase.authWithPassword",3,c,!0);var d=new B;eh(this.k.O,"password",a,c,C(d,b));return d.D};X.prototype.authWithPassword=X.prototype.lg;
+X.prototype.ve=function(a,b){D("Firebase.createUser",1,2,arguments.length);sg("Firebase.createUser",1,a,!1);tg("Firebase.createUser",a,"email");tg("Firebase.createUser",a,"password");F("Firebase.createUser",2,b,!0);var c=new B;this.k.O.ve(a,C(c,b));return c.D};X.prototype.createUser=X.prototype.ve;
+X.prototype.Xe=function(a,b){D("Firebase.removeUser",1,2,arguments.length);sg("Firebase.removeUser",1,a,!1);tg("Firebase.removeUser",a,"email");tg("Firebase.removeUser",a,"password");F("Firebase.removeUser",2,b,!0);var c=new B;this.k.O.Xe(a,C(c,b));return c.D};X.prototype.removeUser=X.prototype.Xe;
+X.prototype.se=function(a,b){D("Firebase.changePassword",1,2,arguments.length);sg("Firebase.changePassword",1,a,!1);tg("Firebase.changePassword",a,"email");tg("Firebase.changePassword",a,"oldPassword");tg("Firebase.changePassword",a,"newPassword");F("Firebase.changePassword",2,b,!0);var c=new B;this.k.O.se(a,C(c,b));return c.D};X.prototype.changePassword=X.prototype.se;
+X.prototype.re=function(a,b){D("Firebase.changeEmail",1,2,arguments.length);sg("Firebase.changeEmail",1,a,!1);tg("Firebase.changeEmail",a,"oldEmail");tg("Firebase.changeEmail",a,"newEmail");tg("Firebase.changeEmail",a,"password");F("Firebase.changeEmail",2,b,!0);var c=new B;this.k.O.re(a,C(c,b));return c.D};X.prototype.changeEmail=X.prototype.re;
+X.prototype.Ze=function(a,b){D("Firebase.resetPassword",1,2,arguments.length);sg("Firebase.resetPassword",1,a,!1);tg("Firebase.resetPassword",a,"email");F("Firebase.resetPassword",2,b,!0);var c=new B;this.k.O.Ze(a,C(c,b));return c.D};X.prototype.resetPassword=X.prototype.Ze;})();
 
-/*!
- * @license Firebase v4.6.2
- * Build: rev-cbb07d3
- * Terms: https://firebase.google.com/terms/
- */
-try{webpackJsonpFirebase([4],{76:function(t,n,e){e(77)},77:function(t,n,e){(function(t){(function(){function t(t){return"string"==typeof t}function n(t){return"boolean"==typeof t}function i(){}function r(t){var n=typeof t;if("object"==n){if(!t)return"null";if(t instanceof Array)return"array";if(t instanceof Object)return n;var e=Object.prototype.toString.call(t);if("[object Window]"==e)return"object";if("[object Array]"==e||"number"==typeof t.length&&void 0!==t.splice&&void 0!==t.propertyIsEnumerable&&!t.propertyIsEnumerable("splice"))return"array";if("[object Function]"==e||void 0!==t.call&&void 0!==t.propertyIsEnumerable&&!t.propertyIsEnumerable("call"))return"function"}else if("function"==n&&void 0===t.call)return"object";return n}function o(t){return null===t}function a(t){return"array"==r(t)}function s(t){var n=r(t);return"array"==n||"object"==n&&"number"==typeof t.length}function u(t){return"function"==r(t)}function c(t){var n=typeof t;return"object"==n&&null!=t||"function"==n}function h(t,n,e){return t.call.apply(t.bind,arguments)}function f(t,n,e){if(!t)throw Error();if(2<arguments.length){var i=Array.prototype.slice.call(arguments,2);return function(){var e=Array.prototype.slice.call(arguments);return Array.prototype.unshift.apply(e,i),t.apply(n,e)}}return function(){return t.apply(n,arguments)}}function l(t,n,e){return l=Function.prototype.bind&&-1!=(""+Function.prototype.bind).indexOf("native code")?h:f,l.apply(null,arguments)}function p(t,n){var e=Array.prototype.slice.call(arguments,1);return function(){var n=e.slice();return n.push.apply(n,arguments),t.apply(this,n)}}function d(t,n){function e(){}e.prototype=n.prototype,t.ib=n.prototype,t.prototype=new e,t.prototype.constructor=t,t.Nc=function(t,e,i){for(var r=Array(arguments.length-2),o=2;o<arguments.length;o++)r[o-2]=arguments[o];return n.prototype[e].apply(t,r)}}function v(t){if(Error.captureStackTrace)Error.captureStackTrace(this,v);else{var n=Error().stack;n&&(this.stack=n)}t&&(this.message=t+"")}function m(t,n){for(var e=t.split("%s"),i="",r=Array.prototype.slice.call(arguments,1);r.length&&1<e.length;)i+=e.shift()+r.shift();return i+e.join("%s")}function g(t){return wu.test(t)?(-1!=t.indexOf("&")&&(t=t.replace(pu,"&amp;")),-1!=t.indexOf("<")&&(t=t.replace(du,"&lt;")),-1!=t.indexOf(">")&&(t=t.replace(vu,"&gt;")),-1!=t.indexOf('"')&&(t=t.replace(mu,"&quot;")),-1!=t.indexOf("'")&&(t=t.replace(gu,"&#39;")),-1!=t.indexOf("\0")&&(t=t.replace(bu,"&#0;")),t):t}function b(t,n){return-1!=t.indexOf(n)}function w(t,n){return t<n?-1:t>n?1:0}function y(t,n){n.unshift(t),v.call(this,m.apply(null,n)),n.shift()}function I(t,n){throw new y("Failure"+(t?": "+t:""),Array.prototype.slice.call(arguments,1))}function T(n,e){var i=n.length,r=t(n)?n.split(""):n;for(--i;0<=i;--i)i in r&&e.call(void 0,r[i],i,n)}function k(n){t:{for(var e=ke,i=n.length,r=t(n)?n.split(""):n,o=0;o<i;o++)if(o in r&&e.call(void 0,r[o],o,n)){e=o;break t}e=-1}return 0>e?null:t(n)?n.charAt(e):n[e]}function A(t,n){return 0<=Iu(t,n)}function E(t,n){n=Iu(t,n);var e;return(e=0<=n)&&Array.prototype.splice.call(t,n,1),e}function N(t,n){var e=0;T(t,function(i,r){n.call(void 0,i,r,t)&&1==Array.prototype.splice.call(t,r,1).length&&e++})}function S(t){return Array.prototype.concat.apply([],arguments)}function O(t){var n=t.length;if(0<n){for(var e=Array(n),i=0;i<n;i++)e[i]=t[i];return e}return[]}function P(t){return b(yu,t)}function C(t,n){for(var e in t)n.call(void 0,t[e],e,t)}function _(t){var n,e=[],i=0;for(n in t)e[i++]=t[n];return e}function R(t){var n,e=[],i=0;for(n in t)e[i++]=n;return e}function D(t){for(var n in t)return!1;return!0}function L(t,n){for(var e in t)if(!(e in n)||t[e]!==n[e])return!1;for(e in n)if(!(e in t))return!1;return!0}function x(t){var n,e={};for(n in t)e[n]=t[n];return e}function j(t,n){for(var e,i,r=1;r<arguments.length;r++){i=arguments[r];for(e in i)t[e]=i[e];for(var o=0;o<Su.length;o++)e=Su[o],Object.prototype.hasOwnProperty.call(i,e)&&(t[e]=i[e])}}function U(t){return U[" "](t),t}function M(t,n){var e=Vu;return Object.prototype.hasOwnProperty.call(e,t)?e[t]:e[t]=n(t)}function V(){var t=uu.document;return t?t.documentMode:void 0}function F(t){return M(t,function(){for(var n=0,e=lu(Ou+"").split("."),i=lu(t+"").split("."),r=Math.max(e.length,i.length),o=0;0==n&&o<r;o++){var a=e[o]||"",s=i[o]||"";do{if(a=/(\d*)(\D*)(.*)/.exec(a)||["","","",""],s=/(\d*)(\D*)(.*)/.exec(s)||["","","",""],0==a[0].length&&0==s[0].length)break;n=w(0==a[1].length?0:parseInt(a[1],10),0==s[1].length?0:parseInt(s[1],10))||w(0==a[2].length,0==s[2].length)||w(a[2],s[2]),a=a[3],s=s[3]}while(0==n)}return 0<=n})}function K(t){t.prototype.then=t.prototype.then,t.prototype.$goog_Thenable=!0}function q(t){if(!t)return!1;try{return!!t.$goog_Thenable}catch(t){return!1}}function X(t,n,e){this.f=e,this.c=t,this.g=n,this.b=0,this.a=null}function B(t,n){t.g(n),t.b<t.f&&(t.b++,n.next=t.a,t.a=n)}function H(){var t=Hu,n=null;return t.a&&(n=t.a,t.a=t.a.next,t.a||(t.b=null),n.next=null),n}function W(){this.next=this.b=this.a=null}function G(t){uu.setTimeout(function(){throw t},0)}function z(){var t=uu.MessageChannel;if(void 0===t&&"undefined"!=typeof window&&window.postMessage&&window.addEventListener&&!P("Presto")&&(t=function(){var t=document.createElement("IFRAME");t.style.display="none",t.src="",document.documentElement.appendChild(t);var n=t.contentWindow;t=n.document,t.open(),t.write(""),t.close();var e="callImmediate"+Math.random(),i="file:"==n.location.protocol?"*":n.location.protocol+"//"+n.location.host;t=l(function(t){"*"!=i&&t.origin!=i||t.data!=e||this.port1.onmessage()},this),n.addEventListener("message",t,!1),this.port1={},this.port2={postMessage:function(){n.postMessage(e,i)}}}),void 0!==t&&!P("Trident")&&!P("MSIE")){var n=new t,e={},i=e;return n.port1.onmessage=function(){if(void 0!==e.next){e=e.next;var t=e.pb;e.pb=null,t()}},function(t){i.next={pb:t},i=i.next,n.port2.postMessage(0)}}return"undefined"!=typeof document&&"onreadystatechange"in document.createElement("SCRIPT")?function(t){var n=document.createElement("SCRIPT");n.onreadystatechange=function(){n.onreadystatechange=null,n.parentNode.removeChild(n),n=null,t(),t=null},document.documentElement.appendChild(n)}:function(t){uu.setTimeout(t,0)}}function J(t,n){Xu||Y(),Bu||(Xu(),Bu=!0);var e=Hu,i=Ku.get();i.set(t,n),e.b?e.b.next=i:e.a=i,e.b=i}function Y(){if(-1!=(uu.Promise+"").indexOf("[native code]")){var t=uu.Promise.resolve(void 0);Xu=function(){t.then($)}}else Xu=function(){var t=$;!u(uu.setImmediate)||uu.Window&&uu.Window.prototype&&!P("Edge")&&uu.Window.prototype.setImmediate==uu.setImmediate?(qu||(qu=z()),qu(t)):uu.setImmediate(t)}}function $(){for(var t;t=H();){try{t.a.call(t.b)}catch(t){G(t)}B(Ku,t)}Bu=!1}function Z(t,n){if(this.a=Wu,this.i=void 0,this.f=this.b=this.c=null,this.g=this.h=!1,t!=i)try{var e=this;t.call(n,function(t){ht(e,Gu,t)},function(t){if(!(t instanceof bt))try{if(t instanceof Error)throw t;throw Error("Promise rejected.")}catch(t){}ht(e,zu,t)})}catch(t){ht(this,zu,t)}}function Q(){this.next=this.f=this.b=this.g=this.a=null,this.c=!1}function tt(t,n,e){var i=Ju.get();return i.g=t,i.b=n,i.f=e,i}function nt(t){if(t instanceof Z)return t;var n=new Z(i);return ht(n,Gu,t),n}function et(t){return new Z(function(n,e){e(t)})}function it(t,n,e){ft(t,n,e,null)||J(p(n,t))}function rt(t){return new Z(function(n,e){var i=t.length,r=[];if(i)for(var o,a=function(t,e){i--,r[t]=e,0==i&&n(r)},s=function(t){e(t)},u=0;u<t.length;u++)o=t[u],it(o,p(a,u),s);else n(r)})}function ot(t){return new Z(function(n){var e=t.length,i=[];if(e)for(var r,o=function(t,r,o){e--,i[t]=r?{Qb:!0,value:o}:{Qb:!1,reason:o},0==e&&n(i)},a=0;a<t.length;a++)r=t[a],it(r,p(o,a,!0),p(o,a,!1));else n(i)})}function at(t,n){return n=tt(n,n,void 0),n.c=!0,ut(t,n),t}function st(t,n){if(t.a==Wu)if(t.c){var e=t.c;if(e.b){for(var i=0,r=null,o=null,a=e.b;a&&(a.c||(i++,a.a==t&&(r=a),!(r&&1<i)));a=a.next)r||(o=a);r&&(e.a==Wu&&1==i?st(e,n):(o?(i=o,i.next==e.f&&(e.f=i),i.next=i.next.next):dt(e),vt(e,r,zu,n)))}t.c=null}else ht(t,zu,n)}function ut(t,n){t.b||t.a!=Gu&&t.a!=zu||pt(t),t.f?t.f.next=n:t.b=n,t.f=n}function ct(t,n,e,i){var r=tt(null,null,null);return r.a=new Z(function(t,o){r.g=n?function(e){try{var r=n.call(i,e);t(r)}catch(t){o(t)}}:t,r.b=e?function(n){try{var r=e.call(i,n);void 0===r&&n instanceof bt?o(n):t(r)}catch(t){o(t)}}:o}),r.a.c=t,ut(t,r),r.a}function ht(t,n,e){t.a==Wu&&(t===e&&(n=zu,e=new TypeError("Promise cannot resolve to itself")),t.a=1,ft(e,t.wc,t.xc,t)||(t.i=e,t.a=n,t.c=null,pt(t),n!=zu||e instanceof bt||gt(t,e)))}function ft(t,n,e,r){if(t instanceof Z)return ut(t,tt(n||i,e||null,r)),!0;if(q(t))return t.then(n,e,r),!0;if(c(t))try{var o=t.then;if(u(o))return lt(t,o,n,e,r),!0}catch(t){return e.call(r,t),!0}return!1}function lt(t,n,e,i,r){function o(t){s||(s=!0,i.call(r,t))}function a(t){s||(s=!0,e.call(r,t))}var s=!1;try{n.call(t,a,o)}catch(t){o(t)}}function pt(t){t.h||(t.h=!0,J(t.Mb,t))}function dt(t){var n=null;return t.b&&(n=t.b,t.b=n.next,n.next=null),t.b||(t.f=null),n}function vt(t,n,e,i){if(e==zu&&n.b&&!n.c)for(;t&&t.g;t=t.c)t.g=!1;if(n.a)n.a.c=null,mt(n,e,i);else try{n.c?n.g.call(n.f):mt(n,e,i)}catch(t){Yu.call(null,t)}B(Ju,n)}function mt(t,n,e){n==Gu?t.g.call(t.f,e):t.b&&t.b.call(t.f,e)}function gt(t,n){t.g=!0,J(function(){t.g&&Yu.call(null,n)})}function bt(t){v.call(this,t)}function wt(){this.a="",this.b=Zu}function yt(t){return t instanceof wt&&t.constructor===wt&&t.b===Zu?t.a:(I("expected object of type Const, got '"+t+"'"),"type_error:Const")}function It(t){var n=new wt;return n.a=t,n}function Tt(){this.a="",this.b=nc}function kt(t){return t instanceof Tt&&t.constructor===Tt&&t.b===nc?t.a:(I("expected object of type TrustedResourceUrl, got '"+t+"' of type "+r(t)),"type_error:TrustedResourceUrl")}function At(t,n){return t=Et(t,n),n=new Tt,n.a=t,n}function Et(t,n){var e=yt(t);if(!tc.test(e))throw Error("Invalid TrustedResourceUrl format: "+e);return e.replace(Qu,function(t,i){if(!Object.prototype.hasOwnProperty.call(n,i))throw Error('Found marker, "'+i+'", in format string, "'+e+'", but no valid label mapping found in args: '+JSON.stringify(n));return t=n[i],t instanceof wt?yt(t):encodeURIComponent(t+"")})}function Nt(){this.a="",this.b=ic}function St(t){return t instanceof Nt&&t.constructor===Nt&&t.b===ic?t.a:(I("expected object of type SafeUrl, got '"+t+"' of type "+r(t)),"type_error:SafeUrl")}function Ot(t){return t instanceof Nt?t:(t=t.la?t.ja():t+"",ec.test(t)||(t="about:invalid#zClosurez"),Pt(t))}function Pt(t){var n=new Nt;return n.a=t,n}function Ct(){this.a="",this.b=rc}function _t(t){return t instanceof Ct&&t.constructor===Ct&&t.b===rc?t.a:(I("expected object of type SafeHtml, got '"+t+"' of type "+r(t)),"type_error:SafeHtml")}function Rt(t){var n=new Ct;return n.a=t,n}function Dt(n){var e=document;return t(n)?e.getElementById(n):n}function Lt(t,n){C(n,function(n,e){n&&n.la&&(n=n.ja()),"style"==e?t.style.cssText=n:"class"==e?t.className=n:"for"==e?t.htmlFor=n:oc.hasOwnProperty(e)?t.setAttribute(oc[e],n):0==e.lastIndexOf("aria-",0)||0==e.lastIndexOf("data-",0)?t.setAttribute(e,n):t[e]=n})}function xt(n,e,i){var r=arguments,o=document,s=r[0]+"",u=r[1];if(!$u&&u&&(u.name||u.type)){if(s=["<",s],u.name&&s.push(' name="',g(u.name),'"'),u.type){s.push(' type="',g(u.type),'"');var c={};j(c,u),delete c.type,u=c}s.push(">"),s=s.join("")}return s=o.createElement(s),u&&(t(u)?s.className=u:a(u)?s.className=u.join(" "):Lt(s,u)),2<r.length&&jt(o,s,r),s}function jt(n,e,i){function r(i){i&&e.appendChild(t(i)?n.createTextNode(i):i)}for(var o=2;o<i.length;o++){var a=i[o];!s(a)||c(a)&&0<a.nodeType?r(a):Tu(Ut(a)?O(a):a,r)}}function Ut(t){if(t&&"number"==typeof t.length){if(c(t))return"function"==typeof t.item||"string"==typeof t.item;if(u(t))return"function"==typeof t.item}return!1}function Mt(t){var n=[];return Ft(new Vt,t,n),n.join("")}function Vt(){}function Ft(t,n,e){if(null==n)e.push("null");else{if("object"==typeof n){if(a(n)){var i=n;n=i.length,e.push("[");for(var r="",o=0;o<n;o++)e.push(r),Ft(t,i[o],e),r=",";return void e.push("]")}if(!(n instanceof String||n instanceof Number||n instanceof Boolean)){e.push("{"),r="";for(i in n)Object.prototype.hasOwnProperty.call(n,i)&&"function"!=typeof(o=n[i])&&(e.push(r),Kt(i,e),e.push(":"),Ft(t,o,e),r=",");return void e.push("}")}n=n.valueOf()}switch(typeof n){case"string":Kt(n,e);break;case"number":e.push(isFinite(n)&&!isNaN(n)?n+"":"null");break;case"boolean":e.push(n+"");break;case"function":e.push("null");break;default:throw Error("Unknown type: "+typeof n)}}}function Kt(t,n){n.push('"',t.replace(sc,function(t){var n=ac[t];return n||(n="\\u"+(65536|t.charCodeAt(0)).toString(16).substr(1),ac[t]=n),n}),'"')}function qt(){0!=uc&&(cc[this[cu]||(this[cu]=++hu)]=this),this.oa=this.oa,this.Fa=this.Fa}function Xt(t){t.oa||(t.oa=!0,t.ta(),0!=uc&&(t=t[cu]||(t[cu]=++hu),delete cc[t]))}function Bt(t,n){this.type=t,this.b=this.target=n,this.Ab=!0}function Ht(n,e){if(Bt.call(this,n?n.type:""),this.relatedTarget=this.b=this.target=null,this.button=this.screenY=this.screenX=this.clientY=this.clientX=0,this.key="",this.metaKey=this.shiftKey=this.altKey=this.ctrlKey=!1,this.pointerId=0,this.pointerType="",this.a=null,n){var i=this.type=n.type,r=n.changedTouches?n.changedTouches[0]:null;if(this.target=n.target||n.srcElement,this.b=e,e=n.relatedTarget){if(Du){t:{try{U(e.nodeName);var o=!0;break t}catch(t){}o=!1}o||(e=null)}}else"mouseover"==i?e=n.fromElement:"mouseout"==i&&(e=n.toElement);this.relatedTarget=e,null===r?(this.clientX=void 0!==n.clientX?n.clientX:n.pageX,this.clientY=void 0!==n.clientY?n.clientY:n.pageY,this.screenX=n.screenX||0,this.screenY=n.screenY||0):(this.clientX=void 0!==r.clientX?r.clientX:r.pageX,this.clientY=void 0!==r.clientY?r.clientY:r.pageY,this.screenX=r.screenX||0,this.screenY=r.screenY||0),this.button=n.button,this.key=n.key||"",this.ctrlKey=n.ctrlKey,this.altKey=n.altKey,this.shiftKey=n.shiftKey,this.metaKey=n.metaKey,this.pointerId=n.pointerId||0,this.pointerType=t(n.pointerType)?n.pointerType:dc[n.pointerType]||"",this.a=n,n.defaultPrevented&&this.c()}}function Wt(t,n,e,i,r){this.listener=t,this.a=null,this.src=n,this.type=e,this.capture=!!i,this.La=r,this.key=++mc,this.ma=this.Ha=!1}function Gt(t){t.ma=!0,t.listener=null,t.a=null,t.src=null,t.La=null}function zt(t){this.src=t,this.a={},this.b=0}function Jt(t,n,e,i,r,o){var a=""+n;(n=t.a[a])||(n=t.a[a]=[],t.b++);var s=$t(n,e,r,o);return-1<s?(t=n[s],i||(t.Ha=!1)):(t=new Wt(e,t.src,a,!!r,o),t.Ha=i,n.push(t)),t}function Yt(t,n){var e=n.type;e in t.a&&E(t.a[e],n)&&(Gt(n),0==t.a[e].length&&(delete t.a[e],t.b--))}function $t(t,n,e,i){for(var r=0;r<t.length;++r){var o=t[r];if(!o.ma&&o.listener==n&&o.capture==!!e&&o.La==i)return r}return-1}function Zt(t,n,e,i,r){if(i&&i.once)nn(t,n,e,i,r);else if(a(n))for(var o=0;o<n.length;o++)Zt(t,n[o],e,i,r);else e=hn(e),t&&t[vc]?pn(t,n,e,c(i)?!!i.capture:!!i,r):Qt(t,n,e,!1,i,r)}function Qt(t,n,e,i,r,o){if(!n)throw Error("Invalid event type");var a=c(r)?!!r.capture:!!r,s=cn(t);if(s||(t[gc]=s=new zt(t)),e=Jt(s,n,e,i,a,o),!e.a){if(i=tn(),e.a=i,i.src=t,i.listener=e,t.addEventListener)pc||(r=a),void 0===r&&(r=!1),t.addEventListener(""+n,i,r);else{if(!t.attachEvent)throw Error("addEventListener and attachEvent are unavailable.");t.attachEvent(on(""+n),i)}wc++}}function tn(){var t=un,n=fc?function(e){return t.call(n.src,n.listener,e)}:function(e){if(!(e=t.call(n.src,n.listener,e)))return e};return n}function nn(t,n,e,i,r){if(a(n))for(var o=0;o<n.length;o++)nn(t,n[o],e,i,r);else e=hn(e),t&&t[vc]?dn(t,n,e,c(i)?!!i.capture:!!i,r):Qt(t,n,e,!0,i,r)}function en(t,n,e,i,r){if(a(n))for(var o=0;o<n.length;o++)en(t,n[o],e,i,r);else i=c(i)?!!i.capture:!!i,e=hn(e),t&&t[vc]?(t=t.u,(n+="")in t.a&&(o=t.a[n],-1<(e=$t(o,e,i,r))&&(Gt(o[e]),Array.prototype.splice.call(o,e,1),0==o.length&&(delete t.a[n],t.b--)))):t&&(t=cn(t))&&(n=t.a[""+n],t=-1,n&&(t=$t(n,e,i,r)),(e=-1<t?n[t]:null)&&rn(e))}function rn(t){if("number"!=typeof t&&t&&!t.ma){var n=t.src;if(n&&n[vc])Yt(n.u,t);else{var e=t.type,i=t.a;n.removeEventListener?n.removeEventListener(e,i,t.capture):n.detachEvent&&n.detachEvent(on(e),i),wc--,(e=cn(n))?(Yt(e,t),0==e.b&&(e.src=null,n[gc]=null)):Gt(t)}}}function on(t){return t in bc?bc[t]:bc[t]="on"+t}function an(t,n,e,i){var r=!0;if((t=cn(t))&&(n=t.a[""+n]))for(n=n.concat(),t=0;t<n.length;t++){var o=n[t];o&&o.capture==e&&!o.ma&&(o=sn(o,i),r=r&&!1!==o)}return r}function sn(t,n){var e=t.listener,i=t.La||t.src;return t.Ha&&rn(t),e.call(i,n)}function un(t,n){if(t.ma)return!0;if(!fc){if(!n)t:{n=["window","event"];for(var e=uu,i=0;i<n.length;i++)if(null==(e=e[n[i]])){n=null;break t}n=e}if(i=n,n=new Ht(i,this),e=!0,!(0>i.keyCode||void 0!=i.returnValue)){t:{var r=!1;if(0==i.keyCode)try{i.keyCode=-1;break t}catch(t){r=!0}(r||void 0==i.returnValue)&&(i.returnValue=!0)}for(i=[],r=n.b;r;r=r.parentNode)i.push(r);for(t=t.type,r=i.length-1;0<=r;r--){n.b=i[r];var o=an(i[r],t,!0,n);e=e&&o}for(r=0;r<i.length;r++)n.b=i[r],o=an(i[r],t,!1,n),e=e&&o}return e}return sn(t,new Ht(n,this))}function cn(t){return t=t[gc],t instanceof zt?t:null}function hn(t){return u(t)?t:(t[yc]||(t[yc]=function(n){return t.handleEvent(n)}),t[yc])}function fn(){qt.call(this),this.u=new zt(this),this.Eb=this,this.Ra=null}function ln(n,e){var i,r=n.Ra;if(r)for(i=[];r;r=r.Ra)i.push(r);if(n=n.Eb,r=e.type||e,t(e))e=new Bt(e,n);else if(e instanceof Bt)e.target=e.target||n;else{var o=e;e=new Bt(r,n),j(e,o)}if(o=!0,i)for(var a=i.length-1;0<=a;a--){var s=e.b=i[a];o=vn(s,r,!0,e)&&o}if(s=e.b=n,o=vn(s,r,!0,e)&&o,o=vn(s,r,!1,e)&&o,i)for(a=0;a<i.length;a++)s=e.b=i[a],o=vn(s,r,!1,e)&&o}function pn(t,n,e,i,r){Jt(t.u,n+"",e,!1,i,r)}function dn(t,n,e,i,r){Jt(t.u,n+"",e,!0,i,r)}function vn(t,n,e,i){if(!(n=t.u.a[n+""]))return!0;n=n.concat();for(var r=!0,o=0;o<n.length;++o){var a=n[o];if(a&&!a.ma&&a.capture==e){var s=a.listener,u=a.La||a.src;a.Ha&&Yt(t.u,a),r=!1!==s.call(u,i)&&r}}return r&&0!=i.Ab}function mn(t,n,e){if(u(t))e&&(t=l(t,e));else{if(!t||"function"!=typeof t.handleEvent)throw Error("Invalid listener argument");t=l(t.handleEvent,t)}return 2147483647<+n?-1:uu.setTimeout(t,n||0)}function gn(t){var n=null;return new Z(function(e,i){-1==(n=mn(function(){e(void 0)},t))&&i(Error("Failed to schedule timer."))}).s(function(t){throw uu.clearTimeout(n),t})}function bn(t,n,e,i,r){this.reset(t,n,e,i,r)}function wn(t){this.f=t,this.b=this.c=this.a=null}function yn(t,n){this.name=t,this.value=n}function In(t){return t.c?t.c:t.a?In(t.a):(I("Root logger has no level set."),null)}function Tn(t){Nc||(Nc=new wn(""),Ec[""]=Nc,Nc.c=kc);var n;if(!(n=Ec[t])){n=new wn(t);var e=t.lastIndexOf("."),i=t.substr(e+1);e=Tn(t.substr(0,e)),e.b||(e.b={}),e.b[i]=n,n.a=e,Ec[t]=n}return n}function kn(t,n){this.b={},this.a=[],this.c=0;var e=arguments.length;if(1<e){if(e%2)throw Error("Uneven number of arguments");for(var i=0;i<e;i+=2)this.set(arguments[i],arguments[i+1])}else if(t){t instanceof kn?(e=t.S(),i=t.P()):(e=R(t),i=_(t));for(var r=0;r<e.length;r++)this.set(e[r],i[r])}}function An(t){if(t.c!=t.a.length){for(var n=0,e=0;n<t.a.length;){var i=t.a[n];En(t.b,i)&&(t.a[e++]=i),n++}t.a.length=e}if(t.c!=t.a.length){var r={};for(e=n=0;n<t.a.length;)i=t.a[n],En(r,i)||(t.a[e++]=i,r[i]=1),n++;t.a.length=e}}function En(t,n){return Object.prototype.hasOwnProperty.call(t,n)}function Nn(t,n){t&&t.log(Ac,n,void 0)}function Sn(t){return ku(t,function(t){return t=t.toString(16),1<t.length?t:"0"+t}).join("")}function On(t){var n="";return Pn(t,function(t){n+=String.fromCharCode(t)}),n}function Pn(t,n){function e(n){for(;i<t.length;){var e=t.charAt(i++),r=Oc[e];if(null!=r)return r;if(!/^[\s\xa0]*$/.test(e))throw Error("Unknown base64 encoding at char: "+e)}return n}Cn();for(var i=0;;){var r=e(-1),o=e(0),a=e(64),s=e(64);if(64===s&&-1===r)break;n(r<<2|o>>4),64!=a&&(n(o<<4&240|a>>2),64!=s&&n(a<<6&192|s))}}function Cn(){if(!Sc){Sc={},Oc={};for(var t=0;65>t;t++)Sc[t]="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".charAt(t),Oc[Sc[t]]=t,62<=t&&(Oc["ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_.".charAt(t)]=t)}}function _n(t,n){this.g=[],this.v=t,this.o=n||null,this.f=this.a=!1,this.c=void 0,this.u=this.w=this.i=!1,this.h=0,this.b=null,this.l=0}function Rn(t,n,e){t.a=!0,t.c=e,t.f=!n,Un(t)}function Dn(t){if(t.a){if(!t.u)throw new Mn;t.u=!1}}function Ln(t,n){xn(t,null,n,void 0)}function xn(t,n,e,i){t.g.push([n,e,i]),t.a&&Un(t)}function jn(t){return Au(t.g,function(t){return u(t[1])})}function Un(t){if(t.h&&t.a&&jn(t)){var n=t.h,e=Cc[n];e&&(uu.clearTimeout(e.a),delete Cc[n]),t.h=0}t.b&&(t.b.l--,delete t.b),n=t.c;for(var i=e=!1;t.g.length&&!t.i;){var r=t.g.shift(),o=r[0],a=r[1];if(r=r[2],o=t.f?a:o)try{var s=o.call(r||t.o,n);void 0!==s&&(t.f=t.f&&(s==n||s instanceof Error),t.c=n=s),(q(n)||"function"==typeof uu.Promise&&n instanceof uu.Promise)&&(i=!0,t.i=!0)}catch(i){n=i,t.f=!0,jn(t)||(e=!0)}}t.c=n,i&&(s=l(t.m,t,!0),i=l(t.m,t,!1),n instanceof _n?(xn(n,s,i),n.w=!0):n.then(s,i)),e&&(n=new Fn(n),Cc[n.a]=n,t.h=n.a)}function Mn(){v.call(this)}function Vn(){v.call(this)}function Fn(t){this.a=uu.setTimeout(l(this.c,this),0),this.b=t}function Kn(){this.b=-1}function qn(t,n){this.b=-1,this.b=_c,this.f=uu.Uint8Array?new Uint8Array(this.b):Array(this.b),this.g=this.c=0,this.a=[],this.i=t,this.h=n,this.l=uu.Int32Array?new Int32Array(64):Array(64),Pc||(Pc=uu.Int32Array?new Int32Array(jc):jc),this.reset()}function Xn(t){for(var n=t.f,e=t.l,i=0,r=0;r<n.length;)e[i++]=n[r]<<24|n[r+1]<<16|n[r+2]<<8|n[r+3],r=4*i;for(n=16;64>n;n++){r=0|e[n-15],i=0|e[n-2];var o=(0|e[n-16])+((r>>>7|r<<25)^(r>>>18|r<<14)^r>>>3)|0,a=(0|e[n-7])+((i>>>17|i<<15)^(i>>>19|i<<13)^i>>>10)|0;e[n]=o+a|0}i=0|t.a[0],r=0|t.a[1];var s=0|t.a[2],u=0|t.a[3],c=0|t.a[4],h=0|t.a[5],f=0|t.a[6];for(o=0|t.a[7],n=0;64>n;n++){var l=((i>>>2|i<<30)^(i>>>13|i<<19)^(i>>>22|i<<10))+(i&r^i&s^r&s)|0;a=c&h^~c&f,o=o+((c>>>6|c<<26)^(c>>>11|c<<21)^(c>>>25|c<<7))|0,a=a+(0|Pc[n])|0,a=o+(a+(0|e[n])|0)|0,o=f,f=h,h=c,c=u+a|0,u=s,s=r,r=i,i=a+l|0}t.a[0]=t.a[0]+i|0,t.a[1]=t.a[1]+r|0,t.a[2]=t.a[2]+s|0,t.a[3]=t.a[3]+u|0,t.a[4]=t.a[4]+c|0,t.a[5]=t.a[5]+h|0,t.a[6]=t.a[6]+f|0,t.a[7]=t.a[7]+o|0}function Bn(n,e,i){void 0===i&&(i=e.length);var r=0,o=n.c;if(t(e))for(;r<i;)n.f[o++]=e.charCodeAt(r++),o==n.b&&(Xn(n),o=0);else{if(!s(e))throw Error("message must be string or array");for(;r<i;){var a=e[r++];if(!("number"==typeof a&&0<=a&&255>=a&&a==(0|a)))throw Error("message must be a byte array");n.f[o++]=a,o==n.b&&(Xn(n),o=0)}}n.c=o,n.g+=i}function Hn(){qn.call(this,8,Uc)}function Wn(n){if(n.P&&"function"==typeof n.P)return n.P();if(t(n))return n.split("");if(s(n)){for(var e=[],i=n.length,r=0;r<i;r++)e.push(n[r]);return e}return _(n)}function Gn(n){if(n.S&&"function"==typeof n.S)return n.S();if(!n.P||"function"!=typeof n.P){if(s(n)||t(n)){var e=[];n=n.length;for(var i=0;i<n;i++)e.push(i);return e}return R(n)}}function zn(n,e){if(n.forEach&&"function"==typeof n.forEach)n.forEach(e,void 0);else if(s(n)||t(n))Tu(n,e,void 0);else for(var i=Gn(n),r=Wn(n),o=r.length,a=0;a<o;a++)e.call(void 0,r[a],i&&i[a],n)}function Jn(t,n){if(t){t=t.split("&");for(var e=0;e<t.length;e++){var i=t[e].indexOf("="),r=null;if(0<=i){var o=t[e].substring(0,i);r=t[e].substring(i+1)}else o=t[e];n(o,r?decodeURIComponent(r.replace(/\+/g," ")):"")}}}function Yn(t,n){if(this.b=this.l=this.c="",this.i=null,this.h=this.g="",this.f=!1,t instanceof Yn){this.f=void 0!==n?n:t.f,$n(this,t.c),this.l=t.l,this.b=t.b,Zn(this,t.i),this.g=t.g,n=t.a;var e=new se;e.c=n.c,n.a&&(e.a=new kn(n.a),e.b=n.b),Qn(this,e),this.h=t.h}else t&&(e=(t+"").match(Mc))?(this.f=!!n,$n(this,e[1]||"",!0),this.l=re(e[2]||""),this.b=re(e[3]||"",!0),Zn(this,e[4]),this.g=re(e[5]||"",!0),Qn(this,e[6]||"",!0),this.h=re(e[7]||"")):(this.f=!!n,this.a=new se(null,0,this.f))}function $n(t,n,e){t.c=e?re(n,!0):n,t.c&&(t.c=t.c.replace(/:$/,""))}function Zn(t,n){if(n){if(n=+n,isNaN(n)||0>n)throw Error("Bad port number "+n);t.i=n}else t.i=null}function Qn(t,n,e){n instanceof se?(t.a=n,ve(t.a,t.f)):(e||(n=oe(n,qc)),t.a=new se(n,0,t.f))}function te(t,n,e){t.a.set(n,e)}function ne(t,n){return t.a.get(n)}function ee(t){return t instanceof Yn?new Yn(t):new Yn(t,void 0)}function ie(t,n){var e=new Yn(null,void 0);return $n(e,"https"),t&&(e.b=t),n&&(e.g=n),e}function re(t,n){return t?n?decodeURI(t.replace(/%25/g,"%2525")):decodeURIComponent(t):""}function oe(n,e,i){return t(n)?(n=encodeURI(n).replace(e,ae),i&&(n=n.replace(/%25([0-9a-fA-F]{2})/g,"%$1")),n):null}function ae(t){return t=t.charCodeAt(0),"%"+(t>>4&15).toString(16)+(15&t).toString(16)}function se(t,n,e){this.b=this.a=null,this.c=t||null,this.f=!!e}function ue(t){t.a||(t.a=new kn,t.b=0,t.c&&Jn(t.c,function(n,e){he(t,decodeURIComponent(n.replace(/\+/g," ")),e)}))}function ce(t){var n=Gn(t);if(void 0===n)throw Error("Keys are undefined");var e=new se(null,0,void 0);t=Wn(t);for(var i=0;i<n.length;i++){var r=n[i],o=t[i];a(o)?pe(e,r,o):he(e,r,o)}return e}function he(t,n,e){ue(t),t.c=null,n=de(t,n);var i=t.a.get(n);i||t.a.set(n,i=[]),i.push(e),t.b+=1}function fe(t,n){ue(t),n=de(t,n),En(t.a.b,n)&&(t.c=null,t.b-=t.a.get(n).length,t=t.a,En(t.b,n)&&(delete t.b[n],t.c--,t.a.length>2*t.c&&An(t)))}function le(t,n){return ue(t),n=de(t,n),En(t.a.b,n)}function pe(t,n,e){fe(t,n),0<e.length&&(t.c=null,t.a.set(de(t,n),O(e)),t.b+=e.length)}function de(t,n){return n+="",t.f&&(n=n.toLowerCase()),n}function ve(t,n){n&&!t.f&&(ue(t),t.c=null,t.a.forEach(function(t,n){var e=n.toLowerCase();n!=e&&(fe(this,n),pe(this,e,t))},t)),t.f=n}function me(){}function ge(t){return t.c||(t.c=t.b())}function be(){}function we(t){if(!t.f&&"undefined"==typeof XMLHttpRequest&&"undefined"!=typeof ActiveXObject){for(var n=["MSXML2.XMLHTTP.6.0","MSXML2.XMLHTTP.3.0","MSXML2.XMLHTTP","Microsoft.XMLHTTP"],e=0;e<4;e++){var i=n[e];try{return new ActiveXObject(i),t.f=i}catch(t){}}throw Error("Could not create ActiveXObject. ActiveX might be disabled, or MSXML might not be installed")}return t.f}function ye(t){fn.call(this),this.headers=new kn,this.w=t||null,this.b=!1,this.v=this.a=null,this.g=this.I=this.i="",this.c=this.G=this.h=this.A=!1,this.f=0,this.m=null,this.l=Hc,this.o=this.N=!1}function Ie(t,n,e,i,r){if(t.a)throw Error("[goog.net.XhrIo] Object is active with another request="+t.i+"; newUri="+n);e=e?e.toUpperCase():"GET",t.i=n,t.g="",t.I=e,t.A=!1,t.b=!0,t.a=t.w?t.w.a():Bc.a(),t.v=ge(t.w?t.w:Bc),t.a.onreadystatechange=l(t.zb,t);try{Nn(t.J,Re(t,"Opening Xhr")),t.G=!0,t.a.open(e,n+"",!0),t.G=!1}catch(n){return Nn(t.J,Re(t,"Error opening Xhr: "+n.message)),void Ae(t,n)}n=i||"";var o=new kn(t.headers);r&&zn(r,function(t,n){o.set(n,t)}),r=k(o.S()),i=uu.FormData&&n instanceof uu.FormData,!A(Jc,e)||r||i||o.set("Content-Type","application/x-www-form-urlencoded;charset=utf-8"),o.forEach(function(t,n){this.a.setRequestHeader(n,t)},t),t.l&&(t.a.responseType=t.l),"withCredentials"in t.a&&t.a.withCredentials!==t.N&&(t.a.withCredentials=t.N);try{Oe(t),0<t.f&&(t.o=Te(t.a),Nn(t.J,Re(t,"Will abort after "+t.f+"ms if incomplete, xhr2 "+t.o)),t.o?(t.a.timeout=t.f,t.a.ontimeout=l(t.Ea,t)):t.m=mn(t.Ea,t.f,t)),Nn(t.J,Re(t,"Sending request")),t.h=!0,t.a.send(n),t.h=!1}catch(n){Nn(t.J,Re(t,"Send error: "+n.message)),Ae(t,n)}}function Te(t){return Cu&&F(9)&&"number"==typeof t.timeout&&void 0!==t.ontimeout}function ke(t){return"content-type"==t.toLowerCase()}function Ae(t,n){t.b=!1,t.a&&(t.c=!0,t.a.abort(),t.c=!1),t.g=n,Ee(t),Se(t)}function Ee(t){t.A||(t.A=!0,ln(t,"complete"),ln(t,"error"))}function Ne(t){if(t.b&&void 0!==su)if(t.v[1]&&4==Pe(t)&&2==Ce(t))Nn(t.J,Re(t,"Local request error detected and ignored"));else if(t.h&&4==Pe(t))mn(t.zb,0,t);else if(ln(t,"readystatechange"),4==Pe(t)){Nn(t.J,Re(t,"Request complete")),t.b=!1;try{var n=Ce(t);t:switch(n){case 200:case 201:case 202:case 204:case 206:case 304:case 1223:var e=!0;break t;default:e=!1}var i;if(!(i=e)){var r;if(r=0===n){var o=(t.i+"").match(Mc)[1]||null;if(!o&&uu.self&&uu.self.location){var a=uu.self.location.protocol;o=a.substr(0,a.length-1)}r=!zc.test(o?o.toLowerCase():"")}i=r}if(i)ln(t,"complete"),ln(t,"success");else{try{var s=2<Pe(t)?t.a.statusText:""}catch(n){Nn(t.J,"Can not get status: "+n.message),s=""}t.g=s+" ["+Ce(t)+"]",Ee(t)}}finally{Se(t)}}}function Se(t,n){if(t.a){Oe(t);var e=t.a,r=t.v[0]?i:null;t.a=null,t.v=null,n||ln(t,"ready");try{e.onreadystatechange=r}catch(n){(t=t.J)&&t.log(Tc,"Problem encountered resetting onreadystatechange: "+n.message,void 0)}}}function Oe(t){t.a&&t.o&&(t.a.ontimeout=null),"number"==typeof t.m&&(uu.clearTimeout(t.m),t.m=null)}function Pe(t){return t.a?t.a.readyState:0}function Ce(t){try{return 2<Pe(t)?t.a.status:-1}catch(t){return-1}}function _e(t){try{return t.a?t.a.responseText:""}catch(n){return Nn(t.J,"Can not get responseText: "+n.message),""}}function Re(t,n){return n+" ["+t.I+" "+t.i+" "+Ce(t)+"]"}function De(t){var n={},e=n.document||document,i=kt(t),r=document.createElement("SCRIPT"),o={Bb:r,Ea:void 0},a=new _n(xe,o),s=null,u=null!=n.timeout?n.timeout:5e3;return 0<u&&(s=window.setTimeout(function(){je(r,!0);var t=new Ue(Zc,"Timeout reached for loading script "+i);Dn(a),Rn(a,!1,t)},u),o.Ea=s),r.onload=r.onreadystatechange=function(){r.readyState&&"loaded"!=r.readyState&&"complete"!=r.readyState||(je(r,n.Oc||!1,s),a.A(null))},r.onerror=function(){je(r,!0,s);var t=new Ue($c,"Error while loading script "+i);Dn(a),Rn(a,!1,t)},o=n.attributes||{},j(o,{type:"text/javascript",charset:"UTF-8"}),Lt(r,o),r.src=kt(t),Le(e).appendChild(r),a}function Le(t){var n;return(n=(t||document).getElementsByTagName("HEAD"))&&0!=n.length?n[0]:t.documentElement}function xe(){if(this&&this.Bb){var t=this.Bb;t&&"SCRIPT"==t.tagName&&je(t,!0,this.Ea)}}function je(t,n,e){null!=e&&uu.clearTimeout(e),t.onload=i,t.onerror=i,t.onreadystatechange=i,n&&window.setTimeout(function(){t&&t.parentNode&&t.parentNode.removeChild(t)},0)}function Ue(t,n){var e="Jsloader error (code #"+t+")";n&&(e+=": "+n),v.call(this,e),this.code=t}function Me(){}function Ve(){this.a=new XDomainRequest,this.readyState=0,this.onreadystatechange=null,this.responseText="",this.status=-1,this.statusText=this.responseXML=null,this.a.onload=l(this.Sb,this),this.a.onerror=l(this.wb,this),this.a.onprogress=l(this.Tb,this),this.a.ontimeout=l(this.Ub,this)}function Fe(t,n){t.readyState=n,t.onreadystatechange&&t.onreadystatechange()}function Ke(){var t=ri();return Cu&&!!Mu&&11==Mu||/Edge\/\d+/.test(t)}function qe(){return uu.window&&uu.window.location.href||""}function Xe(t,n){n=n||uu.window;var e="about:blank";t&&(e=St(Ot(t))),n.location.href=e}function Be(t,n){var e,i=[];for(e in t)e in n?typeof t[e]!=typeof n[e]?i.push(e):a(t[e])?L(t[e],n[e])||i.push(e):"object"==typeof t[e]&&null!=t[e]&&null!=n[e]?0<Be(t[e],n[e]).length&&i.push(e):t[e]!==n[e]&&i.push(e):i.push(e);for(e in n)e in t||i.push(e);return i}function He(){var t=ri();return!((t=ei(t)!=nh?null:(t=t.match(/\sChrome\/(\d+)/i))&&2==t.length?parseInt(t[1],10):null)&&30>t||Cu&&Mu&&!(9<Mu))}function We(t){return t=(t||ri()).toLowerCase(),!!(t.match(/android/)||t.match(/webos/)||t.match(/iphone|ipad|ipod/)||t.match(/blackberry/)||t.match(/windows phone/)||t.match(/iemobile/))}function Ge(t){t=t||uu.window;try{t.close()}catch(t){}}function ze(t,n,e){var i=""+Math.floor(1e9*Math.random());n=n||500,e=e||600;var r=(window.screen.availHeight-e)/2,o=(window.screen.availWidth-n)/2;n={width:n,height:e,top:0<r?r:0,left:0<o?o:0,location:!0,resizable:!0,statusbar:!0,toolbar:!1},e=ri().toLowerCase(),i&&(n.target=i,b(e,"crios/")&&(n.target="_blank")),ei(ri())==th&&(t=t||"http://localhost",n.scrollbars=!0),e=t||"",(i=n)||(i={}),t=window,n=e instanceof Nt?e:Ot(void 0!==e.href?e.href:e+""),e=i.target||e.target,r=[];for(a in i)switch(a){case"width":case"height":case"top":case"left":r.push(a+"="+i[a]);break;case"target":case"noreferrer":break;default:r.push(a+"="+(i[a]?1:0))}var a=r.join(",");if((P("iPhone")&&!P("iPod")&&!P("iPad")||P("iPad")||P("iPod"))&&t.navigator&&t.navigator.standalone&&e&&"_self"!=e?(a=t.document.createElement("A"),n instanceof Nt||n instanceof Nt||(n=n.la?n.ja():n+"",ec.test(n)||(n="about:invalid#zClosurez"),n=Pt(n)),a.href=St(n),a.setAttribute("target",e),i.noreferrer&&a.setAttribute("rel","noreferrer"),i=document.createEvent("MouseEvent"),i.initMouseEvent("click",!0,!0,t,1),a.dispatchEvent(i),a={}):i.noreferrer?(a=t.open("",e,a),t=St(n),a&&(Ru&&b(t,";")&&(t="'"+t.replace(/'/g,"%27")+"'"),a.opener=null,It("b/12014412, meta tag with sanitized URL"),t='<META HTTP-EQUIV="refresh" content="0; url='+g(t)+'">',t=Rt(t),a.document.write(_t(t)),a.document.close())):a=t.open(St(n),e,a),a)try{a.focus()}catch(t){}return a}function Je(t){return new Z(function(n){function e(){gn(2e3).then(function(){if(t&&!t.closed)return e();n()})}return e()})}function Ye(){var t=null;return new Z(function(n){"complete"==uu.document.readyState?n():(t=function(){n()},nn(window,"load",t))}).s(function(n){throw en(window,"load",t),n})}function $e(){return Ze(void 0)?Ye().then(function(){return new Z(function(t,n){var e=uu.document,i=setTimeout(function(){n(Error("Cordova framework is not ready."))},1e3);e.addEventListener("deviceready",function(){clearTimeout(i),t()},!1)})}):et(Error("Cordova must run in an Android or iOS file scheme."))}function Ze(t){return t=t||ri(),!("file:"!==ci()||!t.toLowerCase().match(/iphone|ipad|ipod|android/))}function Qe(){var t=uu.window;try{return!(!t||t==t.top)}catch(t){return!1}}function ti(){return au.INTERNAL.hasOwnProperty("reactNative")?"ReactNative":au.INTERNAL.hasOwnProperty("node")?"Node":"Browser"}function ni(){var t=ti();return"ReactNative"===t||"Node"===t}function ei(t){var n=t.toLowerCase();return b(n,"opera/")||b(n,"opr/")||b(n,"opios/")?"Opera":b(n,"iemobile")?"IEMobile":b(n,"msie")||b(n,"trident/")?"IE":b(n,"edge/")?"Edge":b(n,"firefox/")?th:b(n,"silk/")?"Silk":b(n,"blackberry")?"Blackberry":b(n,"webos")?"Webos":!b(n,"safari/")||b(n,"chrome/")||b(n,"crios/")||b(n,"android")?!b(n,"chrome/")&&!b(n,"crios/")||b(n,"edge/")?b(n,"android")?"Android":(t=t.match(/([a-zA-Z\d\.]+)\/[a-zA-Z\d\.]*$/))&&2==t.length?t[1]:"Other":nh:"Safari"}function ii(t,n){n=n||[];var e,i=[],r={};for(e in eh)r[eh[e]]=!0;for(e=0;e<n.length;e++)void 0!==r[n[e]]&&(delete r[n[e]],i.push(n[e]));return i.sort(),n=i,n.length||(n=["FirebaseCore-web"]),i=ti(),r="",(r="Browser"===i?ei(ri()):i)+"/JsCore/"+t+"/"+n.join(",")}function ri(){return uu.navigator&&uu.navigator.userAgent||""}function oi(t,n){t=t.split("."),n=n||uu;for(var e=0;e<t.length&&"object"==typeof n&&null!=n;e++)n=n[t[e]];return e!=t.length&&(n=void 0),n}function ai(){try{var t=uu.localStorage,n=di();if(t)return t.setItem(n,"1"),t.removeItem(n),!Ke()||!!uu.indexedDB}catch(t){}return!1}function si(){return(ui()||"chrome-extension:"===ci()||Ze())&&!ni()&&ai()}function ui(){return"http:"===ci()||"https:"===ci()}function ci(){return uu.location&&uu.location.protocol||null}function hi(t){return t=t||ri(),!We(t)&&ei(t)!=th}function fi(t){return void 0===t?null:Mt(t)}function li(t){var n,e={};for(n in t)t.hasOwnProperty(n)&&null!==t[n]&&void 0!==t[n]&&(e[n]=t[n]);return e}function pi(t){if(null!==t)return JSON.parse(t)}function di(t){return t||""+Math.floor(1e9*Math.random())}function vi(t){return t=t||ri(),"Safari"!=ei(t)&&!t.toLowerCase().match(/iphone|ipad|ipod/)}function mi(){var t=uu.___jsl;if(t&&t.H)for(var n in t.H)if(t.H[n].r=t.H[n].r||[],t.H[n].L=t.H[n].L||[],t.H[n].r=t.H[n].L.concat(),t.CP)for(var e=0;e<t.CP.length;e++)t.CP[e]=null}function gi(){var t=uu.navigator;return!t||"boolean"!=typeof t.onLine||!ui()&&"chrome-extension:"!==ci()&&void 0===t.connection||t.onLine}function bi(t,n,e,i){if(t>n)throw Error("Short delay should be less than long delay!");this.c=t,this.b=n,t=e||ri(),i=i||ti(),this.a=We(t)||"ReactNative"===i}function wi(){var t=uu.document;return!t||void 0===t.visibilityState||"visible"==t.visibilityState}function yi(){var t=uu.document,n=null;return wi()||!t?nt():new Z(function(e){n=function(){wi()&&(t.removeEventListener("visibilitychange",n,!1),e())},t.addEventListener("visibilitychange",n,!1)}).s(function(e){throw t.removeEventListener("visibilitychange",n,!1),e})}function Ii(t){try{var n=new Date(parseInt(t,10));if(!isNaN(n.getTime())&&!/[^0-9]/.test(t))return n.toUTCString()}catch(t){}return null}function Ti(t,n,e){ih?Object.defineProperty(t,n,{configurable:!0,enumerable:!0,value:e}):t[n]=e}function ki(t,n){if(n)for(var e in n)n.hasOwnProperty(e)&&Ti(t,e,n[e])}function Ai(t){var n={};return ki(n,t),n}function Ei(t){var n,e={};for(n in t)t.hasOwnProperty(n)&&(e[n]=t[n]);return e}function Ni(t,n){if(!n||!n.length)return!0;if(!t)return!1;for(var e=0;e<n.length;e++){var i=t[n[e]];if(void 0===i||null===i||""===i)return!1}return!0}function Si(t){var n=t;if("object"==typeof t&&null!=t){n="length"in t?[]:{};for(var e in t)Ti(n,e,Si(t[e]))}return n}function Oi(t){var n={},e=t[ah],i=t[sh];if(t=t[uh],!e||!t)throw Error("Invalid provider user info!");n[hh]=i||null,n[ch]=e,Ti(this,lh,t),Ti(this,fh,Si(n))}function Pi(t,n){this.code=ph+t,this.message=n||dh[t]||""}function Ci(t){var n=t&&t.code;return n?new Pi(n.substring(ph.length),t.message):null}function _i(t){var n=t[bh];if(void 0===n)throw new Pi("missing-continue-uri");if("string"!=typeof n||"string"==typeof n&&!n.length)throw new Pi("invalid-continue-uri");this.h=n,this.c=this.a=null,this.g=!1;var e=t[vh];if(e&&"object"==typeof e){n=e[Ih];var i=e[wh];if(e=e[yh],"string"==typeof n&&n.length){if(this.a=n,void 0!==i&&"boolean"!=typeof i)throw new Pi("argument-error",wh+" property must be a boolean when specified.");if(this.g=!!i,void 0!==e&&("string"!=typeof e||"string"==typeof e&&!e.length))throw new Pi("argument-error",yh+" property must be a non empty string when specified.");this.c=e||null}else{if(void 0!==n)throw new Pi("argument-error",Ih+" property must be a non empty string when specified.");if(void 0!==i||void 0!==e)throw new Pi("missing-android-pkg-name")}}else if(void 0!==e)throw new Pi("argument-error",vh+" property must be a non null object when specified.");if(this.b=null,(n=t[gh])&&"object"==typeof n){if("string"==typeof(n=n[Th])&&n.length)this.b=n;else if(void 0!==n)throw new Pi("argument-error",Th+" property must be a non empty string when specified.")}else if(void 0!==n)throw new Pi("argument-error",gh+" property must be a non null object when specified.");if(void 0!==(t=t[mh])&&"boolean"!=typeof t)throw new Pi("argument-error",mh+" property must be a boolean when specified.");if((this.f=!!t)&&!this.b&&!this.a)throw new Pi("argument-error",mh+" property can't be true when no mobile application is provided.")}function Ri(t){var n={};n.continueUrl=t.h,n.canHandleCodeInApp=t.f,(n.androidPackageName=t.a)&&(n.androidMinimumVersion=t.c,n.androidInstallApp=t.g),n.iOSBundleId=t.b;for(var e in n)null===n[e]&&delete n[e];return n}function Di(t){this.b=t.sub,fu(),this.a=t.provider_id||t.firebase&&t.firebase.sign_in_provider||null}function Li(t){if(t=t.split("."),3!=t.length)return null;t=t[1];for(var n=(4-t.length%4)%4,e=0;e<n;e++)t+=".";try{var i=JSON.parse(On(t));if(i.sub&&i.iss&&i.aud&&i.exp)return new Di(i)}catch(t){}return null}function xi(t){for(var n in Eh)if(Eh[n].Na==t)return Eh[n];return null}function ji(t){var n={};n["facebook.com"]=Vi,n["google.com"]=Ki,n["github.com"]=Fi,n["twitter.com"]=qi;var e=t&&t[Sh];try{if(e)return n[e]?new n[e](t):new Mi(t);if(void 0!==t[Nh])return new Ui(t)}catch(t){}return null}function Ui(t){var n=t[Sh];if(!n&&t[Nh]){var e=Li(t[Nh]);e&&e.a&&(n=e.a)}if(!n)throw Error("Invalid additional user info!");t=!!t.isNewUser,Ti(this,"providerId",n),Ti(this,"isNewUser",t)}function Mi(t){Ui.call(this,t),t=pi(t.rawUserInfo||"{}"),Ti(this,"profile",Si(t||{}))}function Vi(t){if(Mi.call(this,t),"facebook.com"!=this.providerId)throw Error("Invalid provider ID!")}function Fi(t){if(Mi.call(this,t),"github.com"!=this.providerId)throw Error("Invalid provider ID!");Ti(this,"username",this.profile&&this.profile.login||null)}function Ki(t){if(Mi.call(this,t),"google.com"!=this.providerId)throw Error("Invalid provider ID!")}function qi(t){if(Mi.call(this,t),"twitter.com"!=this.providerId)throw Error("Invalid provider ID!");Ti(this,"username",t.screenName||null)}function Xi(t,n){return t.then(function(t){if(t[Ph]){var e=Li(t[Ph]);if(!e||n!=e.b)throw new Pi("user-mismatch");return t}throw new Pi("user-mismatch")}).s(function(t){throw t&&t.code&&t.code==ph+"user-not-found"?new Pi("user-mismatch"):t})}function Bi(t,n){if(n.idToken||n.accessToken)n.idToken&&Ti(this,"idToken",n.idToken),n.accessToken&&Ti(this,"accessToken",n.accessToken);else{if(!n.oauthToken||!n.oauthTokenSecret)throw new Pi("internal-error","failed to construct a credential");Ti(this,"accessToken",n.oauthToken),Ti(this,"secret",n.oauthTokenSecret)}Ti(this,"providerId",t)}function Hi(t){var n={};return t.idToken&&(n.id_token=t.idToken),t.accessToken&&(n.access_token=t.accessToken),t.secret&&(n.oauth_token_secret=t.secret),n.providerId=t.providerId,{postBody:""+ce(n),requestUri:"http://localhost"}}function Wi(t,n){this.nc=n||[],ki(this,{providerId:t,isOAuthProvider:!0}),this.qb={},this.Wa=(xi(t)||{}).Ma||null,this.Ua=null}function Gi(t){Wi.call(this,t,Ah),this.a=[]}function zi(){Gi.call(this,"facebook.com")}function Ji(t){if(!t)throw new Pi("argument-error","credential failed: expected 1 argument (the OAuth access token).");var n=t;return c(t)&&(n=t.accessToken),(new zi).credential(null,n)}function Yi(){Gi.call(this,"github.com")}function $i(t){if(!t)throw new Pi("argument-error","credential failed: expected 1 argument (the OAuth access token).");var n=t;return c(t)&&(n=t.accessToken),(new Yi).credential(null,n)}function Zi(){Gi.call(this,"google.com"),this.sa("profile")}function Qi(t,n){var e=t;return c(t)&&(e=t.idToken,n=t.accessToken),(new Zi).credential(e,n)}function tr(){Wi.call(this,"twitter.com",kh)}function nr(t,n){var e=t;if(c(e)||(e={oauthToken:t,oauthTokenSecret:n}),!e.oauthToken||!e.oauthTokenSecret)throw new Pi("argument-error","credential failed: expected 2 arguments (the OAuth access token and secret).");return new Bi("twitter.com",e)}function er(t,n){this.a=t,this.f=n,Ti(this,"providerId","password")}function ir(){ki(this,{providerId:"password",isOAuthProvider:!1})}function rr(t){if(!(t.Pa&&t.Oa||t.Da&&t.Y))throw new Pi("internal-error");this.a=t,Ti(this,"providerId","phone")}function or(t){return t.a.Da&&t.a.Y?{temporaryProof:t.a.Da,phoneNumber:t.a.Y}:{sessionInfo:t.a.Pa,code:t.a.Oa}}function ar(t){try{this.a=t||au.auth()}catch(t){throw new Pi("argument-error","Either an instance of firebase.auth.Auth must be passed as an argument to the firebase.auth.PhoneAuthProvider constructor, or the default firebase App instance must be initialized via firebase.initializeApp().")}ki(this,{providerId:"phone",isOAuthProvider:!1})}function sr(t,n){if(!t)throw new Pi("missing-verification-id");if(!n)throw new Pi("missing-verification-code");return new rr({Pa:t,Oa:n})}function ur(t){if(t.temporaryProof&&t.phoneNumber)return new rr({Da:t.temporaryProof,Y:t.phoneNumber});var n=t&&t.providerId;if(!n||"password"===n)return null;var e=t&&t.oauthAccessToken,i=t&&t.oauthTokenSecret;t=t&&t.oauthIdToken;try{switch(n){case"google.com":return Qi(t,e);case"facebook.com":return Ji(e);case"github.com":return $i(e);case"twitter.com":return nr(e,i);default:return new Gi(n).credential(t,e)}}catch(t){return null}}function cr(t){if(!t.isOAuthProvider)throw new Pi("invalid-oauth-provider")}function hr(t,n,e,i,r){if(this.b=t,this.c=n||null,this.f=e||null,this.g=i||null,this.a=r||null,!this.f&&!this.a)throw new Pi("invalid-auth-event");if(this.f&&this.a)throw new Pi("invalid-auth-event");if(this.f&&!this.g)throw new Pi("invalid-auth-event")}function fr(t){return t=t||{},t.type?new hr(t.type,t.eventId,t.urlResponse,t.sessionId,t.error&&Ci(t.error)):null}function lr(t){var n="unauthorized-domain",e=void 0,i=ee(t);t=i.b,i=i.c,"chrome-extension"==i?e=m("This chrome extension ID (chrome-extension://%s) is not authorized to run this operation. Add it to the OAuth redirect domains list in the Firebase console -> Auth section -> Sign in method tab.",t):"http"==i||"https"==i?e=m("This domain (%s) is not authorized to run this operation. Add it to the OAuth redirect domains list in the Firebase console -> Auth section -> Sign in method tab.",t):n="operation-not-supported-in-this-environment",Pi.call(this,n,e)}function pr(t,n,e){Pi.call(this,t,e),t=n||{},t.rb&&Ti(this,"email",t.rb),t.Y&&Ti(this,"phoneNumber",t.Y),t.credential&&Ti(this,"credential",t.credential)}function dr(t){if(t.code){var n=t.code||"";0==n.indexOf(ph)&&(n=n.substring(ph.length));var e={credential:ur(t)};if(t.email)e.rb=t.email;else{if(!t.phoneNumber)return new Pi(n,t.message||void 0);e.Y=t.phoneNumber}return new pr(n,e,t.message)}return null}function vr(t){this.f=t}function mr(t,n,e){var i="Node"==ti();if(!(i=uu.XMLHttpRequest||i&&au.INTERNAL.node&&au.INTERNAL.node.XMLHttpRequest))throw new Pi("internal-error","The XMLHttpRequest compatibility library was not found.");this.b=t,t=n||{},this.i=t.secureTokenEndpoint||"https://securetoken.googleapis.com/v1/token",this.l=t.secureTokenTimeout||Ch,this.c=x(t.secureTokenHeaders||_h),this.g=t.firebaseEndpoint||"https://www.googleapis.com/identitytoolkit/v3/relyingparty/",this.h=t.firebaseTimeout||Rh,this.a=x(t.firebaseHeaders||Dh),e&&(this.a["X-Client-Version"]=e,this.c["X-Client-Version"]=e),this.f=new Me,this.o=new vr(i)}function gr(t,n){n?t.a["X-Firebase-Locale"]=n:delete t.a["X-Firebase-Locale"]}function br(t,n){n?(t.a["X-Client-Version"]=n,t.c["X-Client-Version"]=n):(delete t.a["X-Client-Version"],delete t.c["X-Client-Version"])}function wr(t,n,e,i,r,o,a){gi()?(He()?t=l(t.m,t):(Oh||(Oh=new Z(function(t,n){yr(t,n)})),t=l(t.u,t)),t(n,e,i,r,o,a)):e&&e(null)}function yr(t,n){((window.gapi||{}).client||{}).request?t():(uu[xh]=function(){((window.gapi||{}).client||{}).request?t():n(Error("CORS_UNSUPPORTED"))},Ln(De(At(Lh,{onload:xh})),function(){n(Error("CORS_UNSUPPORTED"))}))}function Ir(t,n){return new Z(function(e,i){"refresh_token"==n.grant_type&&n.refresh_token||"authorization_code"==n.grant_type&&n.code?wr(t,t.i+"?key="+encodeURIComponent(t.b),function(t){t?t.error?i(Vr(t)):t.access_token&&t.refresh_token?e(t):i(new Pi("internal-error")):i(new Pi("network-request-failed"))},"POST",""+ce(n),t.c,t.l.get()):i(new Pi("internal-error"))})}function Tr(t,n,e,i,r,o){var a=ee(t.g+n);te(a,"key",t.b),o&&te(a,"cb",""+fu());var s="GET"==e;if(s)for(var u in i)i.hasOwnProperty(u)&&te(a,u,i[u]);return new Z(function(n,o){wr(t,""+a,function(t){t?t.error?o(Vr(t,r||{})):n(t):o(new Pi("network-request-failed"))},e,s?void 0:Mt(li(i)),t.a,t.h.get())})}function kr(t){if(!Yc.test(t.email))throw new Pi("invalid-email")}function Ar(t){"email"in t&&kr(t)}function Er(t,n){return Ur(t,Kh,{identifier:n,continueUri:ui()?qe():"http://localhost"}).then(function(t){return t.allProviders||[]})}function Nr(t){return Ur(t,Gh,{}).then(function(t){return t.authorizedDomains||[]})}function Sr(t){if(!t[Ph])throw new Pi("internal-error")}function Or(t){if(t.phoneNumber||t.temporaryProof){if(!t.phoneNumber||!t.temporaryProof)throw new Pi("internal-error")}else{if(!t.sessionInfo)throw new Pi("missing-verification-id");if(!t.code)throw new Pi("missing-verification-code")}}function Pr(t,n){return Ur(t,Yh,n)}function Cr(t,n,e){return Ur(t,Xh,{idToken:n,deleteProvider:e})}function _r(t){if(!t.requestUri||!t.sessionId&&!t.postBody)throw new Pi("internal-error")}function Rr(t){var n=null;if(t.needConfirmation?(t.code="account-exists-with-different-credential",n=dr(t)):"FEDERATED_USER_ID_ALREADY_LINKED"==t.errorMessage?(t.code="credential-already-in-use",n=dr(t)):"EMAIL_EXISTS"==t.errorMessage?(t.code="email-already-in-use",n=dr(t)):t.errorMessage&&(n=Mr(t.errorMessage)),n)throw n;if(!t[Ph])throw new Pi("internal-error")}function Dr(t,n){return n.returnIdpCredential=!0,Ur(t,tf,n)}function Lr(t,n){return n.returnIdpCredential=!0,Ur(t,ef,n)}function xr(t,n){return n.returnIdpCredential=!0,n.autoCreate=!1,Ur(t,nf,n)}function jr(t){if(!t.oobCode)throw new Pi("invalid-action-code")}function Ur(t,n,e){if(!Ni(e,n.ea))return et(new Pi("internal-error"));var i,r=n.yb||"POST";return nt(e).then(n.D).then(function(){return n.T&&(e.returnSecureToken=!0),Tr(t,n.endpoint,r,e,n.Lb,n.nb||!1)}).then(function(t){return i=t}).then(n.O).then(function(){if(!n.ga)return i;if(!(n.ga in i))throw new Pi("internal-error");return i[n.ga]})}function Mr(t){return Vr({error:{errors:[{message:t}],code:400,message:t}})}function Vr(t,n){var e=(t.error&&t.error.errors&&t.error.errors[0]||{}).reason||"",i={keyInvalid:"invalid-api-key",ipRefererBlocked:"app-not-authorized"};if(e=i[e]?new Pi(i[e]):null)return e;e=t.error&&t.error.message||"",i={INVALID_CUSTOM_TOKEN:"invalid-custom-token",CREDENTIAL_MISMATCH:"custom-token-mismatch",MISSING_CUSTOM_TOKEN:"internal-error",INVALID_IDENTIFIER:"invalid-email",MISSING_CONTINUE_URI:"internal-error",INVALID_EMAIL:"invalid-email",INVALID_PASSWORD:"wrong-password",USER_DISABLED:"user-disabled",MISSING_PASSWORD:"internal-error",EMAIL_EXISTS:"email-already-in-use",PASSWORD_LOGIN_DISABLED:"operation-not-allowed",INVALID_IDP_RESPONSE:"invalid-credential",FEDERATED_USER_ID_ALREADY_LINKED:"credential-already-in-use",INVALID_MESSAGE_PAYLOAD:"invalid-message-payload",INVALID_RECIPIENT_EMAIL:"invalid-recipient-email",INVALID_SENDER:"invalid-sender",EMAIL_NOT_FOUND:"user-not-found",EXPIRED_OOB_CODE:"expired-action-code",INVALID_OOB_CODE:"invalid-action-code",MISSING_OOB_CODE:"internal-error",CREDENTIAL_TOO_OLD_LOGIN_AGAIN:"requires-recent-login",INVALID_ID_TOKEN:"invalid-user-token",TOKEN_EXPIRED:"user-token-expired",USER_NOT_FOUND:"user-token-expired",CORS_UNSUPPORTED:"cors-unsupported",DYNAMIC_LINK_NOT_ACTIVATED:"dynamic-link-not-activated",INVALID_APP_ID:"invalid-app-id",TOO_MANY_ATTEMPTS_TRY_LATER:"too-many-requests",WEAK_PASSWORD:"weak-password",OPERATION_NOT_ALLOWED:"operation-not-allowed",USER_CANCELLED:"user-cancelled",CAPTCHA_CHECK_FAILED:"captcha-check-failed",INVALID_APP_CREDENTIAL:"invalid-app-credential",INVALID_CODE:"invalid-verification-code",INVALID_PHONE_NUMBER:"invalid-phone-number",INVALID_SESSION_INFO:"invalid-verification-id",INVALID_TEMPORARY_PROOF:"invalid-credential",MISSING_APP_CREDENTIAL:"missing-app-credential",MISSING_CODE:"missing-verification-code",MISSING_PHONE_NUMBER:"missing-phone-number",MISSING_SESSION_INFO:"missing-verification-id",QUOTA_EXCEEDED:"quota-exceeded",SESSION_EXPIRED:"code-expired",INVALID_CONTINUE_URI:"invalid-continue-uri",MISSING_ANDROID_PACKAGE_NAME:"missing-android-pkg-name",MISSING_IOS_BUNDLE_ID:"missing-ios-bundle-id",UNAUTHORIZED_DOMAIN:"unauthorized-continue-uri",INVALID_OAUTH_CLIENT_ID:"invalid-oauth-client-id",INVALID_CERT_HASH:"invalid-cert-hash"},j(i,n||{}),n=(n=e.match(/^[^\s]+\s*:\s*(.*)$/))&&1<n.length?n[1]:void 0;for(var r in i)if(0===e.indexOf(r))return new Pi(i[r],n);return!n&&t&&(n=fi(t)),new Pi("internal-error",n)}function Fr(t){for(var n in cf)if(cf[n].id===t)return t=cf[n],{firebaseEndpoint:t.Va,secureTokenEndpoint:t.ab};return null}function Kr(t){this.b=t,this.a=null,this.Ya=qr(this)}function qr(t){return Hr().then(function(){return new Z(function(n,e){oi("gapi.iframes.getContext")().open({where:document.body,url:t.b,messageHandlersFilter:oi("gapi.iframes.CROSS_ORIGIN_IFRAMES_FILTER"),attributes:{style:{position:"absolute",top:"-100px",width:"1px",height:"1px"}},dontclear:!0},function(i){function r(){clearTimeout(o),n()}t.a=i,t.a.restyle({setHideOnLeave:!1});var o=setTimeout(function(){e(Error("Network Error"))},lf.get());i.ping(r).then(r,function(){e(Error("Network Error"))})})})})}function Xr(t,n){return t.Ya.then(function(){return new Z(function(e){t.a.send(n.type,n,e,oi("gapi.iframes.CROSS_ORIGIN_IFRAMES_FILTER"))})})}function Br(t,n){t.Ya.then(function(){t.a.register("authEvent",n,oi("gapi.iframes.CROSS_ORIGIN_IFRAMES_FILTER"))})}function Hr(){return pf||(pf=new Z(function(t,n){if(gi()){var e=function(){mi(),oi("gapi.load")("gapi.iframes",{callback:t,ontimeout:function(){mi(),n(Error("Network Error"))},timeout:ff.get()})};if(oi("gapi.iframes.Iframe"))t();else if(oi("gapi.load"))e();else{var i="__iframefcb"+Math.floor(1e6*Math.random());uu[i]=function(){oi("gapi.load")?e():n(Error("Network Error"))},i=At(hf,{onload:i}),nt(De(i)).s(function(){n(Error("Network Error"))})}}else n(Error("Network Error"))}).s(function(t){throw pf=null,t}))}function Wr(t,n,e){this.i=t,this.g=n,this.h=e,this.f=null,this.a=ie(this.i,"/__/auth/iframe"),te(this.a,"apiKey",this.g),te(this.a,"appName",this.h),this.b=null,this.c=[]}function Gr(t,n,e,i,r){this.m=t,this.u=n,this.c=e,this.l=i,this.i=this.g=this.h=null,this.a=r,this.f=null}function zr(t){try{return au.app(t).auth().Ka()}catch(t){return[]}}function Jr(t,n,e,i,r){this.u=t,this.f=n,this.b=e,this.c=i||null,this.h=r||null,this.m=this.o=this.v=null,this.g=[],this.l=this.a=null}function Yr(t){var n=qe();return Nr(t).then(function(t){t:{var e=ee(n),i=e.c;e=e.b;for(var r=0;r<t.length;r++){var o=t[r],a=e,s=i;if(0==o.indexOf("chrome-extension://")?a=ee(o).b==a&&"chrome-extension"==s:"http"!=s&&"https"!=s?a=!1:Qc.test(o)?a=a==o:(o=o.split(".").join("\\."),a=RegExp("^(.+\\."+o+"|"+o+")$","i").test(a)),a){t=!0;break t}}t=!1}if(!t)throw new lr(qe())})}function $r(t){return t.l?t.l:(t.l=Ye().then(function(){if(!t.o){var n=t.c,e=t.h,i=zr(t.b),r=new Wr(t.u,t.f,t.b);r.f=n,r.b=e,r.c=O(i||[]),t.o=""+r}t.i=new Kr(t.o),to(t)}),t.l)}function Zr(t){return t.m||(t.v=t.c?ii(t.c,zr(t.b)):null,t.m=new mr(t.f,Fr(t.h),t.v)),t.m}function Qr(t,n,e,i,r,o,a,s,u,c){return t=new Gr(t,n,e,i,r),t.h=o,t.g=a,t.i=s,t.b=x(u||null),t.f=c,""+t}function to(t){if(!t.i)throw Error("IfcHandler must be initialized!");Br(t.i,function(n){var e={};if(n&&n.authEvent){var i=!1;for(n=fr(n.authEvent),e=0;e<t.g.length;e++)i=t.g[e](n)||i;return e={},e.status=i?"ACK":"ERROR",nt(e)}return e.status="ERROR",nt(e)})}function no(t){var n={type:"webStorageSupport"};return $r(t).then(function(){return Xr(t.i,n)}).then(function(t){if(t&&t.length&&void 0!==t[0].webStorageSupport)return t[0].webStorageSupport;throw Error()})}function eo(t){if(this.a=t||au.INTERNAL.reactNative&&au.INTERNAL.reactNative.AsyncStorage,!this.a)throw new Pi("internal-error","The React Native compatibility library was not found.")}function io(){this.a={}}function ro(t,n,e,i,r,o){try{var a=!!uu.indexedDB}catch(t){a=!1}if(!a)throw new Pi("web-storage-unsupported");this.u=t,this.h=n,this.g=e,this.l=i,this.m=r,this.f={},this.c=[],this.a=0,this.o=o||uu.indexedDB}function oo(t){return new Z(function(n,e){var i=t.o.open(t.u,t.m);i.onerror=function(t){e(Error(t.target.errorCode))},i.onupgradeneeded=function(n){n=n.target.result;try{n.createObjectStore(t.h,{keyPath:t.g})}catch(t){e(t)}},i.onsuccess=function(t){n(t.target.result)}})}function ao(t){return t.i||(t.i=oo(t)),t.i}function so(t,n){return n.objectStore(t.h)}function uo(t,n,e){return n.transaction([t.h],e?"readwrite":"readonly")}function co(t){return new Z(function(n,e){t.onsuccess=function(t){t&&t.target?n(t.target.result):n()},t.onerror=function(t){e(Error(t.target.errorCode))}})}function ho(t){function n(){return t.b=gn(800).then(l(t.vc,t)).then(function(n){0<n.length&&Tu(t.c,function(t){t(n)})}).then(n).s(function(t){"STOP_EVENT"!=t.message&&n()}),t.b}t.b&&t.b.cancel("STOP_EVENT"),n()}function fo(){if(!po()){if("Node"==ti())throw new Pi("internal-error","The LocalStorage compatibility library was not found.");throw new Pi("web-storage-unsupported")}this.a=lo()||au.INTERNAL.node.localStorage}function lo(){try{var t=uu.localStorage,n=di();return t&&(t.setItem(n,"1"),t.removeItem(n)),t}catch(t){return null}}function po(){var t="Node"==ti();if(!(t=lo()||t&&au.INTERNAL.node&&au.INTERNAL.node.localStorage))return!1;try{return t.setItem("__sak","1"),t.removeItem("__sak"),!0}catch(t){return!1}}function vo(){}function mo(){if(!bo()){if("Node"==ti())throw new Pi("internal-error","The SessionStorage compatibility library was not found.");throw new Pi("web-storage-unsupported")}this.a=go()||au.INTERNAL.node.sessionStorage}function go(){try{var t=uu.sessionStorage,n=di();return t&&(t.setItem(n,"1"),t.removeItem(n)),t}catch(t){return null}}function bo(){var t="Node"==ti();if(!(t=go()||t&&au.INTERNAL.node&&au.INTERNAL.node.sessionStorage))return!1;try{return t.setItem("__sak","1"),t.removeItem("__sak"),!0}catch(t){return!1}}function wo(){var t={};t.Browser=gf,t.Node=bf,t.ReactNative=wf,this.a=t[ti()]}function yo(t){var n=new Pi("invalid-persistence-type"),e=new Pi("unsupported-persistence-type");t:{for(i in yf)if(yf[i]==t){var i=!0;break t}i=!1}if(!i||"string"!=typeof t)throw n;switch(ti()){case"ReactNative":if("session"===t)throw e;break;case"Node":if("none"!==t)throw e;break;default:if(!ai()&&"none"!==t)throw e}}function Io(t,n,e,i,r){this.i=t,this.g=n,this.A=e,this.u=i,this.v=r,this.a={},vf||(vf=new wo),t=vf;try{if(Ke()){df||(df=new ro("firebaseLocalStorageDb","firebaseLocalStorage","fbase_key","value",1));var o=df}else o=new t.a.C;this.l=o}catch(t){this.l=new io,this.u=!0}try{this.o=new t.a.jb}catch(t){this.o=new io}this.w=new io,this.h=l(this.m,this),this.b={}}function To(){return mf||(mf=new Io("firebase",":",!(vi(ri())||!Qe()),hi(),ai())),mf}function ko(t,n){switch(n){case"session":return t.o;case"none":return t.w;default:return t.l}}function Ao(t,n,e){return t.i+t.g+n.name+(e?t.g+e:"")}function Eo(t,n,e){return e=Ao(t,n,e),"local"==n.C&&(t.b[e]=null),ko(t,n.C).X(e)}function No(t,n,e,i){n=Ao(t,n,e),t.v&&(t.b[n]=uu.localStorage.getItem(n)),D(t.a)&&(ko(t,"local").ia(t.h),t.u||Ke()||!t.v||Oo(t)),t.a[n]||(t.a[n]=[]),t.a[n].push(i)}function So(t,n,e){n=Ao(t,cs("local"),n),t.a[n]&&(N(t.a[n],function(t){return t==e}),0==t.a[n].length&&delete t.a[n]),D(t.a)&&Co(t)}function Oo(t){Po(t),t.f=setInterval(function(){for(var n in t.a){var e=uu.localStorage.getItem(n),i=t.b[n];e!=i&&(t.b[n]=e,e=new Ht({type:"storage",key:n,target:window,oldValue:i,newValue:e,a:!0}),t.m(e))}},1e3)}function Po(t){t.f&&(clearInterval(t.f),t.f=null)}function Co(t){ko(t,"local").da(t.h),Po(t)}function _o(t){this.a=t,this.b=To()}function Ro(t){return t.b.get(If,t.a).then(function(t){return fr(t)})}function Do(){this.a=To()}function Lo(t,n,e,i,r,o,a){this.u=t,this.i=n,this.l=e,this.m=i||null,this.o=a||null,this.h=n+":"+e,this.A=new Do,this.g=new _o(this.h),this.f=null,this.b=[],this.v=r||500,this.w=o||2e3,this.a=this.c=null}function xo(t){return new Pi("invalid-cordova-configuration",t)}function jo(){for(var t=20,n=[];0<t;)n.push("1234567890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ".charAt(Math.floor(62*Math.random()))),t--;return n.join("")}function Uo(t){var n=new Hn;Bn(n,t),t=[];var e=8*n.g;56>n.c?Bn(n,xc,56-n.c):Bn(n,xc,n.b-(n.c-56));for(var i=63;56<=i;i--)n.f[i]=255&e,e/=256;for(Xn(n),i=e=0;i<n.i;i++)for(var r=24;0<=r;r-=8)t[e++]=n.a[i]>>r&255;return Sn(t)}function Mo(t,n,e,i){var r=jo(),o=new hr(n,i,null,r,new Pi("no-auth-event")),a=oi("BuildInfo.packageName",uu);if("string"!=typeof a)throw new Pi("invalid-cordova-configuration");var s=oi("BuildInfo.displayName",uu),u={};if(ri().toLowerCase().match(/iphone|ipad|ipod/))u.ibi=a;else{if(!ri().toLowerCase().match(/android/))return et(new Pi("operation-not-supported-in-this-environment"));u.apn=a}s&&(u.appDisplayName=s),r=Uo(r),u.sessionId=r;var c=Qr(t.u,t.i,t.l,n,e,null,i,t.m,u,t.o);return t.ba().then(function(){var n=t.h;return t.A.a.set(If,o.B(),n)}).then(function(){var n=oi("cordova.plugins.browsertab.isAvailable",uu);if("function"!=typeof n)throw new Pi("invalid-cordova-configuration");var e=null;n(function(n){if(n){if("function"!=typeof(e=oi("cordova.plugins.browsertab.openUrl",uu)))throw new Pi("invalid-cordova-configuration");e(c)}else{if("function"!=typeof(e=oi("cordova.InAppBrowser.open",uu)))throw new Pi("invalid-cordova-configuration");n=ri(),n=!(!n.match(/(iPad|iPhone|iPod).*OS 7_\d/i)&&!n.match(/(iPad|iPhone|iPod).*OS 8_\d/i)),t.a=e(c,n?"_blank":"_system","location=yes")}})})}function Vo(t,n){for(var e=0;e<t.b.length;e++)try{t.b[e](n)}catch(t){}}function Fo(t){return t.f||(t.f=t.ba().then(function(){return new Z(function(n){function e(i){return n(i),t.Ja(e),!1}t.ua(e),qo(t)})})),t.f}function Ko(t){var n=null;return Ro(t.g).then(function(e){return n=e,e=t.g,Eo(e.b,If,e.a)}).then(function(){return n})}function qo(t){function n(n){r=!0,o&&o.cancel(),Ko(t).then(function(e){var r=i;if(e&&n&&n.url){r=null;var o=n.url,a=ee(o),s=ne(a,"link"),u=ne(ee(s),"link");a=ne(a,"deep_link_id"),o=ne(ee(a),"link")||a||u||s||o,-1!=o.indexOf("/__/auth/callback")&&(r=ee(o),r=pi(ne(r,"firebaseError")||null),r=(r="object"==typeof r?Ci(r):null)?new hr(e.b,e.c,null,null,r):new hr(e.b,e.c,o,e.g)),r=r||i}Vo(t,r)})}var e=oi("universalLinks.subscribe",uu);if("function"!=typeof e)throw new Pi("invalid-cordova-configuration");var i=new hr("unknown",null,null,null,new Pi("no-auth-event")),r=!1,o=gn(t.v).then(function(){return Ko(t).then(function(){r||Vo(t,i)})}),a=uu.handleOpenURL;uu.handleOpenURL=function(t){if(0==t.toLowerCase().indexOf(oi("BuildInfo.packageName",uu).toLowerCase()+"://")&&n({url:t}),"function"==typeof a)try{a(t)}catch(t){console.error(t)}},e(null,n)}function Xo(t){this.a=t,this.b=To()}function Bo(t){return t.b.set(Tf,"pending",t.a)}function Ho(t){return Eo(t.b,Tf,t.a)}function Wo(t){return t.b.get(Tf,t.a).then(function(t){return"pending"==t})}function Go(t,n,e){this.v=t,this.l=n,this.u=e,this.h=[],this.f=!1,this.i=l(this.m,this),this.c=new ta,this.o=new sa,this.g=new Xo(this.l+":"+this.u),this.b={},this.b.unknown=this.c,this.b.signInViaRedirect=this.c,this.b.linkViaRedirect=this.c,this.b.reauthViaRedirect=this.c,this.b.signInViaPopup=this.o,this.b.linkViaPopup=this.o,this.b.reauthViaPopup=this.o,this.a=zo(this.v,this.l,this.u,Uh)}function zo(t,n,e,i){var r=au.SDK_VERSION||null;return Ze()?new Lo(t,n,e,r,void 0,void 0,i):new Jr(t,n,e,r,i)}function Jo(t){t.f||(t.f=!0,t.a.ua(t.i));var n=t.a;return t.a.ba().s(function(e){throw t.a==n&&t.reset(),e})}function Yo(t){t.a.Cb()&&Jo(t).s(function(n){var e=new hr("unknown",null,null,null,new Pi("operation-not-supported-in-this-environment"));Zo(n)&&t.m(e)}),t.a.xb()||na(t.c)}function $o(t,n,e,i,r,o){return t.a.ub(n,e,i,function(){t.f||(t.f=!0,t.a.ua(t.i))},function(){t.reset()},r,o)}function Zo(t){return!(!t||"auth/cordova-not-ready"!=t.code)}function Qo(t,n,e){var i=n+":"+e;return Ef[i]||(Ef[i]=new Go(t,n,e)),Ef[i]}function ta(){this.b=null,this.f=[],this.c=[],this.a=null,this.g=!1}function na(t){t.g||(t.g=!0,oa(t,!1,null,null))}function ea(t,n,e){e=e.va(n.b,n.c);var i=n.f,r=n.g,o=!!n.b.match(/Redirect$/);return e(i,r).then(function(n){oa(t,o,n,null)}).s(function(n){oa(t,o,null,n)})}function ia(t,n){if(t.b=function(){return et(n)},t.c.length)for(var e=0;e<t.c.length;e++)t.c[e](n)}function ra(t,n){if(t.b=function(){return nt(n)},t.f.length)for(var e=0;e<t.f.length;e++)t.f[e](n)}function oa(t,n,e,i){n?i?ia(t,i):ra(t,e):ra(t,{user:null}),t.f=[],t.c=[]}function aa(t){var n=new Pi("timeout");t.a&&t.a.cancel(),t.a=gn(Af.get()).then(function(){t.b||oa(t,!0,null,n)})}function sa(){}function ua(t,n){var e=t.c,i=t.b;return n.va(i,e)(t.f,t.g).then(function(t){n.fa(i,t,null,e)}).s(function(t){n.fa(i,null,t,e)})}function ca(t,n){this.a=n,Ti(this,"verificationId",t)}function ha(t,n,e,i){return new ar(t).Qa(n,e).then(function(t){return new ca(t,i)})}function fa(t,n,e,i,r,o){if(this.h=t,this.i=n,this.g=e,this.c=i,this.f=r,this.l=!!o,this.b=null,this.a=this.c,this.f<this.c)throw Error("Proactive refresh lower bound greater than upper bound!")}function la(t,n){return n?(t.a=t.c,t.g()):(n=t.a,t.a*=2,t.a>t.f&&(t.a=t.f),n)}function pa(t,n){da(t),t.b=gn(la(t,n)).then(function(){return t.l?nt():yi()}).then(function(){return t.h()}).then(function(){pa(t,!0)}).s(function(n){t.i(n)&&pa(t,!1)})}function da(t){t.b&&(t.b.cancel(),t.b=null)}function va(t){this.f=t,this.b=this.a=null,this.c=0}function ma(t,n){var e=n[Ph],i=n.refreshToken;n=ga(n.expiresIn),t.b=e,t.c=n,t.a=i}function ga(t){return fu()+1e3*parseInt(t,10)}function ba(t,n){return Ir(t.f,n).then(function(n){return t.b=n.access_token,t.c=ga(n.expires_in),t.a=n.refresh_token,{accessToken:t.b,expirationTime:t.c,refreshToken:t.a}}).s(function(n){throw"auth/user-token-expired"==n.code&&(t.a=null),n})}function wa(t,n){this.a=t||null,this.b=n||null,ki(this,{lastSignInTime:Ii(n||null),creationTime:Ii(t||null)})}function ya(t){return new wa(t.a,t.b)}function Ia(t,n,e,i,r,o){ki(this,{uid:t,displayName:i||null,photoURL:r||null,email:e||null,phoneNumber:o||null,providerId:n})}function Ta(t,n){Bt.call(this,t);for(var e in n)this[e]=n[e]}function ka(t,n,e){this.A=[],this.G=t.apiKey,this.o=t.appName,this.w=t.authDomain||null,t=au.SDK_VERSION?ii(au.SDK_VERSION):null,this.c=new mr(this.G,Fr(Uh),t),this.h=new va(this.c),_a(this,n[Ph]),ma(this.h,n),Ti(this,"refreshToken",this.h.a),xa(this,e||{}),fn.call(this),this.I=!1,this.w&&si()&&(this.a=Qo(this.w,this.G,this.o)),this.N=[],this.i=null,this.l=Oa(this),this.U=l(this.Ga,this);var i=this;this.ha=null,this.ra=function(t){i.na(t.h)},this.W=null,this.R=[],this.qa=function(t){Ea(i,t.f)},this.V=null}function Aa(t,n){t.W&&en(t.W,"languageCodeChanged",t.ra),(t.W=n)&&Zt(n,"languageCodeChanged",t.ra)}function Ea(t,n){t.R=n,br(t.c,au.SDK_VERSION?ii(au.SDK_VERSION,t.R):null)}function Na(t,n){t.V&&en(t.V,"frameworkChanged",t.qa),(t.V=n)&&Zt(n,"frameworkChanged",t.qa)}function Sa(t){try{return au.app(t.o).auth()}catch(n){throw new Pi("internal-error","No firebase.auth.Auth instance is available for the Firebase App '"+t.o+"'!")}}function Oa(t){return new fa(function(){return t.F(!0)},function(t){return!(!t||"auth/network-request-failed"!=t.code)},function(){var n=t.h.c-fu()-3e5;return 0<n?n:0},3e4,96e4,!1)}function Pa(t){t.m||t.l.b||(t.l.start(),en(t,"tokenChanged",t.U),Zt(t,"tokenChanged",t.U))}function Ca(t){en(t,"tokenChanged",t.U),da(t.l)}function _a(t,n){t.pa=n,Ti(t,"_lat",n)}function Ra(t,n){N(t.N,function(t){return t==n})}function Da(t){for(var n=[],e=0;e<t.N.length;e++)n.push(t.N[e](t));return ot(n).then(function(){return t})}function La(t){t.a&&!t.I&&(t.I=!0,t.a.subscribe(t))}function xa(t,n){ki(t,{uid:n.uid,displayName:n.displayName||null,photoURL:n.photoURL||null,email:n.email||null,emailVerified:n.emailVerified||!1,phoneNumber:n.phoneNumber||null,isAnonymous:n.isAnonymous||!1,metadata:new wa(n.createdAt,n.lastLoginAt),providerData:[]})}function ja(){}function Ua(t){return nt().then(function(){if(t.m)throw new Pi("app-deleted")})}function Ma(t){return ku(t.providerData,function(t){return t.providerId})}function Va(t,n){n&&(Fa(t,n.providerId),t.providerData.push(n))}function Fa(t,n){N(t.providerData,function(t){return t.providerId==n})}function Ka(t,n,e){("uid"!=n||e)&&t.hasOwnProperty(n)&&Ti(t,n,e)}function qa(t,n){t!=n&&(ki(t,{uid:n.uid,displayName:n.displayName,photoURL:n.photoURL,email:n.email,emailVerified:n.emailVerified,phoneNumber:n.phoneNumber,isAnonymous:n.isAnonymous,providerData:[]}),n.metadata?Ti(t,"metadata",ya(n.metadata)):Ti(t,"metadata",new wa),Tu(n.providerData,function(n){Va(t,n)}),t.h=n.h,Ti(t,"refreshToken",t.h.a))}function Xa(t){return t.F().then(function(n){var e=t.isAnonymous;return Ha(t,n).then(function(){return e||Ka(t,"isAnonymous",!1),n})})}function Ba(t,n){n[Ph]&&t.pa!=n[Ph]&&(ma(t.h,n),ln(t,new Ta("tokenChanged")),_a(t,n[Ph]),Ka(t,"refreshToken",t.h.a))}function Ha(t,n){return Ur(t.c,Bh,{idToken:n}).then(l(t.gc,t))}function Wa(t){return(t=t.providerUserInfo)&&t.length?ku(t,function(t){return new Ia(t.rawId,t.providerId,t.email,t.displayName,t.photoUrl,t.phoneNumber)}):[]}function Ga(t,n){return Xa(t).then(function(){if(A(Ma(t),n))return Da(t).then(function(){throw new Pi("provider-already-linked")})})}function za(t,n,e){var i=ur(n);return n=ji(n),Ai({user:t,credential:i,additionalUserInfo:n,operationType:e})}function Ja(t,n){return Ba(t,n),t.reload().then(function(){return t})}function Ya(t,n,e,i,r){if(!si())return et(new Pi("operation-not-supported-in-this-environment"));if(t.i&&!r)return et(t.i);var o=xi(e.providerId),a=di(t.uid+":::"),s=null;(!hi()||Qe())&&t.w&&e.isOAuthProvider&&(s=Qr(t.w,t.G,t.o,n,e,null,a,au.SDK_VERSION||null));var u=ze(s,o&&o.za,o&&o.ya);return i=i().then(function(){if(Za(t),!r)return t.F().then(function(){})}).then(function(){return $o(t.a,u,n,e,a,!!s)}).then(function(){return new Z(function(e,i){t.fa(n,null,new Pi("cancelled-popup-request"),t.g||null),t.f=e,t.v=i,t.g=a,t.b=t.a.Ca(t,n,u,a)})}).then(function(t){return u&&Ge(u),t?Ai(t):null}).s(function(t){throw u&&Ge(u),t}),Qa(t,i,r)}function $a(t,n,e,i,r){if(!si())return et(new Pi("operation-not-supported-in-this-environment"));if(t.i&&!r)return et(t.i);var o=null,a=di(t.uid+":::");return i=i().then(function(){if(Za(t),!r)return t.F().then(function(){})}).then(function(){return t.Z=a,Da(t)}).then(function(n){return t.ca&&(n=t.ca,n=n.b.set(Nf,t.B(),n.a)),n}).then(function(){return t.a.Aa(n,e,a)}).s(function(n){if(o=n,t.ca)return rs(t.ca);throw o}).then(function(){if(o)throw o}),Qa(t,i,r)}function Za(t){if(!t.a||!t.I){if(t.a&&!t.I)throw new Pi("internal-error");throw new Pi("auth-domain-config-required")}}function Qa(t,n,e){var i=ts(t,n,e);return t.A.push(i),at(i,function(){E(t.A,i)}),i}function ts(t,n,e){return t.i&&!e?(n.cancel(),et(t.i)):n.s(function(n){throw!n||"auth/user-disabled"!=n.code&&"auth/user-token-expired"!=n.code||(t.i||ln(t,new Ta("userInvalidated")),t.i=n),n})}function ns(t){if(!t.apiKey)return null;var n={apiKey:t.apiKey,authDomain:t.authDomain,appName:t.appName},e={};if(!(t.stsTokenManager&&t.stsTokenManager.accessToken&&t.stsTokenManager.expirationTime))return null;e[Ph]=t.stsTokenManager.accessToken,e.refreshToken=t.stsTokenManager.refreshToken||null,e.expiresIn=(t.stsTokenManager.expirationTime-fu())/1e3;var i=new ka(n,e,t);return t.providerData&&Tu(t.providerData,function(t){t&&Va(i,Ai(t))}),t.redirectEventId&&(i.Z=t.redirectEventId),i}function es(t,n,e,i){var r=new ka(t,n);return e&&(r.ca=e),i&&Ea(r,i),r.reload().then(function(){return r})}function is(t){this.a=t,this.b=To()}function rs(t){return Eo(t.b,Nf,t.a)}function os(t,n){return t.b.get(Nf,t.a).then(function(t){return t&&n&&(t.authDomain=n),ns(t||{})})}function as(t,n){this.a=t,this.b=n||To(),this.c=null,this.f=us(this),No(this.b,cs("local"),this.a,l(this.g,this))}function ss(t,n){var e,i=[];for(e in yf)yf[e]!==n&&i.push(Eo(t.b,cs(yf[e]),t.a));return i.push(Eo(t.b,Sf,t.a)),rt(i)}function us(t){var n=cs("local"),e=cs("session"),i=cs("none");return t.b.get(e,t.a).then(function(r){return r?e:t.b.get(i,t.a).then(function(e){return e?i:t.b.get(n,t.a).then(function(e){return e?n:t.b.get(Sf,t.a).then(function(t){return t?cs(t):n})})})}).then(function(n){return t.c=n,ss(t,n.C)}).s(function(){t.c||(t.c=n)})}function cs(t){return{name:"authUser",C:t}}function hs(t){return ds(t,function(){return t.b.set(Sf,t.c.C,t.a)})}function fs(t,n){return ds(t,function(){return t.b.set(t.c,n.B(),t.a)})}function ls(t){return ds(t,function(){return Eo(t.b,t.c,t.a)})}function ps(t,n){return ds(t,function(){return t.b.get(t.c,t.a).then(function(t){return t&&n&&(t.authDomain=n),ns(t||{})})})}function ds(t,n){return t.f=t.f.then(n,n),t.f}function vs(t){if(this.l=!1,Ti(this,"app",t),!Ss(this).options||!Ss(this).options.apiKey)throw new Pi("invalid-api-key");t=au.SDK_VERSION?ii(au.SDK_VERSION):null,this.c=new mr(Ss(this).options&&Ss(this).options.apiKey,Fr(Uh),t),this.N=[],this.m=[],this.I=[],this.Gb=au.INTERNAL.createSubscribe(l(this.Xb,this)),this.R=void 0,this.Hb=au.INTERNAL.createSubscribe(l(this.Yb,this)),Ts(this,null),this.h=new as(Ss(this).options.apiKey+":"+Ss(this).name),this.G=new is(Ss(this).options.apiKey+":"+Ss(this).name),this.U=Rs(this,As(this)),this.i=Rs(this,Es(this)),this.W=!1,this.ha=l(this.uc,this),this.Ga=l(this.ka,this),this.pa=l(this.Pb,this),this.qa=l(this.Vb,this),this.ra=l(this.Wb,this),ys(this),this.INTERNAL={},this.INTERNAL.delete=l(this.delete,this),this.INTERNAL.logFramework=l(this.cc,this),this.o=0,fn.call(this),bs(this),this.A=[]}function ms(t){Bt.call(this,"languageCodeChanged"),this.h=t}function gs(t){Bt.call(this,"frameworkChanged"),this.f=t}function bs(t){Object.defineProperty(t,"lc",{get:function(){return this.$()},set:function(t){this.na(t)},enumerable:!1}),t.V=null}function ws(t){return t.Fb||et(new Pi("auth-domain-config-required"))}function ys(t){var n=Ss(t).options.authDomain,e=Ss(t).options.apiKey;n&&si()&&(t.Fb=t.U.then(function(){if(!t.l){if(t.a=Qo(n,e,Ss(t).name),t.a.subscribe(t),Os(t)&&La(Os(t)),t.w){La(t.w);var i=t.w;i.na(t.$()),Aa(i,t),i=t.w,Ea(i,t.A),Na(i,t),t.w=null}return t.a}}))}function Is(t,n){var e={};return e.apiKey=Ss(t).options.apiKey,e.authDomain=Ss(t).options.authDomain,e.appName=Ss(t).name,t.U.then(function(){return es(e,n,t.G,t.Ka())}).then(function(n){return Os(t)&&n.uid==Os(t).uid?(qa(Os(t),n),t.ka(n)):(Ts(t,n),La(n),t.ka(n))}).then(function(){Cs(t)})}function Ts(t,n){Os(t)&&(Ra(Os(t),t.Ga),en(Os(t),"tokenChanged",t.pa),en(Os(t),"userDeleted",t.qa),en(Os(t),"userInvalidated",t.ra),Ca(Os(t))),n&&(n.N.push(t.Ga),Zt(n,"tokenChanged",t.pa),Zt(n,"userDeleted",t.qa),Zt(n,"userInvalidated",t.ra),0<t.o&&Pa(n)),Ti(t,"currentUser",n),n&&(n.na(t.$()),Aa(n,t),Ea(n,t.A),Na(n,t))}function ks(t){var n=os(t.G,Ss(t).options.authDomain).then(function(n){return(t.w=n)&&(n.ca=t.G),rs(t.G)});return Rs(t,n)}function As(t){var n=Ss(t).options.authDomain,e=ks(t).then(function(){return ps(t.h,n)}).then(function(n){return n?(n.ca=t.G,t.w&&(t.w.Z||null)==(n.Z||null)?n:n.reload().then(function(){return fs(t.h,n).then(function(){return n})}).s(function(e){return"auth/network-request-failed"==e.code?n:ls(t.h)})):null}).then(function(n){Ts(t,n||null)});return Rs(t,e)}function Es(t){return t.U.then(function(){return t.aa()}).s(function(){}).then(function(){if(!t.l)return t.ha()}).s(function(){}).then(function(){if(!t.l){t.W=!0;var n=t.h;No(n.b,cs("local"),n.a,t.ha)}})}function Ns(t,n){var e=null,i=null;return Rs(t,n.then(function(n){return e=ur(n),i=ji(n),Is(t,n)}).then(function(){return Ai({user:Os(t),credential:e,additionalUserInfo:i,operationType:"signIn"})}))}function Ss(t){return t.app}function Os(t){return t.currentUser}function Ps(t){return Os(t)&&Os(t)._lat||null}function Cs(t){if(t.W){for(var n=0;n<t.m.length;n++)t.m[n]&&t.m[n](Ps(t));if(t.R!==t.getUid()&&t.I.length)for(t.R=t.getUid(),n=0;n<t.I.length;n++)t.I[n]&&t.I[n](Ps(t))}}function _s(t,n){t.I.push(n),Rs(t,t.i.then(function(){!t.l&&A(t.I,n)&&t.R!==t.getUid()&&(t.R=t.getUid(),n(Ps(t)))}))}function Rs(t,n){return t.N.push(n),at(n,function(){E(t.N,n)}),n}function Ds(t,n,e,i){t:{e=Array.prototype.slice.call(e);for(var r=0,o=!1,a=0;a<n.length;a++)if(n[a].optional)o=!0;else{if(o)throw new Pi("internal-error","Argument validator encountered a required argument after an optional argument.");r++}if(o=n.length,e.length<r||o<e.length)i="Expected "+(r==o?1==r?"1 argument":r+" arguments":r+"-"+o+" arguments")+" but got "+e.length+".";else{for(r=0;r<e.length;r++)if(o=n[r].optional&&void 0===e[r],!n[r].M(e[r])&&!o){if(n=n[r],0>r||r>=Of.length)throw new Pi("internal-error","Argument validator received an unsupported number of arguments.");e=Of[r],i=(i?"":e+" argument ")+(n.name?'"'+n.name+'" ':"")+"must be "+n.K+".";break t}i=null}}if(i)throw new Pi("argument-error",t+" failed: "+i)}function Ls(n,e){return{name:n||"",K:"a valid string",optional:!!e,M:t}}function xs(){return{name:"opt_forceRefresh",K:"a boolean",optional:!0,M:n}}function js(t,n){return{name:t||"",K:"a valid object",optional:!!n,M:c}}function Us(t,n){return{name:t||"",K:"a function",optional:!!n,M:u}}function Ms(t,n){return{name:t||"",K:"null",optional:!!n,M:o}}function Vs(){return{name:"",K:"an HTML element",optional:!1,M:function(t){return!!(t&&t instanceof Element)}}}function Fs(){return{name:"auth",K:"an instance of Firebase Auth",optional:!0,M:function(t){return!!(t&&t instanceof vs)}}}function Ks(){return{name:"app",K:"an instance of Firebase App",optional:!0,M:function(t){return!!(t&&t instanceof au.app.App)}}}function qs(t){return{name:t?t+"Credential":"credential",K:t?"a valid "+t+" credential":"a valid credential",optional:!1,M:function(n){if(!n)return!1;var e=!t||n.providerId===t;return!(!n.wa||!e)}}}function Xs(){return{name:"authProvider",K:"a valid Auth provider",optional:!1,M:function(t){return!!(t&&t.providerId&&t.hasOwnProperty&&t.hasOwnProperty("isOAuthProvider"))}}}function Bs(){return{name:"applicationVerifier",K:"an implementation of firebase.auth.ApplicationVerifier",optional:!1,M:function(n){return!!(n&&t(n.type)&&u(n.verify))}}}function Hs(t,n,e,i){return{name:e||"",K:t.K+" or "+n.K,optional:!!i,M:function(e){return t.M(e)||n.M(e)}}}function Ws(t,n,e,i,r,o){if(Ti(this,"type","recaptcha"),this.b=this.c=null,this.m=!1,this.l=n,this.a=e||{theme:"light",type:"image"},this.g=[],this.a[_f])throw new Pi("argument-error","sitekey should not be provided for reCAPTCHA as one is automatically provisioned for the current project.");if(this.h="invisible"===this.a[Rf],!Dt(n)||!this.h&&Dt(n).hasChildNodes())throw new Pi("argument-error","reCAPTCHA container is either not found or already contains inner elements!");this.u=new mr(t,o||null,r||null),this.o=i||function(){return null};var a=this;this.i=[];var s=this.a[Pf];this.a[Pf]=function(t){if(Gs(a,t),"function"==typeof s)s(t);else if("string"==typeof s){var n=oi(s,uu);"function"==typeof n&&n(t)}};var u=this.a[Cf];this.a[Cf]=function(){if(Gs(a,null),"function"==typeof u)u();else if("string"==typeof u){var t=oi(u,uu);"function"==typeof t&&t()}}}function Gs(t,n){for(var e=0;e<t.i.length;e++)try{t.i[e](n)}catch(t){}}function zs(t,n){N(t.i,function(t){return t==n})}function Js(t,n){return t.g.push(n),at(n,function(){E(t.g,n)}),n}function Ys(t){if(t.m)throw new Pi("internal-error","RecaptchaVerifier instance has been destroyed.")}function $s(){this.b=uu.grecaptcha?1/0:0,this.c=null,this.a="__rcb"+Math.floor(1e6*Math.random())}function Zs(t,n){return new Z(function(e,i){if(gi())if(!uu.grecaptcha||n!==t.c&&!t.b){uu[t.a]=function(){if(uu.grecaptcha){t.c=n;var r=uu.grecaptcha.render;uu.grecaptcha.render=function(n,e){return n=r(n,e),t.b++,n},e()}else i(new Pi("internal-error"));delete uu[t.a]};var r=At(Df,{onload:t.a,hl:n||""});nt(De(r)).s(function(){i(new Pi("internal-error","Unable to load external reCAPTCHA dependencies!"))})}else e();else i(new Pi("network-request-failed"))})}function Qs(){return Lf||(Lf=new $s),Lf}function tu(t,n,e){try{this.f=e||au.app()}catch(t){throw new Pi("argument-error","No firebase.app.App instance is currently initialized.")}if(!this.f.options||!this.f.options.apiKey)throw new Pi("invalid-api-key");e=this.f.options.apiKey;var i=this,r=null;try{r=this.f.auth().Ka()}catch(t){}r=au.SDK_VERSION?ii(au.SDK_VERSION,r):null,Ws.call(this,e,t,n,function(){try{var t=i.f.auth().$()}catch(n){t=null}return t},r,Fr(Uh))}function nu(t,n){for(var e in n){var i=n[e].name;t[i]=iu(i,t[e],n[e].j)}}function eu(t,n,e,i){t[n]=iu(n,e,i)}function iu(t,n,e){function i(){var t=Array.prototype.slice.call(arguments);return Ds(o,e,t),n.apply(this,t)}if(!e)return n;var r,o=ru(t);for(r in n)i[r]=n[r];for(r in n.prototype)i.prototype[r]=n.prototype[r];return i}function ru(t){return t=t.split("."),t[t.length-1]}var ou,au=e(6).default,su=su||{},uu=this,cu="closure_uid_"+(1e9*Math.random()>>>0),hu=0,fu=Date.now||function(){return+new Date};d(v,Error),v.prototype.name="CustomError";var lu=String.prototype.trim?function(t){return t.trim()}:function(t){return t.replace(/^[\s\xa0]+|[\s\xa0]+$/g,"")},pu=/&/g,du=/</g,vu=/>/g,mu=/"/g,gu=/'/g,bu=/\x00/g,wu=/[\x00&<>"']/;d(y,v),y.prototype.name="AssertionError";var yu,Iu=Array.prototype.indexOf?function(t,n,e){return Array.prototype.indexOf.call(t,n,e)}:function(n,e,i){if(i=null==i?0:0>i?Math.max(0,n.length+i):i,t(n))return t(e)&&1==e.length?n.indexOf(e,i):-1;for(;i<n.length;i++)if(i in n&&n[i]===e)return i;return-1},Tu=Array.prototype.forEach?function(t,n,e){Array.prototype.forEach.call(t,n,e)}:function(n,e,i){for(var r=n.length,o=t(n)?n.split(""):n,a=0;a<r;a++)a in o&&e.call(i,o[a],a,n)},ku=Array.prototype.map?function(t,n,e){return Array.prototype.map.call(t,n,e)}:function(n,e,i){for(var r=n.length,o=Array(r),a=t(n)?n.split(""):n,s=0;s<r;s++)s in a&&(o[s]=e.call(i,a[s],s,n));return o},Au=Array.prototype.some?function(t,n,e){return Array.prototype.some.call(t,n,e)}:function(n,e,i){for(var r=n.length,o=t(n)?n.split(""):n,a=0;a<r;a++)if(a in o&&e.call(i,o[a],a,n))return!0;return!1};t:{var Eu=uu.navigator;if(Eu){var Nu=Eu.userAgent;if(Nu){yu=Nu;break t}}yu=""}var Su="constructor hasOwnProperty isPrototypeOf propertyIsEnumerable toLocaleString toString valueOf".split(" ");U[" "]=i;var Ou,Pu=P("Opera"),Cu=P("Trident")||P("MSIE"),_u=P("Edge"),Ru=_u||Cu,Du=P("Gecko")&&!(b(yu.toLowerCase(),"webkit")&&!P("Edge"))&&!(P("Trident")||P("MSIE"))&&!P("Edge"),Lu=b(yu.toLowerCase(),"webkit")&&!P("Edge");t:{var xu="",ju=function(){var t=yu;return Du?/rv\:([^\);]+)(\)|;)/.exec(t):_u?/Edge\/([\d\.]+)/.exec(t):Cu?/\b(?:MSIE|rv)[: ]([^\);]+)(\)|;)/.exec(t):Lu?/WebKit\/(\S+)/.exec(t):Pu?/(?:Version)[ \/]?(\S+)/.exec(t):void 0}();if(ju&&(xu=ju?ju[1]:""),Cu){var Uu=V();if(null!=Uu&&Uu>parseFloat(xu)){Ou=Uu+"";break t}}Ou=xu}var Mu,Vu={},Fu=uu.document;Mu=Fu&&Cu?V()||("CSS1Compat"==Fu.compatMode?parseInt(Ou,10):5):void 0,X.prototype.get=function(){if(0<this.b){this.b--;var t=this.a;this.a=t.next,t.next=null}else t=this.c();return t};var Ku=new X(function(){return new W},function(t){t.reset()},100);W.prototype.set=function(t,n){this.a=t,this.b=n,this.next=null},W.prototype.reset=function(){this.next=this.b=this.a=null};var qu,Xu,Bu=!1,Hu=new function(){this.b=this.a=null},Wu=0,Gu=2,zu=3;Q.prototype.reset=function(){this.f=this.b=this.g=this.a=null,this.c=!1};var Ju=new X(function(){return new Q},function(t){t.reset()},100);Z.prototype.then=function(t,n,e){return ct(this,u(t)?t:null,u(n)?n:null,e)},K(Z),ou=Z.prototype,ou.s=function(t,n){return ct(this,null,t,n)},ou.cancel=function(t){this.a==Wu&&J(function(){st(this,new bt(t))},this)},ou.wc=function(t){this.a=Wu,ht(this,Gu,t)},ou.xc=function(t){this.a=Wu,ht(this,zu,t)},ou.Mb=function(){for(var t;t=dt(this);)vt(this,t,this.a,this.i);this.h=!1};var Yu=G;d(bt,v),bt.prototype.name="cancel";var $u=!Cu||9<=+Mu;wt.prototype.la=!0,wt.prototype.ja=function(){return this.a},wt.prototype.toString=function(){return"Const{"+this.a+"}"};var Zu={};It(""),Tt.prototype.la=!0,Tt.prototype.ja=function(){return this.a},Tt.prototype.toString=function(){return"TrustedResourceUrl{"+this.a+"}"};var Qu=/%{(\w+)}/g,tc=/^(?:https:)?\/\/[0-9a-z.:[\]-]+\/|^\/[^\/\\]|^about:blank(#|$)/i,nc={};Nt.prototype.la=!0,Nt.prototype.ja=function(){return this.a},Nt.prototype.toString=function(){return"SafeUrl{"+this.a+"}"};var ec=/^(?:(?:https?|mailto|ftp):|[^:\/?#]*(?:[\/?#]|$))/i,ic={};Pt("about:blank"),Ct.prototype.la=!0,Ct.prototype.ja=function(){return this.a},Ct.prototype.toString=function(){return"SafeHtml{"+this.a+"}"};var rc={};Rt("<!DOCTYPE html>"),Rt(""),Rt("<br>");var oc={cellpadding:"cellPadding",cellspacing:"cellSpacing",colspan:"colSpan",frameborder:"frameBorder",height:"height",maxlength:"maxLength",nonce:"nonce",role:"role",rowspan:"rowSpan",type:"type",usemap:"useMap",valign:"vAlign",width:"width"},ac={'"':'\\"',"\\":"\\\\","/":"\\/","\b":"\\b","\f":"\\f","\n":"\\n","\r":"\\r","\t":"\\t","\v":"\\u000b"},sc=/\uffff/.test("ï¿¿")?/[\\\"\x00-\x1f\x7f-\uffff]/g:/[\\\"\x00-\x1f\x7f-\xff]/g,uc=0,cc={};qt.prototype.oa=!1,qt.prototype.ta=function(){if(this.Fa)for(;this.Fa.length;)this.Fa.shift()()};var hc=Object.freeze||function(t){return t},fc=!Cu||9<=+Mu,lc=Cu&&!F("9"),pc=function(){if(!uu.addEventListener||!Object.defineProperty)return!1;var t=!1,n=Object.defineProperty({},"passive",{get:function(){t=!0}});return uu.addEventListener("test",i,n),uu.removeEventListener("test",i,n),t}();Bt.prototype.c=function(){this.Ab=!1},d(Ht,Bt);var dc=hc({2:"touch",3:"pen",4:"mouse"});Ht.prototype.c=function(){Ht.ib.c.call(this);var t=this.a;if(t.preventDefault)t.preventDefault();else if(t.returnValue=!1,lc)try{(t.ctrlKey||112<=t.keyCode&&123>=t.keyCode)&&(t.keyCode=-1)}catch(t){}},Ht.prototype.g=function(){return this.a};var vc="closure_listenable_"+(1e6*Math.random()|0),mc=0,gc="closure_lm_"+(1e6*Math.random()|0),bc={},wc=0,yc="__closure_events_fn_"+(1e9*Math.random()>>>0);d(fn,qt),fn.prototype[vc]=!0,fn.prototype.removeEventListener=function(t,n,e,i){en(this,t,n,e,i)},fn.prototype.ta=function(){if(fn.ib.ta.call(this),this.u){var t,n=this.u,e=0;for(t in n.a){for(var i=n.a[t],r=0;r<i.length;r++)++e,Gt(i[r]);delete n.a[t],n.b--}}this.Ra=null},bn.prototype.a=null;var Ic=0;bn.prototype.reset=function(t,n,e,i,r){"number"==typeof r||Ic++,i||fu(),this.b=n,delete this.a},yn.prototype.toString=function(){return this.name};var Tc=new yn("SEVERE",1e3),kc=new yn("CONFIG",700),Ac=new yn("FINE",500);wn.prototype.log=function(t,n,e){if(t.value>=In(this).value)for(u(n)&&(n=n()),t=new bn(t,n+"",this.f),e&&(t.a=e),e="log:"+t.b,(t=uu.console)&&t.timeStamp&&t.timeStamp(e),(t=uu.msWriteProfilerMark)&&t(e),e=this;e;)e=e.a};var Ec={},Nc=null;ou=kn.prototype,ou.P=function(){An(this);for(var t=[],n=0;n<this.a.length;n++)t.push(this.b[this.a[n]]);return t},ou.S=function(){return An(this),this.a.concat()},ou.clear=function(){this.b={},this.c=this.a.length=0},ou.get=function(t,n){return En(this.b,t)?this.b[t]:n},ou.set=function(t,n){En(this.b,t)||(this.c++,this.a.push(t)),this.b[t]=n},ou.forEach=function(t,n){for(var e=this.S(),i=0;i<e.length;i++){var r=e[i],o=this.get(r);t.call(n,o,r,this)}};var Sc=null,Oc=null;_n.prototype.cancel=function(t){if(this.a)this.c instanceof _n&&this.c.cancel();else{if(this.b){var n=this.b;delete this.b,t?n.cancel(t):0>=--n.l&&n.cancel()}this.v?this.v.call(this.o,this):this.u=!0,this.a||(t=new Vn,Dn(this),Rn(this,!1,t))}},_n.prototype.m=function(t,n){this.i=!1,Rn(this,t,n)},_n.prototype.A=function(t){Dn(this),Rn(this,!0,t)},_n.prototype.then=function(t,n,e){var i,r,o=new Z(function(t,n){i=t,r=n});return xn(this,i,function(t){t instanceof Vn?o.cancel():r(t)}),o.then(t,n,e)},K(_n),d(Mn,v),Mn.prototype.message="Deferred has already fired",Mn.prototype.name="AlreadyCalledError",d(Vn,v),Vn.prototype.message="Deferred was canceled",Vn.prototype.name="CanceledError",Fn.prototype.c=function(){throw delete Cc[this.a],this.b};var Pc,Cc={};d(qn,Kn);for(var _c=64,Rc=_c-1,Dc=[],Lc=0;Lc<Rc;Lc++)Dc[Lc]=0;var xc=S(128,Dc);qn.prototype.reset=function(){this.g=this.c=0,this.a=uu.Int32Array?new Int32Array(this.h):O(this.h)};var jc=[1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298];d(Hn,qn);var Uc=[1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225],Mc=/^(?:([^:\/?#.]+):)?(?:\/\/(?:([^\/?#]*)@)?([^\/#?]*?)(?::([0-9]+))?(?=[\/#?]|$))?([^?#]+)?(?:\?([^#]*))?(?:#([\s\S]*))?$/;Yn.prototype.toString=function(){var t=[],n=this.c;n&&t.push(oe(n,Vc,!0),":");var e=this.b;return(e||"file"==n)&&(t.push("//"),(n=this.l)&&t.push(oe(n,Vc,!0),"@"),t.push(encodeURIComponent(e+"").replace(/%25([0-9a-fA-F]{2})/g,"%$1")),null!=(e=this.i)&&t.push(":",e+"")),(e=this.g)&&(this.b&&"/"!=e.charAt(0)&&t.push("/"),t.push(oe(e,"/"==e.charAt(0)?Kc:Fc,!0))),(e=""+this.a)&&t.push("?",e),(e=this.h)&&t.push("#",oe(e,Xc)),t.join("")};var Vc=/[#\/\?@]/g,Fc=/[\#\?:]/g,Kc=/[\#\?]/g,qc=/[\#\?@]/g,Xc=/#/g;ou=se.prototype,ou.clear=function(){this.a=this.c=null,this.b=0},ou.forEach=function(t,n){ue(this),this.a.forEach(function(e,i){Tu(e,function(e){t.call(n,e,i,this)},this)},this)},ou.S=function(){ue(this);for(var t=this.a.P(),n=this.a.S(),e=[],i=0;i<n.length;i++)for(var r=t[i],o=0;o<r.length;o++)e.push(n[i]);return e},ou.P=function(n){ue(this);var e=[];if(t(n))le(this,n)&&(e=S(e,this.a.get(de(this,n))));else{n=this.a.P();for(var i=0;i<n.length;i++)e=S(e,n[i])}return e},ou.set=function(t,n){return ue(this),this.c=null,t=de(this,t),le(this,t)&&(this.b-=this.a.get(t).length),this.a.set(t,[n]),this.b+=1,this},ou.get=function(t,n){return t=t?this.P(t):[],0<t.length?t[0]+"":n},ou.toString=function(){if(this.c)return this.c;if(!this.a)return"";for(var t=[],n=this.a.S(),e=0;e<n.length;e++){var i=n[e],r=encodeURIComponent(i+"");i=this.P(i);for(var o=0;o<i.length;o++){var a=r;""!==i[o]&&(a+="="+encodeURIComponent(i[o]+"")),t.push(a)}}return this.c=t.join("&")},me.prototype.c=null;var Bc;d(be,me),be.prototype.a=function(){var t=we(this);return t?new ActiveXObject(t):new XMLHttpRequest},be.prototype.b=function(){var t={};return we(this)&&(t[0]=!0,t[1]=!0),t},Bc=new be,d(ye,fn);var Hc="",Wc=ye.prototype,Gc=Tn("goog.net.XhrIo");Wc.J=Gc;var zc=/^https?$/i,Jc=["POST","PUT"];ou=ye.prototype,ou.Ea=function(){void 0!==su&&this.a&&(this.g="Timed out after "+this.f+"ms, aborting",Nn(this.J,Re(this,this.g)),ln(this,"timeout"),this.abort(8))},ou.abort=function(){this.a&&this.b&&(Nn(this.J,Re(this,"Aborting")),this.b=!1,this.c=!0,this.a.abort(),this.c=!1,ln(this,"complete"),ln(this,"abort"),Se(this))},ou.ta=function(){this.a&&(this.b&&(this.b=!1,this.c=!0,this.a.abort(),this.c=!1),Se(this,!0)),ye.ib.ta.call(this)},ou.zb=function(){this.oa||(this.G||this.h||this.c?Ne(this):this.fc())},ou.fc=function(){Ne(this)},ou.getResponse=function(){try{if(!this.a)return null;if("response"in this.a)return this.a.response;switch(this.l){case Hc:case"text":return this.a.responseText;case"arraybuffer":if("mozResponseArrayBuffer"in this.a)return this.a.mozResponseArrayBuffer}var t=this.J;return t&&t.log(Tc,"Response type "+this.l+" is not supported on this browser",void 0),null}catch(t){return Nn(this.J,"Can not get response: "+t.message),null}};var Yc=/^[+a-zA-Z0-9_.!#$%&'*\/=?^`{|}~-]+@([a-zA-Z0-9-]+\.)+[a-zA-Z0-9]{2,63}$/,$c=0,Zc=1;d(Ue,v),d(Me,me),Me.prototype.a=function(){var t=new XMLHttpRequest;if("withCredentials"in t)return t;if("undefined"!=typeof XDomainRequest)return new Ve;throw Error("Unsupported browser")},Me.prototype.b=function(){return{}},ou=Ve.prototype,ou.open=function(t,n,e){if(null!=e&&!e)throw Error("Only async requests are supported.");this.a.open(t,n)},ou.send=function(t){if(t){if("string"!=typeof t)throw Error("Only string data is supported");this.a.send(t)}else this.a.send()},ou.abort=function(){this.a.abort()},ou.setRequestHeader=function(){},ou.getResponseHeader=function(t){return"content-type"==t.toLowerCase()?this.a.contentType:""},ou.Sb=function(){this.status=200,this.responseText=this.a.responseText,Fe(this,4)},ou.wb=function(){this.status=500,this.responseText="",Fe(this,4)},ou.Ub=function(){this.wb()},ou.Tb=function(){this.status=200,Fe(this,1)},ou.getAllResponseHeaders=function(){return"content-type: "+this.a.contentType};var Qc=/^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/,th="Firefox",nh="Chrome",eh={Cc:"FirebaseCore-web",Ec:"FirebaseUI-web"};bi.prototype.get=function(){return this.a?this.b:this.c};var ih,rh={};try{var oh={};Object.defineProperty(oh,"abcd",{configurable:!0,enumerable:!0,value:1}),Object.defineProperty(oh,"abcd",{configurable:!0,enumerable:!0,value:2}),ih=2==oh.abcd}catch(t){ih=!1}var ah="email",sh="newEmail",uh="requestType",ch="email",hh="fromEmail",fh="data",lh="operation";d(Pi,Error),Pi.prototype.B=function(){return{code:this.code,message:this.message}},Pi.prototype.toJSON=function(){return this.B()};var ph="auth/",dh={"argument-error":"","app-not-authorized":"This app, identified by the domain where it's hosted, is not authorized to use Firebase Authentication with the provided API key. Review your key configuration in the Google API console.","app-not-installed":"The requested mobile application corresponding to the identifier (Android package name or iOS bundle ID) provided is not installed on this device.","captcha-check-failed":"The reCAPTCHA response token provided is either invalid, expired, already used or the domain associated with it does not match the list of whitelisted domains.","code-expired":"The SMS code has expired. Please re-send the verification code to try again.","cordova-not-ready":"Cordova framework is not ready.","cors-unsupported":"This browser is not supported.","credential-already-in-use":"This credential is already associated with a different user account.","custom-token-mismatch":"The custom token corresponds to a different audience.","requires-recent-login":"This operation is sensitive and requires recent authentication. Log in again before retrying this request.","dynamic-link-not-activated":"Please activate Dynamic Links in the Firebase Console and agree to the terms and conditions.","email-already-in-use":"The email address is already in use by another account.","expired-action-code":"The action code has expired. ","cancelled-popup-request":"This operation has been cancelled due to another conflicting popup being opened.","internal-error":"An internal error has occurred.","invalid-app-credential":"The phone verification request contains an invalid application verifier. The reCAPTCHA token response is either invalid or expired.","invalid-app-id":"The mobile app identifier is not registed for the current project.","invalid-user-token":"The user's credential is no longer valid. The user must sign in again.","invalid-auth-event":"An internal error has occurred.","invalid-verification-code":"The SMS verification code used to create the phone auth credential is invalid. Please resend the verification code sms and be sure use the verification code provided by the user.","invalid-continue-uri":"The continue URL provided in the request is invalid.","invalid-cordova-configuration":"The following Cordova plugins must be installed to enable OAuth sign-in: cordova-plugin-buildinfo, cordova-universal-links-plugin, cordova-plugin-browsertab, cordova-plugin-inappbrowser and cordova-plugin-customurlscheme.","invalid-custom-token":"The custom token format is incorrect. Please check the documentation.","invalid-email":"The email address is badly formatted.","invalid-api-key":"Your API key is invalid, please check you have copied it correctly.","invalid-cert-hash":"The SHA-1 certificate hash provided is invalid.","invalid-credential":"The supplied auth credential is malformed or has expired.","invalid-persistence-type":"The specified persistence type is invalid. It can only be local, session or none.","invalid-message-payload":"The email template corresponding to this action contains invalid characters in its message. Please fix by going to the Auth email templates section in the Firebase Console.","invalid-oauth-provider":"EmailAuthProvider is not supported for this operation. This operation only supports OAuth providers.","invalid-oauth-client-id":"The OAuth client ID provided is either invalid or does not match the specified API key.","unauthorized-domain":"This domain is not authorized for OAuth operations for your Firebase project. Edit the list of authorized domains from the Firebase console.","invalid-action-code":"The action code is invalid. This can happen if the code is malformed, expired, or has already been used.","wrong-password":"The password is invalid or the user does not have a password.","invalid-phone-number":"The format of the phone number provided is incorrect. Please enter the phone number in a format that can be parsed into E.164 format. E.164 phone numbers are written in the format [+][country code][subscriber number including area code].","invalid-recipient-email":"The email corresponding to this action failed to send as the provided recipient email address is invalid.","invalid-sender":"The email template corresponding to this action contains an invalid sender email or name. Please fix by going to the Auth email templates section in the Firebase Console.","invalid-verification-id":"The verification ID used to create the phone auth credential is invalid.","missing-android-pkg-name":"An Android Package Name must be provided if the Android App is required to be installed.","auth-domain-config-required":"Be sure to include authDomain when calling firebase.initializeApp(), by following the instructions in the Firebase console.","missing-app-credential":"The phone verification request is missing an application verifier assertion. A reCAPTCHA response token needs to be provided.","missing-verification-code":"The phone auth credential was created with an empty SMS verification code.","missing-continue-uri":"A continue URL must be provided in the request.","missing-iframe-start":"An internal error has occurred.","missing-ios-bundle-id":"An iOS Bundle ID must be provided if an App Store ID is provided.","missing-phone-number":"To send verification codes, provide a phone number for the recipient.","missing-verification-id":"The phone auth credential was created with an empty verification ID.","app-deleted":"This instance of FirebaseApp has been deleted.","account-exists-with-different-credential":"An account already exists with the same email address but different sign-in credentials. Sign in using a provider associated with this email address.","network-request-failed":"A network error (such as timeout, interrupted connection or unreachable host) has occurred.","no-auth-event":"An internal error has occurred.","no-such-provider":"User was not linked to an account with the given provider.","operation-not-allowed":"The given sign-in provider is disabled for this Firebase project. Enable it in the Firebase console, under the sign-in method tab of the Auth section.","operation-not-supported-in-this-environment":'This operation is not supported in the environment this application is running on. "location.protocol" must be http, https or chrome-extension and web storage must be enabled.',"popup-blocked":"Unable to establish a connection with the popup. It may have been blocked by the browser.","popup-closed-by-user":"The popup has been closed by the user before finalizing the operation.","provider-already-linked":"User can only be linked to one identity for the given provider.","quota-exceeded":"The project's quota for this operation has been exceeded.","redirect-cancelled-by-user":"The redirect operation has been cancelled by the user before finalizing.","redirect-operation-pending":"A redirect sign-in operation is already pending.",timeout:"The operation has timed out.","user-token-expired":"The user's credential is no longer valid. The user must sign in again.","too-many-requests":"We have blocked all requests from this device due to unusual activity. Try again later.","unauthorized-continue-uri":"The domain of the continue URL is not whitelisted.  Please whitelist the domain in the Firebase console.","unsupported-persistence-type":"The current environment does not support the specified persistence type.","user-cancelled":"User did not grant your application the permissions it requested.","user-not-found":"There is no user record corresponding to this identifier. The user may have been deleted.","user-disabled":"The user account has been disabled by an administrator.","user-mismatch":"The supplied credentials do not correspond to the previously signed in user.","user-signed-out":"","weak-password":"The password must be 6 characters long or more.","web-storage-unsupported":"This browser is not supported or 3rd party cookies and data may be disabled."},vh="android",mh="handleCodeInApp",gh="iOS",bh="url",wh="installApp",yh="minimumVersion",Ih="packageName",Th="bundleId",kh="oauth_consumer_key oauth_nonce oauth_signature oauth_signature_method oauth_timestamp oauth_token oauth_version".split(" "),Ah=["client_id","response_type","scope","redirect_uri","state"],Eh={Dc:{Ma:"locale",za:500,ya:600,Na:"facebook.com",$a:Ah},Fc:{Ma:null,za:500,ya:620,Na:"github.com",$a:Ah},Gc:{Ma:"hl",za:515,ya:680,Na:"google.com",$a:Ah},Mc:{Ma:"lang",za:485,ya:705,Na:"twitter.com",$a:kh}},Nh="idToken",Sh="providerId";d(Mi,Ui),d(Vi,Mi),d(Fi,Mi),d(Ki,Mi),d(qi,Mi),Bi.prototype.wa=function(t){return Dr(t,Hi(this))},Bi.prototype.b=function(t,n){var e=Hi(this);return e.idToken=n,Lr(t,e)},Bi.prototype.c=function(t,n){return Xi(xr(t,Hi(this)),n)},Bi.prototype.B=function(){var t={providerId:this.providerId};return this.idToken&&(t.oauthIdToken=this.idToken),this.accessToken&&(t.oauthAccessToken=this.accessToken),this.secret&&(t.oauthTokenSecret=this.secret),t},Wi.prototype.Ba=function(t){return this.qb=x(t),this},d(Gi,Wi),Gi.prototype.sa=function(t){return A(this.a,t)||this.a.push(t),this},Gi.prototype.vb=function(){return O(this.a)},Gi.prototype.credential=function(t,n){if(!t&&!n)throw new Pi("argument-error","credential failed: must provide the ID token and/or the access token.");return new Bi(this.providerId,{idToken:t||null,accessToken:n||null})},d(zi,Gi),Ti(zi,"PROVIDER_ID","facebook.com"),d(Yi,Gi),Ti(Yi,"PROVIDER_ID","github.com"),d(Zi,Gi),Ti(Zi,"PROVIDER_ID","google.com"),d(tr,Wi),Ti(tr,"PROVIDER_ID","twitter.com"),er.prototype.wa=function(t){return Ur(t,of,{email:this.a,password:this.f})},er.prototype.b=function(t,n){return Ur(t,Zh,{idToken:n,email:this.a,password:this.f})},er.prototype.c=function(t,n){return Xi(this.wa(t),n)},er.prototype.B=function(){return{email:this.a,password:this.f}},ki(ir,{PROVIDER_ID:"password"}),rr.prototype.wa=function(t){return t.Qa(or(this))},rr.prototype.b=function(t,n){var e=or(this);return e.idToken=n,Ur(t,sf,e)},rr.prototype.c=function(t,n){var e=or(this);return e.operation="REAUTH",t=Ur(t,uf,e),Xi(t,n)},rr.prototype.B=function(){var t={providerId:"phone"};return this.a.Pa&&(t.verificationId=this.a.Pa),this.a.Oa&&(t.verificationCode=this.a.Oa),this.a.Da&&(t.temporaryProof=this.a.Da),this.a.Y&&(t.phoneNumber=this.a.Y),t},ar.prototype.Qa=function(n,e){var i=this.a.c;return nt(e.verify()).then(function(r){if(!t(r))throw new Pi("argument-error","An implementation of firebase.auth.ApplicationVerifier.prototype.verify() must return a firebase.Promise that resolves with a string.");switch(e.type){case"recaptcha":return Pr(i,{phoneNumber:n,recaptchaToken:r}).then(function(t){return"function"==typeof e.reset&&e.reset(),t},function(t){throw"function"==typeof e.reset&&e.reset(),t});default:throw new Pi("argument-error",'Only firebase.auth.ApplicationVerifiers with type="recaptcha" are currently supported.')}})},ki(ar,{PROVIDER_ID:"phone"}),hr.prototype.B=function(){return{type:this.b,eventId:this.c,urlResponse:this.f,sessionId:this.g,error:this.a&&this.a.B()}},d(lr,Pi),d(pr,Pi),pr.prototype.B=function(){var t={code:this.code,message:this.message};this.email&&(t.email=this.email),this.phoneNumber&&(t.phoneNumber=this.phoneNumber);var n=this.credential&&this.credential.B();return n&&j(t,n),t},pr.prototype.toJSON=function(){return this.B()},d(vr,me),vr.prototype.a=function(){return new this.f},vr.prototype.b=function(){return{}};var Oh,Ph="idToken",Ch=new bi(3e4,6e4),_h={"Content-Type":"application/x-www-form-urlencoded"},Rh=new bi(3e4,6e4),Dh={"Content-Type":"application/json"};mr.prototype.m=function(t,n,e,i,r,o){var a="Node"==ti(),s=ni()?a?new ye(this.o):new ye:new ye(this.f);if(o){s.f=Math.max(0,o);var u=setTimeout(function(){ln(s,"timeout")},o)}pn(s,"complete",function(){u&&clearTimeout(u);var t=null;try{t=JSON.parse(_e(this))||null}catch(n){t=null}n&&n(t)}),dn(s,"ready",function(){u&&clearTimeout(u),Xt(this)}),dn(s,"timeout",function(){u&&clearTimeout(u),Xt(this),n&&n(null)}),Ie(s,t,e,i,r)};var Lh=It("https://apis.google.com/js/client.js?onload=%{onload}"),xh="__fcb"+Math.floor(1e6*Math.random());mr.prototype.u=function(t,n,e,i,r){var o=this;Oh.then(function(){window.gapi.client.setApiKey(o.b);var a=window.gapi.auth.getToken();window.gapi.auth.setToken(null),window.gapi.client.request({path:t,method:e,body:i,headers:r,authType:"none",callback:function(t){window.gapi.auth.setToken(a),n&&n(t)}})}).s(function(t){n&&n({error:{message:t&&t.message||"CORS_UNSUPPORTED"}})})},mr.prototype.gb=function(){return Ur(this,Qh,{})},mr.prototype.kb=function(t,n){return Ur(this,$h,{idToken:t,email:n})},mr.prototype.lb=function(t,n){return Ur(this,Zh,{idToken:t,password:n})};var jh={displayName:"DISPLAY_NAME",photoUrl:"PHOTO_URL"};ou=mr.prototype,ou.mb=function(t,n){var e={idToken:t},i=[];return C(jh,function(t,r){var o=n[r];null===o?i.push(t):r in n&&(e[r]=o)}),i.length&&(e.deleteAttribute=i),Ur(this,$h,e)},ou.cb=function(t,n){return t={requestType:"PASSWORD_RESET",email:t},j(t,n),Ur(this,Wh,t)},ou.bb=function(t,n){return t={requestType:"VERIFY_EMAIL",idToken:t},j(t,n),Ur(this,Hh,t)},ou.Qa=function(t){return Ur(this,af,t)},ou.Ta=function(t,n){return Ur(this,Jh,{oobCode:t,newPassword:n})},ou.Ia=function(t){return Ur(this,Vh,{oobCode:t})},ou.Sa=function(t){return Ur(this,Mh,{oobCode:t})};var Uh,Mh={endpoint:"setAccountInfo",D:jr,ga:"email"},Vh={endpoint:"resetPassword",D:jr,O:function(t){if(!t.email||!t.requestType)throw new Pi("internal-error")}},Fh={endpoint:"signupNewUser",D:function(t){if(kr(t),!t.password)throw new Pi("weak-password")},O:Sr,T:!0},Kh={endpoint:"createAuthUri"},qh={endpoint:"deleteAccount",ea:["idToken"]},Xh={endpoint:"setAccountInfo",ea:["idToken","deleteProvider"],D:function(t){if(!a(t.deleteProvider))throw new Pi("internal-error")}},Bh={endpoint:"getAccountInfo"},Hh={endpoint:"getOobConfirmationCode",ea:["idToken","requestType"],D:function(t){if("VERIFY_EMAIL"!=t.requestType)throw new Pi("internal-error")},ga:"email"},Wh={endpoint:"getOobConfirmationCode",ea:["requestType"],D:function(t){if("PASSWORD_RESET"!=t.requestType)throw new Pi("internal-error");kr(t)},ga:"email"},Gh={nb:!0,endpoint:"getProjectConfig",yb:"GET"},zh={nb:!0,endpoint:"getRecaptchaParam",yb:"GET",O:function(t){if(!t.recaptchaSiteKey)throw new Pi("internal-error")}},Jh={endpoint:"resetPassword",D:jr,ga:"email"},Yh={endpoint:"sendVerificationCode",ea:["phoneNumber","recaptchaToken"],ga:"sessionInfo"},$h={endpoint:"setAccountInfo",ea:["idToken"],D:Ar,T:!0},Zh={endpoint:"setAccountInfo",ea:["idToken"],D:function(t){if(Ar(t),!t.password)throw new Pi("weak-password")},O:Sr,T:!0},Qh={endpoint:"signupNewUser",O:Sr,T:!0},tf={endpoint:"verifyAssertion",D:_r,O:Rr,T:!0},nf={endpoint:"verifyAssertion",D:_r,O:function(t){if(t.errorMessage&&"USER_NOT_FOUND"==t.errorMessage)throw new Pi("user-not-found");if(t.errorMessage)throw Mr(t.errorMessage);if(!t[Ph])throw new Pi("internal-error")},T:!0},ef={endpoint:"verifyAssertion",D:function(t){if(_r(t),!t.idToken)throw new Pi("internal-error")},O:Rr,T:!0},rf={endpoint:"verifyCustomToken",D:function(t){if(!t.token)throw new Pi("invalid-custom-token")},O:Sr,T:!0},of={endpoint:"verifyPassword",D:function(t){if(kr(t),!t.password)throw new Pi("wrong-password")},O:Sr,T:!0},af={endpoint:"verifyPhoneNumber",D:Or,O:Sr},sf={endpoint:"verifyPhoneNumber",D:function(t){if(!t.idToken)throw new Pi("internal-error");Or(t)},O:function(t){if(t.temporaryProof)throw t.code="credential-already-in-use",dr(t);Sr(t)}},uf={Lb:{USER_NOT_FOUND:"user-not-found"},endpoint:"verifyPhoneNumber",D:Or,O:Sr},cf={Ic:{Va:"https://www.googleapis.com/identitytoolkit/v3/relyingparty/",ab:"https://securetoken.googleapis.com/v1/token",id:"p"},Kc:{Va:"https://staging-www.sandbox.googleapis.com/identitytoolkit/v3/relyingparty/",ab:"https://staging-securetoken.sandbox.googleapis.com/v1/token",id:"s"},Lc:{Va:"https://www-googleapis-test.sandbox.google.com/identitytoolkit/v3/relyingparty/",ab:"https://test-securetoken.sandbox.googleapis.com/v1/token",id:"t"}};Uh=Fr("__EID__")?"__EID__":void 0;var hf=It("https://apis.google.com/js/api.js?onload=%{onload}"),ff=new bi(3e4,6e4),lf=new bi(5e3,15e3),pf=null;Wr.prototype.toString=function(){return this.f?te(this.a,"v",this.f):fe(this.a.a,"v"),this.b?te(this.a,"eid",this.b):fe(this.a.a,"eid"),this.c.length?te(this.a,"fw",this.c.join(",")):fe(this.a.a,"fw"),""+this.a},Gr.prototype.toString=function(){var t=ie(this.m,"/__/auth/handler");if(te(t,"apiKey",this.u),te(t,"appName",this.c),te(t,"authType",this.l),this.a.isOAuthProvider){var n=this.a;try{var e=au.app(this.c).auth().$()}catch(t){e=null}n.Ua=e,te(t,"providerId",this.a.providerId),n=this.a,e=li(n.qb);for(var i in e)e[i]=""+e[i];i=n.nc,e=x(e);for(var r=0;r<i.length;r++){var o=i[r];o in e&&delete e[o]}n.Wa&&n.Ua&&!e[n.Wa]&&(e[n.Wa]=n.Ua),D(e)||te(t,"customParameters",fi(e))}if("function"==typeof this.a.vb&&(n=this.a.vb(),n.length&&te(t,"scopes",n.join(","))),this.h?te(t,"redirectUrl",this.h):fe(t.a,"redirectUrl"),this.g?te(t,"eventId",this.g):fe(t.a,"eventId"),this.i?te(t,"v",this.i):fe(t.a,"v"),this.b)for(var a in this.b)this.b.hasOwnProperty(a)&&!ne(t,a)&&te(t,a,this.b[a]);return this.f?te(t,"eid",this.f):fe(t.a,"eid"),a=zr(this.c),a.length&&te(t,"fw",a.join(",")),""+t},ou=Jr.prototype,ou.Ca=function(t,n,e){var i=new Pi("popup-closed-by-user"),r=new Pi("web-storage-unsupported"),o=this,a=!1;return this.ba().then(function(){no(o).then(function(e){e||(t&&Ge(t),n(r),a=!0)})}).s(function(){}).then(function(){if(!a)return Je(t)}).then(function(){if(!a)return gn(e).then(function(){n(i)})})},ou.Cb=function(){var t=ri();return!hi(t)&&!vi(t)},ou.xb=function(){return!1},ou.ub=function(t,n,e,i,r,o,a){if(!t)return et(new Pi("popup-blocked"));if(a&&!hi())return this.ba().s(function(n){Ge(t),r(n)}),i(),nt();this.a||(this.a=Yr(Zr(this)));var s=this;return this.a.then(function(){var n=s.ba().s(function(n){throw Ge(t),r(n),n});return i(),n}).then(function(){cr(e),a||Xe(Qr(s.u,s.f,s.b,n,e,null,o,s.c,void 0,s.h),t)}).s(function(t){throw"auth/network-request-failed"==t.code&&(s.a=null),t})},ou.Aa=function(t,n,e){this.a||(this.a=Yr(Zr(this)));var i=this;return this.a.then(function(){cr(n),Xe(Qr(i.u,i.f,i.b,t,n,qe(),e,i.c,void 0,i.h))}).s(function(t){throw"auth/network-request-failed"==t.code&&(i.a=null),t})},ou.ba=function(){var t=this;return $r(this).then(function(){return t.i.Ya}).s(function(){throw t.a=null,new Pi("network-request-failed")})},ou.Db=function(){return!0},ou.ua=function(t){this.g.push(t)},ou.Ja=function(t){N(this.g,function(n){return n==t})},ou=eo.prototype,ou.get=function(t){return nt(this.a.getItem(t)).then(function(t){return t&&pi(t)})},ou.set=function(t,n){return nt(this.a.setItem(t,fi(n)))},ou.X=function(t){return nt(this.a.removeItem(t))},ou.ia=function(){},ou.da=function(){},ou=io.prototype,ou.get=function(t){return nt(this.a[t])},ou.set=function(t,n){return this.a[t]=n,nt()},ou.X=function(t){return delete this.a[t],nt()},ou.ia=function(){},ou.da=function(){};var df;ou=ro.prototype,ou.set=function(t,n){var e,i=!1,r=this;return at(ao(this).then(function(n){return e=n,n=so(r,uo(r,e,!0)),co(n.get(t))}).then(function(o){var a=so(r,uo(r,e,!0));return o?(o.value=n,co(a.put(o))):(r.a++,i=!0,o={},o[r.g]=t,o[r.l]=n,co(a.add(o)))}).then(function(){r.f[t]=n}),function(){i&&r.a--})},ou.get=function(t){var n=this;return ao(this).then(function(e){return co(so(n,uo(n,e,!1)).get(t))}).then(function(t){return t&&t.value})},ou.X=function(t){var n=!1,e=this;return at(ao(this).then(function(i){return n=!0,e.a++,co(so(e,uo(e,i,!0)).delete(t))}).then(function(){delete e.f[t]}),function(){n&&e.a--})},ou.vc=function(){var t=this;return ao(this).then(function(n){var e=so(t,uo(t,n,!1));return e.getAll?co(e.getAll()):new Z(function(t,n){var i=[],r=e.openCursor();r.onsuccess=function(n){(n=n.target.result)?(i.push(n.value),n.continue()):t(i)},r.onerror=function(t){n(Error(t.target.errorCode))}})}).then(function(n){var e={},i=[];if(0==t.a){for(i=0;i<n.length;i++)e[n[i][t.g]]=n[i][t.l];i=Be(t.f,e),t.f=e}return i})},ou.ia=function(t){0==this.c.length&&ho(this),this.c.push(t)},ou.da=function(t){N(this.c,function(n){return n==t}),0==this.c.length&&this.b&&this.b.cancel("STOP_EVENT")},ou=fo.prototype,ou.get=function(t){var n=this;return nt().then(function(){return pi(n.a.getItem(t))})},ou.set=function(t,n){var e=this;return nt().then(function(){var i=fi(n);null===i?e.X(t):e.a.setItem(t,i)})},ou.X=function(t){var n=this;return nt().then(function(){n.a.removeItem(t)})},ou.ia=function(t){uu.window&&Zt(uu.window,"storage",t)},ou.da=function(t){uu.window&&en(uu.window,"storage",t)},ou=vo.prototype,ou.get=function(){return nt(null)},ou.set=function(){return nt()},ou.X=function(){return nt()},ou.ia=function(){},ou.da=function(){},ou=mo.prototype,ou.get=function(t){var n=this;return nt().then(function(){return pi(n.a.getItem(t))})},ou.set=function(t,n){var e=this;return nt().then(function(){var i=fi(n);null===i?e.X(t):e.a.setItem(t,i)})},ou.X=function(t){var n=this;return nt().then(function(){n.a.removeItem(t)})},ou.ia=function(){},ou.da=function(){};var vf,mf,gf={C:fo,jb:mo},bf={C:fo,jb:mo},wf={C:eo,jb:vo},yf={Hc:"local",NONE:"none",Jc:"session"};Io.prototype.get=function(t,n){return ko(this,t.C).get(Ao(this,t,n))},Io.prototype.set=function(t,n,e){var i=Ao(this,t,e),r=this,o=ko(this,t.C);return o.set(i,n).then(function(){return o.get(i)}).then(function(n){"local"==t.C&&(r.b[i]=n)})},Io.prototype.m=function(t){if(t&&t.g){var n=t.a.key;if(null==n)for(var e in this.a){var i=this.b[e];void 0===i&&(i=null);var r=uu.localStorage.getItem(e);r!==i&&(this.b[e]=r,this.c(e))}else if(0==n.indexOf(this.i+this.g)&&this.a[n]){if(void 0!==t.a.a?ko(this,"local").da(this.h):Po(this),this.A)if(e=uu.localStorage.getItem(n),(i=t.a.newValue)!==e)null!==i?uu.localStorage.setItem(n,i):uu.localStorage.removeItem(n);else if(this.b[n]===i&&void 0===t.a.a)return;var o=this;e=function(){void 0===t.a.a&&o.b[n]===uu.localStorage.getItem(n)||(o.b[n]=uu.localStorage.getItem(n),o.c(n))},Cu&&Mu&&10==Mu&&uu.localStorage.getItem(n)!==t.a.newValue&&t.a.newValue!==t.a.oldValue?setTimeout(e,10):e()}}else Tu(t,l(this.c,this))},Io.prototype.c=function(t){this.a[t]&&Tu(this.a[t],function(t){t()})};var If={name:"authEvent",C:"local"};ou=Lo.prototype,ou.ba=function(){return this.xa?this.xa:this.xa=$e().then(function(){if("function"!=typeof oi("universalLinks.subscribe",uu))throw xo("cordova-universal-links-plugin is not installed");if(void 0===oi("BuildInfo.packageName",uu))throw xo("cordova-plugin-buildinfo is not installed");if("function"!=typeof oi("cordova.plugins.browsertab.openUrl",uu))throw xo("cordova-plugin-browsertab is not installed");if("function"!=typeof oi("cordova.InAppBrowser.open",uu))throw xo("cordova-plugin-inappbrowser is not installed")},function(){throw new Pi("cordova-not-ready")})},ou.Ca=function(t,n){return n(new Pi("operation-not-supported-in-this-environment")),nt()},ou.ub=function(){return et(new Pi("operation-not-supported-in-this-environment"))},ou.Db=function(){return!1},ou.Cb=function(){return!0},ou.xb=function(){return!0},ou.Aa=function(t,n,e){if(this.c)return et(new Pi("redirect-operation-pending"));var i=this,r=uu.document,o=null,a=null,s=null,u=null;return this.c=at(nt().then(function(){return cr(n),Fo(i)}).then(function(){return Mo(i,t,n,e)}).then(function(){return new Z(function(t,n){a=function(){var n=oi("cordova.plugins.browsertab.close",uu);return t(),"function"==typeof n&&n(),i.a&&"function"==typeof i.a.close&&(i.a.close(),i.a=null),!1},i.ua(a),s=function(){o||(o=gn(i.w).then(function(){n(new Pi("redirect-cancelled-by-user"))}))},u=function(){wi()&&s()},r.addEventListener("resume",s,!1),ri().toLowerCase().match(/android/)||r.addEventListener("visibilitychange",u,!1)}).s(function(t){return Ko(i).then(function(){throw t})})}),function(){s&&r.removeEventListener("resume",s,!1),u&&r.removeEventListener("visibilitychange",u,!1),o&&o.cancel(),a&&i.Ja(a),i.c=null})},ou.ua=function(t){this.b.push(t),Fo(this).s(function(n){"auth/invalid-cordova-configuration"===n.code&&(n=new hr("unknown",null,null,null,new Pi("no-auth-event")),t(n))})},ou.Ja=function(t){N(this.b,function(n){return n==t})};var Tf={name:"pendingRedirect",C:"session"};Go.prototype.reset=function(){this.f=!1,this.a.Ja(this.i),this.a=zo(this.v,this.l,this.u)},Go.prototype.subscribe=function(t){if(A(this.h,t)||this.h.push(t),!this.f){var n=this;Wo(this.g).then(function(t){t?Ho(n.g).then(function(){Jo(n).s(function(t){var e=new hr("unknown",null,null,null,new Pi("operation-not-supported-in-this-environment"));Zo(t)&&n.m(e)})}):Yo(n)}).s(function(){Yo(n)})}},Go.prototype.unsubscribe=function(t){N(this.h,function(n){return n==t})},Go.prototype.m=function(t){if(!t)throw new Pi("invalid-auth-event");for(var n=!1,e=0;e<this.h.length;e++){var i=this.h[e];if(i.ob(t.b,t.c)){(n=this.b[t.b])&&n.h(t,i),n=!0;break}}return na(this.c),n};var kf=new bi(2e3,1e4),Af=new bi(3e4,6e4);Go.prototype.aa=function(){return this.c.aa()},Go.prototype.Aa=function(t,n,e){var i,r=this;return Bo(this.g).then(function(){return r.a.Aa(t,n,e).s(function(t){if(Zo(t))throw new Pi("operation-not-supported-in-this-environment");return i=t,Ho(r.g).then(function(){throw i})}).then(function(){return r.a.Db()?new Z(function(){}):Ho(r.g).then(function(){return r.aa()}).then(function(){}).s(function(){})})})},Go.prototype.Ca=function(t,n,e,i){return this.a.Ca(e,function(e){t.fa(n,null,e,i)},kf.get())};var Ef={};ta.prototype.reset=function(){this.b=null,this.a&&(this.a.cancel(),this.a=null)},ta.prototype.h=function(t,n){if(!t)return et(new Pi("invalid-auth-event"));this.reset(),this.g=!0;var e=t.b,i=t.c,r=t.a&&"auth/web-storage-unsupported"==t.a.code,o=t.a&&"auth/operation-not-supported-in-this-environment"==t.a.code;return"unknown"!=e||r||o?t.a?(oa(this,!0,null,t.a),t=nt()):t=n.va(e,i)?ea(this,t,n):et(new Pi("invalid-auth-event")):(oa(this,!1,null,null),t=nt()),t},ta.prototype.aa=function(){var t=this;return new Z(function(n,e){t.b?t.b().then(n,e):(t.f.push(n),t.c.push(e),aa(t))})},sa.prototype.h=function(t,n){if(!t)return et(new Pi("invalid-auth-event"));var e=t.b,i=t.c;return t.a?(n.fa(t.b,null,t.a,t.c),t=nt()):t=n.va(e,i)?ua(t,n):et(new Pi("invalid-auth-event")),t},ca.prototype.confirm=function(t){return t=sr(this.verificationId,t),this.a(t)},fa.prototype.start=function(){this.a=this.c,pa(this,!0)},va.prototype.B=function(){return{apiKey:this.f.b,refreshToken:this.a,accessToken:this.b,expirationTime:this.c}},va.prototype.getToken=function(t){return t=!!t,this.b&&!this.a?et(new Pi("user-token-expired")):t||!this.b||fu()>this.c-3e4?this.a?ba(this,{grant_type:"refresh_token",refresh_token:this.a}):nt(null):nt({accessToken:this.b,expirationTime:this.c,refreshToken:this.a})},wa.prototype.B=function(){return{lastLoginAt:this.b,createdAt:this.a}},d(Ta,Bt),d(ka,fn),ka.prototype.na=function(t){this.ha=t,gr(this.c,t)},ka.prototype.$=function(){return this.ha},ka.prototype.Ka=function(){return O(this.R)},ka.prototype.Ga=function(){this.l.b&&(da(this.l),this.l.start())},Ti(ka.prototype,"providerId","firebase"),ou=ka.prototype,ou.reload=function(){var t=this;return Qa(this,Ua(this).then(function(){return Xa(t).then(function(){return Da(t)}).then(ja)}))},ou.F=function(t){var n=this;return Qa(this,Ua(this).then(function(){return n.h.getToken(t)}).then(function(t){if(!t)throw new Pi("internal-error");return t.accessToken!=n.pa&&(_a(n,t.accessToken),ln(n,new Ta("tokenChanged"))),Ka(n,"refreshToken",t.refreshToken),t.accessToken}))},ou.getToken=function(t){return rh["firebase.User.prototype.getToken is deprecated. Please use firebase.User.prototype.getIdToken instead."]||(rh["firebase.User.prototype.getToken is deprecated. Please use firebase.User.prototype.getIdToken instead."]=!0,"undefined"!=typeof console&&"function"==typeof console.warn&&console.warn("firebase.User.prototype.getToken is deprecated. Please use firebase.User.prototype.getIdToken instead.")),this.F(t)},ou.gc=function(t){if(!(t=t.users)||!t.length)throw new Pi("internal-error");t=t[0],xa(this,{uid:t.localId,displayName:t.displayName,photoURL:t.photoUrl,email:t.email,emailVerified:!!t.emailVerified,phoneNumber:t.phoneNumber,lastLoginAt:t.lastLoginAt,createdAt:t.createdAt});for(var n=Wa(t),e=0;e<n.length;e++)Va(this,n[e]);Ka(this,"isAnonymous",!(this.email&&t.passwordHash||this.providerData&&this.providerData.length))},ou.Za=function(t){var n=this,e=null;return Qa(this,t.c(this.c,this.uid).then(function(t){return Ba(n,t),e=za(n,t,"reauthenticate"),n.i=null,n.reload()}).then(function(){return e}),!0)},ou.hc=function(t){return this.Za(t).then(function(){})},ou.Xa=function(t){var n=this,e=null;return Qa(this,Ga(this,t.providerId).then(function(){return n.F()}).then(function(e){return t.b(n.c,e)}).then(function(t){return e=za(n,t,"link"),Ja(n,t)}).then(function(){return e}))},ou.Zb=function(t){return this.Xa(t).then(function(t){return t.user})},ou.$b=function(t,n){var e=this;return Qa(this,Ga(this,"phone").then(function(){return ha(Sa(e),t,n,l(e.Xa,e))}))},ou.ic=function(t,n){var e=this;return Qa(this,nt().then(function(){return ha(Sa(e),t,n,l(e.Za,e))}),!0)},ou.kb=function(t){var n=this;return Qa(this,this.F().then(function(e){return n.c.kb(e,t)}).then(function(t){return Ba(n,t),n.reload()}))},ou.zc=function(t){var n=this;return Qa(this,this.F().then(function(e){return t.b(n.c,e)}).then(function(t){return Ba(n,t),n.reload()}))},ou.lb=function(t){var n=this;return Qa(this,this.F().then(function(e){return n.c.lb(e,t)}).then(function(t){return Ba(n,t),n.reload()}))},ou.mb=function(t){if(void 0===t.displayName&&void 0===t.photoURL)return Ua(this);var n=this;return Qa(this,this.F().then(function(e){return n.c.mb(e,{displayName:t.displayName,photoUrl:t.photoURL})}).then(function(t){return Ba(n,t),Ka(n,"displayName",t.displayName||null),Ka(n,"photoURL",t.photoUrl||null),Tu(n.providerData,function(t){"password"===t.providerId&&(Ti(t,"displayName",n.displayName),Ti(t,"photoURL",n.photoURL))}),Da(n)}).then(ja))},ou.yc=function(t){var n=this;return Qa(this,Xa(this).then(function(e){return A(Ma(n),t)?Cr(n.c,e,[t]).then(function(t){var e={};return Tu(t.providerUserInfo||[],function(t){e[t.providerId]=!0}),Tu(Ma(n),function(t){e[t]||Fa(n,t)}),e[ar.PROVIDER_ID]||Ti(n,"phoneNumber",null),Da(n)}):Da(n).then(function(){throw new Pi("no-such-provider")})}))},ou.delete=function(){var t=this;return Qa(this,this.F().then(function(n){return Ur(t.c,qh,{idToken:n})}).then(function(){ln(t,new Ta("userDeleted"))})).then(function(){for(var n=0;n<t.A.length;n++)t.A[n].cancel("app-deleted");Aa(t,null),Na(t,null),t.A=[],t.m=!0,Ca(t),Ti(t,"refreshToken",null),t.a&&t.a.unsubscribe(t)})},ou.ob=function(t,n){return!!("linkViaPopup"==t&&(this.g||null)==n&&this.f||"reauthViaPopup"==t&&(this.g||null)==n&&this.f||"linkViaRedirect"==t&&(this.Z||null)==n||"reauthViaRedirect"==t&&(this.Z||null)==n)},ou.fa=function(t,n,e,i){"linkViaPopup"!=t&&"reauthViaPopup"!=t||i!=(this.g||null)||(e&&this.v?this.v(e):n&&!e&&this.f&&this.f(n),this.b&&(this.b.cancel(),this.b=null),delete this.f,delete this.v)},ou.va=function(t,n){return"linkViaPopup"==t&&n==(this.g||null)?l(this.sb,this):"reauthViaPopup"==t&&n==(this.g||null)?l(this.tb,this):"linkViaRedirect"==t&&(this.Z||null)==n?l(this.sb,this):"reauthViaRedirect"==t&&(this.Z||null)==n?l(this.tb,this):null},ou.ac=function(t){var n=this;return Ya(this,"linkViaPopup",t,function(){return Ga(n,t.providerId).then(function(){return Da(n)})},!1)},ou.jc=function(t){return Ya(this,"reauthViaPopup",t,function(){return nt()},!0)},ou.bc=function(t){var n=this;return $a(this,"linkViaRedirect",t,function(){return Ga(n,t.providerId)},!1)},ou.kc=function(t){return $a(this,"reauthViaRedirect",t,function(){return nt()},!0)},ou.sb=function(t,n){var e=this;this.b&&(this.b.cancel(),this.b=null);var i=null;return Qa(this,this.F().then(function(i){return Lr(e.c,{requestUri:t,sessionId:n,idToken:i})}).then(function(t){return i=za(e,t,"link"),Ja(e,t)}).then(function(){return i}))},ou.tb=function(t,n){var e=this;this.b&&(this.b.cancel(),this.b=null);var i=null;return Qa(this,nt().then(function(){return Xi(xr(e.c,{requestUri:t,sessionId:n}),e.uid)}).then(function(t){return i=za(e,t,"reauthenticate"),Ba(e,t),e.i=null,e.reload()}).then(function(){return i}),!0)},ou.bb=function(t){var n=this,e=null;return Qa(this,this.F().then(function(n){return e=n,void 0===t||D(t)?{}:Ri(new _i(t))}).then(function(t){return n.c.bb(e,t)}).then(function(t){if(n.email!=t)return n.reload()}).then(function(){}))},ou.toJSON=function(){return this.B()},ou.B=function(){var t={uid:this.uid,displayName:this.displayName,photoURL:this.photoURL,email:this.email,emailVerified:this.emailVerified,phoneNumber:this.phoneNumber,isAnonymous:this.isAnonymous,providerData:[],apiKey:this.G,appName:this.o,authDomain:this.w,stsTokenManager:this.h.B(),redirectEventId:this.Z||null};return this.metadata&&j(t,this.metadata.B()),Tu(this.providerData,function(n){t.providerData.push(Ei(n))}),t};var Nf={name:"redirectUser",C:"session"};as.prototype.g=function(){var t=this,n=cs("local");ds(this,function(){return nt().then(function(){return t.c&&"local"!=t.c.C?t.b.get(n,t.a):null}).then(function(e){if(e)return ss(t,"local").then(function(){t.c=n})})})};var Sf={name:"persistence",C:"session"};as.prototype.eb=function(t){var n=null,e=this;return yo(t),ds(this,function(){return t!=e.c.C?e.b.get(e.c,e.a).then(function(i){return n=i,ss(e,t)}).then(function(){if(e.c=cs(t),n)return e.b.set(e.c,n,e.a)}):nt()})},d(vs,fn),d(ms,Bt),d(gs,Bt),ou=vs.prototype,ou.eb=function(t){return t=this.h.eb(t),Rs(this,t)},ou.na=function(t){this.V===t||this.l||(this.V=t,gr(this.c,this.V),ln(this,new ms(this.$())))},ou.$=function(){return this.V},ou.Ac=function(){var t=uu.navigator;this.na(t?t.languages&&t.languages[0]||t.language||t.userLanguage||null:null)},ou.cc=function(t){this.A.push(t),br(this.c,au.SDK_VERSION?ii(au.SDK_VERSION,this.A):null),ln(this,new gs(this.A))},ou.Ka=function(){return O(this.A)},ou.toJSON=function(){return{apiKey:Ss(this).options.apiKey,authDomain:Ss(this).options.authDomain,appName:Ss(this).name,currentUser:Os(this)&&Os(this).B()}},ou.ob=function(t,n){switch(t){case"unknown":case"signInViaRedirect":return!0;case"signInViaPopup":return this.g==n&&!!this.f;default:return!1}},ou.fa=function(t,n,e,i){"signInViaPopup"==t&&this.g==i&&(e&&this.v?this.v(e):n&&!e&&this.f&&this.f(n),this.b&&(this.b.cancel(),this.b=null),delete this.f,delete this.v)},ou.va=function(t,n){return"signInViaRedirect"==t||"signInViaPopup"==t&&this.g==n&&this.f?l(this.Ob,this):null},ou.Ob=function(t,n){var e=this;t={requestUri:t,sessionId:n},this.b&&(this.b.cancel(),this.b=null);var i=null,r=null,o=Dr(e.c,t).then(function(t){return i=ur(t),r=ji(t),t});return t=e.U.then(function(){return o}).then(function(t){return Is(e,t)}).then(function(){return Ai({user:Os(e),credential:i,additionalUserInfo:r,operationType:"signIn"})}),Rs(this,t)},ou.sc=function(t){if(!si())return et(new Pi("operation-not-supported-in-this-environment"));var n=this,e=xi(t.providerId),i=di(),r=null;(!hi()||Qe())&&Ss(this).options.authDomain&&t.isOAuthProvider&&(r=Qr(Ss(this).options.authDomain,Ss(this).options.apiKey,Ss(this).name,"signInViaPopup",t,null,i,au.SDK_VERSION||null));var o=ze(r,e&&e.za,e&&e.ya);return e=ws(this).then(function(n){return $o(n,o,"signInViaPopup",t,i,!!r)}).then(function(){return new Z(function(t,e){n.fa("signInViaPopup",null,new Pi("cancelled-popup-request"),n.g),n.f=t,n.v=e,n.g=i,n.b=n.a.Ca(n,"signInViaPopup",o,i)})}).then(function(t){return o&&Ge(o),t?Ai(t):null}).s(function(t){throw o&&Ge(o),t}),Rs(this,e)},ou.tc=function(t){if(!si())return et(new Pi("operation-not-supported-in-this-environment"));var n=this;return Rs(this,ws(this).then(function(){return hs(n.h)}).then(function(){return n.a.Aa("signInViaRedirect",t)}))},ou.aa=function(){if(!si())return et(new Pi("operation-not-supported-in-this-environment"));var t=this;return Rs(this,ws(this).then(function(){return t.a.aa()}).then(function(t){return t?Ai(t):null}))},ou.hb=function(){var t=this;return Rs(this,this.i.then(function(){return Os(t)?(Ts(t,null),ls(t.h).then(function(){Cs(t)})):nt()}))},ou.uc=function(){var t=this;return ps(this.h,Ss(this).options.authDomain).then(function(n){if(!t.l){var e;if(e=Os(t)&&n){e=Os(t).uid;var i=n.uid;e=void 0!==e&&null!==e&&""!==e&&void 0!==i&&null!==i&&""!==i&&e==i}if(e)return qa(Os(t),n),Os(t).F();(Os(t)||n)&&(Ts(t,n),n&&(La(n),n.ca=t.G),t.a&&t.a.subscribe(t),Cs(t))}})},ou.ka=function(t){return fs(this.h,t)},ou.Pb=function(){Cs(this),this.ka(Os(this))},ou.Vb=function(){this.hb()},ou.Wb=function(){this.hb()},ou.Xb=function(t){var n=this;this.addAuthTokenListener(function(){t.next(Os(n))})},ou.Yb=function(t){var n=this;_s(this,function(){t.next(Os(n))})},ou.ec=function(t,n,e){var i=this;return this.W&&au.Promise.resolve().then(function(){u(t)?t(Os(i)):u(t.next)&&t.next(Os(i))}),this.Gb(t,n,e)},ou.dc=function(t,n,e){var i=this;return this.W&&au.Promise.resolve().then(function(){i.R=i.getUid(),u(t)?t(Os(i)):u(t.next)&&t.next(Os(i))}),this.Hb(t,n,e)},ou.Rb=function(t){var n=this;return Rs(this,this.i.then(function(){return Os(n)?Os(n).F(t).then(function(t){return{accessToken:t}}):null}))},ou.pc=function(t){var n=this;return this.i.then(function(){return Ns(n,Ur(n.c,rf,{token:t}))}).then(function(t){return t=t.user,Ka(t,"isAnonymous",!1),n.ka(t)}).then(function(){return Os(n)})},ou.qc=function(t,n){var e=this;return this.i.then(function(){return Ns(e,Ur(e.c,of,{email:t,password:n}))}).then(function(t){return t.user})},ou.Kb=function(t,n){var e=this;return this.i.then(function(){return Ns(e,Ur(e.c,Fh,{email:t,password:n}))}).then(function(t){return t.user})},ou.oc=function(t){return this.fb(t).then(function(t){return t.user})},ou.fb=function(t){var n=this;return this.i.then(function(){return Ns(n,t.wa(n.c))})},ou.gb=function(){var t=this;return this.i.then(function(){var n=Os(t);return n&&n.isAnonymous?n:Ns(t,t.c.gb()).then(function(n){return n=n.user,Ka(n,"isAnonymous",!0),t.ka(n)}).then(function(){return Os(t)})})},ou.getUid=function(){return Os(this)&&Os(this).uid||null},ou.Ib=function(t){this.addAuthTokenListener(t),0<++this.o&&Os(this)&&Pa(Os(this))},ou.mc=function(t){var n=this;Tu(this.m,function(e){e==t&&n.o--}),0>this.o&&(this.o=0),0==this.o&&Os(this)&&Ca(Os(this)),this.removeAuthTokenListener(t)},ou.addAuthTokenListener=function(t){var n=this;this.m.push(t),Rs(this,this.i.then(function(){n.l||A(n.m,t)&&t(Ps(n))}))},ou.removeAuthTokenListener=function(t){N(this.m,function(n){return n==t})},ou.delete=function(){this.l=!0;for(var t=0;t<this.N.length;t++)this.N[t].cancel("app-deleted");return this.N=[],this.h&&(t=this.h,So(t.b,t.a,this.ha)),this.a&&this.a.unsubscribe(this),au.Promise.resolve()},ou.Nb=function(t){return Rs(this,Er(this.c,t))},ou.Bc=function(t){return this.Ia(t).then(function(t){return t.data.email})},ou.Ta=function(t,n){return Rs(this,this.c.Ta(t,n).then(function(){}))},ou.Ia=function(t){return Rs(this,this.c.Ia(t).then(function(t){return new Oi(t)}))},ou.Sa=function(t){return Rs(this,this.c.Sa(t).then(function(){}))},ou.cb=function(t,n){var e=this;return Rs(this,nt().then(function(){return void 0===n||D(n)?{}:Ri(new _i(n))}).then(function(n){return e.c.cb(t,n)}).then(function(){}))},ou.rc=function(t,n){return Rs(this,ha(this,t,n,l(this.fb,this)))};var Of="First Second Third Fourth Fifth Sixth Seventh Eighth Ninth".split(" "),Pf="callback",Cf="expired-callback",_f="sitekey",Rf="size";ou=Ws.prototype,ou.xa=function(){var t=this;return this.c?this.c:this.c=Js(this,nt().then(function(){if(ui())return Ye();throw new Pi("operation-not-supported-in-this-environment","RecaptchaVerifier is only supported in a browser HTTP/HTTPS environment.")}).then(function(){return Zs(Qs(),t.o())}).then(function(){return Ur(t.u,zh,{})}).then(function(n){t.a[_f]=n.recaptchaSiteKey}).s(function(n){throw t.c=null,n}))},ou.render=function(){Ys(this);var t=this;return Js(this,this.xa().then(function(){if(null===t.b){var n=t.l;if(!t.h){var e=Dt(n);n=xt("DIV"),e.appendChild(n)}t.b=grecaptcha.render(n,t.a)}return t.b}))},ou.verify=function(){Ys(this);var t=this;return Js(this,this.render().then(function(n){return new Z(function(e){var i=grecaptcha.getResponse(n);if(i)e(i);else{var r=function(n){n&&(zs(t,r),e(n))};t.i.push(r),t.h&&grecaptcha.execute(t.b)}})}))},ou.reset=function(){Ys(this),null!==this.b&&grecaptcha.reset(this.b)},ou.clear=function(){Ys(this),this.m=!0,Qs().b--;for(var t=0;t<this.g.length;t++)this.g[t].cancel("RecaptchaVerifier instance has been destroyed.");if(!this.h){t=Dt(this.l);for(var n;n=t.firstChild;)t.removeChild(n)}};var Df=It("https://www.google.com/recaptcha/api.js?onload=%{onload}&render=explicit&hl=%{hl}"),Lf=null;d(tu,Ws),nu(vs.prototype,{Sa:{name:"applyActionCode",j:[Ls("code")]},Ia:{name:"checkActionCode",j:[Ls("code")]},Ta:{name:"confirmPasswordReset",j:[Ls("code"),Ls("newPassword")]},Kb:{name:"createUserWithEmailAndPassword",j:[Ls("email"),Ls("password")]},Nb:{name:"fetchProvidersForEmail",j:[Ls("email")]},aa:{name:"getRedirectResult",j:[]},dc:{name:"onAuthStateChanged",j:[Hs(js(),Us(),"nextOrObserver"),Us("opt_error",!0),Us("opt_completed",!0)]},ec:{name:"onIdTokenChanged",j:[Hs(js(),Us(),"nextOrObserver"),Us("opt_error",!0),Us("opt_completed",!0)]},cb:{name:"sendPasswordResetEmail",j:[Ls("email"),Hs(js("opt_actionCodeSettings",!0),Ms(null,!0),"opt_actionCodeSettings",!0)]},eb:{name:"setPersistence",j:[Ls("persistence")]},fb:{name:"signInAndRetrieveDataWithCredential",j:[qs()]},gb:{name:"signInAnonymously",j:[]},oc:{name:"signInWithCredential",j:[qs()]},pc:{name:"signInWithCustomToken",j:[Ls("token")]},qc:{name:"signInWithEmailAndPassword",j:[Ls("email"),Ls("password")]},rc:{name:"signInWithPhoneNumber",j:[Ls("phoneNumber"),Bs()]},sc:{name:"signInWithPopup",j:[Xs()]},tc:{name:"signInWithRedirect",j:[Xs()]},hb:{name:"signOut",j:[]},toJSON:{name:"toJSON",j:[Ls(null,!0)]},Ac:{name:"useDeviceLanguage",j:[]},Bc:{name:"verifyPasswordResetCode",j:[Ls("code")]}}),function(t,n){for(var e in n){var i=n[e].name;if(i!==e){var r=n[e].Jb;Object.defineProperty(t,i,{get:function(){return this[e]},set:function(t){Ds(i,[r],[t],!0),this[e]=t},enumerable:!0})}}}(vs.prototype,{lc:{name:"languageCode",Jb:Hs(Ls(),Ms(),"languageCode")}}),vs.Persistence=yf,vs.Persistence.LOCAL="local",vs.Persistence.SESSION="session",vs.Persistence.NONE="none",nu(ka.prototype,{delete:{name:"delete",j:[]},F:{name:"getIdToken",j:[xs()]},getToken:{name:"getToken",j:[xs()]},Xa:{name:"linkAndRetrieveDataWithCredential",j:[qs()]},Zb:{name:"linkWithCredential",j:[qs()]},$b:{name:"linkWithPhoneNumber",j:[Ls("phoneNumber"),Bs()]},ac:{name:"linkWithPopup",j:[Xs()]},bc:{name:"linkWithRedirect",j:[Xs()]},Za:{name:"reauthenticateAndRetrieveDataWithCredential",j:[qs()]},hc:{name:"reauthenticateWithCredential",j:[qs()]},ic:{name:"reauthenticateWithPhoneNumber",j:[Ls("phoneNumber"),Bs()]},jc:{name:"reauthenticateWithPopup",j:[Xs()]},kc:{name:"reauthenticateWithRedirect",j:[Xs()]},reload:{name:"reload",j:[]},bb:{name:"sendEmailVerification",j:[Hs(js("opt_actionCodeSettings",!0),Ms(null,!0),"opt_actionCodeSettings",!0)]},toJSON:{name:"toJSON",j:[Ls(null,!0)]},yc:{name:"unlink",j:[Ls("provider")]},kb:{name:"updateEmail",j:[Ls("email")]},lb:{name:"updatePassword",j:[Ls("password")]},zc:{name:"updatePhoneNumber",j:[qs("phone")]},mb:{name:"updateProfile",j:[js("profile")]}}),nu(Z.prototype,{s:{name:"catch"},then:{name:"then"}}),nu(ca.prototype,{confirm:{name:"confirm",j:[Ls("verificationCode")]}}),eu(ir,"credential",function(t,n){return new er(t,n)},[Ls("email"),Ls("password")]),nu(zi.prototype,{sa:{name:"addScope",j:[Ls("scope")]},Ba:{name:"setCustomParameters",j:[js("customOAuthParameters")]}}),eu(zi,"credential",Ji,[Hs(Ls(),js(),"token")]),nu(Yi.prototype,{sa:{name:"addScope",j:[Ls("scope")]},Ba:{name:"setCustomParameters",j:[js("customOAuthParameters")]}}),eu(Yi,"credential",$i,[Hs(Ls(),js(),"token")]),nu(Zi.prototype,{sa:{name:"addScope",j:[Ls("scope")]},Ba:{name:"setCustomParameters",j:[js("customOAuthParameters")]}}),eu(Zi,"credential",Qi,[Hs(Ls(),Hs(js(),Ms()),"idToken"),Hs(Ls(),Ms(),"accessToken",!0)]),nu(tr.prototype,{Ba:{name:"setCustomParameters",j:[js("customOAuthParameters")]}}),eu(tr,"credential",nr,[Hs(Ls(),js(),"token"),Ls("secret",!0)]),nu(Gi.prototype,{sa:{name:"addScope",j:[Ls("scope")]},credential:{name:"credential",j:[Hs(Ls(),Ms(),"idToken",!0),Hs(Ls(),Ms(),"accessToken",!0)]},Ba:{name:"setCustomParameters",j:[js("customOAuthParameters")]}}),eu(ar,"credential",sr,[Ls("verificationId"),Ls("verificationCode")]),nu(ar.prototype,{Qa:{name:"verifyPhoneNumber",j:[Ls("phoneNumber"),Bs()]}}),nu(Pi.prototype,{toJSON:{name:"toJSON",j:[Ls(null,!0)]}}),nu(pr.prototype,{toJSON:{name:"toJSON",j:[Ls(null,!0)]}}),nu(lr.prototype,{toJSON:{name:"toJSON",j:[Ls(null,!0)]}}),nu(tu.prototype,{clear:{name:"clear",j:[]},render:{name:"render",j:[]},verify:{name:"verify",j:[]}}),function(){if(void 0===au||!au.INTERNAL||!au.INTERNAL.registerService)throw Error("Cannot find the firebase namespace; be sure to include firebase-app.js before this library.");var t={Auth:vs,Error:Pi};eu(t,"EmailAuthProvider",ir,[]),eu(t,"FacebookAuthProvider",zi,[]),eu(t,"GithubAuthProvider",Yi,[]),eu(t,"GoogleAuthProvider",Zi,[]),eu(t,"TwitterAuthProvider",tr,[]),eu(t,"OAuthProvider",Gi,[Ls("providerId")]),eu(t,"PhoneAuthProvider",ar,[Fs()]),eu(t,"RecaptchaVerifier",tu,[Hs(Ls(),Vs(),"recaptchaContainer"),js("recaptchaParameters",!0),Ks()]),au.INTERNAL.registerService("auth",function(t,n){return t=new vs(t),n({INTERNAL:{getUid:l(t.getUid,t),getToken:l(t.Rb,t),addAuthTokenListener:l(t.Ib,t),removeAuthTokenListener:l(t.mc,t)}}),t},t,function(t,n){if("create"===t)try{n.auth()}catch(t){}}),au.INTERNAL.extendNamespace({User:ka})}()}).call(void 0!==t?t:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})}).call(n,e(19))}},[76])}catch(t){throw Error("Cannot instantiate firebase-auth.js - be sure to load firebase-app.js first.")}
-
-/*!
- * @license Firebase v4.6.2
- * Build: rev-cbb07d3
- * Terms: https://firebase.google.com/terms/
- */
-try{webpackJsonpFirebase([0],[,function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(0),i=n(0),o=n(0),a=n(0),s=n(0),u=n(0),l=n(12),h=n(0);t.LUIDGenerator=function(){var e=1;return function(){return e++}}(),t.sha1=function(e){var t=s.stringToByteArray(e),n=new a.Sha1;n.update(t);var r=n.digest();return o.base64.encodeByteArray(r)};var c=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];for(var n="",r=0;r<e.length;r++)Array.isArray(e[r])||e[r]&&"object"==typeof e[r]&&"number"==typeof e[r].length?n+=c.apply(null,e[r]):"object"==typeof e[r]?n+=u.stringify(e[r]):n+=e[r],n+=" ";return n};t.logger=null;var p=!0;t.enableLogging=function(e,n){r.assert(!n||!0===e||!1===e,"Can't turn on custom loggers persistently."),!0===e?("undefined"!=typeof console&&("function"==typeof console.log?t.logger=console.log.bind(console):"object"==typeof console.log&&(t.logger=function(e){console.log(e)})),n&&l.SessionStorage.set("logging_enabled",!0)):"function"==typeof e?t.logger=e:(t.logger=null,l.SessionStorage.remove("logging_enabled"))},t.log=function(){for(var e=[],n=0;n<arguments.length;n++)e[n]=arguments[n];if(!0===p&&(p=!1,null===t.logger&&!0===l.SessionStorage.get("logging_enabled")&&t.enableLogging(!0)),t.logger){var r=c.apply(null,e);t.logger(r)}},t.logWrapper=function(e){return function(){for(var n=[],r=0;r<arguments.length;r++)n[r]=arguments[r];t.log.apply(void 0,[e].concat(n))}},t.error=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];if("undefined"!=typeof console){var n="FIREBASE INTERNAL ERROR: "+c.apply(void 0,e);void 0!==console.error?console.error(n):console.log(n)}},t.fatal=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];var n=c.apply(void 0,e);throw Error("FIREBASE FATAL ERROR: "+n)},t.warn=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];if("undefined"!=typeof console){var n="FIREBASE WARNING: "+c.apply(void 0,e);void 0!==console.warn?console.warn(n):console.log(n)}},t.warnIfPageIsSecure=function(){"undefined"!=typeof window&&window.location&&window.location.protocol&&-1!==window.location.protocol.indexOf("https:")&&t.warn("Insecure Firebase access from a secure page. Please use https in calls to new Firebase().")},t.warnAboutUnsupportedMethod=function(e){t.warn(e+" is unsupported and will likely change soon.  Please do not use.")},t.isInvalidJSONNumber=function(e){return"number"==typeof e&&(e!=e||e==Number.POSITIVE_INFINITY||e==Number.NEGATIVE_INFINITY)},t.executeWhenDOMReady=function(e){if(h.isNodeSdk()||"complete"===document.readyState)e();else{var t=!1,n=function(){if(!document.body)return void setTimeout(n,Math.floor(10));t||(t=!0,e())};document.addEventListener?(document.addEventListener("DOMContentLoaded",n,!1),window.addEventListener("load",n,!1)):document.attachEvent&&(document.attachEvent("onreadystatechange",function(){"complete"===document.readyState&&n()}),window.attachEvent("onload",n))}},t.MIN_NAME="[MIN_NAME]",t.MAX_NAME="[MAX_NAME]",t.nameCompare=function(e,n){if(e===n)return 0;if(e===t.MIN_NAME||n===t.MAX_NAME)return-1;if(n===t.MIN_NAME||e===t.MAX_NAME)return 1;var r=t.tryParseInt(e),i=t.tryParseInt(n);return null!==r?null!==i?r-i==0?e.length-n.length:r-i:-1:null!==i?1:e<n?-1:1},t.stringCompare=function(e,t){return e===t?0:e<t?-1:1},t.requireKey=function(e,t){if(t&&e in t)return t[e];throw Error("Missing required key ("+e+") in object: "+u.stringify(t))},t.ObjectToUniqueKey=function(e){if("object"!=typeof e||null===e)return u.stringify(e);var n=[];for(var r in e)n.push(r);n.sort();for(var i="{",o=0;o<n.length;o++)0!==o&&(i+=","),i+=u.stringify(n[o]),i+=":",i+=t.ObjectToUniqueKey(e[n[o]]);return i+="}"},t.splitStringBySize=function(e,t){var n=e.length;if(n<=t)return[e];for(var r=[],i=0;i<n;i+=t)i+t>n?r.push(e.substring(i,n)):r.push(e.substring(i,i+t));return r},t.each=function(e,t){if(Array.isArray(e))for(var n=0;n<e.length;++n)t(n,e[n]);else i.forEach(e,function(e,n){return t(n,e)})},t.bindCallback=function(e,t){return t?e.bind(t):e},t.doubleToIEEE754String=function(e){r.assert(!t.isInvalidJSONNumber(e),"Invalid JSON number");var n,i,o,a,s,u,l;for(0===e?(i=0,o=0,n=1/e==-1/0?1:0):(n=e<0,e=Math.abs(e),e>=Math.pow(2,-1022)?(a=Math.min(Math.floor(Math.log(e)/Math.LN2),1023),i=a+1023,o=Math.round(e*Math.pow(2,52-a)-Math.pow(2,52))):(i=0,o=Math.round(e/Math.pow(2,-1074)))),u=[],s=52;s;s-=1)u.push(o%2?1:0),o=Math.floor(o/2);for(s=11;s;s-=1)u.push(i%2?1:0),i=Math.floor(i/2);u.push(n?1:0),u.reverse(),l=u.join("");var h="";for(s=0;s<64;s+=8){var c=parseInt(l.substr(s,8),2).toString(16);1===c.length&&(c="0"+c),h+=c}return h.toLowerCase()},t.isChromeExtensionContentScript=function(){return!("object"!=typeof window||!window.chrome||!window.chrome.extension||/^chrome/.test(window.location.href))},t.isWindowsStoreApp=function(){return"object"==typeof Windows&&"object"==typeof Windows.UI},t.errorForServerCode=function(e,t){var n="Unknown Error";"too_big"===e?n="The data requested exceeds the maximum size that can be accessed with a single request.":"permission_denied"==e?n="Client doesn't have permission to access the desired data.":"unavailable"==e&&(n="The service is unavailable");var r=Error(e+" at "+t.path+": "+n);return r.code=e.toUpperCase(),r},t.e=RegExp("^-?\\d{1,10}$"),t.tryParseInt=function(e){if(t.e.test(e)){var n=+e;if(n>=-2147483648&&n<=2147483647)return n}return null},t.exceptionGuard=function(e){try{e()}catch(e){setTimeout(function(){var n=e.stack||"";throw t.warn("Exception was thrown by user callback.",n),e},Math.floor(0))}},t.callUserCallback=function(e){for(var n=[],r=1;r<arguments.length;r++)n[r-1]=arguments[r];"function"==typeof e&&t.exceptionGuard(function(){e.apply(void 0,n)})},t.beingCrawled=function(){return("object"==typeof window&&window.navigator&&window.navigator.userAgent||"").search(/googlebot|google webmaster tools|bingbot|yahoo! slurp|baiduspider|yandexbot|duckduckbot/i)>=0},t.exportPropGetter=function(e,t,n){Object.defineProperty(e,t,{get:n})},t.setTimeoutNonBlocking=function(e,t){var n=setTimeout(e,t);return"object"==typeof n&&n.unref&&n.unref(),n}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(1),i=n(0),o=function(){function e(e,t){if(void 0===t){this.n=e.split("/");for(var n=0,r=0;r<this.n.length;r++)this.n[r].length>0&&(this.n[n]=this.n[r],n++);this.n.length=n,this.i=0}else this.n=e,this.i=t}return Object.defineProperty(e,"Empty",{get:function(){return new e("")},enumerable:!0,configurable:!0}),e.prototype.getFront=function(){return this.i>=this.n.length?null:this.n[this.i]},e.prototype.getLength=function(){return this.n.length-this.i},e.prototype.popFront=function(){var t=this.i;return t<this.n.length&&t++,new e(this.n,t)},e.prototype.getBack=function(){return this.i<this.n.length?this.n[this.n.length-1]:null},e.prototype.toString=function(){for(var e="",t=this.i;t<this.n.length;t++)""!==this.n[t]&&(e+="/"+this.n[t]);return e||"/"},e.prototype.toUrlEncodedString=function(){for(var e="",t=this.i;t<this.n.length;t++)""!==this.n[t]&&(e+="/"+encodeURIComponent(this.n[t]+""));return e||"/"},e.prototype.slice=function(e){return void 0===e&&(e=0),this.n.slice(this.i+e)},e.prototype.parent=function(){if(this.i>=this.n.length)return null;for(var t=[],n=this.i;n<this.n.length-1;n++)t.push(this.n[n]);return new e(t,0)},e.prototype.child=function(t){for(var n=[],r=this.i;r<this.n.length;r++)n.push(this.n[r]);if(t instanceof e)for(var r=t.i;r<t.n.length;r++)n.push(t.n[r]);else for(var i=t.split("/"),r=0;r<i.length;r++)i[r].length>0&&n.push(i[r]);return new e(n,0)},e.prototype.isEmpty=function(){return this.i>=this.n.length},e.relativePath=function(t,n){var r=t.getFront(),i=n.getFront();if(null===r)return n;if(r===i)return e.relativePath(t.popFront(),n.popFront());throw Error("INTERNAL ERROR: innerPath ("+n+") is not within outerPath ("+t+")")},e.comparePaths=function(e,t){for(var n=e.slice(),i=t.slice(),o=0;o<n.length&&o<i.length;o++){var a=r.nameCompare(n[o],i[o]);if(0!==a)return a}return n.length===i.length?0:n.length<i.length?-1:1},e.prototype.equals=function(e){if(this.getLength()!==e.getLength())return!1;for(var t=this.i,n=e.i;t<=this.n.length;t++,n++)if(this.n[t]!==e.n[n])return!1;return!0},e.prototype.contains=function(e){var t=this.i,n=e.i;if(this.getLength()>e.getLength())return!1;for(;t<this.n.length;){if(this.n[t]!==e.n[n])return!1;++t,++n}return!0},e}();t.Path=o;var a=function(){function e(e,t){this.o=t,this.u=e.slice(),this.l=Math.max(1,this.u.length);for(var n=0;n<this.u.length;n++)this.l+=i.stringLength(this.u[n]);this.f()}return Object.defineProperty(e,"MAX_PATH_DEPTH",{get:function(){return 32},enumerable:!0,configurable:!0}),Object.defineProperty(e,"MAX_PATH_LENGTH_BYTES",{get:function(){return 768},enumerable:!0,configurable:!0}),e.prototype.push=function(e){this.u.length>0&&(this.l+=1),this.u.push(e),this.l+=i.stringLength(e),this.f()},e.prototype.pop=function(){var e=this.u.pop();this.l-=i.stringLength(e),this.u.length>0&&(this.l-=1)},e.prototype.f=function(){if(this.l>e.MAX_PATH_LENGTH_BYTES)throw Error(this.o+"has a key path longer than "+e.MAX_PATH_LENGTH_BYTES+" bytes ("+this.l+").");if(this.u.length>e.MAX_PATH_DEPTH)throw Error(this.o+"path specified exceeds the maximum depth that can be written ("+e.MAX_PATH_DEPTH+") or object contains a cycle "+this.toErrorString())},e.prototype.toErrorString=function(){return 0==this.u.length?"":"in property '"+this.u.join(".")+"'"},e}();t.ValidationPath=a},function(e,t,n){"use strict";function r(e){a=e}function i(e){s=e}var o=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(t,"__esModule",{value:!0});var a,s,u=n(14),l=n(1),h=n(5),c=n(15);t.setNodeFromJSON=r,t.setMaxNode=i;var p=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return o(t,e),t.prototype.compare=function(e,t){var n=e.node.getPriority(),r=t.node.getPriority(),i=n.compareTo(r);return 0===i?l.nameCompare(e.name,t.name):i},t.prototype.isDefinedOn=function(e){return!e.getPriority().isEmpty()},t.prototype.indexedValueChanged=function(e,t){return!e.getPriority().equals(t.getPriority())},t.prototype.minPost=function(){return h.NamedNode.MIN},t.prototype.maxPost=function(){return new h.NamedNode(l.MAX_NAME,new c.LeafNode("[PRIORITY-POST]",s))},t.prototype.makePost=function(e,t){var n=a(e);return new h.NamedNode(t,new c.LeafNode("[PRIORITY-POST]",n))},t.prototype.toString=function(){return".priority"},t}(u.Index);t.PriorityIndex=p,t.PRIORITY_INDEX=new p},function(e,t,n){"use strict";var r=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(t,"__esModule",{value:!0});var i,o=n(0),a=n(1),s=n(16),u=n(5),l=n(37),h=n(3),c=n(10),p=n(39),d=n(15),f=n(41),_=function(){function e(e,t,n){this._=e,this.y=t,this.g=n,this.m=null,this.y&&l.validatePriorityNode(this.y),this._.isEmpty()&&o.assert(!this.y||this.y.isEmpty(),"An empty node cannot have a priority")}return Object.defineProperty(e,"EMPTY_NODE",{get:function(){return i||(i=new e(new s.SortedMap(f.NAME_COMPARATOR),null,p.IndexMap.Default))},enumerable:!0,configurable:!0}),e.prototype.isLeafNode=function(){return!1},e.prototype.getPriority=function(){return this.y||i},e.prototype.updatePriority=function(t){return this._.isEmpty()?this:new e(this._,t,this.g)},e.prototype.getImmediateChild=function(e){if(".priority"===e)return this.getPriority();var t=this._.get(e);return null===t?i:t},e.prototype.getChild=function(e){var t=e.getFront();return null===t?this:this.getImmediateChild(t).getChild(e.popFront())},e.prototype.hasChild=function(e){return null!==this._.get(e)},e.prototype.updateImmediateChild=function(t,n){if(o.assert(n,"We should always be passing snapshot nodes"),".priority"===t)return this.updatePriority(n);var r=new u.NamedNode(t,n),a=void 0,s=void 0,l=void 0;return n.isEmpty()?(a=this._.remove(t),s=this.g.removeFromIndexes(r,this._)):(a=this._.insert(t,n),s=this.g.addToIndexes(r,this._)),l=a.isEmpty()?i:this.y,new e(a,l,s)},e.prototype.updateChild=function(e,t){var n=e.getFront();if(null===n)return t;o.assert(".priority"!==e.getFront()||1===e.getLength(),".priority must be the last token in a path");var r=this.getImmediateChild(n).updateChild(e.popFront(),t);return this.updateImmediateChild(n,r)},e.prototype.isEmpty=function(){return this._.isEmpty()},e.prototype.numChildren=function(){return this._.count()},e.prototype.val=function(t){if(this.isEmpty())return null;var n={},r=0,i=0,o=!0;if(this.forEachChild(h.PRIORITY_INDEX,function(a,s){n[a]=s.val(t),r++,o&&e.e.test(a)?i=Math.max(i,+a):o=!1}),!t&&o&&i<2*r){var a=[];for(var s in n)a[s]=n[s];return a}return t&&!this.getPriority().isEmpty()&&(n[".priority"]=this.getPriority().val()),n},e.prototype.hash=function(){if(null===this.m){var e="";this.getPriority().isEmpty()||(e+="priority:"+l.priorityHashText(this.getPriority().val())+":"),this.forEachChild(h.PRIORITY_INDEX,function(t,n){var r=n.hash();""!==r&&(e+=":"+t+":"+r)}),this.m=""===e?"":a.sha1(e)}return this.m},e.prototype.getPredecessorChildName=function(e,t,n){var r=this.C(n);if(r){var i=r.getPredecessorKey(new u.NamedNode(e,t));return i?i.name:null}return this._.getPredecessorKey(e)},e.prototype.getFirstChildName=function(e){var t=this.C(e);if(t){var n=t.minKey();return n&&n.name}return this._.minKey()},e.prototype.getFirstChild=function(e){var t=this.getFirstChildName(e);return t?new u.NamedNode(t,this._.get(t)):null},e.prototype.getLastChildName=function(e){var t=this.C(e);if(t){var n=t.maxKey();return n&&n.name}return this._.maxKey()},e.prototype.getLastChild=function(e){var t=this.getLastChildName(e);return t?new u.NamedNode(t,this._.get(t)):null},e.prototype.forEachChild=function(e,t){var n=this.C(e);return n?n.inorderTraversal(function(e){return t(e.name,e.node)}):this._.inorderTraversal(t)},e.prototype.getIterator=function(e){return this.getIteratorFrom(e.minPost(),e)},e.prototype.getIteratorFrom=function(e,t){var n=this.C(t);if(n)return n.getIteratorFrom(e,function(e){return e});for(var r=this._.getIteratorFrom(e.name,u.NamedNode.Wrap),i=r.peek();null!=i&&t.compare(i,e)<0;)r.getNext(),i=r.peek();return r},e.prototype.getReverseIterator=function(e){return this.getReverseIteratorFrom(e.maxPost(),e)},e.prototype.getReverseIteratorFrom=function(e,t){var n=this.C(t);if(n)return n.getReverseIteratorFrom(e,function(e){return e});for(var r=this._.getReverseIteratorFrom(e.name,u.NamedNode.Wrap),i=r.peek();null!=i&&t.compare(i,e)>0;)r.getNext(),i=r.peek();return r},e.prototype.compareTo=function(e){return this.isEmpty()?e.isEmpty()?0:-1:e.isLeafNode()||e.isEmpty()?1:e===t.MAX_NODE?-1:0},e.prototype.withIndex=function(t){if(t===c.KEY_INDEX||this.g.hasIndex(t))return this;var n=this.g.addIndex(t,this._);return new e(this._,this.y,n)},e.prototype.isIndexed=function(e){return e===c.KEY_INDEX||this.g.hasIndex(e)},e.prototype.equals=function(e){if(e===this)return!0;if(e.isLeafNode())return!1;var t=e;if(this.getPriority().equals(t.getPriority())){if(this._.count()===t._.count()){for(var n=this.getIterator(h.PRIORITY_INDEX),r=t.getIterator(h.PRIORITY_INDEX),i=n.getNext(),o=r.getNext();i&&o;){if(i.name!==o.name||!i.node.equals(o.node))return!1;i=n.getNext(),o=r.getNext()}return null===i&&null===o}return!1}return!1},e.prototype.C=function(e){return e===c.KEY_INDEX?null:this.g.get(""+e)},e.e=/^(0|[1-9]\d*)$/,e}();t.ChildrenNode=_;var y=function(e){function t(){return e.call(this,new s.SortedMap(f.NAME_COMPARATOR),_.EMPTY_NODE,p.IndexMap.Default)||this}return r(t,e),t.prototype.compareTo=function(e){return e===this?0:1},t.prototype.equals=function(e){return e===this},t.prototype.getPriority=function(){return this},t.prototype.getImmediateChild=function(e){return _.EMPTY_NODE},t.prototype.isEmpty=function(){return!1},t}(_);t.MaxNode=y,t.MAX_NODE=new y,Object.defineProperties(u.NamedNode,{MIN:{value:new u.NamedNode(a.MIN_NAME,_.EMPTY_NODE)},MAX:{value:new u.NamedNode(a.MAX_NAME,t.MAX_NODE)}}),c.KeyIndex.__EMPTY_NODE=_.EMPTY_NODE,d.LeafNode.__childrenNodeConstructor=_,l.setMaxNode(t.MAX_NODE),h.setMaxNode(t.MAX_NODE)},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){this.name=e,this.node=t}return e.Wrap=function(t,n){return new e(t,n)},e}();t.NamedNode=r},,function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(2),i=n(0),o=n(1),a=n(0),s=n(0);t.N=/[\[\].#$\/\u0000-\u001F\u007F]/,t.P=/[\[\].#$\u0000-\u001F\u007F]/,t.S=10485760,t.isValidKey=function(e){return"string"==typeof e&&0!==e.length&&!t.N.test(e)},t.isValidPathString=function(e){return"string"==typeof e&&0!==e.length&&!t.P.test(e)},t.isValidRootPathString=function(e){return e&&(e=e.replace(/^\/*\.info(\/|$)/,"/")),t.isValidPathString(e)},t.isValidPriority=function(e){return null===e||"string"==typeof e||"number"==typeof e&&!o.isInvalidJSONNumber(e)||e&&"object"==typeof e&&i.contains(e,".sv")},t.validateFirebaseDataArg=function(e,n,r,i,o){o&&void 0===r||t.validateFirebaseData(a.errorPrefix(e,n,o),r,i)},t.validateFirebaseData=function(e,n,a){var u=a instanceof r.Path?new r.ValidationPath(a,e):a;if(void 0===n)throw Error(e+"contains undefined "+u.toErrorString());if("function"==typeof n)throw Error(e+"contains a function "+u.toErrorString()+" with contents = "+n);if(o.isInvalidJSONNumber(n))throw Error(e+"contains "+n+" "+u.toErrorString());if("string"==typeof n&&n.length>t.S/3&&s.stringLength(n)>t.S)throw Error(e+"contains a string greater than "+t.S+" utf8 bytes "+u.toErrorString()+" ('"+n.substring(0,50)+"...')");if(n&&"object"==typeof n){var l=!1,h=!1;if(i.forEach(n,function(n,r){if(".value"===n)l=!0;else if(".priority"!==n&&".sv"!==n&&(h=!0,!t.isValidKey(n)))throw Error(e+" contains an invalid key ("+n+") "+u.toErrorString()+'.  Keys must be non-empty strings and can\'t contain ".", "#", "$", "/", "[", or "]"');u.push(n),t.validateFirebaseData(e,r,u),u.pop()}),l&&h)throw Error(e+' contains ".value" child '+u.toErrorString()+" in addition to actual children.")}},t.validateFirebaseMergePaths=function(e,n){var i,o;for(i=0;i<n.length;i++){o=n[i];for(var a=o.slice(),s=0;s<a.length;s++)if(".priority"===a[s]&&s===a.length-1);else if(!t.isValidKey(a[s]))throw Error(e+"contains an invalid key ("+a[s]+") in path "+o+'. Keys must be non-empty strings and can\'t contain ".", "#", "$", "/", "[", or "]"')}n.sort(r.Path.comparePaths);var u=null;for(i=0;i<n.length;i++){if(o=n[i],null!==u&&u.contains(o))throw Error(e+"contains a path "+u+" that is ancestor of another path "+o);u=o}},t.validateFirebaseMergeDataArg=function(e,n,o,s,u){if(!u||void 0!==o){var l=a.errorPrefix(e,n,u);if(!o||"object"!=typeof o||Array.isArray(o))throw Error(l+" must be an object containing the children to replace.");var h=[];i.forEach(o,function(e,n){var i=new r.Path(e);if(t.validateFirebaseData(l,n,s.child(i)),".priority"===i.getBack()&&!t.isValidPriority(n))throw Error(l+"contains an invalid value for '"+i+"', which must be a valid Firebase priority (a string, finite number, server value, or null).");h.push(i)}),t.validateFirebaseMergePaths(l,h)}},t.validatePriority=function(e,n,r,i){if(!i||void 0!==r){if(o.isInvalidJSONNumber(r))throw Error(a.errorPrefix(e,n,i)+"is "+r+", but must be a valid Firebase priority (a string, finite number, server value, or null).");if(!t.isValidPriority(r))throw Error(a.errorPrefix(e,n,i)+"must be a valid Firebase priority (a string, finite number, server value, or null).")}},t.validateEventType=function(e,t,n,r){if(!r||void 0!==n)switch(n){case"value":case"child_added":case"child_removed":case"child_changed":case"child_moved":break;default:throw Error(a.errorPrefix(e,t,r)+'must be a valid event type = "value", "child_added", "child_removed", "child_changed", or "child_moved".')}},t.validateKey=function(e,n,r,i){if(!(i&&void 0===r||t.isValidKey(r)))throw Error(a.errorPrefix(e,n,i)+'was an invalid key = "'+r+'".  Firebase keys must be non-empty strings and can\'t contain ".", "#", "$", "/", "[", or "]").')},t.validatePathString=function(e,n,r,i){if(!(i&&void 0===r||t.isValidPathString(r)))throw Error(a.errorPrefix(e,n,i)+'was an invalid path = "'+r+'". Paths must be non-empty strings and can\'t contain ".", "#", "$", "[", or "]"')},t.validateRootPathString=function(e,n,r,i){r&&(r=r.replace(/^\/*\.info(\/|$)/,"/")),t.validatePathString(e,n,r,i)},t.validateWritablePath=function(e,t){if(".info"===t.getFront())throw Error(e+" failed = Can't modify data under /.info/")},t.validateUrl=function(e,n,r){var i=""+r.path;if("string"!=typeof r.repoInfo.host||0===r.repoInfo.host.length||!t.isValidKey(r.repoInfo.namespace)||0!==i.length&&!t.isValidRootPathString(i))throw Error(a.errorPrefix(e,n,!1)+'must be a valid firebase URL and the path can\'t contain ".", "#", "$", "[", or "]".')},t.validateCredential=function(e,t,n,r){if((!r||void 0!==n)&&"string"!=typeof n)throw Error(a.errorPrefix(e,t,r)+"must be a valid credential (a string).")},t.validateBoolean=function(e,t,n,r){if((!r||void 0!==n)&&"boolean"!=typeof n)throw Error(a.errorPrefix(e,t,r)+"must be a boolean.")},t.validateString=function(e,t,n,r){if((!r||void 0!==n)&&"string"!=typeof n)throw Error(a.errorPrefix(e,t,r)+"must be a valid string.")},t.validateObject=function(e,t,n,r){if(!(r&&void 0===n||n&&"object"==typeof n&&null!==n))throw Error(a.errorPrefix(e,t,r)+"must be a valid object.")},t.validateObjectContainsKey=function(e,t,n,r,o,s){if(!n||"object"!=typeof n||!i.contains(n,r)){if(o)return;throw Error(a.errorPrefix(e,t,o)+'must contain the key "'+r+'"')}if(s){var u=i.safeGet(n,r);if("number"===s&&"number"!=typeof u||"string"===s&&"string"!=typeof u||"boolean"===s&&"boolean"!=typeof u||"function"===s&&"function"!=typeof u||"object"===s&&"object"!=typeof u&&u)throw o?Error(a.errorPrefix(e,t,o)+'contains invalid value for key "'+r+'" (must be of type "'+s+'")'):Error(a.errorPrefix(e,t,o)+'must contain the key "'+r+'" with type "'+s+'"')}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(0);!function(e){e[e.OVERWRITE=0]="OVERWRITE",e[e.MERGE=1]="MERGE",e[e.ACK_USER_WRITE=2]="ACK_USER_WRITE",e[e.LISTEN_COMPLETE=3]="LISTEN_COMPLETE"}(t.OperationType||(t.OperationType={}));var i=function(){function e(e,t,n,i){this.fromUser=e,this.fromServer=t,this.queryId=n,this.tagged=i,r.assert(!i||t,"Tagged queries must be from server.")}return e.User=new e(!0,!1,null,!1),e.Server=new e(!1,!0,null,!1),e.forServerTaggedQuery=function(t){return new e(!1,!0,t,!0)},e}();t.OperationSource=i},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t,n,r,i){this.type=e,this.snapshotNode=t,this.childName=n,this.oldSnap=r,this.prevName=i}return e.valueChange=function(t){return new e(e.VALUE,t)},e.childAddedChange=function(t,n){return new e(e.CHILD_ADDED,n,t)},e.childRemovedChange=function(t,n){return new e(e.CHILD_REMOVED,n,t)},e.childChangedChange=function(t,n,r){return new e(e.CHILD_CHANGED,n,t,r)},e.childMovedChange=function(t,n){return new e(e.CHILD_MOVED,n,t)},e.CHILD_ADDED="child_added",e.CHILD_REMOVED="child_removed",e.CHILD_CHANGED="child_changed",e.CHILD_MOVED="child_moved",e.VALUE="value",e}();t.Change=r},function(e,t,n){"use strict";var r=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(t,"__esModule",{value:!0});var i,o=n(14),a=n(5),s=n(1),u=n(0),l=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return r(t,e),Object.defineProperty(t,"__EMPTY_NODE",{get:function(){return i},set:function(e){i=e},enumerable:!0,configurable:!0}),t.prototype.compare=function(e,t){return s.nameCompare(e.name,t.name)},t.prototype.isDefinedOn=function(e){throw u.assertionError("KeyIndex.isDefinedOn not expected to be called.")},t.prototype.indexedValueChanged=function(e,t){return!1},t.prototype.minPost=function(){return a.NamedNode.MIN},t.prototype.maxPost=function(){return new a.NamedNode(s.MAX_NAME,i)},t.prototype.makePost=function(e,t){return u.assert("string"==typeof e,"KeyIndex indexValue must always be a string."),new a.NamedNode(e,i)},t.prototype.toString=function(){return".key"},t}(o.Index);t.KeyIndex=l,t.KEY_INDEX=new l},function(e,t,n){"use strict";function r(e,t){if(void 0===t&&(t=null),null===e)return i.ChildrenNode.EMPTY_NODE;if("object"==typeof e&&".priority"in e&&(t=e[".priority"]),u.assert(null===t||"string"==typeof t||"number"==typeof t||"object"==typeof t&&".sv"in t,"Invalid priority type found: "+typeof t),"object"==typeof e&&".value"in e&&null!==e[".value"]&&(e=e[".value"]),"object"!=typeof e||".sv"in e){var n=e;return new o.LeafNode(n,r(t))}if(e instanceof Array||!d){var f=i.ChildrenNode.EMPTY_NODE,_=e;return s.forEach(_,function(e,t){if(s.contains(_,e)&&"."!==e.substring(0,1)){var n=r(t);!n.isLeafNode()&&n.isEmpty()||(f=f.updateImmediateChild(e,n))}}),f.updatePriority(r(t))}var y=[],v=!1,g=e;if(s.forEach(g,function(e,t){if("string"!=typeof e||"."!==e.substring(0,1)){var n=r(g[e]);n.isEmpty()||(v=v||!n.getPriority().isEmpty(),y.push(new a.NamedNode(e,n)))}}),0==y.length)return i.ChildrenNode.EMPTY_NODE;var m=l.buildChildSet(y,h.NAME_ONLY_COMPARATOR,function(e){return e.name},h.NAME_COMPARATOR);if(v){var C=l.buildChildSet(y,p.PRIORITY_INDEX.getCompare());return new i.ChildrenNode(m,r(t),new c.IndexMap({".priority":C},{".priority":p.PRIORITY_INDEX}))}return new i.ChildrenNode(m,r(t),c.IndexMap.Default)}Object.defineProperty(t,"__esModule",{value:!0});var i=n(4),o=n(15),a=n(5),s=n(0),u=n(0),l=n(40),h=n(41),c=n(39),p=n(3),d=!0;t.nodeFromJSON=r,p.setNodeFromJSON(r)},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(80),i=n(81),o=function(e){try{if("undefined"!=typeof window&&void 0!==window[e]){var t=window[e];return t.setItem("firebase:sentinel","cache"),t.removeItem("firebase:sentinel"),new r.DOMStorageWrapper(t)}}catch(e){}return new i.MemoryStorage};t.PersistentStorage=o("localStorage"),t.SessionStorage=o("sessionStorage")},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.PROTOCOL_VERSION="5",t.VERSION_PARAM="v",t.TRANSPORT_SESSION_PARAM="s",t.REFERER_PARAM="r",t.FORGE_REF="f",t.FORGE_DOMAIN="firebaseio.com",t.LAST_SESSION_PARAM="ls",t.WEBSOCKET="websocket",t.LONG_POLLING="long_polling"},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(5),i=n(1),o=function(){function e(){}return e.prototype.getCompare=function(){return this.compare.bind(this)},e.prototype.indexedValueChanged=function(e,t){var n=new r.NamedNode(i.MIN_NAME,e),o=new r.NamedNode(i.MIN_NAME,t);return 0!==this.compare(n,o)},e.prototype.minPost=function(){return r.NamedNode.MIN},e}();t.Index=o},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r,i=n(0),o=n(1),a=n(37),s=function(){function e(t,n){void 0===n&&(n=e.__childrenNodeConstructor.EMPTY_NODE),this.T=t,this.y=n,this.m=null,i.assert(void 0!==this.T&&null!==this.T,"LeafNode shouldn't be created with null/undefined value."),a.validatePriorityNode(this.y)}return Object.defineProperty(e,"__childrenNodeConstructor",{get:function(){return r},set:function(e){r=e},enumerable:!0,configurable:!0}),e.prototype.isLeafNode=function(){return!0},e.prototype.getPriority=function(){return this.y},e.prototype.updatePriority=function(t){return new e(this.T,t)},e.prototype.getImmediateChild=function(t){return".priority"===t?this.y:e.__childrenNodeConstructor.EMPTY_NODE},e.prototype.getChild=function(t){return t.isEmpty()?this:".priority"===t.getFront()?this.y:e.__childrenNodeConstructor.EMPTY_NODE},e.prototype.hasChild=function(){return!1},e.prototype.getPredecessorChildName=function(e,t){return null},e.prototype.updateImmediateChild=function(t,n){return".priority"===t?this.updatePriority(n):n.isEmpty()&&".priority"!==t?this:e.__childrenNodeConstructor.EMPTY_NODE.updateImmediateChild(t,n).updatePriority(this.y)},e.prototype.updateChild=function(t,n){var r=t.getFront();return null===r?n:n.isEmpty()&&".priority"!==r?this:(i.assert(".priority"!==r||1===t.getLength(),".priority must be the last token in a path"),this.updateImmediateChild(r,e.__childrenNodeConstructor.EMPTY_NODE.updateChild(t.popFront(),n)))},e.prototype.isEmpty=function(){return!1},e.prototype.numChildren=function(){return 0},e.prototype.forEachChild=function(e,t){return!1},e.prototype.val=function(e){return e&&!this.getPriority().isEmpty()?{".value":this.getValue(),".priority":this.getPriority().val()}:this.getValue()},e.prototype.hash=function(){if(null===this.m){var e="";this.y.isEmpty()||(e+="priority:"+a.priorityHashText(this.y.val())+":");var t=typeof this.T;e+=t+":",e+="number"===t?o.doubleToIEEE754String(this.T):this.T,this.m=o.sha1(e)}return this.m},e.prototype.getValue=function(){return this.T},e.prototype.compareTo=function(t){return t===e.__childrenNodeConstructor.EMPTY_NODE?1:t instanceof e.__childrenNodeConstructor?-1:(i.assert(t.isLeafNode(),"Unknown node type"),this.w(t))},e.prototype.w=function(t){var n=typeof t.T,r=typeof this.T,o=e.VALUE_TYPE_ORDER.indexOf(n),a=e.VALUE_TYPE_ORDER.indexOf(r);return i.assert(o>=0,"Unknown leaf type: "+n),i.assert(a>=0,"Unknown leaf type: "+r),o===a?"object"===r?0:this.T<t.T?-1:this.T===t.T?0:1:a-o},e.prototype.withIndex=function(){return this},e.prototype.isIndexed=function(){return!0},e.prototype.equals=function(e){if(e===this)return!0;if(e.isLeafNode()){var t=e;return this.T===t.T&&this.y.equals(t.y)}return!1},e.VALUE_TYPE_ORDER=["object","boolean","number","string"],e}();t.LeafNode=s},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t,n,r,i){void 0===i&&(i=null),this.I=r,this.R=i,this.O=[];for(var o=1;!e.isEmpty();)if(e=e,o=t?n(e.key,t):1,r&&(o*=-1),o<0)e=this.I?e.left:e.right;else{if(0===o){this.O.push(e);break}this.O.push(e),e=this.I?e.right:e.left}}return e.prototype.getNext=function(){if(0===this.O.length)return null;var e,t=this.O.pop();if(e=this.R?this.R(t.key,t.value):{key:t.key,value:t.value},this.I)for(t=t.left;!t.isEmpty();)this.O.push(t),t=t.right;else for(t=t.right;!t.isEmpty();)this.O.push(t),t=t.left;return e},e.prototype.hasNext=function(){return this.O.length>0},e.prototype.peek=function(){if(0===this.O.length)return null;var e=this.O[this.O.length-1];return this.R?this.R(e.key,e.value):{key:e.key,value:e.value}},e}();t.SortedMapIterator=r;var i=function(){function e(t,n,r,i,o){this.key=t,this.value=n,this.color=null!=r?r:e.RED,this.left=null!=i?i:a.EMPTY_NODE,this.right=null!=o?o:a.EMPTY_NODE}return e.prototype.copy=function(t,n,r,i,o){return new e(null!=t?t:this.key,null!=n?n:this.value,null!=r?r:this.color,null!=i?i:this.left,null!=o?o:this.right)},e.prototype.count=function(){return this.left.count()+1+this.right.count()},e.prototype.isEmpty=function(){return!1},e.prototype.inorderTraversal=function(e){return this.left.inorderTraversal(e)||e(this.key,this.value)||this.right.inorderTraversal(e)},e.prototype.reverseTraversal=function(e){return this.right.reverseTraversal(e)||e(this.key,this.value)||this.left.reverseTraversal(e)},e.prototype.A=function(){return this.left.isEmpty()?this:this.left.A()},e.prototype.minKey=function(){return this.A().key},e.prototype.maxKey=function(){return this.right.isEmpty()?this.key:this.right.maxKey()},e.prototype.insert=function(e,t,n){var r,i;return i=this,r=n(e,i.key),i=r<0?i.copy(null,null,null,i.left.insert(e,t,n),null):0===r?i.copy(null,t,null,null,null):i.copy(null,null,null,null,i.right.insert(e,t,n)),i.D()},e.prototype.M=function(){if(this.left.isEmpty())return a.EMPTY_NODE;var e=this;return e.left.L()||e.left.left.L()||(e=e.F()),e=e.copy(null,null,null,e.left.M(),null),e.D()},e.prototype.remove=function(e,t){var n,r;if(n=this,t(e,n.key)<0)n.left.isEmpty()||n.left.L()||n.left.left.L()||(n=n.F()),n=n.copy(null,null,null,n.left.remove(e,t),null);else{if(n.left.L()&&(n=n.x()),n.right.isEmpty()||n.right.L()||n.right.left.L()||(n=n.k()),0===t(e,n.key)){if(n.right.isEmpty())return a.EMPTY_NODE;r=n.right.A(),n=n.copy(r.key,r.value,null,null,n.right.M())}n=n.copy(null,null,null,null,n.right.remove(e,t))}return n.D()},e.prototype.L=function(){return this.color},e.prototype.D=function(){var e=this;return e.right.L()&&!e.left.L()&&(e=e.W()),e.left.L()&&e.left.left.L()&&(e=e.x()),e.left.L()&&e.right.L()&&(e=e.j()),e},e.prototype.F=function(){var e=this.j();return e.right.left.L()&&(e=e.copy(null,null,null,null,e.right.x()),e=e.W(),e=e.j()),e},e.prototype.k=function(){var e=this.j();return e.left.left.L()&&(e=e.x(),e=e.j()),e},e.prototype.W=function(){var t=this.copy(null,null,e.RED,null,this.right.left);return this.right.copy(null,null,this.color,t,null)},e.prototype.x=function(){var t=this.copy(null,null,e.RED,this.left.right,null);return this.left.copy(null,null,this.color,null,t)},e.prototype.j=function(){var e=this.left.copy(null,null,!this.left.color,null,null),t=this.right.copy(null,null,!this.right.color,null,null);return this.copy(null,null,!this.color,e,t)},e.prototype.V=function(){var e=this.Q();return Math.pow(2,e)<=this.count()+1},e.prototype.Q=function(){var e;if(this.L()&&this.left.L())throw Error("Red node has red child("+this.key+","+this.value+")");if(this.right.L())throw Error("Right child of ("+this.key+","+this.value+") is red");if((e=this.left.Q())!==this.right.Q())throw Error("Black depths differ");return e+(this.L()?0:1)},e.RED=!0,e.BLACK=!1,e}();t.LLRBNode=i;var o=function(){function e(){}return e.prototype.copy=function(e,t,n,r,i){return this},e.prototype.insert=function(e,t,n){return new i(e,t,null)},e.prototype.remove=function(e,t){return this},e.prototype.count=function(){return 0},e.prototype.isEmpty=function(){return!0},e.prototype.inorderTraversal=function(e){return!1},e.prototype.reverseTraversal=function(e){return!1},e.prototype.minKey=function(){return null},e.prototype.maxKey=function(){return null},e.prototype.Q=function(){return 0},e.prototype.L=function(){return!1},e}();t.LLRBEmptyNode=o;var a=function(){function e(t,n){void 0===n&&(n=e.EMPTY_NODE),this.U=t,this.B=n}return e.prototype.insert=function(t,n){return new e(this.U,this.B.insert(t,n,this.U).copy(null,null,i.BLACK,null,null))},e.prototype.remove=function(t){return new e(this.U,this.B.remove(t,this.U).copy(null,null,i.BLACK,null,null))},e.prototype.get=function(e){for(var t,n=this.B;!n.isEmpty();){if(0===(t=this.U(e,n.key)))return n.value;t<0?n=n.left:t>0&&(n=n.right)}return null},e.prototype.getPredecessorKey=function(e){for(var t,n=this.B,r=null;!n.isEmpty();){if(0===(t=this.U(e,n.key))){if(n.left.isEmpty())return r?r.key:null;for(n=n.left;!n.right.isEmpty();)n=n.right;return n.key}t<0?n=n.left:t>0&&(r=n,n=n.right)}throw Error("Attempted to find predecessor key for a nonexistent key.  What gives?")},e.prototype.isEmpty=function(){return this.B.isEmpty()},e.prototype.count=function(){return this.B.count()},e.prototype.minKey=function(){return this.B.minKey()},e.prototype.maxKey=function(){return this.B.maxKey()},e.prototype.inorderTraversal=function(e){return this.B.inorderTraversal(e)},e.prototype.reverseTraversal=function(e){return this.B.reverseTraversal(e)},e.prototype.getIterator=function(e){return new r(this.B,null,this.U,!1,e)},e.prototype.getIteratorFrom=function(e,t){return new r(this.B,e,this.U,!1,t)},e.prototype.getReverseIteratorFrom=function(e,t){return new r(this.B,e,this.U,!0,t)},e.prototype.getReverseIterator=function(e){return new r(this.B,null,this.U,!0,e)},e.EMPTY_NODE=new o,e}();t.SortedMap=a},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(43),i=n(11),o=n(2),a=n(44),s=n(86),u=n(97),l=n(0),h=n(1),c=n(0),p=n(98),d=n(25),f=n(100),_=n(49),y=n(101),v=n(50),g=n(106),m=n(32),C=function(){function e(e,t,n){var r=this;this.H=e,this.app=n,this.dataUpdateCount=0,this.G=null,this.K=new y.EventQueue,this.Y=1,this.X=null,this.z=new a.SparseSnapshotTree,this.J=null;var i=new p.AuthTokenProvider(n);if(this.$=d.StatsManager.getCollection(e),t||h.beingCrawled())this.Z=new g.ReadonlyRestClient(this.H,this.ee.bind(this),i),setTimeout(this.te.bind(this,!0),0);else{var o=n.options.databaseAuthVariableOverride;if(void 0!==o&&null!==o){if("object"!=typeof o)throw Error("Only objects are supported for option databaseAuthVariableOverride");try{l.stringify(o)}catch(e){throw Error("Invalid authOverride provided: "+e)}}this.J=new v.PersistentConnection(this.H,this.ee.bind(this),this.te.bind(this),this.ne.bind(this),i,o),this.Z=this.J}i.addTokenChangeListener(function(e){r.Z.refreshAuthToken(e)}),this.re=d.StatsManager.getOrCreateReporter(e,function(){return new f.StatsReporter(r.$,r.Z)}),this.ie(),this.oe=new u.SnapshotHolder,this.ae=new s.SyncTree({startListening:function(e,t,n,i){var o=[],a=r.oe.getNode(e.path);return a.isEmpty()||(o=r.ae.applyServerOverwrite(e.path,a),setTimeout(function(){i("ok")},0)),o},stopListening:function(){}}),this.se("connected",!1),this.ue=new s.SyncTree({startListening:function(e,t,n,i){return r.Z.listen(e,n,t,function(t,n){var o=i(t,n);r.K.raiseEventsForChangedPath(e.path,o)}),[]},stopListening:function(e,t){r.Z.unlisten(e,t)}})}return e.prototype.toString=function(){return(this.H.secure?"https://":"http://")+this.H.host},e.prototype.name=function(){return this.H.namespace},e.prototype.serverTime=function(){var e=this.oe.getNode(new o.Path(".info/serverTimeOffset")),t=e.val()||0;return(new Date).getTime()+t},e.prototype.generateServerValues=function(){return r.generateWithValues({timestamp:this.serverTime()})},e.prototype.ee=function(e,t,n,r){this.dataUpdateCount++;var a=new o.Path(e);t=this.X?this.X(e,t):t;var s=[];if(r)if(n){var u=c.map(t,function(e){return i.nodeFromJSON(e)});s=this.ue.applyTaggedQueryMerge(a,u,r)}else{var l=i.nodeFromJSON(t);s=this.ue.applyTaggedQueryOverwrite(a,l,r)}else if(n){var h=c.map(t,function(e){return i.nodeFromJSON(e)});s=this.ue.applyServerMerge(a,h)}else{var p=i.nodeFromJSON(t);s=this.ue.applyServerOverwrite(a,p)}var d=a;s.length>0&&(d=this.le(a)),this.K.raiseEventsForChangedPath(d,s)},e.prototype.he=function(e){this.X=e},e.prototype.te=function(e){this.se("connected",e),!1===e&&this.ce()},e.prototype.ne=function(e){var t=this;h.each(e,function(e,n){t.se(n,e)})},e.prototype.se=function(e,t){var n=new o.Path("/.info/"+e),r=i.nodeFromJSON(t);this.oe.updateSnapshot(n,r);var a=this.ae.applyServerOverwrite(n,r);this.K.raiseEventsForChangedPath(n,a)},e.prototype.pe=function(){return this.Y++},e.prototype.setWithPriority=function(e,t,n,o){var a=this;this.de("set",{path:""+e,value:t,priority:n});var s=this.generateServerValues(),u=i.nodeFromJSON(t,n),l=r.resolveDeferredValueSnapshot(u,s),c=this.pe(),p=this.ue.applyUserOverwrite(e,l,c,!0);this.K.queueEvents(p),this.Z.put(""+e,u.val(!0),function(t,n){var r="ok"===t;r||h.warn("set at "+e+" failed: "+t);var i=a.ue.ackUserWrite(c,!r);a.K.raiseEventsForChangedPath(e,i),a.callOnCompleteCallback(o,t,n)});var d=this.fe(e);this.le(d),this.K.raiseEventsForChangedPath(d,[])},e.prototype.update=function(e,t,n){var o=this;this.de("update",{path:""+e,value:t});var a=!0,s=this.generateServerValues(),u={};if(c.forEach(t,function(e,t){a=!1;var n=i.nodeFromJSON(t);u[e]=r.resolveDeferredValueSnapshot(n,s)}),a)h.log("update() called with empty data.  Don't do anything."),this.callOnCompleteCallback(n,"ok");else{var l=this.pe(),p=this.ue.applyUserMerge(e,u,l);this.K.queueEvents(p),this.Z.merge(""+e,t,function(t,r){var i="ok"===t;i||h.warn("update at "+e+" failed: "+t);var a=o.ue.ackUserWrite(l,!i),s=a.length>0?o.le(e):e;o.K.raiseEventsForChangedPath(s,a),o.callOnCompleteCallback(n,t,r)}),c.forEach(t,function(t){var n=o.fe(e.child(t));o.le(n)}),this.K.raiseEventsForChangedPath(e,[])}},e.prototype.ce=function(){var e=this;this.de("onDisconnectEvents");var t=this.generateServerValues(),n=r.resolveDeferredValueTree(this.z,t),i=[];n.forEachTree(o.Path.Empty,function(t,n){i=i.concat(e.ue.applyServerOverwrite(t,n));var r=e.fe(t);e.le(r)}),this.z=new a.SparseSnapshotTree,this.K.raiseEventsForChangedPath(o.Path.Empty,i)},e.prototype.onDisconnectCancel=function(e,t){var n=this;this.Z.onDisconnectCancel(""+e,function(r,i){"ok"===r&&n.z.forget(e),n.callOnCompleteCallback(t,r,i)})},e.prototype.onDisconnectSet=function(e,t,n){var r=this,o=i.nodeFromJSON(t);this.Z.onDisconnectPut(""+e,o.val(!0),function(t,i){"ok"===t&&r.z.remember(e,o),r.callOnCompleteCallback(n,t,i)})},e.prototype.onDisconnectSetWithPriority=function(e,t,n,r){var o=this,a=i.nodeFromJSON(t,n);this.Z.onDisconnectPut(""+e,a.val(!0),function(t,n){"ok"===t&&o.z.remember(e,a),o.callOnCompleteCallback(r,t,n)})},e.prototype.onDisconnectUpdate=function(e,t,n){var r=this;if(c.isEmpty(t))return h.log("onDisconnect().update() called with empty data.  Don't do anything."),void this.callOnCompleteCallback(n,"ok");this.Z.onDisconnectMerge(""+e,t,function(o,a){"ok"===o&&c.forEach(t,function(t,n){var o=i.nodeFromJSON(n);r.z.remember(e.child(t),o)}),r.callOnCompleteCallback(n,o,a)})},e.prototype.addEventCallbackForQuery=function(e,t){var n;n=".info"===e.path.getFront()?this.ae.addEventRegistration(e,t):this.ue.addEventRegistration(e,t),this.K.raiseEventsAtPath(e.path,n)},e.prototype.removeEventCallbackForQuery=function(e,t){var n;n=".info"===e.path.getFront()?this.ae.removeEventRegistration(e,t):this.ue.removeEventRegistration(e,t),this.K.raiseEventsAtPath(e.path,n)},e.prototype.interrupt=function(){this.J&&this.J.interrupt("repo_interrupt")},e.prototype.resume=function(){this.J&&this.J.resume("repo_interrupt")},e.prototype.stats=function(e){if(void 0===e&&(e=!1),"undefined"!=typeof console){var t;e?(this.G||(this.G=new _.StatsListener(this.$)),t=this.G.get()):t=this.$.get();var n=Object.keys(t).reduce(function(e,t){return Math.max(t.length,e)},0);c.forEach(t,function(e,t){for(var r=e.length;r<n+2;r++)e+=" ";console.log(e+t)})}},e.prototype.statsIncrementCounter=function(e){this.$.incrementCounter(e),this.re.includeStat(e)},e.prototype.de=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];var n="";this.J&&(n=this.J.id+":"),h.log.apply(void 0,[n].concat(e))},e.prototype.callOnCompleteCallback=function(e,t,n){e&&h.exceptionGuard(function(){if("ok"==t)e(null);else{var r=(t||"error").toUpperCase(),i=r;n&&(i+=": "+n);var o=Error(i);o.code=r,e(o)}})},Object.defineProperty(e.prototype,"database",{get:function(){return this.__database||(this.__database=new m.Database(this))},enumerable:!0,configurable:!0}),e}();t.Repo=C},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t,n){this._e=e,this.ye=t,this.ve=n}return e.prototype.isFullyInitialized=function(){return this.ye},e.prototype.isFiltered=function(){return this.ve},e.prototype.isCompleteForPath=function(e){if(e.isEmpty())return this.isFullyInitialized()&&!this.ve;var t=e.getFront();return this.isCompleteForChild(t)},e.prototype.isCompleteForChild=function(e){return this.isFullyInitialized()&&!this.ve||this._e.hasChild(e)},e.prototype.getNode=function(){return this._e},e}();t.CacheNode=r},,,function(e,t,n){"use strict";var r=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(t,"__esModule",{value:!0});var i=n(35),o=n(82),a=n(1),s=n(83),u=n(36),l=n(17),h=n(2),c=n(107),p=n(7),d=n(0),f=n(0),_=n(47),y=function(e){function t(t,n){if(!(t instanceof l.Repo))throw Error("new Reference() no longer supported - use app.database().");return e.call(this,t,n,c.QueryParams.DEFAULT,!1)||this}return r(t,e),t.prototype.getKey=function(){return d.validateArgCount("Reference.key",0,0,arguments.length),this.path.isEmpty()?null:this.path.getBack()},t.prototype.child=function(e){return d.validateArgCount("Reference.child",1,1,arguments.length),"number"==typeof e?e+="":e instanceof h.Path||(null===this.path.getFront()?p.validateRootPathString("Reference.child",1,e,!1):p.validatePathString("Reference.child",1,e,!1)),new t(this.repo,this.path.child(e))},t.prototype.getParent=function(){d.validateArgCount("Reference.parent",0,0,arguments.length);var e=this.path.parent();return null===e?null:new t(this.repo,e)},t.prototype.getRoot=function(){d.validateArgCount("Reference.root",0,0,arguments.length);for(var e=this;null!==e.getParent();)e=e.getParent();return e},t.prototype.databaseProp=function(){return this.repo.database},t.prototype.set=function(e,t){d.validateArgCount("Reference.set",1,2,arguments.length),p.validateWritablePath("Reference.set",this.path),p.validateFirebaseDataArg("Reference.set",1,e,this.path,!1),d.validateCallback("Reference.set",2,t,!0);var n=new f.Deferred;return this.repo.setWithPriority(this.path,e,null,n.wrapCallback(t)),n.promise},t.prototype.update=function(e,t){if(d.validateArgCount("Reference.update",1,2,arguments.length),p.validateWritablePath("Reference.update",this.path),Array.isArray(e)){for(var n={},r=0;r<e.length;++r)n[""+r]=e[r];e=n,a.warn("Passing an Array to Firebase.update() is deprecated. Use set() if you want to overwrite the existing data, or an Object with integer keys if you really do want to only update some of the children.")}p.validateFirebaseMergeDataArg("Reference.update",1,e,this.path,!1),d.validateCallback("Reference.update",2,t,!0);var i=new f.Deferred;return this.repo.update(this.path,e,i.wrapCallback(t)),i.promise},t.prototype.setWithPriority=function(e,t,n){if(d.validateArgCount("Reference.setWithPriority",2,3,arguments.length),p.validateWritablePath("Reference.setWithPriority",this.path),p.validateFirebaseDataArg("Reference.setWithPriority",1,e,this.path,!1),p.validatePriority("Reference.setWithPriority",2,t,!1),d.validateCallback("Reference.setWithPriority",3,n,!0),".length"===this.getKey()||".keys"===this.getKey())throw"Reference.setWithPriority failed: "+this.getKey()+" is a read-only object.";var r=new f.Deferred;return this.repo.setWithPriority(this.path,e,t,r.wrapCallback(n)),r.promise},t.prototype.remove=function(e){return d.validateArgCount("Reference.remove",0,1,arguments.length),p.validateWritablePath("Reference.remove",this.path),d.validateCallback("Reference.remove",1,e,!0),this.set(null,e)},t.prototype.transaction=function(e,t,n){if(d.validateArgCount("Reference.transaction",1,3,arguments.length),p.validateWritablePath("Reference.transaction",this.path),d.validateCallback("Reference.transaction",1,e,!1),d.validateCallback("Reference.transaction",2,t,!0),p.validateBoolean("Reference.transaction",3,n,!0),".length"===this.getKey()||".keys"===this.getKey())throw"Reference.transaction failed: "+this.getKey()+" is a read-only object.";void 0===n&&(n=!0);var r=new f.Deferred;"function"==typeof t&&r.promise.catch(function(){});var i=function(e,n,i){e?r.reject(e):r.resolve(new o.TransactionResult(n,i)),"function"==typeof t&&t(e,n,i)};return this.repo.startTransaction(this.path,e,i,n),r.promise},t.prototype.setPriority=function(e,t){d.validateArgCount("Reference.setPriority",1,2,arguments.length),p.validateWritablePath("Reference.setPriority",this.path),p.validatePriority("Reference.setPriority",1,e,!1),d.validateCallback("Reference.setPriority",2,t,!0);var n=new f.Deferred;return this.repo.setWithPriority(this.path.child(".priority"),e,null,n.wrapCallback(t)),n.promise},t.prototype.push=function(e,t){d.validateArgCount("Reference.push",0,2,arguments.length),p.validateWritablePath("Reference.push",this.path),p.validateFirebaseDataArg("Reference.push",1,e,this.path,!0),d.validateCallback("Reference.push",2,t,!0);var n,r=this.repo.serverTime(),i=s.nextPushId(r),o=this.child(i),a=this.child(i);return n=null!=e?o.set(e,t).then(function(){return a}):Promise.resolve(a),o.then=n.then.bind(n),o.catch=n.then.bind(n,void 0),"function"==typeof t&&n.catch(function(){}),o},t.prototype.onDisconnect=function(){return p.validateWritablePath("Reference.onDisconnect",this.path),new i.OnDisconnect(this.repo,this.path)},Object.defineProperty(t.prototype,"database",{get:function(){return this.databaseProp()},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"key",{get:function(){return this.getKey()},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"parent",{get:function(){return this.getParent()},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"root",{get:function(){return this.getRoot()},enumerable:!0,configurable:!0}),t}(u.Query);t.Reference=y,u.Query.__referenceConstructor=y,_.SyncPoint.__referenceConstructor=y},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(0),i=n(7),o=n(2),a=n(3),s=function(){function e(e,t,n){this._e=e,this.ge=t,this.me=n}return e.prototype.val=function(){return r.validateArgCount("DataSnapshot.val",0,0,arguments.length),this._e.val()},e.prototype.exportVal=function(){return r.validateArgCount("DataSnapshot.exportVal",0,0,arguments.length),this._e.val(!0)},e.prototype.toJSON=function(){return r.validateArgCount("DataSnapshot.toJSON",0,1,arguments.length),this.exportVal()},e.prototype.exists=function(){return r.validateArgCount("DataSnapshot.exists",0,0,arguments.length),!this._e.isEmpty()},e.prototype.child=function(t){r.validateArgCount("DataSnapshot.child",0,1,arguments.length),t+="",i.validatePathString("DataSnapshot.child",1,t,!1);var n=new o.Path(t),s=this.ge.child(n);return new e(this._e.getChild(n),s,a.PRIORITY_INDEX)},e.prototype.hasChild=function(e){r.validateArgCount("DataSnapshot.hasChild",1,1,arguments.length),i.validatePathString("DataSnapshot.hasChild",1,e,!1);var t=new o.Path(e);return!this._e.getChild(t).isEmpty()},e.prototype.getPriority=function(){return r.validateArgCount("DataSnapshot.getPriority",0,0,arguments.length),this._e.getPriority().val()},e.prototype.forEach=function(t){var n=this;return r.validateArgCount("DataSnapshot.forEach",1,1,arguments.length),r.validateCallback("DataSnapshot.forEach",1,t,!1),!this._e.isLeafNode()&&!!this._e.forEachChild(this.me,function(r,i){return t(new e(i,n.ge.child(r),a.PRIORITY_INDEX))})},e.prototype.hasChildren=function(){return r.validateArgCount("DataSnapshot.hasChildren",0,0,arguments.length),!this._e.isLeafNode()&&!this._e.isEmpty()},Object.defineProperty(e.prototype,"key",{get:function(){return this.ge.getKey()},enumerable:!0,configurable:!0}),e.prototype.numChildren=function(){return r.validateArgCount("DataSnapshot.numChildren",0,0,arguments.length),this._e.numChildren()},e.prototype.getRef=function(){return r.validateArgCount("DataSnapshot.ref",0,0,arguments.length),this.ge},Object.defineProperty(e.prototype,"ref",{get:function(){return this.getRef()},enumerable:!0,configurable:!0}),e}();t.DataSnapshot=s},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r,i=n(16),o=n(2),a=n(1),s=n(0),u=function(){return r||(r=new i.SortedMap(a.stringCompare)),r},l=function(){function e(e,t){void 0===t&&(t=u()),this.value=e,this.children=t}return e.fromObject=function(t){var n=e.Empty;return s.forEach(t,function(e,t){n=n.set(new o.Path(e),t)}),n},e.prototype.isEmpty=function(){return null===this.value&&this.children.isEmpty()},e.prototype.findRootMostMatchingPathAndValue=function(e,t){if(null!=this.value&&t(this.value))return{path:o.Path.Empty,value:this.value};if(e.isEmpty())return null;var n=e.getFront(),r=this.children.get(n);if(null!==r){var i=r.findRootMostMatchingPathAndValue(e.popFront(),t);return null!=i?{path:new o.Path(n).child(i.path),value:i.value}:null}return null},e.prototype.findRootMostValueAndPath=function(e){return this.findRootMostMatchingPathAndValue(e,function(){return!0})},e.prototype.subtree=function(t){if(t.isEmpty())return this;var n=t.getFront(),r=this.children.get(n);return null!==r?r.subtree(t.popFront()):e.Empty},e.prototype.set=function(t,n){if(t.isEmpty())return new e(n,this.children);var r=t.getFront(),i=this.children.get(r)||e.Empty,o=i.set(t.popFront(),n),a=this.children.insert(r,o);return new e(this.value,a)},e.prototype.remove=function(t){if(t.isEmpty())return this.children.isEmpty()?e.Empty:new e(null,this.children);var n=t.getFront(),r=this.children.get(n);if(r){var i=r.remove(t.popFront()),o=void 0;return o=i.isEmpty()?this.children.remove(n):this.children.insert(n,i),null===this.value&&o.isEmpty()?e.Empty:new e(this.value,o)}return this},e.prototype.get=function(e){if(e.isEmpty())return this.value;var t=e.getFront(),n=this.children.get(t);return n?n.get(e.popFront()):null},e.prototype.setTree=function(t,n){if(t.isEmpty())return n;var r=t.getFront(),i=this.children.get(r)||e.Empty,o=i.setTree(t.popFront(),n),a=void 0;return a=o.isEmpty()?this.children.remove(r):this.children.insert(r,o),new e(this.value,a)},e.prototype.fold=function(e){return this.Ce(o.Path.Empty,e)},e.prototype.Ce=function(e,t){var n={};return this.children.inorderTraversal(function(r,i){n[r]=i.Ce(e.child(r),t)}),t(e,this.value,n)},e.prototype.findOnPath=function(e,t){return this.Ee(e,o.Path.Empty,t)},e.prototype.Ee=function(e,t,n){var r=!!this.value&&n(t,this.value);if(r)return r;if(e.isEmpty())return null;var i=e.getFront(),o=this.children.get(i);return o?o.Ee(e.popFront(),t.child(i),n):null},e.prototype.foreachOnPath=function(e,t){return this.Ne(e,o.Path.Empty,t)},e.prototype.Ne=function(t,n,r){if(t.isEmpty())return this;this.value&&r(n,this.value);var i=t.getFront(),o=this.children.get(i);return o?o.Ne(t.popFront(),n.child(i),r):e.Empty},e.prototype.foreach=function(e){this.Pe(o.Path.Empty,e)},e.prototype.Pe=function(e,t){this.children.inorderTraversal(function(n,r){r.Pe(e.child(n),t)}),this.value&&t(e,this.value)},e.prototype.foreachChild=function(e){this.children.inorderTraversal(function(t,n){n.value&&e(t,n.value)})},e.Empty=new e(null),e}();t.ImmutableTree=l},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(0),i=n(9),o=n(4),a=n(3),s=function(){function e(e){this.me=e}return e.prototype.updateChild=function(e,t,n,o,a,s){r.assert(e.isIndexed(this.me),"A node must be indexed if only a child is updated");var u=e.getImmediateChild(t);return u.getChild(o).equals(n.getChild(o))&&u.isEmpty()==n.isEmpty()?e:(null!=s&&(n.isEmpty()?e.hasChild(t)?s.trackChildChange(i.Change.childRemovedChange(t,u)):r.assert(e.isLeafNode(),"A child remove without an old child only makes sense on a leaf node"):u.isEmpty()?s.trackChildChange(i.Change.childAddedChange(t,n)):s.trackChildChange(i.Change.childChangedChange(t,n,u))),e.isLeafNode()&&n.isEmpty()?e:e.updateImmediateChild(t,n).withIndex(this.me))},e.prototype.updateFullNode=function(e,t,n){return null!=n&&(e.isLeafNode()||e.forEachChild(a.PRIORITY_INDEX,function(e,r){t.hasChild(e)||n.trackChildChange(i.Change.childRemovedChange(e,r))}),t.isLeafNode()||t.forEachChild(a.PRIORITY_INDEX,function(t,r){if(e.hasChild(t)){var o=e.getImmediateChild(t);o.equals(r)||n.trackChildChange(i.Change.childChangedChange(t,r,o))}else n.trackChildChange(i.Change.childAddedChange(t,r))})),t.withIndex(this.me)},e.prototype.updatePriority=function(e,t){return e.isEmpty()?o.ChildrenNode.EMPTY_NODE:e.updatePriority(t)},e.prototype.filtersNodes=function(){return!1},e.prototype.getIndexedFilter=function(){return this},e.prototype.getIndex=function(){return this.me},e}();t.IndexedFilter=s},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(99),i=function(){function e(){}return e.getCollection=function(e){var t=""+e;return this.be[t]||(this.be[t]=new r.StatsCollection),this.be[t]},e.getOrCreateReporter=function(e,t){var n=""+e;return this.Se[n]||(this.Se[n]=t()),this.Se[n]},e.be={},e.Se={},e}();t.StatsManager=i},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(0),i=n(17),o=n(1),a=n(33),s=n(7);n(109);var u,l=function(){function e(){this.Te={},this.we=!1}return e.getInstance=function(){return u||(u=new e),u},e.prototype.interrupt=function(){for(var e in this.Te)for(var t in this.Te[e])this.Te[e][t].interrupt()},e.prototype.resume=function(){for(var e in this.Te)for(var t in this.Te[e])this.Te[e][t].resume()},e.prototype.databaseFromApp=function(e,t){var n=t||e.options.databaseURL;void 0===n&&o.fatal("Can't determine Firebase Database URL.  Be sure to include databaseURL option when calling firebase.intializeApp().");var r=a.parseRepoInfo(n),i=r.repoInfo;return s.validateUrl("Invalid Firebase Database URL",1,r),r.path.isEmpty()||o.fatal("Database URL must point to the root of a Firebase Database (not including a child path)."),this.createRepo(i,e).database},e.prototype.deleteRepo=function(e){var t=r.safeGet(this.Te,e.app.name);t&&r.safeGet(t,e.H.toURLString())===e||o.fatal("Database "+e.app.name+"("+e.H+") has already been deleted."),e.interrupt(),delete t[e.H.toURLString()]},e.prototype.createRepo=function(e,t){var n=r.safeGet(this.Te,t.name);n||(n={},this.Te[t.name]=n);var a=r.safeGet(n,e.toURLString());return a&&o.fatal("Database initialized multiple times. Please make sure the format of the database URL matches with each database() call."),a=new i.Repo(e,this.we,t),n[e.toURLString()]=a,a},e.prototype.forceRestClient=function(e){this.we=e},e}();t.RepoManager=l},,,,,,function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(1),i=n(33),o=n(2),a=n(21),s=n(17),u=n(26),l=n(0),h=n(7),c=function(){function e(e){this.Ie=e,e instanceof s.Repo||r.fatal("Don't call new Database() directly - please use firebase.database()."),this.B=new a.Reference(e,o.Path.Empty),this.INTERNAL=new p(this)}return Object.defineProperty(e.prototype,"app",{get:function(){return this.Ie.app},enumerable:!0,configurable:!0}),e.prototype.ref=function(e){return this.Re("ref"),l.validateArgCount("database.ref",0,1,arguments.length),void 0!==e?this.B.child(e):this.B},e.prototype.refFromURL=function(e){var t="database.refFromURL";this.Re(t),l.validateArgCount(t,1,1,arguments.length);var n=i.parseRepoInfo(e);h.validateUrl(t,1,n);var o=n.repoInfo;return o.host!==this.Ie.H.host&&r.fatal(t+": Host name does not match the current database: (found "+o.host+" but expected "+this.Ie.H.host+")"),this.ref(""+n.path)},e.prototype.Re=function(e){null===this.Ie&&r.fatal("Cannot call "+e+" on a deleted database.")},e.prototype.goOffline=function(){l.validateArgCount("database.goOffline",0,0,arguments.length),this.Re("goOffline"),this.Ie.interrupt()},e.prototype.goOnline=function(){l.validateArgCount("database.goOnline",0,0,arguments.length),this.Re("goOnline"),this.Ie.resume()},e.ServerValue={TIMESTAMP:{".sv":"timestamp"}},e}();t.Database=c;var p=function(){function e(e){this.database=e}return e.prototype.delete=function(){return this.database.Re("delete"),u.RepoManager.getInstance().deleteRepo(this.database.Ie),this.database.Ie=null,this.database.B=null,this.database.INTERNAL=null,this.database=null,Promise.resolve()},e}();t.DatabaseInternals=p},function(e,t,n){"use strict";function r(e){for(var t="",n=e.split("/"),r=0;r<n.length;r++)if(n[r].length>0){var i=n[r];try{i=decodeURIComponent(i.replace(/\+/g," "))}catch(e){}t+="/"+i}return t}Object.defineProperty(t,"__esModule",{value:!0});var i=n(2),o=n(34),a=n(1);t.parseRepoInfo=function(e){var n=t.parseURL(e),r=n.subdomain;"firebase"===n.domain&&a.fatal(n.host+" is no longer supported. Please use <YOUR FIREBASE>.firebaseio.com instead"),r&&"undefined"!=r||a.fatal("Cannot parse Firebase url. Please use https://<YOUR FIREBASE>.firebaseio.com"),n.secure||a.warnIfPageIsSecure();var s="ws"===n.scheme||"wss"===n.scheme;return{repoInfo:new o.RepoInfo(n.host,n.secure,r,s),path:new i.Path(n.pathString)}},t.parseURL=function(e){var t="",n="",i="",o="",a=!0,s="https",u=443;if("string"==typeof e){var l=e.indexOf("//");l>=0&&(s=e.substring(0,l-1),e=e.substring(l+2));var h=e.indexOf("/");-1===h&&(h=e.length),t=e.substring(0,h),o=r(e.substring(h));var c=t.split(".");3===c.length?(n=c[1],i=c[0].toLowerCase()):2===c.length&&(n=c[0]),(l=t.indexOf(":"))>=0&&(a="https"===s||"wss"===s,u=parseInt(t.substring(l+1),10))}return{host:t,port:u,domain:n,subdomain:i,secure:a,scheme:s,pathString:o}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(0),i=n(0),o=n(12),a=n(13),s=function(){function e(e,t,n,r,i){void 0===i&&(i=""),this.secure=t,this.namespace=n,this.webSocketOnly=r,this.persistenceKey=i,this.host=e.toLowerCase(),this.domain=this.host.substr(this.host.indexOf(".")+1),this.internalHost=o.PersistentStorage.get("host:"+e)||this.host}return e.prototype.needsQueryParam=function(){return this.host!==this.internalHost},e.prototype.isCacheableHost=function(){return"s-"===this.internalHost.substr(0,2)},e.prototype.isDemoHost=function(){return"firebaseio-demo.com"===this.domain},e.prototype.isCustomHost=function(){return"firebaseio.com"!==this.domain&&"firebaseio-demo.com"!==this.domain},e.prototype.updateHost=function(e){e!==this.internalHost&&(this.internalHost=e,this.isCacheableHost()&&o.PersistentStorage.set("host:"+this.host,this.internalHost))},e.prototype.connectionURL=function(e,t){r.assert("string"==typeof e,"typeof type must == string"),r.assert("object"==typeof t,"typeof params must == object");var n;if(e===a.WEBSOCKET)n=(this.secure?"wss://":"ws://")+this.internalHost+"/.ws?";else{if(e!==a.LONG_POLLING)throw Error("Unknown connection type: "+e);n=(this.secure?"https://":"http://")+this.internalHost+"/.lp?"}this.needsQueryParam()&&(t.ns=this.namespace);var o=[];return i.forEach(t,function(e,t){o.push(e+"="+t)}),n+o.join("&")},e.prototype.toString=function(){var e=this.toURLString();return this.persistenceKey&&(e+="<"+this.persistenceKey+">"),e},e.prototype.toURLString=function(){return(this.secure?"https://":"http://")+this.host},e}();t.RepoInfo=s},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(0),i=n(7),o=n(1),a=n(0),s=function(){function e(e,t){this.Ie=e,this.Oe=t}return e.prototype.cancel=function(e){r.validateArgCount("OnDisconnect.cancel",0,1,arguments.length),r.validateCallback("OnDisconnect.cancel",1,e,!0);var t=new a.Deferred;return this.Ie.onDisconnectCancel(this.Oe,t.wrapCallback(e)),t.promise},e.prototype.remove=function(e){r.validateArgCount("OnDisconnect.remove",0,1,arguments.length),i.validateWritablePath("OnDisconnect.remove",this.Oe),r.validateCallback("OnDisconnect.remove",1,e,!0);var t=new a.Deferred;return this.Ie.onDisconnectSet(this.Oe,null,t.wrapCallback(e)),t.promise},e.prototype.set=function(e,t){r.validateArgCount("OnDisconnect.set",1,2,arguments.length),i.validateWritablePath("OnDisconnect.set",this.Oe),i.validateFirebaseDataArg("OnDisconnect.set",1,e,this.Oe,!1),r.validateCallback("OnDisconnect.set",2,t,!0);var n=new a.Deferred;return this.Ie.onDisconnectSet(this.Oe,e,n.wrapCallback(t)),n.promise},e.prototype.setWithPriority=function(e,t,n){r.validateArgCount("OnDisconnect.setWithPriority",2,3,arguments.length),i.validateWritablePath("OnDisconnect.setWithPriority",this.Oe),i.validateFirebaseDataArg("OnDisconnect.setWithPriority",1,e,this.Oe,!1),i.validatePriority("OnDisconnect.setWithPriority",2,t,!1),r.validateCallback("OnDisconnect.setWithPriority",3,n,!0);var o=new a.Deferred;return this.Ie.onDisconnectSetWithPriority(this.Oe,e,t,o.wrapCallback(n)),o.promise},e.prototype.update=function(e,t){if(r.validateArgCount("OnDisconnect.update",1,2,arguments.length),i.validateWritablePath("OnDisconnect.update",this.Oe),Array.isArray(e)){for(var n={},s=0;s<e.length;++s)n[""+s]=e[s];e=n,o.warn("Passing an Array to firebase.database.onDisconnect().update() is deprecated. Use set() if you want to overwrite the existing data, or an Object with integer keys if you really do want to only update some of the children.")}i.validateFirebaseMergeDataArg("OnDisconnect.update",1,e,this.Oe,!1),r.validateCallback("OnDisconnect.update",2,t,!0);var u=new a.Deferred;return this.Ie.onDisconnectUpdate(this.Oe,e,u.wrapCallback(t)),u.promise},e}();t.OnDisconnect=s},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r,i=n(0),o=n(10),a=n(3),s=n(38),u=n(42),l=n(1),h=n(2),c=n(7),p=n(0),d=n(84),f=n(0),_=function(){function e(e,t,n,r){this.repo=e,this.path=t,this.Ae=n,this.De=r}return Object.defineProperty(e,"__referenceConstructor",{get:function(){return i.assert(r,"Reference.ts has not been loaded"),r},set:function(e){r=e},enumerable:!0,configurable:!0}),e.Me=function(e){var t=null,n=null;if(e.hasStart()&&(t=e.getIndexStartValue()),e.hasEnd()&&(n=e.getIndexEndValue()),e.getIndex()===o.KEY_INDEX){var r="Query: When ordering by key, you may only pass one argument to startAt(), endAt(), or equalTo().",h="Query: When ordering by key, the argument passed to startAt(), endAt(),or equalTo() must be a string.";if(e.hasStart()){if(e.getIndexStartName()!=l.MIN_NAME)throw Error(r);if("string"!=typeof t)throw Error(h)}if(e.hasEnd()){if(e.getIndexEndName()!=l.MAX_NAME)throw Error(r);if("string"!=typeof n)throw Error(h)}}else if(e.getIndex()===a.PRIORITY_INDEX){if(null!=t&&!c.isValidPriority(t)||null!=n&&!c.isValidPriority(n))throw Error("Query: When ordering by priority, the first argument passed to startAt(), endAt(), or equalTo() must be a valid priority value (null, a number, or a string).")}else if(i.assert(e.getIndex()instanceof u.PathIndex||e.getIndex()===s.VALUE_INDEX,"unknown index type."),null!=t&&"object"==typeof t||null!=n&&"object"==typeof n)throw Error("Query: First argument passed to startAt(), endAt(), or equalTo() cannot be an object.")},e.Le=function(e){if(e.hasStart()&&e.hasEnd()&&e.hasLimit()&&!e.hasAnchoredLimit())throw Error("Query: Can't combine startAt(), endAt(), and limit(). Use limitToFirst() or limitToLast() instead.")},e.prototype.Fe=function(e){if(!0===this.De)throw Error(e+": You can't combine multiple orderBy calls.")},e.prototype.getQueryParams=function(){return this.Ae},e.prototype.getRef=function(){return p.validateArgCount("Query.ref",0,0,arguments.length),new e.__referenceConstructor(this.repo,this.path)},e.prototype.on=function(t,n,r,i){p.validateArgCount("Query.on",2,4,arguments.length),c.validateEventType("Query.on",1,t,!1),p.validateCallback("Query.on",2,n,!1);var o=e.xe("Query.on",r,i);if("value"===t)this.onValueEvent(n,o.cancel,o.context);else{var a={};a[t]=n,this.onChildEvent(a,o.cancel,o.context)}return n},e.prototype.onValueEvent=function(e,t,n){var r=new d.ValueEventRegistration(e,t||null,n||null);this.repo.addEventCallbackForQuery(this,r)},e.prototype.onChildEvent=function(e,t,n){var r=new d.ChildEventRegistration(e,t,n);this.repo.addEventCallbackForQuery(this,r)},e.prototype.off=function(e,t,n){p.validateArgCount("Query.off",0,3,arguments.length),c.validateEventType("Query.off",1,e,!0),p.validateCallback("Query.off",2,t,!0),p.validateContextObject("Query.off",3,n,!0);var r=null,i=null;if("value"===e){var o=t||null;r=new d.ValueEventRegistration(o,null,n||null)}else e&&(t&&(i={},i[e]=t),r=new d.ChildEventRegistration(i,null,n||null));this.repo.removeEventCallbackForQuery(this,r)},e.prototype.once=function(t,n,r,i){var o=this;p.validateArgCount("Query.once",1,4,arguments.length),c.validateEventType("Query.once",1,t,!1),p.validateCallback("Query.once",2,n,!0);var a=e.xe("Query.once",r,i),s=!0,u=new f.Deferred;u.promise.catch(function(){});var l=function(e){s&&(s=!1,o.off(t,l),n&&n.bind(a.context)(e),u.resolve(e))};return this.on(t,l,function(e){o.off(t,l),a.cancel&&a.cancel.bind(a.context)(e),u.reject(e)}),u.promise},e.prototype.limitToFirst=function(t){if(p.validateArgCount("Query.limitToFirst",1,1,arguments.length),"number"!=typeof t||Math.floor(t)!==t||t<=0)throw Error("Query.limitToFirst: First argument must be a positive integer.");if(this.Ae.hasLimit())throw Error("Query.limitToFirst: Limit was already set (by another call to limit, limitToFirst, or limitToLast).");return new e(this.repo,this.path,this.Ae.limitToFirst(t),this.De)},e.prototype.limitToLast=function(t){if(p.validateArgCount("Query.limitToLast",1,1,arguments.length),"number"!=typeof t||Math.floor(t)!==t||t<=0)throw Error("Query.limitToLast: First argument must be a positive integer.");if(this.Ae.hasLimit())throw Error("Query.limitToLast: Limit was already set (by another call to limit, limitToFirst, or limitToLast).");return new e(this.repo,this.path,this.Ae.limitToLast(t),this.De)},e.prototype.orderByChild=function(t){if(p.validateArgCount("Query.orderByChild",1,1,arguments.length),"$key"===t)throw Error('Query.orderByChild: "$key" is invalid.  Use Query.orderByKey() instead.');if("$priority"===t)throw Error('Query.orderByChild: "$priority" is invalid.  Use Query.orderByPriority() instead.');if("$value"===t)throw Error('Query.orderByChild: "$value" is invalid.  Use Query.orderByValue() instead.');c.validatePathString("Query.orderByChild",1,t,!1),this.Fe("Query.orderByChild");var n=new h.Path(t);if(n.isEmpty())throw Error("Query.orderByChild: cannot pass in empty path.  Use Query.orderByValue() instead.");var r=new u.PathIndex(n),i=this.Ae.orderBy(r);return e.Me(i),new e(this.repo,this.path,i,!0)},e.prototype.orderByKey=function(){p.validateArgCount("Query.orderByKey",0,0,arguments.length),this.Fe("Query.orderByKey");var t=this.Ae.orderBy(o.KEY_INDEX);return e.Me(t),new e(this.repo,this.path,t,!0)},e.prototype.orderByPriority=function(){p.validateArgCount("Query.orderByPriority",0,0,arguments.length),this.Fe("Query.orderByPriority");var t=this.Ae.orderBy(a.PRIORITY_INDEX);return e.Me(t),new e(this.repo,this.path,t,!0)},e.prototype.orderByValue=function(){p.validateArgCount("Query.orderByValue",0,0,arguments.length),this.Fe("Query.orderByValue");var t=this.Ae.orderBy(s.VALUE_INDEX);return e.Me(t),new e(this.repo,this.path,t,!0)},e.prototype.startAt=function(t,n){void 0===t&&(t=null),p.validateArgCount("Query.startAt",0,2,arguments.length),c.validateFirebaseDataArg("Query.startAt",1,t,this.path,!0),c.validateKey("Query.startAt",2,n,!0);var r=this.Ae.startAt(t,n);if(e.Le(r),e.Me(r),this.Ae.hasStart())throw Error("Query.startAt: Starting point was already set (by another call to startAt or equalTo).");return void 0===t&&(t=null,n=null),new e(this.repo,this.path,r,this.De)},e.prototype.endAt=function(t,n){void 0===t&&(t=null),p.validateArgCount("Query.endAt",0,2,arguments.length),c.validateFirebaseDataArg("Query.endAt",1,t,this.path,!0),c.validateKey("Query.endAt",2,n,!0);var r=this.Ae.endAt(t,n);if(e.Le(r),e.Me(r),this.Ae.hasEnd())throw Error("Query.endAt: Ending point was already set (by another call to endAt or equalTo).");return new e(this.repo,this.path,r,this.De)},e.prototype.equalTo=function(e,t){if(p.validateArgCount("Query.equalTo",1,2,arguments.length),c.validateFirebaseDataArg("Query.equalTo",1,e,this.path,!1),c.validateKey("Query.equalTo",2,t,!0),this.Ae.hasStart())throw Error("Query.equalTo: Starting point was already set (by another call to startAt or equalTo).");if(this.Ae.hasEnd())throw Error("Query.equalTo: Ending point was already set (by another call to endAt or equalTo).");return this.startAt(e,t).endAt(e,t)},e.prototype.toString=function(){return p.validateArgCount("Query.toString",0,0,arguments.length),""+this.repo+this.path.toUrlEncodedString()},e.prototype.toJSON=function(){return p.validateArgCount("Query.toJSON",0,1,arguments.length),""+this},e.prototype.queryObject=function(){return this.Ae.getQueryObject()},e.prototype.queryIdentifier=function(){var e=this.queryObject(),t=l.ObjectToUniqueKey(e);return"{}"===t?"default":t},e.prototype.isEqual=function(t){if(p.validateArgCount("Query.isEqual",1,1,arguments.length),!(t instanceof e))throw Error("Query.isEqual failed: First argument must be an instance of firebase.database.Query.");var n=this.repo===t.repo,r=this.path.equals(t.path),i=this.queryIdentifier()===t.queryIdentifier();return n&&r&&i},e.xe=function(e,t,n){var r={cancel:null,context:null};if(t&&n)r.cancel=t,p.validateCallback(e,3,r.cancel,!0),r.context=n,p.validateContextObject(e,4,r.context,!0);else if(t)if("object"==typeof t&&null!==t)r.context=t;else{if("function"!=typeof t)throw Error(p.errorPrefix(e,3,!0)+" must either be a cancel callback or a context object.");r.cancel=t}return r},Object.defineProperty(e.prototype,"ref",{get:function(){return this.getRef()},enumerable:!0,configurable:!0}),e}();t.Query=_},function(e,t,n){"use strict";function r(e){i=e}Object.defineProperty(t,"__esModule",{value:!0});var i,o=n(0),a=n(1),s=n(0);t.setMaxNode=r,t.priorityHashText=function(e){return"number"==typeof e?"number:"+a.doubleToIEEE754String(e):"string:"+e},t.validatePriorityNode=function(e){if(e.isLeafNode()){var t=e.val();o.assert("string"==typeof t||"number"==typeof t||"object"==typeof t&&s.contains(t,".sv"),"Priority must be a string or number.")}else o.assert(e===i||e.isEmpty(),"priority of unexpected type.");o.assert(e===i||e.getPriority().isEmpty(),"Priority nodes can't have a priority of their own.")}},function(e,t,n){"use strict";var r=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(t,"__esModule",{value:!0});var i=n(14),o=n(5),a=n(1),s=n(11),u=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return r(t,e),t.prototype.compare=function(e,t){var n=e.node.compareTo(t.node);return 0===n?a.nameCompare(e.name,t.name):n},t.prototype.isDefinedOn=function(e){return!0},t.prototype.indexedValueChanged=function(e,t){return!e.equals(t)},t.prototype.minPost=function(){return o.NamedNode.MIN},t.prototype.maxPost=function(){return o.NamedNode.MAX},t.prototype.makePost=function(e,t){var n=s.nodeFromJSON(e);return new o.NamedNode(t,n)},t.prototype.toString=function(){return".value"},t}(i.Index);t.ValueIndex=u,t.VALUE_INDEX=new u},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r,i=n(0),o=n(40),a=n(0),s=n(5),u=n(3),l=n(10),h={},c=function(){function e(e,t){this.ke=e,this.We=t}return Object.defineProperty(e,"Default",{get:function(){return i.assert(h&&u.PRIORITY_INDEX,"ChildrenNode.ts has not been loaded"),r=r||new e({".priority":h},{".priority":u.PRIORITY_INDEX})},enumerable:!0,configurable:!0}),e.prototype.get=function(e){var t=a.safeGet(this.ke,e);if(!t)throw Error("No index defined for "+e);return t===h?null:t},e.prototype.hasIndex=function(e){return a.contains(this.We,""+e)},e.prototype.addIndex=function(t,n){i.assert(t!==l.KEY_INDEX,"KeyIndex always exists and isn't meant to be added to the IndexMap.");for(var r=[],u=!1,c=n.getIterator(s.NamedNode.Wrap),p=c.getNext();p;)u=u||t.isDefinedOn(p.node),r.push(p),p=c.getNext();var d;d=u?o.buildChildSet(r,t.getCompare()):h;var f=""+t,_=a.clone(this.We);_[f]=t;var y=a.clone(this.ke);return y[f]=d,new e(y,_)},e.prototype.addToIndexes=function(t,n){var r=this;return new e(a.map(this.ke,function(e,u){var l=a.safeGet(r.We,u);if(i.assert(l,"Missing index implementation for "+u),e===h){if(l.isDefinedOn(t.node)){for(var c=[],p=n.getIterator(s.NamedNode.Wrap),d=p.getNext();d;)d.name!=t.name&&c.push(d),d=p.getNext();return c.push(t),o.buildChildSet(c,l.getCompare())}return h}var f=n.get(t.name),_=e;return f&&(_=_.remove(new s.NamedNode(t.name,f))),_.insert(t,t.node)}),this.We)},e.prototype.removeFromIndexes=function(t,n){return new e(a.map(this.ke,function(e){if(e===h)return e;var r=n.get(t.name);return r?e.remove(new s.NamedNode(t.name,r)):e}),this.We)},e}();t.IndexMap=c},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(16),i=n(16),o=Math.log(2),a=function(){function e(e){this.count=function(e){return parseInt(Math.log(e)/o,10)}(e+1),this.je=this.count-1;var t=function(e){return parseInt(Array(e+1).join("1"),2)}(this.count);this.Ve=e+1&t}return e.prototype.nextBitIsOne=function(){var e=!(this.Ve&1<<this.je);return this.je--,e},e}();t.buildChildSet=function(e,t,n,o){e.sort(t);var s=function(t,i){var o,a,u=i-t;if(0==u)return null;if(1==u)return o=e[t],a=n?n(o):o,new r.LLRBNode(a,o.node,r.LLRBNode.BLACK,null,null);var l=parseInt(u/2,10)+t,h=s(t,l),c=s(l+1,i);return o=e[l],a=n?n(o):o,new r.LLRBNode(a,o.node,r.LLRBNode.BLACK,h,c)},u=new a(e.length),l=function(t){for(var i=null,o=null,a=e.length,u=function(t,i){var o=a-t,u=a;a-=t;var h=s(o+1,u),c=e[o],p=n?n(c):c;l(new r.LLRBNode(p,c.node,i,null,h))},l=function(e){i?(i.left=e,i=e):(o=e,i=e)},h=0;h<t.count;++h){var c=t.nextBitIsOne(),p=Math.pow(2,t.count-(h+1));c?u(p,r.LLRBNode.BLACK):(u(p,r.LLRBNode.BLACK),u(p,r.LLRBNode.RED))}return o}(u);return new i.SortedMap(o||t,l)}},function(e,t,n){"use strict";function r(e,t){return o.nameCompare(e.name,t.name)}function i(e,t){return o.nameCompare(e,t)}Object.defineProperty(t,"__esModule",{value:!0});var o=n(1);t.NAME_ONLY_COMPARATOR=r,t.NAME_COMPARATOR=i},function(e,t,n){"use strict";var r=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(t,"__esModule",{value:!0});var i=n(0),o=n(1),a=n(14),s=n(4),u=n(5),l=n(11),h=function(e){function t(t){var n=e.call(this)||this;return n.Qe=t,i.assert(!t.isEmpty()&&".priority"!==t.getFront(),"Can't create PathIndex with empty path or .priority key"),n}return r(t,e),t.prototype.extractChild=function(e){return e.getChild(this.Qe)},t.prototype.isDefinedOn=function(e){return!e.getChild(this.Qe).isEmpty()},t.prototype.compare=function(e,t){var n=this.extractChild(e.node),r=this.extractChild(t.node),i=n.compareTo(r);return 0===i?o.nameCompare(e.name,t.name):i},t.prototype.makePost=function(e,t){var n=l.nodeFromJSON(e),r=s.ChildrenNode.EMPTY_NODE.updateChild(this.Qe,n);return new u.NamedNode(t,r)},t.prototype.maxPost=function(){var e=s.ChildrenNode.EMPTY_NODE.updateChild(this.Qe,s.MAX_NODE);return new u.NamedNode(o.MAX_NAME,e)},t.prototype.toString=function(){return this.Qe.slice().join("/")},t}(a.Index);t.PathIndex=h},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(0),i=n(2),o=n(44),a=n(15),s=n(11),u=n(3);t.generateWithValues=function(e){return e=e||{},e.timestamp=e.timestamp||(new Date).getTime(),e},t.resolveDeferredValue=function(e,t){return e&&"object"==typeof e?(r.assert(".sv"in e,"Unexpected leaf node or priority contents"),t[e[".sv"]]):e},t.resolveDeferredValueTree=function(e,n){var r=new o.SparseSnapshotTree;return e.forEachTree(new i.Path(""),function(e,i){r.remember(e,t.resolveDeferredValueSnapshot(i,n))}),r},t.resolveDeferredValueSnapshot=function(e,n){var r,i=e.getPriority().val(),o=t.resolveDeferredValue(i,n);if(e.isLeafNode()){var l=e,h=t.resolveDeferredValue(l.getValue(),n);return h!==l.getValue()||o!==l.getPriority().val()?new a.LeafNode(h,s.nodeFromJSON(o)):e}var c=e;return r=c,o!==c.getPriority().val()&&(r=r.updatePriority(new a.LeafNode(o))),c.forEachChild(u.PRIORITY_INDEX,function(e,i){var o=t.resolveDeferredValueSnapshot(i,n);o!==i&&(r=r.updateImmediateChild(e,o))}),r}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(2),i=n(3),o=n(45),a=function(){function e(){this.T=null,this._=null}return e.prototype.find=function(e){if(null!=this.T)return this.T.getChild(e);if(e.isEmpty()||null==this._)return null;var t=e.getFront();return e=e.popFront(),this._.contains(t)?this._.get(t).find(e):null},e.prototype.remember=function(t,n){if(t.isEmpty())this.T=n,this._=null;else if(null!==this.T)this.T=this.T.updateChild(t,n);else{null==this._&&(this._=new o.CountedSet);var r=t.getFront();this._.contains(r)||this._.add(r,new e);var i=this._.get(r);t=t.popFront(),i.remember(t,n)}},e.prototype.forget=function(e){if(e.isEmpty())return this.T=null,this._=null,!0;if(null!==this.T){if(this.T.isLeafNode())return!1;var t=this.T;this.T=null;var n=this;return t.forEachChild(i.PRIORITY_INDEX,function(e,t){n.remember(new r.Path(e),t)}),this.forget(e)}if(null!==this._){var o=e.getFront();return e=e.popFront(),this._.contains(o)&&this._.get(o).forget(e)&&this._.remove(o),!!this._.isEmpty()&&(this._=null,!0)}return!0},e.prototype.forEachTree=function(e,t){null!==this.T?t(e,this.T):this.forEachChild(function(n,i){var o=new r.Path(e+"/"+n);i.forEachTree(o,t)})},e.prototype.forEachChild=function(e){null!==this._&&this._.each(function(t,n){e(t,n)})},e}();t.SparseSnapshotTree=a},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(0),i=function(){function e(){this.set={}}return e.prototype.add=function(e,t){this.set[e]=null===t||t},e.prototype.contains=function(e){return r.contains(this.set,e)},e.prototype.get=function(e){return this.contains(e)?this.set[e]:void 0},e.prototype.remove=function(e){delete this.set[e]},e.prototype.clear=function(){this.set={}},e.prototype.isEmpty=function(){return r.isEmpty(this.set)},e.prototype.count=function(){return r.getCount(this.set)},e.prototype.each=function(e){r.forEach(this.set,function(t,n){return e(t,n)})},e.prototype.keys=function(){var e=[];return r.forEach(this.set,function(t){e.push(t)}),e},e}();t.CountedSet=i},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(8),i=n(2),o=function(){function e(e,t,n){this.source=e,this.path=t,this.snap=n,this.type=r.OperationType.OVERWRITE}return e.prototype.operationForChild=function(t){return this.path.isEmpty()?new e(this.source,i.Path.Empty,this.snap.getImmediateChild(t)):new e(this.source,this.path.popFront(),this.snap)},e}();t.Overwrite=o},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r,i=n(18),o=n(4),a=n(0),s=n(0),u=n(48),l=n(90),h=function(){function e(){this.qe={}}return Object.defineProperty(e,"__referenceConstructor",{get:function(){return a.assert(r,"Reference.ts has not been loaded"),r},set:function(e){a.assert(!r,"__referenceConstructor has already been defined"),r=e},enumerable:!0,configurable:!0}),e.prototype.isEmpty=function(){return s.isEmpty(this.qe)},e.prototype.applyOperation=function(e,t,n){var r=e.source.queryId;if(null!==r){var i=s.safeGet(this.qe,r);return a.assert(null!=i,"SyncTree gave us an op for an invalid query."),i.applyOperation(e,t,n)}var o=[];return s.forEach(this.qe,function(r,i){o=o.concat(i.applyOperation(e,t,n))}),o},e.prototype.addEventRegistration=function(e,t,n,r,a){var h=e.queryIdentifier(),c=s.safeGet(this.qe,h);if(!c){var p=n.calcCompleteEventCache(a?r:null),d=!1;p?d=!0:r instanceof o.ChildrenNode?(p=n.calcCompleteEventChildren(r),d=!1):(p=o.ChildrenNode.EMPTY_NODE,d=!1);var f=new u.ViewCache(new i.CacheNode(p,d,!1),new i.CacheNode(r,a,!1));c=new l.View(e,f),this.qe[h]=c}return c.addEventRegistration(t),c.getInitialEvents(t)},e.prototype.removeEventRegistration=function(t,n,r){var i=t.queryIdentifier(),o=[],a=[],u=this.hasCompleteView();if("default"===i){var l=this;s.forEach(this.qe,function(e,t){a=a.concat(t.removeEventRegistration(n,r)),t.isEmpty()&&(delete l.qe[e],t.getQuery().getQueryParams().loadsAllData()||o.push(t.getQuery()))})}else{var h=s.safeGet(this.qe,i);h&&(a=a.concat(h.removeEventRegistration(n,r)),h.isEmpty()&&(delete this.qe[i],h.getQuery().getQueryParams().loadsAllData()||o.push(h.getQuery())))}return u&&!this.hasCompleteView()&&o.push(new e.__referenceConstructor(t.repo,t.path)),{removed:o,events:a}},e.prototype.getQueryViews=function(){var e=this;return Object.keys(this.qe).map(function(t){return e.qe[t]}).filter(function(e){return!e.getQuery().getQueryParams().loadsAllData()})},e.prototype.getCompleteServerCache=function(e){var t=null;return s.forEach(this.qe,function(n,r){t=t||r.getCompleteServerCache(e)}),t},e.prototype.viewForQuery=function(e){if(e.getQueryParams().loadsAllData())return this.getCompleteView();var t=e.queryIdentifier();return s.safeGet(this.qe,t)},e.prototype.viewExistsForQuery=function(e){return null!=this.viewForQuery(e)},e.prototype.hasCompleteView=function(){return null!=this.getCompleteView()},e.prototype.getCompleteView=function(){return s.findValue(this.qe,function(e){return e.getQuery().getQueryParams().loadsAllData()})||null},e}();t.SyncPoint=h},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(4),i=n(18),o=function(){function e(e,t){this.Ue=e,this.Be=t}return e.prototype.updateEventSnap=function(t,n,r){return new e(new i.CacheNode(t,n,r),this.Be)},e.prototype.updateServerSnap=function(t,n,r){return new e(this.Ue,new i.CacheNode(t,n,r))},e.prototype.getEventCache=function(){return this.Ue},e.prototype.getCompleteEventSnap=function(){return this.Ue.isFullyInitialized()?this.Ue.getNode():null},e.prototype.getServerCache=function(){return this.Be},e.prototype.getCompleteServerSnap=function(){return this.Be.isFullyInitialized()?this.Be.getNode():null},e.Empty=new e(new i.CacheNode(r.ChildrenNode.EMPTY_NODE,!1,!1),new i.CacheNode(r.ChildrenNode.EMPTY_NODE,!1,!1)),e}();t.ViewCache=o},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(0),i=function(){function e(e){this.He=e,this.Ge=null}return e.prototype.get=function(){var e=this.He.get(),t=r.clone(e);return this.Ge&&r.forEach(this.Ge,function(e,n){t[e]=t[e]-n}),this.Ge=e,t},e}();t.StatsListener=i},function(e,t,n){"use strict";var r=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(t,"__esModule",{value:!0});var i=n(6),o=n(0),a=n(0),s=n(0),u=n(1),l=n(2),h=n(102),c=n(103),p=n(0),d=n(52),f=n(0),_=n(0),y=n(55),v=1e3,g=3e5,m=function(e){function t(n,r,i,o,a,s){var l=e.call(this)||this;if(l.H=n,l.ee=r,l.te=i,l.ne=o,l.Ke=a,l.Ye=s,l.id=t.Xe++,l.de=u.logWrapper("p:"+l.id+":"),l.ze={},l.Je={},l.$e=[],l.Ze=0,l.et=[],l.tt=!1,l.nt=v,l.rt=g,l.it=null,l.lastSessionId=null,l.ot=null,l.at=!1,l.st={},l.ut=0,l.lt=null,l.ht=null,l.ct=!1,l.pt=0,l.dt=!0,l.ft=null,l._t=null,s&&!_.isNodeSdk())throw Error("Auth override specified in options, but not supported on non Node.js platforms");return l.yt(0),h.VisibilityMonitor.getInstance().on("visible",l.vt,l),-1===n.host.indexOf("fblocal")&&c.OnlineMonitor.getInstance().on("online",l.gt,l),l}return r(t,e),t.prototype.sendRequest=function(e,t,n){var r=++this.ut,i={r:r,a:e,b:t};this.de(a.stringify(i)),s.assert(this.tt,"sendRequest call when we're not connected not allowed."),this.lt.sendRequest(i),n&&(this.st[r]=n)},t.prototype.listen=function(e,t,n,r){var i=e.queryIdentifier(),o=""+e.path;this.de("Listen called for "+o+" "+i),this.Je[o]=this.Je[o]||{},s.assert(e.getQueryParams().isDefault()||!e.getQueryParams().loadsAllData(),"listen() called for non-default but complete query"),s.assert(!this.Je[o][i],"listen() called twice for same path/queryId.");var a={onComplete:r,hashFn:t,query:e,tag:n};this.Je[o][i]=a,this.tt&&this.mt(a)},t.prototype.mt=function(e){var n=this,r=e.query,i=""+r.path,o=r.queryIdentifier();this.de("Listen on "+i+" for "+o);var a={p:i};e.tag&&(a.q=r.queryObject(),a.t=e.tag),a.h=e.hashFn(),this.sendRequest("q",a,function(a){var s=a.d,u=a.s;t.Ct(s,r),(n.Je[i]&&n.Je[i][o])===e&&(n.de("listen response",a),"ok"!==u&&n.Et(i,o),e.onComplete&&e.onComplete(u,s))})},t.Ct=function(e,t){if(e&&"object"==typeof e&&o.contains(e,"w")){var n=o.safeGet(e,"w");if(Array.isArray(n)&&~n.indexOf("no_index")){var r='".indexOn": "'+t.getQueryParams().getIndex()+'"',i=""+t.path;u.warn("Using an unspecified index. Your data will be downloaded and filtered on the client. Consider adding "+r+" at "+i+" to your security rules for better performance.")}}},t.prototype.refreshAuthToken=function(e){this.ht=e,this.de("Auth token refreshed"),this.ht?this.tryAuth():this.tt&&this.sendRequest("unauth",{},function(){}),this.Nt(e)},t.prototype.Nt=function(e){(e&&40===e.length||p.isAdmin(e))&&(this.de("Admin auth credential detected.  Reducing max reconnect time."),this.rt=3e4)},t.prototype.tryAuth=function(){var e=this;if(this.tt&&this.ht){var t=this.ht,n=p.isValidFormat(t)?"auth":"gauth",r={cred:t};null===this.Ye?r.noauth=!0:"object"==typeof this.Ye&&(r.authvar=this.Ye),this.sendRequest(n,r,function(n){var r=n.s,i=n.d||"error";e.ht===t&&("ok"===r?e.pt=0:e.Pt(r,i))})}},t.prototype.unlisten=function(e,t){var n=""+e.path,r=e.queryIdentifier();this.de("Unlisten called for "+n+" "+r),s.assert(e.getQueryParams().isDefault()||!e.getQueryParams().loadsAllData(),"unlisten() called for non-default but complete query"),this.Et(n,r)&&this.tt&&this.bt(n,r,e.queryObject(),t)},t.prototype.bt=function(e,t,n,r){this.de("Unlisten on "+e+" for "+t);var i={p:e};r&&(i.q=n,i.t=r),this.sendRequest("n",i)},t.prototype.onDisconnectPut=function(e,t,n){this.tt?this.St("o",e,t,n):this.et.push({pathString:e,action:"o",data:t,onComplete:n})},t.prototype.onDisconnectMerge=function(e,t,n){this.tt?this.St("om",e,t,n):this.et.push({pathString:e,action:"om",data:t,onComplete:n})},t.prototype.onDisconnectCancel=function(e,t){this.tt?this.St("oc",e,null,t):this.et.push({pathString:e,action:"oc",data:null,onComplete:t})},t.prototype.St=function(e,t,n,r){var i={p:t,d:n};this.de("onDisconnect "+e,i),this.sendRequest(e,i,function(e){r&&setTimeout(function(){r(e.s,e.d)},Math.floor(0))})},t.prototype.put=function(e,t,n,r){this.putInternal("p",e,t,n,r)},t.prototype.merge=function(e,t,n,r){this.putInternal("m",e,t,n,r)},t.prototype.putInternal=function(e,t,n,r,i){var o={p:t,d:n};void 0!==i&&(o.h=i),this.$e.push({action:e,request:o,onComplete:r}),this.Ze++;var a=this.$e.length-1;this.tt?this.Tt(a):this.de("Buffering put: "+t)},t.prototype.Tt=function(e){var t=this,n=this.$e[e].action,r=this.$e[e].request,i=this.$e[e].onComplete;this.$e[e].queued=this.tt,this.sendRequest(n,r,function(r){t.de(n+" response",r),delete t.$e[e],t.Ze--,0===t.Ze&&(t.$e=[]),i&&i(r.s,r.d)})},t.prototype.reportStats=function(e){var t=this;if(this.tt){var n={c:e};this.de("reportStats",n),this.sendRequest("s",n,function(e){if("ok"!==e.s){var n=e.d;t.de("reportStats","Error sending stats: "+n)}})}},t.prototype.wt=function(e){if("r"in e){this.de("from server: "+a.stringify(e));var t=e.r,n=this.st[t];n&&(delete this.st[t],n(e.b))}else{if("error"in e)throw"A server-side error has occurred: "+e.error;"a"in e&&this.It(e.a,e.b)}},t.prototype.It=function(e,t){this.de("handleServerMessage",e,t),"d"===e?this.ee(t.p,t.d,!1,t.t):"m"===e?this.ee(t.p,t.d,!0,t.t):"c"===e?this.Rt(t.p,t.q):"ac"===e?this.Pt(t.s,t.d):"sd"===e?this.Ot(t):u.error("Unrecognized action received from server: "+a.stringify(e)+"\nAre you using the latest client?")},t.prototype.At=function(e,t){this.de("connection ready"),this.tt=!0,this._t=(new Date).getTime(),this.Dt(e),this.lastSessionId=t,this.dt&&this.Mt(),this.Lt(),this.dt=!1,this.te(!0)},t.prototype.yt=function(e){var t=this;s.assert(!this.lt,"Scheduling a connect when we're already connected/ing?"),this.ot&&clearTimeout(this.ot),this.ot=setTimeout(function(){t.ot=null,t.Ft()},Math.floor(e))},t.prototype.vt=function(e){e&&!this.at&&this.nt===this.rt&&(this.de("Window became visible.  Reducing delay."),this.nt=v,this.lt||this.yt(0)),this.at=e},t.prototype.gt=function(e){e?(this.de("Browser went online."),this.nt=v,this.lt||this.yt(0)):(this.de("Browser went offline.  Killing connection."),this.lt&&this.lt.close())},t.prototype.xt=function(){if(this.de("data client disconnected"),this.tt=!1,this.lt=null,this.kt(),this.st={},this.Wt()){if(this.at){if(this._t){var e=(new Date).getTime()-this._t;e>3e4&&(this.nt=v),this._t=null}}else this.de("Window isn't visible.  Delaying reconnect."),this.nt=this.rt,this.ft=(new Date).getTime();var t=(new Date).getTime()-this.ft,n=Math.max(0,this.nt-t);n=Math.random()*n,this.de("Trying to reconnect in "+n+"ms"),this.yt(n),this.nt=Math.min(this.rt,1.3*this.nt)}this.te(!1)},t.prototype.Ft=function(){if(this.Wt()){this.de("Making a connection attempt"),this.ft=(new Date).getTime(),this._t=null;var e=this.wt.bind(this),n=this.At.bind(this),r=this.xt.bind(this),i=this.id+":"+t.jt++,o=this,a=this.lastSessionId,l=!1,h=null,c=function(){h?h.close():(l=!0,r())},p=function(e){s.assert(h,"sendRequest call when we're not connected not allowed."),h.sendRequest(e)};this.lt={close:c,sendRequest:p};var _=this.ct;this.ct=!1,this.Ke.getToken(_).then(function(t){l?u.log("getToken() completed but was canceled"):(u.log("getToken() completed. Creating connection."),o.ht=t&&t.accessToken,h=new d.Connection(i,o.H,e,n,r,function(e){u.warn(e+" ("+o.H+")"),o.interrupt("server_kill")},a))}).then(null,function(e){o.de("Failed to get token: "+e),l||(f.CONSTANTS.NODE_ADMIN&&u.warn(e),c())})}},t.prototype.interrupt=function(e){u.log("Interrupting connection for reason: "+e),this.ze[e]=!0,this.lt?this.lt.close():(this.ot&&(clearTimeout(this.ot),this.ot=null),this.tt&&this.xt())},t.prototype.resume=function(e){u.log("Resuming connection for reason: "+e),delete this.ze[e],o.isEmpty(this.ze)&&(this.nt=v,this.lt||this.yt(0))},t.prototype.Dt=function(e){var t=e-(new Date).getTime();this.ne({serverTimeOffset:t})},t.prototype.kt=function(){for(var e=0;e<this.$e.length;e++){var t=this.$e[e];t&&"h"in t.request&&t.queued&&(t.onComplete&&t.onComplete("disconnect"),delete this.$e[e],this.Ze--)}0===this.Ze&&(this.$e=[])},t.prototype.Rt=function(e,t){var n;n=t?t.map(function(e){return u.ObjectToUniqueKey(e)}).join("$"):"default";var r=this.Et(e,n);r&&r.onComplete&&r.onComplete("permission_denied")},t.prototype.Et=function(e,t){var n,r=""+new l.Path(e);return void 0!==this.Je[r]?(n=this.Je[r][t],delete this.Je[r][t],0===o.getCount(this.Je[r])&&delete this.Je[r]):n=void 0,n},t.prototype.Pt=function(e,t){u.log("Auth token revoked: "+e+"/"+t),this.ht=null,this.ct=!0,this.lt.close(),"invalid_token"!==e&&"permission_denied"!==e||++this.pt>=3&&(this.nt=3e4,this.Ke.notifyForInvalidToken())},t.prototype.Ot=function(e){this.it?this.it(e):"msg"in e&&"undefined"!=typeof console&&console.log("FIREBASE: "+e.msg.replace("\n","\nFIREBASE: "))},t.prototype.Lt=function(){var e=this;this.tryAuth(),o.forEach(this.Je,function(t,n){o.forEach(n,function(t,n){e.mt(n)})});for(var t=0;t<this.$e.length;t++)this.$e[t]&&this.Tt(t);for(;this.et.length;){var n=this.et.shift();this.St(n.action,n.pathString,n.data,n.onComplete)}},t.prototype.Mt=function(){var e={},t="js";f.CONSTANTS.NODE_ADMIN?t="admin_node":f.CONSTANTS.NODE_CLIENT&&(t="node"),e["sdk."+t+"."+i.default.SDK_VERSION.replace(/\./g,"-")]=1,_.isMobileCordova()?e["framework.cordova"]=1:_.isReactNative()&&(e["framework.reactnative"]=1),this.reportStats(e)},t.prototype.Wt=function(){var e=c.OnlineMonitor.getInstance().currentlyOnline();return o.isEmpty(this.ze)&&e},t.Xe=0,t.jt=0,t}(y.ServerActions);t.PersistentConnection=m},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(0),i=function(){function e(e){this.Vt=e,this.Qt={},r.assert(Array.isArray(e)&&e.length>0,"Requires a non-empty array")}return e.prototype.trigger=function(e){for(var t=[],n=1;n<arguments.length;n++)t[n-1]=arguments[n];if(Array.isArray(this.Qt[e]))for(var r=this.Qt[e].slice(),i=0;i<r.length;i++)r[i].callback.apply(r[i].context,t)},e.prototype.on=function(e,t,n){this.qt(e),this.Qt[e]=this.Qt[e]||[],this.Qt[e].push({callback:t,context:n});var r=this.getInitialEvent(e);r&&t.apply(n,r)},e.prototype.off=function(e,t,n){this.qt(e);for(var r=this.Qt[e]||[],i=0;i<r.length;i++)if(r[i].callback===t&&(!n||n===r[i].context))return void r.splice(i,1)},e.prototype.qt=function(e){r.assert(this.Vt.find(function(t){return t===e}),"Unknown event: "+e)},e}();t.EventEmitter=i},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(1),i=n(12),o=n(13),a=n(104),s=function(){function e(e,t,n,i,o,s,u){this.id=e,this.H=t,this.Ut=n,this.At=i,this.z=o,this.Bt=s,this.lastSessionId=u,this.connectionCount=0,this.pendingDataMessages=[],this.Ht=0,this.de=r.logWrapper("c:"+this.id+":"),this.Gt=new a.TransportManager(t),this.de("Connection created"),this.Kt()}return e.prototype.Kt=function(){var e=this,t=this.Gt.initialTransport();this.Yt=new t(this.Xt(),this.H,void 0,this.lastSessionId),this.zt=t.responsesRequiredToBeHealthy||0;var n=this.Jt(this.Yt),i=this.$t(this.Yt);this.Zt=this.Yt,this.en=this.Yt,this.tn=null,this.nn=!1,setTimeout(function(){e.Yt&&e.Yt.open(n,i)},Math.floor(0));var o=t.healthyTimeout||0;o>0&&(this.rn=r.setTimeoutNonBlocking(function(){e.rn=null,e.nn||(e.Yt&&e.Yt.bytesReceived>102400?(e.de("Connection exceeded healthy timeout but has received "+e.Yt.bytesReceived+" bytes.  Marking connection healthy."),e.nn=!0,e.Yt.markConnectionHealthy()):e.Yt&&e.Yt.bytesSent>10240?e.de("Connection exceeded healthy timeout but has sent "+e.Yt.bytesSent+" bytes.  Leaving connection alive."):(e.de("Closing unhealthy connection after timeout."),e.close()))},Math.floor(o)))},e.prototype.Xt=function(){return"c:"+this.id+":"+this.connectionCount++},e.prototype.$t=function(e){var t=this;return function(n){e===t.Yt?t.in(n):e===t.tn?(t.de("Secondary connection lost."),t.an()):t.de("closing an old connection")}},e.prototype.Jt=function(e){var t=this;return function(n){2!=t.Ht&&(e===t.en?t.sn(n):e===t.tn?t.un(n):t.de("message on old connection"))}},e.prototype.sendRequest=function(e){var t={t:"d",d:e};this.ln(t)},e.prototype.tryCleanupConnection=function(){this.Zt===this.tn&&this.en===this.tn&&(this.de("cleaning up and promoting a connection: "+this.tn.connId),this.Yt=this.tn,this.tn=null)},e.prototype.hn=function(e){if("t"in e){var t=e.t;"a"===t?this.cn():"r"===t?(this.de("Got a reset on secondary, closing it"),this.tn.close(),this.Zt!==this.tn&&this.en!==this.tn||this.close()):"o"===t&&(this.de("got pong on secondary."),this.pn--,this.cn())}},e.prototype.un=function(e){var t=r.requireKey("t",e),n=r.requireKey("d",e);if("c"==t)this.hn(n);else{if("d"!=t)throw Error("Unknown protocol layer: "+t);this.pendingDataMessages.push(n)}},e.prototype.cn=function(){this.pn<=0?(this.de("Secondary connection is healthy."),this.nn=!0,this.tn.markConnectionHealthy(),this.dn()):(this.de("sending ping on secondary."),this.tn.send({t:"c",d:{t:"p",d:{}}}))},e.prototype.dn=function(){this.tn.start(),this.de("sending client ack on secondary"),this.tn.send({t:"c",d:{t:"a",d:{}}}),this.de("Ending transmission on primary"),this.Yt.send({t:"c",d:{t:"n",d:{}}}),this.Zt=this.tn,this.tryCleanupConnection()},e.prototype.sn=function(e){var t=r.requireKey("t",e),n=r.requireKey("d",e);"c"==t?this.fn(n):"d"==t&&this.wt(n)},e.prototype.wt=function(e){this._n(),this.Ut(e)},e.prototype._n=function(){this.nn||--this.zt<=0&&(this.de("Primary connection is healthy."),this.nn=!0,this.Yt.markConnectionHealthy())},e.prototype.fn=function(e){var t=r.requireKey("t",e);if("d"in e){var n=e.d;if("h"===t)this.yn(n);else if("n"===t){this.de("recvd end transmission on primary"),this.en=this.tn;for(var i=0;i<this.pendingDataMessages.length;++i)this.wt(this.pendingDataMessages[i]);this.pendingDataMessages=[],this.tryCleanupConnection()}else"s"===t?this.vn(n):"r"===t?this.gn(n):"e"===t?r.error("Server Error: "+n):"o"===t?(this.de("got pong on primary."),this._n(),this.mn()):r.error("Unknown control packet command: "+t)}},e.prototype.yn=function(e){var t=e.ts,n=e.v,i=e.h;this.sessionId=e.s,this.H.updateHost(i),0==this.Ht&&(this.Yt.start(),this.Cn(this.Yt,t),o.PROTOCOL_VERSION!==n&&r.warn("Protocol version mismatch detected"),this.En())},e.prototype.En=function(){var e=this.Gt.upgradeTransport();e&&this.Nn(e)},e.prototype.Nn=function(e){var t=this;this.tn=new e(this.Xt(),this.H,this.sessionId),this.pn=e.responsesRequiredToBeHealthy||0;var n=this.Jt(this.tn),i=this.$t(this.tn);this.tn.open(n,i),r.setTimeoutNonBlocking(function(){t.tn&&(t.de("Timed out trying to upgrade."),t.tn.close())},Math.floor(6e4))},e.prototype.gn=function(e){this.de("Reset packet received.  New host: "+e),this.H.updateHost(e),1===this.Ht?this.close():(this.Pn(),this.Kt())},e.prototype.Cn=function(e,t){var n=this;this.de("Realtime connection established."),this.Yt=e,this.Ht=1,this.At&&(this.At(t,this.sessionId),this.At=null),0===this.zt?(this.de("Primary connection is healthy."),this.nn=!0):r.setTimeoutNonBlocking(function(){n.mn()},Math.floor(5e3))},e.prototype.mn=function(){this.nn||1!==this.Ht||(this.de("sending ping on primary."),this.ln({t:"c",d:{t:"p",d:{}}}))},e.prototype.an=function(){var e=this.tn;this.tn=null,this.Zt!==e&&this.en!==e||this.close()},e.prototype.in=function(e){this.Yt=null,e||0!==this.Ht?1===this.Ht&&this.de("Realtime connection lost."):(this.de("Realtime connection failed."),this.H.isCacheableHost()&&(i.PersistentStorage.remove("host:"+this.H.host),this.H.internalHost=this.H.host)),this.close()},e.prototype.vn=function(e){this.de("Connection shutdown command received. Shutting down..."),this.Bt&&(this.Bt(e),this.Bt=null),this.z=null,this.close()},e.prototype.ln=function(e){if(1!==this.Ht)throw"Connection is not connected";this.Zt.send(e)},e.prototype.close=function(){2!==this.Ht&&(this.de("Closing realtime connection."),this.Ht=2,this.Pn(),this.z&&(this.z(),this.z=null))},e.prototype.Pn=function(){this.de("Shutting down all connections"),this.Yt&&(this.Yt.close(),this.Yt=null),this.tn&&(this.tn.close(),this.tn=null),this.rn&&(clearTimeout(this.rn),this.rn=null)},e}();t.Connection=s},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(1),i=n(45),o=n(25),a=n(105),s=n(13),u=n(0),l=n(0);t.FIREBASE_LONGPOLL_START_PARAM="start",t.FIREBASE_LONGPOLL_CLOSE_COMMAND="close",t.FIREBASE_LONGPOLL_COMMAND_CB_NAME="pLPCommand",t.FIREBASE_LONGPOLL_DATA_CB_NAME="pRTLPCB",t.FIREBASE_LONGPOLL_ID_PARAM="id",t.FIREBASE_LONGPOLL_PW_PARAM="pw",t.FIREBASE_LONGPOLL_SERIAL_PARAM="ser",t.FIREBASE_LONGPOLL_CALLBACK_ID_PARAM="cb",t.FIREBASE_LONGPOLL_SEGMENT_NUM_PARAM="seg",t.FIREBASE_LONGPOLL_SEGMENTS_IN_PACKET="ts",t.FIREBASE_LONGPOLL_DATA_PARAM="d",t.FIREBASE_LONGPOLL_DISCONN_FRAME_PARAM="disconn",t.FIREBASE_LONGPOLL_DISCONN_FRAME_REQUEST_PARAM="dframe";var h=function(){function e(e,t,n,i){this.connId=e,this.repoInfo=t,this.transportSessionId=n,this.lastSessionId=i,this.bytesSent=0,this.bytesReceived=0,this.bn=!1,this.de=r.logWrapper(e),this.$=o.StatsManager.getCollection(t),this.urlFn=function(e){return t.connectionURL(s.LONG_POLLING,e)}}return e.prototype.open=function(e,n){var i=this;this.curSegmentNum=0,this.z=n,this.myPacketOrderer=new a.PacketReceiver(e),this.Sn=!1,this.Tn=setTimeout(function(){i.de("Timed out trying to connect."),i.wn(),i.Tn=null},Math.floor(3e4)),r.executeWhenDOMReady(function(){if(!i.Sn){i.scriptTagHolder=new c(function(){for(var e=[],n=0;n<arguments.length;n++)e[n]=arguments[n];var r=e[0],o=e[1],a=e[2];if(e[3],e[4],i.In(e),i.scriptTagHolder)if(i.Tn&&(clearTimeout(i.Tn),i.Tn=null),i.bn=!0,r==t.FIREBASE_LONGPOLL_START_PARAM)i.id=o,i.password=a;else{if(r!==t.FIREBASE_LONGPOLL_CLOSE_COMMAND)throw Error("Unrecognized command received: "+r);o?(i.scriptTagHolder.sendNewPolls=!1,i.myPacketOrderer.closeAfter(o,function(){i.wn()})):i.wn()}},function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];var n=e[0],r=e[1];i.In(e),i.myPacketOrderer.handleResponse(n,r)},function(){i.wn()},i.urlFn);var e={};e[t.FIREBASE_LONGPOLL_START_PARAM]="t",e[t.FIREBASE_LONGPOLL_SERIAL_PARAM]=Math.floor(1e8*Math.random()),i.scriptTagHolder.uniqueCallbackIdentifier&&(e[t.FIREBASE_LONGPOLL_CALLBACK_ID_PARAM]=i.scriptTagHolder.uniqueCallbackIdentifier),e[s.VERSION_PARAM]=s.PROTOCOL_VERSION,i.transportSessionId&&(e[s.TRANSPORT_SESSION_PARAM]=i.transportSessionId),i.lastSessionId&&(e[s.LAST_SESSION_PARAM]=i.lastSessionId),!l.isNodeSdk()&&"undefined"!=typeof location&&location.href&&-1!==location.href.indexOf(s.FORGE_DOMAIN)&&(e[s.REFERER_PARAM]=s.FORGE_REF);var n=i.urlFn(e);i.de("Connecting via long-poll to "+n),i.scriptTagHolder.addTag(n,function(){})}})},e.prototype.start=function(){this.scriptTagHolder.startLongPoll(this.id,this.password),this.addDisconnectPingFrame(this.id,this.password)},e.forceAllow=function(){e.Rn=!0},e.forceDisallow=function(){e.On=!0},e.isAvailable=function(){return e.Rn||!e.On&&"undefined"!=typeof document&&null!=document.createElement&&!r.isChromeExtensionContentScript()&&!r.isWindowsStoreApp()&&!l.isNodeSdk()},e.prototype.markConnectionHealthy=function(){},e.prototype.An=function(){this.Sn=!0,this.scriptTagHolder&&(this.scriptTagHolder.close(),this.scriptTagHolder=null),this.myDisconnFrame&&(document.body.removeChild(this.myDisconnFrame),this.myDisconnFrame=null),this.Tn&&(clearTimeout(this.Tn),this.Tn=null)},e.prototype.wn=function(){this.Sn||(this.de("Longpoll is closing itself"),this.An(),this.z&&(this.z(this.bn),this.z=null))},e.prototype.close=function(){this.Sn||(this.de("Longpoll is being closed."),this.An())},e.prototype.send=function(e){var t=u.stringify(e);this.bytesSent+=t.length,this.$.incrementCounter("bytes_sent",t.length);for(var n=u.base64Encode(t),i=r.splitStringBySize(n,1840),o=0;o<i.length;o++)this.scriptTagHolder.enqueueSegment(this.curSegmentNum,i.length,i[o]),this.curSegmentNum++},e.prototype.addDisconnectPingFrame=function(e,n){if(!l.isNodeSdk()){this.myDisconnFrame=document.createElement("iframe");var r={};r[t.FIREBASE_LONGPOLL_DISCONN_FRAME_REQUEST_PARAM]="t",r[t.FIREBASE_LONGPOLL_ID_PARAM]=e,r[t.FIREBASE_LONGPOLL_PW_PARAM]=n,this.myDisconnFrame.src=this.urlFn(r),this.myDisconnFrame.style.display="none",document.body.appendChild(this.myDisconnFrame)}},e.prototype.In=function(e){var t=u.stringify(e).length;this.bytesReceived+=t,this.$.incrementCounter("bytes_received",t)},e}();t.BrowserPollConnection=h;var c=function(){function e(n,o,a,s){if(this.onDisconnect=a,this.urlFn=s,this.outstandingRequests=new i.CountedSet,this.pendingSegs=[],this.currentSerial=Math.floor(1e8*Math.random()),this.sendNewPolls=!0,l.isNodeSdk())this.commandCB=n,this.onMessageCB=o;else{this.uniqueCallbackIdentifier=r.LUIDGenerator(),window[t.FIREBASE_LONGPOLL_COMMAND_CB_NAME+this.uniqueCallbackIdentifier]=n,window[t.FIREBASE_LONGPOLL_DATA_CB_NAME+this.uniqueCallbackIdentifier]=o,this.myIFrame=e.Dn();var u="";this.myIFrame.src&&"javascript:"===this.myIFrame.src.substr(0,11)&&(u='<script>document.domain="'+document.domain+'";<\/script>');var h="<html><body>"+u+"</body></html>";try{this.myIFrame.doc.open(),this.myIFrame.doc.write(h),this.myIFrame.doc.close()}catch(e){r.log("frame writing exception"),e.stack&&r.log(e.stack),r.log(e)}}}return e.Dn=function(){var e=document.createElement("iframe");if(e.style.display="none",!document.body)throw"Document body has not initialized. Wait to initialize Firebase until after the document is ready.";document.body.appendChild(e);try{e.contentWindow.document||r.log("No IE domain setting required")}catch(n){var t=document.domain;e.src="javascript:void((function(){document.open();document.domain='"+t+"';document.close();})())"}return e.contentDocument?e.doc=e.contentDocument:e.contentWindow?e.doc=e.contentWindow.document:e.document&&(e.doc=e.document),e},e.prototype.close=function(){var n=this;if(this.alive=!1,this.myIFrame&&(this.myIFrame.doc.body.innerHTML="",setTimeout(function(){null!==n.myIFrame&&(document.body.removeChild(n.myIFrame),n.myIFrame=null)},Math.floor(0))),l.isNodeSdk()&&this.myID){var r={};r[t.FIREBASE_LONGPOLL_DISCONN_FRAME_PARAM]="t",r[t.FIREBASE_LONGPOLL_ID_PARAM]=this.myID,r[t.FIREBASE_LONGPOLL_PW_PARAM]=this.myPW;var i=this.urlFn(r);e.nodeRestRequest(i)}var o=this.onDisconnect;o&&(this.onDisconnect=null,o())},e.prototype.startLongPoll=function(e,t){for(this.myID=e,this.myPW=t,this.alive=!0;this.Mn(););},e.prototype.Mn=function(){if(this.alive&&this.sendNewPolls&&this.outstandingRequests.count()<(this.pendingSegs.length>0?2:1)){this.currentSerial++;var e={};e[t.FIREBASE_LONGPOLL_ID_PARAM]=this.myID,e[t.FIREBASE_LONGPOLL_PW_PARAM]=this.myPW,e[t.FIREBASE_LONGPOLL_SERIAL_PARAM]=this.currentSerial
\ No newline at end of file
diff --git a/app/etc/di.xml b/app/etc/di.xml
index de508406766..1b563229913 100755
--- a/app/etc/di.xml
+++ b/app/etc/di.xml
@@ -642,7 +642,7 @@
     <virtualType name="developerMaterialization" type="Magento\Framework\App\View\Asset\MaterializationStrategy\Factory">
         <arguments>
             <argument name="strategiesList" xsi:type="array">
-                <item name="view_preprocessed" xsi:type="object">Magento\Framework\App\View\Asset\MaterializationStrategy\Symlink</item>
+                <item name="view_preprocessed" xsi:type="object">Magento\Framework\App\View\Asset\MaterializationStrategy\Copy</item>
                 <item name="default" xsi:type="object">Magento\Framework\App\View\Asset\MaterializationStrategy\Copy</item>
             </argument>
         </arguments>
-- 
GitLab


From 74842f17b11a3b68f5d829cf5c9bc0207e1dcd9b Mon Sep 17 00:00:00 2001
From: dewitast <dewitast20@gmail.com>
Date: Thu, 8 Feb 2018 08:18:34 +0700
Subject: [PATCH 11/19] merge with module

---
 .../view/frontend/templates/messaging.phtml   | 53 ++++++++++++-------
 .../Messaging/view/frontend/web/css/chat.css  | 12 ++++-
 2 files changed, 43 insertions(+), 22 deletions(-)

diff --git a/app/code/Magento/Messaging/view/frontend/templates/messaging.phtml b/app/code/Magento/Messaging/view/frontend/templates/messaging.phtml
index ffb2f8fae89..322023aedfe 100644
--- a/app/code/Magento/Messaging/view/frontend/templates/messaging.phtml
+++ b/app/code/Magento/Messaging/view/frontend/templates/messaging.phtml
@@ -21,31 +21,44 @@
             console.log("startListening");
             myFirebase.on("child_added", function(snapshot) {
               var chatrooms = snapshot.val();
+            
+            if ((chatrooms.sender=="person1")||(chatrooms.receiver=="person1")){
+            	var chatlist = document.getElementById("chatlist");
+            	//Kalo usernamenya sama, hapus yang sebelumnya
+            	for (i = 0; i < chatlist.childElementCount; i++) { 
+				   	var username = chatlist.childNodes[i].childNodes[0].childNodes[0].innerText;
+				   	if ((username==chatrooms.sender)||(username==chatrooms.receiver)){
+						chatlist.removeChild(chatlist.childNodes[i]);       
+				   	}
+				}
 
-              if (chatrooms.sender=="person1"){
-                console.log("yeay");
-                var chatroom_item = document.createElement("div");
-                chatroom_item.classList.add("chatroom-item");
+	            var chatroom_item = document.createElement("div");
+	            chatroom_item.classList.add('chatroom-item');
 
-                var chatroom_username = document.createElement("div");
-                chatroom_username.classList.add("chatroom-username");
+	            var chatroom_username = document.createElement("div");
+	            chatroom_username.classList.add('chatroom-username');
 
-                var chatroom_lastmessage = document.createElement("div");
-                chatroom_lastmessage.classList.add("chatroom-lastmessage");
+	            var chatroom_lastmessage = document.createElement("div");
+	            chatroom_lastmessage.classList.add('chatroom-lastmessage');
 
-                var chatroom_username_span = document.createElement("span");
-                chatroom_username_span.textContent = chatrooms.receiver;
-                chatroom_username.appendChild(chatroom_username_span);
-                var chatroom_lastmessage_span = document.createElement("span");
-                chatroom_lastmessage_span.textContent = chatrooms.message;
-                chatroom_lastmessage.appendChild(chatroom_lastmessage_span);
+	            var chatroom_username_span = document.createElement("span"); 
+            	if (chatrooms.sender=="person1") {
+            		chatroom_username_span.textContent = chatrooms.receiver;
+            	} else {
+            		chatroom_username_span.textContent = chatrooms.sender;
+            	}
+	            
+	            chatroom_username.appendChild(chatroom_username_span);
+	            var chatroom_lastmessage_span = document.createElement("span");
+	            chatroom_lastmessage_span.textContent = chatrooms.message;
+	            chatroom_lastmessage.appendChild(chatroom_lastmessage_span);
 
-                chatroom_item.appendChild(chatroom_username);
-                chatroom_item.appendChild(chatroom_lastmessage);
-                var chatlist = document.getElementById("chatlist");
-
-                chatlist.appendChild(chatroom_item);
-              }
+	            chatroom_item.appendChild(chatroom_username);
+				chatroom_item.appendChild(chatroom_lastmessage);
+	            
+	           
+            	chatlist.insertBefore(chatroom_item, chatlist.childNodes[0]);
+            } 
             });
           }
 
diff --git a/app/code/Magento/Messaging/view/frontend/web/css/chat.css b/app/code/Magento/Messaging/view/frontend/web/css/chat.css
index d8637994973..0c5b4ad9a69 100644
--- a/app/code/Magento/Messaging/view/frontend/web/css/chat.css
+++ b/app/code/Magento/Messaging/view/frontend/web/css/chat.css
@@ -8,9 +8,10 @@ body {
     margin: 25px;
     width: 500px;
     height: 600px;
+    /*height: 200px;*/
     border: 1px solid black;
     font-family: Helvetica;
-    position: relative;
+    /*position: relative;*/
 }
 
 .chat-title {
@@ -27,7 +28,14 @@ body {
 .chat-box {
     background: rgb(243, 248, 255);
     height:452px;
-    padding-bottom: 50px;
+    /*padding-bottom: 50px;*/
+    /* height: auto; */
+    overflow: auto;
+}
+.chat-list {
+    background: rgb(243, 248, 255);
+    height:505px;
+    /*padding-bottom: 50px;*/
     /* height: auto; */
     overflow: auto;
 }
-- 
GitLab


From 91bae3bf502101f311e6379f9fcd20bd81085c75 Mon Sep 17 00:00:00 2001
From: dewitast <dewitast20@gmail.com>
Date: Thu, 8 Feb 2018 08:34:29 +0700
Subject: [PATCH 12/19] Add chat room

---
 app/code/Magento/Messaging/Block/Room.php     |  7 +++
 .../Messaging/Controller/Room/Index.php       | 22 ++++++++
 .../frontend/layout/messaging_index_index.xml |  2 +-
 .../frontend/layout/messaging_room_index.xml  | 14 +++++
 .../view/frontend/templates/messaging.phtml   |  4 --
 .../view/frontend/templates/room.phtml        | 55 +++++++++++++++++++
 6 files changed, 99 insertions(+), 5 deletions(-)
 create mode 100644 app/code/Magento/Messaging/Block/Room.php
 create mode 100644 app/code/Magento/Messaging/Controller/Room/Index.php
 create mode 100644 app/code/Magento/Messaging/view/frontend/layout/messaging_room_index.xml
 create mode 100644 app/code/Magento/Messaging/view/frontend/templates/room.phtml

diff --git a/app/code/Magento/Messaging/Block/Room.php b/app/code/Magento/Messaging/Block/Room.php
new file mode 100644
index 00000000000..f6472a4262a
--- /dev/null
+++ b/app/code/Magento/Messaging/Block/Room.php
@@ -0,0 +1,7 @@
+<?php
+namespace Magento\Messaging\Block;
+ 
+class Room extends \Magento\Framework\View\Element\Template
+{
+
+}
\ No newline at end of file
diff --git a/app/code/Magento/Messaging/Controller/Room/Index.php b/app/code/Magento/Messaging/Controller/Room/Index.php
new file mode 100644
index 00000000000..d0182fc9421
--- /dev/null
+++ b/app/code/Magento/Messaging/Controller/Room/Index.php
@@ -0,0 +1,22 @@
+<?php
+ 
+namespace Magento\Messaging\Controller\Room;
+ 
+use Magento\Framework\App\Action\Context;
+ 
+class Index extends \Magento\Framework\App\Action\Action
+{
+    protected $_resultPageFactory;
+ 
+    public function __construct(Context $context, \Magento\Framework\View\Result\PageFactory $resultPageFactory)
+    {
+        $this->_resultPageFactory = $resultPageFactory;
+        parent::__construct($context);
+    }
+ 
+    public function execute()
+    {
+        $resultPage = $this->_resultPageFactory->create();
+        return $resultPage;
+    }
+}
\ No newline at end of file
diff --git a/app/code/Magento/Messaging/view/frontend/layout/messaging_index_index.xml b/app/code/Magento/Messaging/view/frontend/layout/messaging_index_index.xml
index 323932d2fcb..09125c78958 100644
--- a/app/code/Magento/Messaging/view/frontend/layout/messaging_index_index.xml
+++ b/app/code/Magento/Messaging/view/frontend/layout/messaging_index_index.xml
@@ -3,7 +3,7 @@
 		<title>Messaging</title>
 		<css src="Magento_Messaging::css/chat.css" />
 		<script src="Magento_Messaging::js/chat.js" />
-		<script src="Magento_Messaging::js/firebaselib.js"></script>
+		<script src="Magento_Messaging::js/firebaselib.js" />
 		<script src="Magento_Messaging::js/firebase.js" />
 	</head>
     <body>
diff --git a/app/code/Magento/Messaging/view/frontend/layout/messaging_room_index.xml b/app/code/Magento/Messaging/view/frontend/layout/messaging_room_index.xml
new file mode 100644
index 00000000000..5e80f411234
--- /dev/null
+++ b/app/code/Magento/Messaging/view/frontend/layout/messaging_room_index.xml
@@ -0,0 +1,14 @@
+<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../../../lib/internal/Magento/Framework/View/Layout/etc/page_configuration.xsd" layout="1column">
+	<head>
+		<title>Messaging</title>
+		<css src="Magento_Messaging::css/chat.css" />
+		<script src="Magento_Messaging::js/chat.js" />
+		<script src="Magento_Messaging::js/firebaselib.js" />
+		<script src="Magento_Messaging::js/firebase.js" />
+	</head>
+    <body>
+        <referenceContainer name="content">
+            <block class="Magento\Messaging\Block\Room" name="room" template="room.phtml" />
+        </referenceContainer>
+    </body>
+</page>
\ No newline at end of file
diff --git a/app/code/Magento/Messaging/view/frontend/templates/messaging.phtml b/app/code/Magento/Messaging/view/frontend/templates/messaging.phtml
index 322023aedfe..d3afc5ee12d 100644
--- a/app/code/Magento/Messaging/view/frontend/templates/messaging.phtml
+++ b/app/code/Magento/Messaging/view/frontend/templates/messaging.phtml
@@ -17,7 +17,6 @@
     var myFirebase = new Firebase('https://magentochat.firebaseio.com/');
 		require(['jquery'], function($) {
 			$(document).ready(function() {
-  				function init() {
             console.log("startListening");
             myFirebase.on("child_added", function(snapshot) {
               var chatrooms = snapshot.val();
@@ -60,9 +59,6 @@
             	chatlist.insertBefore(chatroom_item, chatlist.childNodes[0]);
             } 
             });
-          }
-
-          setTimeout(init, 2000);
 
     		});
 		});
diff --git a/app/code/Magento/Messaging/view/frontend/templates/room.phtml b/app/code/Magento/Messaging/view/frontend/templates/room.phtml
new file mode 100644
index 00000000000..de708689463
--- /dev/null
+++ b/app/code/Magento/Messaging/view/frontend/templates/room.phtml
@@ -0,0 +1,55 @@
+<div class="box">
+    <div class = "chat-title">
+        <span class="name">Person 1 Name</span>
+    </div>
+    <div class="chat-form" >
+        <div id="chatbox" class="chat-box">
+        </div>
+        <div class="chat-input">
+            <div>
+                <input id="sender" type="hidden" value="person1">
+                <input id="receiver" type="hidden" value="person2">
+                <input id="message" type="text" name="chattext" class="message-content">
+                <input id="send" type="submit" class="send-button" onclick="send()">
+            </div>
+        </div>
+    </div>
+</div>
+<script>
+    var myFirebase = new Firebase('https://magentochat.firebaseio.com/');
+    require(['jquery'], function($) {
+        $(document).ready(function() {
+            myFirebase.on('child_added', function(snapshot) {
+                var msg = snapshot.val();
+                if (((msg.sender=="person1")&&(msg.receiver=="person2"))||((msg.sender=="person2")&&(msg.receiver=="person1"))) {
+                    var msgTextElement = document.createElement("p");
+                    msgTextElement.textContent = msg.message;
+        
+                    if (msg.sender=="person1"){
+                        msgTextElement.classList.add('sendermessage');
+                    } else if (msg.sender=="person2") {
+                        msgTextElement.classList.add('receivemessage');
+                    } else {
+                        
+                    }
+                    var chatbox = document.getElementById("chatbox");
+                    chatbox.appendChild(msgTextElement);
+                    chatbox.scrollTop=chatbox.scrollHeight;
+                }
+                
+            });
+        });
+    });
+    function send() {
+        console.log("masuk");
+        var sender = document.getElementById("sender").value;
+        var receiver = document.getElementById("receiver").value;
+        var message = document.getElementById("message").value;
+        myFirebase.push({
+            sender: sender,
+            receiver: receiver,
+            message: message
+        });
+        document.getElementById("message").value = "";
+  }
+</script>
\ No newline at end of file
-- 
GitLab


From 0967609487ff2050ff27cefb401414da32d0b055 Mon Sep 17 00:00:00 2001
From: dewitast <dewitast20@gmail.com>
Date: Thu, 8 Feb 2018 08:55:38 +0700
Subject: [PATCH 13/19] Add search email

---
 app/code/Magento/Messaging/Block/Room.php     | 20 +++++++++++++++++++
 .../view/frontend/templates/room.phtml        |  3 ++-
 2 files changed, 22 insertions(+), 1 deletion(-)

diff --git a/app/code/Magento/Messaging/Block/Room.php b/app/code/Magento/Messaging/Block/Room.php
index f6472a4262a..e69f1d1ea74 100644
--- a/app/code/Magento/Messaging/Block/Room.php
+++ b/app/code/Magento/Messaging/Block/Room.php
@@ -3,5 +3,25 @@ namespace Magento\Messaging\Block;
  
 class Room extends \Magento\Framework\View\Element\Template
 {
+	/**
+	  * @var \Magento\Framework\App\ObjectManager
+	  */
+	public $om;
 
+	/**
+	  * @var \Magento\Customer\Model\Session
+	  */
+	public $session;
+
+	public function getEmail() {
+    	if ($om === null || $session === null) {
+    		$om = \Magento\Framework\App\ObjectManager::getInstance();
+    		$session = $om->get('\Magento\Customer\Model\Session');
+    	}
+    	if ($session->isLoggedIn()) {
+    		return $session->getCustomer()->getEmail();
+    	} else {
+    		return "Kosong";
+    	}
+    }
 }
\ No newline at end of file
diff --git a/app/code/Magento/Messaging/view/frontend/templates/room.phtml b/app/code/Magento/Messaging/view/frontend/templates/room.phtml
index de708689463..13f717f0c86 100644
--- a/app/code/Magento/Messaging/view/frontend/templates/room.phtml
+++ b/app/code/Magento/Messaging/view/frontend/templates/room.phtml
@@ -1,6 +1,6 @@
 <div class="box">
     <div class = "chat-title">
-        <span class="name">Person 1 Name</span>
+        <span class="name"></span>
     </div>
     <div class="chat-form" >
         <div id="chatbox" class="chat-box">
@@ -16,6 +16,7 @@
     </div>
 </div>
 <script>
+    console.log(<?php $this->getEmail() ?>);
     var myFirebase = new Firebase('https://magentochat.firebaseio.com/');
     require(['jquery'], function($) {
         $(document).ready(function() {
-- 
GitLab


From 6c8779032abbe3c89179c54b05979d9502de0606 Mon Sep 17 00:00:00 2001
From: dewitast <dewitast20@gmail.com>
Date: Thu, 8 Feb 2018 09:19:52 +0700
Subject: [PATCH 14/19] Get customer email

---
 .../Messaging/view/frontend/templates/room.phtml    | 13 +++++++++++--
 1 file changed, 11 insertions(+), 2 deletions(-)

diff --git a/app/code/Magento/Messaging/view/frontend/templates/room.phtml b/app/code/Magento/Messaging/view/frontend/templates/room.phtml
index 13f717f0c86..ac4bc49a4c2 100644
--- a/app/code/Magento/Messaging/view/frontend/templates/room.phtml
+++ b/app/code/Magento/Messaging/view/frontend/templates/room.phtml
@@ -1,6 +1,16 @@
 <div class="box">
     <div class = "chat-title">
-        <span class="name"></span>
+        <span class="name">
+            <?php
+                $objectManager = \Magento\Framework\App\ObjectManager::getInstance();
+                $customerSession = $objectManager->get('Magento\Customer\Model\Session');
+                if ($customerSession->isLoggedIn()) { 
+                    echo   $customerSession->getCustomer()->getEmail();  // get  Last Name
+                } else {
+                    echo "Kosong";
+                }
+            ?>
+        </span>
     </div>
     <div class="chat-form" >
         <div id="chatbox" class="chat-box">
@@ -16,7 +26,6 @@
     </div>
 </div>
 <script>
-    console.log(<?php $this->getEmail() ?>);
     var myFirebase = new Firebase('https://magentochat.firebaseio.com/');
     require(['jquery'], function($) {
         $(document).ready(function() {
-- 
GitLab


From f36019eccb2998b536d4cab5efaf510e00f6340c Mon Sep 17 00:00:00 2001
From: Albertdj <albertusdjauharidjohan@gmail.com>
Date: Thu, 8 Feb 2018 16:57:53 +0700
Subject: [PATCH 15/19] replace dummy variable with real variable

---
 .../view/frontend/templates/messaging.phtml   | 18 +++++++++++---
 .../view/frontend/templates/room.phtml        | 24 ++++++++++---------
 2 files changed, 28 insertions(+), 14 deletions(-)

diff --git a/app/code/Magento/Messaging/view/frontend/templates/messaging.phtml b/app/code/Magento/Messaging/view/frontend/templates/messaging.phtml
index d3afc5ee12d..14f77c9f09d 100644
--- a/app/code/Magento/Messaging/view/frontend/templates/messaging.phtml
+++ b/app/code/Magento/Messaging/view/frontend/templates/messaging.phtml
@@ -1,3 +1,13 @@
+<?php
+    $objectManager = \Magento\Framework\App\ObjectManager::getInstance();
+    $customerSession = $objectManager->get('Magento\Customer\Model\Session');
+    $email = "";
+    if ($customerSession->isLoggedIn()) { 
+        $email = $customerSession->getCustomer()->getEmail();
+    } else {
+        $email = "";
+    }
+?>
 <div class="box" >
 	<div class = "chat-title">
 		<span class="name">Chats</span>
@@ -21,7 +31,7 @@
             myFirebase.on("child_added", function(snapshot) {
               var chatrooms = snapshot.val();
             
-            if ((chatrooms.sender=="person1")||(chatrooms.receiver=="person1")){
+            if ((chatrooms.sender==<?= $email ?>)||(chatrooms.receiver==<?= $email ?>)){
             	var chatlist = document.getElementById("chatlist");
             	//Kalo usernamenya sama, hapus yang sebelumnya
             	for (i = 0; i < chatlist.childElementCount; i++) { 
@@ -31,7 +41,7 @@
 				   	}
 				}
 
-	            var chatroom_item = document.createElement("div");
+	            var chatroom_item = document.createElement('a');
 	            chatroom_item.classList.add('chatroom-item');
 
 	            var chatroom_username = document.createElement("div");
@@ -41,10 +51,12 @@
 	            chatroom_lastmessage.classList.add('chatroom-lastmessage');
 
 	            var chatroom_username_span = document.createElement("span"); 
-            	if (chatrooms.sender=="person1") {
+            	if (chatrooms.sender==<?= $email ?>) {
             		chatroom_username_span.textContent = chatrooms.receiver;
+                chatroom_item.href = "/messaging/room/?email=" + chatrooms.receiver;
             	} else {
             		chatroom_username_span.textContent = chatrooms.sender;
+                chatroom_item.href = "/messaging/room/?email=" + chatrooms.sender;
             	}
 	            
 	            chatroom_username.appendChild(chatroom_username_span);
diff --git a/app/code/Magento/Messaging/view/frontend/templates/room.phtml b/app/code/Magento/Messaging/view/frontend/templates/room.phtml
index ac4bc49a4c2..5b557d2d4ca 100644
--- a/app/code/Magento/Messaging/view/frontend/templates/room.phtml
+++ b/app/code/Magento/Messaging/view/frontend/templates/room.phtml
@@ -1,15 +1,17 @@
+<?php
+    $objectManager = \Magento\Framework\App\ObjectManager::getInstance();
+    $customerSession = $objectManager->get('Magento\Customer\Model\Session');
+    $email = "";
+    if ($customerSession->isLoggedIn()) { 
+        $email = $customerSession->getCustomer()->getEmail();
+    } else {
+        $email = "";
+    }
+?>
 <div class="box">
     <div class = "chat-title">
         <span class="name">
-            <?php
-                $objectManager = \Magento\Framework\App\ObjectManager::getInstance();
-                $customerSession = $objectManager->get('Magento\Customer\Model\Session');
-                if ($customerSession->isLoggedIn()) { 
-                    echo   $customerSession->getCustomer()->getEmail();  // get  Last Name
-                } else {
-                    echo "Kosong";
-                }
-            ?>
+            <?= $email ?>
         </span>
     </div>
     <div class="chat-form" >
@@ -17,8 +19,8 @@
         </div>
         <div class="chat-input">
             <div>
-                <input id="sender" type="hidden" value="person1">
-                <input id="receiver" type="hidden" value="person2">
+                <input id="sender" type="hidden" value="<?= $email ?>">
+                <input id="receiver" type="hidden" value="<?= $_GET['email'] ?>">
                 <input id="message" type="text" name="chattext" class="message-content">
                 <input id="send" type="submit" class="send-button" onclick="send()">
             </div>
-- 
GitLab


From 151122f5533e267abb2f5d02dc4dc08319256082 Mon Sep 17 00:00:00 2001
From: Albertdj <albertusdjauharidjohan@gmail.com>
Date: Thu, 8 Feb 2018 17:22:51 +0700
Subject: [PATCH 16/19] fix chat bug

---
 .../view/frontend/templates/room.phtml        | 38 +++++++++++++------
 1 file changed, 27 insertions(+), 11 deletions(-)

diff --git a/app/code/Magento/Messaging/view/frontend/templates/room.phtml b/app/code/Magento/Messaging/view/frontend/templates/room.phtml
index 5b557d2d4ca..e0088236c42 100644
--- a/app/code/Magento/Messaging/view/frontend/templates/room.phtml
+++ b/app/code/Magento/Messaging/view/frontend/templates/room.phtml
@@ -21,7 +21,7 @@
             <div>
                 <input id="sender" type="hidden" value="<?= $email ?>">
                 <input id="receiver" type="hidden" value="<?= $_GET['email'] ?>">
-                <input id="message" type="text" name="chattext" class="message-content">
+                <input id="message" type="text" name="chattext" class="message-content" onkeypress="send2(event)">
                 <input id="send" type="submit" class="send-button" onclick="send()">
             </div>
         </div>
@@ -33,13 +33,15 @@
         $(document).ready(function() {
             myFirebase.on('child_added', function(snapshot) {
                 var msg = snapshot.val();
-                if (((msg.sender=="person1")&&(msg.receiver=="person2"))||((msg.sender=="person2")&&(msg.receiver=="person1"))) {
+                var sender = document.getElementById("sender").value;
+                var receiver = document.getElementById("receiver").value;
+                if (((msg.sender==sender)&&(msg.receiver==receiver))||((msg.sender==receiver)&&(msg.receiver==sender))) {
                     var msgTextElement = document.createElement("p");
                     msgTextElement.textContent = msg.message;
         
-                    if (msg.sender=="person1"){
+                    if (msg.sender==sender){
                         msgTextElement.classList.add('sendermessage');
-                    } else if (msg.sender=="person2") {
+                    } else if (msg.sender==receiver) {
                         msgTextElement.classList.add('receivemessage');
                     } else {
                         
@@ -53,15 +55,29 @@
         });
     });
     function send() {
-        console.log("masuk");
         var sender = document.getElementById("sender").value;
         var receiver = document.getElementById("receiver").value;
         var message = document.getElementById("message").value;
-        myFirebase.push({
-            sender: sender,
-            receiver: receiver,
-            message: message
-        });
+        if (message != "") {
+            myFirebase.push({
+                sender: sender,
+                receiver: receiver,
+                message: message
+            });
+        }
         document.getElementById("message").value = "";
-  }
+    }
+    function send2(e) {
+        if (e.keyCode == 13) {
+            var message = document.getElementById("message").value;
+            if (message != "") {
+                myFirebase.push({
+                    sender: sender,
+                    receiver: receiver,
+                    message: message
+                });
+            }
+            document.getElementById("message").value = "";
+        }
+    }
 </script>
\ No newline at end of file
-- 
GitLab


From 5551f6cde855375e27c46c605afbba3ea10c1d4e Mon Sep 17 00:00:00 2001
From: Albertdj <albertusdjauharidjohan@gmail.com>
Date: Thu, 8 Feb 2018 17:44:54 +0700
Subject: [PATCH 17/19] add search and fix bugs

---
 .../frontend/layout/messaging_index_index.xml  |  2 --
 .../frontend/layout/messaging_room_index.xml   |  2 --
 .../view/frontend/templates/messaging.phtml    | 18 +++++++++++-------
 .../view/frontend/templates/room.phtml         |  2 +-
 .../Messaging/view/frontend/web/js/chat.js     |  5 -----
 .../Messaging/view/frontend/web/js/firebase.js |  9 ---------
 6 files changed, 12 insertions(+), 26 deletions(-)
 delete mode 100644 app/code/Magento/Messaging/view/frontend/web/js/chat.js
 delete mode 100644 app/code/Magento/Messaging/view/frontend/web/js/firebase.js

diff --git a/app/code/Magento/Messaging/view/frontend/layout/messaging_index_index.xml b/app/code/Magento/Messaging/view/frontend/layout/messaging_index_index.xml
index 09125c78958..d778b1473a8 100644
--- a/app/code/Magento/Messaging/view/frontend/layout/messaging_index_index.xml
+++ b/app/code/Magento/Messaging/view/frontend/layout/messaging_index_index.xml
@@ -2,9 +2,7 @@
 	<head>
 		<title>Messaging</title>
 		<css src="Magento_Messaging::css/chat.css" />
-		<script src="Magento_Messaging::js/chat.js" />
 		<script src="Magento_Messaging::js/firebaselib.js" />
-		<script src="Magento_Messaging::js/firebase.js" />
 	</head>
     <body>
         <referenceContainer name="content">
diff --git a/app/code/Magento/Messaging/view/frontend/layout/messaging_room_index.xml b/app/code/Magento/Messaging/view/frontend/layout/messaging_room_index.xml
index 5e80f411234..b118a86438f 100644
--- a/app/code/Magento/Messaging/view/frontend/layout/messaging_room_index.xml
+++ b/app/code/Magento/Messaging/view/frontend/layout/messaging_room_index.xml
@@ -2,9 +2,7 @@
 	<head>
 		<title>Messaging</title>
 		<css src="Magento_Messaging::css/chat.css" />
-		<script src="Magento_Messaging::js/chat.js" />
 		<script src="Magento_Messaging::js/firebaselib.js" />
-		<script src="Magento_Messaging::js/firebase.js" />
 	</head>
     <body>
         <referenceContainer name="content">
diff --git a/app/code/Magento/Messaging/view/frontend/templates/messaging.phtml b/app/code/Magento/Messaging/view/frontend/templates/messaging.phtml
index 14f77c9f09d..72d1c895c6f 100644
--- a/app/code/Magento/Messaging/view/frontend/templates/messaging.phtml
+++ b/app/code/Magento/Messaging/view/frontend/templates/messaging.phtml
@@ -13,9 +13,9 @@
 		<span class="name">Chats</span>
 	</div>
 	<div class = "chat-search">
-		<form >
-            <input type="text" name="chattext" placeholder="Search name" class="search-name">
-            <input type="submit" name="search" value="Cari" class="search-button">
+		<form  action='' name='searchForm' id="searchForm" method="GET">
+            <input type="text" name="email" id="email" placeholder="Search name" class="search-name">
+            <input type="submit" class="search-button">
         </form>
 	</div>
 	<div id="chatlist" class="chat-list">
@@ -31,7 +31,7 @@
             myFirebase.on("child_added", function(snapshot) {
               var chatrooms = snapshot.val();
             
-            if ((chatrooms.sender==<?= $email ?>)||(chatrooms.receiver==<?= $email ?>)){
+            if ((chatrooms.sender=="<?= $email ?>")||(chatrooms.receiver=="<?= $email ?>")){
             	var chatlist = document.getElementById("chatlist");
             	//Kalo usernamenya sama, hapus yang sebelumnya
             	for (i = 0; i < chatlist.childElementCount; i++) { 
@@ -51,12 +51,12 @@
 	            chatroom_lastmessage.classList.add('chatroom-lastmessage');
 
 	            var chatroom_username_span = document.createElement("span"); 
-            	if (chatrooms.sender==<?= $email ?>) {
+            	if (chatrooms.sender=="<?= $email ?>") {
             		chatroom_username_span.textContent = chatrooms.receiver;
-                chatroom_item.href = "/messaging/room/?email=" + chatrooms.receiver;
+                chatroom_item.href = "../room/?email=" + chatrooms.receiver;
             	} else {
             		chatroom_username_span.textContent = chatrooms.sender;
-                chatroom_item.href = "/messaging/room/?email=" + chatrooms.sender;
+                chatroom_item.href = "../room/?email=" + chatrooms.sender;
             	}
 	            
 	            chatroom_username.appendChild(chatroom_username_span);
@@ -73,6 +73,10 @@
             });
 
     		});
+      $('#searchForm').submit(function() {
+        var email = $('#email').val();
+        $(this).attr('action', "../room/?email=" + email);
+      });
 		});
 
   	</script>
\ No newline at end of file
diff --git a/app/code/Magento/Messaging/view/frontend/templates/room.phtml b/app/code/Magento/Messaging/view/frontend/templates/room.phtml
index e0088236c42..b1bea2f4b42 100644
--- a/app/code/Magento/Messaging/view/frontend/templates/room.phtml
+++ b/app/code/Magento/Messaging/view/frontend/templates/room.phtml
@@ -11,7 +11,7 @@
 <div class="box">
     <div class = "chat-title">
         <span class="name">
-            <?= $email ?>
+            <?= $_GET['email'] ?>
         </span>
     </div>
     <div class="chat-form" >
diff --git a/app/code/Magento/Messaging/view/frontend/web/js/chat.js b/app/code/Magento/Messaging/view/frontend/web/js/chat.js
deleted file mode 100644
index c03fcb9e533..00000000000
--- a/app/code/Magento/Messaging/view/frontend/web/js/chat.js
+++ /dev/null
@@ -1,5 +0,0 @@
-require(['jquery'],function($){
-    $(document).ready(function() {
-    	alert('hai');
-    });
-});
\ No newline at end of file
diff --git a/app/code/Magento/Messaging/view/frontend/web/js/firebase.js b/app/code/Magento/Messaging/view/frontend/web/js/firebase.js
deleted file mode 100644
index de5fdc7445c..00000000000
--- a/app/code/Magento/Messaging/view/frontend/web/js/firebase.js
+++ /dev/null
@@ -1,9 +0,0 @@
-const config = {
-    projectId: "magentochat",
-    apiKey: "AIzaSyAuWbHi2A1CljLjLdXxxI0sFY0jqPWxZHs",
-    authDomain: "magentochat.firebaseapp.com",
-    databaseURL: "https://magentochat.firebaseio.com/",
-    storageBucket: ""
-};
-firebase.initializeApp(config);
-
-- 
GitLab


From e4b6f940150272d2504bf2c4ebcaaee40e32b746 Mon Sep 17 00:00:00 2001
From: Albertdj <albertusdjauharidjohan@gmail.com>
Date: Thu, 8 Feb 2018 17:59:38 +0700
Subject: [PATCH 18/19] Add link to chat

---
 .../Magento/Messaging/view/frontend/templates/messaging.phtml   | 2 +-
 app/code/Magento/Messaging/view/frontend/templates/room.phtml   | 2 +-
 .../Magento/Theme/view/frontend/templates/html/header.phtml     | 1 +
 3 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/app/code/Magento/Messaging/view/frontend/templates/messaging.phtml b/app/code/Magento/Messaging/view/frontend/templates/messaging.phtml
index 72d1c895c6f..e696c8dbafe 100644
--- a/app/code/Magento/Messaging/view/frontend/templates/messaging.phtml
+++ b/app/code/Magento/Messaging/view/frontend/templates/messaging.phtml
@@ -15,7 +15,7 @@
 	<div class = "chat-search">
 		<form  action='' name='searchForm' id="searchForm" method="GET">
             <input type="text" name="email" id="email" placeholder="Search name" class="search-name">
-            <input type="submit" class="search-button">
+            <input type="submit" value="Search" class="search-button">
         </form>
 	</div>
 	<div id="chatlist" class="chat-list">
diff --git a/app/code/Magento/Messaging/view/frontend/templates/room.phtml b/app/code/Magento/Messaging/view/frontend/templates/room.phtml
index b1bea2f4b42..77947e334a5 100644
--- a/app/code/Magento/Messaging/view/frontend/templates/room.phtml
+++ b/app/code/Magento/Messaging/view/frontend/templates/room.phtml
@@ -22,7 +22,7 @@
                 <input id="sender" type="hidden" value="<?= $email ?>">
                 <input id="receiver" type="hidden" value="<?= $_GET['email'] ?>">
                 <input id="message" type="text" name="chattext" class="message-content" onkeypress="send2(event)">
-                <input id="send" type="submit" class="send-button" onclick="send()">
+                <input id="send" type="submit" class="send-button" onclick="send()" value="Send">
             </div>
         </div>
     </div>
diff --git a/app/code/Magento/Theme/view/frontend/templates/html/header.phtml b/app/code/Magento/Theme/view/frontend/templates/html/header.phtml
index 58548a0ba26..3056c4491c9 100755
--- a/app/code/Magento/Theme/view/frontend/templates/html/header.phtml
+++ b/app/code/Magento/Theme/view/frontend/templates/html/header.phtml
@@ -15,6 +15,7 @@ $welcomeMessage = $block->getWelcome();
     case 'welcome': ?>
         <li class="greet welcome" data-bind="scope: 'customer'">
             <!-- ko if: customer().fullname  -->
+            <a href="./messaging/index/index">Chat                                                                              |</a>
             <span data-bind="text: new String('<?= $block->escapeHtml(__('Welcome, %1!', '%1')) ?>').replace('%1', customer().fullname)">
             </span>
             <!-- /ko -->
-- 
GitLab


From 838e6fb40df96e011ebe15ae6876127beeb0b94d Mon Sep 17 00:00:00 2001
From: Albertdj <albertusdjauharidjohan@gmail.com>
Date: Fri, 9 Feb 2018 00:29:27 +0700
Subject: [PATCH 19/19] Fix enter to send chat

---
 app/code/Magento/Messaging/view/frontend/templates/room.phtml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/app/code/Magento/Messaging/view/frontend/templates/room.phtml b/app/code/Magento/Messaging/view/frontend/templates/room.phtml
index 77947e334a5..f3006b65234 100644
--- a/app/code/Magento/Messaging/view/frontend/templates/room.phtml
+++ b/app/code/Magento/Messaging/view/frontend/templates/room.phtml
@@ -69,6 +69,8 @@
     }
     function send2(e) {
         if (e.keyCode == 13) {
+            var sender = document.getElementById("sender").value;
+            var receiver = document.getElementById("receiver").value;
             var message = document.getElementById("message").value;
             if (message != "") {
                 myFirebase.push({
-- 
GitLab